From 9f330d9d7196da4ab5cd5eb4e7e7dc0cd453c700 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Wed, 19 Aug 2026 15:36:50 +0100 Subject: [PATCH 1/9] Projection-aware join: answer an unread variable with one witness A body variable that no template reads and that the body mentions once is invisible downstream: every value past the first re-derives an answer byte-for-byte, which the trie then dedups. Both engines stop at the first witness. space.rs computes the mask once per transform and marks a variable only inside its conjunct's TRAILING run -- anything after it in the same conjunct draws its values from the subtrie the choice selects, so cutting there would drop answers rather than duplicates. The walk is allocation-free and does not read the templates at all unless the body leaves a candidate a template could disqualify. Only the plain `,` -> `,` write form cuts. The cut drops DUPLICATE answers, which is invisible only to a sink idempotent in them, and the `O` form and the source/sink transforms can carry Count, Sum, And, Head/Tail and the float reductions, whose result is a function of how many answers arrive. Leapfrog takes the cut on its own path, chosen once per level before any loop, so fill_lead_candidates and consume_lead keep the exact code they had; if the single witness does not match, the level re-runs as a full enumeration, so the cut can only drop a duplicate. The ProductZipper descends the first complete subterm instead of enumerating every variable, size class and arity below the position; on a factor's trailing variable that descent also crosses the factor boundary, force-enrolling the next factor. Every other query entry keeps its signature and passes a zero mask. Replayed onto main rather than rebased commit-by-commit: main has since merged #146, which already moved the subterm walk into mork-expr (so this uses upstream's subterm_parse_step rather than adding another), deleted first_subterm, and rewrote Bindings and the candidate handling underneath consume_lead. Thirteen compounding merges would have been far more error-prone than re-applying the net change to the current shapes. Co-Authored-By: Claude Fable 5 --- .../corpus/programs/projection_cut.mm2 | 52 + .../programs/transform_decomposition.mm2 | 70 + .../programs/transform_process_calculus.mm2 | 45 + .../corpus/programs/transform_staging.mm2 | 65 + .../expected/programs/projection_cut.expected | 34 + .../programs/transform_decomposition.expected | 79 + .../transform_process_calculus.expected | 23 + .../programs/transform_staging.expected | 75 + differential/projection_cut_fuzz.py | 374 + examples/transforms/README.md | 175 + examples/transforms/bench_pairs.py | 42 + examples/transforms/clq_naive.mm2 | 3603 ++++ examples/transforms/clq_staged.mm2 | 3604 ++++ examples/transforms/craft_naive.mm2 | 11806 ++++++++++ examples/transforms/craft_staged.mm2 | 11805 ++++++++++ examples/transforms/cyc_naive.mm2 | 901 + examples/transforms/cyc_staged.mm2 | 902 + examples/transforms/generate.py | 63 + examples/transforms/lts_delta.mm2 | 18011 ++++++++++++++++ examples/transforms/lts_naive.mm2 | 18005 +++++++++++++++ examples/transforms/pc2_delta.mm2 | 4010 ++++ examples/transforms/pc2_naive.mm2 | 4006 ++++ examples/transforms/pc3_consume.mm2 | 408 + examples/transforms/pc3_delta.mm2 | 408 + examples/transforms/pc3_naive.mm2 | 406 + kernel/src/leapfrog.rs | 148 +- kernel/src/space.rs | 322 +- 27 files changed, 79423 insertions(+), 19 deletions(-) create mode 100644 differential/corpus/programs/projection_cut.mm2 create mode 100644 differential/corpus/programs/transform_decomposition.mm2 create mode 100644 differential/corpus/programs/transform_process_calculus.mm2 create mode 100644 differential/corpus/programs/transform_staging.mm2 create mode 100644 differential/expected/programs/projection_cut.expected create mode 100644 differential/expected/programs/transform_decomposition.expected create mode 100644 differential/expected/programs/transform_process_calculus.expected create mode 100644 differential/expected/programs/transform_staging.expected create mode 100755 differential/projection_cut_fuzz.py create mode 100644 examples/transforms/README.md create mode 100755 examples/transforms/bench_pairs.py create mode 100644 examples/transforms/clq_naive.mm2 create mode 100644 examples/transforms/clq_staged.mm2 create mode 100644 examples/transforms/craft_naive.mm2 create mode 100644 examples/transforms/craft_staged.mm2 create mode 100644 examples/transforms/cyc_naive.mm2 create mode 100644 examples/transforms/cyc_staged.mm2 create mode 100755 examples/transforms/generate.py create mode 100644 examples/transforms/lts_delta.mm2 create mode 100644 examples/transforms/lts_naive.mm2 create mode 100644 examples/transforms/pc2_delta.mm2 create mode 100644 examples/transforms/pc2_naive.mm2 create mode 100644 examples/transforms/pc3_consume.mm2 create mode 100644 examples/transforms/pc3_delta.mm2 create mode 100644 examples/transforms/pc3_naive.mm2 diff --git a/differential/corpus/programs/projection_cut.mm2 b/differential/corpus/programs/projection_cut.mm2 new file mode 100644 index 00000000..eb4bc1f2 --- /dev/null +++ b/differential/corpus/programs/projection_cut.mm2 @@ -0,0 +1,52 @@ +;; @expect +;; @steps 20 +;; @desc Variables no template reads: the engines may answer them with one witness instead of +;; @desc enumerating their domain, but only where that cannot change the answer set. Each block +;; @desc below is a shape the projection cut must get right; the expected space pins all of them. + +;; --- 1. A trailing don't-care with fan-out. `$_` is mentioned once and no template reads it, so +;; every value past the first re-derives `(out1 a)`. One row per `r`, whatever the fan-out. +(r a) +(r b) +(s a p) +(s a q) +(s a t) +(s b t) +(exec 0 (, (r $x) (s $x $_)) (, (out1 $x))) + +;; --- 2. Schematic data. A don't-care may witness a term that itself contains variables; the +;; answer must not depend on which witness the engine happened to reach first. +(sv k plain) +(sv k (f $z)) +(sv k (g $w $v)) +(exec 1 (, (sv $y $_) ) (, (out2 $y))) + +;; --- 3. A don't-care that is NOT trailing. `$m` decides which `(gg $m $n)` subtrie `$n` is drawn +;; from, so pinning it would drop answers rather than duplicates: every `$n` must survive. +(gg p 1) +(gg p 2) +(gg q 3) +(exec 2 (, (gg $m $n)) (, (out3 $n))) + +;; --- 4. The same, one level down: the don't-care sits inside a compound, still not trailing. +(hh (kk p 1)) +(hh (kk p 2)) +(hh (kk q 3)) +(exec 3 (, (hh (kk $mm $nn))) (, (out4 $nn))) + +;; --- 5. A repeated variable no template reads is a JOIN variable, not a don't-care: it still has +;; to intersect, so `(out5 ...)` holds only the values `jl` and `jr` agree on. +(jl 1) +(jl 2) +(jl 3) +(jr 2) +(jr 3) +(jr 4) +(je 2) +(exec 4 (, (jl $p) (jr $p) (je $q)) (, (out5 $q))) + +;; --- 6. An O-form whose pattern carries a don't-care guard. The guard must keep gating: the +;; counter decrements once per step while `(wanted t)` exists, and stops when it no longer does. +(wanted t) +(counter (S (S (Z)))) +(exec 5 (, (exec 5 $a $b) (wanted $c) (counter (S $d))) (O (+ (exec 5 $a $b)) (+ (counter $d)) (- (counter (S $d))))) diff --git a/differential/corpus/programs/transform_decomposition.mm2 b/differential/corpus/programs/transform_decomposition.mm2 new file mode 100644 index 00000000..bcc71ea1 --- /dev/null +++ b/differential/corpus/programs/transform_decomposition.mm2 @@ -0,0 +1,70 @@ +;; @expect +;; @steps 40 +;; @desc Decomposition lowerings, each computed BOTH ways so the expected space pins the +;; @desc staged form equal to the naive one: a 6-cycle split into two bags, a 4-clique staged +;; @desc through triangles, and the wiki Reachability-P2 crafting join reduced per ingredient +;; @desc side. A divergence in any of them changes this program's space. + +;; ---------------------------------------------------------------- 6-cycle, ghw 2 < rho* 3 +(e a b) +(e b c) +(e c d) +(e d f) +(e f g) +(e g a) +(e a c) +(e c f) +(e f a) +(exec (0 0) (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cycN $a))) +;; two bags of three edges; the first is materialised as its PROJECTED endpoints, which is what +;; shares the suffix across every binding of the discarded middle variables +(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d))) +(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cycS $a))) + +;; ---------------------------------------------------------------- 4-clique +(edge n0 n1) +(edge n0 n2) +(edge n0 n3) +(edge n1 n2) +(edge n1 n3) +(edge n2 n3) +(edge n1 n4) +(edge n2 n4) +(exec (2 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) + (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3)) + (, (c4N $x0 $x1 $x2 $x3))) +;; staged through the triangle bag. Every variable is named by the template, so nothing is +;; projected away and leapfrog has nothing to share -- kept as the contrast to the 6-cycle. +(exec (3 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2))) +(exec (3 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3)) + (, (c4S $x0 $x1 $x2 $x3))) + +;; ---------------------------------------------------------------- crafting (wiki P2 exec (1 3)) +(recipe r0 (numIngredients 2)) +(recipe r0 (result (id itemA))) +(recipe r0 (pattern 0 sx0)) +(recipe r0 (pattern 1 sy0)) +(recipe r0 (key (sx0 wood))) +(recipe r0 (key (sx0 stone))) +(recipe r0 (key (sy0 coal))) +(recipe r1 (numIngredients 2)) +(recipe r1 (result (id itemB))) +(recipe r1 (pattern 0 sx1)) +(recipe r1 (pattern 1 sy1)) +(recipe r1 (key (sx1 gold))) +(recipe r1 (key (sy1 missing))) +(inventory wood) +(inventory stone) +(inventory coal) +(inventory gold) +(exec (4 0) (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n))) + (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) + (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) + (inventory $xi) (inventory $yi)) + (, (craftN $n))) +;; each ingredient side is satisfiable independently given the recipe, and everything but the +;; product name is projected away: reduce each side to a witness on $p, then combine +(exec (5 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p))) +(exec (5 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p))) +(exec (5 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n)))) + (, (craftS $n))) diff --git a/differential/corpus/programs/transform_process_calculus.mm2 b/differential/corpus/programs/transform_process_calculus.mm2 new file mode 100644 index 00000000..9a653a79 --- /dev/null +++ b/differential/corpus/programs/transform_process_calculus.mm2 @@ -0,0 +1,45 @@ +;; @expect +;; @steps 60 +;; @desc The process calculus lowered three ways over the same soup, so the expected space pins +;; @desc all three to the same final message: monotone naive, delta on the message side, and +;; @desc consuming (the reagents are retired). The naive rule never removes, so it re-derives +;; @desc every past communication on every round -- quadratic in the cascade length. + +;; a cascade: each receiver forwards to the next channel +(pN (? c0 p0 (! c1 p1))) +(pN (? c1 p1 (! c2 p2))) +(pN (? c2 p2 (! c3 p3))) +(pN (? c3 p3 (! c4 p4))) +(pN (! c0 p0)) +(pD (? c0 p0 (! c1 p1))) +(pD (? c1 p1 (! c2 p2))) +(pD (? c2 p2 (! c3 p3))) +(pD (? c3 p3 (! c4 p4))) +(pD (! c0 p0)) +(dmsg (! c0 p0)) +(pC (? c0 p0 (! c1 p1))) +(pC (? c1 p1 (! c2 p2))) +(pC (? c2 p2 (! c3 p3))) +(pC (? c3 p3 (! c4 p4))) +(pC (! c0 p0)) +(fN (S (S (S (S (S (S Z))))))) +(fD (S (S (S (S (S (S Z))))))) +(fC (S (S (S (S (S (S Z))))))) + +;; (a) monotone: nothing retired, so round k re-derives all k-1 earlier communications +(exec (1 Z) (, (exec (1 $l) $p $t) (fN (S $k)) (pN (? $c $pl $b)) (pN (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (pN $b)) (+ (fN $k)) (- (fN (S $k))))) + +;; (b) delta on the message side. Promotion is folded INTO the rule: a separate promotion exec +;; would be starved, because this family re-adds itself and sorts first, so it would consume all +;; the fuel before the promoter ever ran. +(exec (2 Z) (, (exec (2 $l) $p $t) (fD (S $k)) (pD (? $c $pl $b)) (dmsg (! $c $pl))) + (O (+ (exec (2 (S $l)) $p $t)) (+ (pD $b)) (+ (dmsg $b)) + (- (dmsg (! $c $pl))) (+ (fD $k)) (- (fD (S $k))))) + +;; (c) consuming: the reagents are retired, so no intermediate is ever kept and the +;; re-derivation is removed at its source rather than filtered afterwards +(exec (3 Z) (, (exec (3 $l) $p $t) (fC (S $k)) (pC (? $c $pl $b)) (pC (! $c $pl))) + (O (+ (exec (3 (S $l)) $p $t)) (+ (pC $b)) + (- (pC (? $c $pl $b))) (- (pC (! $c $pl))) + (+ (fC $k)) (- (fC (S $k))))) diff --git a/differential/corpus/programs/transform_staging.mm2 b/differential/corpus/programs/transform_staging.mm2 new file mode 100644 index 00000000..d56468d7 --- /dev/null +++ b/differential/corpus/programs/transform_staging.mm2 @@ -0,0 +1,65 @@ +;; @expect +;; @steps 60 +;; @desc The two source-level transforms, each computed BOTH ways in one program so the +;; @desc expected space pins them equal: a chain query naively and Yannakakis-staged, and a +;; @desc transitive closure naively and semi-naively. If a staging ever stops agreeing with the +;; @desc form it replaces, this program's space changes. + +;; ---------------------------------------------------------------- the chain query R-S-T +(R a p) +(R b p) +(R c q) +(R d r) +(S p u) +(S p v) +(S q u) +(S r dead) +(T u m) +(T v n) + +;; naive: one join over all three relations +(exec (0 0) (, (R $x $y) (S $y $z) (T $z $w)) (, (outN $x $w))) + +;; Yannakakis-staged: project, semi-join bottom-up, semi-join top-down, then join the reduced +;; relations. Every projection is `(, (Rel $key $_))` -- the shape the projection cut answers +;; with one witness per key -- which is why the reduced relations are emitted KEY-FIRST: a +;; projection off a key-last relation would be `(, (Rel $_ $key))`, where the don't-care is not +;; trailing and must keep enumerating. +(exec (1 0) (, (T $z $_)) (, (Tz $z))) +(exec (1 1) (, (S $y $z) (Tz $z)) (, (S1 $y $z))) +(exec (1 2) (, (S1 $y $_)) (, (S1y $y))) +(exec (1 3) (, (R $x $y) (S1y $y)) (, (R1 $y $x))) +(exec (1 4) (, (R1 $y $_)) (, (R1y $y))) +(exec (1 5) (, (S1 $y $z) (R1y $y)) (, (S2 $z $y))) +(exec (1 6) (, (S2 $z $_)) (, (S2z $z))) +(exec (1 7) (, (T $z $w) (S2z $z)) (, (T1 $z $w))) +(exec (1 8) (, (R1 $y $x) (S2 $z $y) (T1 $z $w)) (, (outS $x $w))) + +;; ---------------------------------------------------------------- transitive closure +(edge g0 g1) +(edge g1 g2) +(edge g2 g3) +(edge g3 g4) + +;; NOTE on loc ordering: execs run in byte order of the whole atom, and a SYMBOL loc sorts +;; above a COMPOUND one -- `(exec (2 0) ..)` would run AFTER `(exec (2 (1 Z)) ..)`, so the seed +;; would fire after the loop and the loop would see an empty relation. Every loc here is the +;; same shape so the intended order is the numeric one. +;; +;; Both loops carry Peano fuel. A self-reproducing exec has no termination condition of its own, +;; so an unbounded one would monopolise every remaining step and the family after it would never +;; run at all. +(fuelN (S (S (S (S (S Z)))))) +(fuelD (S (S (S (S (S Z)))))) + +;; naive: every iteration re-joins the WHOLE path relation with edge +(exec (2 (0 0)) (, (edge $x $y)) (, (pathN $x $y))) +(exec (2 (1 Z)) (, (exec (2 (1 $l)) $p $t) (fuelN (S $k)) (pathN $x $y) (edge $y $z)) + (O (+ (exec (2 (1 (S $l))) $p $t)) (+ (pathN $x $z)) + (+ (fuelN $k)) (- (fuelN (S $k))))) + +;; semi-naive: every iteration joins only the frontier the previous one produced +(exec (3 (0 0)) (, (edge $x $y)) (, (front Z $x $y) (pathD $x $y))) +(exec (3 (1 Z)) (, (exec (3 (1 $l)) $p $t) (fuelD (S $k)) (front $l $x $y) (edge $y $z)) + (O (+ (exec (3 (1 (S $l))) $p $t)) (+ (front (S $l) $x $z)) (+ (pathD $x $z)) + (+ (fuelD $k)) (- (fuelD (S $k))))) diff --git a/differential/expected/programs/projection_cut.expected b/differential/expected/programs/projection_cut.expected new file mode 100644 index 00000000..cc336bae --- /dev/null +++ b/differential/expected/programs/projection_cut.expected @@ -0,0 +1,34 @@ +(r a) +(r b) +(hh (kk p 1)) +(hh (kk p 2)) +(hh (kk q 3)) +(je 2) +(jl 1) +(jl 2) +(jl 3) +(jr 2) +(jr 3) +(jr 4) +(out1 a) +(out1 b) +(out2 k) +(out3 1) +(out3 2) +(out3 3) +(out4 1) +(out4 2) +(out4 3) +(out5 2) +(wanted t) +(counter (Z)) +(s a p) +(s a q) +(s a t) +(s b t) +(gg p 1) +(gg p 2) +(gg q 3) +(sv k (f $a)) +(sv k (g $a $b)) +(sv k plain) diff --git a/differential/expected/programs/transform_decomposition.expected b/differential/expected/programs/transform_decomposition.expected new file mode 100644 index 00000000..8cc7915d --- /dev/null +++ b/differential/expected/programs/transform_decomposition.expected @@ -0,0 +1,79 @@ +(ok0 r0) +(ok0 r1) +(ok1 r0) +(cycN a) +(cycN b) +(cycN c) +(cycN d) +(cycN f) +(cycN g) +(cycS a) +(cycS b) +(cycS c) +(cycS d) +(cycS f) +(cycS g) +(craftN itemA) +(craftS itemA) +(inventory coal) +(inventory gold) +(inventory wood) +(inventory stone) +(e a b) +(e a c) +(e b c) +(e c d) +(e c f) +(e d f) +(e f a) +(e f g) +(e g a) +(p3 a a) +(p3 a d) +(p3 a f) +(p3 a g) +(p3 b a) +(p3 b f) +(p3 b g) +(p3 c a) +(p3 c b) +(p3 c c) +(p3 c g) +(p3 d a) +(p3 d b) +(p3 d c) +(p3 f b) +(p3 f c) +(p3 f d) +(p3 f f) +(p3 g c) +(p3 g d) +(p3 g f) +(edge n0 n1) +(edge n0 n2) +(edge n0 n3) +(edge n1 n2) +(edge n1 n3) +(edge n1 n4) +(edge n2 n3) +(edge n2 n4) +(recipe r0 (key (sx0 wood))) +(recipe r0 (key (sx0 stone))) +(recipe r0 (key (sy0 coal))) +(recipe r0 (result (id itemA))) +(recipe r0 (numIngredients 2)) +(recipe r0 (pattern 0 sx0)) +(recipe r0 (pattern 1 sy0)) +(recipe r1 (key (sx1 gold))) +(recipe r1 (key (sy1 missing))) +(recipe r1 (result (id itemB))) +(recipe r1 (numIngredients 2)) +(recipe r1 (pattern 0 sx1)) +(recipe r1 (pattern 1 sy1)) +(tri n0 n1 n2) +(tri n0 n1 n3) +(tri n0 n2 n3) +(tri n1 n2 n3) +(tri n1 n2 n4) +(c4N n0 n1 n2 n3) +(c4S n0 n1 n2 n3) diff --git a/differential/expected/programs/transform_process_calculus.expected b/differential/expected/programs/transform_process_calculus.expected new file mode 100644 index 00000000..0b8f690c --- /dev/null +++ b/differential/expected/programs/transform_process_calculus.expected @@ -0,0 +1,23 @@ +(fC (S (S Z))) +(fD (S (S Z))) +(fN Z) +(pC (! c4 p4)) +(pD (! c0 p0)) +(pD (! c1 p1)) +(pD (! c2 p2)) +(pD (! c3 p3)) +(pD (! c4 p4)) +(pD (? c0 p0 (! c1 p1))) +(pD (? c1 p1 (! c2 p2))) +(pD (? c2 p2 (! c3 p3))) +(pD (? c3 p3 (! c4 p4))) +(pN (! c0 p0)) +(pN (! c1 p1)) +(pN (! c2 p2)) +(pN (! c3 p3)) +(pN (! c4 p4)) +(pN (? c0 p0 (! c1 p1))) +(pN (? c1 p1 (! c2 p2))) +(pN (? c2 p2 (! c3 p3))) +(pN (? c3 p3 (! c4 p4))) +(dmsg (! c4 p4)) diff --git a/differential/expected/programs/transform_staging.expected b/differential/expected/programs/transform_staging.expected new file mode 100644 index 00000000..856e1ffd --- /dev/null +++ b/differential/expected/programs/transform_staging.expected @@ -0,0 +1,75 @@ +(Tz u) +(Tz v) +(R1y p) +(R1y q) +(S1y p) +(S1y q) +(S2z u) +(S2z v) +(fuelD (S (S Z))) +(fuelN Z) +(R a p) +(R b p) +(R c q) +(R d r) +(S p u) +(S p v) +(S q u) +(S r dead) +(T u m) +(T v n) +(R1 p a) +(R1 p b) +(R1 q c) +(S1 p u) +(S1 p v) +(S1 q u) +(S2 u p) +(S2 u q) +(S2 v p) +(T1 u m) +(T1 v n) +(edge g0 g1) +(edge g1 g2) +(edge g2 g3) +(edge g3 g4) +(outN a m) +(outN a n) +(outN b m) +(outN b n) +(outN c m) +(outS a m) +(outS a n) +(outS b m) +(outS b n) +(outS c m) +(pathD g0 g1) +(pathD g0 g2) +(pathD g0 g3) +(pathD g0 g4) +(pathD g1 g2) +(pathD g1 g3) +(pathD g1 g4) +(pathD g2 g3) +(pathD g2 g4) +(pathD g3 g4) +(pathN g0 g1) +(pathN g0 g2) +(pathN g0 g3) +(pathN g0 g4) +(pathN g1 g2) +(pathN g1 g3) +(pathN g1 g4) +(pathN g2 g3) +(pathN g2 g4) +(pathN g3 g4) +(front (S (S (S Z))) g0 g4) +(front (S (S Z)) g0 g3) +(front (S (S Z)) g1 g4) +(front (S Z) g0 g2) +(front (S Z) g1 g3) +(front (S Z) g2 g4) +(front Z g0 g1) +(front Z g1 g2) +(front Z g2 g3) +(front Z g3 g4) diff --git a/differential/projection_cut_fuzz.py b/differential/projection_cut_fuzz.py new file mode 100755 index 00000000..1aed84ba --- /dev/null +++ b/differential/projection_cut_fuzz.py @@ -0,0 +1,374 @@ +#!/usr/bin/env python3 +"""Random-query validator for the projection cut. + +Generates random conjunctive bodies, works out INDEPENDENTLY -- from the rule as stated, over the +generated syntax tree, never from the engine's mask -- which variables the cut may answer with a +single witness, predicts how much enumeration that removes, then runs the query on a stock build +and on a `projection_cut` build and checks three things: + + * the two builds agree on the answer space byte for byte, + * the answers equal a join computed here in Python, from the generated facts, and + * where a speed-up was predicted, a speed-up actually happened. + +The rule, restated so this file is a second opinion rather than an echo: a body variable may be +answered with one witness iff (a) the body mentions it exactly once, (b) no template reads it, and +(c) everything after it inside its own conjunct also satisfies (a) and (b) -- it lies in the +conjunct's trailing run. Anything earlier in a conjunct decides which subtrie the later columns +are drawn from, so pinning it would drop answers rather than duplicates. + +Three families: + + direct relations of ground tuples, including the named shape + `(, (R $x $_1 $y $_2 $_3) (Q $x $y))` -- `$_2 $_3` are cuttable, `$_1` is not, + because `$y` follows it. + schematic the same shapes, but every don't-care value is a fuzzed QUERY EXPRESSION carrying + variables of its own, so the cut binds schematic terms rather than symbols. + meta the space holds fuzzed queries as data -- `(f (R $x $_1 $y $_2 $_3))`, + `(g (Q $x $y))`, `(data ...)` -- and the body queries over them in the + `(, (f $f ...) (g $g ...) (data $f) (data $g))` shape. + +Usage: projection_cut_fuzz.py --base BIN --cut BIN [--cases N] [--seed S] +""" + +import argparse, itertools, os, random, re, subprocess, sys, tempfile + +TOOK = re.compile(r"took (\d+) ms") + + +# ---------------------------------------------------------------------------- queries + +class Factor: + def __init__(self, rel, cols): + self.rel, self.cols = rel, cols + + def text(self): + return "(%s %s)" % (self.rel, " ".join("$" + c for c in self.cols)) + + +class Query: + def __init__(self, factors, reads, family): + self.factors, self.reads, self.family = factors, reads, family + + def body(self): + return "(, %s)" % " ".join(f.text() for f in self.factors) + + def exec_atom(self): + return "(exec 0 %s (, (out %s)))" % (self.body(), " ".join("$" + v for v in self.reads)) + + def occurrences(self): + occ = {} + for f in self.factors: + for c in f.cols: + occ[c] = occ.get(c, 0) + 1 + return occ + + def cuttable(self): + """The rule applied to the syntax tree -- independent of the engine's byte-level mask.""" + occ = self.occurrences() + solo = lambda v: occ[v] == 1 and v not in self.reads + cut = set() + for f in self.factors: + for c in reversed(f.cols): # the conjunct's trailing run, and no further + if not solo(c): + break + cut.add(c) + return cut + + +def named_shape(): + """The shape called out by name: jump the last two columns of R, but never `$_1`.""" + return Query([Factor("R", ["x0", "d0", "x1", "d1", "d2"]), Factor("Q", ["x0", "x1"])], + ["x0", "x1"], "direct") + + +def gen_query(rng, family): + if family == "meta": + # `(, (f $f ...) (g $g ...) (data $f) (data $g))` -- the join variables bind whole + # query expressions; the don't-care tails are what the cut may answer. + fac = [Factor("f", ["f"] + ["d%d" % i for i in range(rng.choice([1, 1, 2]))])] + nd = len(fac[0].cols) - 1 + fac.append(Factor("g", ["g"] + ["d%d" % (nd + i) for i in range(rng.choice([0, 1, 2]))])) + fac.append(Factor("data", ["f"])) + fac.append(Factor("data", ["g"])) + return Query(fac, ["f", "g"], "meta") + + nkeys = rng.choice([1, 1, 2]) + keys = ["x%d" % i for i in range(nkeys)] + factors, dc = [], 0 + for fi in range(rng.choice([1, 2, 2, 3])): + cols = list(keys) if fi == 0 else [rng.choice(keys)] + if rng.random() < 0.4 and nkeys > 1: # a don't-care BEFORE a key: never cuttable + cols = [cols[0], "d%d" % dc] + cols[1:] + dc += 1 + for _ in range(rng.choice([1, 1, 2, 2, 3])): + cols.append("d%d" % dc) + dc += 1 + factors.append(Factor("R%d" % fi, cols)) + return Query(factors, keys, family) + + +# ---------------------------------------------------------------------------- data + +def query_expr(j): + """A fuzzed query expression, used as a stored VALUE. Carries its own variables. + + Every index yields a DISTINCT expression -- the shape rotates but the relation names carry + `j`. Duplicates would silently collapse in the trie, making the relation smaller than the + generator believes and the predicted ratio a fiction. + """ + shapes = [ + "(, (R%d $x $a $y $b $c) (Q%d $x $y))" % (j, j), + "(, (f%d $p) (g%d $q) (data $p) (data $q))" % (j, j), + "(P%d (= $l $r) $t%d)" % (j, j), + "(, (S%d $u $v) (T%d $v $w $z))" % (j, j), + ] + return shapes[j % len(shapes)] + + +def gen_data(rng, q, nkey, fan): + """Facts for every factor. Returns (facts, per-relation sizes, per-variable domains).""" + keyvals = ["k%d" % i for i in range(nkey)] + if q.family == "meta": + keyvals = [query_expr(i) for i in range(nkey)] + dcvals = [("w%d" % j) if q.family == "direct" else query_expr(j) for j in range(fan)] + + assert len(set(keyvals)) == len(keyvals), "key values must be distinct" + assert len(set(dcvals)) == len(dcvals), "don't-care values must be distinct" + facts, sizes, domains = [], {}, {} + for f in q.factors: + rows = [] + doms = [keyvals if not c.startswith("d") else dcvals for c in f.cols] + # A full cross product would make a don't-care that PRECEDES a key independent of that + # key: pinning it would still leave every suffix value reachable, so an engine that + # wrongly cut a non-trailing variable would produce the right answers anyway and the + # fuzzer would never notice. Correlate them instead -- each value of a leading + # don't-care admits only a SLICE of the keys that follow it, so pinning it drops + # answers and the check fails. + lead_dc = [k for k, c in enumerate(f.cols) + if c.startswith("d") and any(not c2.startswith("d") for c2 in f.cols[k + 1:])] + for combo in itertools.product(*doms): + if lead_dc: + drop = False + for k in lead_dc: + slot = dcvals.index(combo[k]) + for k2 in range(k + 1, len(f.cols)): + if not f.cols[k2].startswith("d"): + # keep only the keys congruent to this don't-care's slot + if keyvals.index(combo[k2]) % len(dcvals) != slot % len(dcvals): + drop = True + if drop: + continue + rows.append("(%s %s)" % (f.rel, " ".join(combo))) + facts.extend(rows) + key = f.rel + "/" + str(len(f.cols)) + sizes[key] = (sizes.get(key, (0, 0, 0))[0] + len(rows), + sum(1 for c in f.cols if not c.startswith("d")), + sum(1 for c in f.cols if c.startswith("d"))) + for c in f.cols: + domains[c] = keyvals if not c.startswith("d") else dcvals + return facts, sizes, domains, keyvals, dcvals + + +def predicted_ratio(q, fan): + """Enumerated tuples over cut tuples: every don't-care contributes its fan-out unless cut.""" + cut = q.cuttable() + base = after = 1 + for f in q.factors: + for c in f.cols: + if c.startswith("d"): + base *= fan + after *= 1 if c in cut else fan + return base, after + + +def python_join(q, domains): + """The answer set, computed here: project each factor onto the variables that outlive it + (read, or shared with another factor), dedup, then join. Sound because every projected-away + variable is a singleton, hence purely existential.""" + occ = q.occurrences() + keep = lambda v: v in q.reads or occ[v] > 1 + rel = None + for f in q.factors: + cols = [c for c in f.cols if keep(c)] + doms = [domains[c] for c in cols] + tuples = {tuple(t) for t in itertools.product(*doms)} if cols else {()} + if rel is None: + rel, relcols = tuples, cols + continue + shared = [c for c in cols if c in relcols] + li = [relcols.index(c) for c in shared] + ri = [cols.index(c) for c in shared] + newcols = relcols + [c for c in cols if c not in relcols] + add = [cols.index(c) for c in cols if c not in relcols] + out = set() + for a in rel: + for b in tuples: + if all(a[x] == b[y] for x, y in zip(li, ri)): + out.add(a + tuple(b[i] for i in add)) + rel, relcols = out, newcols + idx = [relcols.index(v) for v in q.reads] + return {tuple(t[i] for i in idx) for t in rel} + + +# ---------------------------------------------------------------------------- running + +def run(binary, prog, out, reps, timeout): + """Best-of-`reps` query time and the resulting space, or (None, None) if it does not finish. + + A timeout is data, not an error: the two engines differ by orders of magnitude on some of + these shapes, so the sizing ladder needs to be told when it has gone too far rather than + having the run die. + """ + best, dump = None, None + for _ in range(reps): + try: + r = subprocess.run([binary, "run", prog, "--steps", "2", out], + capture_output=True, timeout=timeout) + except subprocess.TimeoutExpired: + return None, None + m = TOOK.search(r.stdout.decode("utf-8", "replace")) + ms = int(m.group(1)) if m else -1 + best = ms if best is None else min(best, ms) + with open(out, "rb") as fh: + dump = fh.read() + return best, dump + + +def parse_answers(dump): + out = set() + for line in dump.decode("utf-8", "replace").split("\n"): + if line.startswith("(out "): + out.add(line[5:-1].strip()) + return out + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--base", required=True) + ap.add_argument("--cut", required=True) + ap.add_argument("--cases", type=int, default=26) + ap.add_argument("--seed", type=int, default=1) + ap.add_argument("--reps", type=int, default=2) + ap.add_argument("--min-base-ms", type=int, default=20) + ap.add_argument("--max-facts", type=int, default=250000) + ap.add_argument("--keep", default=None) + ap.add_argument("--family", default=None, help="force one family") + ap.add_argument("--base-timeout", type=int, default=300, help="seconds before a size is too big") + ap.add_argument("--label", default="", help="engine label for the report header") + args = ap.parse_args() + + rng = random.Random(args.seed) + tmp = args.keep or tempfile.mkdtemp(prefix="pcfuzz-") + os.makedirs(tmp, exist_ok=True) + families = ["direct", "schematic", "meta"] + accepted, attempts = [], 0 + + while len(accepted) < args.cases and attempts < args.cases * 60: + attempts += 1 + if args.family: + q = gen_query(rng, args.family) + else: + q = named_shape() if not accepted else gen_query(rng, families[attempts % 3]) + cut = q.cuttable() + if not cut: + continue # report only where a jump is predicted + + # Grow the data until the ENUMERATION is long enough to time honestly, measuring it at + # each step rather than predicting its cost: the two engines differ by orders of + # magnitude on the schematic and meta shapes, so a tuple-count model that sizes the + # leapfrog join sensibly can hand the ProductZipper a query it will not finish. + prog = os.path.join(tmp, "case%02d.mm2" % len(accepted)) + chosen = None + for nkey, fan in [(4, 6), (6, 8), (8, 10), (10, 12), (12, 14), (14, 16), (16, 20), (20, 24)]: + facts, sizes, domains, keyvals, dcvals = gen_data(rng, q, nkey, fan) + if len(facts) > args.max_facts: + break + base_t, after_t = predicted_ratio(q, fan) + if base_t <= after_t: + break + with open(prog, "w") as fh: + fh.write("\n".join(facts) + "\n" + q.exec_atom() + "\n") + b_ms, b_dump = run(args.base, prog, prog + ".base.space", 1, args.base_timeout) + if b_ms is None: + break # too big for this engine: keep the last + chosen = (facts, sizes, domains, nkey, fan, base_t, after_t, b_ms, b_dump) + if b_ms >= args.min_base_ms: + break + if chosen is None: + continue + facts, sizes, domains, nkey, fan, base_t, after_t, b_ms, b_dump = chosen + if b_ms < args.min_base_ms: + continue # too fast to attribute a ratio to + # rewrite the chosen size, since the ladder may have moved past it + with open(prog, "w") as fh: + fh.write("\n".join(facts) + "\n" + q.exec_atom() + "\n") + if b_ms < 2000: + b_ms, b_dump = run(args.base, prog, prog + ".base.space", args.reps, args.base_timeout) + c_ms, c_dump = run(args.cut, prog, prog + ".cut.space", args.reps, args.base_timeout) + if c_ms is None: + c_ms = args.base_timeout * 1000 + + identical = (b_dump == c_dump) + # The independent join models an EQUALITY join, which is what the engine performs only + # when the joined values are ground. In the meta family the read variables bind whole + # query expressions, so the engine joins them by UNIFICATION and renames their variables + # on output; modelling that here would mean reimplementing the unifier. Those cases are + # held to stock-vs-cut byte-identity instead -- the stock engine IS the reference -- plus + # a non-empty answer space, so a silently empty result cannot pass. + modelled = any(not v.startswith("(") for v in [domains[r][0] for r in q.reads]) + if modelled: + want = {" ".join(t) for t in python_join(q, domains)} + answers_ok = (parse_answers(b_dump) == want and parse_answers(c_dump) == want) + nans = len(want) + else: + nans = len(parse_answers(b_dump)) + answers_ok = nans > 0 + speedup = b_ms / max(c_ms, 0.5) + accepted.append(dict(q=q, sizes=sizes, nkey=nkey, fan=fan, facts=len(facts), + pred=base_t / after_t, b_ms=b_ms, c_ms=c_ms, speedup=speedup, + identical=identical, answers_ok=answers_ok, modelled=modelled, + cut=sorted(cut), nans=nans)) + + ok = lambda c: c["identical"] and c["answers_ok"] and c["speedup"] >= 1.5 + print("%sseed=%d cases=%d attempts=%d programs in %s\n" % (("engine=%s " % args.label) if args.label else "", args.seed, len(accepted), attempts, tmp)) + hdr = "%-3s %-9s %-44s %8s %10s %8s %7s %9s %s" % ( + "#", "family", "body", "facts", "predicted", "base ms", "cut ms", "speedup", "ok") + print(hdr); print("-" * len(hdr)) + for i, c in enumerate(accepted): + b = c["q"].body() + b = b if len(b) <= 44 else b[:41] + "..." + print("%-3d %-9s %-44s %8d %9.0fx %8d %7d %8.1fx %s" % + (i, c["q"].family, b, c["facts"], c["pred"], c["b_ms"], c["c_ms"], c["speedup"], + "yes" if ok(c) else "NO")) + print("\nrelation sizes and the variables the cut answered with one witness:") + for i, c in enumerate(accepted): + rels = ", ".join("%s:%d facts(%d key,%d dc)" % (r.split("/")[0], v[0], v[1], v[2]) + for r, v in sorted(c["sizes"].items())) + print(" %-3d keyvals=%-3d fanout=%-3d answers=%-5d cut=%-16s %s" % + (i, c["nkey"], c["fan"], c["nans"], ",".join("$" + v for v in c["cut"]), rels)) + short = len(accepted) < args.cases + if short: + print("\nSHORT RUN: asked for %d cases, accepted %d. A run that cannot build its cases " + "proves nothing, so this is a failure, not a pass." % (args.cases, len(accepted))) + bad = [c for c in accepted if not ok(c)] + print("\n%d/%d met the prediction | byte-identical: %d/%d | answer set correct: %d/%d" % + (len(accepted) - len(bad), len(accepted), + sum(1 for c in accepted if c["identical"]), len(accepted), + sum(1 for c in accepted if c["answers_ok"]), len(accepted))) + nm = [c for c in accepted if not c["modelled"]] + if nm: + print("(%d meta cases are checked by stock-vs-cut byte-identity and a non-empty answer " + "space, not by the equality-join model -- see the note in the source)" % len(nm)) + if accepted: + sp = sorted(c["speedup"] for c in accepted) + print("speed-up: min %.1fx median %.1fx max %.1fx" % (sp[0], sp[len(sp) // 2], sp[-1])) + if bad: + print("\nFAILED:") + for c in bad: + print(" %s\n identical=%s answers_ok=%s speedup=%.2fx predicted=%.0fx" % + (c["q"].body(), c["identical"], c["answers_ok"], c["speedup"], c["pred"])) + return 1 if (bad or short) else 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/examples/transforms/README.md b/examples/transforms/README.md new file mode 100644 index 00000000..7e303bf6 --- /dev/null +++ b/examples/transforms/README.md @@ -0,0 +1,175 @@ +# Semi-join and incrementalization, as source-level MM2 transforms + +Both are rewrites of a program into more programs. Neither needs a change to the join. What the +projection cut adds is that the *projections* a semi-join reduction is built out of stop costing +a full pass over the relation. + +`generate.py OUTDIR` writes the six measured programs; every measurement below is the query-only +time the CLI reports (`took N ms`), best of three, on the same machine. + +## 1. The projection is the shape the cut answers + +A semi-join `A ⋉ B` on variable `v` needs `π_v(B)` — in MM2, `(exec _ (, (B $v $_)) (, (Bv $v)))`. +`$_` is mentioned once, no template reads it, and it is the conjunct's last column, so the cut +answers it with one witness per key instead of enumerating every tuple. + +| program | leapfrog | ProductZipper | +|---|---|---| +| `proj_keyfirst.mm2` — `(, (S $y $_))` | **0 ms** | **0 ms** | +| `proj_keylast.mm2` — `(, (S $_ $z))` | 22 ms | 26 ms | + +80000 tuples over 600 distinct keys. **This is the design rule the transform must follow: emit +reduced relations KEY-FIRST.** With the key last the don't-care is not trailing, the cut correctly +refuses it (pinning `$_` would decide which subtrie `$z` comes from), and the projection pays a +full pass. + +## 2. Yannakakis staging + +`chain_naive.mm2` joins `(, (R $x $y) (S $y $z) (T $z $w))` directly. `chain_staged.mm2` projects, +semi-joins bottom-up, semi-joins top-down, then joins the reduced relations — nine execs ordered +by `loc`. + +| | leapfrog | ProductZipper | +|---|---|---| +| naive chain join | 166 ms | 811 ms | +| Yannakakis staged | 154 ms | **276 ms** | + +**2.9× on the ProductZipper, ~1.07× on leapfrog.** On an *acyclic* body leapfrog intersects every +participating factor at each variable, so it is already doing the reduction's work and little is +left to remove. That is a property of acyclic bodies only -- see §5, where the same decomposition +is worth 25x to leapfrog on a cyclic one. + +## 3. Incrementalization + +`tc_naive.mm2` re-joins the whole `path` relation with `edge` on every iteration. +`tc_delta.mm2` joins only the frontier the previous iteration produced — the wiki's own +generation-labelled idiom, which is semi-naive evaluation written by hand. + +| chain of 220 nodes, closure = 24090 pairs | leapfrog | ProductZipper | +|---|---|---| +| naive fixpoint | 19565 ms | 24381 ms | +| semi-naive | **150 ms** | **208 ms** | +| | **130×** | **117×** | + +Identical closures on both engines. This one needs no engine support at all: per-iteration work +falls from `O(|path|)` to `O(|Δ|)`, and the two are quadratically apart on a chain. + +## 4. Composing them + +The two compose and stay correct, but an *inline* semi-join conjunct buys nothing: + +| 120 chain nodes × 12 dead-end leaves each | leapfrog | ProductZipper | +|---|---|---| +| semi-naive | 348 ms | 504 ms | +| semi-naive + inline `(esrc $y)` guard | 350 ms | 519 ms | + +Both engines already intersect at the shared variable, so the extra conjunct re-derives a +restriction they were performing anyway and costs a third factor to intersect. A reduction only +pays when it is **materialised into an earlier stage**, removing tuples before a later and more +expensive one — which is what §2 does and what §4 does not. + +## Two MM2 gotchas these programs ran into + +**Loc ordering.** Execs run in byte order of the whole atom, and a *symbol* loc sorts above a +*compound* one: `(exec (2 0) ..)` runs AFTER `(exec (2 (1 Z)) ..)`. Mixing the two shapes inverts +the intended staging — a seed written `(exec (2 0) ..)` fires after the loop that consumes it, so +the loop sees an empty relation and dies silently. + +**Self-reproducing execs never stop.** A rule that re-adds itself has no termination condition of +its own, so it monopolises every remaining step and any family ordered after it never runs. Bound +it with Peano fuel consumed through an `O`-form `(+ (fuel $k)) (- (fuel (S $k)))`, as the +Reachability-P2 tutorial does. + +`differential/corpus/programs/transform_staging.mm2` carries both transforms at a size the +differential runs on every build, computing each one BOTH ways in a single program so its expected +space pins the staged form equal to the form it replaces. + +## 5. Decomposition on a CYCLIC body — where leapfrog does gain + +`cyc_naive.mm2` asks for 6-cycles directly. `cyc_staged.mm2` splits the cycle into two bags of +three edges — a generalized hypertree decomposition of width 2, against the query's fractional +edge cover number of 3 — materialising the first bag as its projected endpoints. + +| 900 edges, 70 nodes | leapfrog | ProductZipper | +|---|---|---| +| naive 6-cycle join | 5951 ms | 11419 ms | +| two bags, endpoints materialised | **237 ms** | **425 ms** | +| | **25×** | **27×** | + +Identical answers. The mechanism is visible in the data: the graph holds 149611 three-paths but +only 4900 distinct endpoint pairs, a 30.5x sharing factor, of which the staging realises 25x. A +worst-case-optimal join re-derives the entire suffix for **every** binding of the variables the +decomposition projects away; materialising the bag pays for the suffix once per distinct endpoint +pair. So the earlier claim that leapfrog is already doing Yannakakis' work holds for acyclic +bodies and does not generalise: on cyclic ones the decomposition is a large win for leapfrog too. + +## 6. Incrementalizing the process calculus + +The benchmark's communication rule is a self-join on the soup keyed by channel: +`(, (petri (? $c $pl $b)) (petri (! $c $pl))) -> (petri $b)`. It is MONOTONE -- nothing is +removed -- so every past communication is re-derived on every activation, and the cost of a +cascade of length N is quadratic in N. + +`pc3_delta.mm2` joins only the messages the previous round produced, with promotion folded into +the rule itself (a separate promotion exec would be starved: this family re-adds itself and sorts +first, so it consumes all the fuel before the promoter ever runs). + +`pc3_consume.mm2` instead retires the reagents -- `(- (petri (? ...))) (- (petri (! ...)))` -- +which is the faithful reading of a communication and removes the re-derivation at its source +rather than filtering it afterwards. + +| chain length | naive | delta | | consuming | | +|---|---|---|---|---|---| +| 200 | 250 ms | 37 ms | 6.8× | 27 ms | 9.3× | +| 400 | 1391 ms | 129 ms | 10.8× | 87 ms | 16.0× | +| 800 | 9452 ms | 479 ms | 19.7× | 313 ms | 30.2× | + +All three derive the final message. The ratio roughly doubles as the chain doubles, which is the +signature of removing a quadratic: the uplift is not a constant and has no ceiling. + +Consuming beats the delta at every size and leaves a soup of ONE atom against 801, because the +delta still keeps every intermediate and merely avoids re-joining it, while consuming never keeps +one. Where the intermediates are not wanted, that is the transform to reach for. + +An earlier version of this section reported ~1.1x. That measurement ran 30 rounds of fuel over a +4000-receiver chain -- under one percent of the cascade -- so the quadratic never developed and +the number was an artifact of the harness, not a property of the transform. The shipped +`process_calculus_bench` rule is monotone in exactly this way, so it is paying the same quadratic. + +## 7. Sweep over main.rs and the wiki + +Every MM2 program in `kernel/src/main.rs`, `kernel/resources/` and the wiki was inventoried for +the two transforms. Applicability turns on three properties of a rule body: whether it is +ITERATIVE (a self-reproducing exec, so incrementalization applies), whether it is CYCLIC and +PROJECTS variables away (so a decomposition can share the suffix), and whether the relation being +ENUMERATED is the one that grows. + +`bench_pairs.py DIR STEPS PREFIXES` measures every `X_naive.mm2` against its `X_.mm2` +in DIR on both engines and checks the answer spaces agree. + +| example | taken from | transform | leapfrog | ProductZipper | +|---|---|---|---|---| +| `tc` | Reachability P1/P3 shape | incrementalization | **130×** | **117×** | +| `cyc` | cyclic body, ghw 2 < ρ* 3 | GHD decomposition | **25.4×** | **27.1×** | +| `craft` | wiki Reachability-P2 `exec (1 3)` | semi-join reduction | **8.5×** | **15.6×** | +| `chain` | acyclic 3-relation join | Yannakakis staging | 1.07× | **2.9×** | +| `lts` | taxi_lts / tile_puzzle / CTL shape | worklist delta | 1.8× | 1.8× | +| `clq` | `bench_clique_no_unify` | triangle staging | 0.9× | **6.9×** | +| `pc2` | `process_calculus_bench` | delta | 1.1× | — | + +What separates the top of that table from the bottom is projection, not cyclicity. `cyc` and +`craft` both discard almost every body variable, so materialising a bag pays for the shared +suffix once instead of once per discarded binding. `clq` is just as cyclic but names every +variable in its template, so leapfrog has nothing to share and only the ProductZipper -- which +has no per-level intersection at all -- gains. `lts` and `pc2` grow the relation the join +PROBES rather than the one it ENUMERATES, so a delta barely helps; `tc` grows the enumerated one +quadratically, which is the whole 130×. + +Programs that the sweep found and did NOT translate, with the reason: `bench_logic_query`, +`bench_finite_domain`, `pattern_mining`, `bench_lr`, `grounding`, `string_convert` and the +`Sources-and-Sinks` examples are single-shot and non-iterative with nothing projected away; +`decision_tree_learning`, `hexlife` and `ip_sudoku` are driven by aggregating sinks, which the +projection cut may not touch at all (see the sink note in space.rs); `bfc`, `ctl` and the +backward-chaining family are iterative but their rules are generated per-step by meta-execs, so +a delta rewrite has to be applied to the generator rather than the rule and is a larger change +than this file demonstrates. diff --git a/examples/transforms/bench_pairs.py b/examples/transforms/bench_pairs.py new file mode 100755 index 00000000..9e776b09 --- /dev/null +++ b/examples/transforms/bench_pairs.py @@ -0,0 +1,42 @@ +#!/usr/bin/env python3 +"""Benchmark paired MM2 programs: for each X, run X_naive.mm2 against X_.mm2 on both +engines, check the answer spaces agree, and report the ratio. Query-only time, best of 3.""" +import glob, os, re, subprocess, sys +TOOK = re.compile(r"took (\d+) ms") +def run(binary, prog, out, steps, reps=3): + best = None + for _ in range(reps): + try: + r = subprocess.run([binary, "run", prog, "--steps", str(steps), out], + capture_output=True, timeout=600) + except subprocess.TimeoutExpired: + return None, None + m = TOOK.search(r.stdout.decode("utf-8", "replace")) + ms = int(m.group(1)) if m else -1 + best = ms if best is None else min(best, ms) + return best, open(out, "rb").read() +def key_lines(dump, prefixes): + return sorted(l for l in dump.decode("utf-8", "replace").split("\n") + if any(l.startswith("(" + p) for p in prefixes)) +def main(d, steps, prefixes): + names = sorted({os.path.basename(f).rsplit("_", 1)[0] for f in glob.glob(d + "/*_naive.mm2")}) + print("%-22s %-10s %9s %9s %8s %9s %9s %8s %s" % + ("example", "variant", "lf naive", "lf opt", "x", "pz naive", "pz opt", "x", "agree")) + for n in names: + base = f"{d}/{n}_naive.mm2" + for v in sorted(glob.glob(f"{d}/{n}_*.mm2")): + tag = os.path.basename(v)[len(n) + 1:-4] + if tag == "naive": + continue + row, agree = [], [] + for e in ["lf", "pz"]: + bn, bd = run(f"/tmp/paj-v4-{e}", base, f"/tmp/bp_{n}_{e}_n.space", steps) + on, od = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) + if bn is None or on is None: + row += ["t/o", "t/o", 0.0]; agree.append("?"); continue + row += [bn, on, bn / max(on, 0.5)] + agree.append("y" if key_lines(bd, prefixes) == key_lines(od, prefixes) else "N") + print("%-22s %-10s %9s %9s %7.1fx %9s %9s %7.1fx %s" % + (n, tag, row[0], row[1], row[2], row[3], row[4], row[5], "".join(agree))) +if __name__ == "__main__": + main(sys.argv[1], int(sys.argv[2]), sys.argv[3].split(",")) diff --git a/examples/transforms/clq_naive.mm2 b/examples/transforms/clq_naive.mm2 new file mode 100644 index 00000000..c544d17c --- /dev/null +++ b/examples/transforms/clq_naive.mm2 @@ -0,0 +1,3603 @@ +(edge n0 n1) +(edge n0 n12) +(edge n0 n21) +(edge n0 n24) +(edge n0 n25) +(edge n0 n31) +(edge n0 n33) +(edge n0 n37) +(edge n0 n43) +(edge n0 n56) +(edge n0 n58) +(edge n0 n62) +(edge n0 n67) +(edge n0 n71) +(edge n0 n74) +(edge n0 n83) +(edge n0 n84) +(edge n0 n100) +(edge n0 n101) +(edge n0 n103) +(edge n0 n108) +(edge n0 n114) +(edge n0 n124) +(edge n0 n125) +(edge n0 n130) +(edge n0 n135) +(edge n0 n139) +(edge n0 n155) +(edge n0 n156) +(edge n0 n157) +(edge n0 n159) +(edge n0 n164) +(edge n0 n168) +(edge n0 n182) +(edge n0 n186) +(edge n0 n191) +(edge n0 n196) +(edge n1 n8) +(edge n1 n13) +(edge n1 n19) +(edge n1 n20) +(edge n1 n22) +(edge n1 n23) +(edge n1 n28) +(edge n1 n33) +(edge n1 n46) +(edge n1 n50) +(edge n1 n54) +(edge n1 n60) +(edge n1 n61) +(edge n1 n64) +(edge n1 n66) +(edge n1 n72) +(edge n1 n78) +(edge n1 n80) +(edge n1 n88) +(edge n1 n101) +(edge n1 n106) +(edge n1 n107) +(edge n1 n108) +(edge n1 n119) +(edge n1 n123) +(edge n1 n131) +(edge n1 n135) +(edge n1 n136) +(edge n1 n145) +(edge n1 n153) +(edge n1 n160) +(edge n1 n164) +(edge n1 n166) +(edge n1 n177) +(edge n1 n179) +(edge n1 n180) +(edge n1 n187) +(edge n1 n190) +(edge n1 n192) +(edge n1 n195) +(edge n2 n8) +(edge n2 n11) +(edge n2 n17) +(edge n2 n31) +(edge n2 n32) +(edge n2 n37) +(edge n2 n42) +(edge n2 n44) +(edge n2 n46) +(edge n2 n50) +(edge n2 n60) +(edge n2 n61) +(edge n2 n64) +(edge n2 n65) +(edge n2 n66) +(edge n2 n78) +(edge n2 n84) +(edge n2 n86) +(edge n2 n109) +(edge n2 n116) +(edge n2 n122) +(edge n2 n137) +(edge n2 n138) +(edge n2 n141) +(edge n2 n144) +(edge n2 n152) +(edge n2 n156) +(edge n2 n160) +(edge n2 n162) +(edge n2 n170) +(edge n2 n171) +(edge n2 n176) +(edge n2 n186) +(edge n2 n196) +(edge n3 n9) +(edge n3 n21) +(edge n3 n29) +(edge n3 n30) +(edge n3 n41) +(edge n3 n46) +(edge n3 n54) +(edge n3 n56) +(edge n3 n61) +(edge n3 n72) +(edge n3 n74) +(edge n3 n76) +(edge n3 n82) +(edge n3 n87) +(edge n3 n88) +(edge n3 n105) +(edge n3 n109) +(edge n3 n111) +(edge n3 n112) +(edge n3 n113) +(edge n3 n115) +(edge n3 n122) +(edge n3 n128) +(edge n3 n130) +(edge n3 n133) +(edge n3 n135) +(edge n3 n147) +(edge n3 n154) +(edge n3 n157) +(edge n3 n168) +(edge n3 n169) +(edge n3 n172) +(edge n3 n174) +(edge n3 n178) +(edge n3 n187) +(edge n3 n192) +(edge n3 n197) +(edge n4 n7) +(edge n4 n9) +(edge n4 n12) +(edge n4 n21) +(edge n4 n22) +(edge n4 n25) +(edge n4 n30) +(edge n4 n37) +(edge n4 n39) +(edge n4 n41) +(edge n4 n48) +(edge n4 n51) +(edge n4 n54) +(edge n4 n60) +(edge n4 n62) +(edge n4 n66) +(edge n4 n85) +(edge n4 n87) +(edge n4 n90) +(edge n4 n91) +(edge n4 n103) +(edge n4 n104) +(edge n4 n131) +(edge n4 n135) +(edge n4 n138) +(edge n4 n145) +(edge n4 n147) +(edge n4 n151) +(edge n4 n156) +(edge n4 n159) +(edge n4 n164) +(edge n4 n165) +(edge n4 n175) +(edge n4 n176) +(edge n4 n178) +(edge n4 n179) +(edge n4 n180) +(edge n4 n182) +(edge n4 n186) +(edge n4 n190) +(edge n4 n193) +(edge n5 n7) +(edge n5 n10) +(edge n5 n13) +(edge n5 n30) +(edge n5 n34) +(edge n5 n42) +(edge n5 n46) +(edge n5 n51) +(edge n5 n70) +(edge n5 n72) +(edge n5 n75) +(edge n5 n76) +(edge n5 n95) +(edge n5 n97) +(edge n5 n104) +(edge n5 n125) +(edge n5 n126) +(edge n5 n128) +(edge n5 n135) +(edge n5 n138) +(edge n5 n141) +(edge n5 n143) +(edge n5 n145) +(edge n5 n149) +(edge n5 n154) +(edge n5 n159) +(edge n5 n160) +(edge n5 n163) +(edge n5 n165) +(edge n5 n168) +(edge n5 n175) +(edge n5 n178) +(edge n5 n189) +(edge n5 n192) +(edge n5 n197) +(edge n6 n7) +(edge n6 n11) +(edge n6 n18) +(edge n6 n28) +(edge n6 n40) +(edge n6 n41) +(edge n6 n64) +(edge n6 n76) +(edge n6 n78) +(edge n6 n86) +(edge n6 n90) +(edge n6 n93) +(edge n6 n95) +(edge n6 n97) +(edge n6 n103) +(edge n6 n108) +(edge n6 n109) +(edge n6 n121) +(edge n6 n122) +(edge n6 n127) +(edge n6 n133) +(edge n6 n134) +(edge n6 n139) +(edge n6 n140) +(edge n6 n155) +(edge n6 n161) +(edge n6 n162) +(edge n6 n165) +(edge n6 n166) +(edge n6 n176) +(edge n6 n188) +(edge n6 n190) +(edge n6 n191) +(edge n6 n192) +(edge n6 n193) +(edge n7 n10) +(edge n7 n26) +(edge n7 n35) +(edge n7 n38) +(edge n7 n39) +(edge n7 n45) +(edge n7 n50) +(edge n7 n51) +(edge n7 n52) +(edge n7 n65) +(edge n7 n67) +(edge n7 n68) +(edge n7 n72) +(edge n7 n74) +(edge n7 n75) +(edge n7 n78) +(edge n7 n82) +(edge n7 n85) +(edge n7 n93) +(edge n7 n95) +(edge n7 n98) +(edge n7 n99) +(edge n7 n100) +(edge n7 n104) +(edge n7 n105) +(edge n7 n109) +(edge n7 n124) +(edge n7 n152) +(edge n7 n154) +(edge n7 n157) +(edge n7 n161) +(edge n7 n163) +(edge n7 n167) +(edge n7 n171) +(edge n7 n176) +(edge n7 n177) +(edge n7 n179) +(edge n7 n180) +(edge n7 n190) +(edge n8 n11) +(edge n8 n14) +(edge n8 n15) +(edge n8 n21) +(edge n8 n22) +(edge n8 n28) +(edge n8 n31) +(edge n8 n33) +(edge n8 n41) +(edge n8 n42) +(edge n8 n48) +(edge n8 n55) +(edge n8 n67) +(edge n8 n73) +(edge n8 n79) +(edge n8 n83) +(edge n8 n96) +(edge n8 n98) +(edge n8 n100) +(edge n8 n101) +(edge n8 n111) +(edge n8 n112) +(edge n8 n116) +(edge n8 n119) +(edge n8 n122) +(edge n8 n124) +(edge n8 n133) +(edge n8 n142) +(edge n8 n144) +(edge n8 n145) +(edge n8 n147) +(edge n8 n148) +(edge n8 n152) +(edge n8 n158) +(edge n8 n168) +(edge n8 n172) +(edge n8 n173) +(edge n8 n179) +(edge n8 n185) +(edge n8 n190) +(edge n8 n193) +(edge n8 n194) +(edge n9 n10) +(edge n9 n11) +(edge n9 n19) +(edge n9 n30) +(edge n9 n34) +(edge n9 n39) +(edge n9 n40) +(edge n9 n50) +(edge n9 n52) +(edge n9 n78) +(edge n9 n79) +(edge n9 n81) +(edge n9 n83) +(edge n9 n85) +(edge n9 n96) +(edge n9 n102) +(edge n9 n126) +(edge n9 n128) +(edge n9 n138) +(edge n9 n140) +(edge n9 n148) +(edge n9 n153) +(edge n9 n157) +(edge n9 n164) +(edge n9 n166) +(edge n9 n169) +(edge n9 n179) +(edge n9 n185) +(edge n9 n188) +(edge n9 n190) +(edge n10 n17) +(edge n10 n51) +(edge n10 n52) +(edge n10 n59) +(edge n10 n61) +(edge n10 n65) +(edge n10 n69) +(edge n10 n73) +(edge n10 n74) +(edge n10 n98) +(edge n10 n109) +(edge n10 n110) +(edge n10 n116) +(edge n10 n119) +(edge n10 n120) +(edge n10 n124) +(edge n10 n127) +(edge n10 n131) +(edge n10 n135) +(edge n10 n139) +(edge n10 n143) +(edge n10 n147) +(edge n10 n162) +(edge n10 n169) +(edge n10 n172) +(edge n10 n178) +(edge n10 n184) +(edge n10 n186) +(edge n10 n195) +(edge n10 n198) +(edge n10 n199) +(edge n11 n15) +(edge n11 n18) +(edge n11 n21) +(edge n11 n27) +(edge n11 n29) +(edge n11 n35) +(edge n11 n40) +(edge n11 n45) +(edge n11 n53) +(edge n11 n54) +(edge n11 n55) +(edge n11 n63) +(edge n11 n65) +(edge n11 n66) +(edge n11 n74) +(edge n11 n80) +(edge n11 n83) +(edge n11 n84) +(edge n11 n86) +(edge n11 n90) +(edge n11 n98) +(edge n11 n102) +(edge n11 n109) +(edge n11 n126) +(edge n11 n127) +(edge n11 n130) +(edge n11 n146) +(edge n11 n149) +(edge n11 n151) +(edge n11 n160) +(edge n11 n163) +(edge n11 n166) +(edge n11 n171) +(edge n11 n175) +(edge n11 n177) +(edge n11 n185) +(edge n11 n190) +(edge n11 n199) +(edge n12 n13) +(edge n12 n21) +(edge n12 n26) +(edge n12 n28) +(edge n12 n34) +(edge n12 n35) +(edge n12 n37) +(edge n12 n43) +(edge n12 n45) +(edge n12 n49) +(edge n12 n51) +(edge n12 n53) +(edge n12 n57) +(edge n12 n60) +(edge n12 n64) +(edge n12 n69) +(edge n12 n74) +(edge n12 n75) +(edge n12 n78) +(edge n12 n80) +(edge n12 n84) +(edge n12 n107) +(edge n12 n117) +(edge n12 n120) +(edge n12 n122) +(edge n12 n133) +(edge n12 n142) +(edge n12 n145) +(edge n12 n148) +(edge n12 n149) +(edge n12 n150) +(edge n12 n151) +(edge n12 n156) +(edge n12 n161) +(edge n12 n169) +(edge n12 n172) +(edge n12 n180) +(edge n12 n184) +(edge n12 n188) +(edge n12 n196) +(edge n12 n199) +(edge n13 n14) +(edge n13 n26) +(edge n13 n31) +(edge n13 n33) +(edge n13 n34) +(edge n13 n36) +(edge n13 n37) +(edge n13 n38) +(edge n13 n44) +(edge n13 n47) +(edge n13 n48) +(edge n13 n54) +(edge n13 n66) +(edge n13 n67) +(edge n13 n74) +(edge n13 n76) +(edge n13 n87) +(edge n13 n96) +(edge n13 n98) +(edge n13 n99) +(edge n13 n100) +(edge n13 n107) +(edge n13 n112) +(edge n13 n118) +(edge n13 n126) +(edge n13 n136) +(edge n13 n146) +(edge n13 n149) +(edge n13 n157) +(edge n13 n160) +(edge n13 n161) +(edge n13 n168) +(edge n13 n177) +(edge n13 n181) +(edge n13 n185) +(edge n13 n194) +(edge n13 n199) +(edge n14 n20) +(edge n14 n23) +(edge n14 n34) +(edge n14 n41) +(edge n14 n44) +(edge n14 n51) +(edge n14 n56) +(edge n14 n57) +(edge n14 n64) +(edge n14 n69) +(edge n14 n70) +(edge n14 n86) +(edge n14 n88) +(edge n14 n89) +(edge n14 n92) +(edge n14 n94) +(edge n14 n95) +(edge n14 n102) +(edge n14 n107) +(edge n14 n117) +(edge n14 n120) +(edge n14 n125) +(edge n14 n136) +(edge n14 n146) +(edge n14 n181) +(edge n14 n183) +(edge n14 n185) +(edge n14 n195) +(edge n14 n198) +(edge n15 n16) +(edge n15 n17) +(edge n15 n25) +(edge n15 n27) +(edge n15 n36) +(edge n15 n37) +(edge n15 n39) +(edge n15 n48) +(edge n15 n50) +(edge n15 n51) +(edge n15 n52) +(edge n15 n66) +(edge n15 n70) +(edge n15 n74) +(edge n15 n77) +(edge n15 n78) +(edge n15 n80) +(edge n15 n86) +(edge n15 n101) +(edge n15 n102) +(edge n15 n108) +(edge n15 n114) +(edge n15 n117) +(edge n15 n118) +(edge n15 n121) +(edge n15 n122) +(edge n15 n139) +(edge n15 n141) +(edge n15 n143) +(edge n15 n148) +(edge n15 n150) +(edge n15 n152) +(edge n15 n153) +(edge n15 n155) +(edge n15 n163) +(edge n15 n188) +(edge n15 n195) +(edge n15 n199) +(edge n16 n23) +(edge n16 n25) +(edge n16 n28) +(edge n16 n51) +(edge n16 n56) +(edge n16 n64) +(edge n16 n68) +(edge n16 n70) +(edge n16 n73) +(edge n16 n81) +(edge n16 n83) +(edge n16 n84) +(edge n16 n85) +(edge n16 n87) +(edge n16 n92) +(edge n16 n99) +(edge n16 n107) +(edge n16 n108) +(edge n16 n114) +(edge n16 n118) +(edge n16 n123) +(edge n16 n130) +(edge n16 n136) +(edge n16 n158) +(edge n16 n161) +(edge n16 n173) +(edge n16 n180) +(edge n16 n184) +(edge n16 n188) +(edge n16 n191) +(edge n16 n192) +(edge n16 n193) +(edge n17 n18) +(edge n17 n36) +(edge n17 n41) +(edge n17 n49) +(edge n17 n55) +(edge n17 n62) +(edge n17 n70) +(edge n17 n76) +(edge n17 n83) +(edge n17 n93) +(edge n17 n97) +(edge n17 n99) +(edge n17 n110) +(edge n17 n111) +(edge n17 n112) +(edge n17 n122) +(edge n17 n145) +(edge n17 n151) +(edge n17 n154) +(edge n17 n155) +(edge n17 n156) +(edge n17 n169) +(edge n17 n174) +(edge n17 n185) +(edge n17 n199) +(edge n18 n20) +(edge n18 n21) +(edge n18 n35) +(edge n18 n36) +(edge n18 n43) +(edge n18 n46) +(edge n18 n47) +(edge n18 n51) +(edge n18 n63) +(edge n18 n64) +(edge n18 n72) +(edge n18 n74) +(edge n18 n75) +(edge n18 n77) +(edge n18 n78) +(edge n18 n89) +(edge n18 n90) +(edge n18 n95) +(edge n18 n96) +(edge n18 n100) +(edge n18 n104) +(edge n18 n116) +(edge n18 n117) +(edge n18 n119) +(edge n18 n127) +(edge n18 n129) +(edge n18 n134) +(edge n18 n137) +(edge n18 n168) +(edge n18 n169) +(edge n18 n176) +(edge n18 n180) +(edge n18 n183) +(edge n19 n30) +(edge n19 n31) +(edge n19 n35) +(edge n19 n37) +(edge n19 n38) +(edge n19 n51) +(edge n19 n54) +(edge n19 n56) +(edge n19 n57) +(edge n19 n63) +(edge n19 n64) +(edge n19 n65) +(edge n19 n73) +(edge n19 n76) +(edge n19 n79) +(edge n19 n80) +(edge n19 n85) +(edge n19 n87) +(edge n19 n89) +(edge n19 n91) +(edge n19 n98) +(edge n19 n99) +(edge n19 n102) +(edge n19 n106) +(edge n19 n107) +(edge n19 n121) +(edge n19 n128) +(edge n19 n130) +(edge n19 n140) +(edge n19 n142) +(edge n19 n144) +(edge n19 n147) +(edge n19 n150) +(edge n19 n158) +(edge n19 n161) +(edge n19 n164) +(edge n19 n174) +(edge n19 n176) +(edge n19 n182) +(edge n20 n25) +(edge n20 n27) +(edge n20 n39) +(edge n20 n40) +(edge n20 n43) +(edge n20 n50) +(edge n20 n67) +(edge n20 n73) +(edge n20 n74) +(edge n20 n79) +(edge n20 n80) +(edge n20 n85) +(edge n20 n86) +(edge n20 n93) +(edge n20 n96) +(edge n20 n98) +(edge n20 n101) +(edge n20 n113) +(edge n20 n114) +(edge n20 n130) +(edge n20 n140) +(edge n20 n148) +(edge n20 n151) +(edge n20 n153) +(edge n20 n155) +(edge n20 n157) +(edge n20 n176) +(edge n20 n179) +(edge n20 n182) +(edge n20 n183) +(edge n20 n184) +(edge n20 n194) +(edge n20 n196) +(edge n21 n27) +(edge n21 n29) +(edge n21 n31) +(edge n21 n40) +(edge n21 n42) +(edge n21 n43) +(edge n21 n55) +(edge n21 n75) +(edge n21 n78) +(edge n21 n81) +(edge n21 n82) +(edge n21 n87) +(edge n21 n92) +(edge n21 n95) +(edge n21 n97) +(edge n21 n106) +(edge n21 n116) +(edge n21 n117) +(edge n21 n121) +(edge n21 n122) +(edge n21 n130) +(edge n21 n141) +(edge n21 n149) +(edge n21 n154) +(edge n21 n159) +(edge n21 n160) +(edge n21 n163) +(edge n21 n165) +(edge n21 n176) +(edge n21 n178) +(edge n21 n183) +(edge n21 n195) +(edge n22 n23) +(edge n22 n30) +(edge n22 n43) +(edge n22 n47) +(edge n22 n48) +(edge n22 n49) +(edge n22 n57) +(edge n22 n58) +(edge n22 n59) +(edge n22 n61) +(edge n22 n62) +(edge n22 n78) +(edge n22 n87) +(edge n22 n96) +(edge n22 n104) +(edge n22 n107) +(edge n22 n111) +(edge n22 n113) +(edge n22 n115) +(edge n22 n124) +(edge n22 n126) +(edge n22 n127) +(edge n22 n129) +(edge n22 n132) +(edge n22 n142) +(edge n22 n152) +(edge n22 n169) +(edge n22 n174) +(edge n22 n178) +(edge n22 n181) +(edge n22 n185) +(edge n22 n190) +(edge n22 n191) +(edge n22 n196) +(edge n23 n25) +(edge n23 n26) +(edge n23 n31) +(edge n23 n40) +(edge n23 n44) +(edge n23 n47) +(edge n23 n53) +(edge n23 n55) +(edge n23 n57) +(edge n23 n60) +(edge n23 n64) +(edge n23 n78) +(edge n23 n81) +(edge n23 n108) +(edge n23 n112) +(edge n23 n115) +(edge n23 n120) +(edge n23 n125) +(edge n23 n126) +(edge n23 n130) +(edge n23 n137) +(edge n23 n140) +(edge n23 n144) +(edge n23 n150) +(edge n23 n161) +(edge n23 n162) +(edge n23 n163) +(edge n23 n165) +(edge n23 n169) +(edge n23 n188) +(edge n24 n28) +(edge n24 n39) +(edge n24 n45) +(edge n24 n47) +(edge n24 n48) +(edge n24 n56) +(edge n24 n58) +(edge n24 n60) +(edge n24 n63) +(edge n24 n68) +(edge n24 n71) +(edge n24 n76) +(edge n24 n86) +(edge n24 n93) +(edge n24 n94) +(edge n24 n95) +(edge n24 n98) +(edge n24 n100) +(edge n24 n104) +(edge n24 n105) +(edge n24 n111) +(edge n24 n121) +(edge n24 n123) +(edge n24 n127) +(edge n24 n135) +(edge n24 n139) +(edge n24 n151) +(edge n24 n155) +(edge n24 n165) +(edge n24 n172) +(edge n24 n175) +(edge n25 n48) +(edge n25 n54) +(edge n25 n66) +(edge n25 n72) +(edge n25 n79) +(edge n25 n83) +(edge n25 n84) +(edge n25 n92) +(edge n25 n93) +(edge n25 n99) +(edge n25 n110) +(edge n25 n114) +(edge n25 n115) +(edge n25 n116) +(edge n25 n118) +(edge n25 n121) +(edge n25 n132) +(edge n25 n143) +(edge n25 n144) +(edge n25 n148) +(edge n25 n152) +(edge n25 n156) +(edge n25 n157) +(edge n25 n158) +(edge n25 n159) +(edge n25 n164) +(edge n25 n169) +(edge n25 n173) +(edge n25 n185) +(edge n25 n187) +(edge n25 n189) +(edge n26 n35) +(edge n26 n38) +(edge n26 n46) +(edge n26 n47) +(edge n26 n55) +(edge n26 n62) +(edge n26 n66) +(edge n26 n67) +(edge n26 n70) +(edge n26 n78) +(edge n26 n79) +(edge n26 n85) +(edge n26 n90) +(edge n26 n99) +(edge n26 n108) +(edge n26 n112) +(edge n26 n119) +(edge n26 n128) +(edge n26 n134) +(edge n26 n137) +(edge n26 n140) +(edge n26 n154) +(edge n26 n159) +(edge n26 n165) +(edge n26 n169) +(edge n26 n170) +(edge n26 n177) +(edge n26 n192) +(edge n27 n29) +(edge n27 n32) +(edge n27 n35) +(edge n27 n50) +(edge n27 n53) +(edge n27 n58) +(edge n27 n62) +(edge n27 n63) +(edge n27 n70) +(edge n27 n71) +(edge n27 n77) +(edge n27 n80) +(edge n27 n82) +(edge n27 n83) +(edge n27 n84) +(edge n27 n86) +(edge n27 n90) +(edge n27 n99) +(edge n27 n110) +(edge n27 n113) +(edge n27 n116) +(edge n27 n117) +(edge n27 n128) +(edge n27 n142) +(edge n27 n145) +(edge n27 n151) +(edge n27 n169) +(edge n27 n171) +(edge n27 n193) +(edge n27 n197) +(edge n27 n199) +(edge n28 n39) +(edge n28 n43) +(edge n28 n47) +(edge n28 n49) +(edge n28 n55) +(edge n28 n70) +(edge n28 n72) +(edge n28 n73) +(edge n28 n77) +(edge n28 n84) +(edge n28 n100) +(edge n28 n106) +(edge n28 n110) +(edge n28 n124) +(edge n28 n129) +(edge n28 n134) +(edge n28 n136) +(edge n28 n152) +(edge n28 n159) +(edge n28 n164) +(edge n28 n172) +(edge n28 n182) +(edge n28 n193) +(edge n29 n32) +(edge n29 n37) +(edge n29 n40) +(edge n29 n43) +(edge n29 n47) +(edge n29 n53) +(edge n29 n54) +(edge n29 n62) +(edge n29 n64) +(edge n29 n69) +(edge n29 n72) +(edge n29 n76) +(edge n29 n82) +(edge n29 n83) +(edge n29 n86) +(edge n29 n87) +(edge n29 n88) +(edge n29 n90) +(edge n29 n95) +(edge n29 n97) +(edge n29 n106) +(edge n29 n108) +(edge n29 n110) +(edge n29 n114) +(edge n29 n117) +(edge n29 n121) +(edge n29 n131) +(edge n29 n151) +(edge n29 n153) +(edge n29 n160) +(edge n29 n162) +(edge n29 n166) +(edge n29 n178) +(edge n29 n181) +(edge n29 n183) +(edge n29 n186) +(edge n29 n188) +(edge n29 n197) +(edge n29 n198) +(edge n29 n199) +(edge n30 n42) +(edge n30 n43) +(edge n30 n53) +(edge n30 n54) +(edge n30 n64) +(edge n30 n68) +(edge n30 n72) +(edge n30 n76) +(edge n30 n79) +(edge n30 n81) +(edge n30 n85) +(edge n30 n90) +(edge n30 n93) +(edge n30 n94) +(edge n30 n95) +(edge n30 n96) +(edge n30 n98) +(edge n30 n103) +(edge n30 n115) +(edge n30 n116) +(edge n30 n118) +(edge n30 n135) +(edge n30 n136) +(edge n30 n141) +(edge n30 n154) +(edge n30 n156) +(edge n30 n162) +(edge n30 n166) +(edge n30 n180) +(edge n30 n181) +(edge n30 n188) +(edge n30 n189) +(edge n30 n197) +(edge n31 n61) +(edge n31 n78) +(edge n31 n80) +(edge n31 n83) +(edge n31 n86) +(edge n31 n94) +(edge n31 n96) +(edge n31 n97) +(edge n31 n104) +(edge n31 n119) +(edge n31 n122) +(edge n31 n124) +(edge n31 n128) +(edge n31 n135) +(edge n31 n138) +(edge n31 n149) +(edge n31 n154) +(edge n31 n160) +(edge n31 n162) +(edge n31 n167) +(edge n31 n170) +(edge n31 n177) +(edge n31 n183) +(edge n31 n184) +(edge n31 n188) +(edge n32 n38) +(edge n32 n39) +(edge n32 n47) +(edge n32 n75) +(edge n32 n81) +(edge n32 n83) +(edge n32 n89) +(edge n32 n93) +(edge n32 n112) +(edge n32 n115) +(edge n32 n116) +(edge n32 n119) +(edge n32 n122) +(edge n32 n128) +(edge n32 n130) +(edge n32 n134) +(edge n32 n136) +(edge n32 n138) +(edge n32 n152) +(edge n32 n164) +(edge n32 n166) +(edge n32 n167) +(edge n32 n174) +(edge n32 n175) +(edge n32 n185) +(edge n32 n188) +(edge n32 n197) +(edge n33 n35) +(edge n33 n37) +(edge n33 n38) +(edge n33 n40) +(edge n33 n41) +(edge n33 n59) +(edge n33 n79) +(edge n33 n82) +(edge n33 n92) +(edge n33 n96) +(edge n33 n97) +(edge n33 n101) +(edge n33 n108) +(edge n33 n117) +(edge n33 n123) +(edge n33 n134) +(edge n33 n140) +(edge n33 n145) +(edge n33 n155) +(edge n33 n157) +(edge n33 n162) +(edge n33 n164) +(edge n33 n166) +(edge n33 n183) +(edge n33 n188) +(edge n33 n189) +(edge n33 n196) +(edge n33 n198) +(edge n33 n199) +(edge n34 n38) +(edge n34 n40) +(edge n34 n46) +(edge n34 n53) +(edge n34 n60) +(edge n34 n68) +(edge n34 n69) +(edge n34 n75) +(edge n34 n76) +(edge n34 n89) +(edge n34 n95) +(edge n34 n96) +(edge n34 n104) +(edge n34 n108) +(edge n34 n110) +(edge n34 n111) +(edge n34 n116) +(edge n34 n129) +(edge n34 n134) +(edge n34 n143) +(edge n34 n148) +(edge n34 n156) +(edge n34 n175) +(edge n34 n179) +(edge n34 n184) +(edge n34 n199) +(edge n35 n45) +(edge n35 n46) +(edge n35 n51) +(edge n35 n58) +(edge n35 n62) +(edge n35 n63) +(edge n35 n70) +(edge n35 n76) +(edge n35 n78) +(edge n35 n80) +(edge n35 n93) +(edge n35 n102) +(edge n35 n103) +(edge n35 n112) +(edge n35 n114) +(edge n35 n117) +(edge n35 n124) +(edge n35 n125) +(edge n35 n130) +(edge n35 n131) +(edge n35 n134) +(edge n35 n137) +(edge n35 n139) +(edge n35 n141) +(edge n35 n143) +(edge n35 n153) +(edge n35 n156) +(edge n35 n164) +(edge n35 n167) +(edge n35 n169) +(edge n35 n182) +(edge n35 n190) +(edge n35 n198) +(edge n36 n45) +(edge n36 n47) +(edge n36 n52) +(edge n36 n75) +(edge n36 n80) +(edge n36 n83) +(edge n36 n90) +(edge n36 n94) +(edge n36 n96) +(edge n36 n103) +(edge n36 n107) +(edge n36 n109) +(edge n36 n122) +(edge n36 n128) +(edge n36 n137) +(edge n36 n139) +(edge n36 n153) +(edge n36 n158) +(edge n36 n161) +(edge n36 n164) +(edge n36 n165) +(edge n36 n167) +(edge n36 n168) +(edge n36 n172) +(edge n36 n174) +(edge n36 n176) +(edge n36 n195) +(edge n36 n197) +(edge n37 n41) +(edge n37 n48) +(edge n37 n55) +(edge n37 n59) +(edge n37 n65) +(edge n37 n66) +(edge n37 n72) +(edge n37 n78) +(edge n37 n82) +(edge n37 n83) +(edge n37 n86) +(edge n37 n93) +(edge n37 n98) +(edge n37 n102) +(edge n37 n104) +(edge n37 n105) +(edge n37 n109) +(edge n37 n116) +(edge n37 n119) +(edge n37 n120) +(edge n37 n122) +(edge n37 n123) +(edge n37 n140) +(edge n37 n141) +(edge n37 n149) +(edge n37 n154) +(edge n37 n160) +(edge n37 n169) +(edge n37 n170) +(edge n37 n173) +(edge n37 n183) +(edge n37 n185) +(edge n37 n195) +(edge n37 n197) +(edge n37 n199) +(edge n38 n40) +(edge n38 n44) +(edge n38 n47) +(edge n38 n49) +(edge n38 n52) +(edge n38 n61) +(edge n38 n66) +(edge n38 n68) +(edge n38 n72) +(edge n38 n78) +(edge n38 n80) +(edge n38 n91) +(edge n38 n92) +(edge n38 n98) +(edge n38 n100) +(edge n38 n102) +(edge n38 n104) +(edge n38 n116) +(edge n38 n119) +(edge n38 n127) +(edge n38 n134) +(edge n38 n137) +(edge n38 n144) +(edge n38 n147) +(edge n38 n149) +(edge n38 n150) +(edge n38 n154) +(edge n38 n161) +(edge n38 n167) +(edge n38 n177) +(edge n38 n178) +(edge n39 n55) +(edge n39 n61) +(edge n39 n62) +(edge n39 n63) +(edge n39 n64) +(edge n39 n79) +(edge n39 n87) +(edge n39 n90) +(edge n39 n109) +(edge n39 n115) +(edge n39 n117) +(edge n39 n121) +(edge n39 n128) +(edge n39 n135) +(edge n39 n143) +(edge n39 n149) +(edge n39 n152) +(edge n39 n155) +(edge n39 n182) +(edge n39 n183) +(edge n39 n186) +(edge n39 n197) +(edge n39 n198) +(edge n40 n43) +(edge n40 n45) +(edge n40 n49) +(edge n40 n55) +(edge n40 n59) +(edge n40 n67) +(edge n40 n69) +(edge n40 n82) +(edge n40 n87) +(edge n40 n99) +(edge n40 n103) +(edge n40 n108) +(edge n40 n117) +(edge n40 n118) +(edge n40 n129) +(edge n40 n135) +(edge n40 n151) +(edge n40 n163) +(edge n40 n173) +(edge n40 n175) +(edge n40 n179) +(edge n40 n181) +(edge n40 n182) +(edge n40 n183) +(edge n40 n188) +(edge n40 n193) +(edge n40 n195) +(edge n40 n197) +(edge n40 n199) +(edge n41 n54) +(edge n41 n58) +(edge n41 n59) +(edge n41 n61) +(edge n41 n70) +(edge n41 n74) +(edge n41 n75) +(edge n41 n83) +(edge n41 n90) +(edge n41 n95) +(edge n41 n105) +(edge n41 n111) +(edge n41 n112) +(edge n41 n116) +(edge n41 n121) +(edge n41 n127) +(edge n41 n129) +(edge n41 n130) +(edge n41 n135) +(edge n41 n141) +(edge n41 n155) +(edge n41 n166) +(edge n41 n171) +(edge n41 n177) +(edge n41 n182) +(edge n41 n186) +(edge n41 n190) +(edge n41 n191) +(edge n42 n46) +(edge n42 n51) +(edge n42 n58) +(edge n42 n69) +(edge n42 n72) +(edge n42 n74) +(edge n42 n78) +(edge n42 n97) +(edge n42 n99) +(edge n42 n108) +(edge n42 n127) +(edge n42 n138) +(edge n42 n143) +(edge n42 n150) +(edge n42 n155) +(edge n42 n156) +(edge n42 n157) +(edge n42 n162) +(edge n42 n171) +(edge n42 n176) +(edge n42 n177) +(edge n42 n182) +(edge n42 n194) +(edge n43 n54) +(edge n43 n68) +(edge n43 n73) +(edge n43 n74) +(edge n43 n87) +(edge n43 n92) +(edge n43 n96) +(edge n43 n117) +(edge n43 n118) +(edge n43 n121) +(edge n43 n125) +(edge n43 n126) +(edge n43 n136) +(edge n43 n137) +(edge n43 n138) +(edge n43 n168) +(edge n43 n169) +(edge n43 n174) +(edge n43 n175) +(edge n43 n187) +(edge n43 n188) +(edge n43 n194) +(edge n43 n196) +(edge n44 n50) +(edge n44 n56) +(edge n44 n60) +(edge n44 n62) +(edge n44 n63) +(edge n44 n65) +(edge n44 n66) +(edge n44 n68) +(edge n44 n69) +(edge n44 n74) +(edge n44 n75) +(edge n44 n80) +(edge n44 n89) +(edge n44 n96) +(edge n44 n98) +(edge n44 n100) +(edge n44 n101) +(edge n44 n104) +(edge n44 n106) +(edge n44 n110) +(edge n44 n115) +(edge n44 n129) +(edge n44 n139) +(edge n44 n145) +(edge n44 n151) +(edge n44 n161) +(edge n44 n162) +(edge n44 n179) +(edge n44 n191) +(edge n44 n194) +(edge n44 n195) +(edge n45 n46) +(edge n45 n50) +(edge n45 n52) +(edge n45 n56) +(edge n45 n58) +(edge n45 n60) +(edge n45 n62) +(edge n45 n63) +(edge n45 n65) +(edge n45 n73) +(edge n45 n78) +(edge n45 n83) +(edge n45 n84) +(edge n45 n102) +(edge n45 n103) +(edge n45 n125) +(edge n45 n128) +(edge n45 n132) +(edge n45 n144) +(edge n45 n147) +(edge n45 n151) +(edge n45 n159) +(edge n45 n174) +(edge n45 n176) +(edge n45 n185) +(edge n45 n191) +(edge n46 n52) +(edge n46 n75) +(edge n46 n80) +(edge n46 n84) +(edge n46 n85) +(edge n46 n88) +(edge n46 n93) +(edge n46 n99) +(edge n46 n100) +(edge n46 n109) +(edge n46 n114) +(edge n46 n115) +(edge n46 n124) +(edge n46 n126) +(edge n46 n132) +(edge n46 n133) +(edge n46 n142) +(edge n46 n146) +(edge n46 n161) +(edge n46 n166) +(edge n46 n168) +(edge n46 n185) +(edge n46 n192) +(edge n46 n197) +(edge n47 n48) +(edge n47 n53) +(edge n47 n56) +(edge n47 n60) +(edge n47 n61) +(edge n47 n67) +(edge n47 n69) +(edge n47 n75) +(edge n47 n80) +(edge n47 n81) +(edge n47 n84) +(edge n47 n87) +(edge n47 n91) +(edge n47 n92) +(edge n47 n94) +(edge n47 n97) +(edge n47 n105) +(edge n47 n108) +(edge n47 n114) +(edge n47 n120) +(edge n47 n133) +(edge n47 n149) +(edge n47 n150) +(edge n47 n171) +(edge n47 n176) +(edge n47 n193) +(edge n47 n195) +(edge n48 n53) +(edge n48 n63) +(edge n48 n67) +(edge n48 n71) +(edge n48 n73) +(edge n48 n82) +(edge n48 n92) +(edge n48 n97) +(edge n48 n101) +(edge n48 n103) +(edge n48 n106) +(edge n48 n108) +(edge n48 n109) +(edge n48 n113) +(edge n48 n118) +(edge n48 n121) +(edge n48 n129) +(edge n48 n132) +(edge n48 n135) +(edge n48 n137) +(edge n48 n147) +(edge n48 n148) +(edge n48 n160) +(edge n48 n174) +(edge n48 n176) +(edge n48 n178) +(edge n48 n179) +(edge n48 n186) +(edge n48 n190) +(edge n48 n192) +(edge n48 n193) +(edge n49 n51) +(edge n49 n52) +(edge n49 n55) +(edge n49 n58) +(edge n49 n65) +(edge n49 n70) +(edge n49 n77) +(edge n49 n81) +(edge n49 n91) +(edge n49 n97) +(edge n49 n100) +(edge n49 n110) +(edge n49 n114) +(edge n49 n116) +(edge n49 n120) +(edge n49 n121) +(edge n49 n128) +(edge n49 n135) +(edge n49 n147) +(edge n49 n149) +(edge n49 n151) +(edge n49 n159) +(edge n49 n160) +(edge n49 n170) +(edge n49 n174) +(edge n49 n179) +(edge n49 n183) +(edge n49 n187) +(edge n49 n191) +(edge n49 n193) +(edge n49 n199) +(edge n50 n61) +(edge n50 n65) +(edge n50 n73) +(edge n50 n79) +(edge n50 n100) +(edge n50 n102) +(edge n50 n116) +(edge n50 n119) +(edge n50 n127) +(edge n50 n137) +(edge n50 n138) +(edge n50 n146) +(edge n50 n150) +(edge n50 n153) +(edge n50 n160) +(edge n50 n161) +(edge n50 n163) +(edge n50 n166) +(edge n50 n188) +(edge n50 n189) +(edge n50 n193) +(edge n50 n194) +(edge n50 n198) +(edge n51 n54) +(edge n51 n57) +(edge n51 n59) +(edge n51 n66) +(edge n51 n68) +(edge n51 n70) +(edge n51 n71) +(edge n51 n76) +(edge n51 n90) +(edge n51 n91) +(edge n51 n99) +(edge n51 n100) +(edge n51 n103) +(edge n51 n104) +(edge n51 n110) +(edge n51 n126) +(edge n51 n127) +(edge n51 n129) +(edge n51 n138) +(edge n51 n140) +(edge n51 n142) +(edge n51 n143) +(edge n51 n146) +(edge n51 n149) +(edge n51 n153) +(edge n51 n165) +(edge n51 n166) +(edge n51 n168) +(edge n51 n174) +(edge n51 n180) +(edge n51 n185) +(edge n51 n195) +(edge n52 n53) +(edge n52 n57) +(edge n52 n59) +(edge n52 n61) +(edge n52 n62) +(edge n52 n63) +(edge n52 n84) +(edge n52 n91) +(edge n52 n97) +(edge n52 n98) +(edge n52 n105) +(edge n52 n111) +(edge n52 n127) +(edge n52 n130) +(edge n52 n141) +(edge n52 n147) +(edge n52 n153) +(edge n52 n162) +(edge n52 n173) +(edge n52 n174) +(edge n52 n175) +(edge n52 n176) +(edge n52 n192) +(edge n52 n194) +(edge n52 n195) +(edge n53 n54) +(edge n53 n68) +(edge n53 n69) +(edge n53 n76) +(edge n53 n97) +(edge n53 n98) +(edge n53 n101) +(edge n53 n105) +(edge n53 n107) +(edge n53 n109) +(edge n53 n115) +(edge n53 n122) +(edge n53 n124) +(edge n53 n125) +(edge n53 n147) +(edge n53 n150) +(edge n53 n154) +(edge n53 n161) +(edge n53 n163) +(edge n53 n166) +(edge n53 n170) +(edge n53 n174) +(edge n53 n180) +(edge n53 n182) +(edge n53 n185) +(edge n53 n186) +(edge n53 n188) +(edge n53 n191) +(edge n53 n199) +(edge n54 n57) +(edge n54 n80) +(edge n54 n87) +(edge n54 n90) +(edge n54 n91) +(edge n54 n106) +(edge n54 n107) +(edge n54 n108) +(edge n54 n109) +(edge n54 n110) +(edge n54 n113) +(edge n54 n115) +(edge n54 n132) +(edge n54 n135) +(edge n54 n154) +(edge n54 n155) +(edge n54 n167) +(edge n54 n174) +(edge n54 n177) +(edge n54 n184) +(edge n54 n189) +(edge n54 n193) +(edge n54 n198) +(edge n55 n73) +(edge n55 n74) +(edge n55 n81) +(edge n55 n85) +(edge n55 n90) +(edge n55 n95) +(edge n55 n98) +(edge n55 n108) +(edge n55 n110) +(edge n55 n112) +(edge n55 n118) +(edge n55 n119) +(edge n55 n129) +(edge n55 n139) +(edge n55 n140) +(edge n55 n146) +(edge n55 n152) +(edge n55 n160) +(edge n55 n171) +(edge n55 n175) +(edge n55 n183) +(edge n55 n186) +(edge n55 n187) +(edge n55 n189) +(edge n55 n194) +(edge n55 n197) +(edge n56 n59) +(edge n56 n62) +(edge n56 n71) +(edge n56 n77) +(edge n56 n78) +(edge n56 n79) +(edge n56 n81) +(edge n56 n83) +(edge n56 n84) +(edge n56 n91) +(edge n56 n103) +(edge n56 n109) +(edge n56 n113) +(edge n56 n126) +(edge n56 n128) +(edge n56 n146) +(edge n56 n150) +(edge n56 n153) +(edge n56 n160) +(edge n56 n161) +(edge n56 n184) +(edge n56 n186) +(edge n56 n193) +(edge n56 n196) +(edge n57 n60) +(edge n57 n69) +(edge n57 n79) +(edge n57 n80) +(edge n57 n82) +(edge n57 n87) +(edge n57 n96) +(edge n57 n97) +(edge n57 n99) +(edge n57 n106) +(edge n57 n109) +(edge n57 n114) +(edge n57 n118) +(edge n57 n131) +(edge n57 n135) +(edge n57 n136) +(edge n57 n142) +(edge n57 n162) +(edge n57 n167) +(edge n57 n172) +(edge n57 n173) +(edge n57 n179) +(edge n57 n184) +(edge n57 n191) +(edge n58 n60) +(edge n58 n62) +(edge n58 n65) +(edge n58 n74) +(edge n58 n83) +(edge n58 n85) +(edge n58 n92) +(edge n58 n95) +(edge n58 n98) +(edge n58 n107) +(edge n58 n113) +(edge n58 n127) +(edge n58 n128) +(edge n58 n144) +(edge n58 n156) +(edge n58 n158) +(edge n58 n159) +(edge n58 n162) +(edge n58 n166) +(edge n58 n167) +(edge n58 n169) +(edge n58 n176) +(edge n58 n183) +(edge n58 n193) +(edge n59 n62) +(edge n59 n68) +(edge n59 n82) +(edge n59 n84) +(edge n59 n104) +(edge n59 n107) +(edge n59 n116) +(edge n59 n117) +(edge n59 n118) +(edge n59 n121) +(edge n59 n122) +(edge n59 n124) +(edge n59 n129) +(edge n59 n130) +(edge n59 n133) +(edge n59 n139) +(edge n59 n140) +(edge n59 n141) +(edge n59 n151) +(edge n59 n152) +(edge n59 n156) +(edge n59 n158) +(edge n59 n159) +(edge n59 n163) +(edge n59 n170) +(edge n59 n173) +(edge n59 n180) +(edge n59 n186) +(edge n59 n188) +(edge n59 n191) +(edge n59 n192) +(edge n59 n194) +(edge n59 n196) +(edge n60 n61) +(edge n60 n62) +(edge n60 n67) +(edge n60 n70) +(edge n60 n71) +(edge n60 n77) +(edge n60 n83) +(edge n60 n90) +(edge n60 n103) +(edge n60 n109) +(edge n60 n112) +(edge n60 n120) +(edge n60 n128) +(edge n60 n130) +(edge n60 n146) +(edge n60 n157) +(edge n60 n163) +(edge n60 n164) +(edge n60 n168) +(edge n60 n173) +(edge n60 n174) +(edge n60 n179) +(edge n60 n182) +(edge n60 n188) +(edge n60 n198) +(edge n61 n68) +(edge n61 n72) +(edge n61 n86) +(edge n61 n92) +(edge n61 n94) +(edge n61 n98) +(edge n61 n113) +(edge n61 n114) +(edge n61 n131) +(edge n61 n138) +(edge n61 n145) +(edge n61 n147) +(edge n61 n149) +(edge n61 n152) +(edge n61 n153) +(edge n61 n162) +(edge n61 n170) +(edge n61 n176) +(edge n61 n177) +(edge n61 n179) +(edge n61 n193) +(edge n61 n199) +(edge n62 n66) +(edge n62 n70) +(edge n62 n71) +(edge n62 n73) +(edge n62 n82) +(edge n62 n97) +(edge n62 n100) +(edge n62 n113) +(edge n62 n117) +(edge n62 n120) +(edge n62 n128) +(edge n62 n143) +(edge n62 n151) +(edge n62 n153) +(edge n62 n163) +(edge n62 n168) +(edge n62 n172) +(edge n62 n180) +(edge n62 n185) +(edge n62 n195) +(edge n63 n64) +(edge n63 n73) +(edge n63 n78) +(edge n63 n85) +(edge n63 n93) +(edge n63 n94) +(edge n63 n96) +(edge n63 n103) +(edge n63 n105) +(edge n63 n111) +(edge n63 n117) +(edge n63 n118) +(edge n63 n119) +(edge n63 n144) +(edge n63 n161) +(edge n63 n163) +(edge n63 n168) +(edge n63 n170) +(edge n63 n171) +(edge n63 n175) +(edge n63 n179) +(edge n63 n180) +(edge n63 n183) +(edge n63 n184) +(edge n63 n190) +(edge n63 n192) +(edge n63 n193) +(edge n64 n65) +(edge n64 n67) +(edge n64 n77) +(edge n64 n82) +(edge n64 n89) +(edge n64 n101) +(edge n64 n108) +(edge n64 n113) +(edge n64 n121) +(edge n64 n125) +(edge n64 n131) +(edge n64 n137) +(edge n64 n144) +(edge n64 n149) +(edge n64 n150) +(edge n64 n151) +(edge n64 n152) +(edge n64 n155) +(edge n64 n156) +(edge n64 n164) +(edge n64 n177) +(edge n64 n180) +(edge n64 n184) +(edge n64 n185) +(edge n64 n191) +(edge n64 n195) +(edge n65 n75) +(edge n65 n77) +(edge n65 n80) +(edge n65 n87) +(edge n65 n101) +(edge n65 n102) +(edge n65 n105) +(edge n65 n117) +(edge n65 n123) +(edge n65 n124) +(edge n65 n126) +(edge n65 n135) +(edge n65 n137) +(edge n65 n141) +(edge n65 n147) +(edge n65 n150) +(edge n65 n157) +(edge n65 n162) +(edge n65 n163) +(edge n65 n165) +(edge n65 n169) +(edge n65 n172) +(edge n65 n177) +(edge n65 n185) +(edge n65 n188) +(edge n65 n193) +(edge n65 n195) +(edge n66 n67) +(edge n66 n69) +(edge n66 n72) +(edge n66 n79) +(edge n66 n80) +(edge n66 n83) +(edge n66 n86) +(edge n66 n109) +(edge n66 n117) +(edge n66 n126) +(edge n66 n127) +(edge n66 n133) +(edge n66 n134) +(edge n66 n140) +(edge n66 n146) +(edge n66 n147) +(edge n66 n148) +(edge n66 n168) +(edge n66 n170) +(edge n66 n188) +(edge n67 n69) +(edge n67 n74) +(edge n67 n75) +(edge n67 n80) +(edge n67 n82) +(edge n67 n97) +(edge n67 n102) +(edge n67 n103) +(edge n67 n105) +(edge n67 n109) +(edge n67 n115) +(edge n67 n116) +(edge n67 n121) +(edge n67 n125) +(edge n67 n127) +(edge n67 n128) +(edge n67 n133) +(edge n67 n134) +(edge n67 n145) +(edge n67 n148) +(edge n67 n152) +(edge n67 n155) +(edge n67 n157) +(edge n67 n172) +(edge n67 n176) +(edge n67 n181) +(edge n67 n193) +(edge n67 n195) +(edge n67 n197) +(edge n68 n72) +(edge n68 n95) +(edge n68 n112) +(edge n68 n121) +(edge n68 n128) +(edge n68 n142) +(edge n68 n144) +(edge n68 n155) +(edge n68 n157) +(edge n68 n159) +(edge n68 n164) +(edge n68 n165) +(edge n68 n174) +(edge n68 n175) +(edge n68 n189) +(edge n68 n197) +(edge n68 n199) +(edge n69 n71) +(edge n69 n72) +(edge n69 n77) +(edge n69 n81) +(edge n69 n83) +(edge n69 n85) +(edge n69 n89) +(edge n69 n93) +(edge n69 n103) +(edge n69 n120) +(edge n69 n136) +(edge n69 n139) +(edge n69 n144) +(edge n69 n148) +(edge n69 n152) +(edge n69 n158) +(edge n69 n163) +(edge n69 n165) +(edge n69 n173) +(edge n69 n174) +(edge n69 n178) +(edge n69 n187) +(edge n69 n195) +(edge n69 n198) +(edge n70 n74) +(edge n70 n75) +(edge n70 n78) +(edge n70 n79) +(edge n70 n93) +(edge n70 n94) +(edge n70 n104) +(edge n70 n106) +(edge n70 n113) +(edge n70 n115) +(edge n70 n119) +(edge n70 n122) +(edge n70 n123) +(edge n70 n132) +(edge n70 n134) +(edge n70 n137) +(edge n70 n139) +(edge n70 n140) +(edge n70 n142) +(edge n70 n148) +(edge n70 n152) +(edge n70 n170) +(edge n70 n181) +(edge n70 n182) +(edge n70 n187) +(edge n70 n193) +(edge n71 n86) +(edge n71 n89) +(edge n71 n95) +(edge n71 n104) +(edge n71 n105) +(edge n71 n106) +(edge n71 n107) +(edge n71 n108) +(edge n71 n110) +(edge n71 n112) +(edge n71 n113) +(edge n71 n117) +(edge n71 n124) +(edge n71 n132) +(edge n71 n134) +(edge n71 n146) +(edge n71 n155) +(edge n71 n156) +(edge n71 n160) +(edge n71 n175) +(edge n71 n184) +(edge n71 n186) +(edge n71 n193) +(edge n71 n194) +(edge n72 n80) +(edge n72 n82) +(edge n72 n91) +(edge n72 n101) +(edge n72 n102) +(edge n72 n108) +(edge n72 n110) +(edge n72 n115) +(edge n72 n120) +(edge n72 n130) +(edge n72 n134) +(edge n72 n136) +(edge n72 n137) +(edge n72 n141) +(edge n72 n142) +(edge n72 n148) +(edge n72 n151) +(edge n72 n152) +(edge n72 n183) +(edge n72 n185) +(edge n72 n198) +(edge n73 n77) +(edge n73 n81) +(edge n73 n82) +(edge n73 n86) +(edge n73 n87) +(edge n73 n97) +(edge n73 n100) +(edge n73 n122) +(edge n73 n129) +(edge n73 n130) +(edge n73 n135) +(edge n73 n136) +(edge n73 n144) +(edge n73 n148) +(edge n73 n151) +(edge n73 n168) +(edge n73 n176) +(edge n73 n179) +(edge n73 n180) +(edge n73 n182) +(edge n73 n189) +(edge n73 n193) +(edge n73 n196) +(edge n73 n198) +(edge n74 n79) +(edge n74 n80) +(edge n74 n82) +(edge n74 n91) +(edge n74 n93) +(edge n74 n98) +(edge n74 n99) +(edge n74 n101) +(edge n74 n103) +(edge n74 n118) +(edge n74 n124) +(edge n74 n125) +(edge n74 n126) +(edge n74 n136) +(edge n74 n153) +(edge n74 n157) +(edge n74 n170) +(edge n74 n172) +(edge n74 n174) +(edge n74 n175) +(edge n74 n176) +(edge n74 n180) +(edge n74 n187) +(edge n74 n191) +(edge n74 n194) +(edge n75 n86) +(edge n75 n91) +(edge n75 n93) +(edge n75 n101) +(edge n75 n111) +(edge n75 n113) +(edge n75 n114) +(edge n75 n116) +(edge n75 n125) +(edge n75 n136) +(edge n75 n137) +(edge n75 n142) +(edge n75 n147) +(edge n75 n163) +(edge n75 n164) +(edge n75 n176) +(edge n75 n177) +(edge n75 n193) +(edge n76 n80) +(edge n76 n82) +(edge n76 n89) +(edge n76 n90) +(edge n76 n102) +(edge n76 n108) +(edge n76 n120) +(edge n76 n127) +(edge n76 n131) +(edge n76 n138) +(edge n76 n142) +(edge n76 n147) +(edge n76 n151) +(edge n76 n157) +(edge n76 n165) +(edge n76 n168) +(edge n76 n169) +(edge n76 n177) +(edge n76 n182) +(edge n76 n189) +(edge n76 n191) +(edge n76 n194) +(edge n76 n195) +(edge n76 n197) +(edge n76 n198) +(edge n76 n199) +(edge n77 n83) +(edge n77 n85) +(edge n77 n86) +(edge n77 n89) +(edge n77 n96) +(edge n77 n109) +(edge n77 n123) +(edge n77 n126) +(edge n77 n129) +(edge n77 n132) +(edge n77 n134) +(edge n77 n135) +(edge n77 n140) +(edge n77 n144) +(edge n77 n145) +(edge n77 n156) +(edge n77 n174) +(edge n77 n177) +(edge n77 n179) +(edge n77 n180) +(edge n77 n191) +(edge n77 n194) +(edge n77 n198) +(edge n78 n101) +(edge n78 n103) +(edge n78 n110) +(edge n78 n111) +(edge n78 n119) +(edge n78 n127) +(edge n78 n143) +(edge n78 n149) +(edge n78 n156) +(edge n78 n160) +(edge n78 n167) +(edge n78 n175) +(edge n78 n179) +(edge n78 n185) +(edge n78 n187) +(edge n78 n188) +(edge n78 n198) +(edge n78 n199) +(edge n79 n84) +(edge n79 n97) +(edge n79 n104) +(edge n79 n111) +(edge n79 n123) +(edge n79 n126) +(edge n79 n138) +(edge n79 n141) +(edge n79 n143) +(edge n79 n144) +(edge n79 n169) +(edge n79 n170) +(edge n79 n184) +(edge n79 n186) +(edge n79 n187) +(edge n79 n188) +(edge n79 n192) +(edge n79 n194) +(edge n80 n87) +(edge n80 n101) +(edge n80 n109) +(edge n80 n112) +(edge n80 n117) +(edge n80 n118) +(edge n80 n120) +(edge n80 n131) +(edge n80 n132) +(edge n80 n148) +(edge n80 n160) +(edge n80 n165) +(edge n80 n173) +(edge n80 n178) +(edge n80 n192) +(edge n80 n199) +(edge n81 n83) +(edge n81 n89) +(edge n81 n91) +(edge n81 n93) +(edge n81 n97) +(edge n81 n114) +(edge n81 n117) +(edge n81 n119) +(edge n81 n121) +(edge n81 n126) +(edge n81 n129) +(edge n81 n136) +(edge n81 n139) +(edge n81 n140) +(edge n81 n142) +(edge n81 n146) +(edge n81 n151) +(edge n81 n162) +(edge n81 n177) +(edge n81 n178) +(edge n81 n181) +(edge n81 n182) +(edge n81 n186) +(edge n81 n189) +(edge n82 n85) +(edge n82 n88) +(edge n82 n96) +(edge n82 n98) +(edge n82 n103) +(edge n82 n104) +(edge n82 n105) +(edge n82 n118) +(edge n82 n126) +(edge n82 n129) +(edge n82 n133) +(edge n82 n141) +(edge n82 n152) +(edge n82 n153) +(edge n82 n156) +(edge n82 n160) +(edge n82 n162) +(edge n82 n165) +(edge n82 n182) +(edge n82 n193) +(edge n82 n198) +(edge n83 n85) +(edge n83 n89) +(edge n83 n101) +(edge n83 n109) +(edge n83 n111) +(edge n83 n114) +(edge n83 n119) +(edge n83 n158) +(edge n83 n169) +(edge n83 n172) +(edge n83 n173) +(edge n83 n179) +(edge n83 n199) +(edge n84 n91) +(edge n84 n92) +(edge n84 n106) +(edge n84 n112) +(edge n84 n118) +(edge n84 n132) +(edge n84 n140) +(edge n84 n142) +(edge n84 n147) +(edge n84 n149) +(edge n84 n157) +(edge n84 n175) +(edge n84 n176) +(edge n84 n177) +(edge n84 n182) +(edge n84 n184) +(edge n84 n187) +(edge n84 n195) +(edge n84 n198) +(edge n85 n86) +(edge n85 n87) +(edge n85 n89) +(edge n85 n101) +(edge n85 n104) +(edge n85 n114) +(edge n85 n116) +(edge n85 n117) +(edge n85 n131) +(edge n85 n134) +(edge n85 n135) +(edge n85 n136) +(edge n85 n141) +(edge n85 n143) +(edge n85 n149) +(edge n85 n151) +(edge n85 n152) +(edge n85 n158) +(edge n85 n160) +(edge n85 n163) +(edge n85 n168) +(edge n85 n170) +(edge n85 n178) +(edge n85 n182) +(edge n85 n187) +(edge n85 n191) +(edge n85 n197) +(edge n85 n199) +(edge n86 n87) +(edge n86 n92) +(edge n86 n99) +(edge n86 n100) +(edge n86 n102) +(edge n86 n109) +(edge n86 n115) +(edge n86 n117) +(edge n86 n118) +(edge n86 n122) +(edge n86 n125) +(edge n86 n129) +(edge n86 n139) +(edge n86 n141) +(edge n86 n157) +(edge n86 n159) +(edge n86 n162) +(edge n86 n166) +(edge n86 n176) +(edge n87 n90) +(edge n87 n106) +(edge n87 n110) +(edge n87 n111) +(edge n87 n119) +(edge n87 n125) +(edge n87 n127) +(edge n87 n131) +(edge n87 n133) +(edge n87 n144) +(edge n87 n145) +(edge n87 n147) +(edge n87 n149) +(edge n87 n152) +(edge n87 n162) +(edge n87 n165) +(edge n87 n172) +(edge n87 n175) +(edge n87 n178) +(edge n87 n183) +(edge n87 n184) +(edge n87 n187) +(edge n87 n192) +(edge n88 n97) +(edge n88 n98) +(edge n88 n99) +(edge n88 n108) +(edge n88 n114) +(edge n88 n128) +(edge n88 n129) +(edge n88 n135) +(edge n88 n139) +(edge n88 n146) +(edge n88 n155) +(edge n88 n164) +(edge n88 n167) +(edge n88 n170) +(edge n88 n174) +(edge n88 n176) +(edge n88 n177) +(edge n88 n191) +(edge n88 n197) +(edge n89 n90) +(edge n89 n104) +(edge n89 n105) +(edge n89 n106) +(edge n89 n116) +(edge n89 n127) +(edge n89 n128) +(edge n89 n134) +(edge n89 n142) +(edge n89 n144) +(edge n89 n162) +(edge n89 n163) +(edge n89 n164) +(edge n89 n169) +(edge n89 n171) +(edge n89 n172) +(edge n89 n188) +(edge n90 n92) +(edge n90 n96) +(edge n90 n108) +(edge n90 n112) +(edge n90 n133) +(edge n90 n134) +(edge n90 n141) +(edge n90 n143) +(edge n90 n147) +(edge n90 n156) +(edge n90 n162) +(edge n90 n167) +(edge n90 n170) +(edge n90 n172) +(edge n90 n174) +(edge n90 n179) +(edge n90 n180) +(edge n90 n182) +(edge n90 n192) +(edge n90 n195) +(edge n91 n92) +(edge n91 n109) +(edge n91 n112) +(edge n91 n117) +(edge n91 n118) +(edge n91 n121) +(edge n91 n122) +(edge n91 n123) +(edge n91 n124) +(edge n91 n125) +(edge n91 n127) +(edge n91 n154) +(edge n91 n170) +(edge n91 n176) +(edge n91 n188) +(edge n91 n193) +(edge n91 n195) +(edge n91 n199) +(edge n92 n93) +(edge n92 n107) +(edge n92 n115) +(edge n92 n125) +(edge n92 n131) +(edge n92 n138) +(edge n92 n140) +(edge n92 n142) +(edge n92 n148) +(edge n92 n155) +(edge n92 n156) +(edge n92 n157) +(edge n92 n172) +(edge n92 n178) +(edge n92 n182) +(edge n92 n190) +(edge n93 n96) +(edge n93 n97) +(edge n93 n106) +(edge n93 n107) +(edge n93 n115) +(edge n93 n119) +(edge n93 n128) +(edge n93 n129) +(edge n93 n132) +(edge n93 n133) +(edge n93 n135) +(edge n93 n142) +(edge n93 n144) +(edge n93 n145) +(edge n93 n147) +(edge n93 n148) +(edge n93 n150) +(edge n93 n151) +(edge n93 n162) +(edge n93 n166) +(edge n93 n174) +(edge n93 n176) +(edge n93 n185) +(edge n93 n193) +(edge n94 n102) +(edge n94 n103) +(edge n94 n106) +(edge n94 n119) +(edge n94 n131) +(edge n94 n132) +(edge n94 n135) +(edge n94 n136) +(edge n94 n151) +(edge n94 n154) +(edge n94 n162) +(edge n94 n167) +(edge n94 n174) +(edge n94 n176) +(edge n94 n177) +(edge n94 n189) +(edge n94 n191) +(edge n94 n192) +(edge n95 n96) +(edge n95 n103) +(edge n95 n109) +(edge n95 n110) +(edge n95 n111) +(edge n95 n113) +(edge n95 n117) +(edge n95 n123) +(edge n95 n125) +(edge n95 n135) +(edge n95 n137) +(edge n95 n138) +(edge n95 n146) +(edge n95 n155) +(edge n95 n165) +(edge n95 n167) +(edge n95 n173) +(edge n95 n189) +(edge n95 n190) +(edge n95 n198) +(edge n96 n100) +(edge n96 n102) +(edge n96 n107) +(edge n96 n118) +(edge n96 n129) +(edge n96 n142) +(edge n96 n143) +(edge n96 n164) +(edge n96 n179) +(edge n96 n180) +(edge n96 n194) +(edge n96 n199) +(edge n97 n105) +(edge n97 n107) +(edge n97 n110) +(edge n97 n112) +(edge n97 n118) +(edge n97 n126) +(edge n97 n158) +(edge n97 n159) +(edge n97 n166) +(edge n97 n175) +(edge n97 n187) +(edge n97 n189) +(edge n97 n192) +(edge n98 n104) +(edge n98 n112) +(edge n98 n120) +(edge n98 n121) +(edge n98 n124) +(edge n98 n150) +(edge n98 n151) +(edge n98 n152) +(edge n98 n153) +(edge n98 n154) +(edge n98 n157) +(edge n98 n158) +(edge n98 n163) +(edge n98 n175) +(edge n98 n176) +(edge n98 n188) +(edge n98 n192) +(edge n98 n194) +(edge n99 n106) +(edge n99 n107) +(edge n99 n110) +(edge n99 n111) +(edge n99 n112) +(edge n99 n128) +(edge n99 n129) +(edge n99 n137) +(edge n99 n140) +(edge n99 n141) +(edge n99 n142) +(edge n99 n148) +(edge n99 n150) +(edge n99 n153) +(edge n99 n155) +(edge n99 n160) +(edge n99 n179) +(edge n100 n101) +(edge n100 n108) +(edge n100 n111) +(edge n100 n115) +(edge n100 n117) +(edge n100 n120) +(edge n100 n123) +(edge n100 n124) +(edge n100 n127) +(edge n100 n132) +(edge n100 n134) +(edge n100 n140) +(edge n100 n150) +(edge n100 n151) +(edge n100 n152) +(edge n100 n155) +(edge n100 n167) +(edge n100 n171) +(edge n100 n181) +(edge n100 n183) +(edge n100 n185) +(edge n100 n186) +(edge n100 n189) +(edge n100 n192) +(edge n100 n198) +(edge n101 n121) +(edge n101 n123) +(edge n101 n129) +(edge n101 n147) +(edge n101 n148) +(edge n101 n157) +(edge n101 n159) +(edge n101 n162) +(edge n101 n175) +(edge n101 n179) +(edge n101 n183) +(edge n101 n191) +(edge n101 n192) +(edge n102 n105) +(edge n102 n106) +(edge n102 n109) +(edge n102 n112) +(edge n102 n115) +(edge n102 n120) +(edge n102 n126) +(edge n102 n129) +(edge n102 n130) +(edge n102 n132) +(edge n102 n142) +(edge n102 n151) +(edge n102 n153) +(edge n102 n156) +(edge n102 n159) +(edge n102 n164) +(edge n102 n170) +(edge n102 n174) +(edge n102 n175) +(edge n102 n177) +(edge n102 n178) +(edge n102 n183) +(edge n102 n184) +(edge n102 n185) +(edge n102 n187) +(edge n102 n194) +(edge n103 n105) +(edge n103 n110) +(edge n103 n116) +(edge n103 n122) +(edge n103 n126) +(edge n103 n134) +(edge n103 n139) +(edge n103 n150) +(edge n103 n159) +(edge n103 n163) +(edge n103 n167) +(edge n103 n179) +(edge n103 n184) +(edge n103 n185) +(edge n103 n187) +(edge n104 n109) +(edge n104 n112) +(edge n104 n126) +(edge n104 n129) +(edge n104 n130) +(edge n104 n132) +(edge n104 n133) +(edge n104 n142) +(edge n104 n156) +(edge n104 n169) +(edge n104 n171) +(edge n104 n184) +(edge n104 n185) +(edge n104 n186) +(edge n104 n194) +(edge n104 n197) +(edge n105 n106) +(edge n105 n108) +(edge n105 n109) +(edge n105 n112) +(edge n105 n116) +(edge n105 n117) +(edge n105 n124) +(edge n105 n127) +(edge n105 n134) +(edge n105 n141) +(edge n105 n147) +(edge n105 n154) +(edge n105 n156) +(edge n105 n157) +(edge n105 n158) +(edge n105 n160) +(edge n105 n163) +(edge n105 n169) +(edge n105 n180) +(edge n105 n195) +(edge n105 n199) +(edge n106 n116) +(edge n106 n122) +(edge n106 n123) +(edge n106 n126) +(edge n106 n127) +(edge n106 n135) +(edge n106 n136) +(edge n106 n138) +(edge n106 n144) +(edge n106 n157) +(edge n106 n158) +(edge n106 n167) +(edge n106 n171) +(edge n106 n173) +(edge n106 n186) +(edge n106 n188) +(edge n106 n190) +(edge n106 n191) +(edge n106 n197) +(edge n107 n108) +(edge n107 n119) +(edge n107 n120) +(edge n107 n125) +(edge n107 n135) +(edge n107 n140) +(edge n107 n141) +(edge n107 n144) +(edge n107 n145) +(edge n107 n156) +(edge n107 n161) +(edge n107 n167) +(edge n107 n176) +(edge n107 n179) +(edge n107 n181) +(edge n107 n190) +(edge n107 n191) +(edge n107 n195) +(edge n107 n196) +(edge n108 n118) +(edge n108 n134) +(edge n108 n135) +(edge n108 n142) +(edge n108 n147) +(edge n108 n159) +(edge n108 n162) +(edge n108 n167) +(edge n108 n180) +(edge n108 n181) +(edge n108 n188) +(edge n108 n191) +(edge n108 n194) +(edge n108 n195) +(edge n108 n198) +(edge n109 n118) +(edge n109 n119) +(edge n109 n121) +(edge n109 n127) +(edge n109 n131) +(edge n109 n138) +(edge n109 n146) +(edge n109 n148) +(edge n109 n149) +(edge n109 n153) +(edge n109 n157) +(edge n109 n162) +(edge n109 n163) +(edge n109 n164) +(edge n109 n178) +(edge n109 n182) +(edge n109 n183) +(edge n109 n188) +(edge n109 n190) +(edge n110 n113) +(edge n110 n117) +(edge n110 n121) +(edge n110 n122) +(edge n110 n126) +(edge n110 n129) +(edge n110 n130) +(edge n110 n137) +(edge n110 n140) +(edge n110 n145) +(edge n110 n156) +(edge n110 n160) +(edge n110 n163) +(edge n110 n166) +(edge n110 n171) +(edge n110 n172) +(edge n110 n174) +(edge n111 n112) +(edge n111 n115) +(edge n111 n123) +(edge n111 n125) +(edge n111 n128) +(edge n111 n139) +(edge n111 n140) +(edge n111 n141) +(edge n111 n142) +(edge n111 n143) +(edge n111 n159) +(edge n111 n166) +(edge n111 n175) +(edge n111 n179) +(edge n111 n185) +(edge n111 n187) +(edge n111 n199) +(edge n112 n116) +(edge n112 n140) +(edge n112 n145) +(edge n112 n169) +(edge n112 n184) +(edge n112 n197) +(edge n113 n125) +(edge n113 n128) +(edge n113 n131) +(edge n113 n133) +(edge n113 n135) +(edge n113 n137) +(edge n113 n142) +(edge n113 n144) +(edge n113 n156) +(edge n113 n173) +(edge n113 n175) +(edge n113 n178) +(edge n113 n179) +(edge n113 n186) +(edge n113 n193) +(edge n113 n194) +(edge n113 n196) +(edge n114 n116) +(edge n114 n120) +(edge n114 n125) +(edge n114 n131) +(edge n114 n132) +(edge n114 n141) +(edge n114 n151) +(edge n114 n153) +(edge n114 n174) +(edge n114 n176) +(edge n114 n179) +(edge n114 n187) +(edge n114 n188) +(edge n114 n193) +(edge n115 n118) +(edge n115 n127) +(edge n115 n143) +(edge n115 n144) +(edge n115 n145) +(edge n115 n146) +(edge n115 n151) +(edge n115 n157) +(edge n115 n158) +(edge n115 n163) +(edge n115 n168) +(edge n115 n179) +(edge n115 n184) +(edge n115 n186) +(edge n115 n194) +(edge n116 n124) +(edge n116 n131) +(edge n116 n133) +(edge n116 n136) +(edge n116 n142) +(edge n116 n145) +(edge n116 n146) +(edge n116 n147) +(edge n116 n149) +(edge n116 n152) +(edge n116 n154) +(edge n116 n156) +(edge n116 n157) +(edge n116 n162) +(edge n116 n164) +(edge n116 n172) +(edge n116 n173) +(edge n116 n174) +(edge n116 n181) +(edge n116 n189) +(edge n117 n132) +(edge n117 n134) +(edge n117 n141) +(edge n117 n143) +(edge n117 n144) +(edge n117 n148) +(edge n117 n167) +(edge n117 n168) +(edge n117 n169) +(edge n117 n172) +(edge n117 n181) +(edge n117 n185) +(edge n117 n190) +(edge n117 n199) +(edge n118 n123) +(edge n118 n126) +(edge n118 n132) +(edge n118 n133) +(edge n118 n134) +(edge n118 n141) +(edge n118 n147) +(edge n118 n157) +(edge n118 n161) +(edge n118 n167) +(edge n118 n168) +(edge n118 n176) +(edge n118 n180) +(edge n118 n188) +(edge n118 n197) +(edge n119 n121) +(edge n119 n122) +(edge n119 n127) +(edge n119 n133) +(edge n119 n138) +(edge n119 n142) +(edge n119 n146) +(edge n119 n164) +(edge n119 n166) +(edge n119 n173) +(edge n119 n177) +(edge n119 n182) +(edge n119 n190) +(edge n119 n191) +(edge n119 n194) +(edge n119 n195) +(edge n120 n123) +(edge n120 n134) +(edge n120 n135) +(edge n120 n138) +(edge n120 n146) +(edge n120 n152) +(edge n120 n153) +(edge n120 n163) +(edge n120 n183) +(edge n120 n196) +(edge n120 n198) +(edge n121 n126) +(edge n121 n128) +(edge n121 n129) +(edge n121 n131) +(edge n121 n134) +(edge n121 n137) +(edge n121 n138) +(edge n121 n141) +(edge n121 n143) +(edge n121 n147) +(edge n121 n152) +(edge n121 n155) +(edge n121 n156) +(edge n121 n165) +(edge n121 n167) +(edge n121 n169) +(edge n121 n171) +(edge n121 n184) +(edge n121 n190) +(edge n122 n126) +(edge n122 n135) +(edge n122 n140) +(edge n122 n152) +(edge n122 n156) +(edge n122 n159) +(edge n122 n161) +(edge n122 n180) +(edge n122 n184) +(edge n122 n189) +(edge n122 n196) +(edge n123 n134) +(edge n123 n136) +(edge n123 n139) +(edge n123 n161) +(edge n123 n173) +(edge n123 n176) +(edge n123 n179) +(edge n123 n182) +(edge n123 n186) +(edge n124 n129) +(edge n124 n131) +(edge n124 n136) +(edge n124 n138) +(edge n124 n140) +(edge n124 n142) +(edge n124 n144) +(edge n124 n145) +(edge n124 n156) +(edge n124 n157) +(edge n124 n162) +(edge n124 n171) +(edge n124 n172) +(edge n124 n176) +(edge n124 n181) +(edge n124 n185) +(edge n124 n191) +(edge n124 n193) +(edge n124 n194) +(edge n125 n141) +(edge n125 n143) +(edge n125 n150) +(edge n125 n152) +(edge n125 n156) +(edge n125 n158) +(edge n125 n169) +(edge n125 n174) +(edge n125 n180) +(edge n125 n181) +(edge n125 n185) +(edge n125 n188) +(edge n125 n189) +(edge n125 n196) +(edge n126 n127) +(edge n126 n129) +(edge n126 n130) +(edge n126 n132) +(edge n126 n135) +(edge n126 n140) +(edge n126 n152) +(edge n126 n160) +(edge n126 n163) +(edge n126 n166) +(edge n126 n169) +(edge n126 n173) +(edge n126 n174) +(edge n126 n175) +(edge n126 n184) +(edge n126 n185) +(edge n126 n191) +(edge n126 n194) +(edge n126 n195) +(edge n126 n199) +(edge n127 n128) +(edge n127 n153) +(edge n127 n168) +(edge n127 n179) +(edge n127 n180) +(edge n127 n186) +(edge n127 n187) +(edge n127 n193) +(edge n128 n138) +(edge n128 n147) +(edge n128 n158) +(edge n128 n161) +(edge n128 n170) +(edge n128 n176) +(edge n128 n182) +(edge n128 n184) +(edge n128 n185) +(edge n128 n192) +(edge n128 n193) +(edge n128 n195) +(edge n129 n136) +(edge n129 n138) +(edge n129 n141) +(edge n129 n143) +(edge n129 n155) +(edge n129 n158) +(edge n129 n159) +(edge n129 n160) +(edge n129 n165) +(edge n129 n187) +(edge n129 n193) +(edge n130 n137) +(edge n130 n148) +(edge n130 n149) +(edge n130 n164) +(edge n130 n165) +(edge n130 n166) +(edge n130 n167) +(edge n130 n168) +(edge n130 n169) +(edge n130 n175) +(edge n130 n177) +(edge n130 n183) +(edge n130 n187) +(edge n131 n136) +(edge n131 n140) +(edge n131 n143) +(edge n131 n144) +(edge n131 n145) +(edge n131 n146) +(edge n131 n152) +(edge n131 n159) +(edge n131 n160) +(edge n131 n183) +(edge n131 n185) +(edge n131 n191) +(edge n131 n192) +(edge n131 n197) +(edge n132 n136) +(edge n132 n139) +(edge n132 n144) +(edge n132 n149) +(edge n132 n155) +(edge n132 n160) +(edge n132 n161) +(edge n132 n163) +(edge n132 n166) +(edge n132 n167) +(edge n132 n174) +(edge n132 n178) +(edge n132 n185) +(edge n132 n195) +(edge n133 n139) +(edge n133 n143) +(edge n133 n146) +(edge n133 n147) +(edge n133 n166) +(edge n133 n171) +(edge n133 n174) +(edge n133 n194) +(edge n133 n196) +(edge n134 n144) +(edge n134 n146) +(edge n134 n148) +(edge n134 n153) +(edge n134 n165) +(edge n134 n167) +(edge n134 n170) +(edge n134 n181) +(edge n134 n182) +(edge n134 n183) +(edge n134 n189) +(edge n134 n190) +(edge n134 n191) +(edge n134 n193) +(edge n134 n195) +(edge n135 n141) +(edge n135 n148) +(edge n135 n152) +(edge n135 n158) +(edge n135 n159) +(edge n135 n178) +(edge n135 n180) +(edge n135 n181) +(edge n135 n185) +(edge n135 n194) +(edge n135 n195) +(edge n135 n198) +(edge n136 n140) +(edge n136 n144) +(edge n136 n159) +(edge n136 n160) +(edge n136 n163) +(edge n136 n167) +(edge n136 n171) +(edge n136 n177) +(edge n136 n181) +(edge n136 n183) +(edge n136 n184) +(edge n136 n188) +(edge n136 n190) +(edge n136 n191) +(edge n136 n195) +(edge n136 n196) +(edge n136 n197) +(edge n137 n139) +(edge n137 n141) +(edge n137 n145) +(edge n137 n146) +(edge n137 n149) +(edge n137 n161) +(edge n137 n164) +(edge n137 n177) +(edge n137 n180) +(edge n137 n182) +(edge n137 n183) +(edge n137 n186) +(edge n137 n187) +(edge n137 n195) +(edge n138 n142) +(edge n138 n148) +(edge n138 n153) +(edge n138 n161) +(edge n138 n167) +(edge n138 n175) +(edge n138 n176) +(edge n138 n179) +(edge n138 n180) +(edge n138 n187) +(edge n138 n193) +(edge n138 n197) +(edge n138 n198) +(edge n139 n151) +(edge n139 n162) +(edge n139 n178) +(edge n139 n180) +(edge n139 n187) +(edge n139 n188) +(edge n139 n189) +(edge n139 n192) +(edge n139 n195) +(edge n139 n199) +(edge n140 n141) +(edge n140 n162) +(edge n140 n173) +(edge n140 n176) +(edge n140 n181) +(edge n140 n187) +(edge n141 n156) +(edge n141 n157) +(edge n141 n164) +(edge n141 n165) +(edge n141 n180) +(edge n141 n187) +(edge n141 n190) +(edge n141 n192) +(edge n141 n194) +(edge n141 n199) +(edge n142 n144) +(edge n142 n153) +(edge n142 n155) +(edge n142 n167) +(edge n142 n172) +(edge n142 n179) +(edge n142 n184) +(edge n142 n185) +(edge n142 n189) +(edge n142 n196) +(edge n142 n197) +(edge n143 n148) +(edge n143 n156) +(edge n143 n161) +(edge n143 n180) +(edge n143 n183) +(edge n143 n189) +(edge n144 n145) +(edge n144 n159) +(edge n144 n175) +(edge n144 n182) +(edge n144 n188) +(edge n144 n193) +(edge n144 n194) +(edge n145 n150) +(edge n145 n153) +(edge n145 n155) +(edge n145 n161) +(edge n145 n162) +(edge n145 n163) +(edge n145 n166) +(edge n145 n168) +(edge n145 n171) +(edge n145 n173) +(edge n145 n180) +(edge n145 n182) +(edge n145 n185) +(edge n145 n190) +(edge n145 n197) +(edge n146 n153) +(edge n146 n154) +(edge n146 n158) +(edge n146 n161) +(edge n146 n162) +(edge n146 n171) +(edge n146 n172) +(edge n146 n185) +(edge n146 n186) +(edge n146 n187) +(edge n146 n198) +(edge n147 n153) +(edge n147 n163) +(edge n147 n164) +(edge n147 n167) +(edge n147 n170) +(edge n147 n172) +(edge n147 n175) +(edge n147 n181) +(edge n147 n190) +(edge n148 n151) +(edge n148 n154) +(edge n148 n161) +(edge n148 n166) +(edge n148 n170) +(edge n148 n176) +(edge n148 n179) +(edge n148 n185) +(edge n148 n188) +(edge n148 n191) +(edge n148 n192) +(edge n148 n198) +(edge n149 n155) +(edge n149 n172) +(edge n149 n174) +(edge n149 n178) +(edge n149 n187) +(edge n149 n188) +(edge n149 n196) +(edge n150 n152) +(edge n150 n157) +(edge n150 n158) +(edge n150 n170) +(edge n150 n172) +(edge n150 n183) +(edge n151 n152) +(edge n151 n153) +(edge n151 n160) +(edge n151 n163) +(edge n151 n174) +(edge n151 n184) +(edge n151 n189) +(edge n152 n155) +(edge n152 n160) +(edge n152 n161) +(edge n152 n166) +(edge n152 n170) +(edge n152 n176) +(edge n152 n185) +(edge n152 n192) +(edge n152 n193) +(edge n152 n195) +(edge n153 n155) +(edge n153 n157) +(edge n153 n161) +(edge n153 n162) +(edge n153 n165) +(edge n153 n170) +(edge n153 n171) +(edge n153 n183) +(edge n153 n189) +(edge n153 n197) +(edge n154 n163) +(edge n154 n165) +(edge n154 n185) +(edge n154 n192) +(edge n154 n193) +(edge n154 n195) +(edge n154 n197) +(edge n155 n162) +(edge n155 n165) +(edge n155 n166) +(edge n155 n171) +(edge n155 n172) +(edge n155 n185) +(edge n155 n193) +(edge n155 n199) +(edge n156 n157) +(edge n156 n159) +(edge n156 n173) +(edge n156 n184) +(edge n156 n188) +(edge n156 n190) +(edge n156 n194) +(edge n156 n195) +(edge n156 n197) +(edge n157 n160) +(edge n157 n167) +(edge n157 n172) +(edge n157 n174) +(edge n157 n175) +(edge n157 n179) +(edge n157 n185) +(edge n157 n189) +(edge n157 n190) +(edge n157 n194) +(edge n157 n199) +(edge n158 n164) +(edge n158 n165) +(edge n158 n168) +(edge n158 n174) +(edge n158 n180) +(edge n158 n181) +(edge n158 n182) +(edge n158 n183) +(edge n159 n161) +(edge n159 n163) +(edge n159 n165) +(edge n159 n172) +(edge n159 n177) +(edge n159 n181) +(edge n159 n186) +(edge n159 n187) +(edge n160 n168) +(edge n160 n171) +(edge n160 n184) +(edge n160 n192) +(edge n160 n197) +(edge n161 n177) +(edge n161 n183) +(edge n161 n196) +(edge n162 n163) +(edge n162 n164) +(edge n162 n168) +(edge n162 n175) +(edge n162 n177) +(edge n162 n181) +(edge n162 n183) +(edge n162 n188) +(edge n162 n189) +(edge n162 n192) +(edge n162 n195) +(edge n162 n196) +(edge n163 n164) +(edge n163 n172) +(edge n163 n174) +(edge n163 n179) +(edge n163 n185) +(edge n163 n199) +(edge n164 n173) +(edge n164 n185) +(edge n164 n194) +(edge n164 n198) +(edge n165 n170) +(edge n165 n180) +(edge n165 n190) +(edge n165 n195) +(edge n165 n196) +(edge n165 n199) +(edge n166 n168) +(edge n166 n175) +(edge n166 n184) +(edge n166 n196) +(edge n167 n172) +(edge n167 n189) +(edge n167 n192) +(edge n167 n193) +(edge n168 n177) +(edge n168 n182) +(edge n168 n195) +(edge n169 n170) +(edge n169 n171) +(edge n169 n178) +(edge n169 n179) +(edge n169 n182) +(edge n169 n190) +(edge n169 n191) +(edge n169 n192) +(edge n169 n199) +(edge n170 n171) +(edge n170 n173) +(edge n170 n174) +(edge n170 n176) +(edge n170 n177) +(edge n170 n181) +(edge n170 n184) +(edge n171 n181) +(edge n171 n189) +(edge n171 n196) +(edge n171 n197) +(edge n172 n181) +(edge n172 n194) +(edge n173 n178) +(edge n173 n191) +(edge n173 n195) +(edge n173 n197) +(edge n174 n175) +(edge n174 n181) +(edge n175 n182) +(edge n175 n189) +(edge n175 n191) +(edge n175 n193) +(edge n175 n194) +(edge n175 n199) +(edge n176 n177) +(edge n176 n186) +(edge n176 n193) +(edge n177 n180) +(edge n177 n181) +(edge n177 n186) +(edge n178 n186) +(edge n178 n189) +(edge n178 n198) +(edge n179 n181) +(edge n179 n184) +(edge n179 n187) +(edge n179 n198) +(edge n179 n199) +(edge n180 n192) +(edge n180 n194) +(edge n181 n184) +(edge n181 n187) +(edge n181 n190) +(edge n181 n191) +(edge n181 n198) +(edge n182 n193) +(edge n182 n199) +(edge n183 n189) +(edge n183 n193) +(edge n183 n194) +(edge n183 n195) +(edge n184 n190) +(edge n184 n197) +(edge n184 n198) +(edge n185 n196) +(edge n186 n189) +(edge n186 n191) +(edge n186 n192) +(edge n186 n193) +(edge n186 n195) +(edge n186 n196) +(edge n187 n190) +(edge n187 n194) +(edge n188 n189) +(edge n188 n195) +(edge n188 n199) +(edge n189 n192) +(edge n190 n191) +(edge n190 n193) +(edge n190 n199) +(edge n192 n198) +(edge n194 n198) +(edge n195 n196) +(edge n196 n199) + +(exec 9 (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3)) + (, (c4 $x0 $x1 $x2 $x3))) diff --git a/examples/transforms/clq_staged.mm2 b/examples/transforms/clq_staged.mm2 new file mode 100644 index 00000000..e2f48df8 --- /dev/null +++ b/examples/transforms/clq_staged.mm2 @@ -0,0 +1,3604 @@ +(edge n0 n1) +(edge n0 n12) +(edge n0 n21) +(edge n0 n24) +(edge n0 n25) +(edge n0 n31) +(edge n0 n33) +(edge n0 n37) +(edge n0 n43) +(edge n0 n56) +(edge n0 n58) +(edge n0 n62) +(edge n0 n67) +(edge n0 n71) +(edge n0 n74) +(edge n0 n83) +(edge n0 n84) +(edge n0 n100) +(edge n0 n101) +(edge n0 n103) +(edge n0 n108) +(edge n0 n114) +(edge n0 n124) +(edge n0 n125) +(edge n0 n130) +(edge n0 n135) +(edge n0 n139) +(edge n0 n155) +(edge n0 n156) +(edge n0 n157) +(edge n0 n159) +(edge n0 n164) +(edge n0 n168) +(edge n0 n182) +(edge n0 n186) +(edge n0 n191) +(edge n0 n196) +(edge n1 n8) +(edge n1 n13) +(edge n1 n19) +(edge n1 n20) +(edge n1 n22) +(edge n1 n23) +(edge n1 n28) +(edge n1 n33) +(edge n1 n46) +(edge n1 n50) +(edge n1 n54) +(edge n1 n60) +(edge n1 n61) +(edge n1 n64) +(edge n1 n66) +(edge n1 n72) +(edge n1 n78) +(edge n1 n80) +(edge n1 n88) +(edge n1 n101) +(edge n1 n106) +(edge n1 n107) +(edge n1 n108) +(edge n1 n119) +(edge n1 n123) +(edge n1 n131) +(edge n1 n135) +(edge n1 n136) +(edge n1 n145) +(edge n1 n153) +(edge n1 n160) +(edge n1 n164) +(edge n1 n166) +(edge n1 n177) +(edge n1 n179) +(edge n1 n180) +(edge n1 n187) +(edge n1 n190) +(edge n1 n192) +(edge n1 n195) +(edge n2 n8) +(edge n2 n11) +(edge n2 n17) +(edge n2 n31) +(edge n2 n32) +(edge n2 n37) +(edge n2 n42) +(edge n2 n44) +(edge n2 n46) +(edge n2 n50) +(edge n2 n60) +(edge n2 n61) +(edge n2 n64) +(edge n2 n65) +(edge n2 n66) +(edge n2 n78) +(edge n2 n84) +(edge n2 n86) +(edge n2 n109) +(edge n2 n116) +(edge n2 n122) +(edge n2 n137) +(edge n2 n138) +(edge n2 n141) +(edge n2 n144) +(edge n2 n152) +(edge n2 n156) +(edge n2 n160) +(edge n2 n162) +(edge n2 n170) +(edge n2 n171) +(edge n2 n176) +(edge n2 n186) +(edge n2 n196) +(edge n3 n9) +(edge n3 n21) +(edge n3 n29) +(edge n3 n30) +(edge n3 n41) +(edge n3 n46) +(edge n3 n54) +(edge n3 n56) +(edge n3 n61) +(edge n3 n72) +(edge n3 n74) +(edge n3 n76) +(edge n3 n82) +(edge n3 n87) +(edge n3 n88) +(edge n3 n105) +(edge n3 n109) +(edge n3 n111) +(edge n3 n112) +(edge n3 n113) +(edge n3 n115) +(edge n3 n122) +(edge n3 n128) +(edge n3 n130) +(edge n3 n133) +(edge n3 n135) +(edge n3 n147) +(edge n3 n154) +(edge n3 n157) +(edge n3 n168) +(edge n3 n169) +(edge n3 n172) +(edge n3 n174) +(edge n3 n178) +(edge n3 n187) +(edge n3 n192) +(edge n3 n197) +(edge n4 n7) +(edge n4 n9) +(edge n4 n12) +(edge n4 n21) +(edge n4 n22) +(edge n4 n25) +(edge n4 n30) +(edge n4 n37) +(edge n4 n39) +(edge n4 n41) +(edge n4 n48) +(edge n4 n51) +(edge n4 n54) +(edge n4 n60) +(edge n4 n62) +(edge n4 n66) +(edge n4 n85) +(edge n4 n87) +(edge n4 n90) +(edge n4 n91) +(edge n4 n103) +(edge n4 n104) +(edge n4 n131) +(edge n4 n135) +(edge n4 n138) +(edge n4 n145) +(edge n4 n147) +(edge n4 n151) +(edge n4 n156) +(edge n4 n159) +(edge n4 n164) +(edge n4 n165) +(edge n4 n175) +(edge n4 n176) +(edge n4 n178) +(edge n4 n179) +(edge n4 n180) +(edge n4 n182) +(edge n4 n186) +(edge n4 n190) +(edge n4 n193) +(edge n5 n7) +(edge n5 n10) +(edge n5 n13) +(edge n5 n30) +(edge n5 n34) +(edge n5 n42) +(edge n5 n46) +(edge n5 n51) +(edge n5 n70) +(edge n5 n72) +(edge n5 n75) +(edge n5 n76) +(edge n5 n95) +(edge n5 n97) +(edge n5 n104) +(edge n5 n125) +(edge n5 n126) +(edge n5 n128) +(edge n5 n135) +(edge n5 n138) +(edge n5 n141) +(edge n5 n143) +(edge n5 n145) +(edge n5 n149) +(edge n5 n154) +(edge n5 n159) +(edge n5 n160) +(edge n5 n163) +(edge n5 n165) +(edge n5 n168) +(edge n5 n175) +(edge n5 n178) +(edge n5 n189) +(edge n5 n192) +(edge n5 n197) +(edge n6 n7) +(edge n6 n11) +(edge n6 n18) +(edge n6 n28) +(edge n6 n40) +(edge n6 n41) +(edge n6 n64) +(edge n6 n76) +(edge n6 n78) +(edge n6 n86) +(edge n6 n90) +(edge n6 n93) +(edge n6 n95) +(edge n6 n97) +(edge n6 n103) +(edge n6 n108) +(edge n6 n109) +(edge n6 n121) +(edge n6 n122) +(edge n6 n127) +(edge n6 n133) +(edge n6 n134) +(edge n6 n139) +(edge n6 n140) +(edge n6 n155) +(edge n6 n161) +(edge n6 n162) +(edge n6 n165) +(edge n6 n166) +(edge n6 n176) +(edge n6 n188) +(edge n6 n190) +(edge n6 n191) +(edge n6 n192) +(edge n6 n193) +(edge n7 n10) +(edge n7 n26) +(edge n7 n35) +(edge n7 n38) +(edge n7 n39) +(edge n7 n45) +(edge n7 n50) +(edge n7 n51) +(edge n7 n52) +(edge n7 n65) +(edge n7 n67) +(edge n7 n68) +(edge n7 n72) +(edge n7 n74) +(edge n7 n75) +(edge n7 n78) +(edge n7 n82) +(edge n7 n85) +(edge n7 n93) +(edge n7 n95) +(edge n7 n98) +(edge n7 n99) +(edge n7 n100) +(edge n7 n104) +(edge n7 n105) +(edge n7 n109) +(edge n7 n124) +(edge n7 n152) +(edge n7 n154) +(edge n7 n157) +(edge n7 n161) +(edge n7 n163) +(edge n7 n167) +(edge n7 n171) +(edge n7 n176) +(edge n7 n177) +(edge n7 n179) +(edge n7 n180) +(edge n7 n190) +(edge n8 n11) +(edge n8 n14) +(edge n8 n15) +(edge n8 n21) +(edge n8 n22) +(edge n8 n28) +(edge n8 n31) +(edge n8 n33) +(edge n8 n41) +(edge n8 n42) +(edge n8 n48) +(edge n8 n55) +(edge n8 n67) +(edge n8 n73) +(edge n8 n79) +(edge n8 n83) +(edge n8 n96) +(edge n8 n98) +(edge n8 n100) +(edge n8 n101) +(edge n8 n111) +(edge n8 n112) +(edge n8 n116) +(edge n8 n119) +(edge n8 n122) +(edge n8 n124) +(edge n8 n133) +(edge n8 n142) +(edge n8 n144) +(edge n8 n145) +(edge n8 n147) +(edge n8 n148) +(edge n8 n152) +(edge n8 n158) +(edge n8 n168) +(edge n8 n172) +(edge n8 n173) +(edge n8 n179) +(edge n8 n185) +(edge n8 n190) +(edge n8 n193) +(edge n8 n194) +(edge n9 n10) +(edge n9 n11) +(edge n9 n19) +(edge n9 n30) +(edge n9 n34) +(edge n9 n39) +(edge n9 n40) +(edge n9 n50) +(edge n9 n52) +(edge n9 n78) +(edge n9 n79) +(edge n9 n81) +(edge n9 n83) +(edge n9 n85) +(edge n9 n96) +(edge n9 n102) +(edge n9 n126) +(edge n9 n128) +(edge n9 n138) +(edge n9 n140) +(edge n9 n148) +(edge n9 n153) +(edge n9 n157) +(edge n9 n164) +(edge n9 n166) +(edge n9 n169) +(edge n9 n179) +(edge n9 n185) +(edge n9 n188) +(edge n9 n190) +(edge n10 n17) +(edge n10 n51) +(edge n10 n52) +(edge n10 n59) +(edge n10 n61) +(edge n10 n65) +(edge n10 n69) +(edge n10 n73) +(edge n10 n74) +(edge n10 n98) +(edge n10 n109) +(edge n10 n110) +(edge n10 n116) +(edge n10 n119) +(edge n10 n120) +(edge n10 n124) +(edge n10 n127) +(edge n10 n131) +(edge n10 n135) +(edge n10 n139) +(edge n10 n143) +(edge n10 n147) +(edge n10 n162) +(edge n10 n169) +(edge n10 n172) +(edge n10 n178) +(edge n10 n184) +(edge n10 n186) +(edge n10 n195) +(edge n10 n198) +(edge n10 n199) +(edge n11 n15) +(edge n11 n18) +(edge n11 n21) +(edge n11 n27) +(edge n11 n29) +(edge n11 n35) +(edge n11 n40) +(edge n11 n45) +(edge n11 n53) +(edge n11 n54) +(edge n11 n55) +(edge n11 n63) +(edge n11 n65) +(edge n11 n66) +(edge n11 n74) +(edge n11 n80) +(edge n11 n83) +(edge n11 n84) +(edge n11 n86) +(edge n11 n90) +(edge n11 n98) +(edge n11 n102) +(edge n11 n109) +(edge n11 n126) +(edge n11 n127) +(edge n11 n130) +(edge n11 n146) +(edge n11 n149) +(edge n11 n151) +(edge n11 n160) +(edge n11 n163) +(edge n11 n166) +(edge n11 n171) +(edge n11 n175) +(edge n11 n177) +(edge n11 n185) +(edge n11 n190) +(edge n11 n199) +(edge n12 n13) +(edge n12 n21) +(edge n12 n26) +(edge n12 n28) +(edge n12 n34) +(edge n12 n35) +(edge n12 n37) +(edge n12 n43) +(edge n12 n45) +(edge n12 n49) +(edge n12 n51) +(edge n12 n53) +(edge n12 n57) +(edge n12 n60) +(edge n12 n64) +(edge n12 n69) +(edge n12 n74) +(edge n12 n75) +(edge n12 n78) +(edge n12 n80) +(edge n12 n84) +(edge n12 n107) +(edge n12 n117) +(edge n12 n120) +(edge n12 n122) +(edge n12 n133) +(edge n12 n142) +(edge n12 n145) +(edge n12 n148) +(edge n12 n149) +(edge n12 n150) +(edge n12 n151) +(edge n12 n156) +(edge n12 n161) +(edge n12 n169) +(edge n12 n172) +(edge n12 n180) +(edge n12 n184) +(edge n12 n188) +(edge n12 n196) +(edge n12 n199) +(edge n13 n14) +(edge n13 n26) +(edge n13 n31) +(edge n13 n33) +(edge n13 n34) +(edge n13 n36) +(edge n13 n37) +(edge n13 n38) +(edge n13 n44) +(edge n13 n47) +(edge n13 n48) +(edge n13 n54) +(edge n13 n66) +(edge n13 n67) +(edge n13 n74) +(edge n13 n76) +(edge n13 n87) +(edge n13 n96) +(edge n13 n98) +(edge n13 n99) +(edge n13 n100) +(edge n13 n107) +(edge n13 n112) +(edge n13 n118) +(edge n13 n126) +(edge n13 n136) +(edge n13 n146) +(edge n13 n149) +(edge n13 n157) +(edge n13 n160) +(edge n13 n161) +(edge n13 n168) +(edge n13 n177) +(edge n13 n181) +(edge n13 n185) +(edge n13 n194) +(edge n13 n199) +(edge n14 n20) +(edge n14 n23) +(edge n14 n34) +(edge n14 n41) +(edge n14 n44) +(edge n14 n51) +(edge n14 n56) +(edge n14 n57) +(edge n14 n64) +(edge n14 n69) +(edge n14 n70) +(edge n14 n86) +(edge n14 n88) +(edge n14 n89) +(edge n14 n92) +(edge n14 n94) +(edge n14 n95) +(edge n14 n102) +(edge n14 n107) +(edge n14 n117) +(edge n14 n120) +(edge n14 n125) +(edge n14 n136) +(edge n14 n146) +(edge n14 n181) +(edge n14 n183) +(edge n14 n185) +(edge n14 n195) +(edge n14 n198) +(edge n15 n16) +(edge n15 n17) +(edge n15 n25) +(edge n15 n27) +(edge n15 n36) +(edge n15 n37) +(edge n15 n39) +(edge n15 n48) +(edge n15 n50) +(edge n15 n51) +(edge n15 n52) +(edge n15 n66) +(edge n15 n70) +(edge n15 n74) +(edge n15 n77) +(edge n15 n78) +(edge n15 n80) +(edge n15 n86) +(edge n15 n101) +(edge n15 n102) +(edge n15 n108) +(edge n15 n114) +(edge n15 n117) +(edge n15 n118) +(edge n15 n121) +(edge n15 n122) +(edge n15 n139) +(edge n15 n141) +(edge n15 n143) +(edge n15 n148) +(edge n15 n150) +(edge n15 n152) +(edge n15 n153) +(edge n15 n155) +(edge n15 n163) +(edge n15 n188) +(edge n15 n195) +(edge n15 n199) +(edge n16 n23) +(edge n16 n25) +(edge n16 n28) +(edge n16 n51) +(edge n16 n56) +(edge n16 n64) +(edge n16 n68) +(edge n16 n70) +(edge n16 n73) +(edge n16 n81) +(edge n16 n83) +(edge n16 n84) +(edge n16 n85) +(edge n16 n87) +(edge n16 n92) +(edge n16 n99) +(edge n16 n107) +(edge n16 n108) +(edge n16 n114) +(edge n16 n118) +(edge n16 n123) +(edge n16 n130) +(edge n16 n136) +(edge n16 n158) +(edge n16 n161) +(edge n16 n173) +(edge n16 n180) +(edge n16 n184) +(edge n16 n188) +(edge n16 n191) +(edge n16 n192) +(edge n16 n193) +(edge n17 n18) +(edge n17 n36) +(edge n17 n41) +(edge n17 n49) +(edge n17 n55) +(edge n17 n62) +(edge n17 n70) +(edge n17 n76) +(edge n17 n83) +(edge n17 n93) +(edge n17 n97) +(edge n17 n99) +(edge n17 n110) +(edge n17 n111) +(edge n17 n112) +(edge n17 n122) +(edge n17 n145) +(edge n17 n151) +(edge n17 n154) +(edge n17 n155) +(edge n17 n156) +(edge n17 n169) +(edge n17 n174) +(edge n17 n185) +(edge n17 n199) +(edge n18 n20) +(edge n18 n21) +(edge n18 n35) +(edge n18 n36) +(edge n18 n43) +(edge n18 n46) +(edge n18 n47) +(edge n18 n51) +(edge n18 n63) +(edge n18 n64) +(edge n18 n72) +(edge n18 n74) +(edge n18 n75) +(edge n18 n77) +(edge n18 n78) +(edge n18 n89) +(edge n18 n90) +(edge n18 n95) +(edge n18 n96) +(edge n18 n100) +(edge n18 n104) +(edge n18 n116) +(edge n18 n117) +(edge n18 n119) +(edge n18 n127) +(edge n18 n129) +(edge n18 n134) +(edge n18 n137) +(edge n18 n168) +(edge n18 n169) +(edge n18 n176) +(edge n18 n180) +(edge n18 n183) +(edge n19 n30) +(edge n19 n31) +(edge n19 n35) +(edge n19 n37) +(edge n19 n38) +(edge n19 n51) +(edge n19 n54) +(edge n19 n56) +(edge n19 n57) +(edge n19 n63) +(edge n19 n64) +(edge n19 n65) +(edge n19 n73) +(edge n19 n76) +(edge n19 n79) +(edge n19 n80) +(edge n19 n85) +(edge n19 n87) +(edge n19 n89) +(edge n19 n91) +(edge n19 n98) +(edge n19 n99) +(edge n19 n102) +(edge n19 n106) +(edge n19 n107) +(edge n19 n121) +(edge n19 n128) +(edge n19 n130) +(edge n19 n140) +(edge n19 n142) +(edge n19 n144) +(edge n19 n147) +(edge n19 n150) +(edge n19 n158) +(edge n19 n161) +(edge n19 n164) +(edge n19 n174) +(edge n19 n176) +(edge n19 n182) +(edge n20 n25) +(edge n20 n27) +(edge n20 n39) +(edge n20 n40) +(edge n20 n43) +(edge n20 n50) +(edge n20 n67) +(edge n20 n73) +(edge n20 n74) +(edge n20 n79) +(edge n20 n80) +(edge n20 n85) +(edge n20 n86) +(edge n20 n93) +(edge n20 n96) +(edge n20 n98) +(edge n20 n101) +(edge n20 n113) +(edge n20 n114) +(edge n20 n130) +(edge n20 n140) +(edge n20 n148) +(edge n20 n151) +(edge n20 n153) +(edge n20 n155) +(edge n20 n157) +(edge n20 n176) +(edge n20 n179) +(edge n20 n182) +(edge n20 n183) +(edge n20 n184) +(edge n20 n194) +(edge n20 n196) +(edge n21 n27) +(edge n21 n29) +(edge n21 n31) +(edge n21 n40) +(edge n21 n42) +(edge n21 n43) +(edge n21 n55) +(edge n21 n75) +(edge n21 n78) +(edge n21 n81) +(edge n21 n82) +(edge n21 n87) +(edge n21 n92) +(edge n21 n95) +(edge n21 n97) +(edge n21 n106) +(edge n21 n116) +(edge n21 n117) +(edge n21 n121) +(edge n21 n122) +(edge n21 n130) +(edge n21 n141) +(edge n21 n149) +(edge n21 n154) +(edge n21 n159) +(edge n21 n160) +(edge n21 n163) +(edge n21 n165) +(edge n21 n176) +(edge n21 n178) +(edge n21 n183) +(edge n21 n195) +(edge n22 n23) +(edge n22 n30) +(edge n22 n43) +(edge n22 n47) +(edge n22 n48) +(edge n22 n49) +(edge n22 n57) +(edge n22 n58) +(edge n22 n59) +(edge n22 n61) +(edge n22 n62) +(edge n22 n78) +(edge n22 n87) +(edge n22 n96) +(edge n22 n104) +(edge n22 n107) +(edge n22 n111) +(edge n22 n113) +(edge n22 n115) +(edge n22 n124) +(edge n22 n126) +(edge n22 n127) +(edge n22 n129) +(edge n22 n132) +(edge n22 n142) +(edge n22 n152) +(edge n22 n169) +(edge n22 n174) +(edge n22 n178) +(edge n22 n181) +(edge n22 n185) +(edge n22 n190) +(edge n22 n191) +(edge n22 n196) +(edge n23 n25) +(edge n23 n26) +(edge n23 n31) +(edge n23 n40) +(edge n23 n44) +(edge n23 n47) +(edge n23 n53) +(edge n23 n55) +(edge n23 n57) +(edge n23 n60) +(edge n23 n64) +(edge n23 n78) +(edge n23 n81) +(edge n23 n108) +(edge n23 n112) +(edge n23 n115) +(edge n23 n120) +(edge n23 n125) +(edge n23 n126) +(edge n23 n130) +(edge n23 n137) +(edge n23 n140) +(edge n23 n144) +(edge n23 n150) +(edge n23 n161) +(edge n23 n162) +(edge n23 n163) +(edge n23 n165) +(edge n23 n169) +(edge n23 n188) +(edge n24 n28) +(edge n24 n39) +(edge n24 n45) +(edge n24 n47) +(edge n24 n48) +(edge n24 n56) +(edge n24 n58) +(edge n24 n60) +(edge n24 n63) +(edge n24 n68) +(edge n24 n71) +(edge n24 n76) +(edge n24 n86) +(edge n24 n93) +(edge n24 n94) +(edge n24 n95) +(edge n24 n98) +(edge n24 n100) +(edge n24 n104) +(edge n24 n105) +(edge n24 n111) +(edge n24 n121) +(edge n24 n123) +(edge n24 n127) +(edge n24 n135) +(edge n24 n139) +(edge n24 n151) +(edge n24 n155) +(edge n24 n165) +(edge n24 n172) +(edge n24 n175) +(edge n25 n48) +(edge n25 n54) +(edge n25 n66) +(edge n25 n72) +(edge n25 n79) +(edge n25 n83) +(edge n25 n84) +(edge n25 n92) +(edge n25 n93) +(edge n25 n99) +(edge n25 n110) +(edge n25 n114) +(edge n25 n115) +(edge n25 n116) +(edge n25 n118) +(edge n25 n121) +(edge n25 n132) +(edge n25 n143) +(edge n25 n144) +(edge n25 n148) +(edge n25 n152) +(edge n25 n156) +(edge n25 n157) +(edge n25 n158) +(edge n25 n159) +(edge n25 n164) +(edge n25 n169) +(edge n25 n173) +(edge n25 n185) +(edge n25 n187) +(edge n25 n189) +(edge n26 n35) +(edge n26 n38) +(edge n26 n46) +(edge n26 n47) +(edge n26 n55) +(edge n26 n62) +(edge n26 n66) +(edge n26 n67) +(edge n26 n70) +(edge n26 n78) +(edge n26 n79) +(edge n26 n85) +(edge n26 n90) +(edge n26 n99) +(edge n26 n108) +(edge n26 n112) +(edge n26 n119) +(edge n26 n128) +(edge n26 n134) +(edge n26 n137) +(edge n26 n140) +(edge n26 n154) +(edge n26 n159) +(edge n26 n165) +(edge n26 n169) +(edge n26 n170) +(edge n26 n177) +(edge n26 n192) +(edge n27 n29) +(edge n27 n32) +(edge n27 n35) +(edge n27 n50) +(edge n27 n53) +(edge n27 n58) +(edge n27 n62) +(edge n27 n63) +(edge n27 n70) +(edge n27 n71) +(edge n27 n77) +(edge n27 n80) +(edge n27 n82) +(edge n27 n83) +(edge n27 n84) +(edge n27 n86) +(edge n27 n90) +(edge n27 n99) +(edge n27 n110) +(edge n27 n113) +(edge n27 n116) +(edge n27 n117) +(edge n27 n128) +(edge n27 n142) +(edge n27 n145) +(edge n27 n151) +(edge n27 n169) +(edge n27 n171) +(edge n27 n193) +(edge n27 n197) +(edge n27 n199) +(edge n28 n39) +(edge n28 n43) +(edge n28 n47) +(edge n28 n49) +(edge n28 n55) +(edge n28 n70) +(edge n28 n72) +(edge n28 n73) +(edge n28 n77) +(edge n28 n84) +(edge n28 n100) +(edge n28 n106) +(edge n28 n110) +(edge n28 n124) +(edge n28 n129) +(edge n28 n134) +(edge n28 n136) +(edge n28 n152) +(edge n28 n159) +(edge n28 n164) +(edge n28 n172) +(edge n28 n182) +(edge n28 n193) +(edge n29 n32) +(edge n29 n37) +(edge n29 n40) +(edge n29 n43) +(edge n29 n47) +(edge n29 n53) +(edge n29 n54) +(edge n29 n62) +(edge n29 n64) +(edge n29 n69) +(edge n29 n72) +(edge n29 n76) +(edge n29 n82) +(edge n29 n83) +(edge n29 n86) +(edge n29 n87) +(edge n29 n88) +(edge n29 n90) +(edge n29 n95) +(edge n29 n97) +(edge n29 n106) +(edge n29 n108) +(edge n29 n110) +(edge n29 n114) +(edge n29 n117) +(edge n29 n121) +(edge n29 n131) +(edge n29 n151) +(edge n29 n153) +(edge n29 n160) +(edge n29 n162) +(edge n29 n166) +(edge n29 n178) +(edge n29 n181) +(edge n29 n183) +(edge n29 n186) +(edge n29 n188) +(edge n29 n197) +(edge n29 n198) +(edge n29 n199) +(edge n30 n42) +(edge n30 n43) +(edge n30 n53) +(edge n30 n54) +(edge n30 n64) +(edge n30 n68) +(edge n30 n72) +(edge n30 n76) +(edge n30 n79) +(edge n30 n81) +(edge n30 n85) +(edge n30 n90) +(edge n30 n93) +(edge n30 n94) +(edge n30 n95) +(edge n30 n96) +(edge n30 n98) +(edge n30 n103) +(edge n30 n115) +(edge n30 n116) +(edge n30 n118) +(edge n30 n135) +(edge n30 n136) +(edge n30 n141) +(edge n30 n154) +(edge n30 n156) +(edge n30 n162) +(edge n30 n166) +(edge n30 n180) +(edge n30 n181) +(edge n30 n188) +(edge n30 n189) +(edge n30 n197) +(edge n31 n61) +(edge n31 n78) +(edge n31 n80) +(edge n31 n83) +(edge n31 n86) +(edge n31 n94) +(edge n31 n96) +(edge n31 n97) +(edge n31 n104) +(edge n31 n119) +(edge n31 n122) +(edge n31 n124) +(edge n31 n128) +(edge n31 n135) +(edge n31 n138) +(edge n31 n149) +(edge n31 n154) +(edge n31 n160) +(edge n31 n162) +(edge n31 n167) +(edge n31 n170) +(edge n31 n177) +(edge n31 n183) +(edge n31 n184) +(edge n31 n188) +(edge n32 n38) +(edge n32 n39) +(edge n32 n47) +(edge n32 n75) +(edge n32 n81) +(edge n32 n83) +(edge n32 n89) +(edge n32 n93) +(edge n32 n112) +(edge n32 n115) +(edge n32 n116) +(edge n32 n119) +(edge n32 n122) +(edge n32 n128) +(edge n32 n130) +(edge n32 n134) +(edge n32 n136) +(edge n32 n138) +(edge n32 n152) +(edge n32 n164) +(edge n32 n166) +(edge n32 n167) +(edge n32 n174) +(edge n32 n175) +(edge n32 n185) +(edge n32 n188) +(edge n32 n197) +(edge n33 n35) +(edge n33 n37) +(edge n33 n38) +(edge n33 n40) +(edge n33 n41) +(edge n33 n59) +(edge n33 n79) +(edge n33 n82) +(edge n33 n92) +(edge n33 n96) +(edge n33 n97) +(edge n33 n101) +(edge n33 n108) +(edge n33 n117) +(edge n33 n123) +(edge n33 n134) +(edge n33 n140) +(edge n33 n145) +(edge n33 n155) +(edge n33 n157) +(edge n33 n162) +(edge n33 n164) +(edge n33 n166) +(edge n33 n183) +(edge n33 n188) +(edge n33 n189) +(edge n33 n196) +(edge n33 n198) +(edge n33 n199) +(edge n34 n38) +(edge n34 n40) +(edge n34 n46) +(edge n34 n53) +(edge n34 n60) +(edge n34 n68) +(edge n34 n69) +(edge n34 n75) +(edge n34 n76) +(edge n34 n89) +(edge n34 n95) +(edge n34 n96) +(edge n34 n104) +(edge n34 n108) +(edge n34 n110) +(edge n34 n111) +(edge n34 n116) +(edge n34 n129) +(edge n34 n134) +(edge n34 n143) +(edge n34 n148) +(edge n34 n156) +(edge n34 n175) +(edge n34 n179) +(edge n34 n184) +(edge n34 n199) +(edge n35 n45) +(edge n35 n46) +(edge n35 n51) +(edge n35 n58) +(edge n35 n62) +(edge n35 n63) +(edge n35 n70) +(edge n35 n76) +(edge n35 n78) +(edge n35 n80) +(edge n35 n93) +(edge n35 n102) +(edge n35 n103) +(edge n35 n112) +(edge n35 n114) +(edge n35 n117) +(edge n35 n124) +(edge n35 n125) +(edge n35 n130) +(edge n35 n131) +(edge n35 n134) +(edge n35 n137) +(edge n35 n139) +(edge n35 n141) +(edge n35 n143) +(edge n35 n153) +(edge n35 n156) +(edge n35 n164) +(edge n35 n167) +(edge n35 n169) +(edge n35 n182) +(edge n35 n190) +(edge n35 n198) +(edge n36 n45) +(edge n36 n47) +(edge n36 n52) +(edge n36 n75) +(edge n36 n80) +(edge n36 n83) +(edge n36 n90) +(edge n36 n94) +(edge n36 n96) +(edge n36 n103) +(edge n36 n107) +(edge n36 n109) +(edge n36 n122) +(edge n36 n128) +(edge n36 n137) +(edge n36 n139) +(edge n36 n153) +(edge n36 n158) +(edge n36 n161) +(edge n36 n164) +(edge n36 n165) +(edge n36 n167) +(edge n36 n168) +(edge n36 n172) +(edge n36 n174) +(edge n36 n176) +(edge n36 n195) +(edge n36 n197) +(edge n37 n41) +(edge n37 n48) +(edge n37 n55) +(edge n37 n59) +(edge n37 n65) +(edge n37 n66) +(edge n37 n72) +(edge n37 n78) +(edge n37 n82) +(edge n37 n83) +(edge n37 n86) +(edge n37 n93) +(edge n37 n98) +(edge n37 n102) +(edge n37 n104) +(edge n37 n105) +(edge n37 n109) +(edge n37 n116) +(edge n37 n119) +(edge n37 n120) +(edge n37 n122) +(edge n37 n123) +(edge n37 n140) +(edge n37 n141) +(edge n37 n149) +(edge n37 n154) +(edge n37 n160) +(edge n37 n169) +(edge n37 n170) +(edge n37 n173) +(edge n37 n183) +(edge n37 n185) +(edge n37 n195) +(edge n37 n197) +(edge n37 n199) +(edge n38 n40) +(edge n38 n44) +(edge n38 n47) +(edge n38 n49) +(edge n38 n52) +(edge n38 n61) +(edge n38 n66) +(edge n38 n68) +(edge n38 n72) +(edge n38 n78) +(edge n38 n80) +(edge n38 n91) +(edge n38 n92) +(edge n38 n98) +(edge n38 n100) +(edge n38 n102) +(edge n38 n104) +(edge n38 n116) +(edge n38 n119) +(edge n38 n127) +(edge n38 n134) +(edge n38 n137) +(edge n38 n144) +(edge n38 n147) +(edge n38 n149) +(edge n38 n150) +(edge n38 n154) +(edge n38 n161) +(edge n38 n167) +(edge n38 n177) +(edge n38 n178) +(edge n39 n55) +(edge n39 n61) +(edge n39 n62) +(edge n39 n63) +(edge n39 n64) +(edge n39 n79) +(edge n39 n87) +(edge n39 n90) +(edge n39 n109) +(edge n39 n115) +(edge n39 n117) +(edge n39 n121) +(edge n39 n128) +(edge n39 n135) +(edge n39 n143) +(edge n39 n149) +(edge n39 n152) +(edge n39 n155) +(edge n39 n182) +(edge n39 n183) +(edge n39 n186) +(edge n39 n197) +(edge n39 n198) +(edge n40 n43) +(edge n40 n45) +(edge n40 n49) +(edge n40 n55) +(edge n40 n59) +(edge n40 n67) +(edge n40 n69) +(edge n40 n82) +(edge n40 n87) +(edge n40 n99) +(edge n40 n103) +(edge n40 n108) +(edge n40 n117) +(edge n40 n118) +(edge n40 n129) +(edge n40 n135) +(edge n40 n151) +(edge n40 n163) +(edge n40 n173) +(edge n40 n175) +(edge n40 n179) +(edge n40 n181) +(edge n40 n182) +(edge n40 n183) +(edge n40 n188) +(edge n40 n193) +(edge n40 n195) +(edge n40 n197) +(edge n40 n199) +(edge n41 n54) +(edge n41 n58) +(edge n41 n59) +(edge n41 n61) +(edge n41 n70) +(edge n41 n74) +(edge n41 n75) +(edge n41 n83) +(edge n41 n90) +(edge n41 n95) +(edge n41 n105) +(edge n41 n111) +(edge n41 n112) +(edge n41 n116) +(edge n41 n121) +(edge n41 n127) +(edge n41 n129) +(edge n41 n130) +(edge n41 n135) +(edge n41 n141) +(edge n41 n155) +(edge n41 n166) +(edge n41 n171) +(edge n41 n177) +(edge n41 n182) +(edge n41 n186) +(edge n41 n190) +(edge n41 n191) +(edge n42 n46) +(edge n42 n51) +(edge n42 n58) +(edge n42 n69) +(edge n42 n72) +(edge n42 n74) +(edge n42 n78) +(edge n42 n97) +(edge n42 n99) +(edge n42 n108) +(edge n42 n127) +(edge n42 n138) +(edge n42 n143) +(edge n42 n150) +(edge n42 n155) +(edge n42 n156) +(edge n42 n157) +(edge n42 n162) +(edge n42 n171) +(edge n42 n176) +(edge n42 n177) +(edge n42 n182) +(edge n42 n194) +(edge n43 n54) +(edge n43 n68) +(edge n43 n73) +(edge n43 n74) +(edge n43 n87) +(edge n43 n92) +(edge n43 n96) +(edge n43 n117) +(edge n43 n118) +(edge n43 n121) +(edge n43 n125) +(edge n43 n126) +(edge n43 n136) +(edge n43 n137) +(edge n43 n138) +(edge n43 n168) +(edge n43 n169) +(edge n43 n174) +(edge n43 n175) +(edge n43 n187) +(edge n43 n188) +(edge n43 n194) +(edge n43 n196) +(edge n44 n50) +(edge n44 n56) +(edge n44 n60) +(edge n44 n62) +(edge n44 n63) +(edge n44 n65) +(edge n44 n66) +(edge n44 n68) +(edge n44 n69) +(edge n44 n74) +(edge n44 n75) +(edge n44 n80) +(edge n44 n89) +(edge n44 n96) +(edge n44 n98) +(edge n44 n100) +(edge n44 n101) +(edge n44 n104) +(edge n44 n106) +(edge n44 n110) +(edge n44 n115) +(edge n44 n129) +(edge n44 n139) +(edge n44 n145) +(edge n44 n151) +(edge n44 n161) +(edge n44 n162) +(edge n44 n179) +(edge n44 n191) +(edge n44 n194) +(edge n44 n195) +(edge n45 n46) +(edge n45 n50) +(edge n45 n52) +(edge n45 n56) +(edge n45 n58) +(edge n45 n60) +(edge n45 n62) +(edge n45 n63) +(edge n45 n65) +(edge n45 n73) +(edge n45 n78) +(edge n45 n83) +(edge n45 n84) +(edge n45 n102) +(edge n45 n103) +(edge n45 n125) +(edge n45 n128) +(edge n45 n132) +(edge n45 n144) +(edge n45 n147) +(edge n45 n151) +(edge n45 n159) +(edge n45 n174) +(edge n45 n176) +(edge n45 n185) +(edge n45 n191) +(edge n46 n52) +(edge n46 n75) +(edge n46 n80) +(edge n46 n84) +(edge n46 n85) +(edge n46 n88) +(edge n46 n93) +(edge n46 n99) +(edge n46 n100) +(edge n46 n109) +(edge n46 n114) +(edge n46 n115) +(edge n46 n124) +(edge n46 n126) +(edge n46 n132) +(edge n46 n133) +(edge n46 n142) +(edge n46 n146) +(edge n46 n161) +(edge n46 n166) +(edge n46 n168) +(edge n46 n185) +(edge n46 n192) +(edge n46 n197) +(edge n47 n48) +(edge n47 n53) +(edge n47 n56) +(edge n47 n60) +(edge n47 n61) +(edge n47 n67) +(edge n47 n69) +(edge n47 n75) +(edge n47 n80) +(edge n47 n81) +(edge n47 n84) +(edge n47 n87) +(edge n47 n91) +(edge n47 n92) +(edge n47 n94) +(edge n47 n97) +(edge n47 n105) +(edge n47 n108) +(edge n47 n114) +(edge n47 n120) +(edge n47 n133) +(edge n47 n149) +(edge n47 n150) +(edge n47 n171) +(edge n47 n176) +(edge n47 n193) +(edge n47 n195) +(edge n48 n53) +(edge n48 n63) +(edge n48 n67) +(edge n48 n71) +(edge n48 n73) +(edge n48 n82) +(edge n48 n92) +(edge n48 n97) +(edge n48 n101) +(edge n48 n103) +(edge n48 n106) +(edge n48 n108) +(edge n48 n109) +(edge n48 n113) +(edge n48 n118) +(edge n48 n121) +(edge n48 n129) +(edge n48 n132) +(edge n48 n135) +(edge n48 n137) +(edge n48 n147) +(edge n48 n148) +(edge n48 n160) +(edge n48 n174) +(edge n48 n176) +(edge n48 n178) +(edge n48 n179) +(edge n48 n186) +(edge n48 n190) +(edge n48 n192) +(edge n48 n193) +(edge n49 n51) +(edge n49 n52) +(edge n49 n55) +(edge n49 n58) +(edge n49 n65) +(edge n49 n70) +(edge n49 n77) +(edge n49 n81) +(edge n49 n91) +(edge n49 n97) +(edge n49 n100) +(edge n49 n110) +(edge n49 n114) +(edge n49 n116) +(edge n49 n120) +(edge n49 n121) +(edge n49 n128) +(edge n49 n135) +(edge n49 n147) +(edge n49 n149) +(edge n49 n151) +(edge n49 n159) +(edge n49 n160) +(edge n49 n170) +(edge n49 n174) +(edge n49 n179) +(edge n49 n183) +(edge n49 n187) +(edge n49 n191) +(edge n49 n193) +(edge n49 n199) +(edge n50 n61) +(edge n50 n65) +(edge n50 n73) +(edge n50 n79) +(edge n50 n100) +(edge n50 n102) +(edge n50 n116) +(edge n50 n119) +(edge n50 n127) +(edge n50 n137) +(edge n50 n138) +(edge n50 n146) +(edge n50 n150) +(edge n50 n153) +(edge n50 n160) +(edge n50 n161) +(edge n50 n163) +(edge n50 n166) +(edge n50 n188) +(edge n50 n189) +(edge n50 n193) +(edge n50 n194) +(edge n50 n198) +(edge n51 n54) +(edge n51 n57) +(edge n51 n59) +(edge n51 n66) +(edge n51 n68) +(edge n51 n70) +(edge n51 n71) +(edge n51 n76) +(edge n51 n90) +(edge n51 n91) +(edge n51 n99) +(edge n51 n100) +(edge n51 n103) +(edge n51 n104) +(edge n51 n110) +(edge n51 n126) +(edge n51 n127) +(edge n51 n129) +(edge n51 n138) +(edge n51 n140) +(edge n51 n142) +(edge n51 n143) +(edge n51 n146) +(edge n51 n149) +(edge n51 n153) +(edge n51 n165) +(edge n51 n166) +(edge n51 n168) +(edge n51 n174) +(edge n51 n180) +(edge n51 n185) +(edge n51 n195) +(edge n52 n53) +(edge n52 n57) +(edge n52 n59) +(edge n52 n61) +(edge n52 n62) +(edge n52 n63) +(edge n52 n84) +(edge n52 n91) +(edge n52 n97) +(edge n52 n98) +(edge n52 n105) +(edge n52 n111) +(edge n52 n127) +(edge n52 n130) +(edge n52 n141) +(edge n52 n147) +(edge n52 n153) +(edge n52 n162) +(edge n52 n173) +(edge n52 n174) +(edge n52 n175) +(edge n52 n176) +(edge n52 n192) +(edge n52 n194) +(edge n52 n195) +(edge n53 n54) +(edge n53 n68) +(edge n53 n69) +(edge n53 n76) +(edge n53 n97) +(edge n53 n98) +(edge n53 n101) +(edge n53 n105) +(edge n53 n107) +(edge n53 n109) +(edge n53 n115) +(edge n53 n122) +(edge n53 n124) +(edge n53 n125) +(edge n53 n147) +(edge n53 n150) +(edge n53 n154) +(edge n53 n161) +(edge n53 n163) +(edge n53 n166) +(edge n53 n170) +(edge n53 n174) +(edge n53 n180) +(edge n53 n182) +(edge n53 n185) +(edge n53 n186) +(edge n53 n188) +(edge n53 n191) +(edge n53 n199) +(edge n54 n57) +(edge n54 n80) +(edge n54 n87) +(edge n54 n90) +(edge n54 n91) +(edge n54 n106) +(edge n54 n107) +(edge n54 n108) +(edge n54 n109) +(edge n54 n110) +(edge n54 n113) +(edge n54 n115) +(edge n54 n132) +(edge n54 n135) +(edge n54 n154) +(edge n54 n155) +(edge n54 n167) +(edge n54 n174) +(edge n54 n177) +(edge n54 n184) +(edge n54 n189) +(edge n54 n193) +(edge n54 n198) +(edge n55 n73) +(edge n55 n74) +(edge n55 n81) +(edge n55 n85) +(edge n55 n90) +(edge n55 n95) +(edge n55 n98) +(edge n55 n108) +(edge n55 n110) +(edge n55 n112) +(edge n55 n118) +(edge n55 n119) +(edge n55 n129) +(edge n55 n139) +(edge n55 n140) +(edge n55 n146) +(edge n55 n152) +(edge n55 n160) +(edge n55 n171) +(edge n55 n175) +(edge n55 n183) +(edge n55 n186) +(edge n55 n187) +(edge n55 n189) +(edge n55 n194) +(edge n55 n197) +(edge n56 n59) +(edge n56 n62) +(edge n56 n71) +(edge n56 n77) +(edge n56 n78) +(edge n56 n79) +(edge n56 n81) +(edge n56 n83) +(edge n56 n84) +(edge n56 n91) +(edge n56 n103) +(edge n56 n109) +(edge n56 n113) +(edge n56 n126) +(edge n56 n128) +(edge n56 n146) +(edge n56 n150) +(edge n56 n153) +(edge n56 n160) +(edge n56 n161) +(edge n56 n184) +(edge n56 n186) +(edge n56 n193) +(edge n56 n196) +(edge n57 n60) +(edge n57 n69) +(edge n57 n79) +(edge n57 n80) +(edge n57 n82) +(edge n57 n87) +(edge n57 n96) +(edge n57 n97) +(edge n57 n99) +(edge n57 n106) +(edge n57 n109) +(edge n57 n114) +(edge n57 n118) +(edge n57 n131) +(edge n57 n135) +(edge n57 n136) +(edge n57 n142) +(edge n57 n162) +(edge n57 n167) +(edge n57 n172) +(edge n57 n173) +(edge n57 n179) +(edge n57 n184) +(edge n57 n191) +(edge n58 n60) +(edge n58 n62) +(edge n58 n65) +(edge n58 n74) +(edge n58 n83) +(edge n58 n85) +(edge n58 n92) +(edge n58 n95) +(edge n58 n98) +(edge n58 n107) +(edge n58 n113) +(edge n58 n127) +(edge n58 n128) +(edge n58 n144) +(edge n58 n156) +(edge n58 n158) +(edge n58 n159) +(edge n58 n162) +(edge n58 n166) +(edge n58 n167) +(edge n58 n169) +(edge n58 n176) +(edge n58 n183) +(edge n58 n193) +(edge n59 n62) +(edge n59 n68) +(edge n59 n82) +(edge n59 n84) +(edge n59 n104) +(edge n59 n107) +(edge n59 n116) +(edge n59 n117) +(edge n59 n118) +(edge n59 n121) +(edge n59 n122) +(edge n59 n124) +(edge n59 n129) +(edge n59 n130) +(edge n59 n133) +(edge n59 n139) +(edge n59 n140) +(edge n59 n141) +(edge n59 n151) +(edge n59 n152) +(edge n59 n156) +(edge n59 n158) +(edge n59 n159) +(edge n59 n163) +(edge n59 n170) +(edge n59 n173) +(edge n59 n180) +(edge n59 n186) +(edge n59 n188) +(edge n59 n191) +(edge n59 n192) +(edge n59 n194) +(edge n59 n196) +(edge n60 n61) +(edge n60 n62) +(edge n60 n67) +(edge n60 n70) +(edge n60 n71) +(edge n60 n77) +(edge n60 n83) +(edge n60 n90) +(edge n60 n103) +(edge n60 n109) +(edge n60 n112) +(edge n60 n120) +(edge n60 n128) +(edge n60 n130) +(edge n60 n146) +(edge n60 n157) +(edge n60 n163) +(edge n60 n164) +(edge n60 n168) +(edge n60 n173) +(edge n60 n174) +(edge n60 n179) +(edge n60 n182) +(edge n60 n188) +(edge n60 n198) +(edge n61 n68) +(edge n61 n72) +(edge n61 n86) +(edge n61 n92) +(edge n61 n94) +(edge n61 n98) +(edge n61 n113) +(edge n61 n114) +(edge n61 n131) +(edge n61 n138) +(edge n61 n145) +(edge n61 n147) +(edge n61 n149) +(edge n61 n152) +(edge n61 n153) +(edge n61 n162) +(edge n61 n170) +(edge n61 n176) +(edge n61 n177) +(edge n61 n179) +(edge n61 n193) +(edge n61 n199) +(edge n62 n66) +(edge n62 n70) +(edge n62 n71) +(edge n62 n73) +(edge n62 n82) +(edge n62 n97) +(edge n62 n100) +(edge n62 n113) +(edge n62 n117) +(edge n62 n120) +(edge n62 n128) +(edge n62 n143) +(edge n62 n151) +(edge n62 n153) +(edge n62 n163) +(edge n62 n168) +(edge n62 n172) +(edge n62 n180) +(edge n62 n185) +(edge n62 n195) +(edge n63 n64) +(edge n63 n73) +(edge n63 n78) +(edge n63 n85) +(edge n63 n93) +(edge n63 n94) +(edge n63 n96) +(edge n63 n103) +(edge n63 n105) +(edge n63 n111) +(edge n63 n117) +(edge n63 n118) +(edge n63 n119) +(edge n63 n144) +(edge n63 n161) +(edge n63 n163) +(edge n63 n168) +(edge n63 n170) +(edge n63 n171) +(edge n63 n175) +(edge n63 n179) +(edge n63 n180) +(edge n63 n183) +(edge n63 n184) +(edge n63 n190) +(edge n63 n192) +(edge n63 n193) +(edge n64 n65) +(edge n64 n67) +(edge n64 n77) +(edge n64 n82) +(edge n64 n89) +(edge n64 n101) +(edge n64 n108) +(edge n64 n113) +(edge n64 n121) +(edge n64 n125) +(edge n64 n131) +(edge n64 n137) +(edge n64 n144) +(edge n64 n149) +(edge n64 n150) +(edge n64 n151) +(edge n64 n152) +(edge n64 n155) +(edge n64 n156) +(edge n64 n164) +(edge n64 n177) +(edge n64 n180) +(edge n64 n184) +(edge n64 n185) +(edge n64 n191) +(edge n64 n195) +(edge n65 n75) +(edge n65 n77) +(edge n65 n80) +(edge n65 n87) +(edge n65 n101) +(edge n65 n102) +(edge n65 n105) +(edge n65 n117) +(edge n65 n123) +(edge n65 n124) +(edge n65 n126) +(edge n65 n135) +(edge n65 n137) +(edge n65 n141) +(edge n65 n147) +(edge n65 n150) +(edge n65 n157) +(edge n65 n162) +(edge n65 n163) +(edge n65 n165) +(edge n65 n169) +(edge n65 n172) +(edge n65 n177) +(edge n65 n185) +(edge n65 n188) +(edge n65 n193) +(edge n65 n195) +(edge n66 n67) +(edge n66 n69) +(edge n66 n72) +(edge n66 n79) +(edge n66 n80) +(edge n66 n83) +(edge n66 n86) +(edge n66 n109) +(edge n66 n117) +(edge n66 n126) +(edge n66 n127) +(edge n66 n133) +(edge n66 n134) +(edge n66 n140) +(edge n66 n146) +(edge n66 n147) +(edge n66 n148) +(edge n66 n168) +(edge n66 n170) +(edge n66 n188) +(edge n67 n69) +(edge n67 n74) +(edge n67 n75) +(edge n67 n80) +(edge n67 n82) +(edge n67 n97) +(edge n67 n102) +(edge n67 n103) +(edge n67 n105) +(edge n67 n109) +(edge n67 n115) +(edge n67 n116) +(edge n67 n121) +(edge n67 n125) +(edge n67 n127) +(edge n67 n128) +(edge n67 n133) +(edge n67 n134) +(edge n67 n145) +(edge n67 n148) +(edge n67 n152) +(edge n67 n155) +(edge n67 n157) +(edge n67 n172) +(edge n67 n176) +(edge n67 n181) +(edge n67 n193) +(edge n67 n195) +(edge n67 n197) +(edge n68 n72) +(edge n68 n95) +(edge n68 n112) +(edge n68 n121) +(edge n68 n128) +(edge n68 n142) +(edge n68 n144) +(edge n68 n155) +(edge n68 n157) +(edge n68 n159) +(edge n68 n164) +(edge n68 n165) +(edge n68 n174) +(edge n68 n175) +(edge n68 n189) +(edge n68 n197) +(edge n68 n199) +(edge n69 n71) +(edge n69 n72) +(edge n69 n77) +(edge n69 n81) +(edge n69 n83) +(edge n69 n85) +(edge n69 n89) +(edge n69 n93) +(edge n69 n103) +(edge n69 n120) +(edge n69 n136) +(edge n69 n139) +(edge n69 n144) +(edge n69 n148) +(edge n69 n152) +(edge n69 n158) +(edge n69 n163) +(edge n69 n165) +(edge n69 n173) +(edge n69 n174) +(edge n69 n178) +(edge n69 n187) +(edge n69 n195) +(edge n69 n198) +(edge n70 n74) +(edge n70 n75) +(edge n70 n78) +(edge n70 n79) +(edge n70 n93) +(edge n70 n94) +(edge n70 n104) +(edge n70 n106) +(edge n70 n113) +(edge n70 n115) +(edge n70 n119) +(edge n70 n122) +(edge n70 n123) +(edge n70 n132) +(edge n70 n134) +(edge n70 n137) +(edge n70 n139) +(edge n70 n140) +(edge n70 n142) +(edge n70 n148) +(edge n70 n152) +(edge n70 n170) +(edge n70 n181) +(edge n70 n182) +(edge n70 n187) +(edge n70 n193) +(edge n71 n86) +(edge n71 n89) +(edge n71 n95) +(edge n71 n104) +(edge n71 n105) +(edge n71 n106) +(edge n71 n107) +(edge n71 n108) +(edge n71 n110) +(edge n71 n112) +(edge n71 n113) +(edge n71 n117) +(edge n71 n124) +(edge n71 n132) +(edge n71 n134) +(edge n71 n146) +(edge n71 n155) +(edge n71 n156) +(edge n71 n160) +(edge n71 n175) +(edge n71 n184) +(edge n71 n186) +(edge n71 n193) +(edge n71 n194) +(edge n72 n80) +(edge n72 n82) +(edge n72 n91) +(edge n72 n101) +(edge n72 n102) +(edge n72 n108) +(edge n72 n110) +(edge n72 n115) +(edge n72 n120) +(edge n72 n130) +(edge n72 n134) +(edge n72 n136) +(edge n72 n137) +(edge n72 n141) +(edge n72 n142) +(edge n72 n148) +(edge n72 n151) +(edge n72 n152) +(edge n72 n183) +(edge n72 n185) +(edge n72 n198) +(edge n73 n77) +(edge n73 n81) +(edge n73 n82) +(edge n73 n86) +(edge n73 n87) +(edge n73 n97) +(edge n73 n100) +(edge n73 n122) +(edge n73 n129) +(edge n73 n130) +(edge n73 n135) +(edge n73 n136) +(edge n73 n144) +(edge n73 n148) +(edge n73 n151) +(edge n73 n168) +(edge n73 n176) +(edge n73 n179) +(edge n73 n180) +(edge n73 n182) +(edge n73 n189) +(edge n73 n193) +(edge n73 n196) +(edge n73 n198) +(edge n74 n79) +(edge n74 n80) +(edge n74 n82) +(edge n74 n91) +(edge n74 n93) +(edge n74 n98) +(edge n74 n99) +(edge n74 n101) +(edge n74 n103) +(edge n74 n118) +(edge n74 n124) +(edge n74 n125) +(edge n74 n126) +(edge n74 n136) +(edge n74 n153) +(edge n74 n157) +(edge n74 n170) +(edge n74 n172) +(edge n74 n174) +(edge n74 n175) +(edge n74 n176) +(edge n74 n180) +(edge n74 n187) +(edge n74 n191) +(edge n74 n194) +(edge n75 n86) +(edge n75 n91) +(edge n75 n93) +(edge n75 n101) +(edge n75 n111) +(edge n75 n113) +(edge n75 n114) +(edge n75 n116) +(edge n75 n125) +(edge n75 n136) +(edge n75 n137) +(edge n75 n142) +(edge n75 n147) +(edge n75 n163) +(edge n75 n164) +(edge n75 n176) +(edge n75 n177) +(edge n75 n193) +(edge n76 n80) +(edge n76 n82) +(edge n76 n89) +(edge n76 n90) +(edge n76 n102) +(edge n76 n108) +(edge n76 n120) +(edge n76 n127) +(edge n76 n131) +(edge n76 n138) +(edge n76 n142) +(edge n76 n147) +(edge n76 n151) +(edge n76 n157) +(edge n76 n165) +(edge n76 n168) +(edge n76 n169) +(edge n76 n177) +(edge n76 n182) +(edge n76 n189) +(edge n76 n191) +(edge n76 n194) +(edge n76 n195) +(edge n76 n197) +(edge n76 n198) +(edge n76 n199) +(edge n77 n83) +(edge n77 n85) +(edge n77 n86) +(edge n77 n89) +(edge n77 n96) +(edge n77 n109) +(edge n77 n123) +(edge n77 n126) +(edge n77 n129) +(edge n77 n132) +(edge n77 n134) +(edge n77 n135) +(edge n77 n140) +(edge n77 n144) +(edge n77 n145) +(edge n77 n156) +(edge n77 n174) +(edge n77 n177) +(edge n77 n179) +(edge n77 n180) +(edge n77 n191) +(edge n77 n194) +(edge n77 n198) +(edge n78 n101) +(edge n78 n103) +(edge n78 n110) +(edge n78 n111) +(edge n78 n119) +(edge n78 n127) +(edge n78 n143) +(edge n78 n149) +(edge n78 n156) +(edge n78 n160) +(edge n78 n167) +(edge n78 n175) +(edge n78 n179) +(edge n78 n185) +(edge n78 n187) +(edge n78 n188) +(edge n78 n198) +(edge n78 n199) +(edge n79 n84) +(edge n79 n97) +(edge n79 n104) +(edge n79 n111) +(edge n79 n123) +(edge n79 n126) +(edge n79 n138) +(edge n79 n141) +(edge n79 n143) +(edge n79 n144) +(edge n79 n169) +(edge n79 n170) +(edge n79 n184) +(edge n79 n186) +(edge n79 n187) +(edge n79 n188) +(edge n79 n192) +(edge n79 n194) +(edge n80 n87) +(edge n80 n101) +(edge n80 n109) +(edge n80 n112) +(edge n80 n117) +(edge n80 n118) +(edge n80 n120) +(edge n80 n131) +(edge n80 n132) +(edge n80 n148) +(edge n80 n160) +(edge n80 n165) +(edge n80 n173) +(edge n80 n178) +(edge n80 n192) +(edge n80 n199) +(edge n81 n83) +(edge n81 n89) +(edge n81 n91) +(edge n81 n93) +(edge n81 n97) +(edge n81 n114) +(edge n81 n117) +(edge n81 n119) +(edge n81 n121) +(edge n81 n126) +(edge n81 n129) +(edge n81 n136) +(edge n81 n139) +(edge n81 n140) +(edge n81 n142) +(edge n81 n146) +(edge n81 n151) +(edge n81 n162) +(edge n81 n177) +(edge n81 n178) +(edge n81 n181) +(edge n81 n182) +(edge n81 n186) +(edge n81 n189) +(edge n82 n85) +(edge n82 n88) +(edge n82 n96) +(edge n82 n98) +(edge n82 n103) +(edge n82 n104) +(edge n82 n105) +(edge n82 n118) +(edge n82 n126) +(edge n82 n129) +(edge n82 n133) +(edge n82 n141) +(edge n82 n152) +(edge n82 n153) +(edge n82 n156) +(edge n82 n160) +(edge n82 n162) +(edge n82 n165) +(edge n82 n182) +(edge n82 n193) +(edge n82 n198) +(edge n83 n85) +(edge n83 n89) +(edge n83 n101) +(edge n83 n109) +(edge n83 n111) +(edge n83 n114) +(edge n83 n119) +(edge n83 n158) +(edge n83 n169) +(edge n83 n172) +(edge n83 n173) +(edge n83 n179) +(edge n83 n199) +(edge n84 n91) +(edge n84 n92) +(edge n84 n106) +(edge n84 n112) +(edge n84 n118) +(edge n84 n132) +(edge n84 n140) +(edge n84 n142) +(edge n84 n147) +(edge n84 n149) +(edge n84 n157) +(edge n84 n175) +(edge n84 n176) +(edge n84 n177) +(edge n84 n182) +(edge n84 n184) +(edge n84 n187) +(edge n84 n195) +(edge n84 n198) +(edge n85 n86) +(edge n85 n87) +(edge n85 n89) +(edge n85 n101) +(edge n85 n104) +(edge n85 n114) +(edge n85 n116) +(edge n85 n117) +(edge n85 n131) +(edge n85 n134) +(edge n85 n135) +(edge n85 n136) +(edge n85 n141) +(edge n85 n143) +(edge n85 n149) +(edge n85 n151) +(edge n85 n152) +(edge n85 n158) +(edge n85 n160) +(edge n85 n163) +(edge n85 n168) +(edge n85 n170) +(edge n85 n178) +(edge n85 n182) +(edge n85 n187) +(edge n85 n191) +(edge n85 n197) +(edge n85 n199) +(edge n86 n87) +(edge n86 n92) +(edge n86 n99) +(edge n86 n100) +(edge n86 n102) +(edge n86 n109) +(edge n86 n115) +(edge n86 n117) +(edge n86 n118) +(edge n86 n122) +(edge n86 n125) +(edge n86 n129) +(edge n86 n139) +(edge n86 n141) +(edge n86 n157) +(edge n86 n159) +(edge n86 n162) +(edge n86 n166) +(edge n86 n176) +(edge n87 n90) +(edge n87 n106) +(edge n87 n110) +(edge n87 n111) +(edge n87 n119) +(edge n87 n125) +(edge n87 n127) +(edge n87 n131) +(edge n87 n133) +(edge n87 n144) +(edge n87 n145) +(edge n87 n147) +(edge n87 n149) +(edge n87 n152) +(edge n87 n162) +(edge n87 n165) +(edge n87 n172) +(edge n87 n175) +(edge n87 n178) +(edge n87 n183) +(edge n87 n184) +(edge n87 n187) +(edge n87 n192) +(edge n88 n97) +(edge n88 n98) +(edge n88 n99) +(edge n88 n108) +(edge n88 n114) +(edge n88 n128) +(edge n88 n129) +(edge n88 n135) +(edge n88 n139) +(edge n88 n146) +(edge n88 n155) +(edge n88 n164) +(edge n88 n167) +(edge n88 n170) +(edge n88 n174) +(edge n88 n176) +(edge n88 n177) +(edge n88 n191) +(edge n88 n197) +(edge n89 n90) +(edge n89 n104) +(edge n89 n105) +(edge n89 n106) +(edge n89 n116) +(edge n89 n127) +(edge n89 n128) +(edge n89 n134) +(edge n89 n142) +(edge n89 n144) +(edge n89 n162) +(edge n89 n163) +(edge n89 n164) +(edge n89 n169) +(edge n89 n171) +(edge n89 n172) +(edge n89 n188) +(edge n90 n92) +(edge n90 n96) +(edge n90 n108) +(edge n90 n112) +(edge n90 n133) +(edge n90 n134) +(edge n90 n141) +(edge n90 n143) +(edge n90 n147) +(edge n90 n156) +(edge n90 n162) +(edge n90 n167) +(edge n90 n170) +(edge n90 n172) +(edge n90 n174) +(edge n90 n179) +(edge n90 n180) +(edge n90 n182) +(edge n90 n192) +(edge n90 n195) +(edge n91 n92) +(edge n91 n109) +(edge n91 n112) +(edge n91 n117) +(edge n91 n118) +(edge n91 n121) +(edge n91 n122) +(edge n91 n123) +(edge n91 n124) +(edge n91 n125) +(edge n91 n127) +(edge n91 n154) +(edge n91 n170) +(edge n91 n176) +(edge n91 n188) +(edge n91 n193) +(edge n91 n195) +(edge n91 n199) +(edge n92 n93) +(edge n92 n107) +(edge n92 n115) +(edge n92 n125) +(edge n92 n131) +(edge n92 n138) +(edge n92 n140) +(edge n92 n142) +(edge n92 n148) +(edge n92 n155) +(edge n92 n156) +(edge n92 n157) +(edge n92 n172) +(edge n92 n178) +(edge n92 n182) +(edge n92 n190) +(edge n93 n96) +(edge n93 n97) +(edge n93 n106) +(edge n93 n107) +(edge n93 n115) +(edge n93 n119) +(edge n93 n128) +(edge n93 n129) +(edge n93 n132) +(edge n93 n133) +(edge n93 n135) +(edge n93 n142) +(edge n93 n144) +(edge n93 n145) +(edge n93 n147) +(edge n93 n148) +(edge n93 n150) +(edge n93 n151) +(edge n93 n162) +(edge n93 n166) +(edge n93 n174) +(edge n93 n176) +(edge n93 n185) +(edge n93 n193) +(edge n94 n102) +(edge n94 n103) +(edge n94 n106) +(edge n94 n119) +(edge n94 n131) +(edge n94 n132) +(edge n94 n135) +(edge n94 n136) +(edge n94 n151) +(edge n94 n154) +(edge n94 n162) +(edge n94 n167) +(edge n94 n174) +(edge n94 n176) +(edge n94 n177) +(edge n94 n189) +(edge n94 n191) +(edge n94 n192) +(edge n95 n96) +(edge n95 n103) +(edge n95 n109) +(edge n95 n110) +(edge n95 n111) +(edge n95 n113) +(edge n95 n117) +(edge n95 n123) +(edge n95 n125) +(edge n95 n135) +(edge n95 n137) +(edge n95 n138) +(edge n95 n146) +(edge n95 n155) +(edge n95 n165) +(edge n95 n167) +(edge n95 n173) +(edge n95 n189) +(edge n95 n190) +(edge n95 n198) +(edge n96 n100) +(edge n96 n102) +(edge n96 n107) +(edge n96 n118) +(edge n96 n129) +(edge n96 n142) +(edge n96 n143) +(edge n96 n164) +(edge n96 n179) +(edge n96 n180) +(edge n96 n194) +(edge n96 n199) +(edge n97 n105) +(edge n97 n107) +(edge n97 n110) +(edge n97 n112) +(edge n97 n118) +(edge n97 n126) +(edge n97 n158) +(edge n97 n159) +(edge n97 n166) +(edge n97 n175) +(edge n97 n187) +(edge n97 n189) +(edge n97 n192) +(edge n98 n104) +(edge n98 n112) +(edge n98 n120) +(edge n98 n121) +(edge n98 n124) +(edge n98 n150) +(edge n98 n151) +(edge n98 n152) +(edge n98 n153) +(edge n98 n154) +(edge n98 n157) +(edge n98 n158) +(edge n98 n163) +(edge n98 n175) +(edge n98 n176) +(edge n98 n188) +(edge n98 n192) +(edge n98 n194) +(edge n99 n106) +(edge n99 n107) +(edge n99 n110) +(edge n99 n111) +(edge n99 n112) +(edge n99 n128) +(edge n99 n129) +(edge n99 n137) +(edge n99 n140) +(edge n99 n141) +(edge n99 n142) +(edge n99 n148) +(edge n99 n150) +(edge n99 n153) +(edge n99 n155) +(edge n99 n160) +(edge n99 n179) +(edge n100 n101) +(edge n100 n108) +(edge n100 n111) +(edge n100 n115) +(edge n100 n117) +(edge n100 n120) +(edge n100 n123) +(edge n100 n124) +(edge n100 n127) +(edge n100 n132) +(edge n100 n134) +(edge n100 n140) +(edge n100 n150) +(edge n100 n151) +(edge n100 n152) +(edge n100 n155) +(edge n100 n167) +(edge n100 n171) +(edge n100 n181) +(edge n100 n183) +(edge n100 n185) +(edge n100 n186) +(edge n100 n189) +(edge n100 n192) +(edge n100 n198) +(edge n101 n121) +(edge n101 n123) +(edge n101 n129) +(edge n101 n147) +(edge n101 n148) +(edge n101 n157) +(edge n101 n159) +(edge n101 n162) +(edge n101 n175) +(edge n101 n179) +(edge n101 n183) +(edge n101 n191) +(edge n101 n192) +(edge n102 n105) +(edge n102 n106) +(edge n102 n109) +(edge n102 n112) +(edge n102 n115) +(edge n102 n120) +(edge n102 n126) +(edge n102 n129) +(edge n102 n130) +(edge n102 n132) +(edge n102 n142) +(edge n102 n151) +(edge n102 n153) +(edge n102 n156) +(edge n102 n159) +(edge n102 n164) +(edge n102 n170) +(edge n102 n174) +(edge n102 n175) +(edge n102 n177) +(edge n102 n178) +(edge n102 n183) +(edge n102 n184) +(edge n102 n185) +(edge n102 n187) +(edge n102 n194) +(edge n103 n105) +(edge n103 n110) +(edge n103 n116) +(edge n103 n122) +(edge n103 n126) +(edge n103 n134) +(edge n103 n139) +(edge n103 n150) +(edge n103 n159) +(edge n103 n163) +(edge n103 n167) +(edge n103 n179) +(edge n103 n184) +(edge n103 n185) +(edge n103 n187) +(edge n104 n109) +(edge n104 n112) +(edge n104 n126) +(edge n104 n129) +(edge n104 n130) +(edge n104 n132) +(edge n104 n133) +(edge n104 n142) +(edge n104 n156) +(edge n104 n169) +(edge n104 n171) +(edge n104 n184) +(edge n104 n185) +(edge n104 n186) +(edge n104 n194) +(edge n104 n197) +(edge n105 n106) +(edge n105 n108) +(edge n105 n109) +(edge n105 n112) +(edge n105 n116) +(edge n105 n117) +(edge n105 n124) +(edge n105 n127) +(edge n105 n134) +(edge n105 n141) +(edge n105 n147) +(edge n105 n154) +(edge n105 n156) +(edge n105 n157) +(edge n105 n158) +(edge n105 n160) +(edge n105 n163) +(edge n105 n169) +(edge n105 n180) +(edge n105 n195) +(edge n105 n199) +(edge n106 n116) +(edge n106 n122) +(edge n106 n123) +(edge n106 n126) +(edge n106 n127) +(edge n106 n135) +(edge n106 n136) +(edge n106 n138) +(edge n106 n144) +(edge n106 n157) +(edge n106 n158) +(edge n106 n167) +(edge n106 n171) +(edge n106 n173) +(edge n106 n186) +(edge n106 n188) +(edge n106 n190) +(edge n106 n191) +(edge n106 n197) +(edge n107 n108) +(edge n107 n119) +(edge n107 n120) +(edge n107 n125) +(edge n107 n135) +(edge n107 n140) +(edge n107 n141) +(edge n107 n144) +(edge n107 n145) +(edge n107 n156) +(edge n107 n161) +(edge n107 n167) +(edge n107 n176) +(edge n107 n179) +(edge n107 n181) +(edge n107 n190) +(edge n107 n191) +(edge n107 n195) +(edge n107 n196) +(edge n108 n118) +(edge n108 n134) +(edge n108 n135) +(edge n108 n142) +(edge n108 n147) +(edge n108 n159) +(edge n108 n162) +(edge n108 n167) +(edge n108 n180) +(edge n108 n181) +(edge n108 n188) +(edge n108 n191) +(edge n108 n194) +(edge n108 n195) +(edge n108 n198) +(edge n109 n118) +(edge n109 n119) +(edge n109 n121) +(edge n109 n127) +(edge n109 n131) +(edge n109 n138) +(edge n109 n146) +(edge n109 n148) +(edge n109 n149) +(edge n109 n153) +(edge n109 n157) +(edge n109 n162) +(edge n109 n163) +(edge n109 n164) +(edge n109 n178) +(edge n109 n182) +(edge n109 n183) +(edge n109 n188) +(edge n109 n190) +(edge n110 n113) +(edge n110 n117) +(edge n110 n121) +(edge n110 n122) +(edge n110 n126) +(edge n110 n129) +(edge n110 n130) +(edge n110 n137) +(edge n110 n140) +(edge n110 n145) +(edge n110 n156) +(edge n110 n160) +(edge n110 n163) +(edge n110 n166) +(edge n110 n171) +(edge n110 n172) +(edge n110 n174) +(edge n111 n112) +(edge n111 n115) +(edge n111 n123) +(edge n111 n125) +(edge n111 n128) +(edge n111 n139) +(edge n111 n140) +(edge n111 n141) +(edge n111 n142) +(edge n111 n143) +(edge n111 n159) +(edge n111 n166) +(edge n111 n175) +(edge n111 n179) +(edge n111 n185) +(edge n111 n187) +(edge n111 n199) +(edge n112 n116) +(edge n112 n140) +(edge n112 n145) +(edge n112 n169) +(edge n112 n184) +(edge n112 n197) +(edge n113 n125) +(edge n113 n128) +(edge n113 n131) +(edge n113 n133) +(edge n113 n135) +(edge n113 n137) +(edge n113 n142) +(edge n113 n144) +(edge n113 n156) +(edge n113 n173) +(edge n113 n175) +(edge n113 n178) +(edge n113 n179) +(edge n113 n186) +(edge n113 n193) +(edge n113 n194) +(edge n113 n196) +(edge n114 n116) +(edge n114 n120) +(edge n114 n125) +(edge n114 n131) +(edge n114 n132) +(edge n114 n141) +(edge n114 n151) +(edge n114 n153) +(edge n114 n174) +(edge n114 n176) +(edge n114 n179) +(edge n114 n187) +(edge n114 n188) +(edge n114 n193) +(edge n115 n118) +(edge n115 n127) +(edge n115 n143) +(edge n115 n144) +(edge n115 n145) +(edge n115 n146) +(edge n115 n151) +(edge n115 n157) +(edge n115 n158) +(edge n115 n163) +(edge n115 n168) +(edge n115 n179) +(edge n115 n184) +(edge n115 n186) +(edge n115 n194) +(edge n116 n124) +(edge n116 n131) +(edge n116 n133) +(edge n116 n136) +(edge n116 n142) +(edge n116 n145) +(edge n116 n146) +(edge n116 n147) +(edge n116 n149) +(edge n116 n152) +(edge n116 n154) +(edge n116 n156) +(edge n116 n157) +(edge n116 n162) +(edge n116 n164) +(edge n116 n172) +(edge n116 n173) +(edge n116 n174) +(edge n116 n181) +(edge n116 n189) +(edge n117 n132) +(edge n117 n134) +(edge n117 n141) +(edge n117 n143) +(edge n117 n144) +(edge n117 n148) +(edge n117 n167) +(edge n117 n168) +(edge n117 n169) +(edge n117 n172) +(edge n117 n181) +(edge n117 n185) +(edge n117 n190) +(edge n117 n199) +(edge n118 n123) +(edge n118 n126) +(edge n118 n132) +(edge n118 n133) +(edge n118 n134) +(edge n118 n141) +(edge n118 n147) +(edge n118 n157) +(edge n118 n161) +(edge n118 n167) +(edge n118 n168) +(edge n118 n176) +(edge n118 n180) +(edge n118 n188) +(edge n118 n197) +(edge n119 n121) +(edge n119 n122) +(edge n119 n127) +(edge n119 n133) +(edge n119 n138) +(edge n119 n142) +(edge n119 n146) +(edge n119 n164) +(edge n119 n166) +(edge n119 n173) +(edge n119 n177) +(edge n119 n182) +(edge n119 n190) +(edge n119 n191) +(edge n119 n194) +(edge n119 n195) +(edge n120 n123) +(edge n120 n134) +(edge n120 n135) +(edge n120 n138) +(edge n120 n146) +(edge n120 n152) +(edge n120 n153) +(edge n120 n163) +(edge n120 n183) +(edge n120 n196) +(edge n120 n198) +(edge n121 n126) +(edge n121 n128) +(edge n121 n129) +(edge n121 n131) +(edge n121 n134) +(edge n121 n137) +(edge n121 n138) +(edge n121 n141) +(edge n121 n143) +(edge n121 n147) +(edge n121 n152) +(edge n121 n155) +(edge n121 n156) +(edge n121 n165) +(edge n121 n167) +(edge n121 n169) +(edge n121 n171) +(edge n121 n184) +(edge n121 n190) +(edge n122 n126) +(edge n122 n135) +(edge n122 n140) +(edge n122 n152) +(edge n122 n156) +(edge n122 n159) +(edge n122 n161) +(edge n122 n180) +(edge n122 n184) +(edge n122 n189) +(edge n122 n196) +(edge n123 n134) +(edge n123 n136) +(edge n123 n139) +(edge n123 n161) +(edge n123 n173) +(edge n123 n176) +(edge n123 n179) +(edge n123 n182) +(edge n123 n186) +(edge n124 n129) +(edge n124 n131) +(edge n124 n136) +(edge n124 n138) +(edge n124 n140) +(edge n124 n142) +(edge n124 n144) +(edge n124 n145) +(edge n124 n156) +(edge n124 n157) +(edge n124 n162) +(edge n124 n171) +(edge n124 n172) +(edge n124 n176) +(edge n124 n181) +(edge n124 n185) +(edge n124 n191) +(edge n124 n193) +(edge n124 n194) +(edge n125 n141) +(edge n125 n143) +(edge n125 n150) +(edge n125 n152) +(edge n125 n156) +(edge n125 n158) +(edge n125 n169) +(edge n125 n174) +(edge n125 n180) +(edge n125 n181) +(edge n125 n185) +(edge n125 n188) +(edge n125 n189) +(edge n125 n196) +(edge n126 n127) +(edge n126 n129) +(edge n126 n130) +(edge n126 n132) +(edge n126 n135) +(edge n126 n140) +(edge n126 n152) +(edge n126 n160) +(edge n126 n163) +(edge n126 n166) +(edge n126 n169) +(edge n126 n173) +(edge n126 n174) +(edge n126 n175) +(edge n126 n184) +(edge n126 n185) +(edge n126 n191) +(edge n126 n194) +(edge n126 n195) +(edge n126 n199) +(edge n127 n128) +(edge n127 n153) +(edge n127 n168) +(edge n127 n179) +(edge n127 n180) +(edge n127 n186) +(edge n127 n187) +(edge n127 n193) +(edge n128 n138) +(edge n128 n147) +(edge n128 n158) +(edge n128 n161) +(edge n128 n170) +(edge n128 n176) +(edge n128 n182) +(edge n128 n184) +(edge n128 n185) +(edge n128 n192) +(edge n128 n193) +(edge n128 n195) +(edge n129 n136) +(edge n129 n138) +(edge n129 n141) +(edge n129 n143) +(edge n129 n155) +(edge n129 n158) +(edge n129 n159) +(edge n129 n160) +(edge n129 n165) +(edge n129 n187) +(edge n129 n193) +(edge n130 n137) +(edge n130 n148) +(edge n130 n149) +(edge n130 n164) +(edge n130 n165) +(edge n130 n166) +(edge n130 n167) +(edge n130 n168) +(edge n130 n169) +(edge n130 n175) +(edge n130 n177) +(edge n130 n183) +(edge n130 n187) +(edge n131 n136) +(edge n131 n140) +(edge n131 n143) +(edge n131 n144) +(edge n131 n145) +(edge n131 n146) +(edge n131 n152) +(edge n131 n159) +(edge n131 n160) +(edge n131 n183) +(edge n131 n185) +(edge n131 n191) +(edge n131 n192) +(edge n131 n197) +(edge n132 n136) +(edge n132 n139) +(edge n132 n144) +(edge n132 n149) +(edge n132 n155) +(edge n132 n160) +(edge n132 n161) +(edge n132 n163) +(edge n132 n166) +(edge n132 n167) +(edge n132 n174) +(edge n132 n178) +(edge n132 n185) +(edge n132 n195) +(edge n133 n139) +(edge n133 n143) +(edge n133 n146) +(edge n133 n147) +(edge n133 n166) +(edge n133 n171) +(edge n133 n174) +(edge n133 n194) +(edge n133 n196) +(edge n134 n144) +(edge n134 n146) +(edge n134 n148) +(edge n134 n153) +(edge n134 n165) +(edge n134 n167) +(edge n134 n170) +(edge n134 n181) +(edge n134 n182) +(edge n134 n183) +(edge n134 n189) +(edge n134 n190) +(edge n134 n191) +(edge n134 n193) +(edge n134 n195) +(edge n135 n141) +(edge n135 n148) +(edge n135 n152) +(edge n135 n158) +(edge n135 n159) +(edge n135 n178) +(edge n135 n180) +(edge n135 n181) +(edge n135 n185) +(edge n135 n194) +(edge n135 n195) +(edge n135 n198) +(edge n136 n140) +(edge n136 n144) +(edge n136 n159) +(edge n136 n160) +(edge n136 n163) +(edge n136 n167) +(edge n136 n171) +(edge n136 n177) +(edge n136 n181) +(edge n136 n183) +(edge n136 n184) +(edge n136 n188) +(edge n136 n190) +(edge n136 n191) +(edge n136 n195) +(edge n136 n196) +(edge n136 n197) +(edge n137 n139) +(edge n137 n141) +(edge n137 n145) +(edge n137 n146) +(edge n137 n149) +(edge n137 n161) +(edge n137 n164) +(edge n137 n177) +(edge n137 n180) +(edge n137 n182) +(edge n137 n183) +(edge n137 n186) +(edge n137 n187) +(edge n137 n195) +(edge n138 n142) +(edge n138 n148) +(edge n138 n153) +(edge n138 n161) +(edge n138 n167) +(edge n138 n175) +(edge n138 n176) +(edge n138 n179) +(edge n138 n180) +(edge n138 n187) +(edge n138 n193) +(edge n138 n197) +(edge n138 n198) +(edge n139 n151) +(edge n139 n162) +(edge n139 n178) +(edge n139 n180) +(edge n139 n187) +(edge n139 n188) +(edge n139 n189) +(edge n139 n192) +(edge n139 n195) +(edge n139 n199) +(edge n140 n141) +(edge n140 n162) +(edge n140 n173) +(edge n140 n176) +(edge n140 n181) +(edge n140 n187) +(edge n141 n156) +(edge n141 n157) +(edge n141 n164) +(edge n141 n165) +(edge n141 n180) +(edge n141 n187) +(edge n141 n190) +(edge n141 n192) +(edge n141 n194) +(edge n141 n199) +(edge n142 n144) +(edge n142 n153) +(edge n142 n155) +(edge n142 n167) +(edge n142 n172) +(edge n142 n179) +(edge n142 n184) +(edge n142 n185) +(edge n142 n189) +(edge n142 n196) +(edge n142 n197) +(edge n143 n148) +(edge n143 n156) +(edge n143 n161) +(edge n143 n180) +(edge n143 n183) +(edge n143 n189) +(edge n144 n145) +(edge n144 n159) +(edge n144 n175) +(edge n144 n182) +(edge n144 n188) +(edge n144 n193) +(edge n144 n194) +(edge n145 n150) +(edge n145 n153) +(edge n145 n155) +(edge n145 n161) +(edge n145 n162) +(edge n145 n163) +(edge n145 n166) +(edge n145 n168) +(edge n145 n171) +(edge n145 n173) +(edge n145 n180) +(edge n145 n182) +(edge n145 n185) +(edge n145 n190) +(edge n145 n197) +(edge n146 n153) +(edge n146 n154) +(edge n146 n158) +(edge n146 n161) +(edge n146 n162) +(edge n146 n171) +(edge n146 n172) +(edge n146 n185) +(edge n146 n186) +(edge n146 n187) +(edge n146 n198) +(edge n147 n153) +(edge n147 n163) +(edge n147 n164) +(edge n147 n167) +(edge n147 n170) +(edge n147 n172) +(edge n147 n175) +(edge n147 n181) +(edge n147 n190) +(edge n148 n151) +(edge n148 n154) +(edge n148 n161) +(edge n148 n166) +(edge n148 n170) +(edge n148 n176) +(edge n148 n179) +(edge n148 n185) +(edge n148 n188) +(edge n148 n191) +(edge n148 n192) +(edge n148 n198) +(edge n149 n155) +(edge n149 n172) +(edge n149 n174) +(edge n149 n178) +(edge n149 n187) +(edge n149 n188) +(edge n149 n196) +(edge n150 n152) +(edge n150 n157) +(edge n150 n158) +(edge n150 n170) +(edge n150 n172) +(edge n150 n183) +(edge n151 n152) +(edge n151 n153) +(edge n151 n160) +(edge n151 n163) +(edge n151 n174) +(edge n151 n184) +(edge n151 n189) +(edge n152 n155) +(edge n152 n160) +(edge n152 n161) +(edge n152 n166) +(edge n152 n170) +(edge n152 n176) +(edge n152 n185) +(edge n152 n192) +(edge n152 n193) +(edge n152 n195) +(edge n153 n155) +(edge n153 n157) +(edge n153 n161) +(edge n153 n162) +(edge n153 n165) +(edge n153 n170) +(edge n153 n171) +(edge n153 n183) +(edge n153 n189) +(edge n153 n197) +(edge n154 n163) +(edge n154 n165) +(edge n154 n185) +(edge n154 n192) +(edge n154 n193) +(edge n154 n195) +(edge n154 n197) +(edge n155 n162) +(edge n155 n165) +(edge n155 n166) +(edge n155 n171) +(edge n155 n172) +(edge n155 n185) +(edge n155 n193) +(edge n155 n199) +(edge n156 n157) +(edge n156 n159) +(edge n156 n173) +(edge n156 n184) +(edge n156 n188) +(edge n156 n190) +(edge n156 n194) +(edge n156 n195) +(edge n156 n197) +(edge n157 n160) +(edge n157 n167) +(edge n157 n172) +(edge n157 n174) +(edge n157 n175) +(edge n157 n179) +(edge n157 n185) +(edge n157 n189) +(edge n157 n190) +(edge n157 n194) +(edge n157 n199) +(edge n158 n164) +(edge n158 n165) +(edge n158 n168) +(edge n158 n174) +(edge n158 n180) +(edge n158 n181) +(edge n158 n182) +(edge n158 n183) +(edge n159 n161) +(edge n159 n163) +(edge n159 n165) +(edge n159 n172) +(edge n159 n177) +(edge n159 n181) +(edge n159 n186) +(edge n159 n187) +(edge n160 n168) +(edge n160 n171) +(edge n160 n184) +(edge n160 n192) +(edge n160 n197) +(edge n161 n177) +(edge n161 n183) +(edge n161 n196) +(edge n162 n163) +(edge n162 n164) +(edge n162 n168) +(edge n162 n175) +(edge n162 n177) +(edge n162 n181) +(edge n162 n183) +(edge n162 n188) +(edge n162 n189) +(edge n162 n192) +(edge n162 n195) +(edge n162 n196) +(edge n163 n164) +(edge n163 n172) +(edge n163 n174) +(edge n163 n179) +(edge n163 n185) +(edge n163 n199) +(edge n164 n173) +(edge n164 n185) +(edge n164 n194) +(edge n164 n198) +(edge n165 n170) +(edge n165 n180) +(edge n165 n190) +(edge n165 n195) +(edge n165 n196) +(edge n165 n199) +(edge n166 n168) +(edge n166 n175) +(edge n166 n184) +(edge n166 n196) +(edge n167 n172) +(edge n167 n189) +(edge n167 n192) +(edge n167 n193) +(edge n168 n177) +(edge n168 n182) +(edge n168 n195) +(edge n169 n170) +(edge n169 n171) +(edge n169 n178) +(edge n169 n179) +(edge n169 n182) +(edge n169 n190) +(edge n169 n191) +(edge n169 n192) +(edge n169 n199) +(edge n170 n171) +(edge n170 n173) +(edge n170 n174) +(edge n170 n176) +(edge n170 n177) +(edge n170 n181) +(edge n170 n184) +(edge n171 n181) +(edge n171 n189) +(edge n171 n196) +(edge n171 n197) +(edge n172 n181) +(edge n172 n194) +(edge n173 n178) +(edge n173 n191) +(edge n173 n195) +(edge n173 n197) +(edge n174 n175) +(edge n174 n181) +(edge n175 n182) +(edge n175 n189) +(edge n175 n191) +(edge n175 n193) +(edge n175 n194) +(edge n175 n199) +(edge n176 n177) +(edge n176 n186) +(edge n176 n193) +(edge n177 n180) +(edge n177 n181) +(edge n177 n186) +(edge n178 n186) +(edge n178 n189) +(edge n178 n198) +(edge n179 n181) +(edge n179 n184) +(edge n179 n187) +(edge n179 n198) +(edge n179 n199) +(edge n180 n192) +(edge n180 n194) +(edge n181 n184) +(edge n181 n187) +(edge n181 n190) +(edge n181 n191) +(edge n181 n198) +(edge n182 n193) +(edge n182 n199) +(edge n183 n189) +(edge n183 n193) +(edge n183 n194) +(edge n183 n195) +(edge n184 n190) +(edge n184 n197) +(edge n184 n198) +(edge n185 n196) +(edge n186 n189) +(edge n186 n191) +(edge n186 n192) +(edge n186 n193) +(edge n186 n195) +(edge n186 n196) +(edge n187 n190) +(edge n187 n194) +(edge n188 n189) +(edge n188 n195) +(edge n188 n199) +(edge n189 n192) +(edge n190 n191) +(edge n190 n193) +(edge n190 n199) +(edge n192 n198) +(edge n194 n198) +(edge n195 n196) +(edge n196 n199) + +(exec (1 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2))) +(exec (1 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3)) + (, (c4 $x0 $x1 $x2 $x3))) diff --git a/examples/transforms/craft_naive.mm2 b/examples/transforms/craft_naive.mm2 new file mode 100644 index 00000000..cce81a42 --- /dev/null +++ b/examples/transforms/craft_naive.mm2 @@ -0,0 +1,11806 @@ +(recipe r0 (numIngredients 2)) +(recipe r0 (result (id item0))) +(recipe r0 (pattern 0 sx0)) +(recipe r0 (pattern 1 sy0)) +(recipe r0 (key (sx0 ing0))) +(recipe r0 (key (sy0 ing0))) +(recipe r0 (key (sx0 ing1))) +(recipe r0 (key (sy0 ing1))) +(recipe r0 (key (sx0 ing2))) +(recipe r0 (key (sy0 ing2))) +(recipe r0 (key (sx0 ing3))) +(recipe r0 (key (sy0 ing3))) +(recipe r0 (key (sx0 ing4))) +(recipe r0 (key (sy0 ing4))) +(recipe r0 (key (sx0 ing5))) +(recipe r0 (key (sy0 ing5))) +(recipe r0 (key (sx0 ing6))) +(recipe r0 (key (sy0 ing6))) +(recipe r0 (key (sx0 ing7))) +(recipe r0 (key (sy0 ing7))) +(recipe r0 (key (sx0 ing8))) +(recipe r0 (key (sy0 ing8))) +(recipe r0 (key (sx0 ing9))) +(recipe r0 (key (sy0 ing9))) +(recipe r0 (key (sx0 ing10))) +(recipe r0 (key (sy0 ing10))) +(recipe r0 (key (sx0 ing11))) +(recipe r0 (key (sy0 ing11))) +(recipe r1 (numIngredients 2)) +(recipe r1 (result (id item1))) +(recipe r1 (pattern 0 sx1)) +(recipe r1 (pattern 1 sy1)) +(recipe r1 (key (sx1 ing3))) +(recipe r1 (key (sy1 ing5))) +(recipe r1 (key (sx1 ing4))) +(recipe r1 (key (sy1 ing6))) +(recipe r1 (key (sx1 ing5))) +(recipe r1 (key (sy1 ing7))) +(recipe r1 (key (sx1 ing6))) +(recipe r1 (key (sy1 ing8))) +(recipe r1 (key (sx1 ing7))) +(recipe r1 (key (sy1 ing9))) +(recipe r1 (key (sx1 ing8))) +(recipe r1 (key (sy1 ing10))) +(recipe r1 (key (sx1 ing9))) +(recipe r1 (key (sy1 ing11))) +(recipe r1 (key (sx1 ing10))) +(recipe r1 (key (sy1 ing12))) +(recipe r1 (key (sx1 ing11))) +(recipe r1 (key (sy1 ing13))) +(recipe r1 (key (sx1 ing12))) +(recipe r1 (key (sy1 ing14))) +(recipe r1 (key (sx1 ing13))) +(recipe r1 (key (sy1 ing15))) +(recipe r1 (key (sx1 ing14))) +(recipe r1 (key (sy1 ing16))) +(recipe r2 (numIngredients 2)) +(recipe r2 (result (id item2))) +(recipe r2 (pattern 0 sx2)) +(recipe r2 (pattern 1 sy2)) +(recipe r2 (key (sx2 ing6))) +(recipe r2 (key (sy2 ing10))) +(recipe r2 (key (sx2 ing7))) +(recipe r2 (key (sy2 ing11))) +(recipe r2 (key (sx2 ing8))) +(recipe r2 (key (sy2 ing12))) +(recipe r2 (key (sx2 ing9))) +(recipe r2 (key (sy2 ing13))) +(recipe r2 (key (sx2 ing10))) +(recipe r2 (key (sy2 ing14))) +(recipe r2 (key (sx2 ing11))) +(recipe r2 (key (sy2 ing15))) +(recipe r2 (key (sx2 ing12))) +(recipe r2 (key (sy2 ing16))) +(recipe r2 (key (sx2 ing13))) +(recipe r2 (key (sy2 ing17))) +(recipe r2 (key (sx2 ing14))) +(recipe r2 (key (sy2 ing18))) +(recipe r2 (key (sx2 ing15))) +(recipe r2 (key (sy2 ing19))) +(recipe r2 (key (sx2 ing16))) +(recipe r2 (key (sy2 ing20))) +(recipe r2 (key (sx2 ing17))) +(recipe r2 (key (sy2 ing21))) +(recipe r3 (numIngredients 2)) +(recipe r3 (result (id item3))) +(recipe r3 (pattern 0 sx3)) +(recipe r3 (pattern 1 sy3)) +(recipe r3 (key (sx3 ing9))) +(recipe r3 (key (sy3 ing15))) +(recipe r3 (key (sx3 ing10))) +(recipe r3 (key (sy3 ing16))) +(recipe r3 (key (sx3 ing11))) +(recipe r3 (key (sy3 ing17))) +(recipe r3 (key (sx3 ing12))) +(recipe r3 (key (sy3 ing18))) +(recipe r3 (key (sx3 ing13))) +(recipe r3 (key (sy3 ing19))) +(recipe r3 (key (sx3 ing14))) +(recipe r3 (key (sy3 ing20))) +(recipe r3 (key (sx3 ing15))) +(recipe r3 (key (sy3 ing21))) +(recipe r3 (key (sx3 ing16))) +(recipe r3 (key (sy3 ing22))) +(recipe r3 (key (sx3 ing17))) +(recipe r3 (key (sy3 ing23))) +(recipe r3 (key (sx3 ing18))) +(recipe r3 (key (sy3 ing24))) +(recipe r3 (key (sx3 ing19))) +(recipe r3 (key (sy3 ing25))) +(recipe r3 (key (sx3 ing20))) +(recipe r3 (key (sy3 ing26))) +(recipe r4 (numIngredients 2)) +(recipe r4 (result (id item4))) +(recipe r4 (pattern 0 sx4)) +(recipe r4 (pattern 1 sy4)) +(recipe r4 (key (sx4 ing12))) +(recipe r4 (key (sy4 ing20))) +(recipe r4 (key (sx4 ing13))) +(recipe r4 (key (sy4 ing21))) +(recipe r4 (key (sx4 ing14))) +(recipe r4 (key (sy4 ing22))) +(recipe r4 (key (sx4 ing15))) +(recipe r4 (key (sy4 ing23))) +(recipe r4 (key (sx4 ing16))) +(recipe r4 (key (sy4 ing24))) +(recipe r4 (key (sx4 ing17))) +(recipe r4 (key (sy4 ing25))) +(recipe r4 (key (sx4 ing18))) +(recipe r4 (key (sy4 ing26))) +(recipe r4 (key (sx4 ing19))) +(recipe r4 (key (sy4 ing27))) +(recipe r4 (key (sx4 ing20))) +(recipe r4 (key (sy4 ing28))) +(recipe r4 (key (sx4 ing21))) +(recipe r4 (key (sy4 ing29))) +(recipe r4 (key (sx4 ing22))) +(recipe r4 (key (sy4 ing30))) +(recipe r4 (key (sx4 ing23))) +(recipe r4 (key (sy4 ing31))) +(recipe r5 (numIngredients 2)) +(recipe r5 (result (id item5))) +(recipe r5 (pattern 0 sx5)) +(recipe r5 (pattern 1 sy5)) +(recipe r5 (key (sx5 ing15))) +(recipe r5 (key (sy5 ing25))) +(recipe r5 (key (sx5 ing16))) +(recipe r5 (key (sy5 ing26))) +(recipe r5 (key (sx5 ing17))) +(recipe r5 (key (sy5 ing27))) +(recipe r5 (key (sx5 ing18))) +(recipe r5 (key (sy5 ing28))) +(recipe r5 (key (sx5 ing19))) +(recipe r5 (key (sy5 ing29))) +(recipe r5 (key (sx5 ing20))) +(recipe r5 (key (sy5 ing30))) +(recipe r5 (key (sx5 ing21))) +(recipe r5 (key (sy5 ing31))) +(recipe r5 (key (sx5 ing22))) +(recipe r5 (key (sy5 ing32))) +(recipe r5 (key (sx5 ing23))) +(recipe r5 (key (sy5 ing33))) +(recipe r5 (key (sx5 ing24))) +(recipe r5 (key (sy5 ing34))) +(recipe r5 (key (sx5 ing25))) +(recipe r5 (key (sy5 ing35))) +(recipe r5 (key (sx5 ing26))) +(recipe r5 (key (sy5 ing36))) +(recipe r6 (numIngredients 2)) +(recipe r6 (result (id item6))) +(recipe r6 (pattern 0 sx6)) +(recipe r6 (pattern 1 sy6)) +(recipe r6 (key (sx6 ing18))) +(recipe r6 (key (sy6 ing30))) +(recipe r6 (key (sx6 ing19))) +(recipe r6 (key (sy6 ing31))) +(recipe r6 (key (sx6 ing20))) +(recipe r6 (key (sy6 ing32))) +(recipe r6 (key (sx6 ing21))) +(recipe r6 (key (sy6 ing33))) +(recipe r6 (key (sx6 ing22))) +(recipe r6 (key (sy6 ing34))) +(recipe r6 (key (sx6 ing23))) +(recipe r6 (key (sy6 ing35))) +(recipe r6 (key (sx6 ing24))) +(recipe r6 (key (sy6 ing36))) +(recipe r6 (key (sx6 ing25))) +(recipe r6 (key (sy6 ing37))) +(recipe r6 (key (sx6 ing26))) +(recipe r6 (key (sy6 ing38))) +(recipe r6 (key (sx6 ing27))) +(recipe r6 (key (sy6 ing39))) +(recipe r6 (key (sx6 ing28))) +(recipe r6 (key (sy6 ing40))) +(recipe r6 (key (sx6 ing29))) +(recipe r6 (key (sy6 ing41))) +(recipe r7 (numIngredients 2)) +(recipe r7 (result (id item7))) +(recipe r7 (pattern 0 sx7)) +(recipe r7 (pattern 1 sy7)) +(recipe r7 (key (sx7 ing21))) +(recipe r7 (key (sy7 ing35))) +(recipe r7 (key (sx7 ing22))) +(recipe r7 (key (sy7 ing36))) +(recipe r7 (key (sx7 ing23))) +(recipe r7 (key (sy7 ing37))) +(recipe r7 (key (sx7 ing24))) +(recipe r7 (key (sy7 ing38))) +(recipe r7 (key (sx7 ing25))) +(recipe r7 (key (sy7 ing39))) +(recipe r7 (key (sx7 ing26))) +(recipe r7 (key (sy7 ing40))) +(recipe r7 (key (sx7 ing27))) +(recipe r7 (key (sy7 ing41))) +(recipe r7 (key (sx7 ing28))) +(recipe r7 (key (sy7 ing42))) +(recipe r7 (key (sx7 ing29))) +(recipe r7 (key (sy7 ing43))) +(recipe r7 (key (sx7 ing30))) +(recipe r7 (key (sy7 ing44))) +(recipe r7 (key (sx7 ing31))) +(recipe r7 (key (sy7 ing45))) +(recipe r7 (key (sx7 ing32))) +(recipe r7 (key (sy7 ing46))) +(recipe r8 (numIngredients 2)) +(recipe r8 (result (id item8))) +(recipe r8 (pattern 0 sx8)) +(recipe r8 (pattern 1 sy8)) +(recipe r8 (key (sx8 ing24))) +(recipe r8 (key (sy8 ing40))) +(recipe r8 (key (sx8 ing25))) +(recipe r8 (key (sy8 ing41))) +(recipe r8 (key (sx8 ing26))) +(recipe r8 (key (sy8 ing42))) +(recipe r8 (key (sx8 ing27))) +(recipe r8 (key (sy8 ing43))) +(recipe r8 (key (sx8 ing28))) +(recipe r8 (key (sy8 ing44))) +(recipe r8 (key (sx8 ing29))) +(recipe r8 (key (sy8 ing45))) +(recipe r8 (key (sx8 ing30))) +(recipe r8 (key (sy8 ing46))) +(recipe r8 (key (sx8 ing31))) +(recipe r8 (key (sy8 ing47))) +(recipe r8 (key (sx8 ing32))) +(recipe r8 (key (sy8 ing48))) +(recipe r8 (key (sx8 ing33))) +(recipe r8 (key (sy8 ing49))) +(recipe r8 (key (sx8 ing34))) +(recipe r8 (key (sy8 ing50))) +(recipe r8 (key (sx8 ing35))) +(recipe r8 (key (sy8 ing51))) +(recipe r9 (numIngredients 2)) +(recipe r9 (result (id item9))) +(recipe r9 (pattern 0 sx9)) +(recipe r9 (pattern 1 sy9)) +(recipe r9 (key (sx9 ing27))) +(recipe r9 (key (sy9 ing45))) +(recipe r9 (key (sx9 ing28))) +(recipe r9 (key (sy9 ing46))) +(recipe r9 (key (sx9 ing29))) +(recipe r9 (key (sy9 ing47))) +(recipe r9 (key (sx9 ing30))) +(recipe r9 (key (sy9 ing48))) +(recipe r9 (key (sx9 ing31))) +(recipe r9 (key (sy9 ing49))) +(recipe r9 (key (sx9 ing32))) +(recipe r9 (key (sy9 ing50))) +(recipe r9 (key (sx9 ing33))) +(recipe r9 (key (sy9 ing51))) +(recipe r9 (key (sx9 ing34))) +(recipe r9 (key (sy9 ing52))) +(recipe r9 (key (sx9 ing35))) +(recipe r9 (key (sy9 ing53))) +(recipe r9 (key (sx9 ing36))) +(recipe r9 (key (sy9 ing54))) +(recipe r9 (key (sx9 ing37))) +(recipe r9 (key (sy9 ing55))) +(recipe r9 (key (sx9 ing38))) +(recipe r9 (key (sy9 ing56))) +(recipe r10 (numIngredients 2)) +(recipe r10 (result (id item10))) +(recipe r10 (pattern 0 sx10)) +(recipe r10 (pattern 1 sy10)) +(recipe r10 (key (sx10 ing30))) +(recipe r10 (key (sy10 ing50))) +(recipe r10 (key (sx10 ing31))) +(recipe r10 (key (sy10 ing51))) +(recipe r10 (key (sx10 ing32))) +(recipe r10 (key (sy10 ing52))) +(recipe r10 (key (sx10 ing33))) +(recipe r10 (key (sy10 ing53))) +(recipe r10 (key (sx10 ing34))) +(recipe r10 (key (sy10 ing54))) +(recipe r10 (key (sx10 ing35))) +(recipe r10 (key (sy10 ing55))) +(recipe r10 (key (sx10 ing36))) +(recipe r10 (key (sy10 ing56))) +(recipe r10 (key (sx10 ing37))) +(recipe r10 (key (sy10 ing57))) +(recipe r10 (key (sx10 ing38))) +(recipe r10 (key (sy10 ing58))) +(recipe r10 (key (sx10 ing39))) +(recipe r10 (key (sy10 ing59))) +(recipe r10 (key (sx10 ing40))) +(recipe r10 (key (sy10 ing60))) +(recipe r10 (key (sx10 ing41))) +(recipe r10 (key (sy10 ing61))) +(recipe r11 (numIngredients 2)) +(recipe r11 (result (id item11))) +(recipe r11 (pattern 0 sx11)) +(recipe r11 (pattern 1 sy11)) +(recipe r11 (key (sx11 ing33))) +(recipe r11 (key (sy11 ing55))) +(recipe r11 (key (sx11 ing34))) +(recipe r11 (key (sy11 ing56))) +(recipe r11 (key (sx11 ing35))) +(recipe r11 (key (sy11 ing57))) +(recipe r11 (key (sx11 ing36))) +(recipe r11 (key (sy11 ing58))) +(recipe r11 (key (sx11 ing37))) +(recipe r11 (key (sy11 ing59))) +(recipe r11 (key (sx11 ing38))) +(recipe r11 (key (sy11 ing60))) +(recipe r11 (key (sx11 ing39))) +(recipe r11 (key (sy11 ing61))) +(recipe r11 (key (sx11 ing40))) +(recipe r11 (key (sy11 ing62))) +(recipe r11 (key (sx11 ing41))) +(recipe r11 (key (sy11 ing63))) +(recipe r11 (key (sx11 ing42))) +(recipe r11 (key (sy11 ing64))) +(recipe r11 (key (sx11 ing43))) +(recipe r11 (key (sy11 ing65))) +(recipe r11 (key (sx11 ing44))) +(recipe r11 (key (sy11 ing66))) +(recipe r12 (numIngredients 2)) +(recipe r12 (result (id item12))) +(recipe r12 (pattern 0 sx12)) +(recipe r12 (pattern 1 sy12)) +(recipe r12 (key (sx12 ing36))) +(recipe r12 (key (sy12 ing60))) +(recipe r12 (key (sx12 ing37))) +(recipe r12 (key (sy12 ing61))) +(recipe r12 (key (sx12 ing38))) +(recipe r12 (key (sy12 ing62))) +(recipe r12 (key (sx12 ing39))) +(recipe r12 (key (sy12 ing63))) +(recipe r12 (key (sx12 ing40))) +(recipe r12 (key (sy12 ing64))) +(recipe r12 (key (sx12 ing41))) +(recipe r12 (key (sy12 ing65))) +(recipe r12 (key (sx12 ing42))) +(recipe r12 (key (sy12 ing66))) +(recipe r12 (key (sx12 ing43))) +(recipe r12 (key (sy12 ing67))) +(recipe r12 (key (sx12 ing44))) +(recipe r12 (key (sy12 ing68))) +(recipe r12 (key (sx12 ing45))) +(recipe r12 (key (sy12 ing69))) +(recipe r12 (key (sx12 ing46))) +(recipe r12 (key (sy12 ing70))) +(recipe r12 (key (sx12 ing47))) +(recipe r12 (key (sy12 ing71))) +(recipe r13 (numIngredients 2)) +(recipe r13 (result (id item13))) +(recipe r13 (pattern 0 sx13)) +(recipe r13 (pattern 1 sy13)) +(recipe r13 (key (sx13 ing39))) +(recipe r13 (key (sy13 ing65))) +(recipe r13 (key (sx13 ing40))) +(recipe r13 (key (sy13 ing66))) +(recipe r13 (key (sx13 ing41))) +(recipe r13 (key (sy13 ing67))) +(recipe r13 (key (sx13 ing42))) +(recipe r13 (key (sy13 ing68))) +(recipe r13 (key (sx13 ing43))) +(recipe r13 (key (sy13 ing69))) +(recipe r13 (key (sx13 ing44))) +(recipe r13 (key (sy13 ing70))) +(recipe r13 (key (sx13 ing45))) +(recipe r13 (key (sy13 ing71))) +(recipe r13 (key (sx13 ing46))) +(recipe r13 (key (sy13 ing72))) +(recipe r13 (key (sx13 ing47))) +(recipe r13 (key (sy13 ing73))) +(recipe r13 (key (sx13 ing48))) +(recipe r13 (key (sy13 ing74))) +(recipe r13 (key (sx13 ing49))) +(recipe r13 (key (sy13 ing75))) +(recipe r13 (key (sx13 ing50))) +(recipe r13 (key (sy13 ing76))) +(recipe r14 (numIngredients 2)) +(recipe r14 (result (id item14))) +(recipe r14 (pattern 0 sx14)) +(recipe r14 (pattern 1 sy14)) +(recipe r14 (key (sx14 ing42))) +(recipe r14 (key (sy14 ing70))) +(recipe r14 (key (sx14 ing43))) +(recipe r14 (key (sy14 ing71))) +(recipe r14 (key (sx14 ing44))) +(recipe r14 (key (sy14 ing72))) +(recipe r14 (key (sx14 ing45))) +(recipe r14 (key (sy14 ing73))) +(recipe r14 (key (sx14 ing46))) +(recipe r14 (key (sy14 ing74))) +(recipe r14 (key (sx14 ing47))) +(recipe r14 (key (sy14 ing75))) +(recipe r14 (key (sx14 ing48))) +(recipe r14 (key (sy14 ing76))) +(recipe r14 (key (sx14 ing49))) +(recipe r14 (key (sy14 ing77))) +(recipe r14 (key (sx14 ing50))) +(recipe r14 (key (sy14 ing78))) +(recipe r14 (key (sx14 ing51))) +(recipe r14 (key (sy14 ing79))) +(recipe r14 (key (sx14 ing52))) +(recipe r14 (key (sy14 ing80))) +(recipe r14 (key (sx14 ing53))) +(recipe r14 (key (sy14 ing81))) +(recipe r15 (numIngredients 2)) +(recipe r15 (result (id item15))) +(recipe r15 (pattern 0 sx15)) +(recipe r15 (pattern 1 sy15)) +(recipe r15 (key (sx15 ing45))) +(recipe r15 (key (sy15 ing75))) +(recipe r15 (key (sx15 ing46))) +(recipe r15 (key (sy15 ing76))) +(recipe r15 (key (sx15 ing47))) +(recipe r15 (key (sy15 ing77))) +(recipe r15 (key (sx15 ing48))) +(recipe r15 (key (sy15 ing78))) +(recipe r15 (key (sx15 ing49))) +(recipe r15 (key (sy15 ing79))) +(recipe r15 (key (sx15 ing50))) +(recipe r15 (key (sy15 ing80))) +(recipe r15 (key (sx15 ing51))) +(recipe r15 (key (sy15 ing81))) +(recipe r15 (key (sx15 ing52))) +(recipe r15 (key (sy15 ing82))) +(recipe r15 (key (sx15 ing53))) +(recipe r15 (key (sy15 ing83))) +(recipe r15 (key (sx15 ing54))) +(recipe r15 (key (sy15 ing84))) +(recipe r15 (key (sx15 ing55))) +(recipe r15 (key (sy15 ing85))) +(recipe r15 (key (sx15 ing56))) +(recipe r15 (key (sy15 ing86))) +(recipe r16 (numIngredients 2)) +(recipe r16 (result (id item16))) +(recipe r16 (pattern 0 sx16)) +(recipe r16 (pattern 1 sy16)) +(recipe r16 (key (sx16 ing48))) +(recipe r16 (key (sy16 ing80))) +(recipe r16 (key (sx16 ing49))) +(recipe r16 (key (sy16 ing81))) +(recipe r16 (key (sx16 ing50))) +(recipe r16 (key (sy16 ing82))) +(recipe r16 (key (sx16 ing51))) +(recipe r16 (key (sy16 ing83))) +(recipe r16 (key (sx16 ing52))) +(recipe r16 (key (sy16 ing84))) +(recipe r16 (key (sx16 ing53))) +(recipe r16 (key (sy16 ing85))) +(recipe r16 (key (sx16 ing54))) +(recipe r16 (key (sy16 ing86))) +(recipe r16 (key (sx16 ing55))) +(recipe r16 (key (sy16 ing87))) +(recipe r16 (key (sx16 ing56))) +(recipe r16 (key (sy16 ing88))) +(recipe r16 (key (sx16 ing57))) +(recipe r16 (key (sy16 ing89))) +(recipe r16 (key (sx16 ing58))) +(recipe r16 (key (sy16 ing90))) +(recipe r16 (key (sx16 ing59))) +(recipe r16 (key (sy16 ing91))) +(recipe r17 (numIngredients 2)) +(recipe r17 (result (id item17))) +(recipe r17 (pattern 0 sx17)) +(recipe r17 (pattern 1 sy17)) +(recipe r17 (key (sx17 ing51))) +(recipe r17 (key (sy17 ing85))) +(recipe r17 (key (sx17 ing52))) +(recipe r17 (key (sy17 ing86))) +(recipe r17 (key (sx17 ing53))) +(recipe r17 (key (sy17 ing87))) +(recipe r17 (key (sx17 ing54))) +(recipe r17 (key (sy17 ing88))) +(recipe r17 (key (sx17 ing55))) +(recipe r17 (key (sy17 ing89))) +(recipe r17 (key (sx17 ing56))) +(recipe r17 (key (sy17 ing90))) +(recipe r17 (key (sx17 ing57))) +(recipe r17 (key (sy17 ing91))) +(recipe r17 (key (sx17 ing58))) +(recipe r17 (key (sy17 ing92))) +(recipe r17 (key (sx17 ing59))) +(recipe r17 (key (sy17 ing93))) +(recipe r17 (key (sx17 ing60))) +(recipe r17 (key (sy17 ing94))) +(recipe r17 (key (sx17 ing61))) +(recipe r17 (key (sy17 ing95))) +(recipe r17 (key (sx17 ing62))) +(recipe r17 (key (sy17 ing96))) +(recipe r18 (numIngredients 2)) +(recipe r18 (result (id item18))) +(recipe r18 (pattern 0 sx18)) +(recipe r18 (pattern 1 sy18)) +(recipe r18 (key (sx18 ing54))) +(recipe r18 (key (sy18 ing90))) +(recipe r18 (key (sx18 ing55))) +(recipe r18 (key (sy18 ing91))) +(recipe r18 (key (sx18 ing56))) +(recipe r18 (key (sy18 ing92))) +(recipe r18 (key (sx18 ing57))) +(recipe r18 (key (sy18 ing93))) +(recipe r18 (key (sx18 ing58))) +(recipe r18 (key (sy18 ing94))) +(recipe r18 (key (sx18 ing59))) +(recipe r18 (key (sy18 ing95))) +(recipe r18 (key (sx18 ing60))) +(recipe r18 (key (sy18 ing96))) +(recipe r18 (key (sx18 ing61))) +(recipe r18 (key (sy18 ing97))) +(recipe r18 (key (sx18 ing62))) +(recipe r18 (key (sy18 ing98))) +(recipe r18 (key (sx18 ing63))) +(recipe r18 (key (sy18 ing99))) +(recipe r18 (key (sx18 ing64))) +(recipe r18 (key (sy18 ing100))) +(recipe r18 (key (sx18 ing65))) +(recipe r18 (key (sy18 ing101))) +(recipe r19 (numIngredients 2)) +(recipe r19 (result (id item19))) +(recipe r19 (pattern 0 sx19)) +(recipe r19 (pattern 1 sy19)) +(recipe r19 (key (sx19 ing57))) +(recipe r19 (key (sy19 ing95))) +(recipe r19 (key (sx19 ing58))) +(recipe r19 (key (sy19 ing96))) +(recipe r19 (key (sx19 ing59))) +(recipe r19 (key (sy19 ing97))) +(recipe r19 (key (sx19 ing60))) +(recipe r19 (key (sy19 ing98))) +(recipe r19 (key (sx19 ing61))) +(recipe r19 (key (sy19 ing99))) +(recipe r19 (key (sx19 ing62))) +(recipe r19 (key (sy19 ing100))) +(recipe r19 (key (sx19 ing63))) +(recipe r19 (key (sy19 ing101))) +(recipe r19 (key (sx19 ing64))) +(recipe r19 (key (sy19 ing102))) +(recipe r19 (key (sx19 ing65))) +(recipe r19 (key (sy19 ing103))) +(recipe r19 (key (sx19 ing66))) +(recipe r19 (key (sy19 ing104))) +(recipe r19 (key (sx19 ing67))) +(recipe r19 (key (sy19 ing105))) +(recipe r19 (key (sx19 ing68))) +(recipe r19 (key (sy19 ing106))) +(recipe r20 (numIngredients 2)) +(recipe r20 (result (id item20))) +(recipe r20 (pattern 0 sx20)) +(recipe r20 (pattern 1 sy20)) +(recipe r20 (key (sx20 ing60))) +(recipe r20 (key (sy20 ing100))) +(recipe r20 (key (sx20 ing61))) +(recipe r20 (key (sy20 ing101))) +(recipe r20 (key (sx20 ing62))) +(recipe r20 (key (sy20 ing102))) +(recipe r20 (key (sx20 ing63))) +(recipe r20 (key (sy20 ing103))) +(recipe r20 (key (sx20 ing64))) +(recipe r20 (key (sy20 ing104))) +(recipe r20 (key (sx20 ing65))) +(recipe r20 (key (sy20 ing105))) +(recipe r20 (key (sx20 ing66))) +(recipe r20 (key (sy20 ing106))) +(recipe r20 (key (sx20 ing67))) +(recipe r20 (key (sy20 ing107))) +(recipe r20 (key (sx20 ing68))) +(recipe r20 (key (sy20 ing108))) +(recipe r20 (key (sx20 ing69))) +(recipe r20 (key (sy20 ing109))) +(recipe r20 (key (sx20 ing70))) +(recipe r20 (key (sy20 ing110))) +(recipe r20 (key (sx20 ing71))) +(recipe r20 (key (sy20 ing111))) +(recipe r21 (numIngredients 2)) +(recipe r21 (result (id item21))) +(recipe r21 (pattern 0 sx21)) +(recipe r21 (pattern 1 sy21)) +(recipe r21 (key (sx21 ing63))) +(recipe r21 (key (sy21 ing105))) +(recipe r21 (key (sx21 ing64))) +(recipe r21 (key (sy21 ing106))) +(recipe r21 (key (sx21 ing65))) +(recipe r21 (key (sy21 ing107))) +(recipe r21 (key (sx21 ing66))) +(recipe r21 (key (sy21 ing108))) +(recipe r21 (key (sx21 ing67))) +(recipe r21 (key (sy21 ing109))) +(recipe r21 (key (sx21 ing68))) +(recipe r21 (key (sy21 ing110))) +(recipe r21 (key (sx21 ing69))) +(recipe r21 (key (sy21 ing111))) +(recipe r21 (key (sx21 ing70))) +(recipe r21 (key (sy21 ing112))) +(recipe r21 (key (sx21 ing71))) +(recipe r21 (key (sy21 ing113))) +(recipe r21 (key (sx21 ing72))) +(recipe r21 (key (sy21 ing114))) +(recipe r21 (key (sx21 ing73))) +(recipe r21 (key (sy21 ing115))) +(recipe r21 (key (sx21 ing74))) +(recipe r21 (key (sy21 ing116))) +(recipe r22 (numIngredients 2)) +(recipe r22 (result (id item22))) +(recipe r22 (pattern 0 sx22)) +(recipe r22 (pattern 1 sy22)) +(recipe r22 (key (sx22 ing66))) +(recipe r22 (key (sy22 ing110))) +(recipe r22 (key (sx22 ing67))) +(recipe r22 (key (sy22 ing111))) +(recipe r22 (key (sx22 ing68))) +(recipe r22 (key (sy22 ing112))) +(recipe r22 (key (sx22 ing69))) +(recipe r22 (key (sy22 ing113))) +(recipe r22 (key (sx22 ing70))) +(recipe r22 (key (sy22 ing114))) +(recipe r22 (key (sx22 ing71))) +(recipe r22 (key (sy22 ing115))) +(recipe r22 (key (sx22 ing72))) +(recipe r22 (key (sy22 ing116))) +(recipe r22 (key (sx22 ing73))) +(recipe r22 (key (sy22 ing117))) +(recipe r22 (key (sx22 ing74))) +(recipe r22 (key (sy22 ing118))) +(recipe r22 (key (sx22 ing75))) +(recipe r22 (key (sy22 ing119))) +(recipe r22 (key (sx22 ing76))) +(recipe r22 (key (sy22 ing120))) +(recipe r22 (key (sx22 ing77))) +(recipe r22 (key (sy22 ing121))) +(recipe r23 (numIngredients 2)) +(recipe r23 (result (id item23))) +(recipe r23 (pattern 0 sx23)) +(recipe r23 (pattern 1 sy23)) +(recipe r23 (key (sx23 ing69))) +(recipe r23 (key (sy23 ing115))) +(recipe r23 (key (sx23 ing70))) +(recipe r23 (key (sy23 ing116))) +(recipe r23 (key (sx23 ing71))) +(recipe r23 (key (sy23 ing117))) +(recipe r23 (key (sx23 ing72))) +(recipe r23 (key (sy23 ing118))) +(recipe r23 (key (sx23 ing73))) +(recipe r23 (key (sy23 ing119))) +(recipe r23 (key (sx23 ing74))) +(recipe r23 (key (sy23 ing120))) +(recipe r23 (key (sx23 ing75))) +(recipe r23 (key (sy23 ing121))) +(recipe r23 (key (sx23 ing76))) +(recipe r23 (key (sy23 ing122))) +(recipe r23 (key (sx23 ing77))) +(recipe r23 (key (sy23 ing123))) +(recipe r23 (key (sx23 ing78))) +(recipe r23 (key (sy23 ing124))) +(recipe r23 (key (sx23 ing79))) +(recipe r23 (key (sy23 ing125))) +(recipe r23 (key (sx23 ing80))) +(recipe r23 (key (sy23 ing126))) +(recipe r24 (numIngredients 2)) +(recipe r24 (result (id item24))) +(recipe r24 (pattern 0 sx24)) +(recipe r24 (pattern 1 sy24)) +(recipe r24 (key (sx24 ing72))) +(recipe r24 (key (sy24 ing120))) +(recipe r24 (key (sx24 ing73))) +(recipe r24 (key (sy24 ing121))) +(recipe r24 (key (sx24 ing74))) +(recipe r24 (key (sy24 ing122))) +(recipe r24 (key (sx24 ing75))) +(recipe r24 (key (sy24 ing123))) +(recipe r24 (key (sx24 ing76))) +(recipe r24 (key (sy24 ing124))) +(recipe r24 (key (sx24 ing77))) +(recipe r24 (key (sy24 ing125))) +(recipe r24 (key (sx24 ing78))) +(recipe r24 (key (sy24 ing126))) +(recipe r24 (key (sx24 ing79))) +(recipe r24 (key (sy24 ing127))) +(recipe r24 (key (sx24 ing80))) +(recipe r24 (key (sy24 ing128))) +(recipe r24 (key (sx24 ing81))) +(recipe r24 (key (sy24 ing129))) +(recipe r24 (key (sx24 ing82))) +(recipe r24 (key (sy24 ing130))) +(recipe r24 (key (sx24 ing83))) +(recipe r24 (key (sy24 ing131))) +(recipe r25 (numIngredients 2)) +(recipe r25 (result (id item25))) +(recipe r25 (pattern 0 sx25)) +(recipe r25 (pattern 1 sy25)) +(recipe r25 (key (sx25 ing75))) +(recipe r25 (key (sy25 ing125))) +(recipe r25 (key (sx25 ing76))) +(recipe r25 (key (sy25 ing126))) +(recipe r25 (key (sx25 ing77))) +(recipe r25 (key (sy25 ing127))) +(recipe r25 (key (sx25 ing78))) +(recipe r25 (key (sy25 ing128))) +(recipe r25 (key (sx25 ing79))) +(recipe r25 (key (sy25 ing129))) +(recipe r25 (key (sx25 ing80))) +(recipe r25 (key (sy25 ing130))) +(recipe r25 (key (sx25 ing81))) +(recipe r25 (key (sy25 ing131))) +(recipe r25 (key (sx25 ing82))) +(recipe r25 (key (sy25 ing132))) +(recipe r25 (key (sx25 ing83))) +(recipe r25 (key (sy25 ing133))) +(recipe r25 (key (sx25 ing84))) +(recipe r25 (key (sy25 ing134))) +(recipe r25 (key (sx25 ing85))) +(recipe r25 (key (sy25 ing135))) +(recipe r25 (key (sx25 ing86))) +(recipe r25 (key (sy25 ing136))) +(recipe r26 (numIngredients 2)) +(recipe r26 (result (id item26))) +(recipe r26 (pattern 0 sx26)) +(recipe r26 (pattern 1 sy26)) +(recipe r26 (key (sx26 ing78))) +(recipe r26 (key (sy26 ing130))) +(recipe r26 (key (sx26 ing79))) +(recipe r26 (key (sy26 ing131))) +(recipe r26 (key (sx26 ing80))) +(recipe r26 (key (sy26 ing132))) +(recipe r26 (key (sx26 ing81))) +(recipe r26 (key (sy26 ing133))) +(recipe r26 (key (sx26 ing82))) +(recipe r26 (key (sy26 ing134))) +(recipe r26 (key (sx26 ing83))) +(recipe r26 (key (sy26 ing135))) +(recipe r26 (key (sx26 ing84))) +(recipe r26 (key (sy26 ing136))) +(recipe r26 (key (sx26 ing85))) +(recipe r26 (key (sy26 ing137))) +(recipe r26 (key (sx26 ing86))) +(recipe r26 (key (sy26 ing138))) +(recipe r26 (key (sx26 ing87))) +(recipe r26 (key (sy26 ing139))) +(recipe r26 (key (sx26 ing88))) +(recipe r26 (key (sy26 ing140))) +(recipe r26 (key (sx26 ing89))) +(recipe r26 (key (sy26 ing141))) +(recipe r27 (numIngredients 2)) +(recipe r27 (result (id item27))) +(recipe r27 (pattern 0 sx27)) +(recipe r27 (pattern 1 sy27)) +(recipe r27 (key (sx27 ing81))) +(recipe r27 (key (sy27 ing135))) +(recipe r27 (key (sx27 ing82))) +(recipe r27 (key (sy27 ing136))) +(recipe r27 (key (sx27 ing83))) +(recipe r27 (key (sy27 ing137))) +(recipe r27 (key (sx27 ing84))) +(recipe r27 (key (sy27 ing138))) +(recipe r27 (key (sx27 ing85))) +(recipe r27 (key (sy27 ing139))) +(recipe r27 (key (sx27 ing86))) +(recipe r27 (key (sy27 ing140))) +(recipe r27 (key (sx27 ing87))) +(recipe r27 (key (sy27 ing141))) +(recipe r27 (key (sx27 ing88))) +(recipe r27 (key (sy27 ing142))) +(recipe r27 (key (sx27 ing89))) +(recipe r27 (key (sy27 ing143))) +(recipe r27 (key (sx27 ing90))) +(recipe r27 (key (sy27 ing144))) +(recipe r27 (key (sx27 ing91))) +(recipe r27 (key (sy27 ing145))) +(recipe r27 (key (sx27 ing92))) +(recipe r27 (key (sy27 ing146))) +(recipe r28 (numIngredients 2)) +(recipe r28 (result (id item28))) +(recipe r28 (pattern 0 sx28)) +(recipe r28 (pattern 1 sy28)) +(recipe r28 (key (sx28 ing84))) +(recipe r28 (key (sy28 ing140))) +(recipe r28 (key (sx28 ing85))) +(recipe r28 (key (sy28 ing141))) +(recipe r28 (key (sx28 ing86))) +(recipe r28 (key (sy28 ing142))) +(recipe r28 (key (sx28 ing87))) +(recipe r28 (key (sy28 ing143))) +(recipe r28 (key (sx28 ing88))) +(recipe r28 (key (sy28 ing144))) +(recipe r28 (key (sx28 ing89))) +(recipe r28 (key (sy28 ing145))) +(recipe r28 (key (sx28 ing90))) +(recipe r28 (key (sy28 ing146))) +(recipe r28 (key (sx28 ing91))) +(recipe r28 (key (sy28 ing147))) +(recipe r28 (key (sx28 ing92))) +(recipe r28 (key (sy28 ing148))) +(recipe r28 (key (sx28 ing93))) +(recipe r28 (key (sy28 ing149))) +(recipe r28 (key (sx28 ing94))) +(recipe r28 (key (sy28 ing150))) +(recipe r28 (key (sx28 ing95))) +(recipe r28 (key (sy28 ing151))) +(recipe r29 (numIngredients 2)) +(recipe r29 (result (id item29))) +(recipe r29 (pattern 0 sx29)) +(recipe r29 (pattern 1 sy29)) +(recipe r29 (key (sx29 ing87))) +(recipe r29 (key (sy29 ing145))) +(recipe r29 (key (sx29 ing88))) +(recipe r29 (key (sy29 ing146))) +(recipe r29 (key (sx29 ing89))) +(recipe r29 (key (sy29 ing147))) +(recipe r29 (key (sx29 ing90))) +(recipe r29 (key (sy29 ing148))) +(recipe r29 (key (sx29 ing91))) +(recipe r29 (key (sy29 ing149))) +(recipe r29 (key (sx29 ing92))) +(recipe r29 (key (sy29 ing150))) +(recipe r29 (key (sx29 ing93))) +(recipe r29 (key (sy29 ing151))) +(recipe r29 (key (sx29 ing94))) +(recipe r29 (key (sy29 ing152))) +(recipe r29 (key (sx29 ing95))) +(recipe r29 (key (sy29 ing153))) +(recipe r29 (key (sx29 ing96))) +(recipe r29 (key (sy29 ing154))) +(recipe r29 (key (sx29 ing97))) +(recipe r29 (key (sy29 ing155))) +(recipe r29 (key (sx29 ing98))) +(recipe r29 (key (sy29 ing156))) +(recipe r30 (numIngredients 2)) +(recipe r30 (result (id item30))) +(recipe r30 (pattern 0 sx30)) +(recipe r30 (pattern 1 sy30)) +(recipe r30 (key (sx30 ing90))) +(recipe r30 (key (sy30 ing150))) +(recipe r30 (key (sx30 ing91))) +(recipe r30 (key (sy30 ing151))) +(recipe r30 (key (sx30 ing92))) +(recipe r30 (key (sy30 ing152))) +(recipe r30 (key (sx30 ing93))) +(recipe r30 (key (sy30 ing153))) +(recipe r30 (key (sx30 ing94))) +(recipe r30 (key (sy30 ing154))) +(recipe r30 (key (sx30 ing95))) +(recipe r30 (key (sy30 ing155))) +(recipe r30 (key (sx30 ing96))) +(recipe r30 (key (sy30 ing156))) +(recipe r30 (key (sx30 ing97))) +(recipe r30 (key (sy30 ing157))) +(recipe r30 (key (sx30 ing98))) +(recipe r30 (key (sy30 ing158))) +(recipe r30 (key (sx30 ing99))) +(recipe r30 (key (sy30 ing159))) +(recipe r30 (key (sx30 ing100))) +(recipe r30 (key (sy30 ing160))) +(recipe r30 (key (sx30 ing101))) +(recipe r30 (key (sy30 ing161))) +(recipe r31 (numIngredients 2)) +(recipe r31 (result (id item31))) +(recipe r31 (pattern 0 sx31)) +(recipe r31 (pattern 1 sy31)) +(recipe r31 (key (sx31 ing93))) +(recipe r31 (key (sy31 ing155))) +(recipe r31 (key (sx31 ing94))) +(recipe r31 (key (sy31 ing156))) +(recipe r31 (key (sx31 ing95))) +(recipe r31 (key (sy31 ing157))) +(recipe r31 (key (sx31 ing96))) +(recipe r31 (key (sy31 ing158))) +(recipe r31 (key (sx31 ing97))) +(recipe r31 (key (sy31 ing159))) +(recipe r31 (key (sx31 ing98))) +(recipe r31 (key (sy31 ing160))) +(recipe r31 (key (sx31 ing99))) +(recipe r31 (key (sy31 ing161))) +(recipe r31 (key (sx31 ing100))) +(recipe r31 (key (sy31 ing162))) +(recipe r31 (key (sx31 ing101))) +(recipe r31 (key (sy31 ing163))) +(recipe r31 (key (sx31 ing102))) +(recipe r31 (key (sy31 ing164))) +(recipe r31 (key (sx31 ing103))) +(recipe r31 (key (sy31 ing165))) +(recipe r31 (key (sx31 ing104))) +(recipe r31 (key (sy31 ing166))) +(recipe r32 (numIngredients 2)) +(recipe r32 (result (id item32))) +(recipe r32 (pattern 0 sx32)) +(recipe r32 (pattern 1 sy32)) +(recipe r32 (key (sx32 ing96))) +(recipe r32 (key (sy32 ing160))) +(recipe r32 (key (sx32 ing97))) +(recipe r32 (key (sy32 ing161))) +(recipe r32 (key (sx32 ing98))) +(recipe r32 (key (sy32 ing162))) +(recipe r32 (key (sx32 ing99))) +(recipe r32 (key (sy32 ing163))) +(recipe r32 (key (sx32 ing100))) +(recipe r32 (key (sy32 ing164))) +(recipe r32 (key (sx32 ing101))) +(recipe r32 (key (sy32 ing165))) +(recipe r32 (key (sx32 ing102))) +(recipe r32 (key (sy32 ing166))) +(recipe r32 (key (sx32 ing103))) +(recipe r32 (key (sy32 ing167))) +(recipe r32 (key (sx32 ing104))) +(recipe r32 (key (sy32 ing168))) +(recipe r32 (key (sx32 ing105))) +(recipe r32 (key (sy32 ing169))) +(recipe r32 (key (sx32 ing106))) +(recipe r32 (key (sy32 ing170))) +(recipe r32 (key (sx32 ing107))) +(recipe r32 (key (sy32 ing171))) +(recipe r33 (numIngredients 2)) +(recipe r33 (result (id item33))) +(recipe r33 (pattern 0 sx33)) +(recipe r33 (pattern 1 sy33)) +(recipe r33 (key (sx33 ing99))) +(recipe r33 (key (sy33 ing165))) +(recipe r33 (key (sx33 ing100))) +(recipe r33 (key (sy33 ing166))) +(recipe r33 (key (sx33 ing101))) +(recipe r33 (key (sy33 ing167))) +(recipe r33 (key (sx33 ing102))) +(recipe r33 (key (sy33 ing168))) +(recipe r33 (key (sx33 ing103))) +(recipe r33 (key (sy33 ing169))) +(recipe r33 (key (sx33 ing104))) +(recipe r33 (key (sy33 ing170))) +(recipe r33 (key (sx33 ing105))) +(recipe r33 (key (sy33 ing171))) +(recipe r33 (key (sx33 ing106))) +(recipe r33 (key (sy33 ing172))) +(recipe r33 (key (sx33 ing107))) +(recipe r33 (key (sy33 ing173))) +(recipe r33 (key (sx33 ing108))) +(recipe r33 (key (sy33 ing174))) +(recipe r33 (key (sx33 ing109))) +(recipe r33 (key (sy33 ing175))) +(recipe r33 (key (sx33 ing110))) +(recipe r33 (key (sy33 ing176))) +(recipe r34 (numIngredients 2)) +(recipe r34 (result (id item34))) +(recipe r34 (pattern 0 sx34)) +(recipe r34 (pattern 1 sy34)) +(recipe r34 (key (sx34 ing102))) +(recipe r34 (key (sy34 ing170))) +(recipe r34 (key (sx34 ing103))) +(recipe r34 (key (sy34 ing171))) +(recipe r34 (key (sx34 ing104))) +(recipe r34 (key (sy34 ing172))) +(recipe r34 (key (sx34 ing105))) +(recipe r34 (key (sy34 ing173))) +(recipe r34 (key (sx34 ing106))) +(recipe r34 (key (sy34 ing174))) +(recipe r34 (key (sx34 ing107))) +(recipe r34 (key (sy34 ing175))) +(recipe r34 (key (sx34 ing108))) +(recipe r34 (key (sy34 ing176))) +(recipe r34 (key (sx34 ing109))) +(recipe r34 (key (sy34 ing177))) +(recipe r34 (key (sx34 ing110))) +(recipe r34 (key (sy34 ing178))) +(recipe r34 (key (sx34 ing111))) +(recipe r34 (key (sy34 ing179))) +(recipe r34 (key (sx34 ing112))) +(recipe r34 (key (sy34 ing180))) +(recipe r34 (key (sx34 ing113))) +(recipe r34 (key (sy34 ing181))) +(recipe r35 (numIngredients 2)) +(recipe r35 (result (id item35))) +(recipe r35 (pattern 0 sx35)) +(recipe r35 (pattern 1 sy35)) +(recipe r35 (key (sx35 ing105))) +(recipe r35 (key (sy35 ing175))) +(recipe r35 (key (sx35 ing106))) +(recipe r35 (key (sy35 ing176))) +(recipe r35 (key (sx35 ing107))) +(recipe r35 (key (sy35 ing177))) +(recipe r35 (key (sx35 ing108))) +(recipe r35 (key (sy35 ing178))) +(recipe r35 (key (sx35 ing109))) +(recipe r35 (key (sy35 ing179))) +(recipe r35 (key (sx35 ing110))) +(recipe r35 (key (sy35 ing180))) +(recipe r35 (key (sx35 ing111))) +(recipe r35 (key (sy35 ing181))) +(recipe r35 (key (sx35 ing112))) +(recipe r35 (key (sy35 ing182))) +(recipe r35 (key (sx35 ing113))) +(recipe r35 (key (sy35 ing183))) +(recipe r35 (key (sx35 ing114))) +(recipe r35 (key (sy35 ing184))) +(recipe r35 (key (sx35 ing115))) +(recipe r35 (key (sy35 ing185))) +(recipe r35 (key (sx35 ing116))) +(recipe r35 (key (sy35 ing186))) +(recipe r36 (numIngredients 2)) +(recipe r36 (result (id item36))) +(recipe r36 (pattern 0 sx36)) +(recipe r36 (pattern 1 sy36)) +(recipe r36 (key (sx36 ing108))) +(recipe r36 (key (sy36 ing180))) +(recipe r36 (key (sx36 ing109))) +(recipe r36 (key (sy36 ing181))) +(recipe r36 (key (sx36 ing110))) +(recipe r36 (key (sy36 ing182))) +(recipe r36 (key (sx36 ing111))) +(recipe r36 (key (sy36 ing183))) +(recipe r36 (key (sx36 ing112))) +(recipe r36 (key (sy36 ing184))) +(recipe r36 (key (sx36 ing113))) +(recipe r36 (key (sy36 ing185))) +(recipe r36 (key (sx36 ing114))) +(recipe r36 (key (sy36 ing186))) +(recipe r36 (key (sx36 ing115))) +(recipe r36 (key (sy36 ing187))) +(recipe r36 (key (sx36 ing116))) +(recipe r36 (key (sy36 ing188))) +(recipe r36 (key (sx36 ing117))) +(recipe r36 (key (sy36 ing189))) +(recipe r36 (key (sx36 ing118))) +(recipe r36 (key (sy36 ing190))) +(recipe r36 (key (sx36 ing119))) +(recipe r36 (key (sy36 ing191))) +(recipe r37 (numIngredients 2)) +(recipe r37 (result (id item37))) +(recipe r37 (pattern 0 sx37)) +(recipe r37 (pattern 1 sy37)) +(recipe r37 (key (sx37 ing111))) +(recipe r37 (key (sy37 ing185))) +(recipe r37 (key (sx37 ing112))) +(recipe r37 (key (sy37 ing186))) +(recipe r37 (key (sx37 ing113))) +(recipe r37 (key (sy37 ing187))) +(recipe r37 (key (sx37 ing114))) +(recipe r37 (key (sy37 ing188))) +(recipe r37 (key (sx37 ing115))) +(recipe r37 (key (sy37 ing189))) +(recipe r37 (key (sx37 ing116))) +(recipe r37 (key (sy37 ing190))) +(recipe r37 (key (sx37 ing117))) +(recipe r37 (key (sy37 ing191))) +(recipe r37 (key (sx37 ing118))) +(recipe r37 (key (sy37 ing192))) +(recipe r37 (key (sx37 ing119))) +(recipe r37 (key (sy37 ing193))) +(recipe r37 (key (sx37 ing120))) +(recipe r37 (key (sy37 ing194))) +(recipe r37 (key (sx37 ing121))) +(recipe r37 (key (sy37 ing195))) +(recipe r37 (key (sx37 ing122))) +(recipe r37 (key (sy37 ing196))) +(recipe r38 (numIngredients 2)) +(recipe r38 (result (id item38))) +(recipe r38 (pattern 0 sx38)) +(recipe r38 (pattern 1 sy38)) +(recipe r38 (key (sx38 ing114))) +(recipe r38 (key (sy38 ing190))) +(recipe r38 (key (sx38 ing115))) +(recipe r38 (key (sy38 ing191))) +(recipe r38 (key (sx38 ing116))) +(recipe r38 (key (sy38 ing192))) +(recipe r38 (key (sx38 ing117))) +(recipe r38 (key (sy38 ing193))) +(recipe r38 (key (sx38 ing118))) +(recipe r38 (key (sy38 ing194))) +(recipe r38 (key (sx38 ing119))) +(recipe r38 (key (sy38 ing195))) +(recipe r38 (key (sx38 ing120))) +(recipe r38 (key (sy38 ing196))) +(recipe r38 (key (sx38 ing121))) +(recipe r38 (key (sy38 ing197))) +(recipe r38 (key (sx38 ing122))) +(recipe r38 (key (sy38 ing198))) +(recipe r38 (key (sx38 ing123))) +(recipe r38 (key (sy38 ing199))) +(recipe r38 (key (sx38 ing124))) +(recipe r38 (key (sy38 ing200))) +(recipe r38 (key (sx38 ing125))) +(recipe r38 (key (sy38 ing201))) +(recipe r39 (numIngredients 2)) +(recipe r39 (result (id item39))) +(recipe r39 (pattern 0 sx39)) +(recipe r39 (pattern 1 sy39)) +(recipe r39 (key (sx39 ing117))) +(recipe r39 (key (sy39 ing195))) +(recipe r39 (key (sx39 ing118))) +(recipe r39 (key (sy39 ing196))) +(recipe r39 (key (sx39 ing119))) +(recipe r39 (key (sy39 ing197))) +(recipe r39 (key (sx39 ing120))) +(recipe r39 (key (sy39 ing198))) +(recipe r39 (key (sx39 ing121))) +(recipe r39 (key (sy39 ing199))) +(recipe r39 (key (sx39 ing122))) +(recipe r39 (key (sy39 ing200))) +(recipe r39 (key (sx39 ing123))) +(recipe r39 (key (sy39 ing201))) +(recipe r39 (key (sx39 ing124))) +(recipe r39 (key (sy39 ing202))) +(recipe r39 (key (sx39 ing125))) +(recipe r39 (key (sy39 ing203))) +(recipe r39 (key (sx39 ing126))) +(recipe r39 (key (sy39 ing204))) +(recipe r39 (key (sx39 ing127))) +(recipe r39 (key (sy39 ing205))) +(recipe r39 (key (sx39 ing128))) +(recipe r39 (key (sy39 ing206))) +(recipe r40 (numIngredients 2)) +(recipe r40 (result (id item40))) +(recipe r40 (pattern 0 sx40)) +(recipe r40 (pattern 1 sy40)) +(recipe r40 (key (sx40 ing120))) +(recipe r40 (key (sy40 ing200))) +(recipe r40 (key (sx40 ing121))) +(recipe r40 (key (sy40 ing201))) +(recipe r40 (key (sx40 ing122))) +(recipe r40 (key (sy40 ing202))) +(recipe r40 (key (sx40 ing123))) +(recipe r40 (key (sy40 ing203))) +(recipe r40 (key (sx40 ing124))) +(recipe r40 (key (sy40 ing204))) +(recipe r40 (key (sx40 ing125))) +(recipe r40 (key (sy40 ing205))) +(recipe r40 (key (sx40 ing126))) +(recipe r40 (key (sy40 ing206))) +(recipe r40 (key (sx40 ing127))) +(recipe r40 (key (sy40 ing207))) +(recipe r40 (key (sx40 ing128))) +(recipe r40 (key (sy40 ing208))) +(recipe r40 (key (sx40 ing129))) +(recipe r40 (key (sy40 ing209))) +(recipe r40 (key (sx40 ing130))) +(recipe r40 (key (sy40 ing210))) +(recipe r40 (key (sx40 ing131))) +(recipe r40 (key (sy40 ing211))) +(recipe r41 (numIngredients 2)) +(recipe r41 (result (id item41))) +(recipe r41 (pattern 0 sx41)) +(recipe r41 (pattern 1 sy41)) +(recipe r41 (key (sx41 ing123))) +(recipe r41 (key (sy41 ing205))) +(recipe r41 (key (sx41 ing124))) +(recipe r41 (key (sy41 ing206))) +(recipe r41 (key (sx41 ing125))) +(recipe r41 (key (sy41 ing207))) +(recipe r41 (key (sx41 ing126))) +(recipe r41 (key (sy41 ing208))) +(recipe r41 (key (sx41 ing127))) +(recipe r41 (key (sy41 ing209))) +(recipe r41 (key (sx41 ing128))) +(recipe r41 (key (sy41 ing210))) +(recipe r41 (key (sx41 ing129))) +(recipe r41 (key (sy41 ing211))) +(recipe r41 (key (sx41 ing130))) +(recipe r41 (key (sy41 ing212))) +(recipe r41 (key (sx41 ing131))) +(recipe r41 (key (sy41 ing213))) +(recipe r41 (key (sx41 ing132))) +(recipe r41 (key (sy41 ing214))) +(recipe r41 (key (sx41 ing133))) +(recipe r41 (key (sy41 ing215))) +(recipe r41 (key (sx41 ing134))) +(recipe r41 (key (sy41 ing216))) +(recipe r42 (numIngredients 2)) +(recipe r42 (result (id item42))) +(recipe r42 (pattern 0 sx42)) +(recipe r42 (pattern 1 sy42)) +(recipe r42 (key (sx42 ing126))) +(recipe r42 (key (sy42 ing210))) +(recipe r42 (key (sx42 ing127))) +(recipe r42 (key (sy42 ing211))) +(recipe r42 (key (sx42 ing128))) +(recipe r42 (key (sy42 ing212))) +(recipe r42 (key (sx42 ing129))) +(recipe r42 (key (sy42 ing213))) +(recipe r42 (key (sx42 ing130))) +(recipe r42 (key (sy42 ing214))) +(recipe r42 (key (sx42 ing131))) +(recipe r42 (key (sy42 ing215))) +(recipe r42 (key (sx42 ing132))) +(recipe r42 (key (sy42 ing216))) +(recipe r42 (key (sx42 ing133))) +(recipe r42 (key (sy42 ing217))) +(recipe r42 (key (sx42 ing134))) +(recipe r42 (key (sy42 ing218))) +(recipe r42 (key (sx42 ing135))) +(recipe r42 (key (sy42 ing219))) +(recipe r42 (key (sx42 ing136))) +(recipe r42 (key (sy42 ing220))) +(recipe r42 (key (sx42 ing137))) +(recipe r42 (key (sy42 ing221))) +(recipe r43 (numIngredients 2)) +(recipe r43 (result (id item43))) +(recipe r43 (pattern 0 sx43)) +(recipe r43 (pattern 1 sy43)) +(recipe r43 (key (sx43 ing129))) +(recipe r43 (key (sy43 ing215))) +(recipe r43 (key (sx43 ing130))) +(recipe r43 (key (sy43 ing216))) +(recipe r43 (key (sx43 ing131))) +(recipe r43 (key (sy43 ing217))) +(recipe r43 (key (sx43 ing132))) +(recipe r43 (key (sy43 ing218))) +(recipe r43 (key (sx43 ing133))) +(recipe r43 (key (sy43 ing219))) +(recipe r43 (key (sx43 ing134))) +(recipe r43 (key (sy43 ing220))) +(recipe r43 (key (sx43 ing135))) +(recipe r43 (key (sy43 ing221))) +(recipe r43 (key (sx43 ing136))) +(recipe r43 (key (sy43 ing222))) +(recipe r43 (key (sx43 ing137))) +(recipe r43 (key (sy43 ing223))) +(recipe r43 (key (sx43 ing138))) +(recipe r43 (key (sy43 ing224))) +(recipe r43 (key (sx43 ing139))) +(recipe r43 (key (sy43 ing225))) +(recipe r43 (key (sx43 ing140))) +(recipe r43 (key (sy43 ing226))) +(recipe r44 (numIngredients 2)) +(recipe r44 (result (id item44))) +(recipe r44 (pattern 0 sx44)) +(recipe r44 (pattern 1 sy44)) +(recipe r44 (key (sx44 ing132))) +(recipe r44 (key (sy44 ing220))) +(recipe r44 (key (sx44 ing133))) +(recipe r44 (key (sy44 ing221))) +(recipe r44 (key (sx44 ing134))) +(recipe r44 (key (sy44 ing222))) +(recipe r44 (key (sx44 ing135))) +(recipe r44 (key (sy44 ing223))) +(recipe r44 (key (sx44 ing136))) +(recipe r44 (key (sy44 ing224))) +(recipe r44 (key (sx44 ing137))) +(recipe r44 (key (sy44 ing225))) +(recipe r44 (key (sx44 ing138))) +(recipe r44 (key (sy44 ing226))) +(recipe r44 (key (sx44 ing139))) +(recipe r44 (key (sy44 ing227))) +(recipe r44 (key (sx44 ing140))) +(recipe r44 (key (sy44 ing228))) +(recipe r44 (key (sx44 ing141))) +(recipe r44 (key (sy44 ing229))) +(recipe r44 (key (sx44 ing142))) +(recipe r44 (key (sy44 ing230))) +(recipe r44 (key (sx44 ing143))) +(recipe r44 (key (sy44 ing231))) +(recipe r45 (numIngredients 2)) +(recipe r45 (result (id item45))) +(recipe r45 (pattern 0 sx45)) +(recipe r45 (pattern 1 sy45)) +(recipe r45 (key (sx45 ing135))) +(recipe r45 (key (sy45 ing225))) +(recipe r45 (key (sx45 ing136))) +(recipe r45 (key (sy45 ing226))) +(recipe r45 (key (sx45 ing137))) +(recipe r45 (key (sy45 ing227))) +(recipe r45 (key (sx45 ing138))) +(recipe r45 (key (sy45 ing228))) +(recipe r45 (key (sx45 ing139))) +(recipe r45 (key (sy45 ing229))) +(recipe r45 (key (sx45 ing140))) +(recipe r45 (key (sy45 ing230))) +(recipe r45 (key (sx45 ing141))) +(recipe r45 (key (sy45 ing231))) +(recipe r45 (key (sx45 ing142))) +(recipe r45 (key (sy45 ing232))) +(recipe r45 (key (sx45 ing143))) +(recipe r45 (key (sy45 ing233))) +(recipe r45 (key (sx45 ing144))) +(recipe r45 (key (sy45 ing234))) +(recipe r45 (key (sx45 ing145))) +(recipe r45 (key (sy45 ing235))) +(recipe r45 (key (sx45 ing146))) +(recipe r45 (key (sy45 ing236))) +(recipe r46 (numIngredients 2)) +(recipe r46 (result (id item46))) +(recipe r46 (pattern 0 sx46)) +(recipe r46 (pattern 1 sy46)) +(recipe r46 (key (sx46 ing138))) +(recipe r46 (key (sy46 ing230))) +(recipe r46 (key (sx46 ing139))) +(recipe r46 (key (sy46 ing231))) +(recipe r46 (key (sx46 ing140))) +(recipe r46 (key (sy46 ing232))) +(recipe r46 (key (sx46 ing141))) +(recipe r46 (key (sy46 ing233))) +(recipe r46 (key (sx46 ing142))) +(recipe r46 (key (sy46 ing234))) +(recipe r46 (key (sx46 ing143))) +(recipe r46 (key (sy46 ing235))) +(recipe r46 (key (sx46 ing144))) +(recipe r46 (key (sy46 ing236))) +(recipe r46 (key (sx46 ing145))) +(recipe r46 (key (sy46 ing237))) +(recipe r46 (key (sx46 ing146))) +(recipe r46 (key (sy46 ing238))) +(recipe r46 (key (sx46 ing147))) +(recipe r46 (key (sy46 ing239))) +(recipe r46 (key (sx46 ing148))) +(recipe r46 (key (sy46 ing240))) +(recipe r46 (key (sx46 ing149))) +(recipe r46 (key (sy46 ing241))) +(recipe r47 (numIngredients 2)) +(recipe r47 (result (id item47))) +(recipe r47 (pattern 0 sx47)) +(recipe r47 (pattern 1 sy47)) +(recipe r47 (key (sx47 ing141))) +(recipe r47 (key (sy47 ing235))) +(recipe r47 (key (sx47 ing142))) +(recipe r47 (key (sy47 ing236))) +(recipe r47 (key (sx47 ing143))) +(recipe r47 (key (sy47 ing237))) +(recipe r47 (key (sx47 ing144))) +(recipe r47 (key (sy47 ing238))) +(recipe r47 (key (sx47 ing145))) +(recipe r47 (key (sy47 ing239))) +(recipe r47 (key (sx47 ing146))) +(recipe r47 (key (sy47 ing240))) +(recipe r47 (key (sx47 ing147))) +(recipe r47 (key (sy47 ing241))) +(recipe r47 (key (sx47 ing148))) +(recipe r47 (key (sy47 ing242))) +(recipe r47 (key (sx47 ing149))) +(recipe r47 (key (sy47 ing243))) +(recipe r47 (key (sx47 ing150))) +(recipe r47 (key (sy47 ing244))) +(recipe r47 (key (sx47 ing151))) +(recipe r47 (key (sy47 ing245))) +(recipe r47 (key (sx47 ing152))) +(recipe r47 (key (sy47 ing246))) +(recipe r48 (numIngredients 2)) +(recipe r48 (result (id item48))) +(recipe r48 (pattern 0 sx48)) +(recipe r48 (pattern 1 sy48)) +(recipe r48 (key (sx48 ing144))) +(recipe r48 (key (sy48 ing240))) +(recipe r48 (key (sx48 ing145))) +(recipe r48 (key (sy48 ing241))) +(recipe r48 (key (sx48 ing146))) +(recipe r48 (key (sy48 ing242))) +(recipe r48 (key (sx48 ing147))) +(recipe r48 (key (sy48 ing243))) +(recipe r48 (key (sx48 ing148))) +(recipe r48 (key (sy48 ing244))) +(recipe r48 (key (sx48 ing149))) +(recipe r48 (key (sy48 ing245))) +(recipe r48 (key (sx48 ing150))) +(recipe r48 (key (sy48 ing246))) +(recipe r48 (key (sx48 ing151))) +(recipe r48 (key (sy48 ing247))) +(recipe r48 (key (sx48 ing152))) +(recipe r48 (key (sy48 ing248))) +(recipe r48 (key (sx48 ing153))) +(recipe r48 (key (sy48 ing249))) +(recipe r48 (key (sx48 ing154))) +(recipe r48 (key (sy48 ing250))) +(recipe r48 (key (sx48 ing155))) +(recipe r48 (key (sy48 ing251))) +(recipe r49 (numIngredients 2)) +(recipe r49 (result (id item49))) +(recipe r49 (pattern 0 sx49)) +(recipe r49 (pattern 1 sy49)) +(recipe r49 (key (sx49 ing147))) +(recipe r49 (key (sy49 ing245))) +(recipe r49 (key (sx49 ing148))) +(recipe r49 (key (sy49 ing246))) +(recipe r49 (key (sx49 ing149))) +(recipe r49 (key (sy49 ing247))) +(recipe r49 (key (sx49 ing150))) +(recipe r49 (key (sy49 ing248))) +(recipe r49 (key (sx49 ing151))) +(recipe r49 (key (sy49 ing249))) +(recipe r49 (key (sx49 ing152))) +(recipe r49 (key (sy49 ing250))) +(recipe r49 (key (sx49 ing153))) +(recipe r49 (key (sy49 ing251))) +(recipe r49 (key (sx49 ing154))) +(recipe r49 (key (sy49 ing252))) +(recipe r49 (key (sx49 ing155))) +(recipe r49 (key (sy49 ing253))) +(recipe r49 (key (sx49 ing156))) +(recipe r49 (key (sy49 ing254))) +(recipe r49 (key (sx49 ing157))) +(recipe r49 (key (sy49 ing255))) +(recipe r49 (key (sx49 ing158))) +(recipe r49 (key (sy49 ing256))) +(recipe r50 (numIngredients 2)) +(recipe r50 (result (id item50))) +(recipe r50 (pattern 0 sx50)) +(recipe r50 (pattern 1 sy50)) +(recipe r50 (key (sx50 ing150))) +(recipe r50 (key (sy50 ing250))) +(recipe r50 (key (sx50 ing151))) +(recipe r50 (key (sy50 ing251))) +(recipe r50 (key (sx50 ing152))) +(recipe r50 (key (sy50 ing252))) +(recipe r50 (key (sx50 ing153))) +(recipe r50 (key (sy50 ing253))) +(recipe r50 (key (sx50 ing154))) +(recipe r50 (key (sy50 ing254))) +(recipe r50 (key (sx50 ing155))) +(recipe r50 (key (sy50 ing255))) +(recipe r50 (key (sx50 ing156))) +(recipe r50 (key (sy50 ing256))) +(recipe r50 (key (sx50 ing157))) +(recipe r50 (key (sy50 ing257))) +(recipe r50 (key (sx50 ing158))) +(recipe r50 (key (sy50 ing258))) +(recipe r50 (key (sx50 ing159))) +(recipe r50 (key (sy50 ing259))) +(recipe r50 (key (sx50 ing160))) +(recipe r50 (key (sy50 ing260))) +(recipe r50 (key (sx50 ing161))) +(recipe r50 (key (sy50 ing261))) +(recipe r51 (numIngredients 2)) +(recipe r51 (result (id item51))) +(recipe r51 (pattern 0 sx51)) +(recipe r51 (pattern 1 sy51)) +(recipe r51 (key (sx51 ing153))) +(recipe r51 (key (sy51 ing255))) +(recipe r51 (key (sx51 ing154))) +(recipe r51 (key (sy51 ing256))) +(recipe r51 (key (sx51 ing155))) +(recipe r51 (key (sy51 ing257))) +(recipe r51 (key (sx51 ing156))) +(recipe r51 (key (sy51 ing258))) +(recipe r51 (key (sx51 ing157))) +(recipe r51 (key (sy51 ing259))) +(recipe r51 (key (sx51 ing158))) +(recipe r51 (key (sy51 ing260))) +(recipe r51 (key (sx51 ing159))) +(recipe r51 (key (sy51 ing261))) +(recipe r51 (key (sx51 ing160))) +(recipe r51 (key (sy51 ing262))) +(recipe r51 (key (sx51 ing161))) +(recipe r51 (key (sy51 ing263))) +(recipe r51 (key (sx51 ing162))) +(recipe r51 (key (sy51 ing264))) +(recipe r51 (key (sx51 ing163))) +(recipe r51 (key (sy51 ing265))) +(recipe r51 (key (sx51 ing164))) +(recipe r51 (key (sy51 ing266))) +(recipe r52 (numIngredients 2)) +(recipe r52 (result (id item52))) +(recipe r52 (pattern 0 sx52)) +(recipe r52 (pattern 1 sy52)) +(recipe r52 (key (sx52 ing156))) +(recipe r52 (key (sy52 ing260))) +(recipe r52 (key (sx52 ing157))) +(recipe r52 (key (sy52 ing261))) +(recipe r52 (key (sx52 ing158))) +(recipe r52 (key (sy52 ing262))) +(recipe r52 (key (sx52 ing159))) +(recipe r52 (key (sy52 ing263))) +(recipe r52 (key (sx52 ing160))) +(recipe r52 (key (sy52 ing264))) +(recipe r52 (key (sx52 ing161))) +(recipe r52 (key (sy52 ing265))) +(recipe r52 (key (sx52 ing162))) +(recipe r52 (key (sy52 ing266))) +(recipe r52 (key (sx52 ing163))) +(recipe r52 (key (sy52 ing267))) +(recipe r52 (key (sx52 ing164))) +(recipe r52 (key (sy52 ing268))) +(recipe r52 (key (sx52 ing165))) +(recipe r52 (key (sy52 ing269))) +(recipe r52 (key (sx52 ing166))) +(recipe r52 (key (sy52 ing270))) +(recipe r52 (key (sx52 ing167))) +(recipe r52 (key (sy52 ing271))) +(recipe r53 (numIngredients 2)) +(recipe r53 (result (id item53))) +(recipe r53 (pattern 0 sx53)) +(recipe r53 (pattern 1 sy53)) +(recipe r53 (key (sx53 ing159))) +(recipe r53 (key (sy53 ing265))) +(recipe r53 (key (sx53 ing160))) +(recipe r53 (key (sy53 ing266))) +(recipe r53 (key (sx53 ing161))) +(recipe r53 (key (sy53 ing267))) +(recipe r53 (key (sx53 ing162))) +(recipe r53 (key (sy53 ing268))) +(recipe r53 (key (sx53 ing163))) +(recipe r53 (key (sy53 ing269))) +(recipe r53 (key (sx53 ing164))) +(recipe r53 (key (sy53 ing270))) +(recipe r53 (key (sx53 ing165))) +(recipe r53 (key (sy53 ing271))) +(recipe r53 (key (sx53 ing166))) +(recipe r53 (key (sy53 ing272))) +(recipe r53 (key (sx53 ing167))) +(recipe r53 (key (sy53 ing273))) +(recipe r53 (key (sx53 ing168))) +(recipe r53 (key (sy53 ing274))) +(recipe r53 (key (sx53 ing169))) +(recipe r53 (key (sy53 ing275))) +(recipe r53 (key (sx53 ing170))) +(recipe r53 (key (sy53 ing276))) +(recipe r54 (numIngredients 2)) +(recipe r54 (result (id item54))) +(recipe r54 (pattern 0 sx54)) +(recipe r54 (pattern 1 sy54)) +(recipe r54 (key (sx54 ing162))) +(recipe r54 (key (sy54 ing270))) +(recipe r54 (key (sx54 ing163))) +(recipe r54 (key (sy54 ing271))) +(recipe r54 (key (sx54 ing164))) +(recipe r54 (key (sy54 ing272))) +(recipe r54 (key (sx54 ing165))) +(recipe r54 (key (sy54 ing273))) +(recipe r54 (key (sx54 ing166))) +(recipe r54 (key (sy54 ing274))) +(recipe r54 (key (sx54 ing167))) +(recipe r54 (key (sy54 ing275))) +(recipe r54 (key (sx54 ing168))) +(recipe r54 (key (sy54 ing276))) +(recipe r54 (key (sx54 ing169))) +(recipe r54 (key (sy54 ing277))) +(recipe r54 (key (sx54 ing170))) +(recipe r54 (key (sy54 ing278))) +(recipe r54 (key (sx54 ing171))) +(recipe r54 (key (sy54 ing279))) +(recipe r54 (key (sx54 ing172))) +(recipe r54 (key (sy54 ing280))) +(recipe r54 (key (sx54 ing173))) +(recipe r54 (key (sy54 ing281))) +(recipe r55 (numIngredients 2)) +(recipe r55 (result (id item55))) +(recipe r55 (pattern 0 sx55)) +(recipe r55 (pattern 1 sy55)) +(recipe r55 (key (sx55 ing165))) +(recipe r55 (key (sy55 ing275))) +(recipe r55 (key (sx55 ing166))) +(recipe r55 (key (sy55 ing276))) +(recipe r55 (key (sx55 ing167))) +(recipe r55 (key (sy55 ing277))) +(recipe r55 (key (sx55 ing168))) +(recipe r55 (key (sy55 ing278))) +(recipe r55 (key (sx55 ing169))) +(recipe r55 (key (sy55 ing279))) +(recipe r55 (key (sx55 ing170))) +(recipe r55 (key (sy55 ing280))) +(recipe r55 (key (sx55 ing171))) +(recipe r55 (key (sy55 ing281))) +(recipe r55 (key (sx55 ing172))) +(recipe r55 (key (sy55 ing282))) +(recipe r55 (key (sx55 ing173))) +(recipe r55 (key (sy55 ing283))) +(recipe r55 (key (sx55 ing174))) +(recipe r55 (key (sy55 ing284))) +(recipe r55 (key (sx55 ing175))) +(recipe r55 (key (sy55 ing285))) +(recipe r55 (key (sx55 ing176))) +(recipe r55 (key (sy55 ing286))) +(recipe r56 (numIngredients 2)) +(recipe r56 (result (id item56))) +(recipe r56 (pattern 0 sx56)) +(recipe r56 (pattern 1 sy56)) +(recipe r56 (key (sx56 ing168))) +(recipe r56 (key (sy56 ing280))) +(recipe r56 (key (sx56 ing169))) +(recipe r56 (key (sy56 ing281))) +(recipe r56 (key (sx56 ing170))) +(recipe r56 (key (sy56 ing282))) +(recipe r56 (key (sx56 ing171))) +(recipe r56 (key (sy56 ing283))) +(recipe r56 (key (sx56 ing172))) +(recipe r56 (key (sy56 ing284))) +(recipe r56 (key (sx56 ing173))) +(recipe r56 (key (sy56 ing285))) +(recipe r56 (key (sx56 ing174))) +(recipe r56 (key (sy56 ing286))) +(recipe r56 (key (sx56 ing175))) +(recipe r56 (key (sy56 ing287))) +(recipe r56 (key (sx56 ing176))) +(recipe r56 (key (sy56 ing288))) +(recipe r56 (key (sx56 ing177))) +(recipe r56 (key (sy56 ing289))) +(recipe r56 (key (sx56 ing178))) +(recipe r56 (key (sy56 ing290))) +(recipe r56 (key (sx56 ing179))) +(recipe r56 (key (sy56 ing291))) +(recipe r57 (numIngredients 2)) +(recipe r57 (result (id item57))) +(recipe r57 (pattern 0 sx57)) +(recipe r57 (pattern 1 sy57)) +(recipe r57 (key (sx57 ing171))) +(recipe r57 (key (sy57 ing285))) +(recipe r57 (key (sx57 ing172))) +(recipe r57 (key (sy57 ing286))) +(recipe r57 (key (sx57 ing173))) +(recipe r57 (key (sy57 ing287))) +(recipe r57 (key (sx57 ing174))) +(recipe r57 (key (sy57 ing288))) +(recipe r57 (key (sx57 ing175))) +(recipe r57 (key (sy57 ing289))) +(recipe r57 (key (sx57 ing176))) +(recipe r57 (key (sy57 ing290))) +(recipe r57 (key (sx57 ing177))) +(recipe r57 (key (sy57 ing291))) +(recipe r57 (key (sx57 ing178))) +(recipe r57 (key (sy57 ing292))) +(recipe r57 (key (sx57 ing179))) +(recipe r57 (key (sy57 ing293))) +(recipe r57 (key (sx57 ing180))) +(recipe r57 (key (sy57 ing294))) +(recipe r57 (key (sx57 ing181))) +(recipe r57 (key (sy57 ing295))) +(recipe r57 (key (sx57 ing182))) +(recipe r57 (key (sy57 ing296))) +(recipe r58 (numIngredients 2)) +(recipe r58 (result (id item58))) +(recipe r58 (pattern 0 sx58)) +(recipe r58 (pattern 1 sy58)) +(recipe r58 (key (sx58 ing174))) +(recipe r58 (key (sy58 ing290))) +(recipe r58 (key (sx58 ing175))) +(recipe r58 (key (sy58 ing291))) +(recipe r58 (key (sx58 ing176))) +(recipe r58 (key (sy58 ing292))) +(recipe r58 (key (sx58 ing177))) +(recipe r58 (key (sy58 ing293))) +(recipe r58 (key (sx58 ing178))) +(recipe r58 (key (sy58 ing294))) +(recipe r58 (key (sx58 ing179))) +(recipe r58 (key (sy58 ing295))) +(recipe r58 (key (sx58 ing180))) +(recipe r58 (key (sy58 ing296))) +(recipe r58 (key (sx58 ing181))) +(recipe r58 (key (sy58 ing297))) +(recipe r58 (key (sx58 ing182))) +(recipe r58 (key (sy58 ing298))) +(recipe r58 (key (sx58 ing183))) +(recipe r58 (key (sy58 ing299))) +(recipe r58 (key (sx58 ing184))) +(recipe r58 (key (sy58 ing300))) +(recipe r58 (key (sx58 ing185))) +(recipe r58 (key (sy58 ing301))) +(recipe r59 (numIngredients 2)) +(recipe r59 (result (id item59))) +(recipe r59 (pattern 0 sx59)) +(recipe r59 (pattern 1 sy59)) +(recipe r59 (key (sx59 ing177))) +(recipe r59 (key (sy59 ing295))) +(recipe r59 (key (sx59 ing178))) +(recipe r59 (key (sy59 ing296))) +(recipe r59 (key (sx59 ing179))) +(recipe r59 (key (sy59 ing297))) +(recipe r59 (key (sx59 ing180))) +(recipe r59 (key (sy59 ing298))) +(recipe r59 (key (sx59 ing181))) +(recipe r59 (key (sy59 ing299))) +(recipe r59 (key (sx59 ing182))) +(recipe r59 (key (sy59 ing300))) +(recipe r59 (key (sx59 ing183))) +(recipe r59 (key (sy59 ing301))) +(recipe r59 (key (sx59 ing184))) +(recipe r59 (key (sy59 ing302))) +(recipe r59 (key (sx59 ing185))) +(recipe r59 (key (sy59 ing303))) +(recipe r59 (key (sx59 ing186))) +(recipe r59 (key (sy59 ing304))) +(recipe r59 (key (sx59 ing187))) +(recipe r59 (key (sy59 ing305))) +(recipe r59 (key (sx59 ing188))) +(recipe r59 (key (sy59 ing306))) +(recipe r60 (numIngredients 2)) +(recipe r60 (result (id item60))) +(recipe r60 (pattern 0 sx60)) +(recipe r60 (pattern 1 sy60)) +(recipe r60 (key (sx60 ing180))) +(recipe r60 (key (sy60 ing300))) +(recipe r60 (key (sx60 ing181))) +(recipe r60 (key (sy60 ing301))) +(recipe r60 (key (sx60 ing182))) +(recipe r60 (key (sy60 ing302))) +(recipe r60 (key (sx60 ing183))) +(recipe r60 (key (sy60 ing303))) +(recipe r60 (key (sx60 ing184))) +(recipe r60 (key (sy60 ing304))) +(recipe r60 (key (sx60 ing185))) +(recipe r60 (key (sy60 ing305))) +(recipe r60 (key (sx60 ing186))) +(recipe r60 (key (sy60 ing306))) +(recipe r60 (key (sx60 ing187))) +(recipe r60 (key (sy60 ing307))) +(recipe r60 (key (sx60 ing188))) +(recipe r60 (key (sy60 ing308))) +(recipe r60 (key (sx60 ing189))) +(recipe r60 (key (sy60 ing309))) +(recipe r60 (key (sx60 ing190))) +(recipe r60 (key (sy60 ing310))) +(recipe r60 (key (sx60 ing191))) +(recipe r60 (key (sy60 ing311))) +(recipe r61 (numIngredients 2)) +(recipe r61 (result (id item61))) +(recipe r61 (pattern 0 sx61)) +(recipe r61 (pattern 1 sy61)) +(recipe r61 (key (sx61 ing183))) +(recipe r61 (key (sy61 ing305))) +(recipe r61 (key (sx61 ing184))) +(recipe r61 (key (sy61 ing306))) +(recipe r61 (key (sx61 ing185))) +(recipe r61 (key (sy61 ing307))) +(recipe r61 (key (sx61 ing186))) +(recipe r61 (key (sy61 ing308))) +(recipe r61 (key (sx61 ing187))) +(recipe r61 (key (sy61 ing309))) +(recipe r61 (key (sx61 ing188))) +(recipe r61 (key (sy61 ing310))) +(recipe r61 (key (sx61 ing189))) +(recipe r61 (key (sy61 ing311))) +(recipe r61 (key (sx61 ing190))) +(recipe r61 (key (sy61 ing312))) +(recipe r61 (key (sx61 ing191))) +(recipe r61 (key (sy61 ing313))) +(recipe r61 (key (sx61 ing192))) +(recipe r61 (key (sy61 ing314))) +(recipe r61 (key (sx61 ing193))) +(recipe r61 (key (sy61 ing315))) +(recipe r61 (key (sx61 ing194))) +(recipe r61 (key (sy61 ing316))) +(recipe r62 (numIngredients 2)) +(recipe r62 (result (id item62))) +(recipe r62 (pattern 0 sx62)) +(recipe r62 (pattern 1 sy62)) +(recipe r62 (key (sx62 ing186))) +(recipe r62 (key (sy62 ing310))) +(recipe r62 (key (sx62 ing187))) +(recipe r62 (key (sy62 ing311))) +(recipe r62 (key (sx62 ing188))) +(recipe r62 (key (sy62 ing312))) +(recipe r62 (key (sx62 ing189))) +(recipe r62 (key (sy62 ing313))) +(recipe r62 (key (sx62 ing190))) +(recipe r62 (key (sy62 ing314))) +(recipe r62 (key (sx62 ing191))) +(recipe r62 (key (sy62 ing315))) +(recipe r62 (key (sx62 ing192))) +(recipe r62 (key (sy62 ing316))) +(recipe r62 (key (sx62 ing193))) +(recipe r62 (key (sy62 ing317))) +(recipe r62 (key (sx62 ing194))) +(recipe r62 (key (sy62 ing318))) +(recipe r62 (key (sx62 ing195))) +(recipe r62 (key (sy62 ing319))) +(recipe r62 (key (sx62 ing196))) +(recipe r62 (key (sy62 ing320))) +(recipe r62 (key (sx62 ing197))) +(recipe r62 (key (sy62 ing321))) +(recipe r63 (numIngredients 2)) +(recipe r63 (result (id item63))) +(recipe r63 (pattern 0 sx63)) +(recipe r63 (pattern 1 sy63)) +(recipe r63 (key (sx63 ing189))) +(recipe r63 (key (sy63 ing315))) +(recipe r63 (key (sx63 ing190))) +(recipe r63 (key (sy63 ing316))) +(recipe r63 (key (sx63 ing191))) +(recipe r63 (key (sy63 ing317))) +(recipe r63 (key (sx63 ing192))) +(recipe r63 (key (sy63 ing318))) +(recipe r63 (key (sx63 ing193))) +(recipe r63 (key (sy63 ing319))) +(recipe r63 (key (sx63 ing194))) +(recipe r63 (key (sy63 ing320))) +(recipe r63 (key (sx63 ing195))) +(recipe r63 (key (sy63 ing321))) +(recipe r63 (key (sx63 ing196))) +(recipe r63 (key (sy63 ing322))) +(recipe r63 (key (sx63 ing197))) +(recipe r63 (key (sy63 ing323))) +(recipe r63 (key (sx63 ing198))) +(recipe r63 (key (sy63 ing324))) +(recipe r63 (key (sx63 ing199))) +(recipe r63 (key (sy63 ing325))) +(recipe r63 (key (sx63 ing200))) +(recipe r63 (key (sy63 ing326))) +(recipe r64 (numIngredients 2)) +(recipe r64 (result (id item64))) +(recipe r64 (pattern 0 sx64)) +(recipe r64 (pattern 1 sy64)) +(recipe r64 (key (sx64 ing192))) +(recipe r64 (key (sy64 ing320))) +(recipe r64 (key (sx64 ing193))) +(recipe r64 (key (sy64 ing321))) +(recipe r64 (key (sx64 ing194))) +(recipe r64 (key (sy64 ing322))) +(recipe r64 (key (sx64 ing195))) +(recipe r64 (key (sy64 ing323))) +(recipe r64 (key (sx64 ing196))) +(recipe r64 (key (sy64 ing324))) +(recipe r64 (key (sx64 ing197))) +(recipe r64 (key (sy64 ing325))) +(recipe r64 (key (sx64 ing198))) +(recipe r64 (key (sy64 ing326))) +(recipe r64 (key (sx64 ing199))) +(recipe r64 (key (sy64 ing327))) +(recipe r64 (key (sx64 ing200))) +(recipe r64 (key (sy64 ing328))) +(recipe r64 (key (sx64 ing201))) +(recipe r64 (key (sy64 ing329))) +(recipe r64 (key (sx64 ing202))) +(recipe r64 (key (sy64 ing330))) +(recipe r64 (key (sx64 ing203))) +(recipe r64 (key (sy64 ing331))) +(recipe r65 (numIngredients 2)) +(recipe r65 (result (id item65))) +(recipe r65 (pattern 0 sx65)) +(recipe r65 (pattern 1 sy65)) +(recipe r65 (key (sx65 ing195))) +(recipe r65 (key (sy65 ing325))) +(recipe r65 (key (sx65 ing196))) +(recipe r65 (key (sy65 ing326))) +(recipe r65 (key (sx65 ing197))) +(recipe r65 (key (sy65 ing327))) +(recipe r65 (key (sx65 ing198))) +(recipe r65 (key (sy65 ing328))) +(recipe r65 (key (sx65 ing199))) +(recipe r65 (key (sy65 ing329))) +(recipe r65 (key (sx65 ing200))) +(recipe r65 (key (sy65 ing330))) +(recipe r65 (key (sx65 ing201))) +(recipe r65 (key (sy65 ing331))) +(recipe r65 (key (sx65 ing202))) +(recipe r65 (key (sy65 ing332))) +(recipe r65 (key (sx65 ing203))) +(recipe r65 (key (sy65 ing333))) +(recipe r65 (key (sx65 ing204))) +(recipe r65 (key (sy65 ing334))) +(recipe r65 (key (sx65 ing205))) +(recipe r65 (key (sy65 ing335))) +(recipe r65 (key (sx65 ing206))) +(recipe r65 (key (sy65 ing336))) +(recipe r66 (numIngredients 2)) +(recipe r66 (result (id item66))) +(recipe r66 (pattern 0 sx66)) +(recipe r66 (pattern 1 sy66)) +(recipe r66 (key (sx66 ing198))) +(recipe r66 (key (sy66 ing330))) +(recipe r66 (key (sx66 ing199))) +(recipe r66 (key (sy66 ing331))) +(recipe r66 (key (sx66 ing200))) +(recipe r66 (key (sy66 ing332))) +(recipe r66 (key (sx66 ing201))) +(recipe r66 (key (sy66 ing333))) +(recipe r66 (key (sx66 ing202))) +(recipe r66 (key (sy66 ing334))) +(recipe r66 (key (sx66 ing203))) +(recipe r66 (key (sy66 ing335))) +(recipe r66 (key (sx66 ing204))) +(recipe r66 (key (sy66 ing336))) +(recipe r66 (key (sx66 ing205))) +(recipe r66 (key (sy66 ing337))) +(recipe r66 (key (sx66 ing206))) +(recipe r66 (key (sy66 ing338))) +(recipe r66 (key (sx66 ing207))) +(recipe r66 (key (sy66 ing339))) +(recipe r66 (key (sx66 ing208))) +(recipe r66 (key (sy66 ing340))) +(recipe r66 (key (sx66 ing209))) +(recipe r66 (key (sy66 ing341))) +(recipe r67 (numIngredients 2)) +(recipe r67 (result (id item67))) +(recipe r67 (pattern 0 sx67)) +(recipe r67 (pattern 1 sy67)) +(recipe r67 (key (sx67 ing201))) +(recipe r67 (key (sy67 ing335))) +(recipe r67 (key (sx67 ing202))) +(recipe r67 (key (sy67 ing336))) +(recipe r67 (key (sx67 ing203))) +(recipe r67 (key (sy67 ing337))) +(recipe r67 (key (sx67 ing204))) +(recipe r67 (key (sy67 ing338))) +(recipe r67 (key (sx67 ing205))) +(recipe r67 (key (sy67 ing339))) +(recipe r67 (key (sx67 ing206))) +(recipe r67 (key (sy67 ing340))) +(recipe r67 (key (sx67 ing207))) +(recipe r67 (key (sy67 ing341))) +(recipe r67 (key (sx67 ing208))) +(recipe r67 (key (sy67 ing342))) +(recipe r67 (key (sx67 ing209))) +(recipe r67 (key (sy67 ing343))) +(recipe r67 (key (sx67 ing210))) +(recipe r67 (key (sy67 ing344))) +(recipe r67 (key (sx67 ing211))) +(recipe r67 (key (sy67 ing345))) +(recipe r67 (key (sx67 ing212))) +(recipe r67 (key (sy67 ing346))) +(recipe r68 (numIngredients 2)) +(recipe r68 (result (id item68))) +(recipe r68 (pattern 0 sx68)) +(recipe r68 (pattern 1 sy68)) +(recipe r68 (key (sx68 ing204))) +(recipe r68 (key (sy68 ing340))) +(recipe r68 (key (sx68 ing205))) +(recipe r68 (key (sy68 ing341))) +(recipe r68 (key (sx68 ing206))) +(recipe r68 (key (sy68 ing342))) +(recipe r68 (key (sx68 ing207))) +(recipe r68 (key (sy68 ing343))) +(recipe r68 (key (sx68 ing208))) +(recipe r68 (key (sy68 ing344))) +(recipe r68 (key (sx68 ing209))) +(recipe r68 (key (sy68 ing345))) +(recipe r68 (key (sx68 ing210))) +(recipe r68 (key (sy68 ing346))) +(recipe r68 (key (sx68 ing211))) +(recipe r68 (key (sy68 ing347))) +(recipe r68 (key (sx68 ing212))) +(recipe r68 (key (sy68 ing348))) +(recipe r68 (key (sx68 ing213))) +(recipe r68 (key (sy68 ing349))) +(recipe r68 (key (sx68 ing214))) +(recipe r68 (key (sy68 ing350))) +(recipe r68 (key (sx68 ing215))) +(recipe r68 (key (sy68 ing351))) +(recipe r69 (numIngredients 2)) +(recipe r69 (result (id item69))) +(recipe r69 (pattern 0 sx69)) +(recipe r69 (pattern 1 sy69)) +(recipe r69 (key (sx69 ing207))) +(recipe r69 (key (sy69 ing345))) +(recipe r69 (key (sx69 ing208))) +(recipe r69 (key (sy69 ing346))) +(recipe r69 (key (sx69 ing209))) +(recipe r69 (key (sy69 ing347))) +(recipe r69 (key (sx69 ing210))) +(recipe r69 (key (sy69 ing348))) +(recipe r69 (key (sx69 ing211))) +(recipe r69 (key (sy69 ing349))) +(recipe r69 (key (sx69 ing212))) +(recipe r69 (key (sy69 ing350))) +(recipe r69 (key (sx69 ing213))) +(recipe r69 (key (sy69 ing351))) +(recipe r69 (key (sx69 ing214))) +(recipe r69 (key (sy69 ing352))) +(recipe r69 (key (sx69 ing215))) +(recipe r69 (key (sy69 ing353))) +(recipe r69 (key (sx69 ing216))) +(recipe r69 (key (sy69 ing354))) +(recipe r69 (key (sx69 ing217))) +(recipe r69 (key (sy69 ing355))) +(recipe r69 (key (sx69 ing218))) +(recipe r69 (key (sy69 ing356))) +(recipe r70 (numIngredients 2)) +(recipe r70 (result (id item70))) +(recipe r70 (pattern 0 sx70)) +(recipe r70 (pattern 1 sy70)) +(recipe r70 (key (sx70 ing210))) +(recipe r70 (key (sy70 ing350))) +(recipe r70 (key (sx70 ing211))) +(recipe r70 (key (sy70 ing351))) +(recipe r70 (key (sx70 ing212))) +(recipe r70 (key (sy70 ing352))) +(recipe r70 (key (sx70 ing213))) +(recipe r70 (key (sy70 ing353))) +(recipe r70 (key (sx70 ing214))) +(recipe r70 (key (sy70 ing354))) +(recipe r70 (key (sx70 ing215))) +(recipe r70 (key (sy70 ing355))) +(recipe r70 (key (sx70 ing216))) +(recipe r70 (key (sy70 ing356))) +(recipe r70 (key (sx70 ing217))) +(recipe r70 (key (sy70 ing357))) +(recipe r70 (key (sx70 ing218))) +(recipe r70 (key (sy70 ing358))) +(recipe r70 (key (sx70 ing219))) +(recipe r70 (key (sy70 ing359))) +(recipe r70 (key (sx70 ing220))) +(recipe r70 (key (sy70 ing360))) +(recipe r70 (key (sx70 ing221))) +(recipe r70 (key (sy70 ing361))) +(recipe r71 (numIngredients 2)) +(recipe r71 (result (id item71))) +(recipe r71 (pattern 0 sx71)) +(recipe r71 (pattern 1 sy71)) +(recipe r71 (key (sx71 ing213))) +(recipe r71 (key (sy71 ing355))) +(recipe r71 (key (sx71 ing214))) +(recipe r71 (key (sy71 ing356))) +(recipe r71 (key (sx71 ing215))) +(recipe r71 (key (sy71 ing357))) +(recipe r71 (key (sx71 ing216))) +(recipe r71 (key (sy71 ing358))) +(recipe r71 (key (sx71 ing217))) +(recipe r71 (key (sy71 ing359))) +(recipe r71 (key (sx71 ing218))) +(recipe r71 (key (sy71 ing360))) +(recipe r71 (key (sx71 ing219))) +(recipe r71 (key (sy71 ing361))) +(recipe r71 (key (sx71 ing220))) +(recipe r71 (key (sy71 ing362))) +(recipe r71 (key (sx71 ing221))) +(recipe r71 (key (sy71 ing363))) +(recipe r71 (key (sx71 ing222))) +(recipe r71 (key (sy71 ing364))) +(recipe r71 (key (sx71 ing223))) +(recipe r71 (key (sy71 ing365))) +(recipe r71 (key (sx71 ing224))) +(recipe r71 (key (sy71 ing366))) +(recipe r72 (numIngredients 2)) +(recipe r72 (result (id item72))) +(recipe r72 (pattern 0 sx72)) +(recipe r72 (pattern 1 sy72)) +(recipe r72 (key (sx72 ing216))) +(recipe r72 (key (sy72 ing360))) +(recipe r72 (key (sx72 ing217))) +(recipe r72 (key (sy72 ing361))) +(recipe r72 (key (sx72 ing218))) +(recipe r72 (key (sy72 ing362))) +(recipe r72 (key (sx72 ing219))) +(recipe r72 (key (sy72 ing363))) +(recipe r72 (key (sx72 ing220))) +(recipe r72 (key (sy72 ing364))) +(recipe r72 (key (sx72 ing221))) +(recipe r72 (key (sy72 ing365))) +(recipe r72 (key (sx72 ing222))) +(recipe r72 (key (sy72 ing366))) +(recipe r72 (key (sx72 ing223))) +(recipe r72 (key (sy72 ing367))) +(recipe r72 (key (sx72 ing224))) +(recipe r72 (key (sy72 ing368))) +(recipe r72 (key (sx72 ing225))) +(recipe r72 (key (sy72 ing369))) +(recipe r72 (key (sx72 ing226))) +(recipe r72 (key (sy72 ing370))) +(recipe r72 (key (sx72 ing227))) +(recipe r72 (key (sy72 ing371))) +(recipe r73 (numIngredients 2)) +(recipe r73 (result (id item73))) +(recipe r73 (pattern 0 sx73)) +(recipe r73 (pattern 1 sy73)) +(recipe r73 (key (sx73 ing219))) +(recipe r73 (key (sy73 ing365))) +(recipe r73 (key (sx73 ing220))) +(recipe r73 (key (sy73 ing366))) +(recipe r73 (key (sx73 ing221))) +(recipe r73 (key (sy73 ing367))) +(recipe r73 (key (sx73 ing222))) +(recipe r73 (key (sy73 ing368))) +(recipe r73 (key (sx73 ing223))) +(recipe r73 (key (sy73 ing369))) +(recipe r73 (key (sx73 ing224))) +(recipe r73 (key (sy73 ing370))) +(recipe r73 (key (sx73 ing225))) +(recipe r73 (key (sy73 ing371))) +(recipe r73 (key (sx73 ing226))) +(recipe r73 (key (sy73 ing372))) +(recipe r73 (key (sx73 ing227))) +(recipe r73 (key (sy73 ing373))) +(recipe r73 (key (sx73 ing228))) +(recipe r73 (key (sy73 ing374))) +(recipe r73 (key (sx73 ing229))) +(recipe r73 (key (sy73 ing375))) +(recipe r73 (key (sx73 ing230))) +(recipe r73 (key (sy73 ing376))) +(recipe r74 (numIngredients 2)) +(recipe r74 (result (id item74))) +(recipe r74 (pattern 0 sx74)) +(recipe r74 (pattern 1 sy74)) +(recipe r74 (key (sx74 ing222))) +(recipe r74 (key (sy74 ing370))) +(recipe r74 (key (sx74 ing223))) +(recipe r74 (key (sy74 ing371))) +(recipe r74 (key (sx74 ing224))) +(recipe r74 (key (sy74 ing372))) +(recipe r74 (key (sx74 ing225))) +(recipe r74 (key (sy74 ing373))) +(recipe r74 (key (sx74 ing226))) +(recipe r74 (key (sy74 ing374))) +(recipe r74 (key (sx74 ing227))) +(recipe r74 (key (sy74 ing375))) +(recipe r74 (key (sx74 ing228))) +(recipe r74 (key (sy74 ing376))) +(recipe r74 (key (sx74 ing229))) +(recipe r74 (key (sy74 ing377))) +(recipe r74 (key (sx74 ing230))) +(recipe r74 (key (sy74 ing378))) +(recipe r74 (key (sx74 ing231))) +(recipe r74 (key (sy74 ing379))) +(recipe r74 (key (sx74 ing232))) +(recipe r74 (key (sy74 ing380))) +(recipe r74 (key (sx74 ing233))) +(recipe r74 (key (sy74 ing381))) +(recipe r75 (numIngredients 2)) +(recipe r75 (result (id item75))) +(recipe r75 (pattern 0 sx75)) +(recipe r75 (pattern 1 sy75)) +(recipe r75 (key (sx75 ing225))) +(recipe r75 (key (sy75 ing375))) +(recipe r75 (key (sx75 ing226))) +(recipe r75 (key (sy75 ing376))) +(recipe r75 (key (sx75 ing227))) +(recipe r75 (key (sy75 ing377))) +(recipe r75 (key (sx75 ing228))) +(recipe r75 (key (sy75 ing378))) +(recipe r75 (key (sx75 ing229))) +(recipe r75 (key (sy75 ing379))) +(recipe r75 (key (sx75 ing230))) +(recipe r75 (key (sy75 ing380))) +(recipe r75 (key (sx75 ing231))) +(recipe r75 (key (sy75 ing381))) +(recipe r75 (key (sx75 ing232))) +(recipe r75 (key (sy75 ing382))) +(recipe r75 (key (sx75 ing233))) +(recipe r75 (key (sy75 ing383))) +(recipe r75 (key (sx75 ing234))) +(recipe r75 (key (sy75 ing384))) +(recipe r75 (key (sx75 ing235))) +(recipe r75 (key (sy75 ing385))) +(recipe r75 (key (sx75 ing236))) +(recipe r75 (key (sy75 ing386))) +(recipe r76 (numIngredients 2)) +(recipe r76 (result (id item76))) +(recipe r76 (pattern 0 sx76)) +(recipe r76 (pattern 1 sy76)) +(recipe r76 (key (sx76 ing228))) +(recipe r76 (key (sy76 ing380))) +(recipe r76 (key (sx76 ing229))) +(recipe r76 (key (sy76 ing381))) +(recipe r76 (key (sx76 ing230))) +(recipe r76 (key (sy76 ing382))) +(recipe r76 (key (sx76 ing231))) +(recipe r76 (key (sy76 ing383))) +(recipe r76 (key (sx76 ing232))) +(recipe r76 (key (sy76 ing384))) +(recipe r76 (key (sx76 ing233))) +(recipe r76 (key (sy76 ing385))) +(recipe r76 (key (sx76 ing234))) +(recipe r76 (key (sy76 ing386))) +(recipe r76 (key (sx76 ing235))) +(recipe r76 (key (sy76 ing387))) +(recipe r76 (key (sx76 ing236))) +(recipe r76 (key (sy76 ing388))) +(recipe r76 (key (sx76 ing237))) +(recipe r76 (key (sy76 ing389))) +(recipe r76 (key (sx76 ing238))) +(recipe r76 (key (sy76 ing390))) +(recipe r76 (key (sx76 ing239))) +(recipe r76 (key (sy76 ing391))) +(recipe r77 (numIngredients 2)) +(recipe r77 (result (id item77))) +(recipe r77 (pattern 0 sx77)) +(recipe r77 (pattern 1 sy77)) +(recipe r77 (key (sx77 ing231))) +(recipe r77 (key (sy77 ing385))) +(recipe r77 (key (sx77 ing232))) +(recipe r77 (key (sy77 ing386))) +(recipe r77 (key (sx77 ing233))) +(recipe r77 (key (sy77 ing387))) +(recipe r77 (key (sx77 ing234))) +(recipe r77 (key (sy77 ing388))) +(recipe r77 (key (sx77 ing235))) +(recipe r77 (key (sy77 ing389))) +(recipe r77 (key (sx77 ing236))) +(recipe r77 (key (sy77 ing390))) +(recipe r77 (key (sx77 ing237))) +(recipe r77 (key (sy77 ing391))) +(recipe r77 (key (sx77 ing238))) +(recipe r77 (key (sy77 ing392))) +(recipe r77 (key (sx77 ing239))) +(recipe r77 (key (sy77 ing393))) +(recipe r77 (key (sx77 ing240))) +(recipe r77 (key (sy77 ing394))) +(recipe r77 (key (sx77 ing241))) +(recipe r77 (key (sy77 ing395))) +(recipe r77 (key (sx77 ing242))) +(recipe r77 (key (sy77 ing396))) +(recipe r78 (numIngredients 2)) +(recipe r78 (result (id item78))) +(recipe r78 (pattern 0 sx78)) +(recipe r78 (pattern 1 sy78)) +(recipe r78 (key (sx78 ing234))) +(recipe r78 (key (sy78 ing390))) +(recipe r78 (key (sx78 ing235))) +(recipe r78 (key (sy78 ing391))) +(recipe r78 (key (sx78 ing236))) +(recipe r78 (key (sy78 ing392))) +(recipe r78 (key (sx78 ing237))) +(recipe r78 (key (sy78 ing393))) +(recipe r78 (key (sx78 ing238))) +(recipe r78 (key (sy78 ing394))) +(recipe r78 (key (sx78 ing239))) +(recipe r78 (key (sy78 ing395))) +(recipe r78 (key (sx78 ing240))) +(recipe r78 (key (sy78 ing396))) +(recipe r78 (key (sx78 ing241))) +(recipe r78 (key (sy78 ing397))) +(recipe r78 (key (sx78 ing242))) +(recipe r78 (key (sy78 ing398))) +(recipe r78 (key (sx78 ing243))) +(recipe r78 (key (sy78 ing399))) +(recipe r78 (key (sx78 ing244))) +(recipe r78 (key (sy78 ing400))) +(recipe r78 (key (sx78 ing245))) +(recipe r78 (key (sy78 ing401))) +(recipe r79 (numIngredients 2)) +(recipe r79 (result (id item79))) +(recipe r79 (pattern 0 sx79)) +(recipe r79 (pattern 1 sy79)) +(recipe r79 (key (sx79 ing237))) +(recipe r79 (key (sy79 ing395))) +(recipe r79 (key (sx79 ing238))) +(recipe r79 (key (sy79 ing396))) +(recipe r79 (key (sx79 ing239))) +(recipe r79 (key (sy79 ing397))) +(recipe r79 (key (sx79 ing240))) +(recipe r79 (key (sy79 ing398))) +(recipe r79 (key (sx79 ing241))) +(recipe r79 (key (sy79 ing399))) +(recipe r79 (key (sx79 ing242))) +(recipe r79 (key (sy79 ing400))) +(recipe r79 (key (sx79 ing243))) +(recipe r79 (key (sy79 ing401))) +(recipe r79 (key (sx79 ing244))) +(recipe r79 (key (sy79 ing402))) +(recipe r79 (key (sx79 ing245))) +(recipe r79 (key (sy79 ing403))) +(recipe r79 (key (sx79 ing246))) +(recipe r79 (key (sy79 ing404))) +(recipe r79 (key (sx79 ing247))) +(recipe r79 (key (sy79 ing405))) +(recipe r79 (key (sx79 ing248))) +(recipe r79 (key (sy79 ing406))) +(recipe r80 (numIngredients 2)) +(recipe r80 (result (id item80))) +(recipe r80 (pattern 0 sx80)) +(recipe r80 (pattern 1 sy80)) +(recipe r80 (key (sx80 ing240))) +(recipe r80 (key (sy80 ing400))) +(recipe r80 (key (sx80 ing241))) +(recipe r80 (key (sy80 ing401))) +(recipe r80 (key (sx80 ing242))) +(recipe r80 (key (sy80 ing402))) +(recipe r80 (key (sx80 ing243))) +(recipe r80 (key (sy80 ing403))) +(recipe r80 (key (sx80 ing244))) +(recipe r80 (key (sy80 ing404))) +(recipe r80 (key (sx80 ing245))) +(recipe r80 (key (sy80 ing405))) +(recipe r80 (key (sx80 ing246))) +(recipe r80 (key (sy80 ing406))) +(recipe r80 (key (sx80 ing247))) +(recipe r80 (key (sy80 ing407))) +(recipe r80 (key (sx80 ing248))) +(recipe r80 (key (sy80 ing408))) +(recipe r80 (key (sx80 ing249))) +(recipe r80 (key (sy80 ing409))) +(recipe r80 (key (sx80 ing250))) +(recipe r80 (key (sy80 ing410))) +(recipe r80 (key (sx80 ing251))) +(recipe r80 (key (sy80 ing411))) +(recipe r81 (numIngredients 2)) +(recipe r81 (result (id item81))) +(recipe r81 (pattern 0 sx81)) +(recipe r81 (pattern 1 sy81)) +(recipe r81 (key (sx81 ing243))) +(recipe r81 (key (sy81 ing405))) +(recipe r81 (key (sx81 ing244))) +(recipe r81 (key (sy81 ing406))) +(recipe r81 (key (sx81 ing245))) +(recipe r81 (key (sy81 ing407))) +(recipe r81 (key (sx81 ing246))) +(recipe r81 (key (sy81 ing408))) +(recipe r81 (key (sx81 ing247))) +(recipe r81 (key (sy81 ing409))) +(recipe r81 (key (sx81 ing248))) +(recipe r81 (key (sy81 ing410))) +(recipe r81 (key (sx81 ing249))) +(recipe r81 (key (sy81 ing411))) +(recipe r81 (key (sx81 ing250))) +(recipe r81 (key (sy81 ing412))) +(recipe r81 (key (sx81 ing251))) +(recipe r81 (key (sy81 ing413))) +(recipe r81 (key (sx81 ing252))) +(recipe r81 (key (sy81 ing414))) +(recipe r81 (key (sx81 ing253))) +(recipe r81 (key (sy81 ing415))) +(recipe r81 (key (sx81 ing254))) +(recipe r81 (key (sy81 ing416))) +(recipe r82 (numIngredients 2)) +(recipe r82 (result (id item82))) +(recipe r82 (pattern 0 sx82)) +(recipe r82 (pattern 1 sy82)) +(recipe r82 (key (sx82 ing246))) +(recipe r82 (key (sy82 ing410))) +(recipe r82 (key (sx82 ing247))) +(recipe r82 (key (sy82 ing411))) +(recipe r82 (key (sx82 ing248))) +(recipe r82 (key (sy82 ing412))) +(recipe r82 (key (sx82 ing249))) +(recipe r82 (key (sy82 ing413))) +(recipe r82 (key (sx82 ing250))) +(recipe r82 (key (sy82 ing414))) +(recipe r82 (key (sx82 ing251))) +(recipe r82 (key (sy82 ing415))) +(recipe r82 (key (sx82 ing252))) +(recipe r82 (key (sy82 ing416))) +(recipe r82 (key (sx82 ing253))) +(recipe r82 (key (sy82 ing417))) +(recipe r82 (key (sx82 ing254))) +(recipe r82 (key (sy82 ing418))) +(recipe r82 (key (sx82 ing255))) +(recipe r82 (key (sy82 ing419))) +(recipe r82 (key (sx82 ing256))) +(recipe r82 (key (sy82 ing420))) +(recipe r82 (key (sx82 ing257))) +(recipe r82 (key (sy82 ing421))) +(recipe r83 (numIngredients 2)) +(recipe r83 (result (id item83))) +(recipe r83 (pattern 0 sx83)) +(recipe r83 (pattern 1 sy83)) +(recipe r83 (key (sx83 ing249))) +(recipe r83 (key (sy83 ing415))) +(recipe r83 (key (sx83 ing250))) +(recipe r83 (key (sy83 ing416))) +(recipe r83 (key (sx83 ing251))) +(recipe r83 (key (sy83 ing417))) +(recipe r83 (key (sx83 ing252))) +(recipe r83 (key (sy83 ing418))) +(recipe r83 (key (sx83 ing253))) +(recipe r83 (key (sy83 ing419))) +(recipe r83 (key (sx83 ing254))) +(recipe r83 (key (sy83 ing420))) +(recipe r83 (key (sx83 ing255))) +(recipe r83 (key (sy83 ing421))) +(recipe r83 (key (sx83 ing256))) +(recipe r83 (key (sy83 ing422))) +(recipe r83 (key (sx83 ing257))) +(recipe r83 (key (sy83 ing423))) +(recipe r83 (key (sx83 ing258))) +(recipe r83 (key (sy83 ing424))) +(recipe r83 (key (sx83 ing259))) +(recipe r83 (key (sy83 ing425))) +(recipe r83 (key (sx83 ing260))) +(recipe r83 (key (sy83 ing426))) +(recipe r84 (numIngredients 2)) +(recipe r84 (result (id item84))) +(recipe r84 (pattern 0 sx84)) +(recipe r84 (pattern 1 sy84)) +(recipe r84 (key (sx84 ing252))) +(recipe r84 (key (sy84 ing420))) +(recipe r84 (key (sx84 ing253))) +(recipe r84 (key (sy84 ing421))) +(recipe r84 (key (sx84 ing254))) +(recipe r84 (key (sy84 ing422))) +(recipe r84 (key (sx84 ing255))) +(recipe r84 (key (sy84 ing423))) +(recipe r84 (key (sx84 ing256))) +(recipe r84 (key (sy84 ing424))) +(recipe r84 (key (sx84 ing257))) +(recipe r84 (key (sy84 ing425))) +(recipe r84 (key (sx84 ing258))) +(recipe r84 (key (sy84 ing426))) +(recipe r84 (key (sx84 ing259))) +(recipe r84 (key (sy84 ing427))) +(recipe r84 (key (sx84 ing260))) +(recipe r84 (key (sy84 ing428))) +(recipe r84 (key (sx84 ing261))) +(recipe r84 (key (sy84 ing429))) +(recipe r84 (key (sx84 ing262))) +(recipe r84 (key (sy84 ing430))) +(recipe r84 (key (sx84 ing263))) +(recipe r84 (key (sy84 ing431))) +(recipe r85 (numIngredients 2)) +(recipe r85 (result (id item85))) +(recipe r85 (pattern 0 sx85)) +(recipe r85 (pattern 1 sy85)) +(recipe r85 (key (sx85 ing255))) +(recipe r85 (key (sy85 ing425))) +(recipe r85 (key (sx85 ing256))) +(recipe r85 (key (sy85 ing426))) +(recipe r85 (key (sx85 ing257))) +(recipe r85 (key (sy85 ing427))) +(recipe r85 (key (sx85 ing258))) +(recipe r85 (key (sy85 ing428))) +(recipe r85 (key (sx85 ing259))) +(recipe r85 (key (sy85 ing429))) +(recipe r85 (key (sx85 ing260))) +(recipe r85 (key (sy85 ing430))) +(recipe r85 (key (sx85 ing261))) +(recipe r85 (key (sy85 ing431))) +(recipe r85 (key (sx85 ing262))) +(recipe r85 (key (sy85 ing432))) +(recipe r85 (key (sx85 ing263))) +(recipe r85 (key (sy85 ing433))) +(recipe r85 (key (sx85 ing264))) +(recipe r85 (key (sy85 ing434))) +(recipe r85 (key (sx85 ing265))) +(recipe r85 (key (sy85 ing435))) +(recipe r85 (key (sx85 ing266))) +(recipe r85 (key (sy85 ing436))) +(recipe r86 (numIngredients 2)) +(recipe r86 (result (id item86))) +(recipe r86 (pattern 0 sx86)) +(recipe r86 (pattern 1 sy86)) +(recipe r86 (key (sx86 ing258))) +(recipe r86 (key (sy86 ing430))) +(recipe r86 (key (sx86 ing259))) +(recipe r86 (key (sy86 ing431))) +(recipe r86 (key (sx86 ing260))) +(recipe r86 (key (sy86 ing432))) +(recipe r86 (key (sx86 ing261))) +(recipe r86 (key (sy86 ing433))) +(recipe r86 (key (sx86 ing262))) +(recipe r86 (key (sy86 ing434))) +(recipe r86 (key (sx86 ing263))) +(recipe r86 (key (sy86 ing435))) +(recipe r86 (key (sx86 ing264))) +(recipe r86 (key (sy86 ing436))) +(recipe r86 (key (sx86 ing265))) +(recipe r86 (key (sy86 ing437))) +(recipe r86 (key (sx86 ing266))) +(recipe r86 (key (sy86 ing438))) +(recipe r86 (key (sx86 ing267))) +(recipe r86 (key (sy86 ing439))) +(recipe r86 (key (sx86 ing268))) +(recipe r86 (key (sy86 ing440))) +(recipe r86 (key (sx86 ing269))) +(recipe r86 (key (sy86 ing441))) +(recipe r87 (numIngredients 2)) +(recipe r87 (result (id item87))) +(recipe r87 (pattern 0 sx87)) +(recipe r87 (pattern 1 sy87)) +(recipe r87 (key (sx87 ing261))) +(recipe r87 (key (sy87 ing435))) +(recipe r87 (key (sx87 ing262))) +(recipe r87 (key (sy87 ing436))) +(recipe r87 (key (sx87 ing263))) +(recipe r87 (key (sy87 ing437))) +(recipe r87 (key (sx87 ing264))) +(recipe r87 (key (sy87 ing438))) +(recipe r87 (key (sx87 ing265))) +(recipe r87 (key (sy87 ing439))) +(recipe r87 (key (sx87 ing266))) +(recipe r87 (key (sy87 ing440))) +(recipe r87 (key (sx87 ing267))) +(recipe r87 (key (sy87 ing441))) +(recipe r87 (key (sx87 ing268))) +(recipe r87 (key (sy87 ing442))) +(recipe r87 (key (sx87 ing269))) +(recipe r87 (key (sy87 ing443))) +(recipe r87 (key (sx87 ing270))) +(recipe r87 (key (sy87 ing444))) +(recipe r87 (key (sx87 ing271))) +(recipe r87 (key (sy87 ing445))) +(recipe r87 (key (sx87 ing272))) +(recipe r87 (key (sy87 ing446))) +(recipe r88 (numIngredients 2)) +(recipe r88 (result (id item88))) +(recipe r88 (pattern 0 sx88)) +(recipe r88 (pattern 1 sy88)) +(recipe r88 (key (sx88 ing264))) +(recipe r88 (key (sy88 ing440))) +(recipe r88 (key (sx88 ing265))) +(recipe r88 (key (sy88 ing441))) +(recipe r88 (key (sx88 ing266))) +(recipe r88 (key (sy88 ing442))) +(recipe r88 (key (sx88 ing267))) +(recipe r88 (key (sy88 ing443))) +(recipe r88 (key (sx88 ing268))) +(recipe r88 (key (sy88 ing444))) +(recipe r88 (key (sx88 ing269))) +(recipe r88 (key (sy88 ing445))) +(recipe r88 (key (sx88 ing270))) +(recipe r88 (key (sy88 ing446))) +(recipe r88 (key (sx88 ing271))) +(recipe r88 (key (sy88 ing447))) +(recipe r88 (key (sx88 ing272))) +(recipe r88 (key (sy88 ing448))) +(recipe r88 (key (sx88 ing273))) +(recipe r88 (key (sy88 ing449))) +(recipe r88 (key (sx88 ing274))) +(recipe r88 (key (sy88 ing450))) +(recipe r88 (key (sx88 ing275))) +(recipe r88 (key (sy88 ing451))) +(recipe r89 (numIngredients 2)) +(recipe r89 (result (id item89))) +(recipe r89 (pattern 0 sx89)) +(recipe r89 (pattern 1 sy89)) +(recipe r89 (key (sx89 ing267))) +(recipe r89 (key (sy89 ing445))) +(recipe r89 (key (sx89 ing268))) +(recipe r89 (key (sy89 ing446))) +(recipe r89 (key (sx89 ing269))) +(recipe r89 (key (sy89 ing447))) +(recipe r89 (key (sx89 ing270))) +(recipe r89 (key (sy89 ing448))) +(recipe r89 (key (sx89 ing271))) +(recipe r89 (key (sy89 ing449))) +(recipe r89 (key (sx89 ing272))) +(recipe r89 (key (sy89 ing450))) +(recipe r89 (key (sx89 ing273))) +(recipe r89 (key (sy89 ing451))) +(recipe r89 (key (sx89 ing274))) +(recipe r89 (key (sy89 ing452))) +(recipe r89 (key (sx89 ing275))) +(recipe r89 (key (sy89 ing453))) +(recipe r89 (key (sx89 ing276))) +(recipe r89 (key (sy89 ing454))) +(recipe r89 (key (sx89 ing277))) +(recipe r89 (key (sy89 ing455))) +(recipe r89 (key (sx89 ing278))) +(recipe r89 (key (sy89 ing456))) +(recipe r90 (numIngredients 2)) +(recipe r90 (result (id item90))) +(recipe r90 (pattern 0 sx90)) +(recipe r90 (pattern 1 sy90)) +(recipe r90 (key (sx90 ing270))) +(recipe r90 (key (sy90 ing450))) +(recipe r90 (key (sx90 ing271))) +(recipe r90 (key (sy90 ing451))) +(recipe r90 (key (sx90 ing272))) +(recipe r90 (key (sy90 ing452))) +(recipe r90 (key (sx90 ing273))) +(recipe r90 (key (sy90 ing453))) +(recipe r90 (key (sx90 ing274))) +(recipe r90 (key (sy90 ing454))) +(recipe r90 (key (sx90 ing275))) +(recipe r90 (key (sy90 ing455))) +(recipe r90 (key (sx90 ing276))) +(recipe r90 (key (sy90 ing456))) +(recipe r90 (key (sx90 ing277))) +(recipe r90 (key (sy90 ing457))) +(recipe r90 (key (sx90 ing278))) +(recipe r90 (key (sy90 ing458))) +(recipe r90 (key (sx90 ing279))) +(recipe r90 (key (sy90 ing459))) +(recipe r90 (key (sx90 ing280))) +(recipe r90 (key (sy90 ing460))) +(recipe r90 (key (sx90 ing281))) +(recipe r90 (key (sy90 ing461))) +(recipe r91 (numIngredients 2)) +(recipe r91 (result (id item91))) +(recipe r91 (pattern 0 sx91)) +(recipe r91 (pattern 1 sy91)) +(recipe r91 (key (sx91 ing273))) +(recipe r91 (key (sy91 ing455))) +(recipe r91 (key (sx91 ing274))) +(recipe r91 (key (sy91 ing456))) +(recipe r91 (key (sx91 ing275))) +(recipe r91 (key (sy91 ing457))) +(recipe r91 (key (sx91 ing276))) +(recipe r91 (key (sy91 ing458))) +(recipe r91 (key (sx91 ing277))) +(recipe r91 (key (sy91 ing459))) +(recipe r91 (key (sx91 ing278))) +(recipe r91 (key (sy91 ing460))) +(recipe r91 (key (sx91 ing279))) +(recipe r91 (key (sy91 ing461))) +(recipe r91 (key (sx91 ing280))) +(recipe r91 (key (sy91 ing462))) +(recipe r91 (key (sx91 ing281))) +(recipe r91 (key (sy91 ing463))) +(recipe r91 (key (sx91 ing282))) +(recipe r91 (key (sy91 ing464))) +(recipe r91 (key (sx91 ing283))) +(recipe r91 (key (sy91 ing465))) +(recipe r91 (key (sx91 ing284))) +(recipe r91 (key (sy91 ing466))) +(recipe r92 (numIngredients 2)) +(recipe r92 (result (id item92))) +(recipe r92 (pattern 0 sx92)) +(recipe r92 (pattern 1 sy92)) +(recipe r92 (key (sx92 ing276))) +(recipe r92 (key (sy92 ing460))) +(recipe r92 (key (sx92 ing277))) +(recipe r92 (key (sy92 ing461))) +(recipe r92 (key (sx92 ing278))) +(recipe r92 (key (sy92 ing462))) +(recipe r92 (key (sx92 ing279))) +(recipe r92 (key (sy92 ing463))) +(recipe r92 (key (sx92 ing280))) +(recipe r92 (key (sy92 ing464))) +(recipe r92 (key (sx92 ing281))) +(recipe r92 (key (sy92 ing465))) +(recipe r92 (key (sx92 ing282))) +(recipe r92 (key (sy92 ing466))) +(recipe r92 (key (sx92 ing283))) +(recipe r92 (key (sy92 ing467))) +(recipe r92 (key (sx92 ing284))) +(recipe r92 (key (sy92 ing468))) +(recipe r92 (key (sx92 ing285))) +(recipe r92 (key (sy92 ing469))) +(recipe r92 (key (sx92 ing286))) +(recipe r92 (key (sy92 ing470))) +(recipe r92 (key (sx92 ing287))) +(recipe r92 (key (sy92 ing471))) +(recipe r93 (numIngredients 2)) +(recipe r93 (result (id item93))) +(recipe r93 (pattern 0 sx93)) +(recipe r93 (pattern 1 sy93)) +(recipe r93 (key (sx93 ing279))) +(recipe r93 (key (sy93 ing465))) +(recipe r93 (key (sx93 ing280))) +(recipe r93 (key (sy93 ing466))) +(recipe r93 (key (sx93 ing281))) +(recipe r93 (key (sy93 ing467))) +(recipe r93 (key (sx93 ing282))) +(recipe r93 (key (sy93 ing468))) +(recipe r93 (key (sx93 ing283))) +(recipe r93 (key (sy93 ing469))) +(recipe r93 (key (sx93 ing284))) +(recipe r93 (key (sy93 ing470))) +(recipe r93 (key (sx93 ing285))) +(recipe r93 (key (sy93 ing471))) +(recipe r93 (key (sx93 ing286))) +(recipe r93 (key (sy93 ing472))) +(recipe r93 (key (sx93 ing287))) +(recipe r93 (key (sy93 ing473))) +(recipe r93 (key (sx93 ing288))) +(recipe r93 (key (sy93 ing474))) +(recipe r93 (key (sx93 ing289))) +(recipe r93 (key (sy93 ing475))) +(recipe r93 (key (sx93 ing290))) +(recipe r93 (key (sy93 ing476))) +(recipe r94 (numIngredients 2)) +(recipe r94 (result (id item94))) +(recipe r94 (pattern 0 sx94)) +(recipe r94 (pattern 1 sy94)) +(recipe r94 (key (sx94 ing282))) +(recipe r94 (key (sy94 ing470))) +(recipe r94 (key (sx94 ing283))) +(recipe r94 (key (sy94 ing471))) +(recipe r94 (key (sx94 ing284))) +(recipe r94 (key (sy94 ing472))) +(recipe r94 (key (sx94 ing285))) +(recipe r94 (key (sy94 ing473))) +(recipe r94 (key (sx94 ing286))) +(recipe r94 (key (sy94 ing474))) +(recipe r94 (key (sx94 ing287))) +(recipe r94 (key (sy94 ing475))) +(recipe r94 (key (sx94 ing288))) +(recipe r94 (key (sy94 ing476))) +(recipe r94 (key (sx94 ing289))) +(recipe r94 (key (sy94 ing477))) +(recipe r94 (key (sx94 ing290))) +(recipe r94 (key (sy94 ing478))) +(recipe r94 (key (sx94 ing291))) +(recipe r94 (key (sy94 ing479))) +(recipe r94 (key (sx94 ing292))) +(recipe r94 (key (sy94 ing480))) +(recipe r94 (key (sx94 ing293))) +(recipe r94 (key (sy94 ing481))) +(recipe r95 (numIngredients 2)) +(recipe r95 (result (id item95))) +(recipe r95 (pattern 0 sx95)) +(recipe r95 (pattern 1 sy95)) +(recipe r95 (key (sx95 ing285))) +(recipe r95 (key (sy95 ing475))) +(recipe r95 (key (sx95 ing286))) +(recipe r95 (key (sy95 ing476))) +(recipe r95 (key (sx95 ing287))) +(recipe r95 (key (sy95 ing477))) +(recipe r95 (key (sx95 ing288))) +(recipe r95 (key (sy95 ing478))) +(recipe r95 (key (sx95 ing289))) +(recipe r95 (key (sy95 ing479))) +(recipe r95 (key (sx95 ing290))) +(recipe r95 (key (sy95 ing480))) +(recipe r95 (key (sx95 ing291))) +(recipe r95 (key (sy95 ing481))) +(recipe r95 (key (sx95 ing292))) +(recipe r95 (key (sy95 ing482))) +(recipe r95 (key (sx95 ing293))) +(recipe r95 (key (sy95 ing483))) +(recipe r95 (key (sx95 ing294))) +(recipe r95 (key (sy95 ing484))) +(recipe r95 (key (sx95 ing295))) +(recipe r95 (key (sy95 ing485))) +(recipe r95 (key (sx95 ing296))) +(recipe r95 (key (sy95 ing486))) +(recipe r96 (numIngredients 2)) +(recipe r96 (result (id item96))) +(recipe r96 (pattern 0 sx96)) +(recipe r96 (pattern 1 sy96)) +(recipe r96 (key (sx96 ing288))) +(recipe r96 (key (sy96 ing480))) +(recipe r96 (key (sx96 ing289))) +(recipe r96 (key (sy96 ing481))) +(recipe r96 (key (sx96 ing290))) +(recipe r96 (key (sy96 ing482))) +(recipe r96 (key (sx96 ing291))) +(recipe r96 (key (sy96 ing483))) +(recipe r96 (key (sx96 ing292))) +(recipe r96 (key (sy96 ing484))) +(recipe r96 (key (sx96 ing293))) +(recipe r96 (key (sy96 ing485))) +(recipe r96 (key (sx96 ing294))) +(recipe r96 (key (sy96 ing486))) +(recipe r96 (key (sx96 ing295))) +(recipe r96 (key (sy96 ing487))) +(recipe r96 (key (sx96 ing296))) +(recipe r96 (key (sy96 ing488))) +(recipe r96 (key (sx96 ing297))) +(recipe r96 (key (sy96 ing489))) +(recipe r96 (key (sx96 ing298))) +(recipe r96 (key (sy96 ing490))) +(recipe r96 (key (sx96 ing299))) +(recipe r96 (key (sy96 ing491))) +(recipe r97 (numIngredients 2)) +(recipe r97 (result (id item97))) +(recipe r97 (pattern 0 sx97)) +(recipe r97 (pattern 1 sy97)) +(recipe r97 (key (sx97 ing291))) +(recipe r97 (key (sy97 ing485))) +(recipe r97 (key (sx97 ing292))) +(recipe r97 (key (sy97 ing486))) +(recipe r97 (key (sx97 ing293))) +(recipe r97 (key (sy97 ing487))) +(recipe r97 (key (sx97 ing294))) +(recipe r97 (key (sy97 ing488))) +(recipe r97 (key (sx97 ing295))) +(recipe r97 (key (sy97 ing489))) +(recipe r97 (key (sx97 ing296))) +(recipe r97 (key (sy97 ing490))) +(recipe r97 (key (sx97 ing297))) +(recipe r97 (key (sy97 ing491))) +(recipe r97 (key (sx97 ing298))) +(recipe r97 (key (sy97 ing492))) +(recipe r97 (key (sx97 ing299))) +(recipe r97 (key (sy97 ing493))) +(recipe r97 (key (sx97 ing300))) +(recipe r97 (key (sy97 ing494))) +(recipe r97 (key (sx97 ing301))) +(recipe r97 (key (sy97 ing495))) +(recipe r97 (key (sx97 ing302))) +(recipe r97 (key (sy97 ing496))) +(recipe r98 (numIngredients 2)) +(recipe r98 (result (id item98))) +(recipe r98 (pattern 0 sx98)) +(recipe r98 (pattern 1 sy98)) +(recipe r98 (key (sx98 ing294))) +(recipe r98 (key (sy98 ing490))) +(recipe r98 (key (sx98 ing295))) +(recipe r98 (key (sy98 ing491))) +(recipe r98 (key (sx98 ing296))) +(recipe r98 (key (sy98 ing492))) +(recipe r98 (key (sx98 ing297))) +(recipe r98 (key (sy98 ing493))) +(recipe r98 (key (sx98 ing298))) +(recipe r98 (key (sy98 ing494))) +(recipe r98 (key (sx98 ing299))) +(recipe r98 (key (sy98 ing495))) +(recipe r98 (key (sx98 ing300))) +(recipe r98 (key (sy98 ing496))) +(recipe r98 (key (sx98 ing301))) +(recipe r98 (key (sy98 ing497))) +(recipe r98 (key (sx98 ing302))) +(recipe r98 (key (sy98 ing498))) +(recipe r98 (key (sx98 ing303))) +(recipe r98 (key (sy98 ing499))) +(recipe r98 (key (sx98 ing304))) +(recipe r98 (key (sy98 ing500))) +(recipe r98 (key (sx98 ing305))) +(recipe r98 (key (sy98 ing501))) +(recipe r99 (numIngredients 2)) +(recipe r99 (result (id item99))) +(recipe r99 (pattern 0 sx99)) +(recipe r99 (pattern 1 sy99)) +(recipe r99 (key (sx99 ing297))) +(recipe r99 (key (sy99 ing495))) +(recipe r99 (key (sx99 ing298))) +(recipe r99 (key (sy99 ing496))) +(recipe r99 (key (sx99 ing299))) +(recipe r99 (key (sy99 ing497))) +(recipe r99 (key (sx99 ing300))) +(recipe r99 (key (sy99 ing498))) +(recipe r99 (key (sx99 ing301))) +(recipe r99 (key (sy99 ing499))) +(recipe r99 (key (sx99 ing302))) +(recipe r99 (key (sy99 ing500))) +(recipe r99 (key (sx99 ing303))) +(recipe r99 (key (sy99 ing501))) +(recipe r99 (key (sx99 ing304))) +(recipe r99 (key (sy99 ing502))) +(recipe r99 (key (sx99 ing305))) +(recipe r99 (key (sy99 ing503))) +(recipe r99 (key (sx99 ing306))) +(recipe r99 (key (sy99 ing504))) +(recipe r99 (key (sx99 ing307))) +(recipe r99 (key (sy99 ing505))) +(recipe r99 (key (sx99 ing308))) +(recipe r99 (key (sy99 ing506))) +(recipe r100 (numIngredients 2)) +(recipe r100 (result (id item100))) +(recipe r100 (pattern 0 sx100)) +(recipe r100 (pattern 1 sy100)) +(recipe r100 (key (sx100 ing300))) +(recipe r100 (key (sy100 ing500))) +(recipe r100 (key (sx100 ing301))) +(recipe r100 (key (sy100 ing501))) +(recipe r100 (key (sx100 ing302))) +(recipe r100 (key (sy100 ing502))) +(recipe r100 (key (sx100 ing303))) +(recipe r100 (key (sy100 ing503))) +(recipe r100 (key (sx100 ing304))) +(recipe r100 (key (sy100 ing504))) +(recipe r100 (key (sx100 ing305))) +(recipe r100 (key (sy100 ing505))) +(recipe r100 (key (sx100 ing306))) +(recipe r100 (key (sy100 ing506))) +(recipe r100 (key (sx100 ing307))) +(recipe r100 (key (sy100 ing507))) +(recipe r100 (key (sx100 ing308))) +(recipe r100 (key (sy100 ing508))) +(recipe r100 (key (sx100 ing309))) +(recipe r100 (key (sy100 ing509))) +(recipe r100 (key (sx100 ing310))) +(recipe r100 (key (sy100 ing510))) +(recipe r100 (key (sx100 ing311))) +(recipe r100 (key (sy100 ing511))) +(recipe r101 (numIngredients 2)) +(recipe r101 (result (id item101))) +(recipe r101 (pattern 0 sx101)) +(recipe r101 (pattern 1 sy101)) +(recipe r101 (key (sx101 ing303))) +(recipe r101 (key (sy101 ing505))) +(recipe r101 (key (sx101 ing304))) +(recipe r101 (key (sy101 ing506))) +(recipe r101 (key (sx101 ing305))) +(recipe r101 (key (sy101 ing507))) +(recipe r101 (key (sx101 ing306))) +(recipe r101 (key (sy101 ing508))) +(recipe r101 (key (sx101 ing307))) +(recipe r101 (key (sy101 ing509))) +(recipe r101 (key (sx101 ing308))) +(recipe r101 (key (sy101 ing510))) +(recipe r101 (key (sx101 ing309))) +(recipe r101 (key (sy101 ing511))) +(recipe r101 (key (sx101 ing310))) +(recipe r101 (key (sy101 ing512))) +(recipe r101 (key (sx101 ing311))) +(recipe r101 (key (sy101 ing513))) +(recipe r101 (key (sx101 ing312))) +(recipe r101 (key (sy101 ing514))) +(recipe r101 (key (sx101 ing313))) +(recipe r101 (key (sy101 ing515))) +(recipe r101 (key (sx101 ing314))) +(recipe r101 (key (sy101 ing516))) +(recipe r102 (numIngredients 2)) +(recipe r102 (result (id item102))) +(recipe r102 (pattern 0 sx102)) +(recipe r102 (pattern 1 sy102)) +(recipe r102 (key (sx102 ing306))) +(recipe r102 (key (sy102 ing510))) +(recipe r102 (key (sx102 ing307))) +(recipe r102 (key (sy102 ing511))) +(recipe r102 (key (sx102 ing308))) +(recipe r102 (key (sy102 ing512))) +(recipe r102 (key (sx102 ing309))) +(recipe r102 (key (sy102 ing513))) +(recipe r102 (key (sx102 ing310))) +(recipe r102 (key (sy102 ing514))) +(recipe r102 (key (sx102 ing311))) +(recipe r102 (key (sy102 ing515))) +(recipe r102 (key (sx102 ing312))) +(recipe r102 (key (sy102 ing516))) +(recipe r102 (key (sx102 ing313))) +(recipe r102 (key (sy102 ing517))) +(recipe r102 (key (sx102 ing314))) +(recipe r102 (key (sy102 ing518))) +(recipe r102 (key (sx102 ing315))) +(recipe r102 (key (sy102 ing519))) +(recipe r102 (key (sx102 ing316))) +(recipe r102 (key (sy102 ing520))) +(recipe r102 (key (sx102 ing317))) +(recipe r102 (key (sy102 ing521))) +(recipe r103 (numIngredients 2)) +(recipe r103 (result (id item103))) +(recipe r103 (pattern 0 sx103)) +(recipe r103 (pattern 1 sy103)) +(recipe r103 (key (sx103 ing309))) +(recipe r103 (key (sy103 ing515))) +(recipe r103 (key (sx103 ing310))) +(recipe r103 (key (sy103 ing516))) +(recipe r103 (key (sx103 ing311))) +(recipe r103 (key (sy103 ing517))) +(recipe r103 (key (sx103 ing312))) +(recipe r103 (key (sy103 ing518))) +(recipe r103 (key (sx103 ing313))) +(recipe r103 (key (sy103 ing519))) +(recipe r103 (key (sx103 ing314))) +(recipe r103 (key (sy103 ing520))) +(recipe r103 (key (sx103 ing315))) +(recipe r103 (key (sy103 ing521))) +(recipe r103 (key (sx103 ing316))) +(recipe r103 (key (sy103 ing522))) +(recipe r103 (key (sx103 ing317))) +(recipe r103 (key (sy103 ing523))) +(recipe r103 (key (sx103 ing318))) +(recipe r103 (key (sy103 ing524))) +(recipe r103 (key (sx103 ing319))) +(recipe r103 (key (sy103 ing525))) +(recipe r103 (key (sx103 ing320))) +(recipe r103 (key (sy103 ing526))) +(recipe r104 (numIngredients 2)) +(recipe r104 (result (id item104))) +(recipe r104 (pattern 0 sx104)) +(recipe r104 (pattern 1 sy104)) +(recipe r104 (key (sx104 ing312))) +(recipe r104 (key (sy104 ing520))) +(recipe r104 (key (sx104 ing313))) +(recipe r104 (key (sy104 ing521))) +(recipe r104 (key (sx104 ing314))) +(recipe r104 (key (sy104 ing522))) +(recipe r104 (key (sx104 ing315))) +(recipe r104 (key (sy104 ing523))) +(recipe r104 (key (sx104 ing316))) +(recipe r104 (key (sy104 ing524))) +(recipe r104 (key (sx104 ing317))) +(recipe r104 (key (sy104 ing525))) +(recipe r104 (key (sx104 ing318))) +(recipe r104 (key (sy104 ing526))) +(recipe r104 (key (sx104 ing319))) +(recipe r104 (key (sy104 ing527))) +(recipe r104 (key (sx104 ing320))) +(recipe r104 (key (sy104 ing528))) +(recipe r104 (key (sx104 ing321))) +(recipe r104 (key (sy104 ing529))) +(recipe r104 (key (sx104 ing322))) +(recipe r104 (key (sy104 ing530))) +(recipe r104 (key (sx104 ing323))) +(recipe r104 (key (sy104 ing531))) +(recipe r105 (numIngredients 2)) +(recipe r105 (result (id item105))) +(recipe r105 (pattern 0 sx105)) +(recipe r105 (pattern 1 sy105)) +(recipe r105 (key (sx105 ing315))) +(recipe r105 (key (sy105 ing525))) +(recipe r105 (key (sx105 ing316))) +(recipe r105 (key (sy105 ing526))) +(recipe r105 (key (sx105 ing317))) +(recipe r105 (key (sy105 ing527))) +(recipe r105 (key (sx105 ing318))) +(recipe r105 (key (sy105 ing528))) +(recipe r105 (key (sx105 ing319))) +(recipe r105 (key (sy105 ing529))) +(recipe r105 (key (sx105 ing320))) +(recipe r105 (key (sy105 ing530))) +(recipe r105 (key (sx105 ing321))) +(recipe r105 (key (sy105 ing531))) +(recipe r105 (key (sx105 ing322))) +(recipe r105 (key (sy105 ing532))) +(recipe r105 (key (sx105 ing323))) +(recipe r105 (key (sy105 ing533))) +(recipe r105 (key (sx105 ing324))) +(recipe r105 (key (sy105 ing534))) +(recipe r105 (key (sx105 ing325))) +(recipe r105 (key (sy105 ing535))) +(recipe r105 (key (sx105 ing326))) +(recipe r105 (key (sy105 ing536))) +(recipe r106 (numIngredients 2)) +(recipe r106 (result (id item106))) +(recipe r106 (pattern 0 sx106)) +(recipe r106 (pattern 1 sy106)) +(recipe r106 (key (sx106 ing318))) +(recipe r106 (key (sy106 ing530))) +(recipe r106 (key (sx106 ing319))) +(recipe r106 (key (sy106 ing531))) +(recipe r106 (key (sx106 ing320))) +(recipe r106 (key (sy106 ing532))) +(recipe r106 (key (sx106 ing321))) +(recipe r106 (key (sy106 ing533))) +(recipe r106 (key (sx106 ing322))) +(recipe r106 (key (sy106 ing534))) +(recipe r106 (key (sx106 ing323))) +(recipe r106 (key (sy106 ing535))) +(recipe r106 (key (sx106 ing324))) +(recipe r106 (key (sy106 ing536))) +(recipe r106 (key (sx106 ing325))) +(recipe r106 (key (sy106 ing537))) +(recipe r106 (key (sx106 ing326))) +(recipe r106 (key (sy106 ing538))) +(recipe r106 (key (sx106 ing327))) +(recipe r106 (key (sy106 ing539))) +(recipe r106 (key (sx106 ing328))) +(recipe r106 (key (sy106 ing540))) +(recipe r106 (key (sx106 ing329))) +(recipe r106 (key (sy106 ing541))) +(recipe r107 (numIngredients 2)) +(recipe r107 (result (id item107))) +(recipe r107 (pattern 0 sx107)) +(recipe r107 (pattern 1 sy107)) +(recipe r107 (key (sx107 ing321))) +(recipe r107 (key (sy107 ing535))) +(recipe r107 (key (sx107 ing322))) +(recipe r107 (key (sy107 ing536))) +(recipe r107 (key (sx107 ing323))) +(recipe r107 (key (sy107 ing537))) +(recipe r107 (key (sx107 ing324))) +(recipe r107 (key (sy107 ing538))) +(recipe r107 (key (sx107 ing325))) +(recipe r107 (key (sy107 ing539))) +(recipe r107 (key (sx107 ing326))) +(recipe r107 (key (sy107 ing540))) +(recipe r107 (key (sx107 ing327))) +(recipe r107 (key (sy107 ing541))) +(recipe r107 (key (sx107 ing328))) +(recipe r107 (key (sy107 ing542))) +(recipe r107 (key (sx107 ing329))) +(recipe r107 (key (sy107 ing543))) +(recipe r107 (key (sx107 ing330))) +(recipe r107 (key (sy107 ing544))) +(recipe r107 (key (sx107 ing331))) +(recipe r107 (key (sy107 ing545))) +(recipe r107 (key (sx107 ing332))) +(recipe r107 (key (sy107 ing546))) +(recipe r108 (numIngredients 2)) +(recipe r108 (result (id item108))) +(recipe r108 (pattern 0 sx108)) +(recipe r108 (pattern 1 sy108)) +(recipe r108 (key (sx108 ing324))) +(recipe r108 (key (sy108 ing540))) +(recipe r108 (key (sx108 ing325))) +(recipe r108 (key (sy108 ing541))) +(recipe r108 (key (sx108 ing326))) +(recipe r108 (key (sy108 ing542))) +(recipe r108 (key (sx108 ing327))) +(recipe r108 (key (sy108 ing543))) +(recipe r108 (key (sx108 ing328))) +(recipe r108 (key (sy108 ing544))) +(recipe r108 (key (sx108 ing329))) +(recipe r108 (key (sy108 ing545))) +(recipe r108 (key (sx108 ing330))) +(recipe r108 (key (sy108 ing546))) +(recipe r108 (key (sx108 ing331))) +(recipe r108 (key (sy108 ing547))) +(recipe r108 (key (sx108 ing332))) +(recipe r108 (key (sy108 ing548))) +(recipe r108 (key (sx108 ing333))) +(recipe r108 (key (sy108 ing549))) +(recipe r108 (key (sx108 ing334))) +(recipe r108 (key (sy108 ing550))) +(recipe r108 (key (sx108 ing335))) +(recipe r108 (key (sy108 ing551))) +(recipe r109 (numIngredients 2)) +(recipe r109 (result (id item109))) +(recipe r109 (pattern 0 sx109)) +(recipe r109 (pattern 1 sy109)) +(recipe r109 (key (sx109 ing327))) +(recipe r109 (key (sy109 ing545))) +(recipe r109 (key (sx109 ing328))) +(recipe r109 (key (sy109 ing546))) +(recipe r109 (key (sx109 ing329))) +(recipe r109 (key (sy109 ing547))) +(recipe r109 (key (sx109 ing330))) +(recipe r109 (key (sy109 ing548))) +(recipe r109 (key (sx109 ing331))) +(recipe r109 (key (sy109 ing549))) +(recipe r109 (key (sx109 ing332))) +(recipe r109 (key (sy109 ing550))) +(recipe r109 (key (sx109 ing333))) +(recipe r109 (key (sy109 ing551))) +(recipe r109 (key (sx109 ing334))) +(recipe r109 (key (sy109 ing552))) +(recipe r109 (key (sx109 ing335))) +(recipe r109 (key (sy109 ing553))) +(recipe r109 (key (sx109 ing336))) +(recipe r109 (key (sy109 ing554))) +(recipe r109 (key (sx109 ing337))) +(recipe r109 (key (sy109 ing555))) +(recipe r109 (key (sx109 ing338))) +(recipe r109 (key (sy109 ing556))) +(recipe r110 (numIngredients 2)) +(recipe r110 (result (id item110))) +(recipe r110 (pattern 0 sx110)) +(recipe r110 (pattern 1 sy110)) +(recipe r110 (key (sx110 ing330))) +(recipe r110 (key (sy110 ing550))) +(recipe r110 (key (sx110 ing331))) +(recipe r110 (key (sy110 ing551))) +(recipe r110 (key (sx110 ing332))) +(recipe r110 (key (sy110 ing552))) +(recipe r110 (key (sx110 ing333))) +(recipe r110 (key (sy110 ing553))) +(recipe r110 (key (sx110 ing334))) +(recipe r110 (key (sy110 ing554))) +(recipe r110 (key (sx110 ing335))) +(recipe r110 (key (sy110 ing555))) +(recipe r110 (key (sx110 ing336))) +(recipe r110 (key (sy110 ing556))) +(recipe r110 (key (sx110 ing337))) +(recipe r110 (key (sy110 ing557))) +(recipe r110 (key (sx110 ing338))) +(recipe r110 (key (sy110 ing558))) +(recipe r110 (key (sx110 ing339))) +(recipe r110 (key (sy110 ing559))) +(recipe r110 (key (sx110 ing340))) +(recipe r110 (key (sy110 ing560))) +(recipe r110 (key (sx110 ing341))) +(recipe r110 (key (sy110 ing561))) +(recipe r111 (numIngredients 2)) +(recipe r111 (result (id item111))) +(recipe r111 (pattern 0 sx111)) +(recipe r111 (pattern 1 sy111)) +(recipe r111 (key (sx111 ing333))) +(recipe r111 (key (sy111 ing555))) +(recipe r111 (key (sx111 ing334))) +(recipe r111 (key (sy111 ing556))) +(recipe r111 (key (sx111 ing335))) +(recipe r111 (key (sy111 ing557))) +(recipe r111 (key (sx111 ing336))) +(recipe r111 (key (sy111 ing558))) +(recipe r111 (key (sx111 ing337))) +(recipe r111 (key (sy111 ing559))) +(recipe r111 (key (sx111 ing338))) +(recipe r111 (key (sy111 ing560))) +(recipe r111 (key (sx111 ing339))) +(recipe r111 (key (sy111 ing561))) +(recipe r111 (key (sx111 ing340))) +(recipe r111 (key (sy111 ing562))) +(recipe r111 (key (sx111 ing341))) +(recipe r111 (key (sy111 ing563))) +(recipe r111 (key (sx111 ing342))) +(recipe r111 (key (sy111 ing564))) +(recipe r111 (key (sx111 ing343))) +(recipe r111 (key (sy111 ing565))) +(recipe r111 (key (sx111 ing344))) +(recipe r111 (key (sy111 ing566))) +(recipe r112 (numIngredients 2)) +(recipe r112 (result (id item112))) +(recipe r112 (pattern 0 sx112)) +(recipe r112 (pattern 1 sy112)) +(recipe r112 (key (sx112 ing336))) +(recipe r112 (key (sy112 ing560))) +(recipe r112 (key (sx112 ing337))) +(recipe r112 (key (sy112 ing561))) +(recipe r112 (key (sx112 ing338))) +(recipe r112 (key (sy112 ing562))) +(recipe r112 (key (sx112 ing339))) +(recipe r112 (key (sy112 ing563))) +(recipe r112 (key (sx112 ing340))) +(recipe r112 (key (sy112 ing564))) +(recipe r112 (key (sx112 ing341))) +(recipe r112 (key (sy112 ing565))) +(recipe r112 (key (sx112 ing342))) +(recipe r112 (key (sy112 ing566))) +(recipe r112 (key (sx112 ing343))) +(recipe r112 (key (sy112 ing567))) +(recipe r112 (key (sx112 ing344))) +(recipe r112 (key (sy112 ing568))) +(recipe r112 (key (sx112 ing345))) +(recipe r112 (key (sy112 ing569))) +(recipe r112 (key (sx112 ing346))) +(recipe r112 (key (sy112 ing570))) +(recipe r112 (key (sx112 ing347))) +(recipe r112 (key (sy112 ing571))) +(recipe r113 (numIngredients 2)) +(recipe r113 (result (id item113))) +(recipe r113 (pattern 0 sx113)) +(recipe r113 (pattern 1 sy113)) +(recipe r113 (key (sx113 ing339))) +(recipe r113 (key (sy113 ing565))) +(recipe r113 (key (sx113 ing340))) +(recipe r113 (key (sy113 ing566))) +(recipe r113 (key (sx113 ing341))) +(recipe r113 (key (sy113 ing567))) +(recipe r113 (key (sx113 ing342))) +(recipe r113 (key (sy113 ing568))) +(recipe r113 (key (sx113 ing343))) +(recipe r113 (key (sy113 ing569))) +(recipe r113 (key (sx113 ing344))) +(recipe r113 (key (sy113 ing570))) +(recipe r113 (key (sx113 ing345))) +(recipe r113 (key (sy113 ing571))) +(recipe r113 (key (sx113 ing346))) +(recipe r113 (key (sy113 ing572))) +(recipe r113 (key (sx113 ing347))) +(recipe r113 (key (sy113 ing573))) +(recipe r113 (key (sx113 ing348))) +(recipe r113 (key (sy113 ing574))) +(recipe r113 (key (sx113 ing349))) +(recipe r113 (key (sy113 ing575))) +(recipe r113 (key (sx113 ing350))) +(recipe r113 (key (sy113 ing576))) +(recipe r114 (numIngredients 2)) +(recipe r114 (result (id item114))) +(recipe r114 (pattern 0 sx114)) +(recipe r114 (pattern 1 sy114)) +(recipe r114 (key (sx114 ing342))) +(recipe r114 (key (sy114 ing570))) +(recipe r114 (key (sx114 ing343))) +(recipe r114 (key (sy114 ing571))) +(recipe r114 (key (sx114 ing344))) +(recipe r114 (key (sy114 ing572))) +(recipe r114 (key (sx114 ing345))) +(recipe r114 (key (sy114 ing573))) +(recipe r114 (key (sx114 ing346))) +(recipe r114 (key (sy114 ing574))) +(recipe r114 (key (sx114 ing347))) +(recipe r114 (key (sy114 ing575))) +(recipe r114 (key (sx114 ing348))) +(recipe r114 (key (sy114 ing576))) +(recipe r114 (key (sx114 ing349))) +(recipe r114 (key (sy114 ing577))) +(recipe r114 (key (sx114 ing350))) +(recipe r114 (key (sy114 ing578))) +(recipe r114 (key (sx114 ing351))) +(recipe r114 (key (sy114 ing579))) +(recipe r114 (key (sx114 ing352))) +(recipe r114 (key (sy114 ing580))) +(recipe r114 (key (sx114 ing353))) +(recipe r114 (key (sy114 ing581))) +(recipe r115 (numIngredients 2)) +(recipe r115 (result (id item115))) +(recipe r115 (pattern 0 sx115)) +(recipe r115 (pattern 1 sy115)) +(recipe r115 (key (sx115 ing345))) +(recipe r115 (key (sy115 ing575))) +(recipe r115 (key (sx115 ing346))) +(recipe r115 (key (sy115 ing576))) +(recipe r115 (key (sx115 ing347))) +(recipe r115 (key (sy115 ing577))) +(recipe r115 (key (sx115 ing348))) +(recipe r115 (key (sy115 ing578))) +(recipe r115 (key (sx115 ing349))) +(recipe r115 (key (sy115 ing579))) +(recipe r115 (key (sx115 ing350))) +(recipe r115 (key (sy115 ing580))) +(recipe r115 (key (sx115 ing351))) +(recipe r115 (key (sy115 ing581))) +(recipe r115 (key (sx115 ing352))) +(recipe r115 (key (sy115 ing582))) +(recipe r115 (key (sx115 ing353))) +(recipe r115 (key (sy115 ing583))) +(recipe r115 (key (sx115 ing354))) +(recipe r115 (key (sy115 ing584))) +(recipe r115 (key (sx115 ing355))) +(recipe r115 (key (sy115 ing585))) +(recipe r115 (key (sx115 ing356))) +(recipe r115 (key (sy115 ing586))) +(recipe r116 (numIngredients 2)) +(recipe r116 (result (id item116))) +(recipe r116 (pattern 0 sx116)) +(recipe r116 (pattern 1 sy116)) +(recipe r116 (key (sx116 ing348))) +(recipe r116 (key (sy116 ing580))) +(recipe r116 (key (sx116 ing349))) +(recipe r116 (key (sy116 ing581))) +(recipe r116 (key (sx116 ing350))) +(recipe r116 (key (sy116 ing582))) +(recipe r116 (key (sx116 ing351))) +(recipe r116 (key (sy116 ing583))) +(recipe r116 (key (sx116 ing352))) +(recipe r116 (key (sy116 ing584))) +(recipe r116 (key (sx116 ing353))) +(recipe r116 (key (sy116 ing585))) +(recipe r116 (key (sx116 ing354))) +(recipe r116 (key (sy116 ing586))) +(recipe r116 (key (sx116 ing355))) +(recipe r116 (key (sy116 ing587))) +(recipe r116 (key (sx116 ing356))) +(recipe r116 (key (sy116 ing588))) +(recipe r116 (key (sx116 ing357))) +(recipe r116 (key (sy116 ing589))) +(recipe r116 (key (sx116 ing358))) +(recipe r116 (key (sy116 ing590))) +(recipe r116 (key (sx116 ing359))) +(recipe r116 (key (sy116 ing591))) +(recipe r117 (numIngredients 2)) +(recipe r117 (result (id item117))) +(recipe r117 (pattern 0 sx117)) +(recipe r117 (pattern 1 sy117)) +(recipe r117 (key (sx117 ing351))) +(recipe r117 (key (sy117 ing585))) +(recipe r117 (key (sx117 ing352))) +(recipe r117 (key (sy117 ing586))) +(recipe r117 (key (sx117 ing353))) +(recipe r117 (key (sy117 ing587))) +(recipe r117 (key (sx117 ing354))) +(recipe r117 (key (sy117 ing588))) +(recipe r117 (key (sx117 ing355))) +(recipe r117 (key (sy117 ing589))) +(recipe r117 (key (sx117 ing356))) +(recipe r117 (key (sy117 ing590))) +(recipe r117 (key (sx117 ing357))) +(recipe r117 (key (sy117 ing591))) +(recipe r117 (key (sx117 ing358))) +(recipe r117 (key (sy117 ing592))) +(recipe r117 (key (sx117 ing359))) +(recipe r117 (key (sy117 ing593))) +(recipe r117 (key (sx117 ing360))) +(recipe r117 (key (sy117 ing594))) +(recipe r117 (key (sx117 ing361))) +(recipe r117 (key (sy117 ing595))) +(recipe r117 (key (sx117 ing362))) +(recipe r117 (key (sy117 ing596))) +(recipe r118 (numIngredients 2)) +(recipe r118 (result (id item118))) +(recipe r118 (pattern 0 sx118)) +(recipe r118 (pattern 1 sy118)) +(recipe r118 (key (sx118 ing354))) +(recipe r118 (key (sy118 ing590))) +(recipe r118 (key (sx118 ing355))) +(recipe r118 (key (sy118 ing591))) +(recipe r118 (key (sx118 ing356))) +(recipe r118 (key (sy118 ing592))) +(recipe r118 (key (sx118 ing357))) +(recipe r118 (key (sy118 ing593))) +(recipe r118 (key (sx118 ing358))) +(recipe r118 (key (sy118 ing594))) +(recipe r118 (key (sx118 ing359))) +(recipe r118 (key (sy118 ing595))) +(recipe r118 (key (sx118 ing360))) +(recipe r118 (key (sy118 ing596))) +(recipe r118 (key (sx118 ing361))) +(recipe r118 (key (sy118 ing597))) +(recipe r118 (key (sx118 ing362))) +(recipe r118 (key (sy118 ing598))) +(recipe r118 (key (sx118 ing363))) +(recipe r118 (key (sy118 ing599))) +(recipe r118 (key (sx118 ing364))) +(recipe r118 (key (sy118 ing0))) +(recipe r118 (key (sx118 ing365))) +(recipe r118 (key (sy118 ing1))) +(recipe r119 (numIngredients 2)) +(recipe r119 (result (id item119))) +(recipe r119 (pattern 0 sx119)) +(recipe r119 (pattern 1 sy119)) +(recipe r119 (key (sx119 ing357))) +(recipe r119 (key (sy119 ing595))) +(recipe r119 (key (sx119 ing358))) +(recipe r119 (key (sy119 ing596))) +(recipe r119 (key (sx119 ing359))) +(recipe r119 (key (sy119 ing597))) +(recipe r119 (key (sx119 ing360))) +(recipe r119 (key (sy119 ing598))) +(recipe r119 (key (sx119 ing361))) +(recipe r119 (key (sy119 ing599))) +(recipe r119 (key (sx119 ing362))) +(recipe r119 (key (sy119 ing0))) +(recipe r119 (key (sx119 ing363))) +(recipe r119 (key (sy119 ing1))) +(recipe r119 (key (sx119 ing364))) +(recipe r119 (key (sy119 ing2))) +(recipe r119 (key (sx119 ing365))) +(recipe r119 (key (sy119 ing3))) +(recipe r119 (key (sx119 ing366))) +(recipe r119 (key (sy119 ing4))) +(recipe r119 (key (sx119 ing367))) +(recipe r119 (key (sy119 ing5))) +(recipe r119 (key (sx119 ing368))) +(recipe r119 (key (sy119 ing6))) +(recipe r120 (numIngredients 2)) +(recipe r120 (result (id item120))) +(recipe r120 (pattern 0 sx120)) +(recipe r120 (pattern 1 sy120)) +(recipe r120 (key (sx120 ing360))) +(recipe r120 (key (sy120 ing0))) +(recipe r120 (key (sx120 ing361))) +(recipe r120 (key (sy120 ing1))) +(recipe r120 (key (sx120 ing362))) +(recipe r120 (key (sy120 ing2))) +(recipe r120 (key (sx120 ing363))) +(recipe r120 (key (sy120 ing3))) +(recipe r120 (key (sx120 ing364))) +(recipe r120 (key (sy120 ing4))) +(recipe r120 (key (sx120 ing365))) +(recipe r120 (key (sy120 ing5))) +(recipe r120 (key (sx120 ing366))) +(recipe r120 (key (sy120 ing6))) +(recipe r120 (key (sx120 ing367))) +(recipe r120 (key (sy120 ing7))) +(recipe r120 (key (sx120 ing368))) +(recipe r120 (key (sy120 ing8))) +(recipe r120 (key (sx120 ing369))) +(recipe r120 (key (sy120 ing9))) +(recipe r120 (key (sx120 ing370))) +(recipe r120 (key (sy120 ing10))) +(recipe r120 (key (sx120 ing371))) +(recipe r120 (key (sy120 ing11))) +(recipe r121 (numIngredients 2)) +(recipe r121 (result (id item121))) +(recipe r121 (pattern 0 sx121)) +(recipe r121 (pattern 1 sy121)) +(recipe r121 (key (sx121 ing363))) +(recipe r121 (key (sy121 ing5))) +(recipe r121 (key (sx121 ing364))) +(recipe r121 (key (sy121 ing6))) +(recipe r121 (key (sx121 ing365))) +(recipe r121 (key (sy121 ing7))) +(recipe r121 (key (sx121 ing366))) +(recipe r121 (key (sy121 ing8))) +(recipe r121 (key (sx121 ing367))) +(recipe r121 (key (sy121 ing9))) +(recipe r121 (key (sx121 ing368))) +(recipe r121 (key (sy121 ing10))) +(recipe r121 (key (sx121 ing369))) +(recipe r121 (key (sy121 ing11))) +(recipe r121 (key (sx121 ing370))) +(recipe r121 (key (sy121 ing12))) +(recipe r121 (key (sx121 ing371))) +(recipe r121 (key (sy121 ing13))) +(recipe r121 (key (sx121 ing372))) +(recipe r121 (key (sy121 ing14))) +(recipe r121 (key (sx121 ing373))) +(recipe r121 (key (sy121 ing15))) +(recipe r121 (key (sx121 ing374))) +(recipe r121 (key (sy121 ing16))) +(recipe r122 (numIngredients 2)) +(recipe r122 (result (id item122))) +(recipe r122 (pattern 0 sx122)) +(recipe r122 (pattern 1 sy122)) +(recipe r122 (key (sx122 ing366))) +(recipe r122 (key (sy122 ing10))) +(recipe r122 (key (sx122 ing367))) +(recipe r122 (key (sy122 ing11))) +(recipe r122 (key (sx122 ing368))) +(recipe r122 (key (sy122 ing12))) +(recipe r122 (key (sx122 ing369))) +(recipe r122 (key (sy122 ing13))) +(recipe r122 (key (sx122 ing370))) +(recipe r122 (key (sy122 ing14))) +(recipe r122 (key (sx122 ing371))) +(recipe r122 (key (sy122 ing15))) +(recipe r122 (key (sx122 ing372))) +(recipe r122 (key (sy122 ing16))) +(recipe r122 (key (sx122 ing373))) +(recipe r122 (key (sy122 ing17))) +(recipe r122 (key (sx122 ing374))) +(recipe r122 (key (sy122 ing18))) +(recipe r122 (key (sx122 ing375))) +(recipe r122 (key (sy122 ing19))) +(recipe r122 (key (sx122 ing376))) +(recipe r122 (key (sy122 ing20))) +(recipe r122 (key (sx122 ing377))) +(recipe r122 (key (sy122 ing21))) +(recipe r123 (numIngredients 2)) +(recipe r123 (result (id item123))) +(recipe r123 (pattern 0 sx123)) +(recipe r123 (pattern 1 sy123)) +(recipe r123 (key (sx123 ing369))) +(recipe r123 (key (sy123 ing15))) +(recipe r123 (key (sx123 ing370))) +(recipe r123 (key (sy123 ing16))) +(recipe r123 (key (sx123 ing371))) +(recipe r123 (key (sy123 ing17))) +(recipe r123 (key (sx123 ing372))) +(recipe r123 (key (sy123 ing18))) +(recipe r123 (key (sx123 ing373))) +(recipe r123 (key (sy123 ing19))) +(recipe r123 (key (sx123 ing374))) +(recipe r123 (key (sy123 ing20))) +(recipe r123 (key (sx123 ing375))) +(recipe r123 (key (sy123 ing21))) +(recipe r123 (key (sx123 ing376))) +(recipe r123 (key (sy123 ing22))) +(recipe r123 (key (sx123 ing377))) +(recipe r123 (key (sy123 ing23))) +(recipe r123 (key (sx123 ing378))) +(recipe r123 (key (sy123 ing24))) +(recipe r123 (key (sx123 ing379))) +(recipe r123 (key (sy123 ing25))) +(recipe r123 (key (sx123 ing380))) +(recipe r123 (key (sy123 ing26))) +(recipe r124 (numIngredients 2)) +(recipe r124 (result (id item124))) +(recipe r124 (pattern 0 sx124)) +(recipe r124 (pattern 1 sy124)) +(recipe r124 (key (sx124 ing372))) +(recipe r124 (key (sy124 ing20))) +(recipe r124 (key (sx124 ing373))) +(recipe r124 (key (sy124 ing21))) +(recipe r124 (key (sx124 ing374))) +(recipe r124 (key (sy124 ing22))) +(recipe r124 (key (sx124 ing375))) +(recipe r124 (key (sy124 ing23))) +(recipe r124 (key (sx124 ing376))) +(recipe r124 (key (sy124 ing24))) +(recipe r124 (key (sx124 ing377))) +(recipe r124 (key (sy124 ing25))) +(recipe r124 (key (sx124 ing378))) +(recipe r124 (key (sy124 ing26))) +(recipe r124 (key (sx124 ing379))) +(recipe r124 (key (sy124 ing27))) +(recipe r124 (key (sx124 ing380))) +(recipe r124 (key (sy124 ing28))) +(recipe r124 (key (sx124 ing381))) +(recipe r124 (key (sy124 ing29))) +(recipe r124 (key (sx124 ing382))) +(recipe r124 (key (sy124 ing30))) +(recipe r124 (key (sx124 ing383))) +(recipe r124 (key (sy124 ing31))) +(recipe r125 (numIngredients 2)) +(recipe r125 (result (id item125))) +(recipe r125 (pattern 0 sx125)) +(recipe r125 (pattern 1 sy125)) +(recipe r125 (key (sx125 ing375))) +(recipe r125 (key (sy125 ing25))) +(recipe r125 (key (sx125 ing376))) +(recipe r125 (key (sy125 ing26))) +(recipe r125 (key (sx125 ing377))) +(recipe r125 (key (sy125 ing27))) +(recipe r125 (key (sx125 ing378))) +(recipe r125 (key (sy125 ing28))) +(recipe r125 (key (sx125 ing379))) +(recipe r125 (key (sy125 ing29))) +(recipe r125 (key (sx125 ing380))) +(recipe r125 (key (sy125 ing30))) +(recipe r125 (key (sx125 ing381))) +(recipe r125 (key (sy125 ing31))) +(recipe r125 (key (sx125 ing382))) +(recipe r125 (key (sy125 ing32))) +(recipe r125 (key (sx125 ing383))) +(recipe r125 (key (sy125 ing33))) +(recipe r125 (key (sx125 ing384))) +(recipe r125 (key (sy125 ing34))) +(recipe r125 (key (sx125 ing385))) +(recipe r125 (key (sy125 ing35))) +(recipe r125 (key (sx125 ing386))) +(recipe r125 (key (sy125 ing36))) +(recipe r126 (numIngredients 2)) +(recipe r126 (result (id item126))) +(recipe r126 (pattern 0 sx126)) +(recipe r126 (pattern 1 sy126)) +(recipe r126 (key (sx126 ing378))) +(recipe r126 (key (sy126 ing30))) +(recipe r126 (key (sx126 ing379))) +(recipe r126 (key (sy126 ing31))) +(recipe r126 (key (sx126 ing380))) +(recipe r126 (key (sy126 ing32))) +(recipe r126 (key (sx126 ing381))) +(recipe r126 (key (sy126 ing33))) +(recipe r126 (key (sx126 ing382))) +(recipe r126 (key (sy126 ing34))) +(recipe r126 (key (sx126 ing383))) +(recipe r126 (key (sy126 ing35))) +(recipe r126 (key (sx126 ing384))) +(recipe r126 (key (sy126 ing36))) +(recipe r126 (key (sx126 ing385))) +(recipe r126 (key (sy126 ing37))) +(recipe r126 (key (sx126 ing386))) +(recipe r126 (key (sy126 ing38))) +(recipe r126 (key (sx126 ing387))) +(recipe r126 (key (sy126 ing39))) +(recipe r126 (key (sx126 ing388))) +(recipe r126 (key (sy126 ing40))) +(recipe r126 (key (sx126 ing389))) +(recipe r126 (key (sy126 ing41))) +(recipe r127 (numIngredients 2)) +(recipe r127 (result (id item127))) +(recipe r127 (pattern 0 sx127)) +(recipe r127 (pattern 1 sy127)) +(recipe r127 (key (sx127 ing381))) +(recipe r127 (key (sy127 ing35))) +(recipe r127 (key (sx127 ing382))) +(recipe r127 (key (sy127 ing36))) +(recipe r127 (key (sx127 ing383))) +(recipe r127 (key (sy127 ing37))) +(recipe r127 (key (sx127 ing384))) +(recipe r127 (key (sy127 ing38))) +(recipe r127 (key (sx127 ing385))) +(recipe r127 (key (sy127 ing39))) +(recipe r127 (key (sx127 ing386))) +(recipe r127 (key (sy127 ing40))) +(recipe r127 (key (sx127 ing387))) +(recipe r127 (key (sy127 ing41))) +(recipe r127 (key (sx127 ing388))) +(recipe r127 (key (sy127 ing42))) +(recipe r127 (key (sx127 ing389))) +(recipe r127 (key (sy127 ing43))) +(recipe r127 (key (sx127 ing390))) +(recipe r127 (key (sy127 ing44))) +(recipe r127 (key (sx127 ing391))) +(recipe r127 (key (sy127 ing45))) +(recipe r127 (key (sx127 ing392))) +(recipe r127 (key (sy127 ing46))) +(recipe r128 (numIngredients 2)) +(recipe r128 (result (id item128))) +(recipe r128 (pattern 0 sx128)) +(recipe r128 (pattern 1 sy128)) +(recipe r128 (key (sx128 ing384))) +(recipe r128 (key (sy128 ing40))) +(recipe r128 (key (sx128 ing385))) +(recipe r128 (key (sy128 ing41))) +(recipe r128 (key (sx128 ing386))) +(recipe r128 (key (sy128 ing42))) +(recipe r128 (key (sx128 ing387))) +(recipe r128 (key (sy128 ing43))) +(recipe r128 (key (sx128 ing388))) +(recipe r128 (key (sy128 ing44))) +(recipe r128 (key (sx128 ing389))) +(recipe r128 (key (sy128 ing45))) +(recipe r128 (key (sx128 ing390))) +(recipe r128 (key (sy128 ing46))) +(recipe r128 (key (sx128 ing391))) +(recipe r128 (key (sy128 ing47))) +(recipe r128 (key (sx128 ing392))) +(recipe r128 (key (sy128 ing48))) +(recipe r128 (key (sx128 ing393))) +(recipe r128 (key (sy128 ing49))) +(recipe r128 (key (sx128 ing394))) +(recipe r128 (key (sy128 ing50))) +(recipe r128 (key (sx128 ing395))) +(recipe r128 (key (sy128 ing51))) +(recipe r129 (numIngredients 2)) +(recipe r129 (result (id item129))) +(recipe r129 (pattern 0 sx129)) +(recipe r129 (pattern 1 sy129)) +(recipe r129 (key (sx129 ing387))) +(recipe r129 (key (sy129 ing45))) +(recipe r129 (key (sx129 ing388))) +(recipe r129 (key (sy129 ing46))) +(recipe r129 (key (sx129 ing389))) +(recipe r129 (key (sy129 ing47))) +(recipe r129 (key (sx129 ing390))) +(recipe r129 (key (sy129 ing48))) +(recipe r129 (key (sx129 ing391))) +(recipe r129 (key (sy129 ing49))) +(recipe r129 (key (sx129 ing392))) +(recipe r129 (key (sy129 ing50))) +(recipe r129 (key (sx129 ing393))) +(recipe r129 (key (sy129 ing51))) +(recipe r129 (key (sx129 ing394))) +(recipe r129 (key (sy129 ing52))) +(recipe r129 (key (sx129 ing395))) +(recipe r129 (key (sy129 ing53))) +(recipe r129 (key (sx129 ing396))) +(recipe r129 (key (sy129 ing54))) +(recipe r129 (key (sx129 ing397))) +(recipe r129 (key (sy129 ing55))) +(recipe r129 (key (sx129 ing398))) +(recipe r129 (key (sy129 ing56))) +(recipe r130 (numIngredients 2)) +(recipe r130 (result (id item130))) +(recipe r130 (pattern 0 sx130)) +(recipe r130 (pattern 1 sy130)) +(recipe r130 (key (sx130 ing390))) +(recipe r130 (key (sy130 ing50))) +(recipe r130 (key (sx130 ing391))) +(recipe r130 (key (sy130 ing51))) +(recipe r130 (key (sx130 ing392))) +(recipe r130 (key (sy130 ing52))) +(recipe r130 (key (sx130 ing393))) +(recipe r130 (key (sy130 ing53))) +(recipe r130 (key (sx130 ing394))) +(recipe r130 (key (sy130 ing54))) +(recipe r130 (key (sx130 ing395))) +(recipe r130 (key (sy130 ing55))) +(recipe r130 (key (sx130 ing396))) +(recipe r130 (key (sy130 ing56))) +(recipe r130 (key (sx130 ing397))) +(recipe r130 (key (sy130 ing57))) +(recipe r130 (key (sx130 ing398))) +(recipe r130 (key (sy130 ing58))) +(recipe r130 (key (sx130 ing399))) +(recipe r130 (key (sy130 ing59))) +(recipe r130 (key (sx130 ing400))) +(recipe r130 (key (sy130 ing60))) +(recipe r130 (key (sx130 ing401))) +(recipe r130 (key (sy130 ing61))) +(recipe r131 (numIngredients 2)) +(recipe r131 (result (id item131))) +(recipe r131 (pattern 0 sx131)) +(recipe r131 (pattern 1 sy131)) +(recipe r131 (key (sx131 ing393))) +(recipe r131 (key (sy131 ing55))) +(recipe r131 (key (sx131 ing394))) +(recipe r131 (key (sy131 ing56))) +(recipe r131 (key (sx131 ing395))) +(recipe r131 (key (sy131 ing57))) +(recipe r131 (key (sx131 ing396))) +(recipe r131 (key (sy131 ing58))) +(recipe r131 (key (sx131 ing397))) +(recipe r131 (key (sy131 ing59))) +(recipe r131 (key (sx131 ing398))) +(recipe r131 (key (sy131 ing60))) +(recipe r131 (key (sx131 ing399))) +(recipe r131 (key (sy131 ing61))) +(recipe r131 (key (sx131 ing400))) +(recipe r131 (key (sy131 ing62))) +(recipe r131 (key (sx131 ing401))) +(recipe r131 (key (sy131 ing63))) +(recipe r131 (key (sx131 ing402))) +(recipe r131 (key (sy131 ing64))) +(recipe r131 (key (sx131 ing403))) +(recipe r131 (key (sy131 ing65))) +(recipe r131 (key (sx131 ing404))) +(recipe r131 (key (sy131 ing66))) +(recipe r132 (numIngredients 2)) +(recipe r132 (result (id item132))) +(recipe r132 (pattern 0 sx132)) +(recipe r132 (pattern 1 sy132)) +(recipe r132 (key (sx132 ing396))) +(recipe r132 (key (sy132 ing60))) +(recipe r132 (key (sx132 ing397))) +(recipe r132 (key (sy132 ing61))) +(recipe r132 (key (sx132 ing398))) +(recipe r132 (key (sy132 ing62))) +(recipe r132 (key (sx132 ing399))) +(recipe r132 (key (sy132 ing63))) +(recipe r132 (key (sx132 ing400))) +(recipe r132 (key (sy132 ing64))) +(recipe r132 (key (sx132 ing401))) +(recipe r132 (key (sy132 ing65))) +(recipe r132 (key (sx132 ing402))) +(recipe r132 (key (sy132 ing66))) +(recipe r132 (key (sx132 ing403))) +(recipe r132 (key (sy132 ing67))) +(recipe r132 (key (sx132 ing404))) +(recipe r132 (key (sy132 ing68))) +(recipe r132 (key (sx132 ing405))) +(recipe r132 (key (sy132 ing69))) +(recipe r132 (key (sx132 ing406))) +(recipe r132 (key (sy132 ing70))) +(recipe r132 (key (sx132 ing407))) +(recipe r132 (key (sy132 ing71))) +(recipe r133 (numIngredients 2)) +(recipe r133 (result (id item133))) +(recipe r133 (pattern 0 sx133)) +(recipe r133 (pattern 1 sy133)) +(recipe r133 (key (sx133 ing399))) +(recipe r133 (key (sy133 ing65))) +(recipe r133 (key (sx133 ing400))) +(recipe r133 (key (sy133 ing66))) +(recipe r133 (key (sx133 ing401))) +(recipe r133 (key (sy133 ing67))) +(recipe r133 (key (sx133 ing402))) +(recipe r133 (key (sy133 ing68))) +(recipe r133 (key (sx133 ing403))) +(recipe r133 (key (sy133 ing69))) +(recipe r133 (key (sx133 ing404))) +(recipe r133 (key (sy133 ing70))) +(recipe r133 (key (sx133 ing405))) +(recipe r133 (key (sy133 ing71))) +(recipe r133 (key (sx133 ing406))) +(recipe r133 (key (sy133 ing72))) +(recipe r133 (key (sx133 ing407))) +(recipe r133 (key (sy133 ing73))) +(recipe r133 (key (sx133 ing408))) +(recipe r133 (key (sy133 ing74))) +(recipe r133 (key (sx133 ing409))) +(recipe r133 (key (sy133 ing75))) +(recipe r133 (key (sx133 ing410))) +(recipe r133 (key (sy133 ing76))) +(recipe r134 (numIngredients 2)) +(recipe r134 (result (id item134))) +(recipe r134 (pattern 0 sx134)) +(recipe r134 (pattern 1 sy134)) +(recipe r134 (key (sx134 ing402))) +(recipe r134 (key (sy134 ing70))) +(recipe r134 (key (sx134 ing403))) +(recipe r134 (key (sy134 ing71))) +(recipe r134 (key (sx134 ing404))) +(recipe r134 (key (sy134 ing72))) +(recipe r134 (key (sx134 ing405))) +(recipe r134 (key (sy134 ing73))) +(recipe r134 (key (sx134 ing406))) +(recipe r134 (key (sy134 ing74))) +(recipe r134 (key (sx134 ing407))) +(recipe r134 (key (sy134 ing75))) +(recipe r134 (key (sx134 ing408))) +(recipe r134 (key (sy134 ing76))) +(recipe r134 (key (sx134 ing409))) +(recipe r134 (key (sy134 ing77))) +(recipe r134 (key (sx134 ing410))) +(recipe r134 (key (sy134 ing78))) +(recipe r134 (key (sx134 ing411))) +(recipe r134 (key (sy134 ing79))) +(recipe r134 (key (sx134 ing412))) +(recipe r134 (key (sy134 ing80))) +(recipe r134 (key (sx134 ing413))) +(recipe r134 (key (sy134 ing81))) +(recipe r135 (numIngredients 2)) +(recipe r135 (result (id item135))) +(recipe r135 (pattern 0 sx135)) +(recipe r135 (pattern 1 sy135)) +(recipe r135 (key (sx135 ing405))) +(recipe r135 (key (sy135 ing75))) +(recipe r135 (key (sx135 ing406))) +(recipe r135 (key (sy135 ing76))) +(recipe r135 (key (sx135 ing407))) +(recipe r135 (key (sy135 ing77))) +(recipe r135 (key (sx135 ing408))) +(recipe r135 (key (sy135 ing78))) +(recipe r135 (key (sx135 ing409))) +(recipe r135 (key (sy135 ing79))) +(recipe r135 (key (sx135 ing410))) +(recipe r135 (key (sy135 ing80))) +(recipe r135 (key (sx135 ing411))) +(recipe r135 (key (sy135 ing81))) +(recipe r135 (key (sx135 ing412))) +(recipe r135 (key (sy135 ing82))) +(recipe r135 (key (sx135 ing413))) +(recipe r135 (key (sy135 ing83))) +(recipe r135 (key (sx135 ing414))) +(recipe r135 (key (sy135 ing84))) +(recipe r135 (key (sx135 ing415))) +(recipe r135 (key (sy135 ing85))) +(recipe r135 (key (sx135 ing416))) +(recipe r135 (key (sy135 ing86))) +(recipe r136 (numIngredients 2)) +(recipe r136 (result (id item136))) +(recipe r136 (pattern 0 sx136)) +(recipe r136 (pattern 1 sy136)) +(recipe r136 (key (sx136 ing408))) +(recipe r136 (key (sy136 ing80))) +(recipe r136 (key (sx136 ing409))) +(recipe r136 (key (sy136 ing81))) +(recipe r136 (key (sx136 ing410))) +(recipe r136 (key (sy136 ing82))) +(recipe r136 (key (sx136 ing411))) +(recipe r136 (key (sy136 ing83))) +(recipe r136 (key (sx136 ing412))) +(recipe r136 (key (sy136 ing84))) +(recipe r136 (key (sx136 ing413))) +(recipe r136 (key (sy136 ing85))) +(recipe r136 (key (sx136 ing414))) +(recipe r136 (key (sy136 ing86))) +(recipe r136 (key (sx136 ing415))) +(recipe r136 (key (sy136 ing87))) +(recipe r136 (key (sx136 ing416))) +(recipe r136 (key (sy136 ing88))) +(recipe r136 (key (sx136 ing417))) +(recipe r136 (key (sy136 ing89))) +(recipe r136 (key (sx136 ing418))) +(recipe r136 (key (sy136 ing90))) +(recipe r136 (key (sx136 ing419))) +(recipe r136 (key (sy136 ing91))) +(recipe r137 (numIngredients 2)) +(recipe r137 (result (id item137))) +(recipe r137 (pattern 0 sx137)) +(recipe r137 (pattern 1 sy137)) +(recipe r137 (key (sx137 ing411))) +(recipe r137 (key (sy137 ing85))) +(recipe r137 (key (sx137 ing412))) +(recipe r137 (key (sy137 ing86))) +(recipe r137 (key (sx137 ing413))) +(recipe r137 (key (sy137 ing87))) +(recipe r137 (key (sx137 ing414))) +(recipe r137 (key (sy137 ing88))) +(recipe r137 (key (sx137 ing415))) +(recipe r137 (key (sy137 ing89))) +(recipe r137 (key (sx137 ing416))) +(recipe r137 (key (sy137 ing90))) +(recipe r137 (key (sx137 ing417))) +(recipe r137 (key (sy137 ing91))) +(recipe r137 (key (sx137 ing418))) +(recipe r137 (key (sy137 ing92))) +(recipe r137 (key (sx137 ing419))) +(recipe r137 (key (sy137 ing93))) +(recipe r137 (key (sx137 ing420))) +(recipe r137 (key (sy137 ing94))) +(recipe r137 (key (sx137 ing421))) +(recipe r137 (key (sy137 ing95))) +(recipe r137 (key (sx137 ing422))) +(recipe r137 (key (sy137 ing96))) +(recipe r138 (numIngredients 2)) +(recipe r138 (result (id item138))) +(recipe r138 (pattern 0 sx138)) +(recipe r138 (pattern 1 sy138)) +(recipe r138 (key (sx138 ing414))) +(recipe r138 (key (sy138 ing90))) +(recipe r138 (key (sx138 ing415))) +(recipe r138 (key (sy138 ing91))) +(recipe r138 (key (sx138 ing416))) +(recipe r138 (key (sy138 ing92))) +(recipe r138 (key (sx138 ing417))) +(recipe r138 (key (sy138 ing93))) +(recipe r138 (key (sx138 ing418))) +(recipe r138 (key (sy138 ing94))) +(recipe r138 (key (sx138 ing419))) +(recipe r138 (key (sy138 ing95))) +(recipe r138 (key (sx138 ing420))) +(recipe r138 (key (sy138 ing96))) +(recipe r138 (key (sx138 ing421))) +(recipe r138 (key (sy138 ing97))) +(recipe r138 (key (sx138 ing422))) +(recipe r138 (key (sy138 ing98))) +(recipe r138 (key (sx138 ing423))) +(recipe r138 (key (sy138 ing99))) +(recipe r138 (key (sx138 ing424))) +(recipe r138 (key (sy138 ing100))) +(recipe r138 (key (sx138 ing425))) +(recipe r138 (key (sy138 ing101))) +(recipe r139 (numIngredients 2)) +(recipe r139 (result (id item139))) +(recipe r139 (pattern 0 sx139)) +(recipe r139 (pattern 1 sy139)) +(recipe r139 (key (sx139 ing417))) +(recipe r139 (key (sy139 ing95))) +(recipe r139 (key (sx139 ing418))) +(recipe r139 (key (sy139 ing96))) +(recipe r139 (key (sx139 ing419))) +(recipe r139 (key (sy139 ing97))) +(recipe r139 (key (sx139 ing420))) +(recipe r139 (key (sy139 ing98))) +(recipe r139 (key (sx139 ing421))) +(recipe r139 (key (sy139 ing99))) +(recipe r139 (key (sx139 ing422))) +(recipe r139 (key (sy139 ing100))) +(recipe r139 (key (sx139 ing423))) +(recipe r139 (key (sy139 ing101))) +(recipe r139 (key (sx139 ing424))) +(recipe r139 (key (sy139 ing102))) +(recipe r139 (key (sx139 ing425))) +(recipe r139 (key (sy139 ing103))) +(recipe r139 (key (sx139 ing426))) +(recipe r139 (key (sy139 ing104))) +(recipe r139 (key (sx139 ing427))) +(recipe r139 (key (sy139 ing105))) +(recipe r139 (key (sx139 ing428))) +(recipe r139 (key (sy139 ing106))) +(recipe r140 (numIngredients 2)) +(recipe r140 (result (id item140))) +(recipe r140 (pattern 0 sx140)) +(recipe r140 (pattern 1 sy140)) +(recipe r140 (key (sx140 ing420))) +(recipe r140 (key (sy140 ing100))) +(recipe r140 (key (sx140 ing421))) +(recipe r140 (key (sy140 ing101))) +(recipe r140 (key (sx140 ing422))) +(recipe r140 (key (sy140 ing102))) +(recipe r140 (key (sx140 ing423))) +(recipe r140 (key (sy140 ing103))) +(recipe r140 (key (sx140 ing424))) +(recipe r140 (key (sy140 ing104))) +(recipe r140 (key (sx140 ing425))) +(recipe r140 (key (sy140 ing105))) +(recipe r140 (key (sx140 ing426))) +(recipe r140 (key (sy140 ing106))) +(recipe r140 (key (sx140 ing427))) +(recipe r140 (key (sy140 ing107))) +(recipe r140 (key (sx140 ing428))) +(recipe r140 (key (sy140 ing108))) +(recipe r140 (key (sx140 ing429))) +(recipe r140 (key (sy140 ing109))) +(recipe r140 (key (sx140 ing430))) +(recipe r140 (key (sy140 ing110))) +(recipe r140 (key (sx140 ing431))) +(recipe r140 (key (sy140 ing111))) +(recipe r141 (numIngredients 2)) +(recipe r141 (result (id item141))) +(recipe r141 (pattern 0 sx141)) +(recipe r141 (pattern 1 sy141)) +(recipe r141 (key (sx141 ing423))) +(recipe r141 (key (sy141 ing105))) +(recipe r141 (key (sx141 ing424))) +(recipe r141 (key (sy141 ing106))) +(recipe r141 (key (sx141 ing425))) +(recipe r141 (key (sy141 ing107))) +(recipe r141 (key (sx141 ing426))) +(recipe r141 (key (sy141 ing108))) +(recipe r141 (key (sx141 ing427))) +(recipe r141 (key (sy141 ing109))) +(recipe r141 (key (sx141 ing428))) +(recipe r141 (key (sy141 ing110))) +(recipe r141 (key (sx141 ing429))) +(recipe r141 (key (sy141 ing111))) +(recipe r141 (key (sx141 ing430))) +(recipe r141 (key (sy141 ing112))) +(recipe r141 (key (sx141 ing431))) +(recipe r141 (key (sy141 ing113))) +(recipe r141 (key (sx141 ing432))) +(recipe r141 (key (sy141 ing114))) +(recipe r141 (key (sx141 ing433))) +(recipe r141 (key (sy141 ing115))) +(recipe r141 (key (sx141 ing434))) +(recipe r141 (key (sy141 ing116))) +(recipe r142 (numIngredients 2)) +(recipe r142 (result (id item142))) +(recipe r142 (pattern 0 sx142)) +(recipe r142 (pattern 1 sy142)) +(recipe r142 (key (sx142 ing426))) +(recipe r142 (key (sy142 ing110))) +(recipe r142 (key (sx142 ing427))) +(recipe r142 (key (sy142 ing111))) +(recipe r142 (key (sx142 ing428))) +(recipe r142 (key (sy142 ing112))) +(recipe r142 (key (sx142 ing429))) +(recipe r142 (key (sy142 ing113))) +(recipe r142 (key (sx142 ing430))) +(recipe r142 (key (sy142 ing114))) +(recipe r142 (key (sx142 ing431))) +(recipe r142 (key (sy142 ing115))) +(recipe r142 (key (sx142 ing432))) +(recipe r142 (key (sy142 ing116))) +(recipe r142 (key (sx142 ing433))) +(recipe r142 (key (sy142 ing117))) +(recipe r142 (key (sx142 ing434))) +(recipe r142 (key (sy142 ing118))) +(recipe r142 (key (sx142 ing435))) +(recipe r142 (key (sy142 ing119))) +(recipe r142 (key (sx142 ing436))) +(recipe r142 (key (sy142 ing120))) +(recipe r142 (key (sx142 ing437))) +(recipe r142 (key (sy142 ing121))) +(recipe r143 (numIngredients 2)) +(recipe r143 (result (id item143))) +(recipe r143 (pattern 0 sx143)) +(recipe r143 (pattern 1 sy143)) +(recipe r143 (key (sx143 ing429))) +(recipe r143 (key (sy143 ing115))) +(recipe r143 (key (sx143 ing430))) +(recipe r143 (key (sy143 ing116))) +(recipe r143 (key (sx143 ing431))) +(recipe r143 (key (sy143 ing117))) +(recipe r143 (key (sx143 ing432))) +(recipe r143 (key (sy143 ing118))) +(recipe r143 (key (sx143 ing433))) +(recipe r143 (key (sy143 ing119))) +(recipe r143 (key (sx143 ing434))) +(recipe r143 (key (sy143 ing120))) +(recipe r143 (key (sx143 ing435))) +(recipe r143 (key (sy143 ing121))) +(recipe r143 (key (sx143 ing436))) +(recipe r143 (key (sy143 ing122))) +(recipe r143 (key (sx143 ing437))) +(recipe r143 (key (sy143 ing123))) +(recipe r143 (key (sx143 ing438))) +(recipe r143 (key (sy143 ing124))) +(recipe r143 (key (sx143 ing439))) +(recipe r143 (key (sy143 ing125))) +(recipe r143 (key (sx143 ing440))) +(recipe r143 (key (sy143 ing126))) +(recipe r144 (numIngredients 2)) +(recipe r144 (result (id item144))) +(recipe r144 (pattern 0 sx144)) +(recipe r144 (pattern 1 sy144)) +(recipe r144 (key (sx144 ing432))) +(recipe r144 (key (sy144 ing120))) +(recipe r144 (key (sx144 ing433))) +(recipe r144 (key (sy144 ing121))) +(recipe r144 (key (sx144 ing434))) +(recipe r144 (key (sy144 ing122))) +(recipe r144 (key (sx144 ing435))) +(recipe r144 (key (sy144 ing123))) +(recipe r144 (key (sx144 ing436))) +(recipe r144 (key (sy144 ing124))) +(recipe r144 (key (sx144 ing437))) +(recipe r144 (key (sy144 ing125))) +(recipe r144 (key (sx144 ing438))) +(recipe r144 (key (sy144 ing126))) +(recipe r144 (key (sx144 ing439))) +(recipe r144 (key (sy144 ing127))) +(recipe r144 (key (sx144 ing440))) +(recipe r144 (key (sy144 ing128))) +(recipe r144 (key (sx144 ing441))) +(recipe r144 (key (sy144 ing129))) +(recipe r144 (key (sx144 ing442))) +(recipe r144 (key (sy144 ing130))) +(recipe r144 (key (sx144 ing443))) +(recipe r144 (key (sy144 ing131))) +(recipe r145 (numIngredients 2)) +(recipe r145 (result (id item145))) +(recipe r145 (pattern 0 sx145)) +(recipe r145 (pattern 1 sy145)) +(recipe r145 (key (sx145 ing435))) +(recipe r145 (key (sy145 ing125))) +(recipe r145 (key (sx145 ing436))) +(recipe r145 (key (sy145 ing126))) +(recipe r145 (key (sx145 ing437))) +(recipe r145 (key (sy145 ing127))) +(recipe r145 (key (sx145 ing438))) +(recipe r145 (key (sy145 ing128))) +(recipe r145 (key (sx145 ing439))) +(recipe r145 (key (sy145 ing129))) +(recipe r145 (key (sx145 ing440))) +(recipe r145 (key (sy145 ing130))) +(recipe r145 (key (sx145 ing441))) +(recipe r145 (key (sy145 ing131))) +(recipe r145 (key (sx145 ing442))) +(recipe r145 (key (sy145 ing132))) +(recipe r145 (key (sx145 ing443))) +(recipe r145 (key (sy145 ing133))) +(recipe r145 (key (sx145 ing444))) +(recipe r145 (key (sy145 ing134))) +(recipe r145 (key (sx145 ing445))) +(recipe r145 (key (sy145 ing135))) +(recipe r145 (key (sx145 ing446))) +(recipe r145 (key (sy145 ing136))) +(recipe r146 (numIngredients 2)) +(recipe r146 (result (id item146))) +(recipe r146 (pattern 0 sx146)) +(recipe r146 (pattern 1 sy146)) +(recipe r146 (key (sx146 ing438))) +(recipe r146 (key (sy146 ing130))) +(recipe r146 (key (sx146 ing439))) +(recipe r146 (key (sy146 ing131))) +(recipe r146 (key (sx146 ing440))) +(recipe r146 (key (sy146 ing132))) +(recipe r146 (key (sx146 ing441))) +(recipe r146 (key (sy146 ing133))) +(recipe r146 (key (sx146 ing442))) +(recipe r146 (key (sy146 ing134))) +(recipe r146 (key (sx146 ing443))) +(recipe r146 (key (sy146 ing135))) +(recipe r146 (key (sx146 ing444))) +(recipe r146 (key (sy146 ing136))) +(recipe r146 (key (sx146 ing445))) +(recipe r146 (key (sy146 ing137))) +(recipe r146 (key (sx146 ing446))) +(recipe r146 (key (sy146 ing138))) +(recipe r146 (key (sx146 ing447))) +(recipe r146 (key (sy146 ing139))) +(recipe r146 (key (sx146 ing448))) +(recipe r146 (key (sy146 ing140))) +(recipe r146 (key (sx146 ing449))) +(recipe r146 (key (sy146 ing141))) +(recipe r147 (numIngredients 2)) +(recipe r147 (result (id item147))) +(recipe r147 (pattern 0 sx147)) +(recipe r147 (pattern 1 sy147)) +(recipe r147 (key (sx147 ing441))) +(recipe r147 (key (sy147 ing135))) +(recipe r147 (key (sx147 ing442))) +(recipe r147 (key (sy147 ing136))) +(recipe r147 (key (sx147 ing443))) +(recipe r147 (key (sy147 ing137))) +(recipe r147 (key (sx147 ing444))) +(recipe r147 (key (sy147 ing138))) +(recipe r147 (key (sx147 ing445))) +(recipe r147 (key (sy147 ing139))) +(recipe r147 (key (sx147 ing446))) +(recipe r147 (key (sy147 ing140))) +(recipe r147 (key (sx147 ing447))) +(recipe r147 (key (sy147 ing141))) +(recipe r147 (key (sx147 ing448))) +(recipe r147 (key (sy147 ing142))) +(recipe r147 (key (sx147 ing449))) +(recipe r147 (key (sy147 ing143))) +(recipe r147 (key (sx147 ing450))) +(recipe r147 (key (sy147 ing144))) +(recipe r147 (key (sx147 ing451))) +(recipe r147 (key (sy147 ing145))) +(recipe r147 (key (sx147 ing452))) +(recipe r147 (key (sy147 ing146))) +(recipe r148 (numIngredients 2)) +(recipe r148 (result (id item148))) +(recipe r148 (pattern 0 sx148)) +(recipe r148 (pattern 1 sy148)) +(recipe r148 (key (sx148 ing444))) +(recipe r148 (key (sy148 ing140))) +(recipe r148 (key (sx148 ing445))) +(recipe r148 (key (sy148 ing141))) +(recipe r148 (key (sx148 ing446))) +(recipe r148 (key (sy148 ing142))) +(recipe r148 (key (sx148 ing447))) +(recipe r148 (key (sy148 ing143))) +(recipe r148 (key (sx148 ing448))) +(recipe r148 (key (sy148 ing144))) +(recipe r148 (key (sx148 ing449))) +(recipe r148 (key (sy148 ing145))) +(recipe r148 (key (sx148 ing450))) +(recipe r148 (key (sy148 ing146))) +(recipe r148 (key (sx148 ing451))) +(recipe r148 (key (sy148 ing147))) +(recipe r148 (key (sx148 ing452))) +(recipe r148 (key (sy148 ing148))) +(recipe r148 (key (sx148 ing453))) +(recipe r148 (key (sy148 ing149))) +(recipe r148 (key (sx148 ing454))) +(recipe r148 (key (sy148 ing150))) +(recipe r148 (key (sx148 ing455))) +(recipe r148 (key (sy148 ing151))) +(recipe r149 (numIngredients 2)) +(recipe r149 (result (id item149))) +(recipe r149 (pattern 0 sx149)) +(recipe r149 (pattern 1 sy149)) +(recipe r149 (key (sx149 ing447))) +(recipe r149 (key (sy149 ing145))) +(recipe r149 (key (sx149 ing448))) +(recipe r149 (key (sy149 ing146))) +(recipe r149 (key (sx149 ing449))) +(recipe r149 (key (sy149 ing147))) +(recipe r149 (key (sx149 ing450))) +(recipe r149 (key (sy149 ing148))) +(recipe r149 (key (sx149 ing451))) +(recipe r149 (key (sy149 ing149))) +(recipe r149 (key (sx149 ing452))) +(recipe r149 (key (sy149 ing150))) +(recipe r149 (key (sx149 ing453))) +(recipe r149 (key (sy149 ing151))) +(recipe r149 (key (sx149 ing454))) +(recipe r149 (key (sy149 ing152))) +(recipe r149 (key (sx149 ing455))) +(recipe r149 (key (sy149 ing153))) +(recipe r149 (key (sx149 ing456))) +(recipe r149 (key (sy149 ing154))) +(recipe r149 (key (sx149 ing457))) +(recipe r149 (key (sy149 ing155))) +(recipe r149 (key (sx149 ing458))) +(recipe r149 (key (sy149 ing156))) +(recipe r150 (numIngredients 2)) +(recipe r150 (result (id item150))) +(recipe r150 (pattern 0 sx150)) +(recipe r150 (pattern 1 sy150)) +(recipe r150 (key (sx150 ing450))) +(recipe r150 (key (sy150 ing150))) +(recipe r150 (key (sx150 ing451))) +(recipe r150 (key (sy150 ing151))) +(recipe r150 (key (sx150 ing452))) +(recipe r150 (key (sy150 ing152))) +(recipe r150 (key (sx150 ing453))) +(recipe r150 (key (sy150 ing153))) +(recipe r150 (key (sx150 ing454))) +(recipe r150 (key (sy150 ing154))) +(recipe r150 (key (sx150 ing455))) +(recipe r150 (key (sy150 ing155))) +(recipe r150 (key (sx150 ing456))) +(recipe r150 (key (sy150 ing156))) +(recipe r150 (key (sx150 ing457))) +(recipe r150 (key (sy150 ing157))) +(recipe r150 (key (sx150 ing458))) +(recipe r150 (key (sy150 ing158))) +(recipe r150 (key (sx150 ing459))) +(recipe r150 (key (sy150 ing159))) +(recipe r150 (key (sx150 ing460))) +(recipe r150 (key (sy150 ing160))) +(recipe r150 (key (sx150 ing461))) +(recipe r150 (key (sy150 ing161))) +(recipe r151 (numIngredients 2)) +(recipe r151 (result (id item151))) +(recipe r151 (pattern 0 sx151)) +(recipe r151 (pattern 1 sy151)) +(recipe r151 (key (sx151 ing453))) +(recipe r151 (key (sy151 ing155))) +(recipe r151 (key (sx151 ing454))) +(recipe r151 (key (sy151 ing156))) +(recipe r151 (key (sx151 ing455))) +(recipe r151 (key (sy151 ing157))) +(recipe r151 (key (sx151 ing456))) +(recipe r151 (key (sy151 ing158))) +(recipe r151 (key (sx151 ing457))) +(recipe r151 (key (sy151 ing159))) +(recipe r151 (key (sx151 ing458))) +(recipe r151 (key (sy151 ing160))) +(recipe r151 (key (sx151 ing459))) +(recipe r151 (key (sy151 ing161))) +(recipe r151 (key (sx151 ing460))) +(recipe r151 (key (sy151 ing162))) +(recipe r151 (key (sx151 ing461))) +(recipe r151 (key (sy151 ing163))) +(recipe r151 (key (sx151 ing462))) +(recipe r151 (key (sy151 ing164))) +(recipe r151 (key (sx151 ing463))) +(recipe r151 (key (sy151 ing165))) +(recipe r151 (key (sx151 ing464))) +(recipe r151 (key (sy151 ing166))) +(recipe r152 (numIngredients 2)) +(recipe r152 (result (id item152))) +(recipe r152 (pattern 0 sx152)) +(recipe r152 (pattern 1 sy152)) +(recipe r152 (key (sx152 ing456))) +(recipe r152 (key (sy152 ing160))) +(recipe r152 (key (sx152 ing457))) +(recipe r152 (key (sy152 ing161))) +(recipe r152 (key (sx152 ing458))) +(recipe r152 (key (sy152 ing162))) +(recipe r152 (key (sx152 ing459))) +(recipe r152 (key (sy152 ing163))) +(recipe r152 (key (sx152 ing460))) +(recipe r152 (key (sy152 ing164))) +(recipe r152 (key (sx152 ing461))) +(recipe r152 (key (sy152 ing165))) +(recipe r152 (key (sx152 ing462))) +(recipe r152 (key (sy152 ing166))) +(recipe r152 (key (sx152 ing463))) +(recipe r152 (key (sy152 ing167))) +(recipe r152 (key (sx152 ing464))) +(recipe r152 (key (sy152 ing168))) +(recipe r152 (key (sx152 ing465))) +(recipe r152 (key (sy152 ing169))) +(recipe r152 (key (sx152 ing466))) +(recipe r152 (key (sy152 ing170))) +(recipe r152 (key (sx152 ing467))) +(recipe r152 (key (sy152 ing171))) +(recipe r153 (numIngredients 2)) +(recipe r153 (result (id item153))) +(recipe r153 (pattern 0 sx153)) +(recipe r153 (pattern 1 sy153)) +(recipe r153 (key (sx153 ing459))) +(recipe r153 (key (sy153 ing165))) +(recipe r153 (key (sx153 ing460))) +(recipe r153 (key (sy153 ing166))) +(recipe r153 (key (sx153 ing461))) +(recipe r153 (key (sy153 ing167))) +(recipe r153 (key (sx153 ing462))) +(recipe r153 (key (sy153 ing168))) +(recipe r153 (key (sx153 ing463))) +(recipe r153 (key (sy153 ing169))) +(recipe r153 (key (sx153 ing464))) +(recipe r153 (key (sy153 ing170))) +(recipe r153 (key (sx153 ing465))) +(recipe r153 (key (sy153 ing171))) +(recipe r153 (key (sx153 ing466))) +(recipe r153 (key (sy153 ing172))) +(recipe r153 (key (sx153 ing467))) +(recipe r153 (key (sy153 ing173))) +(recipe r153 (key (sx153 ing468))) +(recipe r153 (key (sy153 ing174))) +(recipe r153 (key (sx153 ing469))) +(recipe r153 (key (sy153 ing175))) +(recipe r153 (key (sx153 ing470))) +(recipe r153 (key (sy153 ing176))) +(recipe r154 (numIngredients 2)) +(recipe r154 (result (id item154))) +(recipe r154 (pattern 0 sx154)) +(recipe r154 (pattern 1 sy154)) +(recipe r154 (key (sx154 ing462))) +(recipe r154 (key (sy154 ing170))) +(recipe r154 (key (sx154 ing463))) +(recipe r154 (key (sy154 ing171))) +(recipe r154 (key (sx154 ing464))) +(recipe r154 (key (sy154 ing172))) +(recipe r154 (key (sx154 ing465))) +(recipe r154 (key (sy154 ing173))) +(recipe r154 (key (sx154 ing466))) +(recipe r154 (key (sy154 ing174))) +(recipe r154 (key (sx154 ing467))) +(recipe r154 (key (sy154 ing175))) +(recipe r154 (key (sx154 ing468))) +(recipe r154 (key (sy154 ing176))) +(recipe r154 (key (sx154 ing469))) +(recipe r154 (key (sy154 ing177))) +(recipe r154 (key (sx154 ing470))) +(recipe r154 (key (sy154 ing178))) +(recipe r154 (key (sx154 ing471))) +(recipe r154 (key (sy154 ing179))) +(recipe r154 (key (sx154 ing472))) +(recipe r154 (key (sy154 ing180))) +(recipe r154 (key (sx154 ing473))) +(recipe r154 (key (sy154 ing181))) +(recipe r155 (numIngredients 2)) +(recipe r155 (result (id item155))) +(recipe r155 (pattern 0 sx155)) +(recipe r155 (pattern 1 sy155)) +(recipe r155 (key (sx155 ing465))) +(recipe r155 (key (sy155 ing175))) +(recipe r155 (key (sx155 ing466))) +(recipe r155 (key (sy155 ing176))) +(recipe r155 (key (sx155 ing467))) +(recipe r155 (key (sy155 ing177))) +(recipe r155 (key (sx155 ing468))) +(recipe r155 (key (sy155 ing178))) +(recipe r155 (key (sx155 ing469))) +(recipe r155 (key (sy155 ing179))) +(recipe r155 (key (sx155 ing470))) +(recipe r155 (key (sy155 ing180))) +(recipe r155 (key (sx155 ing471))) +(recipe r155 (key (sy155 ing181))) +(recipe r155 (key (sx155 ing472))) +(recipe r155 (key (sy155 ing182))) +(recipe r155 (key (sx155 ing473))) +(recipe r155 (key (sy155 ing183))) +(recipe r155 (key (sx155 ing474))) +(recipe r155 (key (sy155 ing184))) +(recipe r155 (key (sx155 ing475))) +(recipe r155 (key (sy155 ing185))) +(recipe r155 (key (sx155 ing476))) +(recipe r155 (key (sy155 ing186))) +(recipe r156 (numIngredients 2)) +(recipe r156 (result (id item156))) +(recipe r156 (pattern 0 sx156)) +(recipe r156 (pattern 1 sy156)) +(recipe r156 (key (sx156 ing468))) +(recipe r156 (key (sy156 ing180))) +(recipe r156 (key (sx156 ing469))) +(recipe r156 (key (sy156 ing181))) +(recipe r156 (key (sx156 ing470))) +(recipe r156 (key (sy156 ing182))) +(recipe r156 (key (sx156 ing471))) +(recipe r156 (key (sy156 ing183))) +(recipe r156 (key (sx156 ing472))) +(recipe r156 (key (sy156 ing184))) +(recipe r156 (key (sx156 ing473))) +(recipe r156 (key (sy156 ing185))) +(recipe r156 (key (sx156 ing474))) +(recipe r156 (key (sy156 ing186))) +(recipe r156 (key (sx156 ing475))) +(recipe r156 (key (sy156 ing187))) +(recipe r156 (key (sx156 ing476))) +(recipe r156 (key (sy156 ing188))) +(recipe r156 (key (sx156 ing477))) +(recipe r156 (key (sy156 ing189))) +(recipe r156 (key (sx156 ing478))) +(recipe r156 (key (sy156 ing190))) +(recipe r156 (key (sx156 ing479))) +(recipe r156 (key (sy156 ing191))) +(recipe r157 (numIngredients 2)) +(recipe r157 (result (id item157))) +(recipe r157 (pattern 0 sx157)) +(recipe r157 (pattern 1 sy157)) +(recipe r157 (key (sx157 ing471))) +(recipe r157 (key (sy157 ing185))) +(recipe r157 (key (sx157 ing472))) +(recipe r157 (key (sy157 ing186))) +(recipe r157 (key (sx157 ing473))) +(recipe r157 (key (sy157 ing187))) +(recipe r157 (key (sx157 ing474))) +(recipe r157 (key (sy157 ing188))) +(recipe r157 (key (sx157 ing475))) +(recipe r157 (key (sy157 ing189))) +(recipe r157 (key (sx157 ing476))) +(recipe r157 (key (sy157 ing190))) +(recipe r157 (key (sx157 ing477))) +(recipe r157 (key (sy157 ing191))) +(recipe r157 (key (sx157 ing478))) +(recipe r157 (key (sy157 ing192))) +(recipe r157 (key (sx157 ing479))) +(recipe r157 (key (sy157 ing193))) +(recipe r157 (key (sx157 ing480))) +(recipe r157 (key (sy157 ing194))) +(recipe r157 (key (sx157 ing481))) +(recipe r157 (key (sy157 ing195))) +(recipe r157 (key (sx157 ing482))) +(recipe r157 (key (sy157 ing196))) +(recipe r158 (numIngredients 2)) +(recipe r158 (result (id item158))) +(recipe r158 (pattern 0 sx158)) +(recipe r158 (pattern 1 sy158)) +(recipe r158 (key (sx158 ing474))) +(recipe r158 (key (sy158 ing190))) +(recipe r158 (key (sx158 ing475))) +(recipe r158 (key (sy158 ing191))) +(recipe r158 (key (sx158 ing476))) +(recipe r158 (key (sy158 ing192))) +(recipe r158 (key (sx158 ing477))) +(recipe r158 (key (sy158 ing193))) +(recipe r158 (key (sx158 ing478))) +(recipe r158 (key (sy158 ing194))) +(recipe r158 (key (sx158 ing479))) +(recipe r158 (key (sy158 ing195))) +(recipe r158 (key (sx158 ing480))) +(recipe r158 (key (sy158 ing196))) +(recipe r158 (key (sx158 ing481))) +(recipe r158 (key (sy158 ing197))) +(recipe r158 (key (sx158 ing482))) +(recipe r158 (key (sy158 ing198))) +(recipe r158 (key (sx158 ing483))) +(recipe r158 (key (sy158 ing199))) +(recipe r158 (key (sx158 ing484))) +(recipe r158 (key (sy158 ing200))) +(recipe r158 (key (sx158 ing485))) +(recipe r158 (key (sy158 ing201))) +(recipe r159 (numIngredients 2)) +(recipe r159 (result (id item159))) +(recipe r159 (pattern 0 sx159)) +(recipe r159 (pattern 1 sy159)) +(recipe r159 (key (sx159 ing477))) +(recipe r159 (key (sy159 ing195))) +(recipe r159 (key (sx159 ing478))) +(recipe r159 (key (sy159 ing196))) +(recipe r159 (key (sx159 ing479))) +(recipe r159 (key (sy159 ing197))) +(recipe r159 (key (sx159 ing480))) +(recipe r159 (key (sy159 ing198))) +(recipe r159 (key (sx159 ing481))) +(recipe r159 (key (sy159 ing199))) +(recipe r159 (key (sx159 ing482))) +(recipe r159 (key (sy159 ing200))) +(recipe r159 (key (sx159 ing483))) +(recipe r159 (key (sy159 ing201))) +(recipe r159 (key (sx159 ing484))) +(recipe r159 (key (sy159 ing202))) +(recipe r159 (key (sx159 ing485))) +(recipe r159 (key (sy159 ing203))) +(recipe r159 (key (sx159 ing486))) +(recipe r159 (key (sy159 ing204))) +(recipe r159 (key (sx159 ing487))) +(recipe r159 (key (sy159 ing205))) +(recipe r159 (key (sx159 ing488))) +(recipe r159 (key (sy159 ing206))) +(recipe r160 (numIngredients 2)) +(recipe r160 (result (id item160))) +(recipe r160 (pattern 0 sx160)) +(recipe r160 (pattern 1 sy160)) +(recipe r160 (key (sx160 ing480))) +(recipe r160 (key (sy160 ing200))) +(recipe r160 (key (sx160 ing481))) +(recipe r160 (key (sy160 ing201))) +(recipe r160 (key (sx160 ing482))) +(recipe r160 (key (sy160 ing202))) +(recipe r160 (key (sx160 ing483))) +(recipe r160 (key (sy160 ing203))) +(recipe r160 (key (sx160 ing484))) +(recipe r160 (key (sy160 ing204))) +(recipe r160 (key (sx160 ing485))) +(recipe r160 (key (sy160 ing205))) +(recipe r160 (key (sx160 ing486))) +(recipe r160 (key (sy160 ing206))) +(recipe r160 (key (sx160 ing487))) +(recipe r160 (key (sy160 ing207))) +(recipe r160 (key (sx160 ing488))) +(recipe r160 (key (sy160 ing208))) +(recipe r160 (key (sx160 ing489))) +(recipe r160 (key (sy160 ing209))) +(recipe r160 (key (sx160 ing490))) +(recipe r160 (key (sy160 ing210))) +(recipe r160 (key (sx160 ing491))) +(recipe r160 (key (sy160 ing211))) +(recipe r161 (numIngredients 2)) +(recipe r161 (result (id item161))) +(recipe r161 (pattern 0 sx161)) +(recipe r161 (pattern 1 sy161)) +(recipe r161 (key (sx161 ing483))) +(recipe r161 (key (sy161 ing205))) +(recipe r161 (key (sx161 ing484))) +(recipe r161 (key (sy161 ing206))) +(recipe r161 (key (sx161 ing485))) +(recipe r161 (key (sy161 ing207))) +(recipe r161 (key (sx161 ing486))) +(recipe r161 (key (sy161 ing208))) +(recipe r161 (key (sx161 ing487))) +(recipe r161 (key (sy161 ing209))) +(recipe r161 (key (sx161 ing488))) +(recipe r161 (key (sy161 ing210))) +(recipe r161 (key (sx161 ing489))) +(recipe r161 (key (sy161 ing211))) +(recipe r161 (key (sx161 ing490))) +(recipe r161 (key (sy161 ing212))) +(recipe r161 (key (sx161 ing491))) +(recipe r161 (key (sy161 ing213))) +(recipe r161 (key (sx161 ing492))) +(recipe r161 (key (sy161 ing214))) +(recipe r161 (key (sx161 ing493))) +(recipe r161 (key (sy161 ing215))) +(recipe r161 (key (sx161 ing494))) +(recipe r161 (key (sy161 ing216))) +(recipe r162 (numIngredients 2)) +(recipe r162 (result (id item162))) +(recipe r162 (pattern 0 sx162)) +(recipe r162 (pattern 1 sy162)) +(recipe r162 (key (sx162 ing486))) +(recipe r162 (key (sy162 ing210))) +(recipe r162 (key (sx162 ing487))) +(recipe r162 (key (sy162 ing211))) +(recipe r162 (key (sx162 ing488))) +(recipe r162 (key (sy162 ing212))) +(recipe r162 (key (sx162 ing489))) +(recipe r162 (key (sy162 ing213))) +(recipe r162 (key (sx162 ing490))) +(recipe r162 (key (sy162 ing214))) +(recipe r162 (key (sx162 ing491))) +(recipe r162 (key (sy162 ing215))) +(recipe r162 (key (sx162 ing492))) +(recipe r162 (key (sy162 ing216))) +(recipe r162 (key (sx162 ing493))) +(recipe r162 (key (sy162 ing217))) +(recipe r162 (key (sx162 ing494))) +(recipe r162 (key (sy162 ing218))) +(recipe r162 (key (sx162 ing495))) +(recipe r162 (key (sy162 ing219))) +(recipe r162 (key (sx162 ing496))) +(recipe r162 (key (sy162 ing220))) +(recipe r162 (key (sx162 ing497))) +(recipe r162 (key (sy162 ing221))) +(recipe r163 (numIngredients 2)) +(recipe r163 (result (id item163))) +(recipe r163 (pattern 0 sx163)) +(recipe r163 (pattern 1 sy163)) +(recipe r163 (key (sx163 ing489))) +(recipe r163 (key (sy163 ing215))) +(recipe r163 (key (sx163 ing490))) +(recipe r163 (key (sy163 ing216))) +(recipe r163 (key (sx163 ing491))) +(recipe r163 (key (sy163 ing217))) +(recipe r163 (key (sx163 ing492))) +(recipe r163 (key (sy163 ing218))) +(recipe r163 (key (sx163 ing493))) +(recipe r163 (key (sy163 ing219))) +(recipe r163 (key (sx163 ing494))) +(recipe r163 (key (sy163 ing220))) +(recipe r163 (key (sx163 ing495))) +(recipe r163 (key (sy163 ing221))) +(recipe r163 (key (sx163 ing496))) +(recipe r163 (key (sy163 ing222))) +(recipe r163 (key (sx163 ing497))) +(recipe r163 (key (sy163 ing223))) +(recipe r163 (key (sx163 ing498))) +(recipe r163 (key (sy163 ing224))) +(recipe r163 (key (sx163 ing499))) +(recipe r163 (key (sy163 ing225))) +(recipe r163 (key (sx163 ing500))) +(recipe r163 (key (sy163 ing226))) +(recipe r164 (numIngredients 2)) +(recipe r164 (result (id item164))) +(recipe r164 (pattern 0 sx164)) +(recipe r164 (pattern 1 sy164)) +(recipe r164 (key (sx164 ing492))) +(recipe r164 (key (sy164 ing220))) +(recipe r164 (key (sx164 ing493))) +(recipe r164 (key (sy164 ing221))) +(recipe r164 (key (sx164 ing494))) +(recipe r164 (key (sy164 ing222))) +(recipe r164 (key (sx164 ing495))) +(recipe r164 (key (sy164 ing223))) +(recipe r164 (key (sx164 ing496))) +(recipe r164 (key (sy164 ing224))) +(recipe r164 (key (sx164 ing497))) +(recipe r164 (key (sy164 ing225))) +(recipe r164 (key (sx164 ing498))) +(recipe r164 (key (sy164 ing226))) +(recipe r164 (key (sx164 ing499))) +(recipe r164 (key (sy164 ing227))) +(recipe r164 (key (sx164 ing500))) +(recipe r164 (key (sy164 ing228))) +(recipe r164 (key (sx164 ing501))) +(recipe r164 (key (sy164 ing229))) +(recipe r164 (key (sx164 ing502))) +(recipe r164 (key (sy164 ing230))) +(recipe r164 (key (sx164 ing503))) +(recipe r164 (key (sy164 ing231))) +(recipe r165 (numIngredients 2)) +(recipe r165 (result (id item165))) +(recipe r165 (pattern 0 sx165)) +(recipe r165 (pattern 1 sy165)) +(recipe r165 (key (sx165 ing495))) +(recipe r165 (key (sy165 ing225))) +(recipe r165 (key (sx165 ing496))) +(recipe r165 (key (sy165 ing226))) +(recipe r165 (key (sx165 ing497))) +(recipe r165 (key (sy165 ing227))) +(recipe r165 (key (sx165 ing498))) +(recipe r165 (key (sy165 ing228))) +(recipe r165 (key (sx165 ing499))) +(recipe r165 (key (sy165 ing229))) +(recipe r165 (key (sx165 ing500))) +(recipe r165 (key (sy165 ing230))) +(recipe r165 (key (sx165 ing501))) +(recipe r165 (key (sy165 ing231))) +(recipe r165 (key (sx165 ing502))) +(recipe r165 (key (sy165 ing232))) +(recipe r165 (key (sx165 ing503))) +(recipe r165 (key (sy165 ing233))) +(recipe r165 (key (sx165 ing504))) +(recipe r165 (key (sy165 ing234))) +(recipe r165 (key (sx165 ing505))) +(recipe r165 (key (sy165 ing235))) +(recipe r165 (key (sx165 ing506))) +(recipe r165 (key (sy165 ing236))) +(recipe r166 (numIngredients 2)) +(recipe r166 (result (id item166))) +(recipe r166 (pattern 0 sx166)) +(recipe r166 (pattern 1 sy166)) +(recipe r166 (key (sx166 ing498))) +(recipe r166 (key (sy166 ing230))) +(recipe r166 (key (sx166 ing499))) +(recipe r166 (key (sy166 ing231))) +(recipe r166 (key (sx166 ing500))) +(recipe r166 (key (sy166 ing232))) +(recipe r166 (key (sx166 ing501))) +(recipe r166 (key (sy166 ing233))) +(recipe r166 (key (sx166 ing502))) +(recipe r166 (key (sy166 ing234))) +(recipe r166 (key (sx166 ing503))) +(recipe r166 (key (sy166 ing235))) +(recipe r166 (key (sx166 ing504))) +(recipe r166 (key (sy166 ing236))) +(recipe r166 (key (sx166 ing505))) +(recipe r166 (key (sy166 ing237))) +(recipe r166 (key (sx166 ing506))) +(recipe r166 (key (sy166 ing238))) +(recipe r166 (key (sx166 ing507))) +(recipe r166 (key (sy166 ing239))) +(recipe r166 (key (sx166 ing508))) +(recipe r166 (key (sy166 ing240))) +(recipe r166 (key (sx166 ing509))) +(recipe r166 (key (sy166 ing241))) +(recipe r167 (numIngredients 2)) +(recipe r167 (result (id item167))) +(recipe r167 (pattern 0 sx167)) +(recipe r167 (pattern 1 sy167)) +(recipe r167 (key (sx167 ing501))) +(recipe r167 (key (sy167 ing235))) +(recipe r167 (key (sx167 ing502))) +(recipe r167 (key (sy167 ing236))) +(recipe r167 (key (sx167 ing503))) +(recipe r167 (key (sy167 ing237))) +(recipe r167 (key (sx167 ing504))) +(recipe r167 (key (sy167 ing238))) +(recipe r167 (key (sx167 ing505))) +(recipe r167 (key (sy167 ing239))) +(recipe r167 (key (sx167 ing506))) +(recipe r167 (key (sy167 ing240))) +(recipe r167 (key (sx167 ing507))) +(recipe r167 (key (sy167 ing241))) +(recipe r167 (key (sx167 ing508))) +(recipe r167 (key (sy167 ing242))) +(recipe r167 (key (sx167 ing509))) +(recipe r167 (key (sy167 ing243))) +(recipe r167 (key (sx167 ing510))) +(recipe r167 (key (sy167 ing244))) +(recipe r167 (key (sx167 ing511))) +(recipe r167 (key (sy167 ing245))) +(recipe r167 (key (sx167 ing512))) +(recipe r167 (key (sy167 ing246))) +(recipe r168 (numIngredients 2)) +(recipe r168 (result (id item168))) +(recipe r168 (pattern 0 sx168)) +(recipe r168 (pattern 1 sy168)) +(recipe r168 (key (sx168 ing504))) +(recipe r168 (key (sy168 ing240))) +(recipe r168 (key (sx168 ing505))) +(recipe r168 (key (sy168 ing241))) +(recipe r168 (key (sx168 ing506))) +(recipe r168 (key (sy168 ing242))) +(recipe r168 (key (sx168 ing507))) +(recipe r168 (key (sy168 ing243))) +(recipe r168 (key (sx168 ing508))) +(recipe r168 (key (sy168 ing244))) +(recipe r168 (key (sx168 ing509))) +(recipe r168 (key (sy168 ing245))) +(recipe r168 (key (sx168 ing510))) +(recipe r168 (key (sy168 ing246))) +(recipe r168 (key (sx168 ing511))) +(recipe r168 (key (sy168 ing247))) +(recipe r168 (key (sx168 ing512))) +(recipe r168 (key (sy168 ing248))) +(recipe r168 (key (sx168 ing513))) +(recipe r168 (key (sy168 ing249))) +(recipe r168 (key (sx168 ing514))) +(recipe r168 (key (sy168 ing250))) +(recipe r168 (key (sx168 ing515))) +(recipe r168 (key (sy168 ing251))) +(recipe r169 (numIngredients 2)) +(recipe r169 (result (id item169))) +(recipe r169 (pattern 0 sx169)) +(recipe r169 (pattern 1 sy169)) +(recipe r169 (key (sx169 ing507))) +(recipe r169 (key (sy169 ing245))) +(recipe r169 (key (sx169 ing508))) +(recipe r169 (key (sy169 ing246))) +(recipe r169 (key (sx169 ing509))) +(recipe r169 (key (sy169 ing247))) +(recipe r169 (key (sx169 ing510))) +(recipe r169 (key (sy169 ing248))) +(recipe r169 (key (sx169 ing511))) +(recipe r169 (key (sy169 ing249))) +(recipe r169 (key (sx169 ing512))) +(recipe r169 (key (sy169 ing250))) +(recipe r169 (key (sx169 ing513))) +(recipe r169 (key (sy169 ing251))) +(recipe r169 (key (sx169 ing514))) +(recipe r169 (key (sy169 ing252))) +(recipe r169 (key (sx169 ing515))) +(recipe r169 (key (sy169 ing253))) +(recipe r169 (key (sx169 ing516))) +(recipe r169 (key (sy169 ing254))) +(recipe r169 (key (sx169 ing517))) +(recipe r169 (key (sy169 ing255))) +(recipe r169 (key (sx169 ing518))) +(recipe r169 (key (sy169 ing256))) +(recipe r170 (numIngredients 2)) +(recipe r170 (result (id item170))) +(recipe r170 (pattern 0 sx170)) +(recipe r170 (pattern 1 sy170)) +(recipe r170 (key (sx170 ing510))) +(recipe r170 (key (sy170 ing250))) +(recipe r170 (key (sx170 ing511))) +(recipe r170 (key (sy170 ing251))) +(recipe r170 (key (sx170 ing512))) +(recipe r170 (key (sy170 ing252))) +(recipe r170 (key (sx170 ing513))) +(recipe r170 (key (sy170 ing253))) +(recipe r170 (key (sx170 ing514))) +(recipe r170 (key (sy170 ing254))) +(recipe r170 (key (sx170 ing515))) +(recipe r170 (key (sy170 ing255))) +(recipe r170 (key (sx170 ing516))) +(recipe r170 (key (sy170 ing256))) +(recipe r170 (key (sx170 ing517))) +(recipe r170 (key (sy170 ing257))) +(recipe r170 (key (sx170 ing518))) +(recipe r170 (key (sy170 ing258))) +(recipe r170 (key (sx170 ing519))) +(recipe r170 (key (sy170 ing259))) +(recipe r170 (key (sx170 ing520))) +(recipe r170 (key (sy170 ing260))) +(recipe r170 (key (sx170 ing521))) +(recipe r170 (key (sy170 ing261))) +(recipe r171 (numIngredients 2)) +(recipe r171 (result (id item171))) +(recipe r171 (pattern 0 sx171)) +(recipe r171 (pattern 1 sy171)) +(recipe r171 (key (sx171 ing513))) +(recipe r171 (key (sy171 ing255))) +(recipe r171 (key (sx171 ing514))) +(recipe r171 (key (sy171 ing256))) +(recipe r171 (key (sx171 ing515))) +(recipe r171 (key (sy171 ing257))) +(recipe r171 (key (sx171 ing516))) +(recipe r171 (key (sy171 ing258))) +(recipe r171 (key (sx171 ing517))) +(recipe r171 (key (sy171 ing259))) +(recipe r171 (key (sx171 ing518))) +(recipe r171 (key (sy171 ing260))) +(recipe r171 (key (sx171 ing519))) +(recipe r171 (key (sy171 ing261))) +(recipe r171 (key (sx171 ing520))) +(recipe r171 (key (sy171 ing262))) +(recipe r171 (key (sx171 ing521))) +(recipe r171 (key (sy171 ing263))) +(recipe r171 (key (sx171 ing522))) +(recipe r171 (key (sy171 ing264))) +(recipe r171 (key (sx171 ing523))) +(recipe r171 (key (sy171 ing265))) +(recipe r171 (key (sx171 ing524))) +(recipe r171 (key (sy171 ing266))) +(recipe r172 (numIngredients 2)) +(recipe r172 (result (id item172))) +(recipe r172 (pattern 0 sx172)) +(recipe r172 (pattern 1 sy172)) +(recipe r172 (key (sx172 ing516))) +(recipe r172 (key (sy172 ing260))) +(recipe r172 (key (sx172 ing517))) +(recipe r172 (key (sy172 ing261))) +(recipe r172 (key (sx172 ing518))) +(recipe r172 (key (sy172 ing262))) +(recipe r172 (key (sx172 ing519))) +(recipe r172 (key (sy172 ing263))) +(recipe r172 (key (sx172 ing520))) +(recipe r172 (key (sy172 ing264))) +(recipe r172 (key (sx172 ing521))) +(recipe r172 (key (sy172 ing265))) +(recipe r172 (key (sx172 ing522))) +(recipe r172 (key (sy172 ing266))) +(recipe r172 (key (sx172 ing523))) +(recipe r172 (key (sy172 ing267))) +(recipe r172 (key (sx172 ing524))) +(recipe r172 (key (sy172 ing268))) +(recipe r172 (key (sx172 ing525))) +(recipe r172 (key (sy172 ing269))) +(recipe r172 (key (sx172 ing526))) +(recipe r172 (key (sy172 ing270))) +(recipe r172 (key (sx172 ing527))) +(recipe r172 (key (sy172 ing271))) +(recipe r173 (numIngredients 2)) +(recipe r173 (result (id item173))) +(recipe r173 (pattern 0 sx173)) +(recipe r173 (pattern 1 sy173)) +(recipe r173 (key (sx173 ing519))) +(recipe r173 (key (sy173 ing265))) +(recipe r173 (key (sx173 ing520))) +(recipe r173 (key (sy173 ing266))) +(recipe r173 (key (sx173 ing521))) +(recipe r173 (key (sy173 ing267))) +(recipe r173 (key (sx173 ing522))) +(recipe r173 (key (sy173 ing268))) +(recipe r173 (key (sx173 ing523))) +(recipe r173 (key (sy173 ing269))) +(recipe r173 (key (sx173 ing524))) +(recipe r173 (key (sy173 ing270))) +(recipe r173 (key (sx173 ing525))) +(recipe r173 (key (sy173 ing271))) +(recipe r173 (key (sx173 ing526))) +(recipe r173 (key (sy173 ing272))) +(recipe r173 (key (sx173 ing527))) +(recipe r173 (key (sy173 ing273))) +(recipe r173 (key (sx173 ing528))) +(recipe r173 (key (sy173 ing274))) +(recipe r173 (key (sx173 ing529))) +(recipe r173 (key (sy173 ing275))) +(recipe r173 (key (sx173 ing530))) +(recipe r173 (key (sy173 ing276))) +(recipe r174 (numIngredients 2)) +(recipe r174 (result (id item174))) +(recipe r174 (pattern 0 sx174)) +(recipe r174 (pattern 1 sy174)) +(recipe r174 (key (sx174 ing522))) +(recipe r174 (key (sy174 ing270))) +(recipe r174 (key (sx174 ing523))) +(recipe r174 (key (sy174 ing271))) +(recipe r174 (key (sx174 ing524))) +(recipe r174 (key (sy174 ing272))) +(recipe r174 (key (sx174 ing525))) +(recipe r174 (key (sy174 ing273))) +(recipe r174 (key (sx174 ing526))) +(recipe r174 (key (sy174 ing274))) +(recipe r174 (key (sx174 ing527))) +(recipe r174 (key (sy174 ing275))) +(recipe r174 (key (sx174 ing528))) +(recipe r174 (key (sy174 ing276))) +(recipe r174 (key (sx174 ing529))) +(recipe r174 (key (sy174 ing277))) +(recipe r174 (key (sx174 ing530))) +(recipe r174 (key (sy174 ing278))) +(recipe r174 (key (sx174 ing531))) +(recipe r174 (key (sy174 ing279))) +(recipe r174 (key (sx174 ing532))) +(recipe r174 (key (sy174 ing280))) +(recipe r174 (key (sx174 ing533))) +(recipe r174 (key (sy174 ing281))) +(recipe r175 (numIngredients 2)) +(recipe r175 (result (id item175))) +(recipe r175 (pattern 0 sx175)) +(recipe r175 (pattern 1 sy175)) +(recipe r175 (key (sx175 ing525))) +(recipe r175 (key (sy175 ing275))) +(recipe r175 (key (sx175 ing526))) +(recipe r175 (key (sy175 ing276))) +(recipe r175 (key (sx175 ing527))) +(recipe r175 (key (sy175 ing277))) +(recipe r175 (key (sx175 ing528))) +(recipe r175 (key (sy175 ing278))) +(recipe r175 (key (sx175 ing529))) +(recipe r175 (key (sy175 ing279))) +(recipe r175 (key (sx175 ing530))) +(recipe r175 (key (sy175 ing280))) +(recipe r175 (key (sx175 ing531))) +(recipe r175 (key (sy175 ing281))) +(recipe r175 (key (sx175 ing532))) +(recipe r175 (key (sy175 ing282))) +(recipe r175 (key (sx175 ing533))) +(recipe r175 (key (sy175 ing283))) +(recipe r175 (key (sx175 ing534))) +(recipe r175 (key (sy175 ing284))) +(recipe r175 (key (sx175 ing535))) +(recipe r175 (key (sy175 ing285))) +(recipe r175 (key (sx175 ing536))) +(recipe r175 (key (sy175 ing286))) +(recipe r176 (numIngredients 2)) +(recipe r176 (result (id item176))) +(recipe r176 (pattern 0 sx176)) +(recipe r176 (pattern 1 sy176)) +(recipe r176 (key (sx176 ing528))) +(recipe r176 (key (sy176 ing280))) +(recipe r176 (key (sx176 ing529))) +(recipe r176 (key (sy176 ing281))) +(recipe r176 (key (sx176 ing530))) +(recipe r176 (key (sy176 ing282))) +(recipe r176 (key (sx176 ing531))) +(recipe r176 (key (sy176 ing283))) +(recipe r176 (key (sx176 ing532))) +(recipe r176 (key (sy176 ing284))) +(recipe r176 (key (sx176 ing533))) +(recipe r176 (key (sy176 ing285))) +(recipe r176 (key (sx176 ing534))) +(recipe r176 (key (sy176 ing286))) +(recipe r176 (key (sx176 ing535))) +(recipe r176 (key (sy176 ing287))) +(recipe r176 (key (sx176 ing536))) +(recipe r176 (key (sy176 ing288))) +(recipe r176 (key (sx176 ing537))) +(recipe r176 (key (sy176 ing289))) +(recipe r176 (key (sx176 ing538))) +(recipe r176 (key (sy176 ing290))) +(recipe r176 (key (sx176 ing539))) +(recipe r176 (key (sy176 ing291))) +(recipe r177 (numIngredients 2)) +(recipe r177 (result (id item177))) +(recipe r177 (pattern 0 sx177)) +(recipe r177 (pattern 1 sy177)) +(recipe r177 (key (sx177 ing531))) +(recipe r177 (key (sy177 ing285))) +(recipe r177 (key (sx177 ing532))) +(recipe r177 (key (sy177 ing286))) +(recipe r177 (key (sx177 ing533))) +(recipe r177 (key (sy177 ing287))) +(recipe r177 (key (sx177 ing534))) +(recipe r177 (key (sy177 ing288))) +(recipe r177 (key (sx177 ing535))) +(recipe r177 (key (sy177 ing289))) +(recipe r177 (key (sx177 ing536))) +(recipe r177 (key (sy177 ing290))) +(recipe r177 (key (sx177 ing537))) +(recipe r177 (key (sy177 ing291))) +(recipe r177 (key (sx177 ing538))) +(recipe r177 (key (sy177 ing292))) +(recipe r177 (key (sx177 ing539))) +(recipe r177 (key (sy177 ing293))) +(recipe r177 (key (sx177 ing540))) +(recipe r177 (key (sy177 ing294))) +(recipe r177 (key (sx177 ing541))) +(recipe r177 (key (sy177 ing295))) +(recipe r177 (key (sx177 ing542))) +(recipe r177 (key (sy177 ing296))) +(recipe r178 (numIngredients 2)) +(recipe r178 (result (id item178))) +(recipe r178 (pattern 0 sx178)) +(recipe r178 (pattern 1 sy178)) +(recipe r178 (key (sx178 ing534))) +(recipe r178 (key (sy178 ing290))) +(recipe r178 (key (sx178 ing535))) +(recipe r178 (key (sy178 ing291))) +(recipe r178 (key (sx178 ing536))) +(recipe r178 (key (sy178 ing292))) +(recipe r178 (key (sx178 ing537))) +(recipe r178 (key (sy178 ing293))) +(recipe r178 (key (sx178 ing538))) +(recipe r178 (key (sy178 ing294))) +(recipe r178 (key (sx178 ing539))) +(recipe r178 (key (sy178 ing295))) +(recipe r178 (key (sx178 ing540))) +(recipe r178 (key (sy178 ing296))) +(recipe r178 (key (sx178 ing541))) +(recipe r178 (key (sy178 ing297))) +(recipe r178 (key (sx178 ing542))) +(recipe r178 (key (sy178 ing298))) +(recipe r178 (key (sx178 ing543))) +(recipe r178 (key (sy178 ing299))) +(recipe r178 (key (sx178 ing544))) +(recipe r178 (key (sy178 ing300))) +(recipe r178 (key (sx178 ing545))) +(recipe r178 (key (sy178 ing301))) +(recipe r179 (numIngredients 2)) +(recipe r179 (result (id item179))) +(recipe r179 (pattern 0 sx179)) +(recipe r179 (pattern 1 sy179)) +(recipe r179 (key (sx179 ing537))) +(recipe r179 (key (sy179 ing295))) +(recipe r179 (key (sx179 ing538))) +(recipe r179 (key (sy179 ing296))) +(recipe r179 (key (sx179 ing539))) +(recipe r179 (key (sy179 ing297))) +(recipe r179 (key (sx179 ing540))) +(recipe r179 (key (sy179 ing298))) +(recipe r179 (key (sx179 ing541))) +(recipe r179 (key (sy179 ing299))) +(recipe r179 (key (sx179 ing542))) +(recipe r179 (key (sy179 ing300))) +(recipe r179 (key (sx179 ing543))) +(recipe r179 (key (sy179 ing301))) +(recipe r179 (key (sx179 ing544))) +(recipe r179 (key (sy179 ing302))) +(recipe r179 (key (sx179 ing545))) +(recipe r179 (key (sy179 ing303))) +(recipe r179 (key (sx179 ing546))) +(recipe r179 (key (sy179 ing304))) +(recipe r179 (key (sx179 ing547))) +(recipe r179 (key (sy179 ing305))) +(recipe r179 (key (sx179 ing548))) +(recipe r179 (key (sy179 ing306))) +(recipe r180 (numIngredients 2)) +(recipe r180 (result (id item180))) +(recipe r180 (pattern 0 sx180)) +(recipe r180 (pattern 1 sy180)) +(recipe r180 (key (sx180 ing540))) +(recipe r180 (key (sy180 ing300))) +(recipe r180 (key (sx180 ing541))) +(recipe r180 (key (sy180 ing301))) +(recipe r180 (key (sx180 ing542))) +(recipe r180 (key (sy180 ing302))) +(recipe r180 (key (sx180 ing543))) +(recipe r180 (key (sy180 ing303))) +(recipe r180 (key (sx180 ing544))) +(recipe r180 (key (sy180 ing304))) +(recipe r180 (key (sx180 ing545))) +(recipe r180 (key (sy180 ing305))) +(recipe r180 (key (sx180 ing546))) +(recipe r180 (key (sy180 ing306))) +(recipe r180 (key (sx180 ing547))) +(recipe r180 (key (sy180 ing307))) +(recipe r180 (key (sx180 ing548))) +(recipe r180 (key (sy180 ing308))) +(recipe r180 (key (sx180 ing549))) +(recipe r180 (key (sy180 ing309))) +(recipe r180 (key (sx180 ing550))) +(recipe r180 (key (sy180 ing310))) +(recipe r180 (key (sx180 ing551))) +(recipe r180 (key (sy180 ing311))) +(recipe r181 (numIngredients 2)) +(recipe r181 (result (id item181))) +(recipe r181 (pattern 0 sx181)) +(recipe r181 (pattern 1 sy181)) +(recipe r181 (key (sx181 ing543))) +(recipe r181 (key (sy181 ing305))) +(recipe r181 (key (sx181 ing544))) +(recipe r181 (key (sy181 ing306))) +(recipe r181 (key (sx181 ing545))) +(recipe r181 (key (sy181 ing307))) +(recipe r181 (key (sx181 ing546))) +(recipe r181 (key (sy181 ing308))) +(recipe r181 (key (sx181 ing547))) +(recipe r181 (key (sy181 ing309))) +(recipe r181 (key (sx181 ing548))) +(recipe r181 (key (sy181 ing310))) +(recipe r181 (key (sx181 ing549))) +(recipe r181 (key (sy181 ing311))) +(recipe r181 (key (sx181 ing550))) +(recipe r181 (key (sy181 ing312))) +(recipe r181 (key (sx181 ing551))) +(recipe r181 (key (sy181 ing313))) +(recipe r181 (key (sx181 ing552))) +(recipe r181 (key (sy181 ing314))) +(recipe r181 (key (sx181 ing553))) +(recipe r181 (key (sy181 ing315))) +(recipe r181 (key (sx181 ing554))) +(recipe r181 (key (sy181 ing316))) +(recipe r182 (numIngredients 2)) +(recipe r182 (result (id item182))) +(recipe r182 (pattern 0 sx182)) +(recipe r182 (pattern 1 sy182)) +(recipe r182 (key (sx182 ing546))) +(recipe r182 (key (sy182 ing310))) +(recipe r182 (key (sx182 ing547))) +(recipe r182 (key (sy182 ing311))) +(recipe r182 (key (sx182 ing548))) +(recipe r182 (key (sy182 ing312))) +(recipe r182 (key (sx182 ing549))) +(recipe r182 (key (sy182 ing313))) +(recipe r182 (key (sx182 ing550))) +(recipe r182 (key (sy182 ing314))) +(recipe r182 (key (sx182 ing551))) +(recipe r182 (key (sy182 ing315))) +(recipe r182 (key (sx182 ing552))) +(recipe r182 (key (sy182 ing316))) +(recipe r182 (key (sx182 ing553))) +(recipe r182 (key (sy182 ing317))) +(recipe r182 (key (sx182 ing554))) +(recipe r182 (key (sy182 ing318))) +(recipe r182 (key (sx182 ing555))) +(recipe r182 (key (sy182 ing319))) +(recipe r182 (key (sx182 ing556))) +(recipe r182 (key (sy182 ing320))) +(recipe r182 (key (sx182 ing557))) +(recipe r182 (key (sy182 ing321))) +(recipe r183 (numIngredients 2)) +(recipe r183 (result (id item183))) +(recipe r183 (pattern 0 sx183)) +(recipe r183 (pattern 1 sy183)) +(recipe r183 (key (sx183 ing549))) +(recipe r183 (key (sy183 ing315))) +(recipe r183 (key (sx183 ing550))) +(recipe r183 (key (sy183 ing316))) +(recipe r183 (key (sx183 ing551))) +(recipe r183 (key (sy183 ing317))) +(recipe r183 (key (sx183 ing552))) +(recipe r183 (key (sy183 ing318))) +(recipe r183 (key (sx183 ing553))) +(recipe r183 (key (sy183 ing319))) +(recipe r183 (key (sx183 ing554))) +(recipe r183 (key (sy183 ing320))) +(recipe r183 (key (sx183 ing555))) +(recipe r183 (key (sy183 ing321))) +(recipe r183 (key (sx183 ing556))) +(recipe r183 (key (sy183 ing322))) +(recipe r183 (key (sx183 ing557))) +(recipe r183 (key (sy183 ing323))) +(recipe r183 (key (sx183 ing558))) +(recipe r183 (key (sy183 ing324))) +(recipe r183 (key (sx183 ing559))) +(recipe r183 (key (sy183 ing325))) +(recipe r183 (key (sx183 ing560))) +(recipe r183 (key (sy183 ing326))) +(recipe r184 (numIngredients 2)) +(recipe r184 (result (id item184))) +(recipe r184 (pattern 0 sx184)) +(recipe r184 (pattern 1 sy184)) +(recipe r184 (key (sx184 ing552))) +(recipe r184 (key (sy184 ing320))) +(recipe r184 (key (sx184 ing553))) +(recipe r184 (key (sy184 ing321))) +(recipe r184 (key (sx184 ing554))) +(recipe r184 (key (sy184 ing322))) +(recipe r184 (key (sx184 ing555))) +(recipe r184 (key (sy184 ing323))) +(recipe r184 (key (sx184 ing556))) +(recipe r184 (key (sy184 ing324))) +(recipe r184 (key (sx184 ing557))) +(recipe r184 (key (sy184 ing325))) +(recipe r184 (key (sx184 ing558))) +(recipe r184 (key (sy184 ing326))) +(recipe r184 (key (sx184 ing559))) +(recipe r184 (key (sy184 ing327))) +(recipe r184 (key (sx184 ing560))) +(recipe r184 (key (sy184 ing328))) +(recipe r184 (key (sx184 ing561))) +(recipe r184 (key (sy184 ing329))) +(recipe r184 (key (sx184 ing562))) +(recipe r184 (key (sy184 ing330))) +(recipe r184 (key (sx184 ing563))) +(recipe r184 (key (sy184 ing331))) +(recipe r185 (numIngredients 2)) +(recipe r185 (result (id item185))) +(recipe r185 (pattern 0 sx185)) +(recipe r185 (pattern 1 sy185)) +(recipe r185 (key (sx185 ing555))) +(recipe r185 (key (sy185 ing325))) +(recipe r185 (key (sx185 ing556))) +(recipe r185 (key (sy185 ing326))) +(recipe r185 (key (sx185 ing557))) +(recipe r185 (key (sy185 ing327))) +(recipe r185 (key (sx185 ing558))) +(recipe r185 (key (sy185 ing328))) +(recipe r185 (key (sx185 ing559))) +(recipe r185 (key (sy185 ing329))) +(recipe r185 (key (sx185 ing560))) +(recipe r185 (key (sy185 ing330))) +(recipe r185 (key (sx185 ing561))) +(recipe r185 (key (sy185 ing331))) +(recipe r185 (key (sx185 ing562))) +(recipe r185 (key (sy185 ing332))) +(recipe r185 (key (sx185 ing563))) +(recipe r185 (key (sy185 ing333))) +(recipe r185 (key (sx185 ing564))) +(recipe r185 (key (sy185 ing334))) +(recipe r185 (key (sx185 ing565))) +(recipe r185 (key (sy185 ing335))) +(recipe r185 (key (sx185 ing566))) +(recipe r185 (key (sy185 ing336))) +(recipe r186 (numIngredients 2)) +(recipe r186 (result (id item186))) +(recipe r186 (pattern 0 sx186)) +(recipe r186 (pattern 1 sy186)) +(recipe r186 (key (sx186 ing558))) +(recipe r186 (key (sy186 ing330))) +(recipe r186 (key (sx186 ing559))) +(recipe r186 (key (sy186 ing331))) +(recipe r186 (key (sx186 ing560))) +(recipe r186 (key (sy186 ing332))) +(recipe r186 (key (sx186 ing561))) +(recipe r186 (key (sy186 ing333))) +(recipe r186 (key (sx186 ing562))) +(recipe r186 (key (sy186 ing334))) +(recipe r186 (key (sx186 ing563))) +(recipe r186 (key (sy186 ing335))) +(recipe r186 (key (sx186 ing564))) +(recipe r186 (key (sy186 ing336))) +(recipe r186 (key (sx186 ing565))) +(recipe r186 (key (sy186 ing337))) +(recipe r186 (key (sx186 ing566))) +(recipe r186 (key (sy186 ing338))) +(recipe r186 (key (sx186 ing567))) +(recipe r186 (key (sy186 ing339))) +(recipe r186 (key (sx186 ing568))) +(recipe r186 (key (sy186 ing340))) +(recipe r186 (key (sx186 ing569))) +(recipe r186 (key (sy186 ing341))) +(recipe r187 (numIngredients 2)) +(recipe r187 (result (id item187))) +(recipe r187 (pattern 0 sx187)) +(recipe r187 (pattern 1 sy187)) +(recipe r187 (key (sx187 ing561))) +(recipe r187 (key (sy187 ing335))) +(recipe r187 (key (sx187 ing562))) +(recipe r187 (key (sy187 ing336))) +(recipe r187 (key (sx187 ing563))) +(recipe r187 (key (sy187 ing337))) +(recipe r187 (key (sx187 ing564))) +(recipe r187 (key (sy187 ing338))) +(recipe r187 (key (sx187 ing565))) +(recipe r187 (key (sy187 ing339))) +(recipe r187 (key (sx187 ing566))) +(recipe r187 (key (sy187 ing340))) +(recipe r187 (key (sx187 ing567))) +(recipe r187 (key (sy187 ing341))) +(recipe r187 (key (sx187 ing568))) +(recipe r187 (key (sy187 ing342))) +(recipe r187 (key (sx187 ing569))) +(recipe r187 (key (sy187 ing343))) +(recipe r187 (key (sx187 ing570))) +(recipe r187 (key (sy187 ing344))) +(recipe r187 (key (sx187 ing571))) +(recipe r187 (key (sy187 ing345))) +(recipe r187 (key (sx187 ing572))) +(recipe r187 (key (sy187 ing346))) +(recipe r188 (numIngredients 2)) +(recipe r188 (result (id item188))) +(recipe r188 (pattern 0 sx188)) +(recipe r188 (pattern 1 sy188)) +(recipe r188 (key (sx188 ing564))) +(recipe r188 (key (sy188 ing340))) +(recipe r188 (key (sx188 ing565))) +(recipe r188 (key (sy188 ing341))) +(recipe r188 (key (sx188 ing566))) +(recipe r188 (key (sy188 ing342))) +(recipe r188 (key (sx188 ing567))) +(recipe r188 (key (sy188 ing343))) +(recipe r188 (key (sx188 ing568))) +(recipe r188 (key (sy188 ing344))) +(recipe r188 (key (sx188 ing569))) +(recipe r188 (key (sy188 ing345))) +(recipe r188 (key (sx188 ing570))) +(recipe r188 (key (sy188 ing346))) +(recipe r188 (key (sx188 ing571))) +(recipe r188 (key (sy188 ing347))) +(recipe r188 (key (sx188 ing572))) +(recipe r188 (key (sy188 ing348))) +(recipe r188 (key (sx188 ing573))) +(recipe r188 (key (sy188 ing349))) +(recipe r188 (key (sx188 ing574))) +(recipe r188 (key (sy188 ing350))) +(recipe r188 (key (sx188 ing575))) +(recipe r188 (key (sy188 ing351))) +(recipe r189 (numIngredients 2)) +(recipe r189 (result (id item189))) +(recipe r189 (pattern 0 sx189)) +(recipe r189 (pattern 1 sy189)) +(recipe r189 (key (sx189 ing567))) +(recipe r189 (key (sy189 ing345))) +(recipe r189 (key (sx189 ing568))) +(recipe r189 (key (sy189 ing346))) +(recipe r189 (key (sx189 ing569))) +(recipe r189 (key (sy189 ing347))) +(recipe r189 (key (sx189 ing570))) +(recipe r189 (key (sy189 ing348))) +(recipe r189 (key (sx189 ing571))) +(recipe r189 (key (sy189 ing349))) +(recipe r189 (key (sx189 ing572))) +(recipe r189 (key (sy189 ing350))) +(recipe r189 (key (sx189 ing573))) +(recipe r189 (key (sy189 ing351))) +(recipe r189 (key (sx189 ing574))) +(recipe r189 (key (sy189 ing352))) +(recipe r189 (key (sx189 ing575))) +(recipe r189 (key (sy189 ing353))) +(recipe r189 (key (sx189 ing576))) +(recipe r189 (key (sy189 ing354))) +(recipe r189 (key (sx189 ing577))) +(recipe r189 (key (sy189 ing355))) +(recipe r189 (key (sx189 ing578))) +(recipe r189 (key (sy189 ing356))) +(recipe r190 (numIngredients 2)) +(recipe r190 (result (id item190))) +(recipe r190 (pattern 0 sx190)) +(recipe r190 (pattern 1 sy190)) +(recipe r190 (key (sx190 ing570))) +(recipe r190 (key (sy190 ing350))) +(recipe r190 (key (sx190 ing571))) +(recipe r190 (key (sy190 ing351))) +(recipe r190 (key (sx190 ing572))) +(recipe r190 (key (sy190 ing352))) +(recipe r190 (key (sx190 ing573))) +(recipe r190 (key (sy190 ing353))) +(recipe r190 (key (sx190 ing574))) +(recipe r190 (key (sy190 ing354))) +(recipe r190 (key (sx190 ing575))) +(recipe r190 (key (sy190 ing355))) +(recipe r190 (key (sx190 ing576))) +(recipe r190 (key (sy190 ing356))) +(recipe r190 (key (sx190 ing577))) +(recipe r190 (key (sy190 ing357))) +(recipe r190 (key (sx190 ing578))) +(recipe r190 (key (sy190 ing358))) +(recipe r190 (key (sx190 ing579))) +(recipe r190 (key (sy190 ing359))) +(recipe r190 (key (sx190 ing580))) +(recipe r190 (key (sy190 ing360))) +(recipe r190 (key (sx190 ing581))) +(recipe r190 (key (sy190 ing361))) +(recipe r191 (numIngredients 2)) +(recipe r191 (result (id item191))) +(recipe r191 (pattern 0 sx191)) +(recipe r191 (pattern 1 sy191)) +(recipe r191 (key (sx191 ing573))) +(recipe r191 (key (sy191 ing355))) +(recipe r191 (key (sx191 ing574))) +(recipe r191 (key (sy191 ing356))) +(recipe r191 (key (sx191 ing575))) +(recipe r191 (key (sy191 ing357))) +(recipe r191 (key (sx191 ing576))) +(recipe r191 (key (sy191 ing358))) +(recipe r191 (key (sx191 ing577))) +(recipe r191 (key (sy191 ing359))) +(recipe r191 (key (sx191 ing578))) +(recipe r191 (key (sy191 ing360))) +(recipe r191 (key (sx191 ing579))) +(recipe r191 (key (sy191 ing361))) +(recipe r191 (key (sx191 ing580))) +(recipe r191 (key (sy191 ing362))) +(recipe r191 (key (sx191 ing581))) +(recipe r191 (key (sy191 ing363))) +(recipe r191 (key (sx191 ing582))) +(recipe r191 (key (sy191 ing364))) +(recipe r191 (key (sx191 ing583))) +(recipe r191 (key (sy191 ing365))) +(recipe r191 (key (sx191 ing584))) +(recipe r191 (key (sy191 ing366))) +(recipe r192 (numIngredients 2)) +(recipe r192 (result (id item192))) +(recipe r192 (pattern 0 sx192)) +(recipe r192 (pattern 1 sy192)) +(recipe r192 (key (sx192 ing576))) +(recipe r192 (key (sy192 ing360))) +(recipe r192 (key (sx192 ing577))) +(recipe r192 (key (sy192 ing361))) +(recipe r192 (key (sx192 ing578))) +(recipe r192 (key (sy192 ing362))) +(recipe r192 (key (sx192 ing579))) +(recipe r192 (key (sy192 ing363))) +(recipe r192 (key (sx192 ing580))) +(recipe r192 (key (sy192 ing364))) +(recipe r192 (key (sx192 ing581))) +(recipe r192 (key (sy192 ing365))) +(recipe r192 (key (sx192 ing582))) +(recipe r192 (key (sy192 ing366))) +(recipe r192 (key (sx192 ing583))) +(recipe r192 (key (sy192 ing367))) +(recipe r192 (key (sx192 ing584))) +(recipe r192 (key (sy192 ing368))) +(recipe r192 (key (sx192 ing585))) +(recipe r192 (key (sy192 ing369))) +(recipe r192 (key (sx192 ing586))) +(recipe r192 (key (sy192 ing370))) +(recipe r192 (key (sx192 ing587))) +(recipe r192 (key (sy192 ing371))) +(recipe r193 (numIngredients 2)) +(recipe r193 (result (id item193))) +(recipe r193 (pattern 0 sx193)) +(recipe r193 (pattern 1 sy193)) +(recipe r193 (key (sx193 ing579))) +(recipe r193 (key (sy193 ing365))) +(recipe r193 (key (sx193 ing580))) +(recipe r193 (key (sy193 ing366))) +(recipe r193 (key (sx193 ing581))) +(recipe r193 (key (sy193 ing367))) +(recipe r193 (key (sx193 ing582))) +(recipe r193 (key (sy193 ing368))) +(recipe r193 (key (sx193 ing583))) +(recipe r193 (key (sy193 ing369))) +(recipe r193 (key (sx193 ing584))) +(recipe r193 (key (sy193 ing370))) +(recipe r193 (key (sx193 ing585))) +(recipe r193 (key (sy193 ing371))) +(recipe r193 (key (sx193 ing586))) +(recipe r193 (key (sy193 ing372))) +(recipe r193 (key (sx193 ing587))) +(recipe r193 (key (sy193 ing373))) +(recipe r193 (key (sx193 ing588))) +(recipe r193 (key (sy193 ing374))) +(recipe r193 (key (sx193 ing589))) +(recipe r193 (key (sy193 ing375))) +(recipe r193 (key (sx193 ing590))) +(recipe r193 (key (sy193 ing376))) +(recipe r194 (numIngredients 2)) +(recipe r194 (result (id item194))) +(recipe r194 (pattern 0 sx194)) +(recipe r194 (pattern 1 sy194)) +(recipe r194 (key (sx194 ing582))) +(recipe r194 (key (sy194 ing370))) +(recipe r194 (key (sx194 ing583))) +(recipe r194 (key (sy194 ing371))) +(recipe r194 (key (sx194 ing584))) +(recipe r194 (key (sy194 ing372))) +(recipe r194 (key (sx194 ing585))) +(recipe r194 (key (sy194 ing373))) +(recipe r194 (key (sx194 ing586))) +(recipe r194 (key (sy194 ing374))) +(recipe r194 (key (sx194 ing587))) +(recipe r194 (key (sy194 ing375))) +(recipe r194 (key (sx194 ing588))) +(recipe r194 (key (sy194 ing376))) +(recipe r194 (key (sx194 ing589))) +(recipe r194 (key (sy194 ing377))) +(recipe r194 (key (sx194 ing590))) +(recipe r194 (key (sy194 ing378))) +(recipe r194 (key (sx194 ing591))) +(recipe r194 (key (sy194 ing379))) +(recipe r194 (key (sx194 ing592))) +(recipe r194 (key (sy194 ing380))) +(recipe r194 (key (sx194 ing593))) +(recipe r194 (key (sy194 ing381))) +(recipe r195 (numIngredients 2)) +(recipe r195 (result (id item195))) +(recipe r195 (pattern 0 sx195)) +(recipe r195 (pattern 1 sy195)) +(recipe r195 (key (sx195 ing585))) +(recipe r195 (key (sy195 ing375))) +(recipe r195 (key (sx195 ing586))) +(recipe r195 (key (sy195 ing376))) +(recipe r195 (key (sx195 ing587))) +(recipe r195 (key (sy195 ing377))) +(recipe r195 (key (sx195 ing588))) +(recipe r195 (key (sy195 ing378))) +(recipe r195 (key (sx195 ing589))) +(recipe r195 (key (sy195 ing379))) +(recipe r195 (key (sx195 ing590))) +(recipe r195 (key (sy195 ing380))) +(recipe r195 (key (sx195 ing591))) +(recipe r195 (key (sy195 ing381))) +(recipe r195 (key (sx195 ing592))) +(recipe r195 (key (sy195 ing382))) +(recipe r195 (key (sx195 ing593))) +(recipe r195 (key (sy195 ing383))) +(recipe r195 (key (sx195 ing594))) +(recipe r195 (key (sy195 ing384))) +(recipe r195 (key (sx195 ing595))) +(recipe r195 (key (sy195 ing385))) +(recipe r195 (key (sx195 ing596))) +(recipe r195 (key (sy195 ing386))) +(recipe r196 (numIngredients 2)) +(recipe r196 (result (id item196))) +(recipe r196 (pattern 0 sx196)) +(recipe r196 (pattern 1 sy196)) +(recipe r196 (key (sx196 ing588))) +(recipe r196 (key (sy196 ing380))) +(recipe r196 (key (sx196 ing589))) +(recipe r196 (key (sy196 ing381))) +(recipe r196 (key (sx196 ing590))) +(recipe r196 (key (sy196 ing382))) +(recipe r196 (key (sx196 ing591))) +(recipe r196 (key (sy196 ing383))) +(recipe r196 (key (sx196 ing592))) +(recipe r196 (key (sy196 ing384))) +(recipe r196 (key (sx196 ing593))) +(recipe r196 (key (sy196 ing385))) +(recipe r196 (key (sx196 ing594))) +(recipe r196 (key (sy196 ing386))) +(recipe r196 (key (sx196 ing595))) +(recipe r196 (key (sy196 ing387))) +(recipe r196 (key (sx196 ing596))) +(recipe r196 (key (sy196 ing388))) +(recipe r196 (key (sx196 ing597))) +(recipe r196 (key (sy196 ing389))) +(recipe r196 (key (sx196 ing598))) +(recipe r196 (key (sy196 ing390))) +(recipe r196 (key (sx196 ing599))) +(recipe r196 (key (sy196 ing391))) +(recipe r197 (numIngredients 2)) +(recipe r197 (result (id item197))) +(recipe r197 (pattern 0 sx197)) +(recipe r197 (pattern 1 sy197)) +(recipe r197 (key (sx197 ing591))) +(recipe r197 (key (sy197 ing385))) +(recipe r197 (key (sx197 ing592))) +(recipe r197 (key (sy197 ing386))) +(recipe r197 (key (sx197 ing593))) +(recipe r197 (key (sy197 ing387))) +(recipe r197 (key (sx197 ing594))) +(recipe r197 (key (sy197 ing388))) +(recipe r197 (key (sx197 ing595))) +(recipe r197 (key (sy197 ing389))) +(recipe r197 (key (sx197 ing596))) +(recipe r197 (key (sy197 ing390))) +(recipe r197 (key (sx197 ing597))) +(recipe r197 (key (sy197 ing391))) +(recipe r197 (key (sx197 ing598))) +(recipe r197 (key (sy197 ing392))) +(recipe r197 (key (sx197 ing599))) +(recipe r197 (key (sy197 ing393))) +(recipe r197 (key (sx197 ing0))) +(recipe r197 (key (sy197 ing394))) +(recipe r197 (key (sx197 ing1))) +(recipe r197 (key (sy197 ing395))) +(recipe r197 (key (sx197 ing2))) +(recipe r197 (key (sy197 ing396))) +(recipe r198 (numIngredients 2)) +(recipe r198 (result (id item198))) +(recipe r198 (pattern 0 sx198)) +(recipe r198 (pattern 1 sy198)) +(recipe r198 (key (sx198 ing594))) +(recipe r198 (key (sy198 ing390))) +(recipe r198 (key (sx198 ing595))) +(recipe r198 (key (sy198 ing391))) +(recipe r198 (key (sx198 ing596))) +(recipe r198 (key (sy198 ing392))) +(recipe r198 (key (sx198 ing597))) +(recipe r198 (key (sy198 ing393))) +(recipe r198 (key (sx198 ing598))) +(recipe r198 (key (sy198 ing394))) +(recipe r198 (key (sx198 ing599))) +(recipe r198 (key (sy198 ing395))) +(recipe r198 (key (sx198 ing0))) +(recipe r198 (key (sy198 ing396))) +(recipe r198 (key (sx198 ing1))) +(recipe r198 (key (sy198 ing397))) +(recipe r198 (key (sx198 ing2))) +(recipe r198 (key (sy198 ing398))) +(recipe r198 (key (sx198 ing3))) +(recipe r198 (key (sy198 ing399))) +(recipe r198 (key (sx198 ing4))) +(recipe r198 (key (sy198 ing400))) +(recipe r198 (key (sx198 ing5))) +(recipe r198 (key (sy198 ing401))) +(recipe r199 (numIngredients 2)) +(recipe r199 (result (id item199))) +(recipe r199 (pattern 0 sx199)) +(recipe r199 (pattern 1 sy199)) +(recipe r199 (key (sx199 ing597))) +(recipe r199 (key (sy199 ing395))) +(recipe r199 (key (sx199 ing598))) +(recipe r199 (key (sy199 ing396))) +(recipe r199 (key (sx199 ing599))) +(recipe r199 (key (sy199 ing397))) +(recipe r199 (key (sx199 ing0))) +(recipe r199 (key (sy199 ing398))) +(recipe r199 (key (sx199 ing1))) +(recipe r199 (key (sy199 ing399))) +(recipe r199 (key (sx199 ing2))) +(recipe r199 (key (sy199 ing400))) +(recipe r199 (key (sx199 ing3))) +(recipe r199 (key (sy199 ing401))) +(recipe r199 (key (sx199 ing4))) +(recipe r199 (key (sy199 ing402))) +(recipe r199 (key (sx199 ing5))) +(recipe r199 (key (sy199 ing403))) +(recipe r199 (key (sx199 ing6))) +(recipe r199 (key (sy199 ing404))) +(recipe r199 (key (sx199 ing7))) +(recipe r199 (key (sy199 ing405))) +(recipe r199 (key (sx199 ing8))) +(recipe r199 (key (sy199 ing406))) +(recipe r200 (numIngredients 2)) +(recipe r200 (result (id item200))) +(recipe r200 (pattern 0 sx200)) +(recipe r200 (pattern 1 sy200)) +(recipe r200 (key (sx200 ing0))) +(recipe r200 (key (sy200 ing400))) +(recipe r200 (key (sx200 ing1))) +(recipe r200 (key (sy200 ing401))) +(recipe r200 (key (sx200 ing2))) +(recipe r200 (key (sy200 ing402))) +(recipe r200 (key (sx200 ing3))) +(recipe r200 (key (sy200 ing403))) +(recipe r200 (key (sx200 ing4))) +(recipe r200 (key (sy200 ing404))) +(recipe r200 (key (sx200 ing5))) +(recipe r200 (key (sy200 ing405))) +(recipe r200 (key (sx200 ing6))) +(recipe r200 (key (sy200 ing406))) +(recipe r200 (key (sx200 ing7))) +(recipe r200 (key (sy200 ing407))) +(recipe r200 (key (sx200 ing8))) +(recipe r200 (key (sy200 ing408))) +(recipe r200 (key (sx200 ing9))) +(recipe r200 (key (sy200 ing409))) +(recipe r200 (key (sx200 ing10))) +(recipe r200 (key (sy200 ing410))) +(recipe r200 (key (sx200 ing11))) +(recipe r200 (key (sy200 ing411))) +(recipe r201 (numIngredients 2)) +(recipe r201 (result (id item201))) +(recipe r201 (pattern 0 sx201)) +(recipe r201 (pattern 1 sy201)) +(recipe r201 (key (sx201 ing3))) +(recipe r201 (key (sy201 ing405))) +(recipe r201 (key (sx201 ing4))) +(recipe r201 (key (sy201 ing406))) +(recipe r201 (key (sx201 ing5))) +(recipe r201 (key (sy201 ing407))) +(recipe r201 (key (sx201 ing6))) +(recipe r201 (key (sy201 ing408))) +(recipe r201 (key (sx201 ing7))) +(recipe r201 (key (sy201 ing409))) +(recipe r201 (key (sx201 ing8))) +(recipe r201 (key (sy201 ing410))) +(recipe r201 (key (sx201 ing9))) +(recipe r201 (key (sy201 ing411))) +(recipe r201 (key (sx201 ing10))) +(recipe r201 (key (sy201 ing412))) +(recipe r201 (key (sx201 ing11))) +(recipe r201 (key (sy201 ing413))) +(recipe r201 (key (sx201 ing12))) +(recipe r201 (key (sy201 ing414))) +(recipe r201 (key (sx201 ing13))) +(recipe r201 (key (sy201 ing415))) +(recipe r201 (key (sx201 ing14))) +(recipe r201 (key (sy201 ing416))) +(recipe r202 (numIngredients 2)) +(recipe r202 (result (id item202))) +(recipe r202 (pattern 0 sx202)) +(recipe r202 (pattern 1 sy202)) +(recipe r202 (key (sx202 ing6))) +(recipe r202 (key (sy202 ing410))) +(recipe r202 (key (sx202 ing7))) +(recipe r202 (key (sy202 ing411))) +(recipe r202 (key (sx202 ing8))) +(recipe r202 (key (sy202 ing412))) +(recipe r202 (key (sx202 ing9))) +(recipe r202 (key (sy202 ing413))) +(recipe r202 (key (sx202 ing10))) +(recipe r202 (key (sy202 ing414))) +(recipe r202 (key (sx202 ing11))) +(recipe r202 (key (sy202 ing415))) +(recipe r202 (key (sx202 ing12))) +(recipe r202 (key (sy202 ing416))) +(recipe r202 (key (sx202 ing13))) +(recipe r202 (key (sy202 ing417))) +(recipe r202 (key (sx202 ing14))) +(recipe r202 (key (sy202 ing418))) +(recipe r202 (key (sx202 ing15))) +(recipe r202 (key (sy202 ing419))) +(recipe r202 (key (sx202 ing16))) +(recipe r202 (key (sy202 ing420))) +(recipe r202 (key (sx202 ing17))) +(recipe r202 (key (sy202 ing421))) +(recipe r203 (numIngredients 2)) +(recipe r203 (result (id item203))) +(recipe r203 (pattern 0 sx203)) +(recipe r203 (pattern 1 sy203)) +(recipe r203 (key (sx203 ing9))) +(recipe r203 (key (sy203 ing415))) +(recipe r203 (key (sx203 ing10))) +(recipe r203 (key (sy203 ing416))) +(recipe r203 (key (sx203 ing11))) +(recipe r203 (key (sy203 ing417))) +(recipe r203 (key (sx203 ing12))) +(recipe r203 (key (sy203 ing418))) +(recipe r203 (key (sx203 ing13))) +(recipe r203 (key (sy203 ing419))) +(recipe r203 (key (sx203 ing14))) +(recipe r203 (key (sy203 ing420))) +(recipe r203 (key (sx203 ing15))) +(recipe r203 (key (sy203 ing421))) +(recipe r203 (key (sx203 ing16))) +(recipe r203 (key (sy203 ing422))) +(recipe r203 (key (sx203 ing17))) +(recipe r203 (key (sy203 ing423))) +(recipe r203 (key (sx203 ing18))) +(recipe r203 (key (sy203 ing424))) +(recipe r203 (key (sx203 ing19))) +(recipe r203 (key (sy203 ing425))) +(recipe r203 (key (sx203 ing20))) +(recipe r203 (key (sy203 ing426))) +(recipe r204 (numIngredients 2)) +(recipe r204 (result (id item204))) +(recipe r204 (pattern 0 sx204)) +(recipe r204 (pattern 1 sy204)) +(recipe r204 (key (sx204 ing12))) +(recipe r204 (key (sy204 ing420))) +(recipe r204 (key (sx204 ing13))) +(recipe r204 (key (sy204 ing421))) +(recipe r204 (key (sx204 ing14))) +(recipe r204 (key (sy204 ing422))) +(recipe r204 (key (sx204 ing15))) +(recipe r204 (key (sy204 ing423))) +(recipe r204 (key (sx204 ing16))) +(recipe r204 (key (sy204 ing424))) +(recipe r204 (key (sx204 ing17))) +(recipe r204 (key (sy204 ing425))) +(recipe r204 (key (sx204 ing18))) +(recipe r204 (key (sy204 ing426))) +(recipe r204 (key (sx204 ing19))) +(recipe r204 (key (sy204 ing427))) +(recipe r204 (key (sx204 ing20))) +(recipe r204 (key (sy204 ing428))) +(recipe r204 (key (sx204 ing21))) +(recipe r204 (key (sy204 ing429))) +(recipe r204 (key (sx204 ing22))) +(recipe r204 (key (sy204 ing430))) +(recipe r204 (key (sx204 ing23))) +(recipe r204 (key (sy204 ing431))) +(recipe r205 (numIngredients 2)) +(recipe r205 (result (id item205))) +(recipe r205 (pattern 0 sx205)) +(recipe r205 (pattern 1 sy205)) +(recipe r205 (key (sx205 ing15))) +(recipe r205 (key (sy205 ing425))) +(recipe r205 (key (sx205 ing16))) +(recipe r205 (key (sy205 ing426))) +(recipe r205 (key (sx205 ing17))) +(recipe r205 (key (sy205 ing427))) +(recipe r205 (key (sx205 ing18))) +(recipe r205 (key (sy205 ing428))) +(recipe r205 (key (sx205 ing19))) +(recipe r205 (key (sy205 ing429))) +(recipe r205 (key (sx205 ing20))) +(recipe r205 (key (sy205 ing430))) +(recipe r205 (key (sx205 ing21))) +(recipe r205 (key (sy205 ing431))) +(recipe r205 (key (sx205 ing22))) +(recipe r205 (key (sy205 ing432))) +(recipe r205 (key (sx205 ing23))) +(recipe r205 (key (sy205 ing433))) +(recipe r205 (key (sx205 ing24))) +(recipe r205 (key (sy205 ing434))) +(recipe r205 (key (sx205 ing25))) +(recipe r205 (key (sy205 ing435))) +(recipe r205 (key (sx205 ing26))) +(recipe r205 (key (sy205 ing436))) +(recipe r206 (numIngredients 2)) +(recipe r206 (result (id item206))) +(recipe r206 (pattern 0 sx206)) +(recipe r206 (pattern 1 sy206)) +(recipe r206 (key (sx206 ing18))) +(recipe r206 (key (sy206 ing430))) +(recipe r206 (key (sx206 ing19))) +(recipe r206 (key (sy206 ing431))) +(recipe r206 (key (sx206 ing20))) +(recipe r206 (key (sy206 ing432))) +(recipe r206 (key (sx206 ing21))) +(recipe r206 (key (sy206 ing433))) +(recipe r206 (key (sx206 ing22))) +(recipe r206 (key (sy206 ing434))) +(recipe r206 (key (sx206 ing23))) +(recipe r206 (key (sy206 ing435))) +(recipe r206 (key (sx206 ing24))) +(recipe r206 (key (sy206 ing436))) +(recipe r206 (key (sx206 ing25))) +(recipe r206 (key (sy206 ing437))) +(recipe r206 (key (sx206 ing26))) +(recipe r206 (key (sy206 ing438))) +(recipe r206 (key (sx206 ing27))) +(recipe r206 (key (sy206 ing439))) +(recipe r206 (key (sx206 ing28))) +(recipe r206 (key (sy206 ing440))) +(recipe r206 (key (sx206 ing29))) +(recipe r206 (key (sy206 ing441))) +(recipe r207 (numIngredients 2)) +(recipe r207 (result (id item207))) +(recipe r207 (pattern 0 sx207)) +(recipe r207 (pattern 1 sy207)) +(recipe r207 (key (sx207 ing21))) +(recipe r207 (key (sy207 ing435))) +(recipe r207 (key (sx207 ing22))) +(recipe r207 (key (sy207 ing436))) +(recipe r207 (key (sx207 ing23))) +(recipe r207 (key (sy207 ing437))) +(recipe r207 (key (sx207 ing24))) +(recipe r207 (key (sy207 ing438))) +(recipe r207 (key (sx207 ing25))) +(recipe r207 (key (sy207 ing439))) +(recipe r207 (key (sx207 ing26))) +(recipe r207 (key (sy207 ing440))) +(recipe r207 (key (sx207 ing27))) +(recipe r207 (key (sy207 ing441))) +(recipe r207 (key (sx207 ing28))) +(recipe r207 (key (sy207 ing442))) +(recipe r207 (key (sx207 ing29))) +(recipe r207 (key (sy207 ing443))) +(recipe r207 (key (sx207 ing30))) +(recipe r207 (key (sy207 ing444))) +(recipe r207 (key (sx207 ing31))) +(recipe r207 (key (sy207 ing445))) +(recipe r207 (key (sx207 ing32))) +(recipe r207 (key (sy207 ing446))) +(recipe r208 (numIngredients 2)) +(recipe r208 (result (id item208))) +(recipe r208 (pattern 0 sx208)) +(recipe r208 (pattern 1 sy208)) +(recipe r208 (key (sx208 ing24))) +(recipe r208 (key (sy208 ing440))) +(recipe r208 (key (sx208 ing25))) +(recipe r208 (key (sy208 ing441))) +(recipe r208 (key (sx208 ing26))) +(recipe r208 (key (sy208 ing442))) +(recipe r208 (key (sx208 ing27))) +(recipe r208 (key (sy208 ing443))) +(recipe r208 (key (sx208 ing28))) +(recipe r208 (key (sy208 ing444))) +(recipe r208 (key (sx208 ing29))) +(recipe r208 (key (sy208 ing445))) +(recipe r208 (key (sx208 ing30))) +(recipe r208 (key (sy208 ing446))) +(recipe r208 (key (sx208 ing31))) +(recipe r208 (key (sy208 ing447))) +(recipe r208 (key (sx208 ing32))) +(recipe r208 (key (sy208 ing448))) +(recipe r208 (key (sx208 ing33))) +(recipe r208 (key (sy208 ing449))) +(recipe r208 (key (sx208 ing34))) +(recipe r208 (key (sy208 ing450))) +(recipe r208 (key (sx208 ing35))) +(recipe r208 (key (sy208 ing451))) +(recipe r209 (numIngredients 2)) +(recipe r209 (result (id item209))) +(recipe r209 (pattern 0 sx209)) +(recipe r209 (pattern 1 sy209)) +(recipe r209 (key (sx209 ing27))) +(recipe r209 (key (sy209 ing445))) +(recipe r209 (key (sx209 ing28))) +(recipe r209 (key (sy209 ing446))) +(recipe r209 (key (sx209 ing29))) +(recipe r209 (key (sy209 ing447))) +(recipe r209 (key (sx209 ing30))) +(recipe r209 (key (sy209 ing448))) +(recipe r209 (key (sx209 ing31))) +(recipe r209 (key (sy209 ing449))) +(recipe r209 (key (sx209 ing32))) +(recipe r209 (key (sy209 ing450))) +(recipe r209 (key (sx209 ing33))) +(recipe r209 (key (sy209 ing451))) +(recipe r209 (key (sx209 ing34))) +(recipe r209 (key (sy209 ing452))) +(recipe r209 (key (sx209 ing35))) +(recipe r209 (key (sy209 ing453))) +(recipe r209 (key (sx209 ing36))) +(recipe r209 (key (sy209 ing454))) +(recipe r209 (key (sx209 ing37))) +(recipe r209 (key (sy209 ing455))) +(recipe r209 (key (sx209 ing38))) +(recipe r209 (key (sy209 ing456))) +(recipe r210 (numIngredients 2)) +(recipe r210 (result (id item210))) +(recipe r210 (pattern 0 sx210)) +(recipe r210 (pattern 1 sy210)) +(recipe r210 (key (sx210 ing30))) +(recipe r210 (key (sy210 ing450))) +(recipe r210 (key (sx210 ing31))) +(recipe r210 (key (sy210 ing451))) +(recipe r210 (key (sx210 ing32))) +(recipe r210 (key (sy210 ing452))) +(recipe r210 (key (sx210 ing33))) +(recipe r210 (key (sy210 ing453))) +(recipe r210 (key (sx210 ing34))) +(recipe r210 (key (sy210 ing454))) +(recipe r210 (key (sx210 ing35))) +(recipe r210 (key (sy210 ing455))) +(recipe r210 (key (sx210 ing36))) +(recipe r210 (key (sy210 ing456))) +(recipe r210 (key (sx210 ing37))) +(recipe r210 (key (sy210 ing457))) +(recipe r210 (key (sx210 ing38))) +(recipe r210 (key (sy210 ing458))) +(recipe r210 (key (sx210 ing39))) +(recipe r210 (key (sy210 ing459))) +(recipe r210 (key (sx210 ing40))) +(recipe r210 (key (sy210 ing460))) +(recipe r210 (key (sx210 ing41))) +(recipe r210 (key (sy210 ing461))) +(recipe r211 (numIngredients 2)) +(recipe r211 (result (id item211))) +(recipe r211 (pattern 0 sx211)) +(recipe r211 (pattern 1 sy211)) +(recipe r211 (key (sx211 ing33))) +(recipe r211 (key (sy211 ing455))) +(recipe r211 (key (sx211 ing34))) +(recipe r211 (key (sy211 ing456))) +(recipe r211 (key (sx211 ing35))) +(recipe r211 (key (sy211 ing457))) +(recipe r211 (key (sx211 ing36))) +(recipe r211 (key (sy211 ing458))) +(recipe r211 (key (sx211 ing37))) +(recipe r211 (key (sy211 ing459))) +(recipe r211 (key (sx211 ing38))) +(recipe r211 (key (sy211 ing460))) +(recipe r211 (key (sx211 ing39))) +(recipe r211 (key (sy211 ing461))) +(recipe r211 (key (sx211 ing40))) +(recipe r211 (key (sy211 ing462))) +(recipe r211 (key (sx211 ing41))) +(recipe r211 (key (sy211 ing463))) +(recipe r211 (key (sx211 ing42))) +(recipe r211 (key (sy211 ing464))) +(recipe r211 (key (sx211 ing43))) +(recipe r211 (key (sy211 ing465))) +(recipe r211 (key (sx211 ing44))) +(recipe r211 (key (sy211 ing466))) +(recipe r212 (numIngredients 2)) +(recipe r212 (result (id item212))) +(recipe r212 (pattern 0 sx212)) +(recipe r212 (pattern 1 sy212)) +(recipe r212 (key (sx212 ing36))) +(recipe r212 (key (sy212 ing460))) +(recipe r212 (key (sx212 ing37))) +(recipe r212 (key (sy212 ing461))) +(recipe r212 (key (sx212 ing38))) +(recipe r212 (key (sy212 ing462))) +(recipe r212 (key (sx212 ing39))) +(recipe r212 (key (sy212 ing463))) +(recipe r212 (key (sx212 ing40))) +(recipe r212 (key (sy212 ing464))) +(recipe r212 (key (sx212 ing41))) +(recipe r212 (key (sy212 ing465))) +(recipe r212 (key (sx212 ing42))) +(recipe r212 (key (sy212 ing466))) +(recipe r212 (key (sx212 ing43))) +(recipe r212 (key (sy212 ing467))) +(recipe r212 (key (sx212 ing44))) +(recipe r212 (key (sy212 ing468))) +(recipe r212 (key (sx212 ing45))) +(recipe r212 (key (sy212 ing469))) +(recipe r212 (key (sx212 ing46))) +(recipe r212 (key (sy212 ing470))) +(recipe r212 (key (sx212 ing47))) +(recipe r212 (key (sy212 ing471))) +(recipe r213 (numIngredients 2)) +(recipe r213 (result (id item213))) +(recipe r213 (pattern 0 sx213)) +(recipe r213 (pattern 1 sy213)) +(recipe r213 (key (sx213 ing39))) +(recipe r213 (key (sy213 ing465))) +(recipe r213 (key (sx213 ing40))) +(recipe r213 (key (sy213 ing466))) +(recipe r213 (key (sx213 ing41))) +(recipe r213 (key (sy213 ing467))) +(recipe r213 (key (sx213 ing42))) +(recipe r213 (key (sy213 ing468))) +(recipe r213 (key (sx213 ing43))) +(recipe r213 (key (sy213 ing469))) +(recipe r213 (key (sx213 ing44))) +(recipe r213 (key (sy213 ing470))) +(recipe r213 (key (sx213 ing45))) +(recipe r213 (key (sy213 ing471))) +(recipe r213 (key (sx213 ing46))) +(recipe r213 (key (sy213 ing472))) +(recipe r213 (key (sx213 ing47))) +(recipe r213 (key (sy213 ing473))) +(recipe r213 (key (sx213 ing48))) +(recipe r213 (key (sy213 ing474))) +(recipe r213 (key (sx213 ing49))) +(recipe r213 (key (sy213 ing475))) +(recipe r213 (key (sx213 ing50))) +(recipe r213 (key (sy213 ing476))) +(recipe r214 (numIngredients 2)) +(recipe r214 (result (id item214))) +(recipe r214 (pattern 0 sx214)) +(recipe r214 (pattern 1 sy214)) +(recipe r214 (key (sx214 ing42))) +(recipe r214 (key (sy214 ing470))) +(recipe r214 (key (sx214 ing43))) +(recipe r214 (key (sy214 ing471))) +(recipe r214 (key (sx214 ing44))) +(recipe r214 (key (sy214 ing472))) +(recipe r214 (key (sx214 ing45))) +(recipe r214 (key (sy214 ing473))) +(recipe r214 (key (sx214 ing46))) +(recipe r214 (key (sy214 ing474))) +(recipe r214 (key (sx214 ing47))) +(recipe r214 (key (sy214 ing475))) +(recipe r214 (key (sx214 ing48))) +(recipe r214 (key (sy214 ing476))) +(recipe r214 (key (sx214 ing49))) +(recipe r214 (key (sy214 ing477))) +(recipe r214 (key (sx214 ing50))) +(recipe r214 (key (sy214 ing478))) +(recipe r214 (key (sx214 ing51))) +(recipe r214 (key (sy214 ing479))) +(recipe r214 (key (sx214 ing52))) +(recipe r214 (key (sy214 ing480))) +(recipe r214 (key (sx214 ing53))) +(recipe r214 (key (sy214 ing481))) +(recipe r215 (numIngredients 2)) +(recipe r215 (result (id item215))) +(recipe r215 (pattern 0 sx215)) +(recipe r215 (pattern 1 sy215)) +(recipe r215 (key (sx215 ing45))) +(recipe r215 (key (sy215 ing475))) +(recipe r215 (key (sx215 ing46))) +(recipe r215 (key (sy215 ing476))) +(recipe r215 (key (sx215 ing47))) +(recipe r215 (key (sy215 ing477))) +(recipe r215 (key (sx215 ing48))) +(recipe r215 (key (sy215 ing478))) +(recipe r215 (key (sx215 ing49))) +(recipe r215 (key (sy215 ing479))) +(recipe r215 (key (sx215 ing50))) +(recipe r215 (key (sy215 ing480))) +(recipe r215 (key (sx215 ing51))) +(recipe r215 (key (sy215 ing481))) +(recipe r215 (key (sx215 ing52))) +(recipe r215 (key (sy215 ing482))) +(recipe r215 (key (sx215 ing53))) +(recipe r215 (key (sy215 ing483))) +(recipe r215 (key (sx215 ing54))) +(recipe r215 (key (sy215 ing484))) +(recipe r215 (key (sx215 ing55))) +(recipe r215 (key (sy215 ing485))) +(recipe r215 (key (sx215 ing56))) +(recipe r215 (key (sy215 ing486))) +(recipe r216 (numIngredients 2)) +(recipe r216 (result (id item216))) +(recipe r216 (pattern 0 sx216)) +(recipe r216 (pattern 1 sy216)) +(recipe r216 (key (sx216 ing48))) +(recipe r216 (key (sy216 ing480))) +(recipe r216 (key (sx216 ing49))) +(recipe r216 (key (sy216 ing481))) +(recipe r216 (key (sx216 ing50))) +(recipe r216 (key (sy216 ing482))) +(recipe r216 (key (sx216 ing51))) +(recipe r216 (key (sy216 ing483))) +(recipe r216 (key (sx216 ing52))) +(recipe r216 (key (sy216 ing484))) +(recipe r216 (key (sx216 ing53))) +(recipe r216 (key (sy216 ing485))) +(recipe r216 (key (sx216 ing54))) +(recipe r216 (key (sy216 ing486))) +(recipe r216 (key (sx216 ing55))) +(recipe r216 (key (sy216 ing487))) +(recipe r216 (key (sx216 ing56))) +(recipe r216 (key (sy216 ing488))) +(recipe r216 (key (sx216 ing57))) +(recipe r216 (key (sy216 ing489))) +(recipe r216 (key (sx216 ing58))) +(recipe r216 (key (sy216 ing490))) +(recipe r216 (key (sx216 ing59))) +(recipe r216 (key (sy216 ing491))) +(recipe r217 (numIngredients 2)) +(recipe r217 (result (id item217))) +(recipe r217 (pattern 0 sx217)) +(recipe r217 (pattern 1 sy217)) +(recipe r217 (key (sx217 ing51))) +(recipe r217 (key (sy217 ing485))) +(recipe r217 (key (sx217 ing52))) +(recipe r217 (key (sy217 ing486))) +(recipe r217 (key (sx217 ing53))) +(recipe r217 (key (sy217 ing487))) +(recipe r217 (key (sx217 ing54))) +(recipe r217 (key (sy217 ing488))) +(recipe r217 (key (sx217 ing55))) +(recipe r217 (key (sy217 ing489))) +(recipe r217 (key (sx217 ing56))) +(recipe r217 (key (sy217 ing490))) +(recipe r217 (key (sx217 ing57))) +(recipe r217 (key (sy217 ing491))) +(recipe r217 (key (sx217 ing58))) +(recipe r217 (key (sy217 ing492))) +(recipe r217 (key (sx217 ing59))) +(recipe r217 (key (sy217 ing493))) +(recipe r217 (key (sx217 ing60))) +(recipe r217 (key (sy217 ing494))) +(recipe r217 (key (sx217 ing61))) +(recipe r217 (key (sy217 ing495))) +(recipe r217 (key (sx217 ing62))) +(recipe r217 (key (sy217 ing496))) +(recipe r218 (numIngredients 2)) +(recipe r218 (result (id item218))) +(recipe r218 (pattern 0 sx218)) +(recipe r218 (pattern 1 sy218)) +(recipe r218 (key (sx218 ing54))) +(recipe r218 (key (sy218 ing490))) +(recipe r218 (key (sx218 ing55))) +(recipe r218 (key (sy218 ing491))) +(recipe r218 (key (sx218 ing56))) +(recipe r218 (key (sy218 ing492))) +(recipe r218 (key (sx218 ing57))) +(recipe r218 (key (sy218 ing493))) +(recipe r218 (key (sx218 ing58))) +(recipe r218 (key (sy218 ing494))) +(recipe r218 (key (sx218 ing59))) +(recipe r218 (key (sy218 ing495))) +(recipe r218 (key (sx218 ing60))) +(recipe r218 (key (sy218 ing496))) +(recipe r218 (key (sx218 ing61))) +(recipe r218 (key (sy218 ing497))) +(recipe r218 (key (sx218 ing62))) +(recipe r218 (key (sy218 ing498))) +(recipe r218 (key (sx218 ing63))) +(recipe r218 (key (sy218 ing499))) +(recipe r218 (key (sx218 ing64))) +(recipe r218 (key (sy218 ing500))) +(recipe r218 (key (sx218 ing65))) +(recipe r218 (key (sy218 ing501))) +(recipe r219 (numIngredients 2)) +(recipe r219 (result (id item219))) +(recipe r219 (pattern 0 sx219)) +(recipe r219 (pattern 1 sy219)) +(recipe r219 (key (sx219 ing57))) +(recipe r219 (key (sy219 ing495))) +(recipe r219 (key (sx219 ing58))) +(recipe r219 (key (sy219 ing496))) +(recipe r219 (key (sx219 ing59))) +(recipe r219 (key (sy219 ing497))) +(recipe r219 (key (sx219 ing60))) +(recipe r219 (key (sy219 ing498))) +(recipe r219 (key (sx219 ing61))) +(recipe r219 (key (sy219 ing499))) +(recipe r219 (key (sx219 ing62))) +(recipe r219 (key (sy219 ing500))) +(recipe r219 (key (sx219 ing63))) +(recipe r219 (key (sy219 ing501))) +(recipe r219 (key (sx219 ing64))) +(recipe r219 (key (sy219 ing502))) +(recipe r219 (key (sx219 ing65))) +(recipe r219 (key (sy219 ing503))) +(recipe r219 (key (sx219 ing66))) +(recipe r219 (key (sy219 ing504))) +(recipe r219 (key (sx219 ing67))) +(recipe r219 (key (sy219 ing505))) +(recipe r219 (key (sx219 ing68))) +(recipe r219 (key (sy219 ing506))) +(recipe r220 (numIngredients 2)) +(recipe r220 (result (id item220))) +(recipe r220 (pattern 0 sx220)) +(recipe r220 (pattern 1 sy220)) +(recipe r220 (key (sx220 ing60))) +(recipe r220 (key (sy220 ing500))) +(recipe r220 (key (sx220 ing61))) +(recipe r220 (key (sy220 ing501))) +(recipe r220 (key (sx220 ing62))) +(recipe r220 (key (sy220 ing502))) +(recipe r220 (key (sx220 ing63))) +(recipe r220 (key (sy220 ing503))) +(recipe r220 (key (sx220 ing64))) +(recipe r220 (key (sy220 ing504))) +(recipe r220 (key (sx220 ing65))) +(recipe r220 (key (sy220 ing505))) +(recipe r220 (key (sx220 ing66))) +(recipe r220 (key (sy220 ing506))) +(recipe r220 (key (sx220 ing67))) +(recipe r220 (key (sy220 ing507))) +(recipe r220 (key (sx220 ing68))) +(recipe r220 (key (sy220 ing508))) +(recipe r220 (key (sx220 ing69))) +(recipe r220 (key (sy220 ing509))) +(recipe r220 (key (sx220 ing70))) +(recipe r220 (key (sy220 ing510))) +(recipe r220 (key (sx220 ing71))) +(recipe r220 (key (sy220 ing511))) +(recipe r221 (numIngredients 2)) +(recipe r221 (result (id item221))) +(recipe r221 (pattern 0 sx221)) +(recipe r221 (pattern 1 sy221)) +(recipe r221 (key (sx221 ing63))) +(recipe r221 (key (sy221 ing505))) +(recipe r221 (key (sx221 ing64))) +(recipe r221 (key (sy221 ing506))) +(recipe r221 (key (sx221 ing65))) +(recipe r221 (key (sy221 ing507))) +(recipe r221 (key (sx221 ing66))) +(recipe r221 (key (sy221 ing508))) +(recipe r221 (key (sx221 ing67))) +(recipe r221 (key (sy221 ing509))) +(recipe r221 (key (sx221 ing68))) +(recipe r221 (key (sy221 ing510))) +(recipe r221 (key (sx221 ing69))) +(recipe r221 (key (sy221 ing511))) +(recipe r221 (key (sx221 ing70))) +(recipe r221 (key (sy221 ing512))) +(recipe r221 (key (sx221 ing71))) +(recipe r221 (key (sy221 ing513))) +(recipe r221 (key (sx221 ing72))) +(recipe r221 (key (sy221 ing514))) +(recipe r221 (key (sx221 ing73))) +(recipe r221 (key (sy221 ing515))) +(recipe r221 (key (sx221 ing74))) +(recipe r221 (key (sy221 ing516))) +(recipe r222 (numIngredients 2)) +(recipe r222 (result (id item222))) +(recipe r222 (pattern 0 sx222)) +(recipe r222 (pattern 1 sy222)) +(recipe r222 (key (sx222 ing66))) +(recipe r222 (key (sy222 ing510))) +(recipe r222 (key (sx222 ing67))) +(recipe r222 (key (sy222 ing511))) +(recipe r222 (key (sx222 ing68))) +(recipe r222 (key (sy222 ing512))) +(recipe r222 (key (sx222 ing69))) +(recipe r222 (key (sy222 ing513))) +(recipe r222 (key (sx222 ing70))) +(recipe r222 (key (sy222 ing514))) +(recipe r222 (key (sx222 ing71))) +(recipe r222 (key (sy222 ing515))) +(recipe r222 (key (sx222 ing72))) +(recipe r222 (key (sy222 ing516))) +(recipe r222 (key (sx222 ing73))) +(recipe r222 (key (sy222 ing517))) +(recipe r222 (key (sx222 ing74))) +(recipe r222 (key (sy222 ing518))) +(recipe r222 (key (sx222 ing75))) +(recipe r222 (key (sy222 ing519))) +(recipe r222 (key (sx222 ing76))) +(recipe r222 (key (sy222 ing520))) +(recipe r222 (key (sx222 ing77))) +(recipe r222 (key (sy222 ing521))) +(recipe r223 (numIngredients 2)) +(recipe r223 (result (id item223))) +(recipe r223 (pattern 0 sx223)) +(recipe r223 (pattern 1 sy223)) +(recipe r223 (key (sx223 ing69))) +(recipe r223 (key (sy223 ing515))) +(recipe r223 (key (sx223 ing70))) +(recipe r223 (key (sy223 ing516))) +(recipe r223 (key (sx223 ing71))) +(recipe r223 (key (sy223 ing517))) +(recipe r223 (key (sx223 ing72))) +(recipe r223 (key (sy223 ing518))) +(recipe r223 (key (sx223 ing73))) +(recipe r223 (key (sy223 ing519))) +(recipe r223 (key (sx223 ing74))) +(recipe r223 (key (sy223 ing520))) +(recipe r223 (key (sx223 ing75))) +(recipe r223 (key (sy223 ing521))) +(recipe r223 (key (sx223 ing76))) +(recipe r223 (key (sy223 ing522))) +(recipe r223 (key (sx223 ing77))) +(recipe r223 (key (sy223 ing523))) +(recipe r223 (key (sx223 ing78))) +(recipe r223 (key (sy223 ing524))) +(recipe r223 (key (sx223 ing79))) +(recipe r223 (key (sy223 ing525))) +(recipe r223 (key (sx223 ing80))) +(recipe r223 (key (sy223 ing526))) +(recipe r224 (numIngredients 2)) +(recipe r224 (result (id item224))) +(recipe r224 (pattern 0 sx224)) +(recipe r224 (pattern 1 sy224)) +(recipe r224 (key (sx224 ing72))) +(recipe r224 (key (sy224 ing520))) +(recipe r224 (key (sx224 ing73))) +(recipe r224 (key (sy224 ing521))) +(recipe r224 (key (sx224 ing74))) +(recipe r224 (key (sy224 ing522))) +(recipe r224 (key (sx224 ing75))) +(recipe r224 (key (sy224 ing523))) +(recipe r224 (key (sx224 ing76))) +(recipe r224 (key (sy224 ing524))) +(recipe r224 (key (sx224 ing77))) +(recipe r224 (key (sy224 ing525))) +(recipe r224 (key (sx224 ing78))) +(recipe r224 (key (sy224 ing526))) +(recipe r224 (key (sx224 ing79))) +(recipe r224 (key (sy224 ing527))) +(recipe r224 (key (sx224 ing80))) +(recipe r224 (key (sy224 ing528))) +(recipe r224 (key (sx224 ing81))) +(recipe r224 (key (sy224 ing529))) +(recipe r224 (key (sx224 ing82))) +(recipe r224 (key (sy224 ing530))) +(recipe r224 (key (sx224 ing83))) +(recipe r224 (key (sy224 ing531))) +(recipe r225 (numIngredients 2)) +(recipe r225 (result (id item225))) +(recipe r225 (pattern 0 sx225)) +(recipe r225 (pattern 1 sy225)) +(recipe r225 (key (sx225 ing75))) +(recipe r225 (key (sy225 ing525))) +(recipe r225 (key (sx225 ing76))) +(recipe r225 (key (sy225 ing526))) +(recipe r225 (key (sx225 ing77))) +(recipe r225 (key (sy225 ing527))) +(recipe r225 (key (sx225 ing78))) +(recipe r225 (key (sy225 ing528))) +(recipe r225 (key (sx225 ing79))) +(recipe r225 (key (sy225 ing529))) +(recipe r225 (key (sx225 ing80))) +(recipe r225 (key (sy225 ing530))) +(recipe r225 (key (sx225 ing81))) +(recipe r225 (key (sy225 ing531))) +(recipe r225 (key (sx225 ing82))) +(recipe r225 (key (sy225 ing532))) +(recipe r225 (key (sx225 ing83))) +(recipe r225 (key (sy225 ing533))) +(recipe r225 (key (sx225 ing84))) +(recipe r225 (key (sy225 ing534))) +(recipe r225 (key (sx225 ing85))) +(recipe r225 (key (sy225 ing535))) +(recipe r225 (key (sx225 ing86))) +(recipe r225 (key (sy225 ing536))) +(recipe r226 (numIngredients 2)) +(recipe r226 (result (id item226))) +(recipe r226 (pattern 0 sx226)) +(recipe r226 (pattern 1 sy226)) +(recipe r226 (key (sx226 ing78))) +(recipe r226 (key (sy226 ing530))) +(recipe r226 (key (sx226 ing79))) +(recipe r226 (key (sy226 ing531))) +(recipe r226 (key (sx226 ing80))) +(recipe r226 (key (sy226 ing532))) +(recipe r226 (key (sx226 ing81))) +(recipe r226 (key (sy226 ing533))) +(recipe r226 (key (sx226 ing82))) +(recipe r226 (key (sy226 ing534))) +(recipe r226 (key (sx226 ing83))) +(recipe r226 (key (sy226 ing535))) +(recipe r226 (key (sx226 ing84))) +(recipe r226 (key (sy226 ing536))) +(recipe r226 (key (sx226 ing85))) +(recipe r226 (key (sy226 ing537))) +(recipe r226 (key (sx226 ing86))) +(recipe r226 (key (sy226 ing538))) +(recipe r226 (key (sx226 ing87))) +(recipe r226 (key (sy226 ing539))) +(recipe r226 (key (sx226 ing88))) +(recipe r226 (key (sy226 ing540))) +(recipe r226 (key (sx226 ing89))) +(recipe r226 (key (sy226 ing541))) +(recipe r227 (numIngredients 2)) +(recipe r227 (result (id item227))) +(recipe r227 (pattern 0 sx227)) +(recipe r227 (pattern 1 sy227)) +(recipe r227 (key (sx227 ing81))) +(recipe r227 (key (sy227 ing535))) +(recipe r227 (key (sx227 ing82))) +(recipe r227 (key (sy227 ing536))) +(recipe r227 (key (sx227 ing83))) +(recipe r227 (key (sy227 ing537))) +(recipe r227 (key (sx227 ing84))) +(recipe r227 (key (sy227 ing538))) +(recipe r227 (key (sx227 ing85))) +(recipe r227 (key (sy227 ing539))) +(recipe r227 (key (sx227 ing86))) +(recipe r227 (key (sy227 ing540))) +(recipe r227 (key (sx227 ing87))) +(recipe r227 (key (sy227 ing541))) +(recipe r227 (key (sx227 ing88))) +(recipe r227 (key (sy227 ing542))) +(recipe r227 (key (sx227 ing89))) +(recipe r227 (key (sy227 ing543))) +(recipe r227 (key (sx227 ing90))) +(recipe r227 (key (sy227 ing544))) +(recipe r227 (key (sx227 ing91))) +(recipe r227 (key (sy227 ing545))) +(recipe r227 (key (sx227 ing92))) +(recipe r227 (key (sy227 ing546))) +(recipe r228 (numIngredients 2)) +(recipe r228 (result (id item228))) +(recipe r228 (pattern 0 sx228)) +(recipe r228 (pattern 1 sy228)) +(recipe r228 (key (sx228 ing84))) +(recipe r228 (key (sy228 ing540))) +(recipe r228 (key (sx228 ing85))) +(recipe r228 (key (sy228 ing541))) +(recipe r228 (key (sx228 ing86))) +(recipe r228 (key (sy228 ing542))) +(recipe r228 (key (sx228 ing87))) +(recipe r228 (key (sy228 ing543))) +(recipe r228 (key (sx228 ing88))) +(recipe r228 (key (sy228 ing544))) +(recipe r228 (key (sx228 ing89))) +(recipe r228 (key (sy228 ing545))) +(recipe r228 (key (sx228 ing90))) +(recipe r228 (key (sy228 ing546))) +(recipe r228 (key (sx228 ing91))) +(recipe r228 (key (sy228 ing547))) +(recipe r228 (key (sx228 ing92))) +(recipe r228 (key (sy228 ing548))) +(recipe r228 (key (sx228 ing93))) +(recipe r228 (key (sy228 ing549))) +(recipe r228 (key (sx228 ing94))) +(recipe r228 (key (sy228 ing550))) +(recipe r228 (key (sx228 ing95))) +(recipe r228 (key (sy228 ing551))) +(recipe r229 (numIngredients 2)) +(recipe r229 (result (id item229))) +(recipe r229 (pattern 0 sx229)) +(recipe r229 (pattern 1 sy229)) +(recipe r229 (key (sx229 ing87))) +(recipe r229 (key (sy229 ing545))) +(recipe r229 (key (sx229 ing88))) +(recipe r229 (key (sy229 ing546))) +(recipe r229 (key (sx229 ing89))) +(recipe r229 (key (sy229 ing547))) +(recipe r229 (key (sx229 ing90))) +(recipe r229 (key (sy229 ing548))) +(recipe r229 (key (sx229 ing91))) +(recipe r229 (key (sy229 ing549))) +(recipe r229 (key (sx229 ing92))) +(recipe r229 (key (sy229 ing550))) +(recipe r229 (key (sx229 ing93))) +(recipe r229 (key (sy229 ing551))) +(recipe r229 (key (sx229 ing94))) +(recipe r229 (key (sy229 ing552))) +(recipe r229 (key (sx229 ing95))) +(recipe r229 (key (sy229 ing553))) +(recipe r229 (key (sx229 ing96))) +(recipe r229 (key (sy229 ing554))) +(recipe r229 (key (sx229 ing97))) +(recipe r229 (key (sy229 ing555))) +(recipe r229 (key (sx229 ing98))) +(recipe r229 (key (sy229 ing556))) +(recipe r230 (numIngredients 2)) +(recipe r230 (result (id item230))) +(recipe r230 (pattern 0 sx230)) +(recipe r230 (pattern 1 sy230)) +(recipe r230 (key (sx230 ing90))) +(recipe r230 (key (sy230 ing550))) +(recipe r230 (key (sx230 ing91))) +(recipe r230 (key (sy230 ing551))) +(recipe r230 (key (sx230 ing92))) +(recipe r230 (key (sy230 ing552))) +(recipe r230 (key (sx230 ing93))) +(recipe r230 (key (sy230 ing553))) +(recipe r230 (key (sx230 ing94))) +(recipe r230 (key (sy230 ing554))) +(recipe r230 (key (sx230 ing95))) +(recipe r230 (key (sy230 ing555))) +(recipe r230 (key (sx230 ing96))) +(recipe r230 (key (sy230 ing556))) +(recipe r230 (key (sx230 ing97))) +(recipe r230 (key (sy230 ing557))) +(recipe r230 (key (sx230 ing98))) +(recipe r230 (key (sy230 ing558))) +(recipe r230 (key (sx230 ing99))) +(recipe r230 (key (sy230 ing559))) +(recipe r230 (key (sx230 ing100))) +(recipe r230 (key (sy230 ing560))) +(recipe r230 (key (sx230 ing101))) +(recipe r230 (key (sy230 ing561))) +(recipe r231 (numIngredients 2)) +(recipe r231 (result (id item231))) +(recipe r231 (pattern 0 sx231)) +(recipe r231 (pattern 1 sy231)) +(recipe r231 (key (sx231 ing93))) +(recipe r231 (key (sy231 ing555))) +(recipe r231 (key (sx231 ing94))) +(recipe r231 (key (sy231 ing556))) +(recipe r231 (key (sx231 ing95))) +(recipe r231 (key (sy231 ing557))) +(recipe r231 (key (sx231 ing96))) +(recipe r231 (key (sy231 ing558))) +(recipe r231 (key (sx231 ing97))) +(recipe r231 (key (sy231 ing559))) +(recipe r231 (key (sx231 ing98))) +(recipe r231 (key (sy231 ing560))) +(recipe r231 (key (sx231 ing99))) +(recipe r231 (key (sy231 ing561))) +(recipe r231 (key (sx231 ing100))) +(recipe r231 (key (sy231 ing562))) +(recipe r231 (key (sx231 ing101))) +(recipe r231 (key (sy231 ing563))) +(recipe r231 (key (sx231 ing102))) +(recipe r231 (key (sy231 ing564))) +(recipe r231 (key (sx231 ing103))) +(recipe r231 (key (sy231 ing565))) +(recipe r231 (key (sx231 ing104))) +(recipe r231 (key (sy231 ing566))) +(recipe r232 (numIngredients 2)) +(recipe r232 (result (id item232))) +(recipe r232 (pattern 0 sx232)) +(recipe r232 (pattern 1 sy232)) +(recipe r232 (key (sx232 ing96))) +(recipe r232 (key (sy232 ing560))) +(recipe r232 (key (sx232 ing97))) +(recipe r232 (key (sy232 ing561))) +(recipe r232 (key (sx232 ing98))) +(recipe r232 (key (sy232 ing562))) +(recipe r232 (key (sx232 ing99))) +(recipe r232 (key (sy232 ing563))) +(recipe r232 (key (sx232 ing100))) +(recipe r232 (key (sy232 ing564))) +(recipe r232 (key (sx232 ing101))) +(recipe r232 (key (sy232 ing565))) +(recipe r232 (key (sx232 ing102))) +(recipe r232 (key (sy232 ing566))) +(recipe r232 (key (sx232 ing103))) +(recipe r232 (key (sy232 ing567))) +(recipe r232 (key (sx232 ing104))) +(recipe r232 (key (sy232 ing568))) +(recipe r232 (key (sx232 ing105))) +(recipe r232 (key (sy232 ing569))) +(recipe r232 (key (sx232 ing106))) +(recipe r232 (key (sy232 ing570))) +(recipe r232 (key (sx232 ing107))) +(recipe r232 (key (sy232 ing571))) +(recipe r233 (numIngredients 2)) +(recipe r233 (result (id item233))) +(recipe r233 (pattern 0 sx233)) +(recipe r233 (pattern 1 sy233)) +(recipe r233 (key (sx233 ing99))) +(recipe r233 (key (sy233 ing565))) +(recipe r233 (key (sx233 ing100))) +(recipe r233 (key (sy233 ing566))) +(recipe r233 (key (sx233 ing101))) +(recipe r233 (key (sy233 ing567))) +(recipe r233 (key (sx233 ing102))) +(recipe r233 (key (sy233 ing568))) +(recipe r233 (key (sx233 ing103))) +(recipe r233 (key (sy233 ing569))) +(recipe r233 (key (sx233 ing104))) +(recipe r233 (key (sy233 ing570))) +(recipe r233 (key (sx233 ing105))) +(recipe r233 (key (sy233 ing571))) +(recipe r233 (key (sx233 ing106))) +(recipe r233 (key (sy233 ing572))) +(recipe r233 (key (sx233 ing107))) +(recipe r233 (key (sy233 ing573))) +(recipe r233 (key (sx233 ing108))) +(recipe r233 (key (sy233 ing574))) +(recipe r233 (key (sx233 ing109))) +(recipe r233 (key (sy233 ing575))) +(recipe r233 (key (sx233 ing110))) +(recipe r233 (key (sy233 ing576))) +(recipe r234 (numIngredients 2)) +(recipe r234 (result (id item234))) +(recipe r234 (pattern 0 sx234)) +(recipe r234 (pattern 1 sy234)) +(recipe r234 (key (sx234 ing102))) +(recipe r234 (key (sy234 ing570))) +(recipe r234 (key (sx234 ing103))) +(recipe r234 (key (sy234 ing571))) +(recipe r234 (key (sx234 ing104))) +(recipe r234 (key (sy234 ing572))) +(recipe r234 (key (sx234 ing105))) +(recipe r234 (key (sy234 ing573))) +(recipe r234 (key (sx234 ing106))) +(recipe r234 (key (sy234 ing574))) +(recipe r234 (key (sx234 ing107))) +(recipe r234 (key (sy234 ing575))) +(recipe r234 (key (sx234 ing108))) +(recipe r234 (key (sy234 ing576))) +(recipe r234 (key (sx234 ing109))) +(recipe r234 (key (sy234 ing577))) +(recipe r234 (key (sx234 ing110))) +(recipe r234 (key (sy234 ing578))) +(recipe r234 (key (sx234 ing111))) +(recipe r234 (key (sy234 ing579))) +(recipe r234 (key (sx234 ing112))) +(recipe r234 (key (sy234 ing580))) +(recipe r234 (key (sx234 ing113))) +(recipe r234 (key (sy234 ing581))) +(recipe r235 (numIngredients 2)) +(recipe r235 (result (id item235))) +(recipe r235 (pattern 0 sx235)) +(recipe r235 (pattern 1 sy235)) +(recipe r235 (key (sx235 ing105))) +(recipe r235 (key (sy235 ing575))) +(recipe r235 (key (sx235 ing106))) +(recipe r235 (key (sy235 ing576))) +(recipe r235 (key (sx235 ing107))) +(recipe r235 (key (sy235 ing577))) +(recipe r235 (key (sx235 ing108))) +(recipe r235 (key (sy235 ing578))) +(recipe r235 (key (sx235 ing109))) +(recipe r235 (key (sy235 ing579))) +(recipe r235 (key (sx235 ing110))) +(recipe r235 (key (sy235 ing580))) +(recipe r235 (key (sx235 ing111))) +(recipe r235 (key (sy235 ing581))) +(recipe r235 (key (sx235 ing112))) +(recipe r235 (key (sy235 ing582))) +(recipe r235 (key (sx235 ing113))) +(recipe r235 (key (sy235 ing583))) +(recipe r235 (key (sx235 ing114))) +(recipe r235 (key (sy235 ing584))) +(recipe r235 (key (sx235 ing115))) +(recipe r235 (key (sy235 ing585))) +(recipe r235 (key (sx235 ing116))) +(recipe r235 (key (sy235 ing586))) +(recipe r236 (numIngredients 2)) +(recipe r236 (result (id item236))) +(recipe r236 (pattern 0 sx236)) +(recipe r236 (pattern 1 sy236)) +(recipe r236 (key (sx236 ing108))) +(recipe r236 (key (sy236 ing580))) +(recipe r236 (key (sx236 ing109))) +(recipe r236 (key (sy236 ing581))) +(recipe r236 (key (sx236 ing110))) +(recipe r236 (key (sy236 ing582))) +(recipe r236 (key (sx236 ing111))) +(recipe r236 (key (sy236 ing583))) +(recipe r236 (key (sx236 ing112))) +(recipe r236 (key (sy236 ing584))) +(recipe r236 (key (sx236 ing113))) +(recipe r236 (key (sy236 ing585))) +(recipe r236 (key (sx236 ing114))) +(recipe r236 (key (sy236 ing586))) +(recipe r236 (key (sx236 ing115))) +(recipe r236 (key (sy236 ing587))) +(recipe r236 (key (sx236 ing116))) +(recipe r236 (key (sy236 ing588))) +(recipe r236 (key (sx236 ing117))) +(recipe r236 (key (sy236 ing589))) +(recipe r236 (key (sx236 ing118))) +(recipe r236 (key (sy236 ing590))) +(recipe r236 (key (sx236 ing119))) +(recipe r236 (key (sy236 ing591))) +(recipe r237 (numIngredients 2)) +(recipe r237 (result (id item237))) +(recipe r237 (pattern 0 sx237)) +(recipe r237 (pattern 1 sy237)) +(recipe r237 (key (sx237 ing111))) +(recipe r237 (key (sy237 ing585))) +(recipe r237 (key (sx237 ing112))) +(recipe r237 (key (sy237 ing586))) +(recipe r237 (key (sx237 ing113))) +(recipe r237 (key (sy237 ing587))) +(recipe r237 (key (sx237 ing114))) +(recipe r237 (key (sy237 ing588))) +(recipe r237 (key (sx237 ing115))) +(recipe r237 (key (sy237 ing589))) +(recipe r237 (key (sx237 ing116))) +(recipe r237 (key (sy237 ing590))) +(recipe r237 (key (sx237 ing117))) +(recipe r237 (key (sy237 ing591))) +(recipe r237 (key (sx237 ing118))) +(recipe r237 (key (sy237 ing592))) +(recipe r237 (key (sx237 ing119))) +(recipe r237 (key (sy237 ing593))) +(recipe r237 (key (sx237 ing120))) +(recipe r237 (key (sy237 ing594))) +(recipe r237 (key (sx237 ing121))) +(recipe r237 (key (sy237 ing595))) +(recipe r237 (key (sx237 ing122))) +(recipe r237 (key (sy237 ing596))) +(recipe r238 (numIngredients 2)) +(recipe r238 (result (id item238))) +(recipe r238 (pattern 0 sx238)) +(recipe r238 (pattern 1 sy238)) +(recipe r238 (key (sx238 ing114))) +(recipe r238 (key (sy238 ing590))) +(recipe r238 (key (sx238 ing115))) +(recipe r238 (key (sy238 ing591))) +(recipe r238 (key (sx238 ing116))) +(recipe r238 (key (sy238 ing592))) +(recipe r238 (key (sx238 ing117))) +(recipe r238 (key (sy238 ing593))) +(recipe r238 (key (sx238 ing118))) +(recipe r238 (key (sy238 ing594))) +(recipe r238 (key (sx238 ing119))) +(recipe r238 (key (sy238 ing595))) +(recipe r238 (key (sx238 ing120))) +(recipe r238 (key (sy238 ing596))) +(recipe r238 (key (sx238 ing121))) +(recipe r238 (key (sy238 ing597))) +(recipe r238 (key (sx238 ing122))) +(recipe r238 (key (sy238 ing598))) +(recipe r238 (key (sx238 ing123))) +(recipe r238 (key (sy238 ing599))) +(recipe r238 (key (sx238 ing124))) +(recipe r238 (key (sy238 ing0))) +(recipe r238 (key (sx238 ing125))) +(recipe r238 (key (sy238 ing1))) +(recipe r239 (numIngredients 2)) +(recipe r239 (result (id item239))) +(recipe r239 (pattern 0 sx239)) +(recipe r239 (pattern 1 sy239)) +(recipe r239 (key (sx239 ing117))) +(recipe r239 (key (sy239 ing595))) +(recipe r239 (key (sx239 ing118))) +(recipe r239 (key (sy239 ing596))) +(recipe r239 (key (sx239 ing119))) +(recipe r239 (key (sy239 ing597))) +(recipe r239 (key (sx239 ing120))) +(recipe r239 (key (sy239 ing598))) +(recipe r239 (key (sx239 ing121))) +(recipe r239 (key (sy239 ing599))) +(recipe r239 (key (sx239 ing122))) +(recipe r239 (key (sy239 ing0))) +(recipe r239 (key (sx239 ing123))) +(recipe r239 (key (sy239 ing1))) +(recipe r239 (key (sx239 ing124))) +(recipe r239 (key (sy239 ing2))) +(recipe r239 (key (sx239 ing125))) +(recipe r239 (key (sy239 ing3))) +(recipe r239 (key (sx239 ing126))) +(recipe r239 (key (sy239 ing4))) +(recipe r239 (key (sx239 ing127))) +(recipe r239 (key (sy239 ing5))) +(recipe r239 (key (sx239 ing128))) +(recipe r239 (key (sy239 ing6))) +(recipe r240 (numIngredients 2)) +(recipe r240 (result (id item240))) +(recipe r240 (pattern 0 sx240)) +(recipe r240 (pattern 1 sy240)) +(recipe r240 (key (sx240 ing120))) +(recipe r240 (key (sy240 ing0))) +(recipe r240 (key (sx240 ing121))) +(recipe r240 (key (sy240 ing1))) +(recipe r240 (key (sx240 ing122))) +(recipe r240 (key (sy240 ing2))) +(recipe r240 (key (sx240 ing123))) +(recipe r240 (key (sy240 ing3))) +(recipe r240 (key (sx240 ing124))) +(recipe r240 (key (sy240 ing4))) +(recipe r240 (key (sx240 ing125))) +(recipe r240 (key (sy240 ing5))) +(recipe r240 (key (sx240 ing126))) +(recipe r240 (key (sy240 ing6))) +(recipe r240 (key (sx240 ing127))) +(recipe r240 (key (sy240 ing7))) +(recipe r240 (key (sx240 ing128))) +(recipe r240 (key (sy240 ing8))) +(recipe r240 (key (sx240 ing129))) +(recipe r240 (key (sy240 ing9))) +(recipe r240 (key (sx240 ing130))) +(recipe r240 (key (sy240 ing10))) +(recipe r240 (key (sx240 ing131))) +(recipe r240 (key (sy240 ing11))) +(recipe r241 (numIngredients 2)) +(recipe r241 (result (id item241))) +(recipe r241 (pattern 0 sx241)) +(recipe r241 (pattern 1 sy241)) +(recipe r241 (key (sx241 ing123))) +(recipe r241 (key (sy241 ing5))) +(recipe r241 (key (sx241 ing124))) +(recipe r241 (key (sy241 ing6))) +(recipe r241 (key (sx241 ing125))) +(recipe r241 (key (sy241 ing7))) +(recipe r241 (key (sx241 ing126))) +(recipe r241 (key (sy241 ing8))) +(recipe r241 (key (sx241 ing127))) +(recipe r241 (key (sy241 ing9))) +(recipe r241 (key (sx241 ing128))) +(recipe r241 (key (sy241 ing10))) +(recipe r241 (key (sx241 ing129))) +(recipe r241 (key (sy241 ing11))) +(recipe r241 (key (sx241 ing130))) +(recipe r241 (key (sy241 ing12))) +(recipe r241 (key (sx241 ing131))) +(recipe r241 (key (sy241 ing13))) +(recipe r241 (key (sx241 ing132))) +(recipe r241 (key (sy241 ing14))) +(recipe r241 (key (sx241 ing133))) +(recipe r241 (key (sy241 ing15))) +(recipe r241 (key (sx241 ing134))) +(recipe r241 (key (sy241 ing16))) +(recipe r242 (numIngredients 2)) +(recipe r242 (result (id item242))) +(recipe r242 (pattern 0 sx242)) +(recipe r242 (pattern 1 sy242)) +(recipe r242 (key (sx242 ing126))) +(recipe r242 (key (sy242 ing10))) +(recipe r242 (key (sx242 ing127))) +(recipe r242 (key (sy242 ing11))) +(recipe r242 (key (sx242 ing128))) +(recipe r242 (key (sy242 ing12))) +(recipe r242 (key (sx242 ing129))) +(recipe r242 (key (sy242 ing13))) +(recipe r242 (key (sx242 ing130))) +(recipe r242 (key (sy242 ing14))) +(recipe r242 (key (sx242 ing131))) +(recipe r242 (key (sy242 ing15))) +(recipe r242 (key (sx242 ing132))) +(recipe r242 (key (sy242 ing16))) +(recipe r242 (key (sx242 ing133))) +(recipe r242 (key (sy242 ing17))) +(recipe r242 (key (sx242 ing134))) +(recipe r242 (key (sy242 ing18))) +(recipe r242 (key (sx242 ing135))) +(recipe r242 (key (sy242 ing19))) +(recipe r242 (key (sx242 ing136))) +(recipe r242 (key (sy242 ing20))) +(recipe r242 (key (sx242 ing137))) +(recipe r242 (key (sy242 ing21))) +(recipe r243 (numIngredients 2)) +(recipe r243 (result (id item243))) +(recipe r243 (pattern 0 sx243)) +(recipe r243 (pattern 1 sy243)) +(recipe r243 (key (sx243 ing129))) +(recipe r243 (key (sy243 ing15))) +(recipe r243 (key (sx243 ing130))) +(recipe r243 (key (sy243 ing16))) +(recipe r243 (key (sx243 ing131))) +(recipe r243 (key (sy243 ing17))) +(recipe r243 (key (sx243 ing132))) +(recipe r243 (key (sy243 ing18))) +(recipe r243 (key (sx243 ing133))) +(recipe r243 (key (sy243 ing19))) +(recipe r243 (key (sx243 ing134))) +(recipe r243 (key (sy243 ing20))) +(recipe r243 (key (sx243 ing135))) +(recipe r243 (key (sy243 ing21))) +(recipe r243 (key (sx243 ing136))) +(recipe r243 (key (sy243 ing22))) +(recipe r243 (key (sx243 ing137))) +(recipe r243 (key (sy243 ing23))) +(recipe r243 (key (sx243 ing138))) +(recipe r243 (key (sy243 ing24))) +(recipe r243 (key (sx243 ing139))) +(recipe r243 (key (sy243 ing25))) +(recipe r243 (key (sx243 ing140))) +(recipe r243 (key (sy243 ing26))) +(recipe r244 (numIngredients 2)) +(recipe r244 (result (id item244))) +(recipe r244 (pattern 0 sx244)) +(recipe r244 (pattern 1 sy244)) +(recipe r244 (key (sx244 ing132))) +(recipe r244 (key (sy244 ing20))) +(recipe r244 (key (sx244 ing133))) +(recipe r244 (key (sy244 ing21))) +(recipe r244 (key (sx244 ing134))) +(recipe r244 (key (sy244 ing22))) +(recipe r244 (key (sx244 ing135))) +(recipe r244 (key (sy244 ing23))) +(recipe r244 (key (sx244 ing136))) +(recipe r244 (key (sy244 ing24))) +(recipe r244 (key (sx244 ing137))) +(recipe r244 (key (sy244 ing25))) +(recipe r244 (key (sx244 ing138))) +(recipe r244 (key (sy244 ing26))) +(recipe r244 (key (sx244 ing139))) +(recipe r244 (key (sy244 ing27))) +(recipe r244 (key (sx244 ing140))) +(recipe r244 (key (sy244 ing28))) +(recipe r244 (key (sx244 ing141))) +(recipe r244 (key (sy244 ing29))) +(recipe r244 (key (sx244 ing142))) +(recipe r244 (key (sy244 ing30))) +(recipe r244 (key (sx244 ing143))) +(recipe r244 (key (sy244 ing31))) +(recipe r245 (numIngredients 2)) +(recipe r245 (result (id item245))) +(recipe r245 (pattern 0 sx245)) +(recipe r245 (pattern 1 sy245)) +(recipe r245 (key (sx245 ing135))) +(recipe r245 (key (sy245 ing25))) +(recipe r245 (key (sx245 ing136))) +(recipe r245 (key (sy245 ing26))) +(recipe r245 (key (sx245 ing137))) +(recipe r245 (key (sy245 ing27))) +(recipe r245 (key (sx245 ing138))) +(recipe r245 (key (sy245 ing28))) +(recipe r245 (key (sx245 ing139))) +(recipe r245 (key (sy245 ing29))) +(recipe r245 (key (sx245 ing140))) +(recipe r245 (key (sy245 ing30))) +(recipe r245 (key (sx245 ing141))) +(recipe r245 (key (sy245 ing31))) +(recipe r245 (key (sx245 ing142))) +(recipe r245 (key (sy245 ing32))) +(recipe r245 (key (sx245 ing143))) +(recipe r245 (key (sy245 ing33))) +(recipe r245 (key (sx245 ing144))) +(recipe r245 (key (sy245 ing34))) +(recipe r245 (key (sx245 ing145))) +(recipe r245 (key (sy245 ing35))) +(recipe r245 (key (sx245 ing146))) +(recipe r245 (key (sy245 ing36))) +(recipe r246 (numIngredients 2)) +(recipe r246 (result (id item246))) +(recipe r246 (pattern 0 sx246)) +(recipe r246 (pattern 1 sy246)) +(recipe r246 (key (sx246 ing138))) +(recipe r246 (key (sy246 ing30))) +(recipe r246 (key (sx246 ing139))) +(recipe r246 (key (sy246 ing31))) +(recipe r246 (key (sx246 ing140))) +(recipe r246 (key (sy246 ing32))) +(recipe r246 (key (sx246 ing141))) +(recipe r246 (key (sy246 ing33))) +(recipe r246 (key (sx246 ing142))) +(recipe r246 (key (sy246 ing34))) +(recipe r246 (key (sx246 ing143))) +(recipe r246 (key (sy246 ing35))) +(recipe r246 (key (sx246 ing144))) +(recipe r246 (key (sy246 ing36))) +(recipe r246 (key (sx246 ing145))) +(recipe r246 (key (sy246 ing37))) +(recipe r246 (key (sx246 ing146))) +(recipe r246 (key (sy246 ing38))) +(recipe r246 (key (sx246 ing147))) +(recipe r246 (key (sy246 ing39))) +(recipe r246 (key (sx246 ing148))) +(recipe r246 (key (sy246 ing40))) +(recipe r246 (key (sx246 ing149))) +(recipe r246 (key (sy246 ing41))) +(recipe r247 (numIngredients 2)) +(recipe r247 (result (id item247))) +(recipe r247 (pattern 0 sx247)) +(recipe r247 (pattern 1 sy247)) +(recipe r247 (key (sx247 ing141))) +(recipe r247 (key (sy247 ing35))) +(recipe r247 (key (sx247 ing142))) +(recipe r247 (key (sy247 ing36))) +(recipe r247 (key (sx247 ing143))) +(recipe r247 (key (sy247 ing37))) +(recipe r247 (key (sx247 ing144))) +(recipe r247 (key (sy247 ing38))) +(recipe r247 (key (sx247 ing145))) +(recipe r247 (key (sy247 ing39))) +(recipe r247 (key (sx247 ing146))) +(recipe r247 (key (sy247 ing40))) +(recipe r247 (key (sx247 ing147))) +(recipe r247 (key (sy247 ing41))) +(recipe r247 (key (sx247 ing148))) +(recipe r247 (key (sy247 ing42))) +(recipe r247 (key (sx247 ing149))) +(recipe r247 (key (sy247 ing43))) +(recipe r247 (key (sx247 ing150))) +(recipe r247 (key (sy247 ing44))) +(recipe r247 (key (sx247 ing151))) +(recipe r247 (key (sy247 ing45))) +(recipe r247 (key (sx247 ing152))) +(recipe r247 (key (sy247 ing46))) +(recipe r248 (numIngredients 2)) +(recipe r248 (result (id item248))) +(recipe r248 (pattern 0 sx248)) +(recipe r248 (pattern 1 sy248)) +(recipe r248 (key (sx248 ing144))) +(recipe r248 (key (sy248 ing40))) +(recipe r248 (key (sx248 ing145))) +(recipe r248 (key (sy248 ing41))) +(recipe r248 (key (sx248 ing146))) +(recipe r248 (key (sy248 ing42))) +(recipe r248 (key (sx248 ing147))) +(recipe r248 (key (sy248 ing43))) +(recipe r248 (key (sx248 ing148))) +(recipe r248 (key (sy248 ing44))) +(recipe r248 (key (sx248 ing149))) +(recipe r248 (key (sy248 ing45))) +(recipe r248 (key (sx248 ing150))) +(recipe r248 (key (sy248 ing46))) +(recipe r248 (key (sx248 ing151))) +(recipe r248 (key (sy248 ing47))) +(recipe r248 (key (sx248 ing152))) +(recipe r248 (key (sy248 ing48))) +(recipe r248 (key (sx248 ing153))) +(recipe r248 (key (sy248 ing49))) +(recipe r248 (key (sx248 ing154))) +(recipe r248 (key (sy248 ing50))) +(recipe r248 (key (sx248 ing155))) +(recipe r248 (key (sy248 ing51))) +(recipe r249 (numIngredients 2)) +(recipe r249 (result (id item249))) +(recipe r249 (pattern 0 sx249)) +(recipe r249 (pattern 1 sy249)) +(recipe r249 (key (sx249 ing147))) +(recipe r249 (key (sy249 ing45))) +(recipe r249 (key (sx249 ing148))) +(recipe r249 (key (sy249 ing46))) +(recipe r249 (key (sx249 ing149))) +(recipe r249 (key (sy249 ing47))) +(recipe r249 (key (sx249 ing150))) +(recipe r249 (key (sy249 ing48))) +(recipe r249 (key (sx249 ing151))) +(recipe r249 (key (sy249 ing49))) +(recipe r249 (key (sx249 ing152))) +(recipe r249 (key (sy249 ing50))) +(recipe r249 (key (sx249 ing153))) +(recipe r249 (key (sy249 ing51))) +(recipe r249 (key (sx249 ing154))) +(recipe r249 (key (sy249 ing52))) +(recipe r249 (key (sx249 ing155))) +(recipe r249 (key (sy249 ing53))) +(recipe r249 (key (sx249 ing156))) +(recipe r249 (key (sy249 ing54))) +(recipe r249 (key (sx249 ing157))) +(recipe r249 (key (sy249 ing55))) +(recipe r249 (key (sx249 ing158))) +(recipe r249 (key (sy249 ing56))) +(recipe r250 (numIngredients 2)) +(recipe r250 (result (id item250))) +(recipe r250 (pattern 0 sx250)) +(recipe r250 (pattern 1 sy250)) +(recipe r250 (key (sx250 ing150))) +(recipe r250 (key (sy250 ing50))) +(recipe r250 (key (sx250 ing151))) +(recipe r250 (key (sy250 ing51))) +(recipe r250 (key (sx250 ing152))) +(recipe r250 (key (sy250 ing52))) +(recipe r250 (key (sx250 ing153))) +(recipe r250 (key (sy250 ing53))) +(recipe r250 (key (sx250 ing154))) +(recipe r250 (key (sy250 ing54))) +(recipe r250 (key (sx250 ing155))) +(recipe r250 (key (sy250 ing55))) +(recipe r250 (key (sx250 ing156))) +(recipe r250 (key (sy250 ing56))) +(recipe r250 (key (sx250 ing157))) +(recipe r250 (key (sy250 ing57))) +(recipe r250 (key (sx250 ing158))) +(recipe r250 (key (sy250 ing58))) +(recipe r250 (key (sx250 ing159))) +(recipe r250 (key (sy250 ing59))) +(recipe r250 (key (sx250 ing160))) +(recipe r250 (key (sy250 ing60))) +(recipe r250 (key (sx250 ing161))) +(recipe r250 (key (sy250 ing61))) +(recipe r251 (numIngredients 2)) +(recipe r251 (result (id item251))) +(recipe r251 (pattern 0 sx251)) +(recipe r251 (pattern 1 sy251)) +(recipe r251 (key (sx251 ing153))) +(recipe r251 (key (sy251 ing55))) +(recipe r251 (key (sx251 ing154))) +(recipe r251 (key (sy251 ing56))) +(recipe r251 (key (sx251 ing155))) +(recipe r251 (key (sy251 ing57))) +(recipe r251 (key (sx251 ing156))) +(recipe r251 (key (sy251 ing58))) +(recipe r251 (key (sx251 ing157))) +(recipe r251 (key (sy251 ing59))) +(recipe r251 (key (sx251 ing158))) +(recipe r251 (key (sy251 ing60))) +(recipe r251 (key (sx251 ing159))) +(recipe r251 (key (sy251 ing61))) +(recipe r251 (key (sx251 ing160))) +(recipe r251 (key (sy251 ing62))) +(recipe r251 (key (sx251 ing161))) +(recipe r251 (key (sy251 ing63))) +(recipe r251 (key (sx251 ing162))) +(recipe r251 (key (sy251 ing64))) +(recipe r251 (key (sx251 ing163))) +(recipe r251 (key (sy251 ing65))) +(recipe r251 (key (sx251 ing164))) +(recipe r251 (key (sy251 ing66))) +(recipe r252 (numIngredients 2)) +(recipe r252 (result (id item252))) +(recipe r252 (pattern 0 sx252)) +(recipe r252 (pattern 1 sy252)) +(recipe r252 (key (sx252 ing156))) +(recipe r252 (key (sy252 ing60))) +(recipe r252 (key (sx252 ing157))) +(recipe r252 (key (sy252 ing61))) +(recipe r252 (key (sx252 ing158))) +(recipe r252 (key (sy252 ing62))) +(recipe r252 (key (sx252 ing159))) +(recipe r252 (key (sy252 ing63))) +(recipe r252 (key (sx252 ing160))) +(recipe r252 (key (sy252 ing64))) +(recipe r252 (key (sx252 ing161))) +(recipe r252 (key (sy252 ing65))) +(recipe r252 (key (sx252 ing162))) +(recipe r252 (key (sy252 ing66))) +(recipe r252 (key (sx252 ing163))) +(recipe r252 (key (sy252 ing67))) +(recipe r252 (key (sx252 ing164))) +(recipe r252 (key (sy252 ing68))) +(recipe r252 (key (sx252 ing165))) +(recipe r252 (key (sy252 ing69))) +(recipe r252 (key (sx252 ing166))) +(recipe r252 (key (sy252 ing70))) +(recipe r252 (key (sx252 ing167))) +(recipe r252 (key (sy252 ing71))) +(recipe r253 (numIngredients 2)) +(recipe r253 (result (id item253))) +(recipe r253 (pattern 0 sx253)) +(recipe r253 (pattern 1 sy253)) +(recipe r253 (key (sx253 ing159))) +(recipe r253 (key (sy253 ing65))) +(recipe r253 (key (sx253 ing160))) +(recipe r253 (key (sy253 ing66))) +(recipe r253 (key (sx253 ing161))) +(recipe r253 (key (sy253 ing67))) +(recipe r253 (key (sx253 ing162))) +(recipe r253 (key (sy253 ing68))) +(recipe r253 (key (sx253 ing163))) +(recipe r253 (key (sy253 ing69))) +(recipe r253 (key (sx253 ing164))) +(recipe r253 (key (sy253 ing70))) +(recipe r253 (key (sx253 ing165))) +(recipe r253 (key (sy253 ing71))) +(recipe r253 (key (sx253 ing166))) +(recipe r253 (key (sy253 ing72))) +(recipe r253 (key (sx253 ing167))) +(recipe r253 (key (sy253 ing73))) +(recipe r253 (key (sx253 ing168))) +(recipe r253 (key (sy253 ing74))) +(recipe r253 (key (sx253 ing169))) +(recipe r253 (key (sy253 ing75))) +(recipe r253 (key (sx253 ing170))) +(recipe r253 (key (sy253 ing76))) +(recipe r254 (numIngredients 2)) +(recipe r254 (result (id item254))) +(recipe r254 (pattern 0 sx254)) +(recipe r254 (pattern 1 sy254)) +(recipe r254 (key (sx254 ing162))) +(recipe r254 (key (sy254 ing70))) +(recipe r254 (key (sx254 ing163))) +(recipe r254 (key (sy254 ing71))) +(recipe r254 (key (sx254 ing164))) +(recipe r254 (key (sy254 ing72))) +(recipe r254 (key (sx254 ing165))) +(recipe r254 (key (sy254 ing73))) +(recipe r254 (key (sx254 ing166))) +(recipe r254 (key (sy254 ing74))) +(recipe r254 (key (sx254 ing167))) +(recipe r254 (key (sy254 ing75))) +(recipe r254 (key (sx254 ing168))) +(recipe r254 (key (sy254 ing76))) +(recipe r254 (key (sx254 ing169))) +(recipe r254 (key (sy254 ing77))) +(recipe r254 (key (sx254 ing170))) +(recipe r254 (key (sy254 ing78))) +(recipe r254 (key (sx254 ing171))) +(recipe r254 (key (sy254 ing79))) +(recipe r254 (key (sx254 ing172))) +(recipe r254 (key (sy254 ing80))) +(recipe r254 (key (sx254 ing173))) +(recipe r254 (key (sy254 ing81))) +(recipe r255 (numIngredients 2)) +(recipe r255 (result (id item255))) +(recipe r255 (pattern 0 sx255)) +(recipe r255 (pattern 1 sy255)) +(recipe r255 (key (sx255 ing165))) +(recipe r255 (key (sy255 ing75))) +(recipe r255 (key (sx255 ing166))) +(recipe r255 (key (sy255 ing76))) +(recipe r255 (key (sx255 ing167))) +(recipe r255 (key (sy255 ing77))) +(recipe r255 (key (sx255 ing168))) +(recipe r255 (key (sy255 ing78))) +(recipe r255 (key (sx255 ing169))) +(recipe r255 (key (sy255 ing79))) +(recipe r255 (key (sx255 ing170))) +(recipe r255 (key (sy255 ing80))) +(recipe r255 (key (sx255 ing171))) +(recipe r255 (key (sy255 ing81))) +(recipe r255 (key (sx255 ing172))) +(recipe r255 (key (sy255 ing82))) +(recipe r255 (key (sx255 ing173))) +(recipe r255 (key (sy255 ing83))) +(recipe r255 (key (sx255 ing174))) +(recipe r255 (key (sy255 ing84))) +(recipe r255 (key (sx255 ing175))) +(recipe r255 (key (sy255 ing85))) +(recipe r255 (key (sx255 ing176))) +(recipe r255 (key (sy255 ing86))) +(recipe r256 (numIngredients 2)) +(recipe r256 (result (id item256))) +(recipe r256 (pattern 0 sx256)) +(recipe r256 (pattern 1 sy256)) +(recipe r256 (key (sx256 ing168))) +(recipe r256 (key (sy256 ing80))) +(recipe r256 (key (sx256 ing169))) +(recipe r256 (key (sy256 ing81))) +(recipe r256 (key (sx256 ing170))) +(recipe r256 (key (sy256 ing82))) +(recipe r256 (key (sx256 ing171))) +(recipe r256 (key (sy256 ing83))) +(recipe r256 (key (sx256 ing172))) +(recipe r256 (key (sy256 ing84))) +(recipe r256 (key (sx256 ing173))) +(recipe r256 (key (sy256 ing85))) +(recipe r256 (key (sx256 ing174))) +(recipe r256 (key (sy256 ing86))) +(recipe r256 (key (sx256 ing175))) +(recipe r256 (key (sy256 ing87))) +(recipe r256 (key (sx256 ing176))) +(recipe r256 (key (sy256 ing88))) +(recipe r256 (key (sx256 ing177))) +(recipe r256 (key (sy256 ing89))) +(recipe r256 (key (sx256 ing178))) +(recipe r256 (key (sy256 ing90))) +(recipe r256 (key (sx256 ing179))) +(recipe r256 (key (sy256 ing91))) +(recipe r257 (numIngredients 2)) +(recipe r257 (result (id item257))) +(recipe r257 (pattern 0 sx257)) +(recipe r257 (pattern 1 sy257)) +(recipe r257 (key (sx257 ing171))) +(recipe r257 (key (sy257 ing85))) +(recipe r257 (key (sx257 ing172))) +(recipe r257 (key (sy257 ing86))) +(recipe r257 (key (sx257 ing173))) +(recipe r257 (key (sy257 ing87))) +(recipe r257 (key (sx257 ing174))) +(recipe r257 (key (sy257 ing88))) +(recipe r257 (key (sx257 ing175))) +(recipe r257 (key (sy257 ing89))) +(recipe r257 (key (sx257 ing176))) +(recipe r257 (key (sy257 ing90))) +(recipe r257 (key (sx257 ing177))) +(recipe r257 (key (sy257 ing91))) +(recipe r257 (key (sx257 ing178))) +(recipe r257 (key (sy257 ing92))) +(recipe r257 (key (sx257 ing179))) +(recipe r257 (key (sy257 ing93))) +(recipe r257 (key (sx257 ing180))) +(recipe r257 (key (sy257 ing94))) +(recipe r257 (key (sx257 ing181))) +(recipe r257 (key (sy257 ing95))) +(recipe r257 (key (sx257 ing182))) +(recipe r257 (key (sy257 ing96))) +(recipe r258 (numIngredients 2)) +(recipe r258 (result (id item258))) +(recipe r258 (pattern 0 sx258)) +(recipe r258 (pattern 1 sy258)) +(recipe r258 (key (sx258 ing174))) +(recipe r258 (key (sy258 ing90))) +(recipe r258 (key (sx258 ing175))) +(recipe r258 (key (sy258 ing91))) +(recipe r258 (key (sx258 ing176))) +(recipe r258 (key (sy258 ing92))) +(recipe r258 (key (sx258 ing177))) +(recipe r258 (key (sy258 ing93))) +(recipe r258 (key (sx258 ing178))) +(recipe r258 (key (sy258 ing94))) +(recipe r258 (key (sx258 ing179))) +(recipe r258 (key (sy258 ing95))) +(recipe r258 (key (sx258 ing180))) +(recipe r258 (key (sy258 ing96))) +(recipe r258 (key (sx258 ing181))) +(recipe r258 (key (sy258 ing97))) +(recipe r258 (key (sx258 ing182))) +(recipe r258 (key (sy258 ing98))) +(recipe r258 (key (sx258 ing183))) +(recipe r258 (key (sy258 ing99))) +(recipe r258 (key (sx258 ing184))) +(recipe r258 (key (sy258 ing100))) +(recipe r258 (key (sx258 ing185))) +(recipe r258 (key (sy258 ing101))) +(recipe r259 (numIngredients 2)) +(recipe r259 (result (id item259))) +(recipe r259 (pattern 0 sx259)) +(recipe r259 (pattern 1 sy259)) +(recipe r259 (key (sx259 ing177))) +(recipe r259 (key (sy259 ing95))) +(recipe r259 (key (sx259 ing178))) +(recipe r259 (key (sy259 ing96))) +(recipe r259 (key (sx259 ing179))) +(recipe r259 (key (sy259 ing97))) +(recipe r259 (key (sx259 ing180))) +(recipe r259 (key (sy259 ing98))) +(recipe r259 (key (sx259 ing181))) +(recipe r259 (key (sy259 ing99))) +(recipe r259 (key (sx259 ing182))) +(recipe r259 (key (sy259 ing100))) +(recipe r259 (key (sx259 ing183))) +(recipe r259 (key (sy259 ing101))) +(recipe r259 (key (sx259 ing184))) +(recipe r259 (key (sy259 ing102))) +(recipe r259 (key (sx259 ing185))) +(recipe r259 (key (sy259 ing103))) +(recipe r259 (key (sx259 ing186))) +(recipe r259 (key (sy259 ing104))) +(recipe r259 (key (sx259 ing187))) +(recipe r259 (key (sy259 ing105))) +(recipe r259 (key (sx259 ing188))) +(recipe r259 (key (sy259 ing106))) +(recipe r260 (numIngredients 2)) +(recipe r260 (result (id item260))) +(recipe r260 (pattern 0 sx260)) +(recipe r260 (pattern 1 sy260)) +(recipe r260 (key (sx260 ing180))) +(recipe r260 (key (sy260 ing100))) +(recipe r260 (key (sx260 ing181))) +(recipe r260 (key (sy260 ing101))) +(recipe r260 (key (sx260 ing182))) +(recipe r260 (key (sy260 ing102))) +(recipe r260 (key (sx260 ing183))) +(recipe r260 (key (sy260 ing103))) +(recipe r260 (key (sx260 ing184))) +(recipe r260 (key (sy260 ing104))) +(recipe r260 (key (sx260 ing185))) +(recipe r260 (key (sy260 ing105))) +(recipe r260 (key (sx260 ing186))) +(recipe r260 (key (sy260 ing106))) +(recipe r260 (key (sx260 ing187))) +(recipe r260 (key (sy260 ing107))) +(recipe r260 (key (sx260 ing188))) +(recipe r260 (key (sy260 ing108))) +(recipe r260 (key (sx260 ing189))) +(recipe r260 (key (sy260 ing109))) +(recipe r260 (key (sx260 ing190))) +(recipe r260 (key (sy260 ing110))) +(recipe r260 (key (sx260 ing191))) +(recipe r260 (key (sy260 ing111))) +(recipe r261 (numIngredients 2)) +(recipe r261 (result (id item261))) +(recipe r261 (pattern 0 sx261)) +(recipe r261 (pattern 1 sy261)) +(recipe r261 (key (sx261 ing183))) +(recipe r261 (key (sy261 ing105))) +(recipe r261 (key (sx261 ing184))) +(recipe r261 (key (sy261 ing106))) +(recipe r261 (key (sx261 ing185))) +(recipe r261 (key (sy261 ing107))) +(recipe r261 (key (sx261 ing186))) +(recipe r261 (key (sy261 ing108))) +(recipe r261 (key (sx261 ing187))) +(recipe r261 (key (sy261 ing109))) +(recipe r261 (key (sx261 ing188))) +(recipe r261 (key (sy261 ing110))) +(recipe r261 (key (sx261 ing189))) +(recipe r261 (key (sy261 ing111))) +(recipe r261 (key (sx261 ing190))) +(recipe r261 (key (sy261 ing112))) +(recipe r261 (key (sx261 ing191))) +(recipe r261 (key (sy261 ing113))) +(recipe r261 (key (sx261 ing192))) +(recipe r261 (key (sy261 ing114))) +(recipe r261 (key (sx261 ing193))) +(recipe r261 (key (sy261 ing115))) +(recipe r261 (key (sx261 ing194))) +(recipe r261 (key (sy261 ing116))) +(recipe r262 (numIngredients 2)) +(recipe r262 (result (id item262))) +(recipe r262 (pattern 0 sx262)) +(recipe r262 (pattern 1 sy262)) +(recipe r262 (key (sx262 ing186))) +(recipe r262 (key (sy262 ing110))) +(recipe r262 (key (sx262 ing187))) +(recipe r262 (key (sy262 ing111))) +(recipe r262 (key (sx262 ing188))) +(recipe r262 (key (sy262 ing112))) +(recipe r262 (key (sx262 ing189))) +(recipe r262 (key (sy262 ing113))) +(recipe r262 (key (sx262 ing190))) +(recipe r262 (key (sy262 ing114))) +(recipe r262 (key (sx262 ing191))) +(recipe r262 (key (sy262 ing115))) +(recipe r262 (key (sx262 ing192))) +(recipe r262 (key (sy262 ing116))) +(recipe r262 (key (sx262 ing193))) +(recipe r262 (key (sy262 ing117))) +(recipe r262 (key (sx262 ing194))) +(recipe r262 (key (sy262 ing118))) +(recipe r262 (key (sx262 ing195))) +(recipe r262 (key (sy262 ing119))) +(recipe r262 (key (sx262 ing196))) +(recipe r262 (key (sy262 ing120))) +(recipe r262 (key (sx262 ing197))) +(recipe r262 (key (sy262 ing121))) +(recipe r263 (numIngredients 2)) +(recipe r263 (result (id item263))) +(recipe r263 (pattern 0 sx263)) +(recipe r263 (pattern 1 sy263)) +(recipe r263 (key (sx263 ing189))) +(recipe r263 (key (sy263 ing115))) +(recipe r263 (key (sx263 ing190))) +(recipe r263 (key (sy263 ing116))) +(recipe r263 (key (sx263 ing191))) +(recipe r263 (key (sy263 ing117))) +(recipe r263 (key (sx263 ing192))) +(recipe r263 (key (sy263 ing118))) +(recipe r263 (key (sx263 ing193))) +(recipe r263 (key (sy263 ing119))) +(recipe r263 (key (sx263 ing194))) +(recipe r263 (key (sy263 ing120))) +(recipe r263 (key (sx263 ing195))) +(recipe r263 (key (sy263 ing121))) +(recipe r263 (key (sx263 ing196))) +(recipe r263 (key (sy263 ing122))) +(recipe r263 (key (sx263 ing197))) +(recipe r263 (key (sy263 ing123))) +(recipe r263 (key (sx263 ing198))) +(recipe r263 (key (sy263 ing124))) +(recipe r263 (key (sx263 ing199))) +(recipe r263 (key (sy263 ing125))) +(recipe r263 (key (sx263 ing200))) +(recipe r263 (key (sy263 ing126))) +(recipe r264 (numIngredients 2)) +(recipe r264 (result (id item264))) +(recipe r264 (pattern 0 sx264)) +(recipe r264 (pattern 1 sy264)) +(recipe r264 (key (sx264 ing192))) +(recipe r264 (key (sy264 ing120))) +(recipe r264 (key (sx264 ing193))) +(recipe r264 (key (sy264 ing121))) +(recipe r264 (key (sx264 ing194))) +(recipe r264 (key (sy264 ing122))) +(recipe r264 (key (sx264 ing195))) +(recipe r264 (key (sy264 ing123))) +(recipe r264 (key (sx264 ing196))) +(recipe r264 (key (sy264 ing124))) +(recipe r264 (key (sx264 ing197))) +(recipe r264 (key (sy264 ing125))) +(recipe r264 (key (sx264 ing198))) +(recipe r264 (key (sy264 ing126))) +(recipe r264 (key (sx264 ing199))) +(recipe r264 (key (sy264 ing127))) +(recipe r264 (key (sx264 ing200))) +(recipe r264 (key (sy264 ing128))) +(recipe r264 (key (sx264 ing201))) +(recipe r264 (key (sy264 ing129))) +(recipe r264 (key (sx264 ing202))) +(recipe r264 (key (sy264 ing130))) +(recipe r264 (key (sx264 ing203))) +(recipe r264 (key (sy264 ing131))) +(recipe r265 (numIngredients 2)) +(recipe r265 (result (id item265))) +(recipe r265 (pattern 0 sx265)) +(recipe r265 (pattern 1 sy265)) +(recipe r265 (key (sx265 ing195))) +(recipe r265 (key (sy265 ing125))) +(recipe r265 (key (sx265 ing196))) +(recipe r265 (key (sy265 ing126))) +(recipe r265 (key (sx265 ing197))) +(recipe r265 (key (sy265 ing127))) +(recipe r265 (key (sx265 ing198))) +(recipe r265 (key (sy265 ing128))) +(recipe r265 (key (sx265 ing199))) +(recipe r265 (key (sy265 ing129))) +(recipe r265 (key (sx265 ing200))) +(recipe r265 (key (sy265 ing130))) +(recipe r265 (key (sx265 ing201))) +(recipe r265 (key (sy265 ing131))) +(recipe r265 (key (sx265 ing202))) +(recipe r265 (key (sy265 ing132))) +(recipe r265 (key (sx265 ing203))) +(recipe r265 (key (sy265 ing133))) +(recipe r265 (key (sx265 ing204))) +(recipe r265 (key (sy265 ing134))) +(recipe r265 (key (sx265 ing205))) +(recipe r265 (key (sy265 ing135))) +(recipe r265 (key (sx265 ing206))) +(recipe r265 (key (sy265 ing136))) +(recipe r266 (numIngredients 2)) +(recipe r266 (result (id item266))) +(recipe r266 (pattern 0 sx266)) +(recipe r266 (pattern 1 sy266)) +(recipe r266 (key (sx266 ing198))) +(recipe r266 (key (sy266 ing130))) +(recipe r266 (key (sx266 ing199))) +(recipe r266 (key (sy266 ing131))) +(recipe r266 (key (sx266 ing200))) +(recipe r266 (key (sy266 ing132))) +(recipe r266 (key (sx266 ing201))) +(recipe r266 (key (sy266 ing133))) +(recipe r266 (key (sx266 ing202))) +(recipe r266 (key (sy266 ing134))) +(recipe r266 (key (sx266 ing203))) +(recipe r266 (key (sy266 ing135))) +(recipe r266 (key (sx266 ing204))) +(recipe r266 (key (sy266 ing136))) +(recipe r266 (key (sx266 ing205))) +(recipe r266 (key (sy266 ing137))) +(recipe r266 (key (sx266 ing206))) +(recipe r266 (key (sy266 ing138))) +(recipe r266 (key (sx266 ing207))) +(recipe r266 (key (sy266 ing139))) +(recipe r266 (key (sx266 ing208))) +(recipe r266 (key (sy266 ing140))) +(recipe r266 (key (sx266 ing209))) +(recipe r266 (key (sy266 ing141))) +(recipe r267 (numIngredients 2)) +(recipe r267 (result (id item267))) +(recipe r267 (pattern 0 sx267)) +(recipe r267 (pattern 1 sy267)) +(recipe r267 (key (sx267 ing201))) +(recipe r267 (key (sy267 ing135))) +(recipe r267 (key (sx267 ing202))) +(recipe r267 (key (sy267 ing136))) +(recipe r267 (key (sx267 ing203))) +(recipe r267 (key (sy267 ing137))) +(recipe r267 (key (sx267 ing204))) +(recipe r267 (key (sy267 ing138))) +(recipe r267 (key (sx267 ing205))) +(recipe r267 (key (sy267 ing139))) +(recipe r267 (key (sx267 ing206))) +(recipe r267 (key (sy267 ing140))) +(recipe r267 (key (sx267 ing207))) +(recipe r267 (key (sy267 ing141))) +(recipe r267 (key (sx267 ing208))) +(recipe r267 (key (sy267 ing142))) +(recipe r267 (key (sx267 ing209))) +(recipe r267 (key (sy267 ing143))) +(recipe r267 (key (sx267 ing210))) +(recipe r267 (key (sy267 ing144))) +(recipe r267 (key (sx267 ing211))) +(recipe r267 (key (sy267 ing145))) +(recipe r267 (key (sx267 ing212))) +(recipe r267 (key (sy267 ing146))) +(recipe r268 (numIngredients 2)) +(recipe r268 (result (id item268))) +(recipe r268 (pattern 0 sx268)) +(recipe r268 (pattern 1 sy268)) +(recipe r268 (key (sx268 ing204))) +(recipe r268 (key (sy268 ing140))) +(recipe r268 (key (sx268 ing205))) +(recipe r268 (key (sy268 ing141))) +(recipe r268 (key (sx268 ing206))) +(recipe r268 (key (sy268 ing142))) +(recipe r268 (key (sx268 ing207))) +(recipe r268 (key (sy268 ing143))) +(recipe r268 (key (sx268 ing208))) +(recipe r268 (key (sy268 ing144))) +(recipe r268 (key (sx268 ing209))) +(recipe r268 (key (sy268 ing145))) +(recipe r268 (key (sx268 ing210))) +(recipe r268 (key (sy268 ing146))) +(recipe r268 (key (sx268 ing211))) +(recipe r268 (key (sy268 ing147))) +(recipe r268 (key (sx268 ing212))) +(recipe r268 (key (sy268 ing148))) +(recipe r268 (key (sx268 ing213))) +(recipe r268 (key (sy268 ing149))) +(recipe r268 (key (sx268 ing214))) +(recipe r268 (key (sy268 ing150))) +(recipe r268 (key (sx268 ing215))) +(recipe r268 (key (sy268 ing151))) +(recipe r269 (numIngredients 2)) +(recipe r269 (result (id item269))) +(recipe r269 (pattern 0 sx269)) +(recipe r269 (pattern 1 sy269)) +(recipe r269 (key (sx269 ing207))) +(recipe r269 (key (sy269 ing145))) +(recipe r269 (key (sx269 ing208))) +(recipe r269 (key (sy269 ing146))) +(recipe r269 (key (sx269 ing209))) +(recipe r269 (key (sy269 ing147))) +(recipe r269 (key (sx269 ing210))) +(recipe r269 (key (sy269 ing148))) +(recipe r269 (key (sx269 ing211))) +(recipe r269 (key (sy269 ing149))) +(recipe r269 (key (sx269 ing212))) +(recipe r269 (key (sy269 ing150))) +(recipe r269 (key (sx269 ing213))) +(recipe r269 (key (sy269 ing151))) +(recipe r269 (key (sx269 ing214))) +(recipe r269 (key (sy269 ing152))) +(recipe r269 (key (sx269 ing215))) +(recipe r269 (key (sy269 ing153))) +(recipe r269 (key (sx269 ing216))) +(recipe r269 (key (sy269 ing154))) +(recipe r269 (key (sx269 ing217))) +(recipe r269 (key (sy269 ing155))) +(recipe r269 (key (sx269 ing218))) +(recipe r269 (key (sy269 ing156))) +(recipe r270 (numIngredients 2)) +(recipe r270 (result (id item270))) +(recipe r270 (pattern 0 sx270)) +(recipe r270 (pattern 1 sy270)) +(recipe r270 (key (sx270 ing210))) +(recipe r270 (key (sy270 ing150))) +(recipe r270 (key (sx270 ing211))) +(recipe r270 (key (sy270 ing151))) +(recipe r270 (key (sx270 ing212))) +(recipe r270 (key (sy270 ing152))) +(recipe r270 (key (sx270 ing213))) +(recipe r270 (key (sy270 ing153))) +(recipe r270 (key (sx270 ing214))) +(recipe r270 (key (sy270 ing154))) +(recipe r270 (key (sx270 ing215))) +(recipe r270 (key (sy270 ing155))) +(recipe r270 (key (sx270 ing216))) +(recipe r270 (key (sy270 ing156))) +(recipe r270 (key (sx270 ing217))) +(recipe r270 (key (sy270 ing157))) +(recipe r270 (key (sx270 ing218))) +(recipe r270 (key (sy270 ing158))) +(recipe r270 (key (sx270 ing219))) +(recipe r270 (key (sy270 ing159))) +(recipe r270 (key (sx270 ing220))) +(recipe r270 (key (sy270 ing160))) +(recipe r270 (key (sx270 ing221))) +(recipe r270 (key (sy270 ing161))) +(recipe r271 (numIngredients 2)) +(recipe r271 (result (id item271))) +(recipe r271 (pattern 0 sx271)) +(recipe r271 (pattern 1 sy271)) +(recipe r271 (key (sx271 ing213))) +(recipe r271 (key (sy271 ing155))) +(recipe r271 (key (sx271 ing214))) +(recipe r271 (key (sy271 ing156))) +(recipe r271 (key (sx271 ing215))) +(recipe r271 (key (sy271 ing157))) +(recipe r271 (key (sx271 ing216))) +(recipe r271 (key (sy271 ing158))) +(recipe r271 (key (sx271 ing217))) +(recipe r271 (key (sy271 ing159))) +(recipe r271 (key (sx271 ing218))) +(recipe r271 (key (sy271 ing160))) +(recipe r271 (key (sx271 ing219))) +(recipe r271 (key (sy271 ing161))) +(recipe r271 (key (sx271 ing220))) +(recipe r271 (key (sy271 ing162))) +(recipe r271 (key (sx271 ing221))) +(recipe r271 (key (sy271 ing163))) +(recipe r271 (key (sx271 ing222))) +(recipe r271 (key (sy271 ing164))) +(recipe r271 (key (sx271 ing223))) +(recipe r271 (key (sy271 ing165))) +(recipe r271 (key (sx271 ing224))) +(recipe r271 (key (sy271 ing166))) +(recipe r272 (numIngredients 2)) +(recipe r272 (result (id item272))) +(recipe r272 (pattern 0 sx272)) +(recipe r272 (pattern 1 sy272)) +(recipe r272 (key (sx272 ing216))) +(recipe r272 (key (sy272 ing160))) +(recipe r272 (key (sx272 ing217))) +(recipe r272 (key (sy272 ing161))) +(recipe r272 (key (sx272 ing218))) +(recipe r272 (key (sy272 ing162))) +(recipe r272 (key (sx272 ing219))) +(recipe r272 (key (sy272 ing163))) +(recipe r272 (key (sx272 ing220))) +(recipe r272 (key (sy272 ing164))) +(recipe r272 (key (sx272 ing221))) +(recipe r272 (key (sy272 ing165))) +(recipe r272 (key (sx272 ing222))) +(recipe r272 (key (sy272 ing166))) +(recipe r272 (key (sx272 ing223))) +(recipe r272 (key (sy272 ing167))) +(recipe r272 (key (sx272 ing224))) +(recipe r272 (key (sy272 ing168))) +(recipe r272 (key (sx272 ing225))) +(recipe r272 (key (sy272 ing169))) +(recipe r272 (key (sx272 ing226))) +(recipe r272 (key (sy272 ing170))) +(recipe r272 (key (sx272 ing227))) +(recipe r272 (key (sy272 ing171))) +(recipe r273 (numIngredients 2)) +(recipe r273 (result (id item273))) +(recipe r273 (pattern 0 sx273)) +(recipe r273 (pattern 1 sy273)) +(recipe r273 (key (sx273 ing219))) +(recipe r273 (key (sy273 ing165))) +(recipe r273 (key (sx273 ing220))) +(recipe r273 (key (sy273 ing166))) +(recipe r273 (key (sx273 ing221))) +(recipe r273 (key (sy273 ing167))) +(recipe r273 (key (sx273 ing222))) +(recipe r273 (key (sy273 ing168))) +(recipe r273 (key (sx273 ing223))) +(recipe r273 (key (sy273 ing169))) +(recipe r273 (key (sx273 ing224))) +(recipe r273 (key (sy273 ing170))) +(recipe r273 (key (sx273 ing225))) +(recipe r273 (key (sy273 ing171))) +(recipe r273 (key (sx273 ing226))) +(recipe r273 (key (sy273 ing172))) +(recipe r273 (key (sx273 ing227))) +(recipe r273 (key (sy273 ing173))) +(recipe r273 (key (sx273 ing228))) +(recipe r273 (key (sy273 ing174))) +(recipe r273 (key (sx273 ing229))) +(recipe r273 (key (sy273 ing175))) +(recipe r273 (key (sx273 ing230))) +(recipe r273 (key (sy273 ing176))) +(recipe r274 (numIngredients 2)) +(recipe r274 (result (id item274))) +(recipe r274 (pattern 0 sx274)) +(recipe r274 (pattern 1 sy274)) +(recipe r274 (key (sx274 ing222))) +(recipe r274 (key (sy274 ing170))) +(recipe r274 (key (sx274 ing223))) +(recipe r274 (key (sy274 ing171))) +(recipe r274 (key (sx274 ing224))) +(recipe r274 (key (sy274 ing172))) +(recipe r274 (key (sx274 ing225))) +(recipe r274 (key (sy274 ing173))) +(recipe r274 (key (sx274 ing226))) +(recipe r274 (key (sy274 ing174))) +(recipe r274 (key (sx274 ing227))) +(recipe r274 (key (sy274 ing175))) +(recipe r274 (key (sx274 ing228))) +(recipe r274 (key (sy274 ing176))) +(recipe r274 (key (sx274 ing229))) +(recipe r274 (key (sy274 ing177))) +(recipe r274 (key (sx274 ing230))) +(recipe r274 (key (sy274 ing178))) +(recipe r274 (key (sx274 ing231))) +(recipe r274 (key (sy274 ing179))) +(recipe r274 (key (sx274 ing232))) +(recipe r274 (key (sy274 ing180))) +(recipe r274 (key (sx274 ing233))) +(recipe r274 (key (sy274 ing181))) +(recipe r275 (numIngredients 2)) +(recipe r275 (result (id item275))) +(recipe r275 (pattern 0 sx275)) +(recipe r275 (pattern 1 sy275)) +(recipe r275 (key (sx275 ing225))) +(recipe r275 (key (sy275 ing175))) +(recipe r275 (key (sx275 ing226))) +(recipe r275 (key (sy275 ing176))) +(recipe r275 (key (sx275 ing227))) +(recipe r275 (key (sy275 ing177))) +(recipe r275 (key (sx275 ing228))) +(recipe r275 (key (sy275 ing178))) +(recipe r275 (key (sx275 ing229))) +(recipe r275 (key (sy275 ing179))) +(recipe r275 (key (sx275 ing230))) +(recipe r275 (key (sy275 ing180))) +(recipe r275 (key (sx275 ing231))) +(recipe r275 (key (sy275 ing181))) +(recipe r275 (key (sx275 ing232))) +(recipe r275 (key (sy275 ing182))) +(recipe r275 (key (sx275 ing233))) +(recipe r275 (key (sy275 ing183))) +(recipe r275 (key (sx275 ing234))) +(recipe r275 (key (sy275 ing184))) +(recipe r275 (key (sx275 ing235))) +(recipe r275 (key (sy275 ing185))) +(recipe r275 (key (sx275 ing236))) +(recipe r275 (key (sy275 ing186))) +(recipe r276 (numIngredients 2)) +(recipe r276 (result (id item276))) +(recipe r276 (pattern 0 sx276)) +(recipe r276 (pattern 1 sy276)) +(recipe r276 (key (sx276 ing228))) +(recipe r276 (key (sy276 ing180))) +(recipe r276 (key (sx276 ing229))) +(recipe r276 (key (sy276 ing181))) +(recipe r276 (key (sx276 ing230))) +(recipe r276 (key (sy276 ing182))) +(recipe r276 (key (sx276 ing231))) +(recipe r276 (key (sy276 ing183))) +(recipe r276 (key (sx276 ing232))) +(recipe r276 (key (sy276 ing184))) +(recipe r276 (key (sx276 ing233))) +(recipe r276 (key (sy276 ing185))) +(recipe r276 (key (sx276 ing234))) +(recipe r276 (key (sy276 ing186))) +(recipe r276 (key (sx276 ing235))) +(recipe r276 (key (sy276 ing187))) +(recipe r276 (key (sx276 ing236))) +(recipe r276 (key (sy276 ing188))) +(recipe r276 (key (sx276 ing237))) +(recipe r276 (key (sy276 ing189))) +(recipe r276 (key (sx276 ing238))) +(recipe r276 (key (sy276 ing190))) +(recipe r276 (key (sx276 ing239))) +(recipe r276 (key (sy276 ing191))) +(recipe r277 (numIngredients 2)) +(recipe r277 (result (id item277))) +(recipe r277 (pattern 0 sx277)) +(recipe r277 (pattern 1 sy277)) +(recipe r277 (key (sx277 ing231))) +(recipe r277 (key (sy277 ing185))) +(recipe r277 (key (sx277 ing232))) +(recipe r277 (key (sy277 ing186))) +(recipe r277 (key (sx277 ing233))) +(recipe r277 (key (sy277 ing187))) +(recipe r277 (key (sx277 ing234))) +(recipe r277 (key (sy277 ing188))) +(recipe r277 (key (sx277 ing235))) +(recipe r277 (key (sy277 ing189))) +(recipe r277 (key (sx277 ing236))) +(recipe r277 (key (sy277 ing190))) +(recipe r277 (key (sx277 ing237))) +(recipe r277 (key (sy277 ing191))) +(recipe r277 (key (sx277 ing238))) +(recipe r277 (key (sy277 ing192))) +(recipe r277 (key (sx277 ing239))) +(recipe r277 (key (sy277 ing193))) +(recipe r277 (key (sx277 ing240))) +(recipe r277 (key (sy277 ing194))) +(recipe r277 (key (sx277 ing241))) +(recipe r277 (key (sy277 ing195))) +(recipe r277 (key (sx277 ing242))) +(recipe r277 (key (sy277 ing196))) +(recipe r278 (numIngredients 2)) +(recipe r278 (result (id item278))) +(recipe r278 (pattern 0 sx278)) +(recipe r278 (pattern 1 sy278)) +(recipe r278 (key (sx278 ing234))) +(recipe r278 (key (sy278 ing190))) +(recipe r278 (key (sx278 ing235))) +(recipe r278 (key (sy278 ing191))) +(recipe r278 (key (sx278 ing236))) +(recipe r278 (key (sy278 ing192))) +(recipe r278 (key (sx278 ing237))) +(recipe r278 (key (sy278 ing193))) +(recipe r278 (key (sx278 ing238))) +(recipe r278 (key (sy278 ing194))) +(recipe r278 (key (sx278 ing239))) +(recipe r278 (key (sy278 ing195))) +(recipe r278 (key (sx278 ing240))) +(recipe r278 (key (sy278 ing196))) +(recipe r278 (key (sx278 ing241))) +(recipe r278 (key (sy278 ing197))) +(recipe r278 (key (sx278 ing242))) +(recipe r278 (key (sy278 ing198))) +(recipe r278 (key (sx278 ing243))) +(recipe r278 (key (sy278 ing199))) +(recipe r278 (key (sx278 ing244))) +(recipe r278 (key (sy278 ing200))) +(recipe r278 (key (sx278 ing245))) +(recipe r278 (key (sy278 ing201))) +(recipe r279 (numIngredients 2)) +(recipe r279 (result (id item279))) +(recipe r279 (pattern 0 sx279)) +(recipe r279 (pattern 1 sy279)) +(recipe r279 (key (sx279 ing237))) +(recipe r279 (key (sy279 ing195))) +(recipe r279 (key (sx279 ing238))) +(recipe r279 (key (sy279 ing196))) +(recipe r279 (key (sx279 ing239))) +(recipe r279 (key (sy279 ing197))) +(recipe r279 (key (sx279 ing240))) +(recipe r279 (key (sy279 ing198))) +(recipe r279 (key (sx279 ing241))) +(recipe r279 (key (sy279 ing199))) +(recipe r279 (key (sx279 ing242))) +(recipe r279 (key (sy279 ing200))) +(recipe r279 (key (sx279 ing243))) +(recipe r279 (key (sy279 ing201))) +(recipe r279 (key (sx279 ing244))) +(recipe r279 (key (sy279 ing202))) +(recipe r279 (key (sx279 ing245))) +(recipe r279 (key (sy279 ing203))) +(recipe r279 (key (sx279 ing246))) +(recipe r279 (key (sy279 ing204))) +(recipe r279 (key (sx279 ing247))) +(recipe r279 (key (sy279 ing205))) +(recipe r279 (key (sx279 ing248))) +(recipe r279 (key (sy279 ing206))) +(recipe r280 (numIngredients 2)) +(recipe r280 (result (id item280))) +(recipe r280 (pattern 0 sx280)) +(recipe r280 (pattern 1 sy280)) +(recipe r280 (key (sx280 ing240))) +(recipe r280 (key (sy280 ing200))) +(recipe r280 (key (sx280 ing241))) +(recipe r280 (key (sy280 ing201))) +(recipe r280 (key (sx280 ing242))) +(recipe r280 (key (sy280 ing202))) +(recipe r280 (key (sx280 ing243))) +(recipe r280 (key (sy280 ing203))) +(recipe r280 (key (sx280 ing244))) +(recipe r280 (key (sy280 ing204))) +(recipe r280 (key (sx280 ing245))) +(recipe r280 (key (sy280 ing205))) +(recipe r280 (key (sx280 ing246))) +(recipe r280 (key (sy280 ing206))) +(recipe r280 (key (sx280 ing247))) +(recipe r280 (key (sy280 ing207))) +(recipe r280 (key (sx280 ing248))) +(recipe r280 (key (sy280 ing208))) +(recipe r280 (key (sx280 ing249))) +(recipe r280 (key (sy280 ing209))) +(recipe r280 (key (sx280 ing250))) +(recipe r280 (key (sy280 ing210))) +(recipe r280 (key (sx280 ing251))) +(recipe r280 (key (sy280 ing211))) +(recipe r281 (numIngredients 2)) +(recipe r281 (result (id item281))) +(recipe r281 (pattern 0 sx281)) +(recipe r281 (pattern 1 sy281)) +(recipe r281 (key (sx281 ing243))) +(recipe r281 (key (sy281 ing205))) +(recipe r281 (key (sx281 ing244))) +(recipe r281 (key (sy281 ing206))) +(recipe r281 (key (sx281 ing245))) +(recipe r281 (key (sy281 ing207))) +(recipe r281 (key (sx281 ing246))) +(recipe r281 (key (sy281 ing208))) +(recipe r281 (key (sx281 ing247))) +(recipe r281 (key (sy281 ing209))) +(recipe r281 (key (sx281 ing248))) +(recipe r281 (key (sy281 ing210))) +(recipe r281 (key (sx281 ing249))) +(recipe r281 (key (sy281 ing211))) +(recipe r281 (key (sx281 ing250))) +(recipe r281 (key (sy281 ing212))) +(recipe r281 (key (sx281 ing251))) +(recipe r281 (key (sy281 ing213))) +(recipe r281 (key (sx281 ing252))) +(recipe r281 (key (sy281 ing214))) +(recipe r281 (key (sx281 ing253))) +(recipe r281 (key (sy281 ing215))) +(recipe r281 (key (sx281 ing254))) +(recipe r281 (key (sy281 ing216))) +(recipe r282 (numIngredients 2)) +(recipe r282 (result (id item282))) +(recipe r282 (pattern 0 sx282)) +(recipe r282 (pattern 1 sy282)) +(recipe r282 (key (sx282 ing246))) +(recipe r282 (key (sy282 ing210))) +(recipe r282 (key (sx282 ing247))) +(recipe r282 (key (sy282 ing211))) +(recipe r282 (key (sx282 ing248))) +(recipe r282 (key (sy282 ing212))) +(recipe r282 (key (sx282 ing249))) +(recipe r282 (key (sy282 ing213))) +(recipe r282 (key (sx282 ing250))) +(recipe r282 (key (sy282 ing214))) +(recipe r282 (key (sx282 ing251))) +(recipe r282 (key (sy282 ing215))) +(recipe r282 (key (sx282 ing252))) +(recipe r282 (key (sy282 ing216))) +(recipe r282 (key (sx282 ing253))) +(recipe r282 (key (sy282 ing217))) +(recipe r282 (key (sx282 ing254))) +(recipe r282 (key (sy282 ing218))) +(recipe r282 (key (sx282 ing255))) +(recipe r282 (key (sy282 ing219))) +(recipe r282 (key (sx282 ing256))) +(recipe r282 (key (sy282 ing220))) +(recipe r282 (key (sx282 ing257))) +(recipe r282 (key (sy282 ing221))) +(recipe r283 (numIngredients 2)) +(recipe r283 (result (id item283))) +(recipe r283 (pattern 0 sx283)) +(recipe r283 (pattern 1 sy283)) +(recipe r283 (key (sx283 ing249))) +(recipe r283 (key (sy283 ing215))) +(recipe r283 (key (sx283 ing250))) +(recipe r283 (key (sy283 ing216))) +(recipe r283 (key (sx283 ing251))) +(recipe r283 (key (sy283 ing217))) +(recipe r283 (key (sx283 ing252))) +(recipe r283 (key (sy283 ing218))) +(recipe r283 (key (sx283 ing253))) +(recipe r283 (key (sy283 ing219))) +(recipe r283 (key (sx283 ing254))) +(recipe r283 (key (sy283 ing220))) +(recipe r283 (key (sx283 ing255))) +(recipe r283 (key (sy283 ing221))) +(recipe r283 (key (sx283 ing256))) +(recipe r283 (key (sy283 ing222))) +(recipe r283 (key (sx283 ing257))) +(recipe r283 (key (sy283 ing223))) +(recipe r283 (key (sx283 ing258))) +(recipe r283 (key (sy283 ing224))) +(recipe r283 (key (sx283 ing259))) +(recipe r283 (key (sy283 ing225))) +(recipe r283 (key (sx283 ing260))) +(recipe r283 (key (sy283 ing226))) +(recipe r284 (numIngredients 2)) +(recipe r284 (result (id item284))) +(recipe r284 (pattern 0 sx284)) +(recipe r284 (pattern 1 sy284)) +(recipe r284 (key (sx284 ing252))) +(recipe r284 (key (sy284 ing220))) +(recipe r284 (key (sx284 ing253))) +(recipe r284 (key (sy284 ing221))) +(recipe r284 (key (sx284 ing254))) +(recipe r284 (key (sy284 ing222))) +(recipe r284 (key (sx284 ing255))) +(recipe r284 (key (sy284 ing223))) +(recipe r284 (key (sx284 ing256))) +(recipe r284 (key (sy284 ing224))) +(recipe r284 (key (sx284 ing257))) +(recipe r284 (key (sy284 ing225))) +(recipe r284 (key (sx284 ing258))) +(recipe r284 (key (sy284 ing226))) +(recipe r284 (key (sx284 ing259))) +(recipe r284 (key (sy284 ing227))) +(recipe r284 (key (sx284 ing260))) +(recipe r284 (key (sy284 ing228))) +(recipe r284 (key (sx284 ing261))) +(recipe r284 (key (sy284 ing229))) +(recipe r284 (key (sx284 ing262))) +(recipe r284 (key (sy284 ing230))) +(recipe r284 (key (sx284 ing263))) +(recipe r284 (key (sy284 ing231))) +(recipe r285 (numIngredients 2)) +(recipe r285 (result (id item285))) +(recipe r285 (pattern 0 sx285)) +(recipe r285 (pattern 1 sy285)) +(recipe r285 (key (sx285 ing255))) +(recipe r285 (key (sy285 ing225))) +(recipe r285 (key (sx285 ing256))) +(recipe r285 (key (sy285 ing226))) +(recipe r285 (key (sx285 ing257))) +(recipe r285 (key (sy285 ing227))) +(recipe r285 (key (sx285 ing258))) +(recipe r285 (key (sy285 ing228))) +(recipe r285 (key (sx285 ing259))) +(recipe r285 (key (sy285 ing229))) +(recipe r285 (key (sx285 ing260))) +(recipe r285 (key (sy285 ing230))) +(recipe r285 (key (sx285 ing261))) +(recipe r285 (key (sy285 ing231))) +(recipe r285 (key (sx285 ing262))) +(recipe r285 (key (sy285 ing232))) +(recipe r285 (key (sx285 ing263))) +(recipe r285 (key (sy285 ing233))) +(recipe r285 (key (sx285 ing264))) +(recipe r285 (key (sy285 ing234))) +(recipe r285 (key (sx285 ing265))) +(recipe r285 (key (sy285 ing235))) +(recipe r285 (key (sx285 ing266))) +(recipe r285 (key (sy285 ing236))) +(recipe r286 (numIngredients 2)) +(recipe r286 (result (id item286))) +(recipe r286 (pattern 0 sx286)) +(recipe r286 (pattern 1 sy286)) +(recipe r286 (key (sx286 ing258))) +(recipe r286 (key (sy286 ing230))) +(recipe r286 (key (sx286 ing259))) +(recipe r286 (key (sy286 ing231))) +(recipe r286 (key (sx286 ing260))) +(recipe r286 (key (sy286 ing232))) +(recipe r286 (key (sx286 ing261))) +(recipe r286 (key (sy286 ing233))) +(recipe r286 (key (sx286 ing262))) +(recipe r286 (key (sy286 ing234))) +(recipe r286 (key (sx286 ing263))) +(recipe r286 (key (sy286 ing235))) +(recipe r286 (key (sx286 ing264))) +(recipe r286 (key (sy286 ing236))) +(recipe r286 (key (sx286 ing265))) +(recipe r286 (key (sy286 ing237))) +(recipe r286 (key (sx286 ing266))) +(recipe r286 (key (sy286 ing238))) +(recipe r286 (key (sx286 ing267))) +(recipe r286 (key (sy286 ing239))) +(recipe r286 (key (sx286 ing268))) +(recipe r286 (key (sy286 ing240))) +(recipe r286 (key (sx286 ing269))) +(recipe r286 (key (sy286 ing241))) +(recipe r287 (numIngredients 2)) +(recipe r287 (result (id item287))) +(recipe r287 (pattern 0 sx287)) +(recipe r287 (pattern 1 sy287)) +(recipe r287 (key (sx287 ing261))) +(recipe r287 (key (sy287 ing235))) +(recipe r287 (key (sx287 ing262))) +(recipe r287 (key (sy287 ing236))) +(recipe r287 (key (sx287 ing263))) +(recipe r287 (key (sy287 ing237))) +(recipe r287 (key (sx287 ing264))) +(recipe r287 (key (sy287 ing238))) +(recipe r287 (key (sx287 ing265))) +(recipe r287 (key (sy287 ing239))) +(recipe r287 (key (sx287 ing266))) +(recipe r287 (key (sy287 ing240))) +(recipe r287 (key (sx287 ing267))) +(recipe r287 (key (sy287 ing241))) +(recipe r287 (key (sx287 ing268))) +(recipe r287 (key (sy287 ing242))) +(recipe r287 (key (sx287 ing269))) +(recipe r287 (key (sy287 ing243))) +(recipe r287 (key (sx287 ing270))) +(recipe r287 (key (sy287 ing244))) +(recipe r287 (key (sx287 ing271))) +(recipe r287 (key (sy287 ing245))) +(recipe r287 (key (sx287 ing272))) +(recipe r287 (key (sy287 ing246))) +(recipe r288 (numIngredients 2)) +(recipe r288 (result (id item288))) +(recipe r288 (pattern 0 sx288)) +(recipe r288 (pattern 1 sy288)) +(recipe r288 (key (sx288 ing264))) +(recipe r288 (key (sy288 ing240))) +(recipe r288 (key (sx288 ing265))) +(recipe r288 (key (sy288 ing241))) +(recipe r288 (key (sx288 ing266))) +(recipe r288 (key (sy288 ing242))) +(recipe r288 (key (sx288 ing267))) +(recipe r288 (key (sy288 ing243))) +(recipe r288 (key (sx288 ing268))) +(recipe r288 (key (sy288 ing244))) +(recipe r288 (key (sx288 ing269))) +(recipe r288 (key (sy288 ing245))) +(recipe r288 (key (sx288 ing270))) +(recipe r288 (key (sy288 ing246))) +(recipe r288 (key (sx288 ing271))) +(recipe r288 (key (sy288 ing247))) +(recipe r288 (key (sx288 ing272))) +(recipe r288 (key (sy288 ing248))) +(recipe r288 (key (sx288 ing273))) +(recipe r288 (key (sy288 ing249))) +(recipe r288 (key (sx288 ing274))) +(recipe r288 (key (sy288 ing250))) +(recipe r288 (key (sx288 ing275))) +(recipe r288 (key (sy288 ing251))) +(recipe r289 (numIngredients 2)) +(recipe r289 (result (id item289))) +(recipe r289 (pattern 0 sx289)) +(recipe r289 (pattern 1 sy289)) +(recipe r289 (key (sx289 ing267))) +(recipe r289 (key (sy289 ing245))) +(recipe r289 (key (sx289 ing268))) +(recipe r289 (key (sy289 ing246))) +(recipe r289 (key (sx289 ing269))) +(recipe r289 (key (sy289 ing247))) +(recipe r289 (key (sx289 ing270))) +(recipe r289 (key (sy289 ing248))) +(recipe r289 (key (sx289 ing271))) +(recipe r289 (key (sy289 ing249))) +(recipe r289 (key (sx289 ing272))) +(recipe r289 (key (sy289 ing250))) +(recipe r289 (key (sx289 ing273))) +(recipe r289 (key (sy289 ing251))) +(recipe r289 (key (sx289 ing274))) +(recipe r289 (key (sy289 ing252))) +(recipe r289 (key (sx289 ing275))) +(recipe r289 (key (sy289 ing253))) +(recipe r289 (key (sx289 ing276))) +(recipe r289 (key (sy289 ing254))) +(recipe r289 (key (sx289 ing277))) +(recipe r289 (key (sy289 ing255))) +(recipe r289 (key (sx289 ing278))) +(recipe r289 (key (sy289 ing256))) +(recipe r290 (numIngredients 2)) +(recipe r290 (result (id item290))) +(recipe r290 (pattern 0 sx290)) +(recipe r290 (pattern 1 sy290)) +(recipe r290 (key (sx290 ing270))) +(recipe r290 (key (sy290 ing250))) +(recipe r290 (key (sx290 ing271))) +(recipe r290 (key (sy290 ing251))) +(recipe r290 (key (sx290 ing272))) +(recipe r290 (key (sy290 ing252))) +(recipe r290 (key (sx290 ing273))) +(recipe r290 (key (sy290 ing253))) +(recipe r290 (key (sx290 ing274))) +(recipe r290 (key (sy290 ing254))) +(recipe r290 (key (sx290 ing275))) +(recipe r290 (key (sy290 ing255))) +(recipe r290 (key (sx290 ing276))) +(recipe r290 (key (sy290 ing256))) +(recipe r290 (key (sx290 ing277))) +(recipe r290 (key (sy290 ing257))) +(recipe r290 (key (sx290 ing278))) +(recipe r290 (key (sy290 ing258))) +(recipe r290 (key (sx290 ing279))) +(recipe r290 (key (sy290 ing259))) +(recipe r290 (key (sx290 ing280))) +(recipe r290 (key (sy290 ing260))) +(recipe r290 (key (sx290 ing281))) +(recipe r290 (key (sy290 ing261))) +(recipe r291 (numIngredients 2)) +(recipe r291 (result (id item291))) +(recipe r291 (pattern 0 sx291)) +(recipe r291 (pattern 1 sy291)) +(recipe r291 (key (sx291 ing273))) +(recipe r291 (key (sy291 ing255))) +(recipe r291 (key (sx291 ing274))) +(recipe r291 (key (sy291 ing256))) +(recipe r291 (key (sx291 ing275))) +(recipe r291 (key (sy291 ing257))) +(recipe r291 (key (sx291 ing276))) +(recipe r291 (key (sy291 ing258))) +(recipe r291 (key (sx291 ing277))) +(recipe r291 (key (sy291 ing259))) +(recipe r291 (key (sx291 ing278))) +(recipe r291 (key (sy291 ing260))) +(recipe r291 (key (sx291 ing279))) +(recipe r291 (key (sy291 ing261))) +(recipe r291 (key (sx291 ing280))) +(recipe r291 (key (sy291 ing262))) +(recipe r291 (key (sx291 ing281))) +(recipe r291 (key (sy291 ing263))) +(recipe r291 (key (sx291 ing282))) +(recipe r291 (key (sy291 ing264))) +(recipe r291 (key (sx291 ing283))) +(recipe r291 (key (sy291 ing265))) +(recipe r291 (key (sx291 ing284))) +(recipe r291 (key (sy291 ing266))) +(recipe r292 (numIngredients 2)) +(recipe r292 (result (id item292))) +(recipe r292 (pattern 0 sx292)) +(recipe r292 (pattern 1 sy292)) +(recipe r292 (key (sx292 ing276))) +(recipe r292 (key (sy292 ing260))) +(recipe r292 (key (sx292 ing277))) +(recipe r292 (key (sy292 ing261))) +(recipe r292 (key (sx292 ing278))) +(recipe r292 (key (sy292 ing262))) +(recipe r292 (key (sx292 ing279))) +(recipe r292 (key (sy292 ing263))) +(recipe r292 (key (sx292 ing280))) +(recipe r292 (key (sy292 ing264))) +(recipe r292 (key (sx292 ing281))) +(recipe r292 (key (sy292 ing265))) +(recipe r292 (key (sx292 ing282))) +(recipe r292 (key (sy292 ing266))) +(recipe r292 (key (sx292 ing283))) +(recipe r292 (key (sy292 ing267))) +(recipe r292 (key (sx292 ing284))) +(recipe r292 (key (sy292 ing268))) +(recipe r292 (key (sx292 ing285))) +(recipe r292 (key (sy292 ing269))) +(recipe r292 (key (sx292 ing286))) +(recipe r292 (key (sy292 ing270))) +(recipe r292 (key (sx292 ing287))) +(recipe r292 (key (sy292 ing271))) +(recipe r293 (numIngredients 2)) +(recipe r293 (result (id item293))) +(recipe r293 (pattern 0 sx293)) +(recipe r293 (pattern 1 sy293)) +(recipe r293 (key (sx293 ing279))) +(recipe r293 (key (sy293 ing265))) +(recipe r293 (key (sx293 ing280))) +(recipe r293 (key (sy293 ing266))) +(recipe r293 (key (sx293 ing281))) +(recipe r293 (key (sy293 ing267))) +(recipe r293 (key (sx293 ing282))) +(recipe r293 (key (sy293 ing268))) +(recipe r293 (key (sx293 ing283))) +(recipe r293 (key (sy293 ing269))) +(recipe r293 (key (sx293 ing284))) +(recipe r293 (key (sy293 ing270))) +(recipe r293 (key (sx293 ing285))) +(recipe r293 (key (sy293 ing271))) +(recipe r293 (key (sx293 ing286))) +(recipe r293 (key (sy293 ing272))) +(recipe r293 (key (sx293 ing287))) +(recipe r293 (key (sy293 ing273))) +(recipe r293 (key (sx293 ing288))) +(recipe r293 (key (sy293 ing274))) +(recipe r293 (key (sx293 ing289))) +(recipe r293 (key (sy293 ing275))) +(recipe r293 (key (sx293 ing290))) +(recipe r293 (key (sy293 ing276))) +(recipe r294 (numIngredients 2)) +(recipe r294 (result (id item294))) +(recipe r294 (pattern 0 sx294)) +(recipe r294 (pattern 1 sy294)) +(recipe r294 (key (sx294 ing282))) +(recipe r294 (key (sy294 ing270))) +(recipe r294 (key (sx294 ing283))) +(recipe r294 (key (sy294 ing271))) +(recipe r294 (key (sx294 ing284))) +(recipe r294 (key (sy294 ing272))) +(recipe r294 (key (sx294 ing285))) +(recipe r294 (key (sy294 ing273))) +(recipe r294 (key (sx294 ing286))) +(recipe r294 (key (sy294 ing274))) +(recipe r294 (key (sx294 ing287))) +(recipe r294 (key (sy294 ing275))) +(recipe r294 (key (sx294 ing288))) +(recipe r294 (key (sy294 ing276))) +(recipe r294 (key (sx294 ing289))) +(recipe r294 (key (sy294 ing277))) +(recipe r294 (key (sx294 ing290))) +(recipe r294 (key (sy294 ing278))) +(recipe r294 (key (sx294 ing291))) +(recipe r294 (key (sy294 ing279))) +(recipe r294 (key (sx294 ing292))) +(recipe r294 (key (sy294 ing280))) +(recipe r294 (key (sx294 ing293))) +(recipe r294 (key (sy294 ing281))) +(recipe r295 (numIngredients 2)) +(recipe r295 (result (id item295))) +(recipe r295 (pattern 0 sx295)) +(recipe r295 (pattern 1 sy295)) +(recipe r295 (key (sx295 ing285))) +(recipe r295 (key (sy295 ing275))) +(recipe r295 (key (sx295 ing286))) +(recipe r295 (key (sy295 ing276))) +(recipe r295 (key (sx295 ing287))) +(recipe r295 (key (sy295 ing277))) +(recipe r295 (key (sx295 ing288))) +(recipe r295 (key (sy295 ing278))) +(recipe r295 (key (sx295 ing289))) +(recipe r295 (key (sy295 ing279))) +(recipe r295 (key (sx295 ing290))) +(recipe r295 (key (sy295 ing280))) +(recipe r295 (key (sx295 ing291))) +(recipe r295 (key (sy295 ing281))) +(recipe r295 (key (sx295 ing292))) +(recipe r295 (key (sy295 ing282))) +(recipe r295 (key (sx295 ing293))) +(recipe r295 (key (sy295 ing283))) +(recipe r295 (key (sx295 ing294))) +(recipe r295 (key (sy295 ing284))) +(recipe r295 (key (sx295 ing295))) +(recipe r295 (key (sy295 ing285))) +(recipe r295 (key (sx295 ing296))) +(recipe r295 (key (sy295 ing286))) +(recipe r296 (numIngredients 2)) +(recipe r296 (result (id item296))) +(recipe r296 (pattern 0 sx296)) +(recipe r296 (pattern 1 sy296)) +(recipe r296 (key (sx296 ing288))) +(recipe r296 (key (sy296 ing280))) +(recipe r296 (key (sx296 ing289))) +(recipe r296 (key (sy296 ing281))) +(recipe r296 (key (sx296 ing290))) +(recipe r296 (key (sy296 ing282))) +(recipe r296 (key (sx296 ing291))) +(recipe r296 (key (sy296 ing283))) +(recipe r296 (key (sx296 ing292))) +(recipe r296 (key (sy296 ing284))) +(recipe r296 (key (sx296 ing293))) +(recipe r296 (key (sy296 ing285))) +(recipe r296 (key (sx296 ing294))) +(recipe r296 (key (sy296 ing286))) +(recipe r296 (key (sx296 ing295))) +(recipe r296 (key (sy296 ing287))) +(recipe r296 (key (sx296 ing296))) +(recipe r296 (key (sy296 ing288))) +(recipe r296 (key (sx296 ing297))) +(recipe r296 (key (sy296 ing289))) +(recipe r296 (key (sx296 ing298))) +(recipe r296 (key (sy296 ing290))) +(recipe r296 (key (sx296 ing299))) +(recipe r296 (key (sy296 ing291))) +(recipe r297 (numIngredients 2)) +(recipe r297 (result (id item297))) +(recipe r297 (pattern 0 sx297)) +(recipe r297 (pattern 1 sy297)) +(recipe r297 (key (sx297 ing291))) +(recipe r297 (key (sy297 ing285))) +(recipe r297 (key (sx297 ing292))) +(recipe r297 (key (sy297 ing286))) +(recipe r297 (key (sx297 ing293))) +(recipe r297 (key (sy297 ing287))) +(recipe r297 (key (sx297 ing294))) +(recipe r297 (key (sy297 ing288))) +(recipe r297 (key (sx297 ing295))) +(recipe r297 (key (sy297 ing289))) +(recipe r297 (key (sx297 ing296))) +(recipe r297 (key (sy297 ing290))) +(recipe r297 (key (sx297 ing297))) +(recipe r297 (key (sy297 ing291))) +(recipe r297 (key (sx297 ing298))) +(recipe r297 (key (sy297 ing292))) +(recipe r297 (key (sx297 ing299))) +(recipe r297 (key (sy297 ing293))) +(recipe r297 (key (sx297 ing300))) +(recipe r297 (key (sy297 ing294))) +(recipe r297 (key (sx297 ing301))) +(recipe r297 (key (sy297 ing295))) +(recipe r297 (key (sx297 ing302))) +(recipe r297 (key (sy297 ing296))) +(recipe r298 (numIngredients 2)) +(recipe r298 (result (id item298))) +(recipe r298 (pattern 0 sx298)) +(recipe r298 (pattern 1 sy298)) +(recipe r298 (key (sx298 ing294))) +(recipe r298 (key (sy298 ing290))) +(recipe r298 (key (sx298 ing295))) +(recipe r298 (key (sy298 ing291))) +(recipe r298 (key (sx298 ing296))) +(recipe r298 (key (sy298 ing292))) +(recipe r298 (key (sx298 ing297))) +(recipe r298 (key (sy298 ing293))) +(recipe r298 (key (sx298 ing298))) +(recipe r298 (key (sy298 ing294))) +(recipe r298 (key (sx298 ing299))) +(recipe r298 (key (sy298 ing295))) +(recipe r298 (key (sx298 ing300))) +(recipe r298 (key (sy298 ing296))) +(recipe r298 (key (sx298 ing301))) +(recipe r298 (key (sy298 ing297))) +(recipe r298 (key (sx298 ing302))) +(recipe r298 (key (sy298 ing298))) +(recipe r298 (key (sx298 ing303))) +(recipe r298 (key (sy298 ing299))) +(recipe r298 (key (sx298 ing304))) +(recipe r298 (key (sy298 ing300))) +(recipe r298 (key (sx298 ing305))) +(recipe r298 (key (sy298 ing301))) +(recipe r299 (numIngredients 2)) +(recipe r299 (result (id item299))) +(recipe r299 (pattern 0 sx299)) +(recipe r299 (pattern 1 sy299)) +(recipe r299 (key (sx299 ing297))) +(recipe r299 (key (sy299 ing295))) +(recipe r299 (key (sx299 ing298))) +(recipe r299 (key (sy299 ing296))) +(recipe r299 (key (sx299 ing299))) +(recipe r299 (key (sy299 ing297))) +(recipe r299 (key (sx299 ing300))) +(recipe r299 (key (sy299 ing298))) +(recipe r299 (key (sx299 ing301))) +(recipe r299 (key (sy299 ing299))) +(recipe r299 (key (sx299 ing302))) +(recipe r299 (key (sy299 ing300))) +(recipe r299 (key (sx299 ing303))) +(recipe r299 (key (sy299 ing301))) +(recipe r299 (key (sx299 ing304))) +(recipe r299 (key (sy299 ing302))) +(recipe r299 (key (sx299 ing305))) +(recipe r299 (key (sy299 ing303))) +(recipe r299 (key (sx299 ing306))) +(recipe r299 (key (sy299 ing304))) +(recipe r299 (key (sx299 ing307))) +(recipe r299 (key (sy299 ing305))) +(recipe r299 (key (sx299 ing308))) +(recipe r299 (key (sy299 ing306))) +(recipe r300 (numIngredients 2)) +(recipe r300 (result (id item300))) +(recipe r300 (pattern 0 sx300)) +(recipe r300 (pattern 1 sy300)) +(recipe r300 (key (sx300 ing300))) +(recipe r300 (key (sy300 ing300))) +(recipe r300 (key (sx300 ing301))) +(recipe r300 (key (sy300 ing301))) +(recipe r300 (key (sx300 ing302))) +(recipe r300 (key (sy300 ing302))) +(recipe r300 (key (sx300 ing303))) +(recipe r300 (key (sy300 ing303))) +(recipe r300 (key (sx300 ing304))) +(recipe r300 (key (sy300 ing304))) +(recipe r300 (key (sx300 ing305))) +(recipe r300 (key (sy300 ing305))) +(recipe r300 (key (sx300 ing306))) +(recipe r300 (key (sy300 ing306))) +(recipe r300 (key (sx300 ing307))) +(recipe r300 (key (sy300 ing307))) +(recipe r300 (key (sx300 ing308))) +(recipe r300 (key (sy300 ing308))) +(recipe r300 (key (sx300 ing309))) +(recipe r300 (key (sy300 ing309))) +(recipe r300 (key (sx300 ing310))) +(recipe r300 (key (sy300 ing310))) +(recipe r300 (key (sx300 ing311))) +(recipe r300 (key (sy300 ing311))) +(recipe r301 (numIngredients 2)) +(recipe r301 (result (id item301))) +(recipe r301 (pattern 0 sx301)) +(recipe r301 (pattern 1 sy301)) +(recipe r301 (key (sx301 ing303))) +(recipe r301 (key (sy301 ing305))) +(recipe r301 (key (sx301 ing304))) +(recipe r301 (key (sy301 ing306))) +(recipe r301 (key (sx301 ing305))) +(recipe r301 (key (sy301 ing307))) +(recipe r301 (key (sx301 ing306))) +(recipe r301 (key (sy301 ing308))) +(recipe r301 (key (sx301 ing307))) +(recipe r301 (key (sy301 ing309))) +(recipe r301 (key (sx301 ing308))) +(recipe r301 (key (sy301 ing310))) +(recipe r301 (key (sx301 ing309))) +(recipe r301 (key (sy301 ing311))) +(recipe r301 (key (sx301 ing310))) +(recipe r301 (key (sy301 ing312))) +(recipe r301 (key (sx301 ing311))) +(recipe r301 (key (sy301 ing313))) +(recipe r301 (key (sx301 ing312))) +(recipe r301 (key (sy301 ing314))) +(recipe r301 (key (sx301 ing313))) +(recipe r301 (key (sy301 ing315))) +(recipe r301 (key (sx301 ing314))) +(recipe r301 (key (sy301 ing316))) +(recipe r302 (numIngredients 2)) +(recipe r302 (result (id item302))) +(recipe r302 (pattern 0 sx302)) +(recipe r302 (pattern 1 sy302)) +(recipe r302 (key (sx302 ing306))) +(recipe r302 (key (sy302 ing310))) +(recipe r302 (key (sx302 ing307))) +(recipe r302 (key (sy302 ing311))) +(recipe r302 (key (sx302 ing308))) +(recipe r302 (key (sy302 ing312))) +(recipe r302 (key (sx302 ing309))) +(recipe r302 (key (sy302 ing313))) +(recipe r302 (key (sx302 ing310))) +(recipe r302 (key (sy302 ing314))) +(recipe r302 (key (sx302 ing311))) +(recipe r302 (key (sy302 ing315))) +(recipe r302 (key (sx302 ing312))) +(recipe r302 (key (sy302 ing316))) +(recipe r302 (key (sx302 ing313))) +(recipe r302 (key (sy302 ing317))) +(recipe r302 (key (sx302 ing314))) +(recipe r302 (key (sy302 ing318))) +(recipe r302 (key (sx302 ing315))) +(recipe r302 (key (sy302 ing319))) +(recipe r302 (key (sx302 ing316))) +(recipe r302 (key (sy302 ing320))) +(recipe r302 (key (sx302 ing317))) +(recipe r302 (key (sy302 ing321))) +(recipe r303 (numIngredients 2)) +(recipe r303 (result (id item303))) +(recipe r303 (pattern 0 sx303)) +(recipe r303 (pattern 1 sy303)) +(recipe r303 (key (sx303 ing309))) +(recipe r303 (key (sy303 ing315))) +(recipe r303 (key (sx303 ing310))) +(recipe r303 (key (sy303 ing316))) +(recipe r303 (key (sx303 ing311))) +(recipe r303 (key (sy303 ing317))) +(recipe r303 (key (sx303 ing312))) +(recipe r303 (key (sy303 ing318))) +(recipe r303 (key (sx303 ing313))) +(recipe r303 (key (sy303 ing319))) +(recipe r303 (key (sx303 ing314))) +(recipe r303 (key (sy303 ing320))) +(recipe r303 (key (sx303 ing315))) +(recipe r303 (key (sy303 ing321))) +(recipe r303 (key (sx303 ing316))) +(recipe r303 (key (sy303 ing322))) +(recipe r303 (key (sx303 ing317))) +(recipe r303 (key (sy303 ing323))) +(recipe r303 (key (sx303 ing318))) +(recipe r303 (key (sy303 ing324))) +(recipe r303 (key (sx303 ing319))) +(recipe r303 (key (sy303 ing325))) +(recipe r303 (key (sx303 ing320))) +(recipe r303 (key (sy303 ing326))) +(recipe r304 (numIngredients 2)) +(recipe r304 (result (id item304))) +(recipe r304 (pattern 0 sx304)) +(recipe r304 (pattern 1 sy304)) +(recipe r304 (key (sx304 ing312))) +(recipe r304 (key (sy304 ing320))) +(recipe r304 (key (sx304 ing313))) +(recipe r304 (key (sy304 ing321))) +(recipe r304 (key (sx304 ing314))) +(recipe r304 (key (sy304 ing322))) +(recipe r304 (key (sx304 ing315))) +(recipe r304 (key (sy304 ing323))) +(recipe r304 (key (sx304 ing316))) +(recipe r304 (key (sy304 ing324))) +(recipe r304 (key (sx304 ing317))) +(recipe r304 (key (sy304 ing325))) +(recipe r304 (key (sx304 ing318))) +(recipe r304 (key (sy304 ing326))) +(recipe r304 (key (sx304 ing319))) +(recipe r304 (key (sy304 ing327))) +(recipe r304 (key (sx304 ing320))) +(recipe r304 (key (sy304 ing328))) +(recipe r304 (key (sx304 ing321))) +(recipe r304 (key (sy304 ing329))) +(recipe r304 (key (sx304 ing322))) +(recipe r304 (key (sy304 ing330))) +(recipe r304 (key (sx304 ing323))) +(recipe r304 (key (sy304 ing331))) +(recipe r305 (numIngredients 2)) +(recipe r305 (result (id item305))) +(recipe r305 (pattern 0 sx305)) +(recipe r305 (pattern 1 sy305)) +(recipe r305 (key (sx305 ing315))) +(recipe r305 (key (sy305 ing325))) +(recipe r305 (key (sx305 ing316))) +(recipe r305 (key (sy305 ing326))) +(recipe r305 (key (sx305 ing317))) +(recipe r305 (key (sy305 ing327))) +(recipe r305 (key (sx305 ing318))) +(recipe r305 (key (sy305 ing328))) +(recipe r305 (key (sx305 ing319))) +(recipe r305 (key (sy305 ing329))) +(recipe r305 (key (sx305 ing320))) +(recipe r305 (key (sy305 ing330))) +(recipe r305 (key (sx305 ing321))) +(recipe r305 (key (sy305 ing331))) +(recipe r305 (key (sx305 ing322))) +(recipe r305 (key (sy305 ing332))) +(recipe r305 (key (sx305 ing323))) +(recipe r305 (key (sy305 ing333))) +(recipe r305 (key (sx305 ing324))) +(recipe r305 (key (sy305 ing334))) +(recipe r305 (key (sx305 ing325))) +(recipe r305 (key (sy305 ing335))) +(recipe r305 (key (sx305 ing326))) +(recipe r305 (key (sy305 ing336))) +(recipe r306 (numIngredients 2)) +(recipe r306 (result (id item306))) +(recipe r306 (pattern 0 sx306)) +(recipe r306 (pattern 1 sy306)) +(recipe r306 (key (sx306 ing318))) +(recipe r306 (key (sy306 ing330))) +(recipe r306 (key (sx306 ing319))) +(recipe r306 (key (sy306 ing331))) +(recipe r306 (key (sx306 ing320))) +(recipe r306 (key (sy306 ing332))) +(recipe r306 (key (sx306 ing321))) +(recipe r306 (key (sy306 ing333))) +(recipe r306 (key (sx306 ing322))) +(recipe r306 (key (sy306 ing334))) +(recipe r306 (key (sx306 ing323))) +(recipe r306 (key (sy306 ing335))) +(recipe r306 (key (sx306 ing324))) +(recipe r306 (key (sy306 ing336))) +(recipe r306 (key (sx306 ing325))) +(recipe r306 (key (sy306 ing337))) +(recipe r306 (key (sx306 ing326))) +(recipe r306 (key (sy306 ing338))) +(recipe r306 (key (sx306 ing327))) +(recipe r306 (key (sy306 ing339))) +(recipe r306 (key (sx306 ing328))) +(recipe r306 (key (sy306 ing340))) +(recipe r306 (key (sx306 ing329))) +(recipe r306 (key (sy306 ing341))) +(recipe r307 (numIngredients 2)) +(recipe r307 (result (id item307))) +(recipe r307 (pattern 0 sx307)) +(recipe r307 (pattern 1 sy307)) +(recipe r307 (key (sx307 ing321))) +(recipe r307 (key (sy307 ing335))) +(recipe r307 (key (sx307 ing322))) +(recipe r307 (key (sy307 ing336))) +(recipe r307 (key (sx307 ing323))) +(recipe r307 (key (sy307 ing337))) +(recipe r307 (key (sx307 ing324))) +(recipe r307 (key (sy307 ing338))) +(recipe r307 (key (sx307 ing325))) +(recipe r307 (key (sy307 ing339))) +(recipe r307 (key (sx307 ing326))) +(recipe r307 (key (sy307 ing340))) +(recipe r307 (key (sx307 ing327))) +(recipe r307 (key (sy307 ing341))) +(recipe r307 (key (sx307 ing328))) +(recipe r307 (key (sy307 ing342))) +(recipe r307 (key (sx307 ing329))) +(recipe r307 (key (sy307 ing343))) +(recipe r307 (key (sx307 ing330))) +(recipe r307 (key (sy307 ing344))) +(recipe r307 (key (sx307 ing331))) +(recipe r307 (key (sy307 ing345))) +(recipe r307 (key (sx307 ing332))) +(recipe r307 (key (sy307 ing346))) +(recipe r308 (numIngredients 2)) +(recipe r308 (result (id item308))) +(recipe r308 (pattern 0 sx308)) +(recipe r308 (pattern 1 sy308)) +(recipe r308 (key (sx308 ing324))) +(recipe r308 (key (sy308 ing340))) +(recipe r308 (key (sx308 ing325))) +(recipe r308 (key (sy308 ing341))) +(recipe r308 (key (sx308 ing326))) +(recipe r308 (key (sy308 ing342))) +(recipe r308 (key (sx308 ing327))) +(recipe r308 (key (sy308 ing343))) +(recipe r308 (key (sx308 ing328))) +(recipe r308 (key (sy308 ing344))) +(recipe r308 (key (sx308 ing329))) +(recipe r308 (key (sy308 ing345))) +(recipe r308 (key (sx308 ing330))) +(recipe r308 (key (sy308 ing346))) +(recipe r308 (key (sx308 ing331))) +(recipe r308 (key (sy308 ing347))) +(recipe r308 (key (sx308 ing332))) +(recipe r308 (key (sy308 ing348))) +(recipe r308 (key (sx308 ing333))) +(recipe r308 (key (sy308 ing349))) +(recipe r308 (key (sx308 ing334))) +(recipe r308 (key (sy308 ing350))) +(recipe r308 (key (sx308 ing335))) +(recipe r308 (key (sy308 ing351))) +(recipe r309 (numIngredients 2)) +(recipe r309 (result (id item309))) +(recipe r309 (pattern 0 sx309)) +(recipe r309 (pattern 1 sy309)) +(recipe r309 (key (sx309 ing327))) +(recipe r309 (key (sy309 ing345))) +(recipe r309 (key (sx309 ing328))) +(recipe r309 (key (sy309 ing346))) +(recipe r309 (key (sx309 ing329))) +(recipe r309 (key (sy309 ing347))) +(recipe r309 (key (sx309 ing330))) +(recipe r309 (key (sy309 ing348))) +(recipe r309 (key (sx309 ing331))) +(recipe r309 (key (sy309 ing349))) +(recipe r309 (key (sx309 ing332))) +(recipe r309 (key (sy309 ing350))) +(recipe r309 (key (sx309 ing333))) +(recipe r309 (key (sy309 ing351))) +(recipe r309 (key (sx309 ing334))) +(recipe r309 (key (sy309 ing352))) +(recipe r309 (key (sx309 ing335))) +(recipe r309 (key (sy309 ing353))) +(recipe r309 (key (sx309 ing336))) +(recipe r309 (key (sy309 ing354))) +(recipe r309 (key (sx309 ing337))) +(recipe r309 (key (sy309 ing355))) +(recipe r309 (key (sx309 ing338))) +(recipe r309 (key (sy309 ing356))) +(recipe r310 (numIngredients 2)) +(recipe r310 (result (id item310))) +(recipe r310 (pattern 0 sx310)) +(recipe r310 (pattern 1 sy310)) +(recipe r310 (key (sx310 ing330))) +(recipe r310 (key (sy310 ing350))) +(recipe r310 (key (sx310 ing331))) +(recipe r310 (key (sy310 ing351))) +(recipe r310 (key (sx310 ing332))) +(recipe r310 (key (sy310 ing352))) +(recipe r310 (key (sx310 ing333))) +(recipe r310 (key (sy310 ing353))) +(recipe r310 (key (sx310 ing334))) +(recipe r310 (key (sy310 ing354))) +(recipe r310 (key (sx310 ing335))) +(recipe r310 (key (sy310 ing355))) +(recipe r310 (key (sx310 ing336))) +(recipe r310 (key (sy310 ing356))) +(recipe r310 (key (sx310 ing337))) +(recipe r310 (key (sy310 ing357))) +(recipe r310 (key (sx310 ing338))) +(recipe r310 (key (sy310 ing358))) +(recipe r310 (key (sx310 ing339))) +(recipe r310 (key (sy310 ing359))) +(recipe r310 (key (sx310 ing340))) +(recipe r310 (key (sy310 ing360))) +(recipe r310 (key (sx310 ing341))) +(recipe r310 (key (sy310 ing361))) +(recipe r311 (numIngredients 2)) +(recipe r311 (result (id item311))) +(recipe r311 (pattern 0 sx311)) +(recipe r311 (pattern 1 sy311)) +(recipe r311 (key (sx311 ing333))) +(recipe r311 (key (sy311 ing355))) +(recipe r311 (key (sx311 ing334))) +(recipe r311 (key (sy311 ing356))) +(recipe r311 (key (sx311 ing335))) +(recipe r311 (key (sy311 ing357))) +(recipe r311 (key (sx311 ing336))) +(recipe r311 (key (sy311 ing358))) +(recipe r311 (key (sx311 ing337))) +(recipe r311 (key (sy311 ing359))) +(recipe r311 (key (sx311 ing338))) +(recipe r311 (key (sy311 ing360))) +(recipe r311 (key (sx311 ing339))) +(recipe r311 (key (sy311 ing361))) +(recipe r311 (key (sx311 ing340))) +(recipe r311 (key (sy311 ing362))) +(recipe r311 (key (sx311 ing341))) +(recipe r311 (key (sy311 ing363))) +(recipe r311 (key (sx311 ing342))) +(recipe r311 (key (sy311 ing364))) +(recipe r311 (key (sx311 ing343))) +(recipe r311 (key (sy311 ing365))) +(recipe r311 (key (sx311 ing344))) +(recipe r311 (key (sy311 ing366))) +(recipe r312 (numIngredients 2)) +(recipe r312 (result (id item312))) +(recipe r312 (pattern 0 sx312)) +(recipe r312 (pattern 1 sy312)) +(recipe r312 (key (sx312 ing336))) +(recipe r312 (key (sy312 ing360))) +(recipe r312 (key (sx312 ing337))) +(recipe r312 (key (sy312 ing361))) +(recipe r312 (key (sx312 ing338))) +(recipe r312 (key (sy312 ing362))) +(recipe r312 (key (sx312 ing339))) +(recipe r312 (key (sy312 ing363))) +(recipe r312 (key (sx312 ing340))) +(recipe r312 (key (sy312 ing364))) +(recipe r312 (key (sx312 ing341))) +(recipe r312 (key (sy312 ing365))) +(recipe r312 (key (sx312 ing342))) +(recipe r312 (key (sy312 ing366))) +(recipe r312 (key (sx312 ing343))) +(recipe r312 (key (sy312 ing367))) +(recipe r312 (key (sx312 ing344))) +(recipe r312 (key (sy312 ing368))) +(recipe r312 (key (sx312 ing345))) +(recipe r312 (key (sy312 ing369))) +(recipe r312 (key (sx312 ing346))) +(recipe r312 (key (sy312 ing370))) +(recipe r312 (key (sx312 ing347))) +(recipe r312 (key (sy312 ing371))) +(recipe r313 (numIngredients 2)) +(recipe r313 (result (id item313))) +(recipe r313 (pattern 0 sx313)) +(recipe r313 (pattern 1 sy313)) +(recipe r313 (key (sx313 ing339))) +(recipe r313 (key (sy313 ing365))) +(recipe r313 (key (sx313 ing340))) +(recipe r313 (key (sy313 ing366))) +(recipe r313 (key (sx313 ing341))) +(recipe r313 (key (sy313 ing367))) +(recipe r313 (key (sx313 ing342))) +(recipe r313 (key (sy313 ing368))) +(recipe r313 (key (sx313 ing343))) +(recipe r313 (key (sy313 ing369))) +(recipe r313 (key (sx313 ing344))) +(recipe r313 (key (sy313 ing370))) +(recipe r313 (key (sx313 ing345))) +(recipe r313 (key (sy313 ing371))) +(recipe r313 (key (sx313 ing346))) +(recipe r313 (key (sy313 ing372))) +(recipe r313 (key (sx313 ing347))) +(recipe r313 (key (sy313 ing373))) +(recipe r313 (key (sx313 ing348))) +(recipe r313 (key (sy313 ing374))) +(recipe r313 (key (sx313 ing349))) +(recipe r313 (key (sy313 ing375))) +(recipe r313 (key (sx313 ing350))) +(recipe r313 (key (sy313 ing376))) +(recipe r314 (numIngredients 2)) +(recipe r314 (result (id item314))) +(recipe r314 (pattern 0 sx314)) +(recipe r314 (pattern 1 sy314)) +(recipe r314 (key (sx314 ing342))) +(recipe r314 (key (sy314 ing370))) +(recipe r314 (key (sx314 ing343))) +(recipe r314 (key (sy314 ing371))) +(recipe r314 (key (sx314 ing344))) +(recipe r314 (key (sy314 ing372))) +(recipe r314 (key (sx314 ing345))) +(recipe r314 (key (sy314 ing373))) +(recipe r314 (key (sx314 ing346))) +(recipe r314 (key (sy314 ing374))) +(recipe r314 (key (sx314 ing347))) +(recipe r314 (key (sy314 ing375))) +(recipe r314 (key (sx314 ing348))) +(recipe r314 (key (sy314 ing376))) +(recipe r314 (key (sx314 ing349))) +(recipe r314 (key (sy314 ing377))) +(recipe r314 (key (sx314 ing350))) +(recipe r314 (key (sy314 ing378))) +(recipe r314 (key (sx314 ing351))) +(recipe r314 (key (sy314 ing379))) +(recipe r314 (key (sx314 ing352))) +(recipe r314 (key (sy314 ing380))) +(recipe r314 (key (sx314 ing353))) +(recipe r314 (key (sy314 ing381))) +(recipe r315 (numIngredients 2)) +(recipe r315 (result (id item315))) +(recipe r315 (pattern 0 sx315)) +(recipe r315 (pattern 1 sy315)) +(recipe r315 (key (sx315 ing345))) +(recipe r315 (key (sy315 ing375))) +(recipe r315 (key (sx315 ing346))) +(recipe r315 (key (sy315 ing376))) +(recipe r315 (key (sx315 ing347))) +(recipe r315 (key (sy315 ing377))) +(recipe r315 (key (sx315 ing348))) +(recipe r315 (key (sy315 ing378))) +(recipe r315 (key (sx315 ing349))) +(recipe r315 (key (sy315 ing379))) +(recipe r315 (key (sx315 ing350))) +(recipe r315 (key (sy315 ing380))) +(recipe r315 (key (sx315 ing351))) +(recipe r315 (key (sy315 ing381))) +(recipe r315 (key (sx315 ing352))) +(recipe r315 (key (sy315 ing382))) +(recipe r315 (key (sx315 ing353))) +(recipe r315 (key (sy315 ing383))) +(recipe r315 (key (sx315 ing354))) +(recipe r315 (key (sy315 ing384))) +(recipe r315 (key (sx315 ing355))) +(recipe r315 (key (sy315 ing385))) +(recipe r315 (key (sx315 ing356))) +(recipe r315 (key (sy315 ing386))) +(recipe r316 (numIngredients 2)) +(recipe r316 (result (id item316))) +(recipe r316 (pattern 0 sx316)) +(recipe r316 (pattern 1 sy316)) +(recipe r316 (key (sx316 ing348))) +(recipe r316 (key (sy316 ing380))) +(recipe r316 (key (sx316 ing349))) +(recipe r316 (key (sy316 ing381))) +(recipe r316 (key (sx316 ing350))) +(recipe r316 (key (sy316 ing382))) +(recipe r316 (key (sx316 ing351))) +(recipe r316 (key (sy316 ing383))) +(recipe r316 (key (sx316 ing352))) +(recipe r316 (key (sy316 ing384))) +(recipe r316 (key (sx316 ing353))) +(recipe r316 (key (sy316 ing385))) +(recipe r316 (key (sx316 ing354))) +(recipe r316 (key (sy316 ing386))) +(recipe r316 (key (sx316 ing355))) +(recipe r316 (key (sy316 ing387))) +(recipe r316 (key (sx316 ing356))) +(recipe r316 (key (sy316 ing388))) +(recipe r316 (key (sx316 ing357))) +(recipe r316 (key (sy316 ing389))) +(recipe r316 (key (sx316 ing358))) +(recipe r316 (key (sy316 ing390))) +(recipe r316 (key (sx316 ing359))) +(recipe r316 (key (sy316 ing391))) +(recipe r317 (numIngredients 2)) +(recipe r317 (result (id item317))) +(recipe r317 (pattern 0 sx317)) +(recipe r317 (pattern 1 sy317)) +(recipe r317 (key (sx317 ing351))) +(recipe r317 (key (sy317 ing385))) +(recipe r317 (key (sx317 ing352))) +(recipe r317 (key (sy317 ing386))) +(recipe r317 (key (sx317 ing353))) +(recipe r317 (key (sy317 ing387))) +(recipe r317 (key (sx317 ing354))) +(recipe r317 (key (sy317 ing388))) +(recipe r317 (key (sx317 ing355))) +(recipe r317 (key (sy317 ing389))) +(recipe r317 (key (sx317 ing356))) +(recipe r317 (key (sy317 ing390))) +(recipe r317 (key (sx317 ing357))) +(recipe r317 (key (sy317 ing391))) +(recipe r317 (key (sx317 ing358))) +(recipe r317 (key (sy317 ing392))) +(recipe r317 (key (sx317 ing359))) +(recipe r317 (key (sy317 ing393))) +(recipe r317 (key (sx317 ing360))) +(recipe r317 (key (sy317 ing394))) +(recipe r317 (key (sx317 ing361))) +(recipe r317 (key (sy317 ing395))) +(recipe r317 (key (sx317 ing362))) +(recipe r317 (key (sy317 ing396))) +(recipe r318 (numIngredients 2)) +(recipe r318 (result (id item318))) +(recipe r318 (pattern 0 sx318)) +(recipe r318 (pattern 1 sy318)) +(recipe r318 (key (sx318 ing354))) +(recipe r318 (key (sy318 ing390))) +(recipe r318 (key (sx318 ing355))) +(recipe r318 (key (sy318 ing391))) +(recipe r318 (key (sx318 ing356))) +(recipe r318 (key (sy318 ing392))) +(recipe r318 (key (sx318 ing357))) +(recipe r318 (key (sy318 ing393))) +(recipe r318 (key (sx318 ing358))) +(recipe r318 (key (sy318 ing394))) +(recipe r318 (key (sx318 ing359))) +(recipe r318 (key (sy318 ing395))) +(recipe r318 (key (sx318 ing360))) +(recipe r318 (key (sy318 ing396))) +(recipe r318 (key (sx318 ing361))) +(recipe r318 (key (sy318 ing397))) +(recipe r318 (key (sx318 ing362))) +(recipe r318 (key (sy318 ing398))) +(recipe r318 (key (sx318 ing363))) +(recipe r318 (key (sy318 ing399))) +(recipe r318 (key (sx318 ing364))) +(recipe r318 (key (sy318 ing400))) +(recipe r318 (key (sx318 ing365))) +(recipe r318 (key (sy318 ing401))) +(recipe r319 (numIngredients 2)) +(recipe r319 (result (id item319))) +(recipe r319 (pattern 0 sx319)) +(recipe r319 (pattern 1 sy319)) +(recipe r319 (key (sx319 ing357))) +(recipe r319 (key (sy319 ing395))) +(recipe r319 (key (sx319 ing358))) +(recipe r319 (key (sy319 ing396))) +(recipe r319 (key (sx319 ing359))) +(recipe r319 (key (sy319 ing397))) +(recipe r319 (key (sx319 ing360))) +(recipe r319 (key (sy319 ing398))) +(recipe r319 (key (sx319 ing361))) +(recipe r319 (key (sy319 ing399))) +(recipe r319 (key (sx319 ing362))) +(recipe r319 (key (sy319 ing400))) +(recipe r319 (key (sx319 ing363))) +(recipe r319 (key (sy319 ing401))) +(recipe r319 (key (sx319 ing364))) +(recipe r319 (key (sy319 ing402))) +(recipe r319 (key (sx319 ing365))) +(recipe r319 (key (sy319 ing403))) +(recipe r319 (key (sx319 ing366))) +(recipe r319 (key (sy319 ing404))) +(recipe r319 (key (sx319 ing367))) +(recipe r319 (key (sy319 ing405))) +(recipe r319 (key (sx319 ing368))) +(recipe r319 (key (sy319 ing406))) +(recipe r320 (numIngredients 2)) +(recipe r320 (result (id item320))) +(recipe r320 (pattern 0 sx320)) +(recipe r320 (pattern 1 sy320)) +(recipe r320 (key (sx320 ing360))) +(recipe r320 (key (sy320 ing400))) +(recipe r320 (key (sx320 ing361))) +(recipe r320 (key (sy320 ing401))) +(recipe r320 (key (sx320 ing362))) +(recipe r320 (key (sy320 ing402))) +(recipe r320 (key (sx320 ing363))) +(recipe r320 (key (sy320 ing403))) +(recipe r320 (key (sx320 ing364))) +(recipe r320 (key (sy320 ing404))) +(recipe r320 (key (sx320 ing365))) +(recipe r320 (key (sy320 ing405))) +(recipe r320 (key (sx320 ing366))) +(recipe r320 (key (sy320 ing406))) +(recipe r320 (key (sx320 ing367))) +(recipe r320 (key (sy320 ing407))) +(recipe r320 (key (sx320 ing368))) +(recipe r320 (key (sy320 ing408))) +(recipe r320 (key (sx320 ing369))) +(recipe r320 (key (sy320 ing409))) +(recipe r320 (key (sx320 ing370))) +(recipe r320 (key (sy320 ing410))) +(recipe r320 (key (sx320 ing371))) +(recipe r320 (key (sy320 ing411))) +(recipe r321 (numIngredients 2)) +(recipe r321 (result (id item321))) +(recipe r321 (pattern 0 sx321)) +(recipe r321 (pattern 1 sy321)) +(recipe r321 (key (sx321 ing363))) +(recipe r321 (key (sy321 ing405))) +(recipe r321 (key (sx321 ing364))) +(recipe r321 (key (sy321 ing406))) +(recipe r321 (key (sx321 ing365))) +(recipe r321 (key (sy321 ing407))) +(recipe r321 (key (sx321 ing366))) +(recipe r321 (key (sy321 ing408))) +(recipe r321 (key (sx321 ing367))) +(recipe r321 (key (sy321 ing409))) +(recipe r321 (key (sx321 ing368))) +(recipe r321 (key (sy321 ing410))) +(recipe r321 (key (sx321 ing369))) +(recipe r321 (key (sy321 ing411))) +(recipe r321 (key (sx321 ing370))) +(recipe r321 (key (sy321 ing412))) +(recipe r321 (key (sx321 ing371))) +(recipe r321 (key (sy321 ing413))) +(recipe r321 (key (sx321 ing372))) +(recipe r321 (key (sy321 ing414))) +(recipe r321 (key (sx321 ing373))) +(recipe r321 (key (sy321 ing415))) +(recipe r321 (key (sx321 ing374))) +(recipe r321 (key (sy321 ing416))) +(recipe r322 (numIngredients 2)) +(recipe r322 (result (id item322))) +(recipe r322 (pattern 0 sx322)) +(recipe r322 (pattern 1 sy322)) +(recipe r322 (key (sx322 ing366))) +(recipe r322 (key (sy322 ing410))) +(recipe r322 (key (sx322 ing367))) +(recipe r322 (key (sy322 ing411))) +(recipe r322 (key (sx322 ing368))) +(recipe r322 (key (sy322 ing412))) +(recipe r322 (key (sx322 ing369))) +(recipe r322 (key (sy322 ing413))) +(recipe r322 (key (sx322 ing370))) +(recipe r322 (key (sy322 ing414))) +(recipe r322 (key (sx322 ing371))) +(recipe r322 (key (sy322 ing415))) +(recipe r322 (key (sx322 ing372))) +(recipe r322 (key (sy322 ing416))) +(recipe r322 (key (sx322 ing373))) +(recipe r322 (key (sy322 ing417))) +(recipe r322 (key (sx322 ing374))) +(recipe r322 (key (sy322 ing418))) +(recipe r322 (key (sx322 ing375))) +(recipe r322 (key (sy322 ing419))) +(recipe r322 (key (sx322 ing376))) +(recipe r322 (key (sy322 ing420))) +(recipe r322 (key (sx322 ing377))) +(recipe r322 (key (sy322 ing421))) +(recipe r323 (numIngredients 2)) +(recipe r323 (result (id item323))) +(recipe r323 (pattern 0 sx323)) +(recipe r323 (pattern 1 sy323)) +(recipe r323 (key (sx323 ing369))) +(recipe r323 (key (sy323 ing415))) +(recipe r323 (key (sx323 ing370))) +(recipe r323 (key (sy323 ing416))) +(recipe r323 (key (sx323 ing371))) +(recipe r323 (key (sy323 ing417))) +(recipe r323 (key (sx323 ing372))) +(recipe r323 (key (sy323 ing418))) +(recipe r323 (key (sx323 ing373))) +(recipe r323 (key (sy323 ing419))) +(recipe r323 (key (sx323 ing374))) +(recipe r323 (key (sy323 ing420))) +(recipe r323 (key (sx323 ing375))) +(recipe r323 (key (sy323 ing421))) +(recipe r323 (key (sx323 ing376))) +(recipe r323 (key (sy323 ing422))) +(recipe r323 (key (sx323 ing377))) +(recipe r323 (key (sy323 ing423))) +(recipe r323 (key (sx323 ing378))) +(recipe r323 (key (sy323 ing424))) +(recipe r323 (key (sx323 ing379))) +(recipe r323 (key (sy323 ing425))) +(recipe r323 (key (sx323 ing380))) +(recipe r323 (key (sy323 ing426))) +(recipe r324 (numIngredients 2)) +(recipe r324 (result (id item324))) +(recipe r324 (pattern 0 sx324)) +(recipe r324 (pattern 1 sy324)) +(recipe r324 (key (sx324 ing372))) +(recipe r324 (key (sy324 ing420))) +(recipe r324 (key (sx324 ing373))) +(recipe r324 (key (sy324 ing421))) +(recipe r324 (key (sx324 ing374))) +(recipe r324 (key (sy324 ing422))) +(recipe r324 (key (sx324 ing375))) +(recipe r324 (key (sy324 ing423))) +(recipe r324 (key (sx324 ing376))) +(recipe r324 (key (sy324 ing424))) +(recipe r324 (key (sx324 ing377))) +(recipe r324 (key (sy324 ing425))) +(recipe r324 (key (sx324 ing378))) +(recipe r324 (key (sy324 ing426))) +(recipe r324 (key (sx324 ing379))) +(recipe r324 (key (sy324 ing427))) +(recipe r324 (key (sx324 ing380))) +(recipe r324 (key (sy324 ing428))) +(recipe r324 (key (sx324 ing381))) +(recipe r324 (key (sy324 ing429))) +(recipe r324 (key (sx324 ing382))) +(recipe r324 (key (sy324 ing430))) +(recipe r324 (key (sx324 ing383))) +(recipe r324 (key (sy324 ing431))) +(recipe r325 (numIngredients 2)) +(recipe r325 (result (id item325))) +(recipe r325 (pattern 0 sx325)) +(recipe r325 (pattern 1 sy325)) +(recipe r325 (key (sx325 ing375))) +(recipe r325 (key (sy325 ing425))) +(recipe r325 (key (sx325 ing376))) +(recipe r325 (key (sy325 ing426))) +(recipe r325 (key (sx325 ing377))) +(recipe r325 (key (sy325 ing427))) +(recipe r325 (key (sx325 ing378))) +(recipe r325 (key (sy325 ing428))) +(recipe r325 (key (sx325 ing379))) +(recipe r325 (key (sy325 ing429))) +(recipe r325 (key (sx325 ing380))) +(recipe r325 (key (sy325 ing430))) +(recipe r325 (key (sx325 ing381))) +(recipe r325 (key (sy325 ing431))) +(recipe r325 (key (sx325 ing382))) +(recipe r325 (key (sy325 ing432))) +(recipe r325 (key (sx325 ing383))) +(recipe r325 (key (sy325 ing433))) +(recipe r325 (key (sx325 ing384))) +(recipe r325 (key (sy325 ing434))) +(recipe r325 (key (sx325 ing385))) +(recipe r325 (key (sy325 ing435))) +(recipe r325 (key (sx325 ing386))) +(recipe r325 (key (sy325 ing436))) +(recipe r326 (numIngredients 2)) +(recipe r326 (result (id item326))) +(recipe r326 (pattern 0 sx326)) +(recipe r326 (pattern 1 sy326)) +(recipe r326 (key (sx326 ing378))) +(recipe r326 (key (sy326 ing430))) +(recipe r326 (key (sx326 ing379))) +(recipe r326 (key (sy326 ing431))) +(recipe r326 (key (sx326 ing380))) +(recipe r326 (key (sy326 ing432))) +(recipe r326 (key (sx326 ing381))) +(recipe r326 (key (sy326 ing433))) +(recipe r326 (key (sx326 ing382))) +(recipe r326 (key (sy326 ing434))) +(recipe r326 (key (sx326 ing383))) +(recipe r326 (key (sy326 ing435))) +(recipe r326 (key (sx326 ing384))) +(recipe r326 (key (sy326 ing436))) +(recipe r326 (key (sx326 ing385))) +(recipe r326 (key (sy326 ing437))) +(recipe r326 (key (sx326 ing386))) +(recipe r326 (key (sy326 ing438))) +(recipe r326 (key (sx326 ing387))) +(recipe r326 (key (sy326 ing439))) +(recipe r326 (key (sx326 ing388))) +(recipe r326 (key (sy326 ing440))) +(recipe r326 (key (sx326 ing389))) +(recipe r326 (key (sy326 ing441))) +(recipe r327 (numIngredients 2)) +(recipe r327 (result (id item327))) +(recipe r327 (pattern 0 sx327)) +(recipe r327 (pattern 1 sy327)) +(recipe r327 (key (sx327 ing381))) +(recipe r327 (key (sy327 ing435))) +(recipe r327 (key (sx327 ing382))) +(recipe r327 (key (sy327 ing436))) +(recipe r327 (key (sx327 ing383))) +(recipe r327 (key (sy327 ing437))) +(recipe r327 (key (sx327 ing384))) +(recipe r327 (key (sy327 ing438))) +(recipe r327 (key (sx327 ing385))) +(recipe r327 (key (sy327 ing439))) +(recipe r327 (key (sx327 ing386))) +(recipe r327 (key (sy327 ing440))) +(recipe r327 (key (sx327 ing387))) +(recipe r327 (key (sy327 ing441))) +(recipe r327 (key (sx327 ing388))) +(recipe r327 (key (sy327 ing442))) +(recipe r327 (key (sx327 ing389))) +(recipe r327 (key (sy327 ing443))) +(recipe r327 (key (sx327 ing390))) +(recipe r327 (key (sy327 ing444))) +(recipe r327 (key (sx327 ing391))) +(recipe r327 (key (sy327 ing445))) +(recipe r327 (key (sx327 ing392))) +(recipe r327 (key (sy327 ing446))) +(recipe r328 (numIngredients 2)) +(recipe r328 (result (id item328))) +(recipe r328 (pattern 0 sx328)) +(recipe r328 (pattern 1 sy328)) +(recipe r328 (key (sx328 ing384))) +(recipe r328 (key (sy328 ing440))) +(recipe r328 (key (sx328 ing385))) +(recipe r328 (key (sy328 ing441))) +(recipe r328 (key (sx328 ing386))) +(recipe r328 (key (sy328 ing442))) +(recipe r328 (key (sx328 ing387))) +(recipe r328 (key (sy328 ing443))) +(recipe r328 (key (sx328 ing388))) +(recipe r328 (key (sy328 ing444))) +(recipe r328 (key (sx328 ing389))) +(recipe r328 (key (sy328 ing445))) +(recipe r328 (key (sx328 ing390))) +(recipe r328 (key (sy328 ing446))) +(recipe r328 (key (sx328 ing391))) +(recipe r328 (key (sy328 ing447))) +(recipe r328 (key (sx328 ing392))) +(recipe r328 (key (sy328 ing448))) +(recipe r328 (key (sx328 ing393))) +(recipe r328 (key (sy328 ing449))) +(recipe r328 (key (sx328 ing394))) +(recipe r328 (key (sy328 ing450))) +(recipe r328 (key (sx328 ing395))) +(recipe r328 (key (sy328 ing451))) +(recipe r329 (numIngredients 2)) +(recipe r329 (result (id item329))) +(recipe r329 (pattern 0 sx329)) +(recipe r329 (pattern 1 sy329)) +(recipe r329 (key (sx329 ing387))) +(recipe r329 (key (sy329 ing445))) +(recipe r329 (key (sx329 ing388))) +(recipe r329 (key (sy329 ing446))) +(recipe r329 (key (sx329 ing389))) +(recipe r329 (key (sy329 ing447))) +(recipe r329 (key (sx329 ing390))) +(recipe r329 (key (sy329 ing448))) +(recipe r329 (key (sx329 ing391))) +(recipe r329 (key (sy329 ing449))) +(recipe r329 (key (sx329 ing392))) +(recipe r329 (key (sy329 ing450))) +(recipe r329 (key (sx329 ing393))) +(recipe r329 (key (sy329 ing451))) +(recipe r329 (key (sx329 ing394))) +(recipe r329 (key (sy329 ing452))) +(recipe r329 (key (sx329 ing395))) +(recipe r329 (key (sy329 ing453))) +(recipe r329 (key (sx329 ing396))) +(recipe r329 (key (sy329 ing454))) +(recipe r329 (key (sx329 ing397))) +(recipe r329 (key (sy329 ing455))) +(recipe r329 (key (sx329 ing398))) +(recipe r329 (key (sy329 ing456))) +(recipe r330 (numIngredients 2)) +(recipe r330 (result (id item330))) +(recipe r330 (pattern 0 sx330)) +(recipe r330 (pattern 1 sy330)) +(recipe r330 (key (sx330 ing390))) +(recipe r330 (key (sy330 ing450))) +(recipe r330 (key (sx330 ing391))) +(recipe r330 (key (sy330 ing451))) +(recipe r330 (key (sx330 ing392))) +(recipe r330 (key (sy330 ing452))) +(recipe r330 (key (sx330 ing393))) +(recipe r330 (key (sy330 ing453))) +(recipe r330 (key (sx330 ing394))) +(recipe r330 (key (sy330 ing454))) +(recipe r330 (key (sx330 ing395))) +(recipe r330 (key (sy330 ing455))) +(recipe r330 (key (sx330 ing396))) +(recipe r330 (key (sy330 ing456))) +(recipe r330 (key (sx330 ing397))) +(recipe r330 (key (sy330 ing457))) +(recipe r330 (key (sx330 ing398))) +(recipe r330 (key (sy330 ing458))) +(recipe r330 (key (sx330 ing399))) +(recipe r330 (key (sy330 ing459))) +(recipe r330 (key (sx330 ing400))) +(recipe r330 (key (sy330 ing460))) +(recipe r330 (key (sx330 ing401))) +(recipe r330 (key (sy330 ing461))) +(recipe r331 (numIngredients 2)) +(recipe r331 (result (id item331))) +(recipe r331 (pattern 0 sx331)) +(recipe r331 (pattern 1 sy331)) +(recipe r331 (key (sx331 ing393))) +(recipe r331 (key (sy331 ing455))) +(recipe r331 (key (sx331 ing394))) +(recipe r331 (key (sy331 ing456))) +(recipe r331 (key (sx331 ing395))) +(recipe r331 (key (sy331 ing457))) +(recipe r331 (key (sx331 ing396))) +(recipe r331 (key (sy331 ing458))) +(recipe r331 (key (sx331 ing397))) +(recipe r331 (key (sy331 ing459))) +(recipe r331 (key (sx331 ing398))) +(recipe r331 (key (sy331 ing460))) +(recipe r331 (key (sx331 ing399))) +(recipe r331 (key (sy331 ing461))) +(recipe r331 (key (sx331 ing400))) +(recipe r331 (key (sy331 ing462))) +(recipe r331 (key (sx331 ing401))) +(recipe r331 (key (sy331 ing463))) +(recipe r331 (key (sx331 ing402))) +(recipe r331 (key (sy331 ing464))) +(recipe r331 (key (sx331 ing403))) +(recipe r331 (key (sy331 ing465))) +(recipe r331 (key (sx331 ing404))) +(recipe r331 (key (sy331 ing466))) +(recipe r332 (numIngredients 2)) +(recipe r332 (result (id item332))) +(recipe r332 (pattern 0 sx332)) +(recipe r332 (pattern 1 sy332)) +(recipe r332 (key (sx332 ing396))) +(recipe r332 (key (sy332 ing460))) +(recipe r332 (key (sx332 ing397))) +(recipe r332 (key (sy332 ing461))) +(recipe r332 (key (sx332 ing398))) +(recipe r332 (key (sy332 ing462))) +(recipe r332 (key (sx332 ing399))) +(recipe r332 (key (sy332 ing463))) +(recipe r332 (key (sx332 ing400))) +(recipe r332 (key (sy332 ing464))) +(recipe r332 (key (sx332 ing401))) +(recipe r332 (key (sy332 ing465))) +(recipe r332 (key (sx332 ing402))) +(recipe r332 (key (sy332 ing466))) +(recipe r332 (key (sx332 ing403))) +(recipe r332 (key (sy332 ing467))) +(recipe r332 (key (sx332 ing404))) +(recipe r332 (key (sy332 ing468))) +(recipe r332 (key (sx332 ing405))) +(recipe r332 (key (sy332 ing469))) +(recipe r332 (key (sx332 ing406))) +(recipe r332 (key (sy332 ing470))) +(recipe r332 (key (sx332 ing407))) +(recipe r332 (key (sy332 ing471))) +(recipe r333 (numIngredients 2)) +(recipe r333 (result (id item333))) +(recipe r333 (pattern 0 sx333)) +(recipe r333 (pattern 1 sy333)) +(recipe r333 (key (sx333 ing399))) +(recipe r333 (key (sy333 ing465))) +(recipe r333 (key (sx333 ing400))) +(recipe r333 (key (sy333 ing466))) +(recipe r333 (key (sx333 ing401))) +(recipe r333 (key (sy333 ing467))) +(recipe r333 (key (sx333 ing402))) +(recipe r333 (key (sy333 ing468))) +(recipe r333 (key (sx333 ing403))) +(recipe r333 (key (sy333 ing469))) +(recipe r333 (key (sx333 ing404))) +(recipe r333 (key (sy333 ing470))) +(recipe r333 (key (sx333 ing405))) +(recipe r333 (key (sy333 ing471))) +(recipe r333 (key (sx333 ing406))) +(recipe r333 (key (sy333 ing472))) +(recipe r333 (key (sx333 ing407))) +(recipe r333 (key (sy333 ing473))) +(recipe r333 (key (sx333 ing408))) +(recipe r333 (key (sy333 ing474))) +(recipe r333 (key (sx333 ing409))) +(recipe r333 (key (sy333 ing475))) +(recipe r333 (key (sx333 ing410))) +(recipe r333 (key (sy333 ing476))) +(recipe r334 (numIngredients 2)) +(recipe r334 (result (id item334))) +(recipe r334 (pattern 0 sx334)) +(recipe r334 (pattern 1 sy334)) +(recipe r334 (key (sx334 ing402))) +(recipe r334 (key (sy334 ing470))) +(recipe r334 (key (sx334 ing403))) +(recipe r334 (key (sy334 ing471))) +(recipe r334 (key (sx334 ing404))) +(recipe r334 (key (sy334 ing472))) +(recipe r334 (key (sx334 ing405))) +(recipe r334 (key (sy334 ing473))) +(recipe r334 (key (sx334 ing406))) +(recipe r334 (key (sy334 ing474))) +(recipe r334 (key (sx334 ing407))) +(recipe r334 (key (sy334 ing475))) +(recipe r334 (key (sx334 ing408))) +(recipe r334 (key (sy334 ing476))) +(recipe r334 (key (sx334 ing409))) +(recipe r334 (key (sy334 ing477))) +(recipe r334 (key (sx334 ing410))) +(recipe r334 (key (sy334 ing478))) +(recipe r334 (key (sx334 ing411))) +(recipe r334 (key (sy334 ing479))) +(recipe r334 (key (sx334 ing412))) +(recipe r334 (key (sy334 ing480))) +(recipe r334 (key (sx334 ing413))) +(recipe r334 (key (sy334 ing481))) +(recipe r335 (numIngredients 2)) +(recipe r335 (result (id item335))) +(recipe r335 (pattern 0 sx335)) +(recipe r335 (pattern 1 sy335)) +(recipe r335 (key (sx335 ing405))) +(recipe r335 (key (sy335 ing475))) +(recipe r335 (key (sx335 ing406))) +(recipe r335 (key (sy335 ing476))) +(recipe r335 (key (sx335 ing407))) +(recipe r335 (key (sy335 ing477))) +(recipe r335 (key (sx335 ing408))) +(recipe r335 (key (sy335 ing478))) +(recipe r335 (key (sx335 ing409))) +(recipe r335 (key (sy335 ing479))) +(recipe r335 (key (sx335 ing410))) +(recipe r335 (key (sy335 ing480))) +(recipe r335 (key (sx335 ing411))) +(recipe r335 (key (sy335 ing481))) +(recipe r335 (key (sx335 ing412))) +(recipe r335 (key (sy335 ing482))) +(recipe r335 (key (sx335 ing413))) +(recipe r335 (key (sy335 ing483))) +(recipe r335 (key (sx335 ing414))) +(recipe r335 (key (sy335 ing484))) +(recipe r335 (key (sx335 ing415))) +(recipe r335 (key (sy335 ing485))) +(recipe r335 (key (sx335 ing416))) +(recipe r335 (key (sy335 ing486))) +(recipe r336 (numIngredients 2)) +(recipe r336 (result (id item336))) +(recipe r336 (pattern 0 sx336)) +(recipe r336 (pattern 1 sy336)) +(recipe r336 (key (sx336 ing408))) +(recipe r336 (key (sy336 ing480))) +(recipe r336 (key (sx336 ing409))) +(recipe r336 (key (sy336 ing481))) +(recipe r336 (key (sx336 ing410))) +(recipe r336 (key (sy336 ing482))) +(recipe r336 (key (sx336 ing411))) +(recipe r336 (key (sy336 ing483))) +(recipe r336 (key (sx336 ing412))) +(recipe r336 (key (sy336 ing484))) +(recipe r336 (key (sx336 ing413))) +(recipe r336 (key (sy336 ing485))) +(recipe r336 (key (sx336 ing414))) +(recipe r336 (key (sy336 ing486))) +(recipe r336 (key (sx336 ing415))) +(recipe r336 (key (sy336 ing487))) +(recipe r336 (key (sx336 ing416))) +(recipe r336 (key (sy336 ing488))) +(recipe r336 (key (sx336 ing417))) +(recipe r336 (key (sy336 ing489))) +(recipe r336 (key (sx336 ing418))) +(recipe r336 (key (sy336 ing490))) +(recipe r336 (key (sx336 ing419))) +(recipe r336 (key (sy336 ing491))) +(recipe r337 (numIngredients 2)) +(recipe r337 (result (id item337))) +(recipe r337 (pattern 0 sx337)) +(recipe r337 (pattern 1 sy337)) +(recipe r337 (key (sx337 ing411))) +(recipe r337 (key (sy337 ing485))) +(recipe r337 (key (sx337 ing412))) +(recipe r337 (key (sy337 ing486))) +(recipe r337 (key (sx337 ing413))) +(recipe r337 (key (sy337 ing487))) +(recipe r337 (key (sx337 ing414))) +(recipe r337 (key (sy337 ing488))) +(recipe r337 (key (sx337 ing415))) +(recipe r337 (key (sy337 ing489))) +(recipe r337 (key (sx337 ing416))) +(recipe r337 (key (sy337 ing490))) +(recipe r337 (key (sx337 ing417))) +(recipe r337 (key (sy337 ing491))) +(recipe r337 (key (sx337 ing418))) +(recipe r337 (key (sy337 ing492))) +(recipe r337 (key (sx337 ing419))) +(recipe r337 (key (sy337 ing493))) +(recipe r337 (key (sx337 ing420))) +(recipe r337 (key (sy337 ing494))) +(recipe r337 (key (sx337 ing421))) +(recipe r337 (key (sy337 ing495))) +(recipe r337 (key (sx337 ing422))) +(recipe r337 (key (sy337 ing496))) +(recipe r338 (numIngredients 2)) +(recipe r338 (result (id item338))) +(recipe r338 (pattern 0 sx338)) +(recipe r338 (pattern 1 sy338)) +(recipe r338 (key (sx338 ing414))) +(recipe r338 (key (sy338 ing490))) +(recipe r338 (key (sx338 ing415))) +(recipe r338 (key (sy338 ing491))) +(recipe r338 (key (sx338 ing416))) +(recipe r338 (key (sy338 ing492))) +(recipe r338 (key (sx338 ing417))) +(recipe r338 (key (sy338 ing493))) +(recipe r338 (key (sx338 ing418))) +(recipe r338 (key (sy338 ing494))) +(recipe r338 (key (sx338 ing419))) +(recipe r338 (key (sy338 ing495))) +(recipe r338 (key (sx338 ing420))) +(recipe r338 (key (sy338 ing496))) +(recipe r338 (key (sx338 ing421))) +(recipe r338 (key (sy338 ing497))) +(recipe r338 (key (sx338 ing422))) +(recipe r338 (key (sy338 ing498))) +(recipe r338 (key (sx338 ing423))) +(recipe r338 (key (sy338 ing499))) +(recipe r338 (key (sx338 ing424))) +(recipe r338 (key (sy338 ing500))) +(recipe r338 (key (sx338 ing425))) +(recipe r338 (key (sy338 ing501))) +(recipe r339 (numIngredients 2)) +(recipe r339 (result (id item339))) +(recipe r339 (pattern 0 sx339)) +(recipe r339 (pattern 1 sy339)) +(recipe r339 (key (sx339 ing417))) +(recipe r339 (key (sy339 ing495))) +(recipe r339 (key (sx339 ing418))) +(recipe r339 (key (sy339 ing496))) +(recipe r339 (key (sx339 ing419))) +(recipe r339 (key (sy339 ing497))) +(recipe r339 (key (sx339 ing420))) +(recipe r339 (key (sy339 ing498))) +(recipe r339 (key (sx339 ing421))) +(recipe r339 (key (sy339 ing499))) +(recipe r339 (key (sx339 ing422))) +(recipe r339 (key (sy339 ing500))) +(recipe r339 (key (sx339 ing423))) +(recipe r339 (key (sy339 ing501))) +(recipe r339 (key (sx339 ing424))) +(recipe r339 (key (sy339 ing502))) +(recipe r339 (key (sx339 ing425))) +(recipe r339 (key (sy339 ing503))) +(recipe r339 (key (sx339 ing426))) +(recipe r339 (key (sy339 ing504))) +(recipe r339 (key (sx339 ing427))) +(recipe r339 (key (sy339 ing505))) +(recipe r339 (key (sx339 ing428))) +(recipe r339 (key (sy339 ing506))) +(recipe r340 (numIngredients 2)) +(recipe r340 (result (id item340))) +(recipe r340 (pattern 0 sx340)) +(recipe r340 (pattern 1 sy340)) +(recipe r340 (key (sx340 ing420))) +(recipe r340 (key (sy340 ing500))) +(recipe r340 (key (sx340 ing421))) +(recipe r340 (key (sy340 ing501))) +(recipe r340 (key (sx340 ing422))) +(recipe r340 (key (sy340 ing502))) +(recipe r340 (key (sx340 ing423))) +(recipe r340 (key (sy340 ing503))) +(recipe r340 (key (sx340 ing424))) +(recipe r340 (key (sy340 ing504))) +(recipe r340 (key (sx340 ing425))) +(recipe r340 (key (sy340 ing505))) +(recipe r340 (key (sx340 ing426))) +(recipe r340 (key (sy340 ing506))) +(recipe r340 (key (sx340 ing427))) +(recipe r340 (key (sy340 ing507))) +(recipe r340 (key (sx340 ing428))) +(recipe r340 (key (sy340 ing508))) +(recipe r340 (key (sx340 ing429))) +(recipe r340 (key (sy340 ing509))) +(recipe r340 (key (sx340 ing430))) +(recipe r340 (key (sy340 ing510))) +(recipe r340 (key (sx340 ing431))) +(recipe r340 (key (sy340 ing511))) +(recipe r341 (numIngredients 2)) +(recipe r341 (result (id item341))) +(recipe r341 (pattern 0 sx341)) +(recipe r341 (pattern 1 sy341)) +(recipe r341 (key (sx341 ing423))) +(recipe r341 (key (sy341 ing505))) +(recipe r341 (key (sx341 ing424))) +(recipe r341 (key (sy341 ing506))) +(recipe r341 (key (sx341 ing425))) +(recipe r341 (key (sy341 ing507))) +(recipe r341 (key (sx341 ing426))) +(recipe r341 (key (sy341 ing508))) +(recipe r341 (key (sx341 ing427))) +(recipe r341 (key (sy341 ing509))) +(recipe r341 (key (sx341 ing428))) +(recipe r341 (key (sy341 ing510))) +(recipe r341 (key (sx341 ing429))) +(recipe r341 (key (sy341 ing511))) +(recipe r341 (key (sx341 ing430))) +(recipe r341 (key (sy341 ing512))) +(recipe r341 (key (sx341 ing431))) +(recipe r341 (key (sy341 ing513))) +(recipe r341 (key (sx341 ing432))) +(recipe r341 (key (sy341 ing514))) +(recipe r341 (key (sx341 ing433))) +(recipe r341 (key (sy341 ing515))) +(recipe r341 (key (sx341 ing434))) +(recipe r341 (key (sy341 ing516))) +(recipe r342 (numIngredients 2)) +(recipe r342 (result (id item342))) +(recipe r342 (pattern 0 sx342)) +(recipe r342 (pattern 1 sy342)) +(recipe r342 (key (sx342 ing426))) +(recipe r342 (key (sy342 ing510))) +(recipe r342 (key (sx342 ing427))) +(recipe r342 (key (sy342 ing511))) +(recipe r342 (key (sx342 ing428))) +(recipe r342 (key (sy342 ing512))) +(recipe r342 (key (sx342 ing429))) +(recipe r342 (key (sy342 ing513))) +(recipe r342 (key (sx342 ing430))) +(recipe r342 (key (sy342 ing514))) +(recipe r342 (key (sx342 ing431))) +(recipe r342 (key (sy342 ing515))) +(recipe r342 (key (sx342 ing432))) +(recipe r342 (key (sy342 ing516))) +(recipe r342 (key (sx342 ing433))) +(recipe r342 (key (sy342 ing517))) +(recipe r342 (key (sx342 ing434))) +(recipe r342 (key (sy342 ing518))) +(recipe r342 (key (sx342 ing435))) +(recipe r342 (key (sy342 ing519))) +(recipe r342 (key (sx342 ing436))) +(recipe r342 (key (sy342 ing520))) +(recipe r342 (key (sx342 ing437))) +(recipe r342 (key (sy342 ing521))) +(recipe r343 (numIngredients 2)) +(recipe r343 (result (id item343))) +(recipe r343 (pattern 0 sx343)) +(recipe r343 (pattern 1 sy343)) +(recipe r343 (key (sx343 ing429))) +(recipe r343 (key (sy343 ing515))) +(recipe r343 (key (sx343 ing430))) +(recipe r343 (key (sy343 ing516))) +(recipe r343 (key (sx343 ing431))) +(recipe r343 (key (sy343 ing517))) +(recipe r343 (key (sx343 ing432))) +(recipe r343 (key (sy343 ing518))) +(recipe r343 (key (sx343 ing433))) +(recipe r343 (key (sy343 ing519))) +(recipe r343 (key (sx343 ing434))) +(recipe r343 (key (sy343 ing520))) +(recipe r343 (key (sx343 ing435))) +(recipe r343 (key (sy343 ing521))) +(recipe r343 (key (sx343 ing436))) +(recipe r343 (key (sy343 ing522))) +(recipe r343 (key (sx343 ing437))) +(recipe r343 (key (sy343 ing523))) +(recipe r343 (key (sx343 ing438))) +(recipe r343 (key (sy343 ing524))) +(recipe r343 (key (sx343 ing439))) +(recipe r343 (key (sy343 ing525))) +(recipe r343 (key (sx343 ing440))) +(recipe r343 (key (sy343 ing526))) +(recipe r344 (numIngredients 2)) +(recipe r344 (result (id item344))) +(recipe r344 (pattern 0 sx344)) +(recipe r344 (pattern 1 sy344)) +(recipe r344 (key (sx344 ing432))) +(recipe r344 (key (sy344 ing520))) +(recipe r344 (key (sx344 ing433))) +(recipe r344 (key (sy344 ing521))) +(recipe r344 (key (sx344 ing434))) +(recipe r344 (key (sy344 ing522))) +(recipe r344 (key (sx344 ing435))) +(recipe r344 (key (sy344 ing523))) +(recipe r344 (key (sx344 ing436))) +(recipe r344 (key (sy344 ing524))) +(recipe r344 (key (sx344 ing437))) +(recipe r344 (key (sy344 ing525))) +(recipe r344 (key (sx344 ing438))) +(recipe r344 (key (sy344 ing526))) +(recipe r344 (key (sx344 ing439))) +(recipe r344 (key (sy344 ing527))) +(recipe r344 (key (sx344 ing440))) +(recipe r344 (key (sy344 ing528))) +(recipe r344 (key (sx344 ing441))) +(recipe r344 (key (sy344 ing529))) +(recipe r344 (key (sx344 ing442))) +(recipe r344 (key (sy344 ing530))) +(recipe r344 (key (sx344 ing443))) +(recipe r344 (key (sy344 ing531))) +(recipe r345 (numIngredients 2)) +(recipe r345 (result (id item345))) +(recipe r345 (pattern 0 sx345)) +(recipe r345 (pattern 1 sy345)) +(recipe r345 (key (sx345 ing435))) +(recipe r345 (key (sy345 ing525))) +(recipe r345 (key (sx345 ing436))) +(recipe r345 (key (sy345 ing526))) +(recipe r345 (key (sx345 ing437))) +(recipe r345 (key (sy345 ing527))) +(recipe r345 (key (sx345 ing438))) +(recipe r345 (key (sy345 ing528))) +(recipe r345 (key (sx345 ing439))) +(recipe r345 (key (sy345 ing529))) +(recipe r345 (key (sx345 ing440))) +(recipe r345 (key (sy345 ing530))) +(recipe r345 (key (sx345 ing441))) +(recipe r345 (key (sy345 ing531))) +(recipe r345 (key (sx345 ing442))) +(recipe r345 (key (sy345 ing532))) +(recipe r345 (key (sx345 ing443))) +(recipe r345 (key (sy345 ing533))) +(recipe r345 (key (sx345 ing444))) +(recipe r345 (key (sy345 ing534))) +(recipe r345 (key (sx345 ing445))) +(recipe r345 (key (sy345 ing535))) +(recipe r345 (key (sx345 ing446))) +(recipe r345 (key (sy345 ing536))) +(recipe r346 (numIngredients 2)) +(recipe r346 (result (id item346))) +(recipe r346 (pattern 0 sx346)) +(recipe r346 (pattern 1 sy346)) +(recipe r346 (key (sx346 ing438))) +(recipe r346 (key (sy346 ing530))) +(recipe r346 (key (sx346 ing439))) +(recipe r346 (key (sy346 ing531))) +(recipe r346 (key (sx346 ing440))) +(recipe r346 (key (sy346 ing532))) +(recipe r346 (key (sx346 ing441))) +(recipe r346 (key (sy346 ing533))) +(recipe r346 (key (sx346 ing442))) +(recipe r346 (key (sy346 ing534))) +(recipe r346 (key (sx346 ing443))) +(recipe r346 (key (sy346 ing535))) +(recipe r346 (key (sx346 ing444))) +(recipe r346 (key (sy346 ing536))) +(recipe r346 (key (sx346 ing445))) +(recipe r346 (key (sy346 ing537))) +(recipe r346 (key (sx346 ing446))) +(recipe r346 (key (sy346 ing538))) +(recipe r346 (key (sx346 ing447))) +(recipe r346 (key (sy346 ing539))) +(recipe r346 (key (sx346 ing448))) +(recipe r346 (key (sy346 ing540))) +(recipe r346 (key (sx346 ing449))) +(recipe r346 (key (sy346 ing541))) +(recipe r347 (numIngredients 2)) +(recipe r347 (result (id item347))) +(recipe r347 (pattern 0 sx347)) +(recipe r347 (pattern 1 sy347)) +(recipe r347 (key (sx347 ing441))) +(recipe r347 (key (sy347 ing535))) +(recipe r347 (key (sx347 ing442))) +(recipe r347 (key (sy347 ing536))) +(recipe r347 (key (sx347 ing443))) +(recipe r347 (key (sy347 ing537))) +(recipe r347 (key (sx347 ing444))) +(recipe r347 (key (sy347 ing538))) +(recipe r347 (key (sx347 ing445))) +(recipe r347 (key (sy347 ing539))) +(recipe r347 (key (sx347 ing446))) +(recipe r347 (key (sy347 ing540))) +(recipe r347 (key (sx347 ing447))) +(recipe r347 (key (sy347 ing541))) +(recipe r347 (key (sx347 ing448))) +(recipe r347 (key (sy347 ing542))) +(recipe r347 (key (sx347 ing449))) +(recipe r347 (key (sy347 ing543))) +(recipe r347 (key (sx347 ing450))) +(recipe r347 (key (sy347 ing544))) +(recipe r347 (key (sx347 ing451))) +(recipe r347 (key (sy347 ing545))) +(recipe r347 (key (sx347 ing452))) +(recipe r347 (key (sy347 ing546))) +(recipe r348 (numIngredients 2)) +(recipe r348 (result (id item348))) +(recipe r348 (pattern 0 sx348)) +(recipe r348 (pattern 1 sy348)) +(recipe r348 (key (sx348 ing444))) +(recipe r348 (key (sy348 ing540))) +(recipe r348 (key (sx348 ing445))) +(recipe r348 (key (sy348 ing541))) +(recipe r348 (key (sx348 ing446))) +(recipe r348 (key (sy348 ing542))) +(recipe r348 (key (sx348 ing447))) +(recipe r348 (key (sy348 ing543))) +(recipe r348 (key (sx348 ing448))) +(recipe r348 (key (sy348 ing544))) +(recipe r348 (key (sx348 ing449))) +(recipe r348 (key (sy348 ing545))) +(recipe r348 (key (sx348 ing450))) +(recipe r348 (key (sy348 ing546))) +(recipe r348 (key (sx348 ing451))) +(recipe r348 (key (sy348 ing547))) +(recipe r348 (key (sx348 ing452))) +(recipe r348 (key (sy348 ing548))) +(recipe r348 (key (sx348 ing453))) +(recipe r348 (key (sy348 ing549))) +(recipe r348 (key (sx348 ing454))) +(recipe r348 (key (sy348 ing550))) +(recipe r348 (key (sx348 ing455))) +(recipe r348 (key (sy348 ing551))) +(recipe r349 (numIngredients 2)) +(recipe r349 (result (id item349))) +(recipe r349 (pattern 0 sx349)) +(recipe r349 (pattern 1 sy349)) +(recipe r349 (key (sx349 ing447))) +(recipe r349 (key (sy349 ing545))) +(recipe r349 (key (sx349 ing448))) +(recipe r349 (key (sy349 ing546))) +(recipe r349 (key (sx349 ing449))) +(recipe r349 (key (sy349 ing547))) +(recipe r349 (key (sx349 ing450))) +(recipe r349 (key (sy349 ing548))) +(recipe r349 (key (sx349 ing451))) +(recipe r349 (key (sy349 ing549))) +(recipe r349 (key (sx349 ing452))) +(recipe r349 (key (sy349 ing550))) +(recipe r349 (key (sx349 ing453))) +(recipe r349 (key (sy349 ing551))) +(recipe r349 (key (sx349 ing454))) +(recipe r349 (key (sy349 ing552))) +(recipe r349 (key (sx349 ing455))) +(recipe r349 (key (sy349 ing553))) +(recipe r349 (key (sx349 ing456))) +(recipe r349 (key (sy349 ing554))) +(recipe r349 (key (sx349 ing457))) +(recipe r349 (key (sy349 ing555))) +(recipe r349 (key (sx349 ing458))) +(recipe r349 (key (sy349 ing556))) +(recipe r350 (numIngredients 2)) +(recipe r350 (result (id item350))) +(recipe r350 (pattern 0 sx350)) +(recipe r350 (pattern 1 sy350)) +(recipe r350 (key (sx350 ing450))) +(recipe r350 (key (sy350 ing550))) +(recipe r350 (key (sx350 ing451))) +(recipe r350 (key (sy350 ing551))) +(recipe r350 (key (sx350 ing452))) +(recipe r350 (key (sy350 ing552))) +(recipe r350 (key (sx350 ing453))) +(recipe r350 (key (sy350 ing553))) +(recipe r350 (key (sx350 ing454))) +(recipe r350 (key (sy350 ing554))) +(recipe r350 (key (sx350 ing455))) +(recipe r350 (key (sy350 ing555))) +(recipe r350 (key (sx350 ing456))) +(recipe r350 (key (sy350 ing556))) +(recipe r350 (key (sx350 ing457))) +(recipe r350 (key (sy350 ing557))) +(recipe r350 (key (sx350 ing458))) +(recipe r350 (key (sy350 ing558))) +(recipe r350 (key (sx350 ing459))) +(recipe r350 (key (sy350 ing559))) +(recipe r350 (key (sx350 ing460))) +(recipe r350 (key (sy350 ing560))) +(recipe r350 (key (sx350 ing461))) +(recipe r350 (key (sy350 ing561))) +(recipe r351 (numIngredients 2)) +(recipe r351 (result (id item351))) +(recipe r351 (pattern 0 sx351)) +(recipe r351 (pattern 1 sy351)) +(recipe r351 (key (sx351 ing453))) +(recipe r351 (key (sy351 ing555))) +(recipe r351 (key (sx351 ing454))) +(recipe r351 (key (sy351 ing556))) +(recipe r351 (key (sx351 ing455))) +(recipe r351 (key (sy351 ing557))) +(recipe r351 (key (sx351 ing456))) +(recipe r351 (key (sy351 ing558))) +(recipe r351 (key (sx351 ing457))) +(recipe r351 (key (sy351 ing559))) +(recipe r351 (key (sx351 ing458))) +(recipe r351 (key (sy351 ing560))) +(recipe r351 (key (sx351 ing459))) +(recipe r351 (key (sy351 ing561))) +(recipe r351 (key (sx351 ing460))) +(recipe r351 (key (sy351 ing562))) +(recipe r351 (key (sx351 ing461))) +(recipe r351 (key (sy351 ing563))) +(recipe r351 (key (sx351 ing462))) +(recipe r351 (key (sy351 ing564))) +(recipe r351 (key (sx351 ing463))) +(recipe r351 (key (sy351 ing565))) +(recipe r351 (key (sx351 ing464))) +(recipe r351 (key (sy351 ing566))) +(recipe r352 (numIngredients 2)) +(recipe r352 (result (id item352))) +(recipe r352 (pattern 0 sx352)) +(recipe r352 (pattern 1 sy352)) +(recipe r352 (key (sx352 ing456))) +(recipe r352 (key (sy352 ing560))) +(recipe r352 (key (sx352 ing457))) +(recipe r352 (key (sy352 ing561))) +(recipe r352 (key (sx352 ing458))) +(recipe r352 (key (sy352 ing562))) +(recipe r352 (key (sx352 ing459))) +(recipe r352 (key (sy352 ing563))) +(recipe r352 (key (sx352 ing460))) +(recipe r352 (key (sy352 ing564))) +(recipe r352 (key (sx352 ing461))) +(recipe r352 (key (sy352 ing565))) +(recipe r352 (key (sx352 ing462))) +(recipe r352 (key (sy352 ing566))) +(recipe r352 (key (sx352 ing463))) +(recipe r352 (key (sy352 ing567))) +(recipe r352 (key (sx352 ing464))) +(recipe r352 (key (sy352 ing568))) +(recipe r352 (key (sx352 ing465))) +(recipe r352 (key (sy352 ing569))) +(recipe r352 (key (sx352 ing466))) +(recipe r352 (key (sy352 ing570))) +(recipe r352 (key (sx352 ing467))) +(recipe r352 (key (sy352 ing571))) +(recipe r353 (numIngredients 2)) +(recipe r353 (result (id item353))) +(recipe r353 (pattern 0 sx353)) +(recipe r353 (pattern 1 sy353)) +(recipe r353 (key (sx353 ing459))) +(recipe r353 (key (sy353 ing565))) +(recipe r353 (key (sx353 ing460))) +(recipe r353 (key (sy353 ing566))) +(recipe r353 (key (sx353 ing461))) +(recipe r353 (key (sy353 ing567))) +(recipe r353 (key (sx353 ing462))) +(recipe r353 (key (sy353 ing568))) +(recipe r353 (key (sx353 ing463))) +(recipe r353 (key (sy353 ing569))) +(recipe r353 (key (sx353 ing464))) +(recipe r353 (key (sy353 ing570))) +(recipe r353 (key (sx353 ing465))) +(recipe r353 (key (sy353 ing571))) +(recipe r353 (key (sx353 ing466))) +(recipe r353 (key (sy353 ing572))) +(recipe r353 (key (sx353 ing467))) +(recipe r353 (key (sy353 ing573))) +(recipe r353 (key (sx353 ing468))) +(recipe r353 (key (sy353 ing574))) +(recipe r353 (key (sx353 ing469))) +(recipe r353 (key (sy353 ing575))) +(recipe r353 (key (sx353 ing470))) +(recipe r353 (key (sy353 ing576))) +(recipe r354 (numIngredients 2)) +(recipe r354 (result (id item354))) +(recipe r354 (pattern 0 sx354)) +(recipe r354 (pattern 1 sy354)) +(recipe r354 (key (sx354 ing462))) +(recipe r354 (key (sy354 ing570))) +(recipe r354 (key (sx354 ing463))) +(recipe r354 (key (sy354 ing571))) +(recipe r354 (key (sx354 ing464))) +(recipe r354 (key (sy354 ing572))) +(recipe r354 (key (sx354 ing465))) +(recipe r354 (key (sy354 ing573))) +(recipe r354 (key (sx354 ing466))) +(recipe r354 (key (sy354 ing574))) +(recipe r354 (key (sx354 ing467))) +(recipe r354 (key (sy354 ing575))) +(recipe r354 (key (sx354 ing468))) +(recipe r354 (key (sy354 ing576))) +(recipe r354 (key (sx354 ing469))) +(recipe r354 (key (sy354 ing577))) +(recipe r354 (key (sx354 ing470))) +(recipe r354 (key (sy354 ing578))) +(recipe r354 (key (sx354 ing471))) +(recipe r354 (key (sy354 ing579))) +(recipe r354 (key (sx354 ing472))) +(recipe r354 (key (sy354 ing580))) +(recipe r354 (key (sx354 ing473))) +(recipe r354 (key (sy354 ing581))) +(recipe r355 (numIngredients 2)) +(recipe r355 (result (id item355))) +(recipe r355 (pattern 0 sx355)) +(recipe r355 (pattern 1 sy355)) +(recipe r355 (key (sx355 ing465))) +(recipe r355 (key (sy355 ing575))) +(recipe r355 (key (sx355 ing466))) +(recipe r355 (key (sy355 ing576))) +(recipe r355 (key (sx355 ing467))) +(recipe r355 (key (sy355 ing577))) +(recipe r355 (key (sx355 ing468))) +(recipe r355 (key (sy355 ing578))) +(recipe r355 (key (sx355 ing469))) +(recipe r355 (key (sy355 ing579))) +(recipe r355 (key (sx355 ing470))) +(recipe r355 (key (sy355 ing580))) +(recipe r355 (key (sx355 ing471))) +(recipe r355 (key (sy355 ing581))) +(recipe r355 (key (sx355 ing472))) +(recipe r355 (key (sy355 ing582))) +(recipe r355 (key (sx355 ing473))) +(recipe r355 (key (sy355 ing583))) +(recipe r355 (key (sx355 ing474))) +(recipe r355 (key (sy355 ing584))) +(recipe r355 (key (sx355 ing475))) +(recipe r355 (key (sy355 ing585))) +(recipe r355 (key (sx355 ing476))) +(recipe r355 (key (sy355 ing586))) +(recipe r356 (numIngredients 2)) +(recipe r356 (result (id item356))) +(recipe r356 (pattern 0 sx356)) +(recipe r356 (pattern 1 sy356)) +(recipe r356 (key (sx356 ing468))) +(recipe r356 (key (sy356 ing580))) +(recipe r356 (key (sx356 ing469))) +(recipe r356 (key (sy356 ing581))) +(recipe r356 (key (sx356 ing470))) +(recipe r356 (key (sy356 ing582))) +(recipe r356 (key (sx356 ing471))) +(recipe r356 (key (sy356 ing583))) +(recipe r356 (key (sx356 ing472))) +(recipe r356 (key (sy356 ing584))) +(recipe r356 (key (sx356 ing473))) +(recipe r356 (key (sy356 ing585))) +(recipe r356 (key (sx356 ing474))) +(recipe r356 (key (sy356 ing586))) +(recipe r356 (key (sx356 ing475))) +(recipe r356 (key (sy356 ing587))) +(recipe r356 (key (sx356 ing476))) +(recipe r356 (key (sy356 ing588))) +(recipe r356 (key (sx356 ing477))) +(recipe r356 (key (sy356 ing589))) +(recipe r356 (key (sx356 ing478))) +(recipe r356 (key (sy356 ing590))) +(recipe r356 (key (sx356 ing479))) +(recipe r356 (key (sy356 ing591))) +(recipe r357 (numIngredients 2)) +(recipe r357 (result (id item357))) +(recipe r357 (pattern 0 sx357)) +(recipe r357 (pattern 1 sy357)) +(recipe r357 (key (sx357 ing471))) +(recipe r357 (key (sy357 ing585))) +(recipe r357 (key (sx357 ing472))) +(recipe r357 (key (sy357 ing586))) +(recipe r357 (key (sx357 ing473))) +(recipe r357 (key (sy357 ing587))) +(recipe r357 (key (sx357 ing474))) +(recipe r357 (key (sy357 ing588))) +(recipe r357 (key (sx357 ing475))) +(recipe r357 (key (sy357 ing589))) +(recipe r357 (key (sx357 ing476))) +(recipe r357 (key (sy357 ing590))) +(recipe r357 (key (sx357 ing477))) +(recipe r357 (key (sy357 ing591))) +(recipe r357 (key (sx357 ing478))) +(recipe r357 (key (sy357 ing592))) +(recipe r357 (key (sx357 ing479))) +(recipe r357 (key (sy357 ing593))) +(recipe r357 (key (sx357 ing480))) +(recipe r357 (key (sy357 ing594))) +(recipe r357 (key (sx357 ing481))) +(recipe r357 (key (sy357 ing595))) +(recipe r357 (key (sx357 ing482))) +(recipe r357 (key (sy357 ing596))) +(recipe r358 (numIngredients 2)) +(recipe r358 (result (id item358))) +(recipe r358 (pattern 0 sx358)) +(recipe r358 (pattern 1 sy358)) +(recipe r358 (key (sx358 ing474))) +(recipe r358 (key (sy358 ing590))) +(recipe r358 (key (sx358 ing475))) +(recipe r358 (key (sy358 ing591))) +(recipe r358 (key (sx358 ing476))) +(recipe r358 (key (sy358 ing592))) +(recipe r358 (key (sx358 ing477))) +(recipe r358 (key (sy358 ing593))) +(recipe r358 (key (sx358 ing478))) +(recipe r358 (key (sy358 ing594))) +(recipe r358 (key (sx358 ing479))) +(recipe r358 (key (sy358 ing595))) +(recipe r358 (key (sx358 ing480))) +(recipe r358 (key (sy358 ing596))) +(recipe r358 (key (sx358 ing481))) +(recipe r358 (key (sy358 ing597))) +(recipe r358 (key (sx358 ing482))) +(recipe r358 (key (sy358 ing598))) +(recipe r358 (key (sx358 ing483))) +(recipe r358 (key (sy358 ing599))) +(recipe r358 (key (sx358 ing484))) +(recipe r358 (key (sy358 ing0))) +(recipe r358 (key (sx358 ing485))) +(recipe r358 (key (sy358 ing1))) +(recipe r359 (numIngredients 2)) +(recipe r359 (result (id item359))) +(recipe r359 (pattern 0 sx359)) +(recipe r359 (pattern 1 sy359)) +(recipe r359 (key (sx359 ing477))) +(recipe r359 (key (sy359 ing595))) +(recipe r359 (key (sx359 ing478))) +(recipe r359 (key (sy359 ing596))) +(recipe r359 (key (sx359 ing479))) +(recipe r359 (key (sy359 ing597))) +(recipe r359 (key (sx359 ing480))) +(recipe r359 (key (sy359 ing598))) +(recipe r359 (key (sx359 ing481))) +(recipe r359 (key (sy359 ing599))) +(recipe r359 (key (sx359 ing482))) +(recipe r359 (key (sy359 ing0))) +(recipe r359 (key (sx359 ing483))) +(recipe r359 (key (sy359 ing1))) +(recipe r359 (key (sx359 ing484))) +(recipe r359 (key (sy359 ing2))) +(recipe r359 (key (sx359 ing485))) +(recipe r359 (key (sy359 ing3))) +(recipe r359 (key (sx359 ing486))) +(recipe r359 (key (sy359 ing4))) +(recipe r359 (key (sx359 ing487))) +(recipe r359 (key (sy359 ing5))) +(recipe r359 (key (sx359 ing488))) +(recipe r359 (key (sy359 ing6))) +(recipe r360 (numIngredients 2)) +(recipe r360 (result (id item360))) +(recipe r360 (pattern 0 sx360)) +(recipe r360 (pattern 1 sy360)) +(recipe r360 (key (sx360 ing480))) +(recipe r360 (key (sy360 ing0))) +(recipe r360 (key (sx360 ing481))) +(recipe r360 (key (sy360 ing1))) +(recipe r360 (key (sx360 ing482))) +(recipe r360 (key (sy360 ing2))) +(recipe r360 (key (sx360 ing483))) +(recipe r360 (key (sy360 ing3))) +(recipe r360 (key (sx360 ing484))) +(recipe r360 (key (sy360 ing4))) +(recipe r360 (key (sx360 ing485))) +(recipe r360 (key (sy360 ing5))) +(recipe r360 (key (sx360 ing486))) +(recipe r360 (key (sy360 ing6))) +(recipe r360 (key (sx360 ing487))) +(recipe r360 (key (sy360 ing7))) +(recipe r360 (key (sx360 ing488))) +(recipe r360 (key (sy360 ing8))) +(recipe r360 (key (sx360 ing489))) +(recipe r360 (key (sy360 ing9))) +(recipe r360 (key (sx360 ing490))) +(recipe r360 (key (sy360 ing10))) +(recipe r360 (key (sx360 ing491))) +(recipe r360 (key (sy360 ing11))) +(recipe r361 (numIngredients 2)) +(recipe r361 (result (id item361))) +(recipe r361 (pattern 0 sx361)) +(recipe r361 (pattern 1 sy361)) +(recipe r361 (key (sx361 ing483))) +(recipe r361 (key (sy361 ing5))) +(recipe r361 (key (sx361 ing484))) +(recipe r361 (key (sy361 ing6))) +(recipe r361 (key (sx361 ing485))) +(recipe r361 (key (sy361 ing7))) +(recipe r361 (key (sx361 ing486))) +(recipe r361 (key (sy361 ing8))) +(recipe r361 (key (sx361 ing487))) +(recipe r361 (key (sy361 ing9))) +(recipe r361 (key (sx361 ing488))) +(recipe r361 (key (sy361 ing10))) +(recipe r361 (key (sx361 ing489))) +(recipe r361 (key (sy361 ing11))) +(recipe r361 (key (sx361 ing490))) +(recipe r361 (key (sy361 ing12))) +(recipe r361 (key (sx361 ing491))) +(recipe r361 (key (sy361 ing13))) +(recipe r361 (key (sx361 ing492))) +(recipe r361 (key (sy361 ing14))) +(recipe r361 (key (sx361 ing493))) +(recipe r361 (key (sy361 ing15))) +(recipe r361 (key (sx361 ing494))) +(recipe r361 (key (sy361 ing16))) +(recipe r362 (numIngredients 2)) +(recipe r362 (result (id item362))) +(recipe r362 (pattern 0 sx362)) +(recipe r362 (pattern 1 sy362)) +(recipe r362 (key (sx362 ing486))) +(recipe r362 (key (sy362 ing10))) +(recipe r362 (key (sx362 ing487))) +(recipe r362 (key (sy362 ing11))) +(recipe r362 (key (sx362 ing488))) +(recipe r362 (key (sy362 ing12))) +(recipe r362 (key (sx362 ing489))) +(recipe r362 (key (sy362 ing13))) +(recipe r362 (key (sx362 ing490))) +(recipe r362 (key (sy362 ing14))) +(recipe r362 (key (sx362 ing491))) +(recipe r362 (key (sy362 ing15))) +(recipe r362 (key (sx362 ing492))) +(recipe r362 (key (sy362 ing16))) +(recipe r362 (key (sx362 ing493))) +(recipe r362 (key (sy362 ing17))) +(recipe r362 (key (sx362 ing494))) +(recipe r362 (key (sy362 ing18))) +(recipe r362 (key (sx362 ing495))) +(recipe r362 (key (sy362 ing19))) +(recipe r362 (key (sx362 ing496))) +(recipe r362 (key (sy362 ing20))) +(recipe r362 (key (sx362 ing497))) +(recipe r362 (key (sy362 ing21))) +(recipe r363 (numIngredients 2)) +(recipe r363 (result (id item363))) +(recipe r363 (pattern 0 sx363)) +(recipe r363 (pattern 1 sy363)) +(recipe r363 (key (sx363 ing489))) +(recipe r363 (key (sy363 ing15))) +(recipe r363 (key (sx363 ing490))) +(recipe r363 (key (sy363 ing16))) +(recipe r363 (key (sx363 ing491))) +(recipe r363 (key (sy363 ing17))) +(recipe r363 (key (sx363 ing492))) +(recipe r363 (key (sy363 ing18))) +(recipe r363 (key (sx363 ing493))) +(recipe r363 (key (sy363 ing19))) +(recipe r363 (key (sx363 ing494))) +(recipe r363 (key (sy363 ing20))) +(recipe r363 (key (sx363 ing495))) +(recipe r363 (key (sy363 ing21))) +(recipe r363 (key (sx363 ing496))) +(recipe r363 (key (sy363 ing22))) +(recipe r363 (key (sx363 ing497))) +(recipe r363 (key (sy363 ing23))) +(recipe r363 (key (sx363 ing498))) +(recipe r363 (key (sy363 ing24))) +(recipe r363 (key (sx363 ing499))) +(recipe r363 (key (sy363 ing25))) +(recipe r363 (key (sx363 ing500))) +(recipe r363 (key (sy363 ing26))) +(recipe r364 (numIngredients 2)) +(recipe r364 (result (id item364))) +(recipe r364 (pattern 0 sx364)) +(recipe r364 (pattern 1 sy364)) +(recipe r364 (key (sx364 ing492))) +(recipe r364 (key (sy364 ing20))) +(recipe r364 (key (sx364 ing493))) +(recipe r364 (key (sy364 ing21))) +(recipe r364 (key (sx364 ing494))) +(recipe r364 (key (sy364 ing22))) +(recipe r364 (key (sx364 ing495))) +(recipe r364 (key (sy364 ing23))) +(recipe r364 (key (sx364 ing496))) +(recipe r364 (key (sy364 ing24))) +(recipe r364 (key (sx364 ing497))) +(recipe r364 (key (sy364 ing25))) +(recipe r364 (key (sx364 ing498))) +(recipe r364 (key (sy364 ing26))) +(recipe r364 (key (sx364 ing499))) +(recipe r364 (key (sy364 ing27))) +(recipe r364 (key (sx364 ing500))) +(recipe r364 (key (sy364 ing28))) +(recipe r364 (key (sx364 ing501))) +(recipe r364 (key (sy364 ing29))) +(recipe r364 (key (sx364 ing502))) +(recipe r364 (key (sy364 ing30))) +(recipe r364 (key (sx364 ing503))) +(recipe r364 (key (sy364 ing31))) +(recipe r365 (numIngredients 2)) +(recipe r365 (result (id item365))) +(recipe r365 (pattern 0 sx365)) +(recipe r365 (pattern 1 sy365)) +(recipe r365 (key (sx365 ing495))) +(recipe r365 (key (sy365 ing25))) +(recipe r365 (key (sx365 ing496))) +(recipe r365 (key (sy365 ing26))) +(recipe r365 (key (sx365 ing497))) +(recipe r365 (key (sy365 ing27))) +(recipe r365 (key (sx365 ing498))) +(recipe r365 (key (sy365 ing28))) +(recipe r365 (key (sx365 ing499))) +(recipe r365 (key (sy365 ing29))) +(recipe r365 (key (sx365 ing500))) +(recipe r365 (key (sy365 ing30))) +(recipe r365 (key (sx365 ing501))) +(recipe r365 (key (sy365 ing31))) +(recipe r365 (key (sx365 ing502))) +(recipe r365 (key (sy365 ing32))) +(recipe r365 (key (sx365 ing503))) +(recipe r365 (key (sy365 ing33))) +(recipe r365 (key (sx365 ing504))) +(recipe r365 (key (sy365 ing34))) +(recipe r365 (key (sx365 ing505))) +(recipe r365 (key (sy365 ing35))) +(recipe r365 (key (sx365 ing506))) +(recipe r365 (key (sy365 ing36))) +(recipe r366 (numIngredients 2)) +(recipe r366 (result (id item366))) +(recipe r366 (pattern 0 sx366)) +(recipe r366 (pattern 1 sy366)) +(recipe r366 (key (sx366 ing498))) +(recipe r366 (key (sy366 ing30))) +(recipe r366 (key (sx366 ing499))) +(recipe r366 (key (sy366 ing31))) +(recipe r366 (key (sx366 ing500))) +(recipe r366 (key (sy366 ing32))) +(recipe r366 (key (sx366 ing501))) +(recipe r366 (key (sy366 ing33))) +(recipe r366 (key (sx366 ing502))) +(recipe r366 (key (sy366 ing34))) +(recipe r366 (key (sx366 ing503))) +(recipe r366 (key (sy366 ing35))) +(recipe r366 (key (sx366 ing504))) +(recipe r366 (key (sy366 ing36))) +(recipe r366 (key (sx366 ing505))) +(recipe r366 (key (sy366 ing37))) +(recipe r366 (key (sx366 ing506))) +(recipe r366 (key (sy366 ing38))) +(recipe r366 (key (sx366 ing507))) +(recipe r366 (key (sy366 ing39))) +(recipe r366 (key (sx366 ing508))) +(recipe r366 (key (sy366 ing40))) +(recipe r366 (key (sx366 ing509))) +(recipe r366 (key (sy366 ing41))) +(recipe r367 (numIngredients 2)) +(recipe r367 (result (id item367))) +(recipe r367 (pattern 0 sx367)) +(recipe r367 (pattern 1 sy367)) +(recipe r367 (key (sx367 ing501))) +(recipe r367 (key (sy367 ing35))) +(recipe r367 (key (sx367 ing502))) +(recipe r367 (key (sy367 ing36))) +(recipe r367 (key (sx367 ing503))) +(recipe r367 (key (sy367 ing37))) +(recipe r367 (key (sx367 ing504))) +(recipe r367 (key (sy367 ing38))) +(recipe r367 (key (sx367 ing505))) +(recipe r367 (key (sy367 ing39))) +(recipe r367 (key (sx367 ing506))) +(recipe r367 (key (sy367 ing40))) +(recipe r367 (key (sx367 ing507))) +(recipe r367 (key (sy367 ing41))) +(recipe r367 (key (sx367 ing508))) +(recipe r367 (key (sy367 ing42))) +(recipe r367 (key (sx367 ing509))) +(recipe r367 (key (sy367 ing43))) +(recipe r367 (key (sx367 ing510))) +(recipe r367 (key (sy367 ing44))) +(recipe r367 (key (sx367 ing511))) +(recipe r367 (key (sy367 ing45))) +(recipe r367 (key (sx367 ing512))) +(recipe r367 (key (sy367 ing46))) +(recipe r368 (numIngredients 2)) +(recipe r368 (result (id item368))) +(recipe r368 (pattern 0 sx368)) +(recipe r368 (pattern 1 sy368)) +(recipe r368 (key (sx368 ing504))) +(recipe r368 (key (sy368 ing40))) +(recipe r368 (key (sx368 ing505))) +(recipe r368 (key (sy368 ing41))) +(recipe r368 (key (sx368 ing506))) +(recipe r368 (key (sy368 ing42))) +(recipe r368 (key (sx368 ing507))) +(recipe r368 (key (sy368 ing43))) +(recipe r368 (key (sx368 ing508))) +(recipe r368 (key (sy368 ing44))) +(recipe r368 (key (sx368 ing509))) +(recipe r368 (key (sy368 ing45))) +(recipe r368 (key (sx368 ing510))) +(recipe r368 (key (sy368 ing46))) +(recipe r368 (key (sx368 ing511))) +(recipe r368 (key (sy368 ing47))) +(recipe r368 (key (sx368 ing512))) +(recipe r368 (key (sy368 ing48))) +(recipe r368 (key (sx368 ing513))) +(recipe r368 (key (sy368 ing49))) +(recipe r368 (key (sx368 ing514))) +(recipe r368 (key (sy368 ing50))) +(recipe r368 (key (sx368 ing515))) +(recipe r368 (key (sy368 ing51))) +(recipe r369 (numIngredients 2)) +(recipe r369 (result (id item369))) +(recipe r369 (pattern 0 sx369)) +(recipe r369 (pattern 1 sy369)) +(recipe r369 (key (sx369 ing507))) +(recipe r369 (key (sy369 ing45))) +(recipe r369 (key (sx369 ing508))) +(recipe r369 (key (sy369 ing46))) +(recipe r369 (key (sx369 ing509))) +(recipe r369 (key (sy369 ing47))) +(recipe r369 (key (sx369 ing510))) +(recipe r369 (key (sy369 ing48))) +(recipe r369 (key (sx369 ing511))) +(recipe r369 (key (sy369 ing49))) +(recipe r369 (key (sx369 ing512))) +(recipe r369 (key (sy369 ing50))) +(recipe r369 (key (sx369 ing513))) +(recipe r369 (key (sy369 ing51))) +(recipe r369 (key (sx369 ing514))) +(recipe r369 (key (sy369 ing52))) +(recipe r369 (key (sx369 ing515))) +(recipe r369 (key (sy369 ing53))) +(recipe r369 (key (sx369 ing516))) +(recipe r369 (key (sy369 ing54))) +(recipe r369 (key (sx369 ing517))) +(recipe r369 (key (sy369 ing55))) +(recipe r369 (key (sx369 ing518))) +(recipe r369 (key (sy369 ing56))) +(recipe r370 (numIngredients 2)) +(recipe r370 (result (id item370))) +(recipe r370 (pattern 0 sx370)) +(recipe r370 (pattern 1 sy370)) +(recipe r370 (key (sx370 ing510))) +(recipe r370 (key (sy370 ing50))) +(recipe r370 (key (sx370 ing511))) +(recipe r370 (key (sy370 ing51))) +(recipe r370 (key (sx370 ing512))) +(recipe r370 (key (sy370 ing52))) +(recipe r370 (key (sx370 ing513))) +(recipe r370 (key (sy370 ing53))) +(recipe r370 (key (sx370 ing514))) +(recipe r370 (key (sy370 ing54))) +(recipe r370 (key (sx370 ing515))) +(recipe r370 (key (sy370 ing55))) +(recipe r370 (key (sx370 ing516))) +(recipe r370 (key (sy370 ing56))) +(recipe r370 (key (sx370 ing517))) +(recipe r370 (key (sy370 ing57))) +(recipe r370 (key (sx370 ing518))) +(recipe r370 (key (sy370 ing58))) +(recipe r370 (key (sx370 ing519))) +(recipe r370 (key (sy370 ing59))) +(recipe r370 (key (sx370 ing520))) +(recipe r370 (key (sy370 ing60))) +(recipe r370 (key (sx370 ing521))) +(recipe r370 (key (sy370 ing61))) +(recipe r371 (numIngredients 2)) +(recipe r371 (result (id item371))) +(recipe r371 (pattern 0 sx371)) +(recipe r371 (pattern 1 sy371)) +(recipe r371 (key (sx371 ing513))) +(recipe r371 (key (sy371 ing55))) +(recipe r371 (key (sx371 ing514))) +(recipe r371 (key (sy371 ing56))) +(recipe r371 (key (sx371 ing515))) +(recipe r371 (key (sy371 ing57))) +(recipe r371 (key (sx371 ing516))) +(recipe r371 (key (sy371 ing58))) +(recipe r371 (key (sx371 ing517))) +(recipe r371 (key (sy371 ing59))) +(recipe r371 (key (sx371 ing518))) +(recipe r371 (key (sy371 ing60))) +(recipe r371 (key (sx371 ing519))) +(recipe r371 (key (sy371 ing61))) +(recipe r371 (key (sx371 ing520))) +(recipe r371 (key (sy371 ing62))) +(recipe r371 (key (sx371 ing521))) +(recipe r371 (key (sy371 ing63))) +(recipe r371 (key (sx371 ing522))) +(recipe r371 (key (sy371 ing64))) +(recipe r371 (key (sx371 ing523))) +(recipe r371 (key (sy371 ing65))) +(recipe r371 (key (sx371 ing524))) +(recipe r371 (key (sy371 ing66))) +(recipe r372 (numIngredients 2)) +(recipe r372 (result (id item372))) +(recipe r372 (pattern 0 sx372)) +(recipe r372 (pattern 1 sy372)) +(recipe r372 (key (sx372 ing516))) +(recipe r372 (key (sy372 ing60))) +(recipe r372 (key (sx372 ing517))) +(recipe r372 (key (sy372 ing61))) +(recipe r372 (key (sx372 ing518))) +(recipe r372 (key (sy372 ing62))) +(recipe r372 (key (sx372 ing519))) +(recipe r372 (key (sy372 ing63))) +(recipe r372 (key (sx372 ing520))) +(recipe r372 (key (sy372 ing64))) +(recipe r372 (key (sx372 ing521))) +(recipe r372 (key (sy372 ing65))) +(recipe r372 (key (sx372 ing522))) +(recipe r372 (key (sy372 ing66))) +(recipe r372 (key (sx372 ing523))) +(recipe r372 (key (sy372 ing67))) +(recipe r372 (key (sx372 ing524))) +(recipe r372 (key (sy372 ing68))) +(recipe r372 (key (sx372 ing525))) +(recipe r372 (key (sy372 ing69))) +(recipe r372 (key (sx372 ing526))) +(recipe r372 (key (sy372 ing70))) +(recipe r372 (key (sx372 ing527))) +(recipe r372 (key (sy372 ing71))) +(recipe r373 (numIngredients 2)) +(recipe r373 (result (id item373))) +(recipe r373 (pattern 0 sx373)) +(recipe r373 (pattern 1 sy373)) +(recipe r373 (key (sx373 ing519))) +(recipe r373 (key (sy373 ing65))) +(recipe r373 (key (sx373 ing520))) +(recipe r373 (key (sy373 ing66))) +(recipe r373 (key (sx373 ing521))) +(recipe r373 (key (sy373 ing67))) +(recipe r373 (key (sx373 ing522))) +(recipe r373 (key (sy373 ing68))) +(recipe r373 (key (sx373 ing523))) +(recipe r373 (key (sy373 ing69))) +(recipe r373 (key (sx373 ing524))) +(recipe r373 (key (sy373 ing70))) +(recipe r373 (key (sx373 ing525))) +(recipe r373 (key (sy373 ing71))) +(recipe r373 (key (sx373 ing526))) +(recipe r373 (key (sy373 ing72))) +(recipe r373 (key (sx373 ing527))) +(recipe r373 (key (sy373 ing73))) +(recipe r373 (key (sx373 ing528))) +(recipe r373 (key (sy373 ing74))) +(recipe r373 (key (sx373 ing529))) +(recipe r373 (key (sy373 ing75))) +(recipe r373 (key (sx373 ing530))) +(recipe r373 (key (sy373 ing76))) +(recipe r374 (numIngredients 2)) +(recipe r374 (result (id item374))) +(recipe r374 (pattern 0 sx374)) +(recipe r374 (pattern 1 sy374)) +(recipe r374 (key (sx374 ing522))) +(recipe r374 (key (sy374 ing70))) +(recipe r374 (key (sx374 ing523))) +(recipe r374 (key (sy374 ing71))) +(recipe r374 (key (sx374 ing524))) +(recipe r374 (key (sy374 ing72))) +(recipe r374 (key (sx374 ing525))) +(recipe r374 (key (sy374 ing73))) +(recipe r374 (key (sx374 ing526))) +(recipe r374 (key (sy374 ing74))) +(recipe r374 (key (sx374 ing527))) +(recipe r374 (key (sy374 ing75))) +(recipe r374 (key (sx374 ing528))) +(recipe r374 (key (sy374 ing76))) +(recipe r374 (key (sx374 ing529))) +(recipe r374 (key (sy374 ing77))) +(recipe r374 (key (sx374 ing530))) +(recipe r374 (key (sy374 ing78))) +(recipe r374 (key (sx374 ing531))) +(recipe r374 (key (sy374 ing79))) +(recipe r374 (key (sx374 ing532))) +(recipe r374 (key (sy374 ing80))) +(recipe r374 (key (sx374 ing533))) +(recipe r374 (key (sy374 ing81))) +(recipe r375 (numIngredients 2)) +(recipe r375 (result (id item375))) +(recipe r375 (pattern 0 sx375)) +(recipe r375 (pattern 1 sy375)) +(recipe r375 (key (sx375 ing525))) +(recipe r375 (key (sy375 ing75))) +(recipe r375 (key (sx375 ing526))) +(recipe r375 (key (sy375 ing76))) +(recipe r375 (key (sx375 ing527))) +(recipe r375 (key (sy375 ing77))) +(recipe r375 (key (sx375 ing528))) +(recipe r375 (key (sy375 ing78))) +(recipe r375 (key (sx375 ing529))) +(recipe r375 (key (sy375 ing79))) +(recipe r375 (key (sx375 ing530))) +(recipe r375 (key (sy375 ing80))) +(recipe r375 (key (sx375 ing531))) +(recipe r375 (key (sy375 ing81))) +(recipe r375 (key (sx375 ing532))) +(recipe r375 (key (sy375 ing82))) +(recipe r375 (key (sx375 ing533))) +(recipe r375 (key (sy375 ing83))) +(recipe r375 (key (sx375 ing534))) +(recipe r375 (key (sy375 ing84))) +(recipe r375 (key (sx375 ing535))) +(recipe r375 (key (sy375 ing85))) +(recipe r375 (key (sx375 ing536))) +(recipe r375 (key (sy375 ing86))) +(recipe r376 (numIngredients 2)) +(recipe r376 (result (id item376))) +(recipe r376 (pattern 0 sx376)) +(recipe r376 (pattern 1 sy376)) +(recipe r376 (key (sx376 ing528))) +(recipe r376 (key (sy376 ing80))) +(recipe r376 (key (sx376 ing529))) +(recipe r376 (key (sy376 ing81))) +(recipe r376 (key (sx376 ing530))) +(recipe r376 (key (sy376 ing82))) +(recipe r376 (key (sx376 ing531))) +(recipe r376 (key (sy376 ing83))) +(recipe r376 (key (sx376 ing532))) +(recipe r376 (key (sy376 ing84))) +(recipe r376 (key (sx376 ing533))) +(recipe r376 (key (sy376 ing85))) +(recipe r376 (key (sx376 ing534))) +(recipe r376 (key (sy376 ing86))) +(recipe r376 (key (sx376 ing535))) +(recipe r376 (key (sy376 ing87))) +(recipe r376 (key (sx376 ing536))) +(recipe r376 (key (sy376 ing88))) +(recipe r376 (key (sx376 ing537))) +(recipe r376 (key (sy376 ing89))) +(recipe r376 (key (sx376 ing538))) +(recipe r376 (key (sy376 ing90))) +(recipe r376 (key (sx376 ing539))) +(recipe r376 (key (sy376 ing91))) +(recipe r377 (numIngredients 2)) +(recipe r377 (result (id item377))) +(recipe r377 (pattern 0 sx377)) +(recipe r377 (pattern 1 sy377)) +(recipe r377 (key (sx377 ing531))) +(recipe r377 (key (sy377 ing85))) +(recipe r377 (key (sx377 ing532))) +(recipe r377 (key (sy377 ing86))) +(recipe r377 (key (sx377 ing533))) +(recipe r377 (key (sy377 ing87))) +(recipe r377 (key (sx377 ing534))) +(recipe r377 (key (sy377 ing88))) +(recipe r377 (key (sx377 ing535))) +(recipe r377 (key (sy377 ing89))) +(recipe r377 (key (sx377 ing536))) +(recipe r377 (key (sy377 ing90))) +(recipe r377 (key (sx377 ing537))) +(recipe r377 (key (sy377 ing91))) +(recipe r377 (key (sx377 ing538))) +(recipe r377 (key (sy377 ing92))) +(recipe r377 (key (sx377 ing539))) +(recipe r377 (key (sy377 ing93))) +(recipe r377 (key (sx377 ing540))) +(recipe r377 (key (sy377 ing94))) +(recipe r377 (key (sx377 ing541))) +(recipe r377 (key (sy377 ing95))) +(recipe r377 (key (sx377 ing542))) +(recipe r377 (key (sy377 ing96))) +(recipe r378 (numIngredients 2)) +(recipe r378 (result (id item378))) +(recipe r378 (pattern 0 sx378)) +(recipe r378 (pattern 1 sy378)) +(recipe r378 (key (sx378 ing534))) +(recipe r378 (key (sy378 ing90))) +(recipe r378 (key (sx378 ing535))) +(recipe r378 (key (sy378 ing91))) +(recipe r378 (key (sx378 ing536))) +(recipe r378 (key (sy378 ing92))) +(recipe r378 (key (sx378 ing537))) +(recipe r378 (key (sy378 ing93))) +(recipe r378 (key (sx378 ing538))) +(recipe r378 (key (sy378 ing94))) +(recipe r378 (key (sx378 ing539))) +(recipe r378 (key (sy378 ing95))) +(recipe r378 (key (sx378 ing540))) +(recipe r378 (key (sy378 ing96))) +(recipe r378 (key (sx378 ing541))) +(recipe r378 (key (sy378 ing97))) +(recipe r378 (key (sx378 ing542))) +(recipe r378 (key (sy378 ing98))) +(recipe r378 (key (sx378 ing543))) +(recipe r378 (key (sy378 ing99))) +(recipe r378 (key (sx378 ing544))) +(recipe r378 (key (sy378 ing100))) +(recipe r378 (key (sx378 ing545))) +(recipe r378 (key (sy378 ing101))) +(recipe r379 (numIngredients 2)) +(recipe r379 (result (id item379))) +(recipe r379 (pattern 0 sx379)) +(recipe r379 (pattern 1 sy379)) +(recipe r379 (key (sx379 ing537))) +(recipe r379 (key (sy379 ing95))) +(recipe r379 (key (sx379 ing538))) +(recipe r379 (key (sy379 ing96))) +(recipe r379 (key (sx379 ing539))) +(recipe r379 (key (sy379 ing97))) +(recipe r379 (key (sx379 ing540))) +(recipe r379 (key (sy379 ing98))) +(recipe r379 (key (sx379 ing541))) +(recipe r379 (key (sy379 ing99))) +(recipe r379 (key (sx379 ing542))) +(recipe r379 (key (sy379 ing100))) +(recipe r379 (key (sx379 ing543))) +(recipe r379 (key (sy379 ing101))) +(recipe r379 (key (sx379 ing544))) +(recipe r379 (key (sy379 ing102))) +(recipe r379 (key (sx379 ing545))) +(recipe r379 (key (sy379 ing103))) +(recipe r379 (key (sx379 ing546))) +(recipe r379 (key (sy379 ing104))) +(recipe r379 (key (sx379 ing547))) +(recipe r379 (key (sy379 ing105))) +(recipe r379 (key (sx379 ing548))) +(recipe r379 (key (sy379 ing106))) +(recipe r380 (numIngredients 2)) +(recipe r380 (result (id item380))) +(recipe r380 (pattern 0 sx380)) +(recipe r380 (pattern 1 sy380)) +(recipe r380 (key (sx380 ing540))) +(recipe r380 (key (sy380 ing100))) +(recipe r380 (key (sx380 ing541))) +(recipe r380 (key (sy380 ing101))) +(recipe r380 (key (sx380 ing542))) +(recipe r380 (key (sy380 ing102))) +(recipe r380 (key (sx380 ing543))) +(recipe r380 (key (sy380 ing103))) +(recipe r380 (key (sx380 ing544))) +(recipe r380 (key (sy380 ing104))) +(recipe r380 (key (sx380 ing545))) +(recipe r380 (key (sy380 ing105))) +(recipe r380 (key (sx380 ing546))) +(recipe r380 (key (sy380 ing106))) +(recipe r380 (key (sx380 ing547))) +(recipe r380 (key (sy380 ing107))) +(recipe r380 (key (sx380 ing548))) +(recipe r380 (key (sy380 ing108))) +(recipe r380 (key (sx380 ing549))) +(recipe r380 (key (sy380 ing109))) +(recipe r380 (key (sx380 ing550))) +(recipe r380 (key (sy380 ing110))) +(recipe r380 (key (sx380 ing551))) +(recipe r380 (key (sy380 ing111))) +(recipe r381 (numIngredients 2)) +(recipe r381 (result (id item381))) +(recipe r381 (pattern 0 sx381)) +(recipe r381 (pattern 1 sy381)) +(recipe r381 (key (sx381 ing543))) +(recipe r381 (key (sy381 ing105))) +(recipe r381 (key (sx381 ing544))) +(recipe r381 (key (sy381 ing106))) +(recipe r381 (key (sx381 ing545))) +(recipe r381 (key (sy381 ing107))) +(recipe r381 (key (sx381 ing546))) +(recipe r381 (key (sy381 ing108))) +(recipe r381 (key (sx381 ing547))) +(recipe r381 (key (sy381 ing109))) +(recipe r381 (key (sx381 ing548))) +(recipe r381 (key (sy381 ing110))) +(recipe r381 (key (sx381 ing549))) +(recipe r381 (key (sy381 ing111))) +(recipe r381 (key (sx381 ing550))) +(recipe r381 (key (sy381 ing112))) +(recipe r381 (key (sx381 ing551))) +(recipe r381 (key (sy381 ing113))) +(recipe r381 (key (sx381 ing552))) +(recipe r381 (key (sy381 ing114))) +(recipe r381 (key (sx381 ing553))) +(recipe r381 (key (sy381 ing115))) +(recipe r381 (key (sx381 ing554))) +(recipe r381 (key (sy381 ing116))) +(recipe r382 (numIngredients 2)) +(recipe r382 (result (id item382))) +(recipe r382 (pattern 0 sx382)) +(recipe r382 (pattern 1 sy382)) +(recipe r382 (key (sx382 ing546))) +(recipe r382 (key (sy382 ing110))) +(recipe r382 (key (sx382 ing547))) +(recipe r382 (key (sy382 ing111))) +(recipe r382 (key (sx382 ing548))) +(recipe r382 (key (sy382 ing112))) +(recipe r382 (key (sx382 ing549))) +(recipe r382 (key (sy382 ing113))) +(recipe r382 (key (sx382 ing550))) +(recipe r382 (key (sy382 ing114))) +(recipe r382 (key (sx382 ing551))) +(recipe r382 (key (sy382 ing115))) +(recipe r382 (key (sx382 ing552))) +(recipe r382 (key (sy382 ing116))) +(recipe r382 (key (sx382 ing553))) +(recipe r382 (key (sy382 ing117))) +(recipe r382 (key (sx382 ing554))) +(recipe r382 (key (sy382 ing118))) +(recipe r382 (key (sx382 ing555))) +(recipe r382 (key (sy382 ing119))) +(recipe r382 (key (sx382 ing556))) +(recipe r382 (key (sy382 ing120))) +(recipe r382 (key (sx382 ing557))) +(recipe r382 (key (sy382 ing121))) +(recipe r383 (numIngredients 2)) +(recipe r383 (result (id item383))) +(recipe r383 (pattern 0 sx383)) +(recipe r383 (pattern 1 sy383)) +(recipe r383 (key (sx383 ing549))) +(recipe r383 (key (sy383 ing115))) +(recipe r383 (key (sx383 ing550))) +(recipe r383 (key (sy383 ing116))) +(recipe r383 (key (sx383 ing551))) +(recipe r383 (key (sy383 ing117))) +(recipe r383 (key (sx383 ing552))) +(recipe r383 (key (sy383 ing118))) +(recipe r383 (key (sx383 ing553))) +(recipe r383 (key (sy383 ing119))) +(recipe r383 (key (sx383 ing554))) +(recipe r383 (key (sy383 ing120))) +(recipe r383 (key (sx383 ing555))) +(recipe r383 (key (sy383 ing121))) +(recipe r383 (key (sx383 ing556))) +(recipe r383 (key (sy383 ing122))) +(recipe r383 (key (sx383 ing557))) +(recipe r383 (key (sy383 ing123))) +(recipe r383 (key (sx383 ing558))) +(recipe r383 (key (sy383 ing124))) +(recipe r383 (key (sx383 ing559))) +(recipe r383 (key (sy383 ing125))) +(recipe r383 (key (sx383 ing560))) +(recipe r383 (key (sy383 ing126))) +(recipe r384 (numIngredients 2)) +(recipe r384 (result (id item384))) +(recipe r384 (pattern 0 sx384)) +(recipe r384 (pattern 1 sy384)) +(recipe r384 (key (sx384 ing552))) +(recipe r384 (key (sy384 ing120))) +(recipe r384 (key (sx384 ing553))) +(recipe r384 (key (sy384 ing121))) +(recipe r384 (key (sx384 ing554))) +(recipe r384 (key (sy384 ing122))) +(recipe r384 (key (sx384 ing555))) +(recipe r384 (key (sy384 ing123))) +(recipe r384 (key (sx384 ing556))) +(recipe r384 (key (sy384 ing124))) +(recipe r384 (key (sx384 ing557))) +(recipe r384 (key (sy384 ing125))) +(recipe r384 (key (sx384 ing558))) +(recipe r384 (key (sy384 ing126))) +(recipe r384 (key (sx384 ing559))) +(recipe r384 (key (sy384 ing127))) +(recipe r384 (key (sx384 ing560))) +(recipe r384 (key (sy384 ing128))) +(recipe r384 (key (sx384 ing561))) +(recipe r384 (key (sy384 ing129))) +(recipe r384 (key (sx384 ing562))) +(recipe r384 (key (sy384 ing130))) +(recipe r384 (key (sx384 ing563))) +(recipe r384 (key (sy384 ing131))) +(recipe r385 (numIngredients 2)) +(recipe r385 (result (id item385))) +(recipe r385 (pattern 0 sx385)) +(recipe r385 (pattern 1 sy385)) +(recipe r385 (key (sx385 ing555))) +(recipe r385 (key (sy385 ing125))) +(recipe r385 (key (sx385 ing556))) +(recipe r385 (key (sy385 ing126))) +(recipe r385 (key (sx385 ing557))) +(recipe r385 (key (sy385 ing127))) +(recipe r385 (key (sx385 ing558))) +(recipe r385 (key (sy385 ing128))) +(recipe r385 (key (sx385 ing559))) +(recipe r385 (key (sy385 ing129))) +(recipe r385 (key (sx385 ing560))) +(recipe r385 (key (sy385 ing130))) +(recipe r385 (key (sx385 ing561))) +(recipe r385 (key (sy385 ing131))) +(recipe r385 (key (sx385 ing562))) +(recipe r385 (key (sy385 ing132))) +(recipe r385 (key (sx385 ing563))) +(recipe r385 (key (sy385 ing133))) +(recipe r385 (key (sx385 ing564))) +(recipe r385 (key (sy385 ing134))) +(recipe r385 (key (sx385 ing565))) +(recipe r385 (key (sy385 ing135))) +(recipe r385 (key (sx385 ing566))) +(recipe r385 (key (sy385 ing136))) +(recipe r386 (numIngredients 2)) +(recipe r386 (result (id item386))) +(recipe r386 (pattern 0 sx386)) +(recipe r386 (pattern 1 sy386)) +(recipe r386 (key (sx386 ing558))) +(recipe r386 (key (sy386 ing130))) +(recipe r386 (key (sx386 ing559))) +(recipe r386 (key (sy386 ing131))) +(recipe r386 (key (sx386 ing560))) +(recipe r386 (key (sy386 ing132))) +(recipe r386 (key (sx386 ing561))) +(recipe r386 (key (sy386 ing133))) +(recipe r386 (key (sx386 ing562))) +(recipe r386 (key (sy386 ing134))) +(recipe r386 (key (sx386 ing563))) +(recipe r386 (key (sy386 ing135))) +(recipe r386 (key (sx386 ing564))) +(recipe r386 (key (sy386 ing136))) +(recipe r386 (key (sx386 ing565))) +(recipe r386 (key (sy386 ing137))) +(recipe r386 (key (sx386 ing566))) +(recipe r386 (key (sy386 ing138))) +(recipe r386 (key (sx386 ing567))) +(recipe r386 (key (sy386 ing139))) +(recipe r386 (key (sx386 ing568))) +(recipe r386 (key (sy386 ing140))) +(recipe r386 (key (sx386 ing569))) +(recipe r386 (key (sy386 ing141))) +(recipe r387 (numIngredients 2)) +(recipe r387 (result (id item387))) +(recipe r387 (pattern 0 sx387)) +(recipe r387 (pattern 1 sy387)) +(recipe r387 (key (sx387 ing561))) +(recipe r387 (key (sy387 ing135))) +(recipe r387 (key (sx387 ing562))) +(recipe r387 (key (sy387 ing136))) +(recipe r387 (key (sx387 ing563))) +(recipe r387 (key (sy387 ing137))) +(recipe r387 (key (sx387 ing564))) +(recipe r387 (key (sy387 ing138))) +(recipe r387 (key (sx387 ing565))) +(recipe r387 (key (sy387 ing139))) +(recipe r387 (key (sx387 ing566))) +(recipe r387 (key (sy387 ing140))) +(recipe r387 (key (sx387 ing567))) +(recipe r387 (key (sy387 ing141))) +(recipe r387 (key (sx387 ing568))) +(recipe r387 (key (sy387 ing142))) +(recipe r387 (key (sx387 ing569))) +(recipe r387 (key (sy387 ing143))) +(recipe r387 (key (sx387 ing570))) +(recipe r387 (key (sy387 ing144))) +(recipe r387 (key (sx387 ing571))) +(recipe r387 (key (sy387 ing145))) +(recipe r387 (key (sx387 ing572))) +(recipe r387 (key (sy387 ing146))) +(recipe r388 (numIngredients 2)) +(recipe r388 (result (id item388))) +(recipe r388 (pattern 0 sx388)) +(recipe r388 (pattern 1 sy388)) +(recipe r388 (key (sx388 ing564))) +(recipe r388 (key (sy388 ing140))) +(recipe r388 (key (sx388 ing565))) +(recipe r388 (key (sy388 ing141))) +(recipe r388 (key (sx388 ing566))) +(recipe r388 (key (sy388 ing142))) +(recipe r388 (key (sx388 ing567))) +(recipe r388 (key (sy388 ing143))) +(recipe r388 (key (sx388 ing568))) +(recipe r388 (key (sy388 ing144))) +(recipe r388 (key (sx388 ing569))) +(recipe r388 (key (sy388 ing145))) +(recipe r388 (key (sx388 ing570))) +(recipe r388 (key (sy388 ing146))) +(recipe r388 (key (sx388 ing571))) +(recipe r388 (key (sy388 ing147))) +(recipe r388 (key (sx388 ing572))) +(recipe r388 (key (sy388 ing148))) +(recipe r388 (key (sx388 ing573))) +(recipe r388 (key (sy388 ing149))) +(recipe r388 (key (sx388 ing574))) +(recipe r388 (key (sy388 ing150))) +(recipe r388 (key (sx388 ing575))) +(recipe r388 (key (sy388 ing151))) +(recipe r389 (numIngredients 2)) +(recipe r389 (result (id item389))) +(recipe r389 (pattern 0 sx389)) +(recipe r389 (pattern 1 sy389)) +(recipe r389 (key (sx389 ing567))) +(recipe r389 (key (sy389 ing145))) +(recipe r389 (key (sx389 ing568))) +(recipe r389 (key (sy389 ing146))) +(recipe r389 (key (sx389 ing569))) +(recipe r389 (key (sy389 ing147))) +(recipe r389 (key (sx389 ing570))) +(recipe r389 (key (sy389 ing148))) +(recipe r389 (key (sx389 ing571))) +(recipe r389 (key (sy389 ing149))) +(recipe r389 (key (sx389 ing572))) +(recipe r389 (key (sy389 ing150))) +(recipe r389 (key (sx389 ing573))) +(recipe r389 (key (sy389 ing151))) +(recipe r389 (key (sx389 ing574))) +(recipe r389 (key (sy389 ing152))) +(recipe r389 (key (sx389 ing575))) +(recipe r389 (key (sy389 ing153))) +(recipe r389 (key (sx389 ing576))) +(recipe r389 (key (sy389 ing154))) +(recipe r389 (key (sx389 ing577))) +(recipe r389 (key (sy389 ing155))) +(recipe r389 (key (sx389 ing578))) +(recipe r389 (key (sy389 ing156))) +(recipe r390 (numIngredients 2)) +(recipe r390 (result (id item390))) +(recipe r390 (pattern 0 sx390)) +(recipe r390 (pattern 1 sy390)) +(recipe r390 (key (sx390 ing570))) +(recipe r390 (key (sy390 ing150))) +(recipe r390 (key (sx390 ing571))) +(recipe r390 (key (sy390 ing151))) +(recipe r390 (key (sx390 ing572))) +(recipe r390 (key (sy390 ing152))) +(recipe r390 (key (sx390 ing573))) +(recipe r390 (key (sy390 ing153))) +(recipe r390 (key (sx390 ing574))) +(recipe r390 (key (sy390 ing154))) +(recipe r390 (key (sx390 ing575))) +(recipe r390 (key (sy390 ing155))) +(recipe r390 (key (sx390 ing576))) +(recipe r390 (key (sy390 ing156))) +(recipe r390 (key (sx390 ing577))) +(recipe r390 (key (sy390 ing157))) +(recipe r390 (key (sx390 ing578))) +(recipe r390 (key (sy390 ing158))) +(recipe r390 (key (sx390 ing579))) +(recipe r390 (key (sy390 ing159))) +(recipe r390 (key (sx390 ing580))) +(recipe r390 (key (sy390 ing160))) +(recipe r390 (key (sx390 ing581))) +(recipe r390 (key (sy390 ing161))) +(recipe r391 (numIngredients 2)) +(recipe r391 (result (id item391))) +(recipe r391 (pattern 0 sx391)) +(recipe r391 (pattern 1 sy391)) +(recipe r391 (key (sx391 ing573))) +(recipe r391 (key (sy391 ing155))) +(recipe r391 (key (sx391 ing574))) +(recipe r391 (key (sy391 ing156))) +(recipe r391 (key (sx391 ing575))) +(recipe r391 (key (sy391 ing157))) +(recipe r391 (key (sx391 ing576))) +(recipe r391 (key (sy391 ing158))) +(recipe r391 (key (sx391 ing577))) +(recipe r391 (key (sy391 ing159))) +(recipe r391 (key (sx391 ing578))) +(recipe r391 (key (sy391 ing160))) +(recipe r391 (key (sx391 ing579))) +(recipe r391 (key (sy391 ing161))) +(recipe r391 (key (sx391 ing580))) +(recipe r391 (key (sy391 ing162))) +(recipe r391 (key (sx391 ing581))) +(recipe r391 (key (sy391 ing163))) +(recipe r391 (key (sx391 ing582))) +(recipe r391 (key (sy391 ing164))) +(recipe r391 (key (sx391 ing583))) +(recipe r391 (key (sy391 ing165))) +(recipe r391 (key (sx391 ing584))) +(recipe r391 (key (sy391 ing166))) +(recipe r392 (numIngredients 2)) +(recipe r392 (result (id item392))) +(recipe r392 (pattern 0 sx392)) +(recipe r392 (pattern 1 sy392)) +(recipe r392 (key (sx392 ing576))) +(recipe r392 (key (sy392 ing160))) +(recipe r392 (key (sx392 ing577))) +(recipe r392 (key (sy392 ing161))) +(recipe r392 (key (sx392 ing578))) +(recipe r392 (key (sy392 ing162))) +(recipe r392 (key (sx392 ing579))) +(recipe r392 (key (sy392 ing163))) +(recipe r392 (key (sx392 ing580))) +(recipe r392 (key (sy392 ing164))) +(recipe r392 (key (sx392 ing581))) +(recipe r392 (key (sy392 ing165))) +(recipe r392 (key (sx392 ing582))) +(recipe r392 (key (sy392 ing166))) +(recipe r392 (key (sx392 ing583))) +(recipe r392 (key (sy392 ing167))) +(recipe r392 (key (sx392 ing584))) +(recipe r392 (key (sy392 ing168))) +(recipe r392 (key (sx392 ing585))) +(recipe r392 (key (sy392 ing169))) +(recipe r392 (key (sx392 ing586))) +(recipe r392 (key (sy392 ing170))) +(recipe r392 (key (sx392 ing587))) +(recipe r392 (key (sy392 ing171))) +(recipe r393 (numIngredients 2)) +(recipe r393 (result (id item393))) +(recipe r393 (pattern 0 sx393)) +(recipe r393 (pattern 1 sy393)) +(recipe r393 (key (sx393 ing579))) +(recipe r393 (key (sy393 ing165))) +(recipe r393 (key (sx393 ing580))) +(recipe r393 (key (sy393 ing166))) +(recipe r393 (key (sx393 ing581))) +(recipe r393 (key (sy393 ing167))) +(recipe r393 (key (sx393 ing582))) +(recipe r393 (key (sy393 ing168))) +(recipe r393 (key (sx393 ing583))) +(recipe r393 (key (sy393 ing169))) +(recipe r393 (key (sx393 ing584))) +(recipe r393 (key (sy393 ing170))) +(recipe r393 (key (sx393 ing585))) +(recipe r393 (key (sy393 ing171))) +(recipe r393 (key (sx393 ing586))) +(recipe r393 (key (sy393 ing172))) +(recipe r393 (key (sx393 ing587))) +(recipe r393 (key (sy393 ing173))) +(recipe r393 (key (sx393 ing588))) +(recipe r393 (key (sy393 ing174))) +(recipe r393 (key (sx393 ing589))) +(recipe r393 (key (sy393 ing175))) +(recipe r393 (key (sx393 ing590))) +(recipe r393 (key (sy393 ing176))) +(recipe r394 (numIngredients 2)) +(recipe r394 (result (id item394))) +(recipe r394 (pattern 0 sx394)) +(recipe r394 (pattern 1 sy394)) +(recipe r394 (key (sx394 ing582))) +(recipe r394 (key (sy394 ing170))) +(recipe r394 (key (sx394 ing583))) +(recipe r394 (key (sy394 ing171))) +(recipe r394 (key (sx394 ing584))) +(recipe r394 (key (sy394 ing172))) +(recipe r394 (key (sx394 ing585))) +(recipe r394 (key (sy394 ing173))) +(recipe r394 (key (sx394 ing586))) +(recipe r394 (key (sy394 ing174))) +(recipe r394 (key (sx394 ing587))) +(recipe r394 (key (sy394 ing175))) +(recipe r394 (key (sx394 ing588))) +(recipe r394 (key (sy394 ing176))) +(recipe r394 (key (sx394 ing589))) +(recipe r394 (key (sy394 ing177))) +(recipe r394 (key (sx394 ing590))) +(recipe r394 (key (sy394 ing178))) +(recipe r394 (key (sx394 ing591))) +(recipe r394 (key (sy394 ing179))) +(recipe r394 (key (sx394 ing592))) +(recipe r394 (key (sy394 ing180))) +(recipe r394 (key (sx394 ing593))) +(recipe r394 (key (sy394 ing181))) +(recipe r395 (numIngredients 2)) +(recipe r395 (result (id item395))) +(recipe r395 (pattern 0 sx395)) +(recipe r395 (pattern 1 sy395)) +(recipe r395 (key (sx395 ing585))) +(recipe r395 (key (sy395 ing175))) +(recipe r395 (key (sx395 ing586))) +(recipe r395 (key (sy395 ing176))) +(recipe r395 (key (sx395 ing587))) +(recipe r395 (key (sy395 ing177))) +(recipe r395 (key (sx395 ing588))) +(recipe r395 (key (sy395 ing178))) +(recipe r395 (key (sx395 ing589))) +(recipe r395 (key (sy395 ing179))) +(recipe r395 (key (sx395 ing590))) +(recipe r395 (key (sy395 ing180))) +(recipe r395 (key (sx395 ing591))) +(recipe r395 (key (sy395 ing181))) +(recipe r395 (key (sx395 ing592))) +(recipe r395 (key (sy395 ing182))) +(recipe r395 (key (sx395 ing593))) +(recipe r395 (key (sy395 ing183))) +(recipe r395 (key (sx395 ing594))) +(recipe r395 (key (sy395 ing184))) +(recipe r395 (key (sx395 ing595))) +(recipe r395 (key (sy395 ing185))) +(recipe r395 (key (sx395 ing596))) +(recipe r395 (key (sy395 ing186))) +(recipe r396 (numIngredients 2)) +(recipe r396 (result (id item396))) +(recipe r396 (pattern 0 sx396)) +(recipe r396 (pattern 1 sy396)) +(recipe r396 (key (sx396 ing588))) +(recipe r396 (key (sy396 ing180))) +(recipe r396 (key (sx396 ing589))) +(recipe r396 (key (sy396 ing181))) +(recipe r396 (key (sx396 ing590))) +(recipe r396 (key (sy396 ing182))) +(recipe r396 (key (sx396 ing591))) +(recipe r396 (key (sy396 ing183))) +(recipe r396 (key (sx396 ing592))) +(recipe r396 (key (sy396 ing184))) +(recipe r396 (key (sx396 ing593))) +(recipe r396 (key (sy396 ing185))) +(recipe r396 (key (sx396 ing594))) +(recipe r396 (key (sy396 ing186))) +(recipe r396 (key (sx396 ing595))) +(recipe r396 (key (sy396 ing187))) +(recipe r396 (key (sx396 ing596))) +(recipe r396 (key (sy396 ing188))) +(recipe r396 (key (sx396 ing597))) +(recipe r396 (key (sy396 ing189))) +(recipe r396 (key (sx396 ing598))) +(recipe r396 (key (sy396 ing190))) +(recipe r396 (key (sx396 ing599))) +(recipe r396 (key (sy396 ing191))) +(recipe r397 (numIngredients 2)) +(recipe r397 (result (id item397))) +(recipe r397 (pattern 0 sx397)) +(recipe r397 (pattern 1 sy397)) +(recipe r397 (key (sx397 ing591))) +(recipe r397 (key (sy397 ing185))) +(recipe r397 (key (sx397 ing592))) +(recipe r397 (key (sy397 ing186))) +(recipe r397 (key (sx397 ing593))) +(recipe r397 (key (sy397 ing187))) +(recipe r397 (key (sx397 ing594))) +(recipe r397 (key (sy397 ing188))) +(recipe r397 (key (sx397 ing595))) +(recipe r397 (key (sy397 ing189))) +(recipe r397 (key (sx397 ing596))) +(recipe r397 (key (sy397 ing190))) +(recipe r397 (key (sx397 ing597))) +(recipe r397 (key (sy397 ing191))) +(recipe r397 (key (sx397 ing598))) +(recipe r397 (key (sy397 ing192))) +(recipe r397 (key (sx397 ing599))) +(recipe r397 (key (sy397 ing193))) +(recipe r397 (key (sx397 ing0))) +(recipe r397 (key (sy397 ing194))) +(recipe r397 (key (sx397 ing1))) +(recipe r397 (key (sy397 ing195))) +(recipe r397 (key (sx397 ing2))) +(recipe r397 (key (sy397 ing196))) +(recipe r398 (numIngredients 2)) +(recipe r398 (result (id item398))) +(recipe r398 (pattern 0 sx398)) +(recipe r398 (pattern 1 sy398)) +(recipe r398 (key (sx398 ing594))) +(recipe r398 (key (sy398 ing190))) +(recipe r398 (key (sx398 ing595))) +(recipe r398 (key (sy398 ing191))) +(recipe r398 (key (sx398 ing596))) +(recipe r398 (key (sy398 ing192))) +(recipe r398 (key (sx398 ing597))) +(recipe r398 (key (sy398 ing193))) +(recipe r398 (key (sx398 ing598))) +(recipe r398 (key (sy398 ing194))) +(recipe r398 (key (sx398 ing599))) +(recipe r398 (key (sy398 ing195))) +(recipe r398 (key (sx398 ing0))) +(recipe r398 (key (sy398 ing196))) +(recipe r398 (key (sx398 ing1))) +(recipe r398 (key (sy398 ing197))) +(recipe r398 (key (sx398 ing2))) +(recipe r398 (key (sy398 ing198))) +(recipe r398 (key (sx398 ing3))) +(recipe r398 (key (sy398 ing199))) +(recipe r398 (key (sx398 ing4))) +(recipe r398 (key (sy398 ing200))) +(recipe r398 (key (sx398 ing5))) +(recipe r398 (key (sy398 ing201))) +(recipe r399 (numIngredients 2)) +(recipe r399 (result (id item399))) +(recipe r399 (pattern 0 sx399)) +(recipe r399 (pattern 1 sy399)) +(recipe r399 (key (sx399 ing597))) +(recipe r399 (key (sy399 ing195))) +(recipe r399 (key (sx399 ing598))) +(recipe r399 (key (sy399 ing196))) +(recipe r399 (key (sx399 ing599))) +(recipe r399 (key (sy399 ing197))) +(recipe r399 (key (sx399 ing0))) +(recipe r399 (key (sy399 ing198))) +(recipe r399 (key (sx399 ing1))) +(recipe r399 (key (sy399 ing199))) +(recipe r399 (key (sx399 ing2))) +(recipe r399 (key (sy399 ing200))) +(recipe r399 (key (sx399 ing3))) +(recipe r399 (key (sy399 ing201))) +(recipe r399 (key (sx399 ing4))) +(recipe r399 (key (sy399 ing202))) +(recipe r399 (key (sx399 ing5))) +(recipe r399 (key (sy399 ing203))) +(recipe r399 (key (sx399 ing6))) +(recipe r399 (key (sy399 ing204))) +(recipe r399 (key (sx399 ing7))) +(recipe r399 (key (sy399 ing205))) +(recipe r399 (key (sx399 ing8))) +(recipe r399 (key (sy399 ing206))) +(inventory ing0) +(inventory ing1) +(inventory ing2) +(inventory ing3) +(inventory ing4) +(inventory ing5) +(inventory ing6) +(inventory ing7) +(inventory ing8) +(inventory ing9) +(inventory ing10) +(inventory ing11) +(inventory ing12) +(inventory ing13) +(inventory ing14) +(inventory ing15) +(inventory ing16) +(inventory ing17) +(inventory ing18) +(inventory ing19) +(inventory ing20) +(inventory ing21) +(inventory ing22) +(inventory ing23) +(inventory ing24) +(inventory ing25) +(inventory ing26) +(inventory ing27) +(inventory ing28) +(inventory ing29) +(inventory ing30) +(inventory ing31) +(inventory ing32) +(inventory ing33) +(inventory ing34) +(inventory ing35) +(inventory ing36) +(inventory ing37) +(inventory ing38) +(inventory ing39) +(inventory ing40) +(inventory ing41) +(inventory ing42) +(inventory ing43) +(inventory ing44) +(inventory ing45) +(inventory ing46) +(inventory ing47) +(inventory ing48) +(inventory ing49) +(inventory ing50) +(inventory ing51) +(inventory ing52) +(inventory ing53) +(inventory ing54) +(inventory ing55) +(inventory ing56) +(inventory ing57) +(inventory ing58) +(inventory ing59) +(inventory ing60) +(inventory ing61) +(inventory ing62) +(inventory ing63) +(inventory ing64) +(inventory ing65) +(inventory ing66) +(inventory ing67) +(inventory ing68) +(inventory ing69) +(inventory ing70) +(inventory ing71) +(inventory ing72) +(inventory ing73) +(inventory ing74) +(inventory ing75) +(inventory ing76) +(inventory ing77) +(inventory ing78) +(inventory ing79) +(inventory ing80) +(inventory ing81) +(inventory ing82) +(inventory ing83) +(inventory ing84) +(inventory ing85) +(inventory ing86) +(inventory ing87) +(inventory ing88) +(inventory ing89) +(inventory ing90) +(inventory ing91) +(inventory ing92) +(inventory ing93) +(inventory ing94) +(inventory ing95) +(inventory ing96) +(inventory ing97) +(inventory ing98) +(inventory ing99) +(inventory ing100) +(inventory ing101) +(inventory ing102) +(inventory ing103) +(inventory ing104) +(inventory ing105) +(inventory ing106) +(inventory ing107) +(inventory ing108) +(inventory ing109) +(inventory ing110) +(inventory ing111) +(inventory ing112) +(inventory ing113) +(inventory ing114) +(inventory ing115) +(inventory ing116) +(inventory ing117) +(inventory ing118) +(inventory ing119) +(inventory ing120) +(inventory ing121) +(inventory ing122) +(inventory ing123) +(inventory ing124) +(inventory ing125) +(inventory ing126) +(inventory ing127) +(inventory ing128) +(inventory ing129) +(inventory ing130) +(inventory ing131) +(inventory ing132) +(inventory ing133) +(inventory ing134) +(inventory ing135) +(inventory ing136) +(inventory ing137) +(inventory ing138) +(inventory ing139) +(inventory ing140) +(inventory ing141) +(inventory ing142) +(inventory ing143) +(inventory ing144) +(inventory ing145) +(inventory ing146) +(inventory ing147) +(inventory ing148) +(inventory ing149) +(inventory ing150) +(inventory ing151) +(inventory ing152) +(inventory ing153) +(inventory ing154) +(inventory ing155) +(inventory ing156) +(inventory ing157) +(inventory ing158) +(inventory ing159) +(inventory ing160) +(inventory ing161) +(inventory ing162) +(inventory ing163) +(inventory ing164) +(inventory ing165) +(inventory ing166) +(inventory ing167) +(inventory ing168) +(inventory ing169) +(inventory ing170) +(inventory ing171) +(inventory ing172) +(inventory ing173) +(inventory ing174) +(inventory ing175) +(inventory ing176) +(inventory ing177) +(inventory ing178) +(inventory ing179) +(inventory ing180) +(inventory ing181) +(inventory ing182) +(inventory ing183) +(inventory ing184) +(inventory ing185) +(inventory ing186) +(inventory ing187) +(inventory ing188) +(inventory ing189) +(inventory ing190) +(inventory ing191) +(inventory ing192) +(inventory ing193) +(inventory ing194) +(inventory ing195) +(inventory ing196) +(inventory ing197) +(inventory ing198) +(inventory ing199) +(inventory ing200) +(inventory ing201) +(inventory ing202) +(inventory ing203) +(inventory ing204) +(inventory ing205) +(inventory ing206) +(inventory ing207) +(inventory ing208) +(inventory ing209) +(inventory ing210) +(inventory ing211) +(inventory ing212) +(inventory ing213) +(inventory ing214) +(inventory ing215) +(inventory ing216) +(inventory ing217) +(inventory ing218) +(inventory ing219) +(inventory ing220) +(inventory ing221) +(inventory ing222) +(inventory ing223) +(inventory ing224) +(inventory ing225) +(inventory ing226) +(inventory ing227) +(inventory ing228) +(inventory ing229) +(inventory ing230) +(inventory ing231) +(inventory ing232) +(inventory ing233) +(inventory ing234) +(inventory ing235) +(inventory ing236) +(inventory ing237) +(inventory ing238) +(inventory ing239) +(inventory ing240) +(inventory ing241) +(inventory ing242) +(inventory ing243) +(inventory ing244) +(inventory ing245) +(inventory ing246) +(inventory ing247) +(inventory ing248) +(inventory ing249) +(inventory ing250) +(inventory ing251) +(inventory ing252) +(inventory ing253) +(inventory ing254) +(inventory ing255) +(inventory ing256) +(inventory ing257) +(inventory ing258) +(inventory ing259) +(inventory ing260) +(inventory ing261) +(inventory ing262) +(inventory ing263) +(inventory ing264) +(inventory ing265) +(inventory ing266) +(inventory ing267) +(inventory ing268) +(inventory ing269) +(inventory ing270) +(inventory ing271) +(inventory ing272) +(inventory ing273) +(inventory ing274) +(inventory ing275) +(inventory ing276) +(inventory ing277) +(inventory ing278) +(inventory ing279) +(inventory ing280) +(inventory ing281) +(inventory ing282) +(inventory ing283) +(inventory ing284) +(inventory ing285) +(inventory ing286) +(inventory ing287) +(inventory ing288) +(inventory ing289) +(inventory ing290) +(inventory ing291) +(inventory ing292) +(inventory ing293) +(inventory ing294) +(inventory ing295) +(inventory ing296) +(inventory ing297) +(inventory ing298) +(inventory ing299) +(inventory ing300) +(inventory ing301) +(inventory ing302) +(inventory ing303) +(inventory ing304) +(inventory ing305) +(inventory ing306) +(inventory ing307) +(inventory ing308) +(inventory ing309) +(inventory ing310) +(inventory ing311) +(inventory ing312) +(inventory ing313) +(inventory ing314) +(inventory ing315) +(inventory ing316) +(inventory ing317) +(inventory ing318) +(inventory ing319) +(inventory ing320) +(inventory ing321) +(inventory ing322) +(inventory ing323) +(inventory ing324) +(inventory ing325) +(inventory ing326) +(inventory ing327) +(inventory ing328) +(inventory ing329) +(inventory ing330) +(inventory ing331) +(inventory ing332) +(inventory ing333) +(inventory ing334) +(inventory ing335) +(inventory ing336) +(inventory ing337) +(inventory ing338) +(inventory ing339) +(inventory ing340) +(inventory ing341) +(inventory ing342) +(inventory ing343) +(inventory ing344) +(inventory ing345) +(inventory ing346) +(inventory ing347) +(inventory ing348) +(inventory ing349) +(inventory ing350) +(inventory ing351) +(inventory ing352) +(inventory ing353) +(inventory ing354) +(inventory ing355) +(inventory ing356) +(inventory ing357) +(inventory ing358) +(inventory ing359) +(inventory ing360) +(inventory ing361) +(inventory ing362) +(inventory ing363) +(inventory ing364) +(inventory ing365) +(inventory ing366) +(inventory ing367) +(inventory ing368) +(inventory ing369) +(inventory ing370) +(inventory ing371) +(inventory ing372) +(inventory ing373) +(inventory ing374) +(inventory ing375) +(inventory ing376) +(inventory ing377) +(inventory ing378) +(inventory ing379) +(inventory ing380) +(inventory ing381) +(inventory ing382) +(inventory ing383) +(inventory ing384) +(inventory ing385) +(inventory ing386) +(inventory ing387) +(inventory ing388) +(inventory ing389) +(inventory ing390) +(inventory ing391) +(inventory ing392) +(inventory ing393) +(inventory ing394) +(inventory ing395) +(inventory ing396) +(inventory ing397) +(inventory ing398) +(inventory ing399) +(inventory ing400) +(inventory ing401) +(inventory ing402) +(inventory ing403) +(inventory ing404) +(inventory ing405) +(inventory ing406) +(inventory ing407) +(inventory ing408) +(inventory ing409) +(inventory ing410) +(inventory ing411) +(inventory ing412) +(inventory ing413) +(inventory ing414) +(inventory ing415) +(inventory ing416) +(inventory ing417) +(inventory ing418) +(inventory ing419) +(inventory ing420) +(inventory ing421) +(inventory ing422) +(inventory ing423) +(inventory ing424) +(inventory ing425) +(inventory ing426) +(inventory ing427) +(inventory ing428) +(inventory ing429) +(inventory ing430) +(inventory ing431) +(inventory ing432) +(inventory ing433) +(inventory ing434) +(inventory ing435) +(inventory ing436) +(inventory ing437) +(inventory ing438) +(inventory ing439) +(inventory ing440) +(inventory ing441) +(inventory ing442) +(inventory ing443) +(inventory ing444) +(inventory ing445) +(inventory ing446) +(inventory ing447) +(inventory ing448) +(inventory ing449) +(inventory ing450) +(inventory ing451) +(inventory ing452) +(inventory ing453) +(inventory ing454) +(inventory ing455) +(inventory ing456) +(inventory ing457) +(inventory ing458) +(inventory ing459) +(inventory ing460) +(inventory ing461) +(inventory ing462) +(inventory ing463) +(inventory ing464) +(inventory ing465) +(inventory ing466) +(inventory ing467) +(inventory ing468) +(inventory ing469) +(inventory ing470) +(inventory ing471) +(inventory ing472) +(inventory ing473) +(inventory ing474) +(inventory ing475) +(inventory ing476) +(inventory ing477) +(inventory ing478) +(inventory ing479) +(inventory ing480) +(inventory ing481) +(inventory ing482) +(inventory ing483) +(inventory ing484) +(inventory ing485) +(inventory ing486) +(inventory ing487) +(inventory ing488) +(inventory ing489) +(inventory ing490) +(inventory ing491) +(inventory ing492) +(inventory ing493) +(inventory ing494) +(inventory ing495) +(inventory ing496) +(inventory ing497) +(inventory ing498) +(inventory ing499) +(inventory ing500) +(inventory ing501) +(inventory ing502) +(inventory ing503) +(inventory ing504) +(inventory ing505) +(inventory ing506) +(inventory ing507) +(inventory ing508) +(inventory ing509) +(inventory ing510) +(inventory ing511) +(inventory ing512) +(inventory ing513) +(inventory ing514) +(inventory ing515) +(inventory ing516) +(inventory ing517) +(inventory ing518) +(inventory ing519) +(inventory ing520) +(inventory ing521) +(inventory ing522) +(inventory ing523) +(inventory ing524) +(inventory ing525) +(inventory ing526) +(inventory ing527) +(inventory ing528) +(inventory ing529) +(inventory ing530) +(inventory ing531) +(inventory ing532) +(inventory ing533) +(inventory ing534) +(inventory ing535) +(inventory ing536) +(inventory ing537) +(inventory ing538) +(inventory ing539) +(inventory ing540) +(inventory ing541) +(inventory ing542) +(inventory ing543) +(inventory ing544) +(inventory ing545) +(inventory ing546) +(inventory ing547) +(inventory ing548) +(inventory ing549) +(inventory ing550) +(inventory ing551) +(inventory ing552) +(inventory ing553) +(inventory ing554) +(inventory ing555) +(inventory ing556) +(inventory ing557) +(inventory ing558) +(inventory ing559) +(inventory ing560) +(inventory ing561) +(inventory ing562) +(inventory ing563) +(inventory ing564) +(inventory ing565) +(inventory ing566) +(inventory ing567) +(inventory ing568) +(inventory ing569) +(inventory ing570) +(inventory ing571) +(inventory ing572) +(inventory ing573) +(inventory ing574) +(inventory ing575) +(inventory ing576) +(inventory ing577) +(inventory ing578) +(inventory ing579) +(inventory ing580) +(inventory ing581) +(inventory ing582) +(inventory ing583) +(inventory ing584) +(inventory ing585) +(inventory ing586) +(inventory ing587) +(inventory ing588) +(inventory ing589) +(inventory ing590) +(inventory ing591) +(inventory ing592) +(inventory ing593) +(inventory ing594) +(inventory ing595) +(inventory ing596) +(inventory ing597) +(inventory ing598) +(inventory ing599) + +(exec 9 (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n))) + (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) + (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) + (inventory $xi) (inventory $yi)) + (, (craftable $n))) diff --git a/examples/transforms/craft_staged.mm2 b/examples/transforms/craft_staged.mm2 new file mode 100644 index 00000000..80536e62 --- /dev/null +++ b/examples/transforms/craft_staged.mm2 @@ -0,0 +1,11805 @@ +(recipe r0 (numIngredients 2)) +(recipe r0 (result (id item0))) +(recipe r0 (pattern 0 sx0)) +(recipe r0 (pattern 1 sy0)) +(recipe r0 (key (sx0 ing0))) +(recipe r0 (key (sy0 ing0))) +(recipe r0 (key (sx0 ing1))) +(recipe r0 (key (sy0 ing1))) +(recipe r0 (key (sx0 ing2))) +(recipe r0 (key (sy0 ing2))) +(recipe r0 (key (sx0 ing3))) +(recipe r0 (key (sy0 ing3))) +(recipe r0 (key (sx0 ing4))) +(recipe r0 (key (sy0 ing4))) +(recipe r0 (key (sx0 ing5))) +(recipe r0 (key (sy0 ing5))) +(recipe r0 (key (sx0 ing6))) +(recipe r0 (key (sy0 ing6))) +(recipe r0 (key (sx0 ing7))) +(recipe r0 (key (sy0 ing7))) +(recipe r0 (key (sx0 ing8))) +(recipe r0 (key (sy0 ing8))) +(recipe r0 (key (sx0 ing9))) +(recipe r0 (key (sy0 ing9))) +(recipe r0 (key (sx0 ing10))) +(recipe r0 (key (sy0 ing10))) +(recipe r0 (key (sx0 ing11))) +(recipe r0 (key (sy0 ing11))) +(recipe r1 (numIngredients 2)) +(recipe r1 (result (id item1))) +(recipe r1 (pattern 0 sx1)) +(recipe r1 (pattern 1 sy1)) +(recipe r1 (key (sx1 ing3))) +(recipe r1 (key (sy1 ing5))) +(recipe r1 (key (sx1 ing4))) +(recipe r1 (key (sy1 ing6))) +(recipe r1 (key (sx1 ing5))) +(recipe r1 (key (sy1 ing7))) +(recipe r1 (key (sx1 ing6))) +(recipe r1 (key (sy1 ing8))) +(recipe r1 (key (sx1 ing7))) +(recipe r1 (key (sy1 ing9))) +(recipe r1 (key (sx1 ing8))) +(recipe r1 (key (sy1 ing10))) +(recipe r1 (key (sx1 ing9))) +(recipe r1 (key (sy1 ing11))) +(recipe r1 (key (sx1 ing10))) +(recipe r1 (key (sy1 ing12))) +(recipe r1 (key (sx1 ing11))) +(recipe r1 (key (sy1 ing13))) +(recipe r1 (key (sx1 ing12))) +(recipe r1 (key (sy1 ing14))) +(recipe r1 (key (sx1 ing13))) +(recipe r1 (key (sy1 ing15))) +(recipe r1 (key (sx1 ing14))) +(recipe r1 (key (sy1 ing16))) +(recipe r2 (numIngredients 2)) +(recipe r2 (result (id item2))) +(recipe r2 (pattern 0 sx2)) +(recipe r2 (pattern 1 sy2)) +(recipe r2 (key (sx2 ing6))) +(recipe r2 (key (sy2 ing10))) +(recipe r2 (key (sx2 ing7))) +(recipe r2 (key (sy2 ing11))) +(recipe r2 (key (sx2 ing8))) +(recipe r2 (key (sy2 ing12))) +(recipe r2 (key (sx2 ing9))) +(recipe r2 (key (sy2 ing13))) +(recipe r2 (key (sx2 ing10))) +(recipe r2 (key (sy2 ing14))) +(recipe r2 (key (sx2 ing11))) +(recipe r2 (key (sy2 ing15))) +(recipe r2 (key (sx2 ing12))) +(recipe r2 (key (sy2 ing16))) +(recipe r2 (key (sx2 ing13))) +(recipe r2 (key (sy2 ing17))) +(recipe r2 (key (sx2 ing14))) +(recipe r2 (key (sy2 ing18))) +(recipe r2 (key (sx2 ing15))) +(recipe r2 (key (sy2 ing19))) +(recipe r2 (key (sx2 ing16))) +(recipe r2 (key (sy2 ing20))) +(recipe r2 (key (sx2 ing17))) +(recipe r2 (key (sy2 ing21))) +(recipe r3 (numIngredients 2)) +(recipe r3 (result (id item3))) +(recipe r3 (pattern 0 sx3)) +(recipe r3 (pattern 1 sy3)) +(recipe r3 (key (sx3 ing9))) +(recipe r3 (key (sy3 ing15))) +(recipe r3 (key (sx3 ing10))) +(recipe r3 (key (sy3 ing16))) +(recipe r3 (key (sx3 ing11))) +(recipe r3 (key (sy3 ing17))) +(recipe r3 (key (sx3 ing12))) +(recipe r3 (key (sy3 ing18))) +(recipe r3 (key (sx3 ing13))) +(recipe r3 (key (sy3 ing19))) +(recipe r3 (key (sx3 ing14))) +(recipe r3 (key (sy3 ing20))) +(recipe r3 (key (sx3 ing15))) +(recipe r3 (key (sy3 ing21))) +(recipe r3 (key (sx3 ing16))) +(recipe r3 (key (sy3 ing22))) +(recipe r3 (key (sx3 ing17))) +(recipe r3 (key (sy3 ing23))) +(recipe r3 (key (sx3 ing18))) +(recipe r3 (key (sy3 ing24))) +(recipe r3 (key (sx3 ing19))) +(recipe r3 (key (sy3 ing25))) +(recipe r3 (key (sx3 ing20))) +(recipe r3 (key (sy3 ing26))) +(recipe r4 (numIngredients 2)) +(recipe r4 (result (id item4))) +(recipe r4 (pattern 0 sx4)) +(recipe r4 (pattern 1 sy4)) +(recipe r4 (key (sx4 ing12))) +(recipe r4 (key (sy4 ing20))) +(recipe r4 (key (sx4 ing13))) +(recipe r4 (key (sy4 ing21))) +(recipe r4 (key (sx4 ing14))) +(recipe r4 (key (sy4 ing22))) +(recipe r4 (key (sx4 ing15))) +(recipe r4 (key (sy4 ing23))) +(recipe r4 (key (sx4 ing16))) +(recipe r4 (key (sy4 ing24))) +(recipe r4 (key (sx4 ing17))) +(recipe r4 (key (sy4 ing25))) +(recipe r4 (key (sx4 ing18))) +(recipe r4 (key (sy4 ing26))) +(recipe r4 (key (sx4 ing19))) +(recipe r4 (key (sy4 ing27))) +(recipe r4 (key (sx4 ing20))) +(recipe r4 (key (sy4 ing28))) +(recipe r4 (key (sx4 ing21))) +(recipe r4 (key (sy4 ing29))) +(recipe r4 (key (sx4 ing22))) +(recipe r4 (key (sy4 ing30))) +(recipe r4 (key (sx4 ing23))) +(recipe r4 (key (sy4 ing31))) +(recipe r5 (numIngredients 2)) +(recipe r5 (result (id item5))) +(recipe r5 (pattern 0 sx5)) +(recipe r5 (pattern 1 sy5)) +(recipe r5 (key (sx5 ing15))) +(recipe r5 (key (sy5 ing25))) +(recipe r5 (key (sx5 ing16))) +(recipe r5 (key (sy5 ing26))) +(recipe r5 (key (sx5 ing17))) +(recipe r5 (key (sy5 ing27))) +(recipe r5 (key (sx5 ing18))) +(recipe r5 (key (sy5 ing28))) +(recipe r5 (key (sx5 ing19))) +(recipe r5 (key (sy5 ing29))) +(recipe r5 (key (sx5 ing20))) +(recipe r5 (key (sy5 ing30))) +(recipe r5 (key (sx5 ing21))) +(recipe r5 (key (sy5 ing31))) +(recipe r5 (key (sx5 ing22))) +(recipe r5 (key (sy5 ing32))) +(recipe r5 (key (sx5 ing23))) +(recipe r5 (key (sy5 ing33))) +(recipe r5 (key (sx5 ing24))) +(recipe r5 (key (sy5 ing34))) +(recipe r5 (key (sx5 ing25))) +(recipe r5 (key (sy5 ing35))) +(recipe r5 (key (sx5 ing26))) +(recipe r5 (key (sy5 ing36))) +(recipe r6 (numIngredients 2)) +(recipe r6 (result (id item6))) +(recipe r6 (pattern 0 sx6)) +(recipe r6 (pattern 1 sy6)) +(recipe r6 (key (sx6 ing18))) +(recipe r6 (key (sy6 ing30))) +(recipe r6 (key (sx6 ing19))) +(recipe r6 (key (sy6 ing31))) +(recipe r6 (key (sx6 ing20))) +(recipe r6 (key (sy6 ing32))) +(recipe r6 (key (sx6 ing21))) +(recipe r6 (key (sy6 ing33))) +(recipe r6 (key (sx6 ing22))) +(recipe r6 (key (sy6 ing34))) +(recipe r6 (key (sx6 ing23))) +(recipe r6 (key (sy6 ing35))) +(recipe r6 (key (sx6 ing24))) +(recipe r6 (key (sy6 ing36))) +(recipe r6 (key (sx6 ing25))) +(recipe r6 (key (sy6 ing37))) +(recipe r6 (key (sx6 ing26))) +(recipe r6 (key (sy6 ing38))) +(recipe r6 (key (sx6 ing27))) +(recipe r6 (key (sy6 ing39))) +(recipe r6 (key (sx6 ing28))) +(recipe r6 (key (sy6 ing40))) +(recipe r6 (key (sx6 ing29))) +(recipe r6 (key (sy6 ing41))) +(recipe r7 (numIngredients 2)) +(recipe r7 (result (id item7))) +(recipe r7 (pattern 0 sx7)) +(recipe r7 (pattern 1 sy7)) +(recipe r7 (key (sx7 ing21))) +(recipe r7 (key (sy7 ing35))) +(recipe r7 (key (sx7 ing22))) +(recipe r7 (key (sy7 ing36))) +(recipe r7 (key (sx7 ing23))) +(recipe r7 (key (sy7 ing37))) +(recipe r7 (key (sx7 ing24))) +(recipe r7 (key (sy7 ing38))) +(recipe r7 (key (sx7 ing25))) +(recipe r7 (key (sy7 ing39))) +(recipe r7 (key (sx7 ing26))) +(recipe r7 (key (sy7 ing40))) +(recipe r7 (key (sx7 ing27))) +(recipe r7 (key (sy7 ing41))) +(recipe r7 (key (sx7 ing28))) +(recipe r7 (key (sy7 ing42))) +(recipe r7 (key (sx7 ing29))) +(recipe r7 (key (sy7 ing43))) +(recipe r7 (key (sx7 ing30))) +(recipe r7 (key (sy7 ing44))) +(recipe r7 (key (sx7 ing31))) +(recipe r7 (key (sy7 ing45))) +(recipe r7 (key (sx7 ing32))) +(recipe r7 (key (sy7 ing46))) +(recipe r8 (numIngredients 2)) +(recipe r8 (result (id item8))) +(recipe r8 (pattern 0 sx8)) +(recipe r8 (pattern 1 sy8)) +(recipe r8 (key (sx8 ing24))) +(recipe r8 (key (sy8 ing40))) +(recipe r8 (key (sx8 ing25))) +(recipe r8 (key (sy8 ing41))) +(recipe r8 (key (sx8 ing26))) +(recipe r8 (key (sy8 ing42))) +(recipe r8 (key (sx8 ing27))) +(recipe r8 (key (sy8 ing43))) +(recipe r8 (key (sx8 ing28))) +(recipe r8 (key (sy8 ing44))) +(recipe r8 (key (sx8 ing29))) +(recipe r8 (key (sy8 ing45))) +(recipe r8 (key (sx8 ing30))) +(recipe r8 (key (sy8 ing46))) +(recipe r8 (key (sx8 ing31))) +(recipe r8 (key (sy8 ing47))) +(recipe r8 (key (sx8 ing32))) +(recipe r8 (key (sy8 ing48))) +(recipe r8 (key (sx8 ing33))) +(recipe r8 (key (sy8 ing49))) +(recipe r8 (key (sx8 ing34))) +(recipe r8 (key (sy8 ing50))) +(recipe r8 (key (sx8 ing35))) +(recipe r8 (key (sy8 ing51))) +(recipe r9 (numIngredients 2)) +(recipe r9 (result (id item9))) +(recipe r9 (pattern 0 sx9)) +(recipe r9 (pattern 1 sy9)) +(recipe r9 (key (sx9 ing27))) +(recipe r9 (key (sy9 ing45))) +(recipe r9 (key (sx9 ing28))) +(recipe r9 (key (sy9 ing46))) +(recipe r9 (key (sx9 ing29))) +(recipe r9 (key (sy9 ing47))) +(recipe r9 (key (sx9 ing30))) +(recipe r9 (key (sy9 ing48))) +(recipe r9 (key (sx9 ing31))) +(recipe r9 (key (sy9 ing49))) +(recipe r9 (key (sx9 ing32))) +(recipe r9 (key (sy9 ing50))) +(recipe r9 (key (sx9 ing33))) +(recipe r9 (key (sy9 ing51))) +(recipe r9 (key (sx9 ing34))) +(recipe r9 (key (sy9 ing52))) +(recipe r9 (key (sx9 ing35))) +(recipe r9 (key (sy9 ing53))) +(recipe r9 (key (sx9 ing36))) +(recipe r9 (key (sy9 ing54))) +(recipe r9 (key (sx9 ing37))) +(recipe r9 (key (sy9 ing55))) +(recipe r9 (key (sx9 ing38))) +(recipe r9 (key (sy9 ing56))) +(recipe r10 (numIngredients 2)) +(recipe r10 (result (id item10))) +(recipe r10 (pattern 0 sx10)) +(recipe r10 (pattern 1 sy10)) +(recipe r10 (key (sx10 ing30))) +(recipe r10 (key (sy10 ing50))) +(recipe r10 (key (sx10 ing31))) +(recipe r10 (key (sy10 ing51))) +(recipe r10 (key (sx10 ing32))) +(recipe r10 (key (sy10 ing52))) +(recipe r10 (key (sx10 ing33))) +(recipe r10 (key (sy10 ing53))) +(recipe r10 (key (sx10 ing34))) +(recipe r10 (key (sy10 ing54))) +(recipe r10 (key (sx10 ing35))) +(recipe r10 (key (sy10 ing55))) +(recipe r10 (key (sx10 ing36))) +(recipe r10 (key (sy10 ing56))) +(recipe r10 (key (sx10 ing37))) +(recipe r10 (key (sy10 ing57))) +(recipe r10 (key (sx10 ing38))) +(recipe r10 (key (sy10 ing58))) +(recipe r10 (key (sx10 ing39))) +(recipe r10 (key (sy10 ing59))) +(recipe r10 (key (sx10 ing40))) +(recipe r10 (key (sy10 ing60))) +(recipe r10 (key (sx10 ing41))) +(recipe r10 (key (sy10 ing61))) +(recipe r11 (numIngredients 2)) +(recipe r11 (result (id item11))) +(recipe r11 (pattern 0 sx11)) +(recipe r11 (pattern 1 sy11)) +(recipe r11 (key (sx11 ing33))) +(recipe r11 (key (sy11 ing55))) +(recipe r11 (key (sx11 ing34))) +(recipe r11 (key (sy11 ing56))) +(recipe r11 (key (sx11 ing35))) +(recipe r11 (key (sy11 ing57))) +(recipe r11 (key (sx11 ing36))) +(recipe r11 (key (sy11 ing58))) +(recipe r11 (key (sx11 ing37))) +(recipe r11 (key (sy11 ing59))) +(recipe r11 (key (sx11 ing38))) +(recipe r11 (key (sy11 ing60))) +(recipe r11 (key (sx11 ing39))) +(recipe r11 (key (sy11 ing61))) +(recipe r11 (key (sx11 ing40))) +(recipe r11 (key (sy11 ing62))) +(recipe r11 (key (sx11 ing41))) +(recipe r11 (key (sy11 ing63))) +(recipe r11 (key (sx11 ing42))) +(recipe r11 (key (sy11 ing64))) +(recipe r11 (key (sx11 ing43))) +(recipe r11 (key (sy11 ing65))) +(recipe r11 (key (sx11 ing44))) +(recipe r11 (key (sy11 ing66))) +(recipe r12 (numIngredients 2)) +(recipe r12 (result (id item12))) +(recipe r12 (pattern 0 sx12)) +(recipe r12 (pattern 1 sy12)) +(recipe r12 (key (sx12 ing36))) +(recipe r12 (key (sy12 ing60))) +(recipe r12 (key (sx12 ing37))) +(recipe r12 (key (sy12 ing61))) +(recipe r12 (key (sx12 ing38))) +(recipe r12 (key (sy12 ing62))) +(recipe r12 (key (sx12 ing39))) +(recipe r12 (key (sy12 ing63))) +(recipe r12 (key (sx12 ing40))) +(recipe r12 (key (sy12 ing64))) +(recipe r12 (key (sx12 ing41))) +(recipe r12 (key (sy12 ing65))) +(recipe r12 (key (sx12 ing42))) +(recipe r12 (key (sy12 ing66))) +(recipe r12 (key (sx12 ing43))) +(recipe r12 (key (sy12 ing67))) +(recipe r12 (key (sx12 ing44))) +(recipe r12 (key (sy12 ing68))) +(recipe r12 (key (sx12 ing45))) +(recipe r12 (key (sy12 ing69))) +(recipe r12 (key (sx12 ing46))) +(recipe r12 (key (sy12 ing70))) +(recipe r12 (key (sx12 ing47))) +(recipe r12 (key (sy12 ing71))) +(recipe r13 (numIngredients 2)) +(recipe r13 (result (id item13))) +(recipe r13 (pattern 0 sx13)) +(recipe r13 (pattern 1 sy13)) +(recipe r13 (key (sx13 ing39))) +(recipe r13 (key (sy13 ing65))) +(recipe r13 (key (sx13 ing40))) +(recipe r13 (key (sy13 ing66))) +(recipe r13 (key (sx13 ing41))) +(recipe r13 (key (sy13 ing67))) +(recipe r13 (key (sx13 ing42))) +(recipe r13 (key (sy13 ing68))) +(recipe r13 (key (sx13 ing43))) +(recipe r13 (key (sy13 ing69))) +(recipe r13 (key (sx13 ing44))) +(recipe r13 (key (sy13 ing70))) +(recipe r13 (key (sx13 ing45))) +(recipe r13 (key (sy13 ing71))) +(recipe r13 (key (sx13 ing46))) +(recipe r13 (key (sy13 ing72))) +(recipe r13 (key (sx13 ing47))) +(recipe r13 (key (sy13 ing73))) +(recipe r13 (key (sx13 ing48))) +(recipe r13 (key (sy13 ing74))) +(recipe r13 (key (sx13 ing49))) +(recipe r13 (key (sy13 ing75))) +(recipe r13 (key (sx13 ing50))) +(recipe r13 (key (sy13 ing76))) +(recipe r14 (numIngredients 2)) +(recipe r14 (result (id item14))) +(recipe r14 (pattern 0 sx14)) +(recipe r14 (pattern 1 sy14)) +(recipe r14 (key (sx14 ing42))) +(recipe r14 (key (sy14 ing70))) +(recipe r14 (key (sx14 ing43))) +(recipe r14 (key (sy14 ing71))) +(recipe r14 (key (sx14 ing44))) +(recipe r14 (key (sy14 ing72))) +(recipe r14 (key (sx14 ing45))) +(recipe r14 (key (sy14 ing73))) +(recipe r14 (key (sx14 ing46))) +(recipe r14 (key (sy14 ing74))) +(recipe r14 (key (sx14 ing47))) +(recipe r14 (key (sy14 ing75))) +(recipe r14 (key (sx14 ing48))) +(recipe r14 (key (sy14 ing76))) +(recipe r14 (key (sx14 ing49))) +(recipe r14 (key (sy14 ing77))) +(recipe r14 (key (sx14 ing50))) +(recipe r14 (key (sy14 ing78))) +(recipe r14 (key (sx14 ing51))) +(recipe r14 (key (sy14 ing79))) +(recipe r14 (key (sx14 ing52))) +(recipe r14 (key (sy14 ing80))) +(recipe r14 (key (sx14 ing53))) +(recipe r14 (key (sy14 ing81))) +(recipe r15 (numIngredients 2)) +(recipe r15 (result (id item15))) +(recipe r15 (pattern 0 sx15)) +(recipe r15 (pattern 1 sy15)) +(recipe r15 (key (sx15 ing45))) +(recipe r15 (key (sy15 ing75))) +(recipe r15 (key (sx15 ing46))) +(recipe r15 (key (sy15 ing76))) +(recipe r15 (key (sx15 ing47))) +(recipe r15 (key (sy15 ing77))) +(recipe r15 (key (sx15 ing48))) +(recipe r15 (key (sy15 ing78))) +(recipe r15 (key (sx15 ing49))) +(recipe r15 (key (sy15 ing79))) +(recipe r15 (key (sx15 ing50))) +(recipe r15 (key (sy15 ing80))) +(recipe r15 (key (sx15 ing51))) +(recipe r15 (key (sy15 ing81))) +(recipe r15 (key (sx15 ing52))) +(recipe r15 (key (sy15 ing82))) +(recipe r15 (key (sx15 ing53))) +(recipe r15 (key (sy15 ing83))) +(recipe r15 (key (sx15 ing54))) +(recipe r15 (key (sy15 ing84))) +(recipe r15 (key (sx15 ing55))) +(recipe r15 (key (sy15 ing85))) +(recipe r15 (key (sx15 ing56))) +(recipe r15 (key (sy15 ing86))) +(recipe r16 (numIngredients 2)) +(recipe r16 (result (id item16))) +(recipe r16 (pattern 0 sx16)) +(recipe r16 (pattern 1 sy16)) +(recipe r16 (key (sx16 ing48))) +(recipe r16 (key (sy16 ing80))) +(recipe r16 (key (sx16 ing49))) +(recipe r16 (key (sy16 ing81))) +(recipe r16 (key (sx16 ing50))) +(recipe r16 (key (sy16 ing82))) +(recipe r16 (key (sx16 ing51))) +(recipe r16 (key (sy16 ing83))) +(recipe r16 (key (sx16 ing52))) +(recipe r16 (key (sy16 ing84))) +(recipe r16 (key (sx16 ing53))) +(recipe r16 (key (sy16 ing85))) +(recipe r16 (key (sx16 ing54))) +(recipe r16 (key (sy16 ing86))) +(recipe r16 (key (sx16 ing55))) +(recipe r16 (key (sy16 ing87))) +(recipe r16 (key (sx16 ing56))) +(recipe r16 (key (sy16 ing88))) +(recipe r16 (key (sx16 ing57))) +(recipe r16 (key (sy16 ing89))) +(recipe r16 (key (sx16 ing58))) +(recipe r16 (key (sy16 ing90))) +(recipe r16 (key (sx16 ing59))) +(recipe r16 (key (sy16 ing91))) +(recipe r17 (numIngredients 2)) +(recipe r17 (result (id item17))) +(recipe r17 (pattern 0 sx17)) +(recipe r17 (pattern 1 sy17)) +(recipe r17 (key (sx17 ing51))) +(recipe r17 (key (sy17 ing85))) +(recipe r17 (key (sx17 ing52))) +(recipe r17 (key (sy17 ing86))) +(recipe r17 (key (sx17 ing53))) +(recipe r17 (key (sy17 ing87))) +(recipe r17 (key (sx17 ing54))) +(recipe r17 (key (sy17 ing88))) +(recipe r17 (key (sx17 ing55))) +(recipe r17 (key (sy17 ing89))) +(recipe r17 (key (sx17 ing56))) +(recipe r17 (key (sy17 ing90))) +(recipe r17 (key (sx17 ing57))) +(recipe r17 (key (sy17 ing91))) +(recipe r17 (key (sx17 ing58))) +(recipe r17 (key (sy17 ing92))) +(recipe r17 (key (sx17 ing59))) +(recipe r17 (key (sy17 ing93))) +(recipe r17 (key (sx17 ing60))) +(recipe r17 (key (sy17 ing94))) +(recipe r17 (key (sx17 ing61))) +(recipe r17 (key (sy17 ing95))) +(recipe r17 (key (sx17 ing62))) +(recipe r17 (key (sy17 ing96))) +(recipe r18 (numIngredients 2)) +(recipe r18 (result (id item18))) +(recipe r18 (pattern 0 sx18)) +(recipe r18 (pattern 1 sy18)) +(recipe r18 (key (sx18 ing54))) +(recipe r18 (key (sy18 ing90))) +(recipe r18 (key (sx18 ing55))) +(recipe r18 (key (sy18 ing91))) +(recipe r18 (key (sx18 ing56))) +(recipe r18 (key (sy18 ing92))) +(recipe r18 (key (sx18 ing57))) +(recipe r18 (key (sy18 ing93))) +(recipe r18 (key (sx18 ing58))) +(recipe r18 (key (sy18 ing94))) +(recipe r18 (key (sx18 ing59))) +(recipe r18 (key (sy18 ing95))) +(recipe r18 (key (sx18 ing60))) +(recipe r18 (key (sy18 ing96))) +(recipe r18 (key (sx18 ing61))) +(recipe r18 (key (sy18 ing97))) +(recipe r18 (key (sx18 ing62))) +(recipe r18 (key (sy18 ing98))) +(recipe r18 (key (sx18 ing63))) +(recipe r18 (key (sy18 ing99))) +(recipe r18 (key (sx18 ing64))) +(recipe r18 (key (sy18 ing100))) +(recipe r18 (key (sx18 ing65))) +(recipe r18 (key (sy18 ing101))) +(recipe r19 (numIngredients 2)) +(recipe r19 (result (id item19))) +(recipe r19 (pattern 0 sx19)) +(recipe r19 (pattern 1 sy19)) +(recipe r19 (key (sx19 ing57))) +(recipe r19 (key (sy19 ing95))) +(recipe r19 (key (sx19 ing58))) +(recipe r19 (key (sy19 ing96))) +(recipe r19 (key (sx19 ing59))) +(recipe r19 (key (sy19 ing97))) +(recipe r19 (key (sx19 ing60))) +(recipe r19 (key (sy19 ing98))) +(recipe r19 (key (sx19 ing61))) +(recipe r19 (key (sy19 ing99))) +(recipe r19 (key (sx19 ing62))) +(recipe r19 (key (sy19 ing100))) +(recipe r19 (key (sx19 ing63))) +(recipe r19 (key (sy19 ing101))) +(recipe r19 (key (sx19 ing64))) +(recipe r19 (key (sy19 ing102))) +(recipe r19 (key (sx19 ing65))) +(recipe r19 (key (sy19 ing103))) +(recipe r19 (key (sx19 ing66))) +(recipe r19 (key (sy19 ing104))) +(recipe r19 (key (sx19 ing67))) +(recipe r19 (key (sy19 ing105))) +(recipe r19 (key (sx19 ing68))) +(recipe r19 (key (sy19 ing106))) +(recipe r20 (numIngredients 2)) +(recipe r20 (result (id item20))) +(recipe r20 (pattern 0 sx20)) +(recipe r20 (pattern 1 sy20)) +(recipe r20 (key (sx20 ing60))) +(recipe r20 (key (sy20 ing100))) +(recipe r20 (key (sx20 ing61))) +(recipe r20 (key (sy20 ing101))) +(recipe r20 (key (sx20 ing62))) +(recipe r20 (key (sy20 ing102))) +(recipe r20 (key (sx20 ing63))) +(recipe r20 (key (sy20 ing103))) +(recipe r20 (key (sx20 ing64))) +(recipe r20 (key (sy20 ing104))) +(recipe r20 (key (sx20 ing65))) +(recipe r20 (key (sy20 ing105))) +(recipe r20 (key (sx20 ing66))) +(recipe r20 (key (sy20 ing106))) +(recipe r20 (key (sx20 ing67))) +(recipe r20 (key (sy20 ing107))) +(recipe r20 (key (sx20 ing68))) +(recipe r20 (key (sy20 ing108))) +(recipe r20 (key (sx20 ing69))) +(recipe r20 (key (sy20 ing109))) +(recipe r20 (key (sx20 ing70))) +(recipe r20 (key (sy20 ing110))) +(recipe r20 (key (sx20 ing71))) +(recipe r20 (key (sy20 ing111))) +(recipe r21 (numIngredients 2)) +(recipe r21 (result (id item21))) +(recipe r21 (pattern 0 sx21)) +(recipe r21 (pattern 1 sy21)) +(recipe r21 (key (sx21 ing63))) +(recipe r21 (key (sy21 ing105))) +(recipe r21 (key (sx21 ing64))) +(recipe r21 (key (sy21 ing106))) +(recipe r21 (key (sx21 ing65))) +(recipe r21 (key (sy21 ing107))) +(recipe r21 (key (sx21 ing66))) +(recipe r21 (key (sy21 ing108))) +(recipe r21 (key (sx21 ing67))) +(recipe r21 (key (sy21 ing109))) +(recipe r21 (key (sx21 ing68))) +(recipe r21 (key (sy21 ing110))) +(recipe r21 (key (sx21 ing69))) +(recipe r21 (key (sy21 ing111))) +(recipe r21 (key (sx21 ing70))) +(recipe r21 (key (sy21 ing112))) +(recipe r21 (key (sx21 ing71))) +(recipe r21 (key (sy21 ing113))) +(recipe r21 (key (sx21 ing72))) +(recipe r21 (key (sy21 ing114))) +(recipe r21 (key (sx21 ing73))) +(recipe r21 (key (sy21 ing115))) +(recipe r21 (key (sx21 ing74))) +(recipe r21 (key (sy21 ing116))) +(recipe r22 (numIngredients 2)) +(recipe r22 (result (id item22))) +(recipe r22 (pattern 0 sx22)) +(recipe r22 (pattern 1 sy22)) +(recipe r22 (key (sx22 ing66))) +(recipe r22 (key (sy22 ing110))) +(recipe r22 (key (sx22 ing67))) +(recipe r22 (key (sy22 ing111))) +(recipe r22 (key (sx22 ing68))) +(recipe r22 (key (sy22 ing112))) +(recipe r22 (key (sx22 ing69))) +(recipe r22 (key (sy22 ing113))) +(recipe r22 (key (sx22 ing70))) +(recipe r22 (key (sy22 ing114))) +(recipe r22 (key (sx22 ing71))) +(recipe r22 (key (sy22 ing115))) +(recipe r22 (key (sx22 ing72))) +(recipe r22 (key (sy22 ing116))) +(recipe r22 (key (sx22 ing73))) +(recipe r22 (key (sy22 ing117))) +(recipe r22 (key (sx22 ing74))) +(recipe r22 (key (sy22 ing118))) +(recipe r22 (key (sx22 ing75))) +(recipe r22 (key (sy22 ing119))) +(recipe r22 (key (sx22 ing76))) +(recipe r22 (key (sy22 ing120))) +(recipe r22 (key (sx22 ing77))) +(recipe r22 (key (sy22 ing121))) +(recipe r23 (numIngredients 2)) +(recipe r23 (result (id item23))) +(recipe r23 (pattern 0 sx23)) +(recipe r23 (pattern 1 sy23)) +(recipe r23 (key (sx23 ing69))) +(recipe r23 (key (sy23 ing115))) +(recipe r23 (key (sx23 ing70))) +(recipe r23 (key (sy23 ing116))) +(recipe r23 (key (sx23 ing71))) +(recipe r23 (key (sy23 ing117))) +(recipe r23 (key (sx23 ing72))) +(recipe r23 (key (sy23 ing118))) +(recipe r23 (key (sx23 ing73))) +(recipe r23 (key (sy23 ing119))) +(recipe r23 (key (sx23 ing74))) +(recipe r23 (key (sy23 ing120))) +(recipe r23 (key (sx23 ing75))) +(recipe r23 (key (sy23 ing121))) +(recipe r23 (key (sx23 ing76))) +(recipe r23 (key (sy23 ing122))) +(recipe r23 (key (sx23 ing77))) +(recipe r23 (key (sy23 ing123))) +(recipe r23 (key (sx23 ing78))) +(recipe r23 (key (sy23 ing124))) +(recipe r23 (key (sx23 ing79))) +(recipe r23 (key (sy23 ing125))) +(recipe r23 (key (sx23 ing80))) +(recipe r23 (key (sy23 ing126))) +(recipe r24 (numIngredients 2)) +(recipe r24 (result (id item24))) +(recipe r24 (pattern 0 sx24)) +(recipe r24 (pattern 1 sy24)) +(recipe r24 (key (sx24 ing72))) +(recipe r24 (key (sy24 ing120))) +(recipe r24 (key (sx24 ing73))) +(recipe r24 (key (sy24 ing121))) +(recipe r24 (key (sx24 ing74))) +(recipe r24 (key (sy24 ing122))) +(recipe r24 (key (sx24 ing75))) +(recipe r24 (key (sy24 ing123))) +(recipe r24 (key (sx24 ing76))) +(recipe r24 (key (sy24 ing124))) +(recipe r24 (key (sx24 ing77))) +(recipe r24 (key (sy24 ing125))) +(recipe r24 (key (sx24 ing78))) +(recipe r24 (key (sy24 ing126))) +(recipe r24 (key (sx24 ing79))) +(recipe r24 (key (sy24 ing127))) +(recipe r24 (key (sx24 ing80))) +(recipe r24 (key (sy24 ing128))) +(recipe r24 (key (sx24 ing81))) +(recipe r24 (key (sy24 ing129))) +(recipe r24 (key (sx24 ing82))) +(recipe r24 (key (sy24 ing130))) +(recipe r24 (key (sx24 ing83))) +(recipe r24 (key (sy24 ing131))) +(recipe r25 (numIngredients 2)) +(recipe r25 (result (id item25))) +(recipe r25 (pattern 0 sx25)) +(recipe r25 (pattern 1 sy25)) +(recipe r25 (key (sx25 ing75))) +(recipe r25 (key (sy25 ing125))) +(recipe r25 (key (sx25 ing76))) +(recipe r25 (key (sy25 ing126))) +(recipe r25 (key (sx25 ing77))) +(recipe r25 (key (sy25 ing127))) +(recipe r25 (key (sx25 ing78))) +(recipe r25 (key (sy25 ing128))) +(recipe r25 (key (sx25 ing79))) +(recipe r25 (key (sy25 ing129))) +(recipe r25 (key (sx25 ing80))) +(recipe r25 (key (sy25 ing130))) +(recipe r25 (key (sx25 ing81))) +(recipe r25 (key (sy25 ing131))) +(recipe r25 (key (sx25 ing82))) +(recipe r25 (key (sy25 ing132))) +(recipe r25 (key (sx25 ing83))) +(recipe r25 (key (sy25 ing133))) +(recipe r25 (key (sx25 ing84))) +(recipe r25 (key (sy25 ing134))) +(recipe r25 (key (sx25 ing85))) +(recipe r25 (key (sy25 ing135))) +(recipe r25 (key (sx25 ing86))) +(recipe r25 (key (sy25 ing136))) +(recipe r26 (numIngredients 2)) +(recipe r26 (result (id item26))) +(recipe r26 (pattern 0 sx26)) +(recipe r26 (pattern 1 sy26)) +(recipe r26 (key (sx26 ing78))) +(recipe r26 (key (sy26 ing130))) +(recipe r26 (key (sx26 ing79))) +(recipe r26 (key (sy26 ing131))) +(recipe r26 (key (sx26 ing80))) +(recipe r26 (key (sy26 ing132))) +(recipe r26 (key (sx26 ing81))) +(recipe r26 (key (sy26 ing133))) +(recipe r26 (key (sx26 ing82))) +(recipe r26 (key (sy26 ing134))) +(recipe r26 (key (sx26 ing83))) +(recipe r26 (key (sy26 ing135))) +(recipe r26 (key (sx26 ing84))) +(recipe r26 (key (sy26 ing136))) +(recipe r26 (key (sx26 ing85))) +(recipe r26 (key (sy26 ing137))) +(recipe r26 (key (sx26 ing86))) +(recipe r26 (key (sy26 ing138))) +(recipe r26 (key (sx26 ing87))) +(recipe r26 (key (sy26 ing139))) +(recipe r26 (key (sx26 ing88))) +(recipe r26 (key (sy26 ing140))) +(recipe r26 (key (sx26 ing89))) +(recipe r26 (key (sy26 ing141))) +(recipe r27 (numIngredients 2)) +(recipe r27 (result (id item27))) +(recipe r27 (pattern 0 sx27)) +(recipe r27 (pattern 1 sy27)) +(recipe r27 (key (sx27 ing81))) +(recipe r27 (key (sy27 ing135))) +(recipe r27 (key (sx27 ing82))) +(recipe r27 (key (sy27 ing136))) +(recipe r27 (key (sx27 ing83))) +(recipe r27 (key (sy27 ing137))) +(recipe r27 (key (sx27 ing84))) +(recipe r27 (key (sy27 ing138))) +(recipe r27 (key (sx27 ing85))) +(recipe r27 (key (sy27 ing139))) +(recipe r27 (key (sx27 ing86))) +(recipe r27 (key (sy27 ing140))) +(recipe r27 (key (sx27 ing87))) +(recipe r27 (key (sy27 ing141))) +(recipe r27 (key (sx27 ing88))) +(recipe r27 (key (sy27 ing142))) +(recipe r27 (key (sx27 ing89))) +(recipe r27 (key (sy27 ing143))) +(recipe r27 (key (sx27 ing90))) +(recipe r27 (key (sy27 ing144))) +(recipe r27 (key (sx27 ing91))) +(recipe r27 (key (sy27 ing145))) +(recipe r27 (key (sx27 ing92))) +(recipe r27 (key (sy27 ing146))) +(recipe r28 (numIngredients 2)) +(recipe r28 (result (id item28))) +(recipe r28 (pattern 0 sx28)) +(recipe r28 (pattern 1 sy28)) +(recipe r28 (key (sx28 ing84))) +(recipe r28 (key (sy28 ing140))) +(recipe r28 (key (sx28 ing85))) +(recipe r28 (key (sy28 ing141))) +(recipe r28 (key (sx28 ing86))) +(recipe r28 (key (sy28 ing142))) +(recipe r28 (key (sx28 ing87))) +(recipe r28 (key (sy28 ing143))) +(recipe r28 (key (sx28 ing88))) +(recipe r28 (key (sy28 ing144))) +(recipe r28 (key (sx28 ing89))) +(recipe r28 (key (sy28 ing145))) +(recipe r28 (key (sx28 ing90))) +(recipe r28 (key (sy28 ing146))) +(recipe r28 (key (sx28 ing91))) +(recipe r28 (key (sy28 ing147))) +(recipe r28 (key (sx28 ing92))) +(recipe r28 (key (sy28 ing148))) +(recipe r28 (key (sx28 ing93))) +(recipe r28 (key (sy28 ing149))) +(recipe r28 (key (sx28 ing94))) +(recipe r28 (key (sy28 ing150))) +(recipe r28 (key (sx28 ing95))) +(recipe r28 (key (sy28 ing151))) +(recipe r29 (numIngredients 2)) +(recipe r29 (result (id item29))) +(recipe r29 (pattern 0 sx29)) +(recipe r29 (pattern 1 sy29)) +(recipe r29 (key (sx29 ing87))) +(recipe r29 (key (sy29 ing145))) +(recipe r29 (key (sx29 ing88))) +(recipe r29 (key (sy29 ing146))) +(recipe r29 (key (sx29 ing89))) +(recipe r29 (key (sy29 ing147))) +(recipe r29 (key (sx29 ing90))) +(recipe r29 (key (sy29 ing148))) +(recipe r29 (key (sx29 ing91))) +(recipe r29 (key (sy29 ing149))) +(recipe r29 (key (sx29 ing92))) +(recipe r29 (key (sy29 ing150))) +(recipe r29 (key (sx29 ing93))) +(recipe r29 (key (sy29 ing151))) +(recipe r29 (key (sx29 ing94))) +(recipe r29 (key (sy29 ing152))) +(recipe r29 (key (sx29 ing95))) +(recipe r29 (key (sy29 ing153))) +(recipe r29 (key (sx29 ing96))) +(recipe r29 (key (sy29 ing154))) +(recipe r29 (key (sx29 ing97))) +(recipe r29 (key (sy29 ing155))) +(recipe r29 (key (sx29 ing98))) +(recipe r29 (key (sy29 ing156))) +(recipe r30 (numIngredients 2)) +(recipe r30 (result (id item30))) +(recipe r30 (pattern 0 sx30)) +(recipe r30 (pattern 1 sy30)) +(recipe r30 (key (sx30 ing90))) +(recipe r30 (key (sy30 ing150))) +(recipe r30 (key (sx30 ing91))) +(recipe r30 (key (sy30 ing151))) +(recipe r30 (key (sx30 ing92))) +(recipe r30 (key (sy30 ing152))) +(recipe r30 (key (sx30 ing93))) +(recipe r30 (key (sy30 ing153))) +(recipe r30 (key (sx30 ing94))) +(recipe r30 (key (sy30 ing154))) +(recipe r30 (key (sx30 ing95))) +(recipe r30 (key (sy30 ing155))) +(recipe r30 (key (sx30 ing96))) +(recipe r30 (key (sy30 ing156))) +(recipe r30 (key (sx30 ing97))) +(recipe r30 (key (sy30 ing157))) +(recipe r30 (key (sx30 ing98))) +(recipe r30 (key (sy30 ing158))) +(recipe r30 (key (sx30 ing99))) +(recipe r30 (key (sy30 ing159))) +(recipe r30 (key (sx30 ing100))) +(recipe r30 (key (sy30 ing160))) +(recipe r30 (key (sx30 ing101))) +(recipe r30 (key (sy30 ing161))) +(recipe r31 (numIngredients 2)) +(recipe r31 (result (id item31))) +(recipe r31 (pattern 0 sx31)) +(recipe r31 (pattern 1 sy31)) +(recipe r31 (key (sx31 ing93))) +(recipe r31 (key (sy31 ing155))) +(recipe r31 (key (sx31 ing94))) +(recipe r31 (key (sy31 ing156))) +(recipe r31 (key (sx31 ing95))) +(recipe r31 (key (sy31 ing157))) +(recipe r31 (key (sx31 ing96))) +(recipe r31 (key (sy31 ing158))) +(recipe r31 (key (sx31 ing97))) +(recipe r31 (key (sy31 ing159))) +(recipe r31 (key (sx31 ing98))) +(recipe r31 (key (sy31 ing160))) +(recipe r31 (key (sx31 ing99))) +(recipe r31 (key (sy31 ing161))) +(recipe r31 (key (sx31 ing100))) +(recipe r31 (key (sy31 ing162))) +(recipe r31 (key (sx31 ing101))) +(recipe r31 (key (sy31 ing163))) +(recipe r31 (key (sx31 ing102))) +(recipe r31 (key (sy31 ing164))) +(recipe r31 (key (sx31 ing103))) +(recipe r31 (key (sy31 ing165))) +(recipe r31 (key (sx31 ing104))) +(recipe r31 (key (sy31 ing166))) +(recipe r32 (numIngredients 2)) +(recipe r32 (result (id item32))) +(recipe r32 (pattern 0 sx32)) +(recipe r32 (pattern 1 sy32)) +(recipe r32 (key (sx32 ing96))) +(recipe r32 (key (sy32 ing160))) +(recipe r32 (key (sx32 ing97))) +(recipe r32 (key (sy32 ing161))) +(recipe r32 (key (sx32 ing98))) +(recipe r32 (key (sy32 ing162))) +(recipe r32 (key (sx32 ing99))) +(recipe r32 (key (sy32 ing163))) +(recipe r32 (key (sx32 ing100))) +(recipe r32 (key (sy32 ing164))) +(recipe r32 (key (sx32 ing101))) +(recipe r32 (key (sy32 ing165))) +(recipe r32 (key (sx32 ing102))) +(recipe r32 (key (sy32 ing166))) +(recipe r32 (key (sx32 ing103))) +(recipe r32 (key (sy32 ing167))) +(recipe r32 (key (sx32 ing104))) +(recipe r32 (key (sy32 ing168))) +(recipe r32 (key (sx32 ing105))) +(recipe r32 (key (sy32 ing169))) +(recipe r32 (key (sx32 ing106))) +(recipe r32 (key (sy32 ing170))) +(recipe r32 (key (sx32 ing107))) +(recipe r32 (key (sy32 ing171))) +(recipe r33 (numIngredients 2)) +(recipe r33 (result (id item33))) +(recipe r33 (pattern 0 sx33)) +(recipe r33 (pattern 1 sy33)) +(recipe r33 (key (sx33 ing99))) +(recipe r33 (key (sy33 ing165))) +(recipe r33 (key (sx33 ing100))) +(recipe r33 (key (sy33 ing166))) +(recipe r33 (key (sx33 ing101))) +(recipe r33 (key (sy33 ing167))) +(recipe r33 (key (sx33 ing102))) +(recipe r33 (key (sy33 ing168))) +(recipe r33 (key (sx33 ing103))) +(recipe r33 (key (sy33 ing169))) +(recipe r33 (key (sx33 ing104))) +(recipe r33 (key (sy33 ing170))) +(recipe r33 (key (sx33 ing105))) +(recipe r33 (key (sy33 ing171))) +(recipe r33 (key (sx33 ing106))) +(recipe r33 (key (sy33 ing172))) +(recipe r33 (key (sx33 ing107))) +(recipe r33 (key (sy33 ing173))) +(recipe r33 (key (sx33 ing108))) +(recipe r33 (key (sy33 ing174))) +(recipe r33 (key (sx33 ing109))) +(recipe r33 (key (sy33 ing175))) +(recipe r33 (key (sx33 ing110))) +(recipe r33 (key (sy33 ing176))) +(recipe r34 (numIngredients 2)) +(recipe r34 (result (id item34))) +(recipe r34 (pattern 0 sx34)) +(recipe r34 (pattern 1 sy34)) +(recipe r34 (key (sx34 ing102))) +(recipe r34 (key (sy34 ing170))) +(recipe r34 (key (sx34 ing103))) +(recipe r34 (key (sy34 ing171))) +(recipe r34 (key (sx34 ing104))) +(recipe r34 (key (sy34 ing172))) +(recipe r34 (key (sx34 ing105))) +(recipe r34 (key (sy34 ing173))) +(recipe r34 (key (sx34 ing106))) +(recipe r34 (key (sy34 ing174))) +(recipe r34 (key (sx34 ing107))) +(recipe r34 (key (sy34 ing175))) +(recipe r34 (key (sx34 ing108))) +(recipe r34 (key (sy34 ing176))) +(recipe r34 (key (sx34 ing109))) +(recipe r34 (key (sy34 ing177))) +(recipe r34 (key (sx34 ing110))) +(recipe r34 (key (sy34 ing178))) +(recipe r34 (key (sx34 ing111))) +(recipe r34 (key (sy34 ing179))) +(recipe r34 (key (sx34 ing112))) +(recipe r34 (key (sy34 ing180))) +(recipe r34 (key (sx34 ing113))) +(recipe r34 (key (sy34 ing181))) +(recipe r35 (numIngredients 2)) +(recipe r35 (result (id item35))) +(recipe r35 (pattern 0 sx35)) +(recipe r35 (pattern 1 sy35)) +(recipe r35 (key (sx35 ing105))) +(recipe r35 (key (sy35 ing175))) +(recipe r35 (key (sx35 ing106))) +(recipe r35 (key (sy35 ing176))) +(recipe r35 (key (sx35 ing107))) +(recipe r35 (key (sy35 ing177))) +(recipe r35 (key (sx35 ing108))) +(recipe r35 (key (sy35 ing178))) +(recipe r35 (key (sx35 ing109))) +(recipe r35 (key (sy35 ing179))) +(recipe r35 (key (sx35 ing110))) +(recipe r35 (key (sy35 ing180))) +(recipe r35 (key (sx35 ing111))) +(recipe r35 (key (sy35 ing181))) +(recipe r35 (key (sx35 ing112))) +(recipe r35 (key (sy35 ing182))) +(recipe r35 (key (sx35 ing113))) +(recipe r35 (key (sy35 ing183))) +(recipe r35 (key (sx35 ing114))) +(recipe r35 (key (sy35 ing184))) +(recipe r35 (key (sx35 ing115))) +(recipe r35 (key (sy35 ing185))) +(recipe r35 (key (sx35 ing116))) +(recipe r35 (key (sy35 ing186))) +(recipe r36 (numIngredients 2)) +(recipe r36 (result (id item36))) +(recipe r36 (pattern 0 sx36)) +(recipe r36 (pattern 1 sy36)) +(recipe r36 (key (sx36 ing108))) +(recipe r36 (key (sy36 ing180))) +(recipe r36 (key (sx36 ing109))) +(recipe r36 (key (sy36 ing181))) +(recipe r36 (key (sx36 ing110))) +(recipe r36 (key (sy36 ing182))) +(recipe r36 (key (sx36 ing111))) +(recipe r36 (key (sy36 ing183))) +(recipe r36 (key (sx36 ing112))) +(recipe r36 (key (sy36 ing184))) +(recipe r36 (key (sx36 ing113))) +(recipe r36 (key (sy36 ing185))) +(recipe r36 (key (sx36 ing114))) +(recipe r36 (key (sy36 ing186))) +(recipe r36 (key (sx36 ing115))) +(recipe r36 (key (sy36 ing187))) +(recipe r36 (key (sx36 ing116))) +(recipe r36 (key (sy36 ing188))) +(recipe r36 (key (sx36 ing117))) +(recipe r36 (key (sy36 ing189))) +(recipe r36 (key (sx36 ing118))) +(recipe r36 (key (sy36 ing190))) +(recipe r36 (key (sx36 ing119))) +(recipe r36 (key (sy36 ing191))) +(recipe r37 (numIngredients 2)) +(recipe r37 (result (id item37))) +(recipe r37 (pattern 0 sx37)) +(recipe r37 (pattern 1 sy37)) +(recipe r37 (key (sx37 ing111))) +(recipe r37 (key (sy37 ing185))) +(recipe r37 (key (sx37 ing112))) +(recipe r37 (key (sy37 ing186))) +(recipe r37 (key (sx37 ing113))) +(recipe r37 (key (sy37 ing187))) +(recipe r37 (key (sx37 ing114))) +(recipe r37 (key (sy37 ing188))) +(recipe r37 (key (sx37 ing115))) +(recipe r37 (key (sy37 ing189))) +(recipe r37 (key (sx37 ing116))) +(recipe r37 (key (sy37 ing190))) +(recipe r37 (key (sx37 ing117))) +(recipe r37 (key (sy37 ing191))) +(recipe r37 (key (sx37 ing118))) +(recipe r37 (key (sy37 ing192))) +(recipe r37 (key (sx37 ing119))) +(recipe r37 (key (sy37 ing193))) +(recipe r37 (key (sx37 ing120))) +(recipe r37 (key (sy37 ing194))) +(recipe r37 (key (sx37 ing121))) +(recipe r37 (key (sy37 ing195))) +(recipe r37 (key (sx37 ing122))) +(recipe r37 (key (sy37 ing196))) +(recipe r38 (numIngredients 2)) +(recipe r38 (result (id item38))) +(recipe r38 (pattern 0 sx38)) +(recipe r38 (pattern 1 sy38)) +(recipe r38 (key (sx38 ing114))) +(recipe r38 (key (sy38 ing190))) +(recipe r38 (key (sx38 ing115))) +(recipe r38 (key (sy38 ing191))) +(recipe r38 (key (sx38 ing116))) +(recipe r38 (key (sy38 ing192))) +(recipe r38 (key (sx38 ing117))) +(recipe r38 (key (sy38 ing193))) +(recipe r38 (key (sx38 ing118))) +(recipe r38 (key (sy38 ing194))) +(recipe r38 (key (sx38 ing119))) +(recipe r38 (key (sy38 ing195))) +(recipe r38 (key (sx38 ing120))) +(recipe r38 (key (sy38 ing196))) +(recipe r38 (key (sx38 ing121))) +(recipe r38 (key (sy38 ing197))) +(recipe r38 (key (sx38 ing122))) +(recipe r38 (key (sy38 ing198))) +(recipe r38 (key (sx38 ing123))) +(recipe r38 (key (sy38 ing199))) +(recipe r38 (key (sx38 ing124))) +(recipe r38 (key (sy38 ing200))) +(recipe r38 (key (sx38 ing125))) +(recipe r38 (key (sy38 ing201))) +(recipe r39 (numIngredients 2)) +(recipe r39 (result (id item39))) +(recipe r39 (pattern 0 sx39)) +(recipe r39 (pattern 1 sy39)) +(recipe r39 (key (sx39 ing117))) +(recipe r39 (key (sy39 ing195))) +(recipe r39 (key (sx39 ing118))) +(recipe r39 (key (sy39 ing196))) +(recipe r39 (key (sx39 ing119))) +(recipe r39 (key (sy39 ing197))) +(recipe r39 (key (sx39 ing120))) +(recipe r39 (key (sy39 ing198))) +(recipe r39 (key (sx39 ing121))) +(recipe r39 (key (sy39 ing199))) +(recipe r39 (key (sx39 ing122))) +(recipe r39 (key (sy39 ing200))) +(recipe r39 (key (sx39 ing123))) +(recipe r39 (key (sy39 ing201))) +(recipe r39 (key (sx39 ing124))) +(recipe r39 (key (sy39 ing202))) +(recipe r39 (key (sx39 ing125))) +(recipe r39 (key (sy39 ing203))) +(recipe r39 (key (sx39 ing126))) +(recipe r39 (key (sy39 ing204))) +(recipe r39 (key (sx39 ing127))) +(recipe r39 (key (sy39 ing205))) +(recipe r39 (key (sx39 ing128))) +(recipe r39 (key (sy39 ing206))) +(recipe r40 (numIngredients 2)) +(recipe r40 (result (id item40))) +(recipe r40 (pattern 0 sx40)) +(recipe r40 (pattern 1 sy40)) +(recipe r40 (key (sx40 ing120))) +(recipe r40 (key (sy40 ing200))) +(recipe r40 (key (sx40 ing121))) +(recipe r40 (key (sy40 ing201))) +(recipe r40 (key (sx40 ing122))) +(recipe r40 (key (sy40 ing202))) +(recipe r40 (key (sx40 ing123))) +(recipe r40 (key (sy40 ing203))) +(recipe r40 (key (sx40 ing124))) +(recipe r40 (key (sy40 ing204))) +(recipe r40 (key (sx40 ing125))) +(recipe r40 (key (sy40 ing205))) +(recipe r40 (key (sx40 ing126))) +(recipe r40 (key (sy40 ing206))) +(recipe r40 (key (sx40 ing127))) +(recipe r40 (key (sy40 ing207))) +(recipe r40 (key (sx40 ing128))) +(recipe r40 (key (sy40 ing208))) +(recipe r40 (key (sx40 ing129))) +(recipe r40 (key (sy40 ing209))) +(recipe r40 (key (sx40 ing130))) +(recipe r40 (key (sy40 ing210))) +(recipe r40 (key (sx40 ing131))) +(recipe r40 (key (sy40 ing211))) +(recipe r41 (numIngredients 2)) +(recipe r41 (result (id item41))) +(recipe r41 (pattern 0 sx41)) +(recipe r41 (pattern 1 sy41)) +(recipe r41 (key (sx41 ing123))) +(recipe r41 (key (sy41 ing205))) +(recipe r41 (key (sx41 ing124))) +(recipe r41 (key (sy41 ing206))) +(recipe r41 (key (sx41 ing125))) +(recipe r41 (key (sy41 ing207))) +(recipe r41 (key (sx41 ing126))) +(recipe r41 (key (sy41 ing208))) +(recipe r41 (key (sx41 ing127))) +(recipe r41 (key (sy41 ing209))) +(recipe r41 (key (sx41 ing128))) +(recipe r41 (key (sy41 ing210))) +(recipe r41 (key (sx41 ing129))) +(recipe r41 (key (sy41 ing211))) +(recipe r41 (key (sx41 ing130))) +(recipe r41 (key (sy41 ing212))) +(recipe r41 (key (sx41 ing131))) +(recipe r41 (key (sy41 ing213))) +(recipe r41 (key (sx41 ing132))) +(recipe r41 (key (sy41 ing214))) +(recipe r41 (key (sx41 ing133))) +(recipe r41 (key (sy41 ing215))) +(recipe r41 (key (sx41 ing134))) +(recipe r41 (key (sy41 ing216))) +(recipe r42 (numIngredients 2)) +(recipe r42 (result (id item42))) +(recipe r42 (pattern 0 sx42)) +(recipe r42 (pattern 1 sy42)) +(recipe r42 (key (sx42 ing126))) +(recipe r42 (key (sy42 ing210))) +(recipe r42 (key (sx42 ing127))) +(recipe r42 (key (sy42 ing211))) +(recipe r42 (key (sx42 ing128))) +(recipe r42 (key (sy42 ing212))) +(recipe r42 (key (sx42 ing129))) +(recipe r42 (key (sy42 ing213))) +(recipe r42 (key (sx42 ing130))) +(recipe r42 (key (sy42 ing214))) +(recipe r42 (key (sx42 ing131))) +(recipe r42 (key (sy42 ing215))) +(recipe r42 (key (sx42 ing132))) +(recipe r42 (key (sy42 ing216))) +(recipe r42 (key (sx42 ing133))) +(recipe r42 (key (sy42 ing217))) +(recipe r42 (key (sx42 ing134))) +(recipe r42 (key (sy42 ing218))) +(recipe r42 (key (sx42 ing135))) +(recipe r42 (key (sy42 ing219))) +(recipe r42 (key (sx42 ing136))) +(recipe r42 (key (sy42 ing220))) +(recipe r42 (key (sx42 ing137))) +(recipe r42 (key (sy42 ing221))) +(recipe r43 (numIngredients 2)) +(recipe r43 (result (id item43))) +(recipe r43 (pattern 0 sx43)) +(recipe r43 (pattern 1 sy43)) +(recipe r43 (key (sx43 ing129))) +(recipe r43 (key (sy43 ing215))) +(recipe r43 (key (sx43 ing130))) +(recipe r43 (key (sy43 ing216))) +(recipe r43 (key (sx43 ing131))) +(recipe r43 (key (sy43 ing217))) +(recipe r43 (key (sx43 ing132))) +(recipe r43 (key (sy43 ing218))) +(recipe r43 (key (sx43 ing133))) +(recipe r43 (key (sy43 ing219))) +(recipe r43 (key (sx43 ing134))) +(recipe r43 (key (sy43 ing220))) +(recipe r43 (key (sx43 ing135))) +(recipe r43 (key (sy43 ing221))) +(recipe r43 (key (sx43 ing136))) +(recipe r43 (key (sy43 ing222))) +(recipe r43 (key (sx43 ing137))) +(recipe r43 (key (sy43 ing223))) +(recipe r43 (key (sx43 ing138))) +(recipe r43 (key (sy43 ing224))) +(recipe r43 (key (sx43 ing139))) +(recipe r43 (key (sy43 ing225))) +(recipe r43 (key (sx43 ing140))) +(recipe r43 (key (sy43 ing226))) +(recipe r44 (numIngredients 2)) +(recipe r44 (result (id item44))) +(recipe r44 (pattern 0 sx44)) +(recipe r44 (pattern 1 sy44)) +(recipe r44 (key (sx44 ing132))) +(recipe r44 (key (sy44 ing220))) +(recipe r44 (key (sx44 ing133))) +(recipe r44 (key (sy44 ing221))) +(recipe r44 (key (sx44 ing134))) +(recipe r44 (key (sy44 ing222))) +(recipe r44 (key (sx44 ing135))) +(recipe r44 (key (sy44 ing223))) +(recipe r44 (key (sx44 ing136))) +(recipe r44 (key (sy44 ing224))) +(recipe r44 (key (sx44 ing137))) +(recipe r44 (key (sy44 ing225))) +(recipe r44 (key (sx44 ing138))) +(recipe r44 (key (sy44 ing226))) +(recipe r44 (key (sx44 ing139))) +(recipe r44 (key (sy44 ing227))) +(recipe r44 (key (sx44 ing140))) +(recipe r44 (key (sy44 ing228))) +(recipe r44 (key (sx44 ing141))) +(recipe r44 (key (sy44 ing229))) +(recipe r44 (key (sx44 ing142))) +(recipe r44 (key (sy44 ing230))) +(recipe r44 (key (sx44 ing143))) +(recipe r44 (key (sy44 ing231))) +(recipe r45 (numIngredients 2)) +(recipe r45 (result (id item45))) +(recipe r45 (pattern 0 sx45)) +(recipe r45 (pattern 1 sy45)) +(recipe r45 (key (sx45 ing135))) +(recipe r45 (key (sy45 ing225))) +(recipe r45 (key (sx45 ing136))) +(recipe r45 (key (sy45 ing226))) +(recipe r45 (key (sx45 ing137))) +(recipe r45 (key (sy45 ing227))) +(recipe r45 (key (sx45 ing138))) +(recipe r45 (key (sy45 ing228))) +(recipe r45 (key (sx45 ing139))) +(recipe r45 (key (sy45 ing229))) +(recipe r45 (key (sx45 ing140))) +(recipe r45 (key (sy45 ing230))) +(recipe r45 (key (sx45 ing141))) +(recipe r45 (key (sy45 ing231))) +(recipe r45 (key (sx45 ing142))) +(recipe r45 (key (sy45 ing232))) +(recipe r45 (key (sx45 ing143))) +(recipe r45 (key (sy45 ing233))) +(recipe r45 (key (sx45 ing144))) +(recipe r45 (key (sy45 ing234))) +(recipe r45 (key (sx45 ing145))) +(recipe r45 (key (sy45 ing235))) +(recipe r45 (key (sx45 ing146))) +(recipe r45 (key (sy45 ing236))) +(recipe r46 (numIngredients 2)) +(recipe r46 (result (id item46))) +(recipe r46 (pattern 0 sx46)) +(recipe r46 (pattern 1 sy46)) +(recipe r46 (key (sx46 ing138))) +(recipe r46 (key (sy46 ing230))) +(recipe r46 (key (sx46 ing139))) +(recipe r46 (key (sy46 ing231))) +(recipe r46 (key (sx46 ing140))) +(recipe r46 (key (sy46 ing232))) +(recipe r46 (key (sx46 ing141))) +(recipe r46 (key (sy46 ing233))) +(recipe r46 (key (sx46 ing142))) +(recipe r46 (key (sy46 ing234))) +(recipe r46 (key (sx46 ing143))) +(recipe r46 (key (sy46 ing235))) +(recipe r46 (key (sx46 ing144))) +(recipe r46 (key (sy46 ing236))) +(recipe r46 (key (sx46 ing145))) +(recipe r46 (key (sy46 ing237))) +(recipe r46 (key (sx46 ing146))) +(recipe r46 (key (sy46 ing238))) +(recipe r46 (key (sx46 ing147))) +(recipe r46 (key (sy46 ing239))) +(recipe r46 (key (sx46 ing148))) +(recipe r46 (key (sy46 ing240))) +(recipe r46 (key (sx46 ing149))) +(recipe r46 (key (sy46 ing241))) +(recipe r47 (numIngredients 2)) +(recipe r47 (result (id item47))) +(recipe r47 (pattern 0 sx47)) +(recipe r47 (pattern 1 sy47)) +(recipe r47 (key (sx47 ing141))) +(recipe r47 (key (sy47 ing235))) +(recipe r47 (key (sx47 ing142))) +(recipe r47 (key (sy47 ing236))) +(recipe r47 (key (sx47 ing143))) +(recipe r47 (key (sy47 ing237))) +(recipe r47 (key (sx47 ing144))) +(recipe r47 (key (sy47 ing238))) +(recipe r47 (key (sx47 ing145))) +(recipe r47 (key (sy47 ing239))) +(recipe r47 (key (sx47 ing146))) +(recipe r47 (key (sy47 ing240))) +(recipe r47 (key (sx47 ing147))) +(recipe r47 (key (sy47 ing241))) +(recipe r47 (key (sx47 ing148))) +(recipe r47 (key (sy47 ing242))) +(recipe r47 (key (sx47 ing149))) +(recipe r47 (key (sy47 ing243))) +(recipe r47 (key (sx47 ing150))) +(recipe r47 (key (sy47 ing244))) +(recipe r47 (key (sx47 ing151))) +(recipe r47 (key (sy47 ing245))) +(recipe r47 (key (sx47 ing152))) +(recipe r47 (key (sy47 ing246))) +(recipe r48 (numIngredients 2)) +(recipe r48 (result (id item48))) +(recipe r48 (pattern 0 sx48)) +(recipe r48 (pattern 1 sy48)) +(recipe r48 (key (sx48 ing144))) +(recipe r48 (key (sy48 ing240))) +(recipe r48 (key (sx48 ing145))) +(recipe r48 (key (sy48 ing241))) +(recipe r48 (key (sx48 ing146))) +(recipe r48 (key (sy48 ing242))) +(recipe r48 (key (sx48 ing147))) +(recipe r48 (key (sy48 ing243))) +(recipe r48 (key (sx48 ing148))) +(recipe r48 (key (sy48 ing244))) +(recipe r48 (key (sx48 ing149))) +(recipe r48 (key (sy48 ing245))) +(recipe r48 (key (sx48 ing150))) +(recipe r48 (key (sy48 ing246))) +(recipe r48 (key (sx48 ing151))) +(recipe r48 (key (sy48 ing247))) +(recipe r48 (key (sx48 ing152))) +(recipe r48 (key (sy48 ing248))) +(recipe r48 (key (sx48 ing153))) +(recipe r48 (key (sy48 ing249))) +(recipe r48 (key (sx48 ing154))) +(recipe r48 (key (sy48 ing250))) +(recipe r48 (key (sx48 ing155))) +(recipe r48 (key (sy48 ing251))) +(recipe r49 (numIngredients 2)) +(recipe r49 (result (id item49))) +(recipe r49 (pattern 0 sx49)) +(recipe r49 (pattern 1 sy49)) +(recipe r49 (key (sx49 ing147))) +(recipe r49 (key (sy49 ing245))) +(recipe r49 (key (sx49 ing148))) +(recipe r49 (key (sy49 ing246))) +(recipe r49 (key (sx49 ing149))) +(recipe r49 (key (sy49 ing247))) +(recipe r49 (key (sx49 ing150))) +(recipe r49 (key (sy49 ing248))) +(recipe r49 (key (sx49 ing151))) +(recipe r49 (key (sy49 ing249))) +(recipe r49 (key (sx49 ing152))) +(recipe r49 (key (sy49 ing250))) +(recipe r49 (key (sx49 ing153))) +(recipe r49 (key (sy49 ing251))) +(recipe r49 (key (sx49 ing154))) +(recipe r49 (key (sy49 ing252))) +(recipe r49 (key (sx49 ing155))) +(recipe r49 (key (sy49 ing253))) +(recipe r49 (key (sx49 ing156))) +(recipe r49 (key (sy49 ing254))) +(recipe r49 (key (sx49 ing157))) +(recipe r49 (key (sy49 ing255))) +(recipe r49 (key (sx49 ing158))) +(recipe r49 (key (sy49 ing256))) +(recipe r50 (numIngredients 2)) +(recipe r50 (result (id item50))) +(recipe r50 (pattern 0 sx50)) +(recipe r50 (pattern 1 sy50)) +(recipe r50 (key (sx50 ing150))) +(recipe r50 (key (sy50 ing250))) +(recipe r50 (key (sx50 ing151))) +(recipe r50 (key (sy50 ing251))) +(recipe r50 (key (sx50 ing152))) +(recipe r50 (key (sy50 ing252))) +(recipe r50 (key (sx50 ing153))) +(recipe r50 (key (sy50 ing253))) +(recipe r50 (key (sx50 ing154))) +(recipe r50 (key (sy50 ing254))) +(recipe r50 (key (sx50 ing155))) +(recipe r50 (key (sy50 ing255))) +(recipe r50 (key (sx50 ing156))) +(recipe r50 (key (sy50 ing256))) +(recipe r50 (key (sx50 ing157))) +(recipe r50 (key (sy50 ing257))) +(recipe r50 (key (sx50 ing158))) +(recipe r50 (key (sy50 ing258))) +(recipe r50 (key (sx50 ing159))) +(recipe r50 (key (sy50 ing259))) +(recipe r50 (key (sx50 ing160))) +(recipe r50 (key (sy50 ing260))) +(recipe r50 (key (sx50 ing161))) +(recipe r50 (key (sy50 ing261))) +(recipe r51 (numIngredients 2)) +(recipe r51 (result (id item51))) +(recipe r51 (pattern 0 sx51)) +(recipe r51 (pattern 1 sy51)) +(recipe r51 (key (sx51 ing153))) +(recipe r51 (key (sy51 ing255))) +(recipe r51 (key (sx51 ing154))) +(recipe r51 (key (sy51 ing256))) +(recipe r51 (key (sx51 ing155))) +(recipe r51 (key (sy51 ing257))) +(recipe r51 (key (sx51 ing156))) +(recipe r51 (key (sy51 ing258))) +(recipe r51 (key (sx51 ing157))) +(recipe r51 (key (sy51 ing259))) +(recipe r51 (key (sx51 ing158))) +(recipe r51 (key (sy51 ing260))) +(recipe r51 (key (sx51 ing159))) +(recipe r51 (key (sy51 ing261))) +(recipe r51 (key (sx51 ing160))) +(recipe r51 (key (sy51 ing262))) +(recipe r51 (key (sx51 ing161))) +(recipe r51 (key (sy51 ing263))) +(recipe r51 (key (sx51 ing162))) +(recipe r51 (key (sy51 ing264))) +(recipe r51 (key (sx51 ing163))) +(recipe r51 (key (sy51 ing265))) +(recipe r51 (key (sx51 ing164))) +(recipe r51 (key (sy51 ing266))) +(recipe r52 (numIngredients 2)) +(recipe r52 (result (id item52))) +(recipe r52 (pattern 0 sx52)) +(recipe r52 (pattern 1 sy52)) +(recipe r52 (key (sx52 ing156))) +(recipe r52 (key (sy52 ing260))) +(recipe r52 (key (sx52 ing157))) +(recipe r52 (key (sy52 ing261))) +(recipe r52 (key (sx52 ing158))) +(recipe r52 (key (sy52 ing262))) +(recipe r52 (key (sx52 ing159))) +(recipe r52 (key (sy52 ing263))) +(recipe r52 (key (sx52 ing160))) +(recipe r52 (key (sy52 ing264))) +(recipe r52 (key (sx52 ing161))) +(recipe r52 (key (sy52 ing265))) +(recipe r52 (key (sx52 ing162))) +(recipe r52 (key (sy52 ing266))) +(recipe r52 (key (sx52 ing163))) +(recipe r52 (key (sy52 ing267))) +(recipe r52 (key (sx52 ing164))) +(recipe r52 (key (sy52 ing268))) +(recipe r52 (key (sx52 ing165))) +(recipe r52 (key (sy52 ing269))) +(recipe r52 (key (sx52 ing166))) +(recipe r52 (key (sy52 ing270))) +(recipe r52 (key (sx52 ing167))) +(recipe r52 (key (sy52 ing271))) +(recipe r53 (numIngredients 2)) +(recipe r53 (result (id item53))) +(recipe r53 (pattern 0 sx53)) +(recipe r53 (pattern 1 sy53)) +(recipe r53 (key (sx53 ing159))) +(recipe r53 (key (sy53 ing265))) +(recipe r53 (key (sx53 ing160))) +(recipe r53 (key (sy53 ing266))) +(recipe r53 (key (sx53 ing161))) +(recipe r53 (key (sy53 ing267))) +(recipe r53 (key (sx53 ing162))) +(recipe r53 (key (sy53 ing268))) +(recipe r53 (key (sx53 ing163))) +(recipe r53 (key (sy53 ing269))) +(recipe r53 (key (sx53 ing164))) +(recipe r53 (key (sy53 ing270))) +(recipe r53 (key (sx53 ing165))) +(recipe r53 (key (sy53 ing271))) +(recipe r53 (key (sx53 ing166))) +(recipe r53 (key (sy53 ing272))) +(recipe r53 (key (sx53 ing167))) +(recipe r53 (key (sy53 ing273))) +(recipe r53 (key (sx53 ing168))) +(recipe r53 (key (sy53 ing274))) +(recipe r53 (key (sx53 ing169))) +(recipe r53 (key (sy53 ing275))) +(recipe r53 (key (sx53 ing170))) +(recipe r53 (key (sy53 ing276))) +(recipe r54 (numIngredients 2)) +(recipe r54 (result (id item54))) +(recipe r54 (pattern 0 sx54)) +(recipe r54 (pattern 1 sy54)) +(recipe r54 (key (sx54 ing162))) +(recipe r54 (key (sy54 ing270))) +(recipe r54 (key (sx54 ing163))) +(recipe r54 (key (sy54 ing271))) +(recipe r54 (key (sx54 ing164))) +(recipe r54 (key (sy54 ing272))) +(recipe r54 (key (sx54 ing165))) +(recipe r54 (key (sy54 ing273))) +(recipe r54 (key (sx54 ing166))) +(recipe r54 (key (sy54 ing274))) +(recipe r54 (key (sx54 ing167))) +(recipe r54 (key (sy54 ing275))) +(recipe r54 (key (sx54 ing168))) +(recipe r54 (key (sy54 ing276))) +(recipe r54 (key (sx54 ing169))) +(recipe r54 (key (sy54 ing277))) +(recipe r54 (key (sx54 ing170))) +(recipe r54 (key (sy54 ing278))) +(recipe r54 (key (sx54 ing171))) +(recipe r54 (key (sy54 ing279))) +(recipe r54 (key (sx54 ing172))) +(recipe r54 (key (sy54 ing280))) +(recipe r54 (key (sx54 ing173))) +(recipe r54 (key (sy54 ing281))) +(recipe r55 (numIngredients 2)) +(recipe r55 (result (id item55))) +(recipe r55 (pattern 0 sx55)) +(recipe r55 (pattern 1 sy55)) +(recipe r55 (key (sx55 ing165))) +(recipe r55 (key (sy55 ing275))) +(recipe r55 (key (sx55 ing166))) +(recipe r55 (key (sy55 ing276))) +(recipe r55 (key (sx55 ing167))) +(recipe r55 (key (sy55 ing277))) +(recipe r55 (key (sx55 ing168))) +(recipe r55 (key (sy55 ing278))) +(recipe r55 (key (sx55 ing169))) +(recipe r55 (key (sy55 ing279))) +(recipe r55 (key (sx55 ing170))) +(recipe r55 (key (sy55 ing280))) +(recipe r55 (key (sx55 ing171))) +(recipe r55 (key (sy55 ing281))) +(recipe r55 (key (sx55 ing172))) +(recipe r55 (key (sy55 ing282))) +(recipe r55 (key (sx55 ing173))) +(recipe r55 (key (sy55 ing283))) +(recipe r55 (key (sx55 ing174))) +(recipe r55 (key (sy55 ing284))) +(recipe r55 (key (sx55 ing175))) +(recipe r55 (key (sy55 ing285))) +(recipe r55 (key (sx55 ing176))) +(recipe r55 (key (sy55 ing286))) +(recipe r56 (numIngredients 2)) +(recipe r56 (result (id item56))) +(recipe r56 (pattern 0 sx56)) +(recipe r56 (pattern 1 sy56)) +(recipe r56 (key (sx56 ing168))) +(recipe r56 (key (sy56 ing280))) +(recipe r56 (key (sx56 ing169))) +(recipe r56 (key (sy56 ing281))) +(recipe r56 (key (sx56 ing170))) +(recipe r56 (key (sy56 ing282))) +(recipe r56 (key (sx56 ing171))) +(recipe r56 (key (sy56 ing283))) +(recipe r56 (key (sx56 ing172))) +(recipe r56 (key (sy56 ing284))) +(recipe r56 (key (sx56 ing173))) +(recipe r56 (key (sy56 ing285))) +(recipe r56 (key (sx56 ing174))) +(recipe r56 (key (sy56 ing286))) +(recipe r56 (key (sx56 ing175))) +(recipe r56 (key (sy56 ing287))) +(recipe r56 (key (sx56 ing176))) +(recipe r56 (key (sy56 ing288))) +(recipe r56 (key (sx56 ing177))) +(recipe r56 (key (sy56 ing289))) +(recipe r56 (key (sx56 ing178))) +(recipe r56 (key (sy56 ing290))) +(recipe r56 (key (sx56 ing179))) +(recipe r56 (key (sy56 ing291))) +(recipe r57 (numIngredients 2)) +(recipe r57 (result (id item57))) +(recipe r57 (pattern 0 sx57)) +(recipe r57 (pattern 1 sy57)) +(recipe r57 (key (sx57 ing171))) +(recipe r57 (key (sy57 ing285))) +(recipe r57 (key (sx57 ing172))) +(recipe r57 (key (sy57 ing286))) +(recipe r57 (key (sx57 ing173))) +(recipe r57 (key (sy57 ing287))) +(recipe r57 (key (sx57 ing174))) +(recipe r57 (key (sy57 ing288))) +(recipe r57 (key (sx57 ing175))) +(recipe r57 (key (sy57 ing289))) +(recipe r57 (key (sx57 ing176))) +(recipe r57 (key (sy57 ing290))) +(recipe r57 (key (sx57 ing177))) +(recipe r57 (key (sy57 ing291))) +(recipe r57 (key (sx57 ing178))) +(recipe r57 (key (sy57 ing292))) +(recipe r57 (key (sx57 ing179))) +(recipe r57 (key (sy57 ing293))) +(recipe r57 (key (sx57 ing180))) +(recipe r57 (key (sy57 ing294))) +(recipe r57 (key (sx57 ing181))) +(recipe r57 (key (sy57 ing295))) +(recipe r57 (key (sx57 ing182))) +(recipe r57 (key (sy57 ing296))) +(recipe r58 (numIngredients 2)) +(recipe r58 (result (id item58))) +(recipe r58 (pattern 0 sx58)) +(recipe r58 (pattern 1 sy58)) +(recipe r58 (key (sx58 ing174))) +(recipe r58 (key (sy58 ing290))) +(recipe r58 (key (sx58 ing175))) +(recipe r58 (key (sy58 ing291))) +(recipe r58 (key (sx58 ing176))) +(recipe r58 (key (sy58 ing292))) +(recipe r58 (key (sx58 ing177))) +(recipe r58 (key (sy58 ing293))) +(recipe r58 (key (sx58 ing178))) +(recipe r58 (key (sy58 ing294))) +(recipe r58 (key (sx58 ing179))) +(recipe r58 (key (sy58 ing295))) +(recipe r58 (key (sx58 ing180))) +(recipe r58 (key (sy58 ing296))) +(recipe r58 (key (sx58 ing181))) +(recipe r58 (key (sy58 ing297))) +(recipe r58 (key (sx58 ing182))) +(recipe r58 (key (sy58 ing298))) +(recipe r58 (key (sx58 ing183))) +(recipe r58 (key (sy58 ing299))) +(recipe r58 (key (sx58 ing184))) +(recipe r58 (key (sy58 ing300))) +(recipe r58 (key (sx58 ing185))) +(recipe r58 (key (sy58 ing301))) +(recipe r59 (numIngredients 2)) +(recipe r59 (result (id item59))) +(recipe r59 (pattern 0 sx59)) +(recipe r59 (pattern 1 sy59)) +(recipe r59 (key (sx59 ing177))) +(recipe r59 (key (sy59 ing295))) +(recipe r59 (key (sx59 ing178))) +(recipe r59 (key (sy59 ing296))) +(recipe r59 (key (sx59 ing179))) +(recipe r59 (key (sy59 ing297))) +(recipe r59 (key (sx59 ing180))) +(recipe r59 (key (sy59 ing298))) +(recipe r59 (key (sx59 ing181))) +(recipe r59 (key (sy59 ing299))) +(recipe r59 (key (sx59 ing182))) +(recipe r59 (key (sy59 ing300))) +(recipe r59 (key (sx59 ing183))) +(recipe r59 (key (sy59 ing301))) +(recipe r59 (key (sx59 ing184))) +(recipe r59 (key (sy59 ing302))) +(recipe r59 (key (sx59 ing185))) +(recipe r59 (key (sy59 ing303))) +(recipe r59 (key (sx59 ing186))) +(recipe r59 (key (sy59 ing304))) +(recipe r59 (key (sx59 ing187))) +(recipe r59 (key (sy59 ing305))) +(recipe r59 (key (sx59 ing188))) +(recipe r59 (key (sy59 ing306))) +(recipe r60 (numIngredients 2)) +(recipe r60 (result (id item60))) +(recipe r60 (pattern 0 sx60)) +(recipe r60 (pattern 1 sy60)) +(recipe r60 (key (sx60 ing180))) +(recipe r60 (key (sy60 ing300))) +(recipe r60 (key (sx60 ing181))) +(recipe r60 (key (sy60 ing301))) +(recipe r60 (key (sx60 ing182))) +(recipe r60 (key (sy60 ing302))) +(recipe r60 (key (sx60 ing183))) +(recipe r60 (key (sy60 ing303))) +(recipe r60 (key (sx60 ing184))) +(recipe r60 (key (sy60 ing304))) +(recipe r60 (key (sx60 ing185))) +(recipe r60 (key (sy60 ing305))) +(recipe r60 (key (sx60 ing186))) +(recipe r60 (key (sy60 ing306))) +(recipe r60 (key (sx60 ing187))) +(recipe r60 (key (sy60 ing307))) +(recipe r60 (key (sx60 ing188))) +(recipe r60 (key (sy60 ing308))) +(recipe r60 (key (sx60 ing189))) +(recipe r60 (key (sy60 ing309))) +(recipe r60 (key (sx60 ing190))) +(recipe r60 (key (sy60 ing310))) +(recipe r60 (key (sx60 ing191))) +(recipe r60 (key (sy60 ing311))) +(recipe r61 (numIngredients 2)) +(recipe r61 (result (id item61))) +(recipe r61 (pattern 0 sx61)) +(recipe r61 (pattern 1 sy61)) +(recipe r61 (key (sx61 ing183))) +(recipe r61 (key (sy61 ing305))) +(recipe r61 (key (sx61 ing184))) +(recipe r61 (key (sy61 ing306))) +(recipe r61 (key (sx61 ing185))) +(recipe r61 (key (sy61 ing307))) +(recipe r61 (key (sx61 ing186))) +(recipe r61 (key (sy61 ing308))) +(recipe r61 (key (sx61 ing187))) +(recipe r61 (key (sy61 ing309))) +(recipe r61 (key (sx61 ing188))) +(recipe r61 (key (sy61 ing310))) +(recipe r61 (key (sx61 ing189))) +(recipe r61 (key (sy61 ing311))) +(recipe r61 (key (sx61 ing190))) +(recipe r61 (key (sy61 ing312))) +(recipe r61 (key (sx61 ing191))) +(recipe r61 (key (sy61 ing313))) +(recipe r61 (key (sx61 ing192))) +(recipe r61 (key (sy61 ing314))) +(recipe r61 (key (sx61 ing193))) +(recipe r61 (key (sy61 ing315))) +(recipe r61 (key (sx61 ing194))) +(recipe r61 (key (sy61 ing316))) +(recipe r62 (numIngredients 2)) +(recipe r62 (result (id item62))) +(recipe r62 (pattern 0 sx62)) +(recipe r62 (pattern 1 sy62)) +(recipe r62 (key (sx62 ing186))) +(recipe r62 (key (sy62 ing310))) +(recipe r62 (key (sx62 ing187))) +(recipe r62 (key (sy62 ing311))) +(recipe r62 (key (sx62 ing188))) +(recipe r62 (key (sy62 ing312))) +(recipe r62 (key (sx62 ing189))) +(recipe r62 (key (sy62 ing313))) +(recipe r62 (key (sx62 ing190))) +(recipe r62 (key (sy62 ing314))) +(recipe r62 (key (sx62 ing191))) +(recipe r62 (key (sy62 ing315))) +(recipe r62 (key (sx62 ing192))) +(recipe r62 (key (sy62 ing316))) +(recipe r62 (key (sx62 ing193))) +(recipe r62 (key (sy62 ing317))) +(recipe r62 (key (sx62 ing194))) +(recipe r62 (key (sy62 ing318))) +(recipe r62 (key (sx62 ing195))) +(recipe r62 (key (sy62 ing319))) +(recipe r62 (key (sx62 ing196))) +(recipe r62 (key (sy62 ing320))) +(recipe r62 (key (sx62 ing197))) +(recipe r62 (key (sy62 ing321))) +(recipe r63 (numIngredients 2)) +(recipe r63 (result (id item63))) +(recipe r63 (pattern 0 sx63)) +(recipe r63 (pattern 1 sy63)) +(recipe r63 (key (sx63 ing189))) +(recipe r63 (key (sy63 ing315))) +(recipe r63 (key (sx63 ing190))) +(recipe r63 (key (sy63 ing316))) +(recipe r63 (key (sx63 ing191))) +(recipe r63 (key (sy63 ing317))) +(recipe r63 (key (sx63 ing192))) +(recipe r63 (key (sy63 ing318))) +(recipe r63 (key (sx63 ing193))) +(recipe r63 (key (sy63 ing319))) +(recipe r63 (key (sx63 ing194))) +(recipe r63 (key (sy63 ing320))) +(recipe r63 (key (sx63 ing195))) +(recipe r63 (key (sy63 ing321))) +(recipe r63 (key (sx63 ing196))) +(recipe r63 (key (sy63 ing322))) +(recipe r63 (key (sx63 ing197))) +(recipe r63 (key (sy63 ing323))) +(recipe r63 (key (sx63 ing198))) +(recipe r63 (key (sy63 ing324))) +(recipe r63 (key (sx63 ing199))) +(recipe r63 (key (sy63 ing325))) +(recipe r63 (key (sx63 ing200))) +(recipe r63 (key (sy63 ing326))) +(recipe r64 (numIngredients 2)) +(recipe r64 (result (id item64))) +(recipe r64 (pattern 0 sx64)) +(recipe r64 (pattern 1 sy64)) +(recipe r64 (key (sx64 ing192))) +(recipe r64 (key (sy64 ing320))) +(recipe r64 (key (sx64 ing193))) +(recipe r64 (key (sy64 ing321))) +(recipe r64 (key (sx64 ing194))) +(recipe r64 (key (sy64 ing322))) +(recipe r64 (key (sx64 ing195))) +(recipe r64 (key (sy64 ing323))) +(recipe r64 (key (sx64 ing196))) +(recipe r64 (key (sy64 ing324))) +(recipe r64 (key (sx64 ing197))) +(recipe r64 (key (sy64 ing325))) +(recipe r64 (key (sx64 ing198))) +(recipe r64 (key (sy64 ing326))) +(recipe r64 (key (sx64 ing199))) +(recipe r64 (key (sy64 ing327))) +(recipe r64 (key (sx64 ing200))) +(recipe r64 (key (sy64 ing328))) +(recipe r64 (key (sx64 ing201))) +(recipe r64 (key (sy64 ing329))) +(recipe r64 (key (sx64 ing202))) +(recipe r64 (key (sy64 ing330))) +(recipe r64 (key (sx64 ing203))) +(recipe r64 (key (sy64 ing331))) +(recipe r65 (numIngredients 2)) +(recipe r65 (result (id item65))) +(recipe r65 (pattern 0 sx65)) +(recipe r65 (pattern 1 sy65)) +(recipe r65 (key (sx65 ing195))) +(recipe r65 (key (sy65 ing325))) +(recipe r65 (key (sx65 ing196))) +(recipe r65 (key (sy65 ing326))) +(recipe r65 (key (sx65 ing197))) +(recipe r65 (key (sy65 ing327))) +(recipe r65 (key (sx65 ing198))) +(recipe r65 (key (sy65 ing328))) +(recipe r65 (key (sx65 ing199))) +(recipe r65 (key (sy65 ing329))) +(recipe r65 (key (sx65 ing200))) +(recipe r65 (key (sy65 ing330))) +(recipe r65 (key (sx65 ing201))) +(recipe r65 (key (sy65 ing331))) +(recipe r65 (key (sx65 ing202))) +(recipe r65 (key (sy65 ing332))) +(recipe r65 (key (sx65 ing203))) +(recipe r65 (key (sy65 ing333))) +(recipe r65 (key (sx65 ing204))) +(recipe r65 (key (sy65 ing334))) +(recipe r65 (key (sx65 ing205))) +(recipe r65 (key (sy65 ing335))) +(recipe r65 (key (sx65 ing206))) +(recipe r65 (key (sy65 ing336))) +(recipe r66 (numIngredients 2)) +(recipe r66 (result (id item66))) +(recipe r66 (pattern 0 sx66)) +(recipe r66 (pattern 1 sy66)) +(recipe r66 (key (sx66 ing198))) +(recipe r66 (key (sy66 ing330))) +(recipe r66 (key (sx66 ing199))) +(recipe r66 (key (sy66 ing331))) +(recipe r66 (key (sx66 ing200))) +(recipe r66 (key (sy66 ing332))) +(recipe r66 (key (sx66 ing201))) +(recipe r66 (key (sy66 ing333))) +(recipe r66 (key (sx66 ing202))) +(recipe r66 (key (sy66 ing334))) +(recipe r66 (key (sx66 ing203))) +(recipe r66 (key (sy66 ing335))) +(recipe r66 (key (sx66 ing204))) +(recipe r66 (key (sy66 ing336))) +(recipe r66 (key (sx66 ing205))) +(recipe r66 (key (sy66 ing337))) +(recipe r66 (key (sx66 ing206))) +(recipe r66 (key (sy66 ing338))) +(recipe r66 (key (sx66 ing207))) +(recipe r66 (key (sy66 ing339))) +(recipe r66 (key (sx66 ing208))) +(recipe r66 (key (sy66 ing340))) +(recipe r66 (key (sx66 ing209))) +(recipe r66 (key (sy66 ing341))) +(recipe r67 (numIngredients 2)) +(recipe r67 (result (id item67))) +(recipe r67 (pattern 0 sx67)) +(recipe r67 (pattern 1 sy67)) +(recipe r67 (key (sx67 ing201))) +(recipe r67 (key (sy67 ing335))) +(recipe r67 (key (sx67 ing202))) +(recipe r67 (key (sy67 ing336))) +(recipe r67 (key (sx67 ing203))) +(recipe r67 (key (sy67 ing337))) +(recipe r67 (key (sx67 ing204))) +(recipe r67 (key (sy67 ing338))) +(recipe r67 (key (sx67 ing205))) +(recipe r67 (key (sy67 ing339))) +(recipe r67 (key (sx67 ing206))) +(recipe r67 (key (sy67 ing340))) +(recipe r67 (key (sx67 ing207))) +(recipe r67 (key (sy67 ing341))) +(recipe r67 (key (sx67 ing208))) +(recipe r67 (key (sy67 ing342))) +(recipe r67 (key (sx67 ing209))) +(recipe r67 (key (sy67 ing343))) +(recipe r67 (key (sx67 ing210))) +(recipe r67 (key (sy67 ing344))) +(recipe r67 (key (sx67 ing211))) +(recipe r67 (key (sy67 ing345))) +(recipe r67 (key (sx67 ing212))) +(recipe r67 (key (sy67 ing346))) +(recipe r68 (numIngredients 2)) +(recipe r68 (result (id item68))) +(recipe r68 (pattern 0 sx68)) +(recipe r68 (pattern 1 sy68)) +(recipe r68 (key (sx68 ing204))) +(recipe r68 (key (sy68 ing340))) +(recipe r68 (key (sx68 ing205))) +(recipe r68 (key (sy68 ing341))) +(recipe r68 (key (sx68 ing206))) +(recipe r68 (key (sy68 ing342))) +(recipe r68 (key (sx68 ing207))) +(recipe r68 (key (sy68 ing343))) +(recipe r68 (key (sx68 ing208))) +(recipe r68 (key (sy68 ing344))) +(recipe r68 (key (sx68 ing209))) +(recipe r68 (key (sy68 ing345))) +(recipe r68 (key (sx68 ing210))) +(recipe r68 (key (sy68 ing346))) +(recipe r68 (key (sx68 ing211))) +(recipe r68 (key (sy68 ing347))) +(recipe r68 (key (sx68 ing212))) +(recipe r68 (key (sy68 ing348))) +(recipe r68 (key (sx68 ing213))) +(recipe r68 (key (sy68 ing349))) +(recipe r68 (key (sx68 ing214))) +(recipe r68 (key (sy68 ing350))) +(recipe r68 (key (sx68 ing215))) +(recipe r68 (key (sy68 ing351))) +(recipe r69 (numIngredients 2)) +(recipe r69 (result (id item69))) +(recipe r69 (pattern 0 sx69)) +(recipe r69 (pattern 1 sy69)) +(recipe r69 (key (sx69 ing207))) +(recipe r69 (key (sy69 ing345))) +(recipe r69 (key (sx69 ing208))) +(recipe r69 (key (sy69 ing346))) +(recipe r69 (key (sx69 ing209))) +(recipe r69 (key (sy69 ing347))) +(recipe r69 (key (sx69 ing210))) +(recipe r69 (key (sy69 ing348))) +(recipe r69 (key (sx69 ing211))) +(recipe r69 (key (sy69 ing349))) +(recipe r69 (key (sx69 ing212))) +(recipe r69 (key (sy69 ing350))) +(recipe r69 (key (sx69 ing213))) +(recipe r69 (key (sy69 ing351))) +(recipe r69 (key (sx69 ing214))) +(recipe r69 (key (sy69 ing352))) +(recipe r69 (key (sx69 ing215))) +(recipe r69 (key (sy69 ing353))) +(recipe r69 (key (sx69 ing216))) +(recipe r69 (key (sy69 ing354))) +(recipe r69 (key (sx69 ing217))) +(recipe r69 (key (sy69 ing355))) +(recipe r69 (key (sx69 ing218))) +(recipe r69 (key (sy69 ing356))) +(recipe r70 (numIngredients 2)) +(recipe r70 (result (id item70))) +(recipe r70 (pattern 0 sx70)) +(recipe r70 (pattern 1 sy70)) +(recipe r70 (key (sx70 ing210))) +(recipe r70 (key (sy70 ing350))) +(recipe r70 (key (sx70 ing211))) +(recipe r70 (key (sy70 ing351))) +(recipe r70 (key (sx70 ing212))) +(recipe r70 (key (sy70 ing352))) +(recipe r70 (key (sx70 ing213))) +(recipe r70 (key (sy70 ing353))) +(recipe r70 (key (sx70 ing214))) +(recipe r70 (key (sy70 ing354))) +(recipe r70 (key (sx70 ing215))) +(recipe r70 (key (sy70 ing355))) +(recipe r70 (key (sx70 ing216))) +(recipe r70 (key (sy70 ing356))) +(recipe r70 (key (sx70 ing217))) +(recipe r70 (key (sy70 ing357))) +(recipe r70 (key (sx70 ing218))) +(recipe r70 (key (sy70 ing358))) +(recipe r70 (key (sx70 ing219))) +(recipe r70 (key (sy70 ing359))) +(recipe r70 (key (sx70 ing220))) +(recipe r70 (key (sy70 ing360))) +(recipe r70 (key (sx70 ing221))) +(recipe r70 (key (sy70 ing361))) +(recipe r71 (numIngredients 2)) +(recipe r71 (result (id item71))) +(recipe r71 (pattern 0 sx71)) +(recipe r71 (pattern 1 sy71)) +(recipe r71 (key (sx71 ing213))) +(recipe r71 (key (sy71 ing355))) +(recipe r71 (key (sx71 ing214))) +(recipe r71 (key (sy71 ing356))) +(recipe r71 (key (sx71 ing215))) +(recipe r71 (key (sy71 ing357))) +(recipe r71 (key (sx71 ing216))) +(recipe r71 (key (sy71 ing358))) +(recipe r71 (key (sx71 ing217))) +(recipe r71 (key (sy71 ing359))) +(recipe r71 (key (sx71 ing218))) +(recipe r71 (key (sy71 ing360))) +(recipe r71 (key (sx71 ing219))) +(recipe r71 (key (sy71 ing361))) +(recipe r71 (key (sx71 ing220))) +(recipe r71 (key (sy71 ing362))) +(recipe r71 (key (sx71 ing221))) +(recipe r71 (key (sy71 ing363))) +(recipe r71 (key (sx71 ing222))) +(recipe r71 (key (sy71 ing364))) +(recipe r71 (key (sx71 ing223))) +(recipe r71 (key (sy71 ing365))) +(recipe r71 (key (sx71 ing224))) +(recipe r71 (key (sy71 ing366))) +(recipe r72 (numIngredients 2)) +(recipe r72 (result (id item72))) +(recipe r72 (pattern 0 sx72)) +(recipe r72 (pattern 1 sy72)) +(recipe r72 (key (sx72 ing216))) +(recipe r72 (key (sy72 ing360))) +(recipe r72 (key (sx72 ing217))) +(recipe r72 (key (sy72 ing361))) +(recipe r72 (key (sx72 ing218))) +(recipe r72 (key (sy72 ing362))) +(recipe r72 (key (sx72 ing219))) +(recipe r72 (key (sy72 ing363))) +(recipe r72 (key (sx72 ing220))) +(recipe r72 (key (sy72 ing364))) +(recipe r72 (key (sx72 ing221))) +(recipe r72 (key (sy72 ing365))) +(recipe r72 (key (sx72 ing222))) +(recipe r72 (key (sy72 ing366))) +(recipe r72 (key (sx72 ing223))) +(recipe r72 (key (sy72 ing367))) +(recipe r72 (key (sx72 ing224))) +(recipe r72 (key (sy72 ing368))) +(recipe r72 (key (sx72 ing225))) +(recipe r72 (key (sy72 ing369))) +(recipe r72 (key (sx72 ing226))) +(recipe r72 (key (sy72 ing370))) +(recipe r72 (key (sx72 ing227))) +(recipe r72 (key (sy72 ing371))) +(recipe r73 (numIngredients 2)) +(recipe r73 (result (id item73))) +(recipe r73 (pattern 0 sx73)) +(recipe r73 (pattern 1 sy73)) +(recipe r73 (key (sx73 ing219))) +(recipe r73 (key (sy73 ing365))) +(recipe r73 (key (sx73 ing220))) +(recipe r73 (key (sy73 ing366))) +(recipe r73 (key (sx73 ing221))) +(recipe r73 (key (sy73 ing367))) +(recipe r73 (key (sx73 ing222))) +(recipe r73 (key (sy73 ing368))) +(recipe r73 (key (sx73 ing223))) +(recipe r73 (key (sy73 ing369))) +(recipe r73 (key (sx73 ing224))) +(recipe r73 (key (sy73 ing370))) +(recipe r73 (key (sx73 ing225))) +(recipe r73 (key (sy73 ing371))) +(recipe r73 (key (sx73 ing226))) +(recipe r73 (key (sy73 ing372))) +(recipe r73 (key (sx73 ing227))) +(recipe r73 (key (sy73 ing373))) +(recipe r73 (key (sx73 ing228))) +(recipe r73 (key (sy73 ing374))) +(recipe r73 (key (sx73 ing229))) +(recipe r73 (key (sy73 ing375))) +(recipe r73 (key (sx73 ing230))) +(recipe r73 (key (sy73 ing376))) +(recipe r74 (numIngredients 2)) +(recipe r74 (result (id item74))) +(recipe r74 (pattern 0 sx74)) +(recipe r74 (pattern 1 sy74)) +(recipe r74 (key (sx74 ing222))) +(recipe r74 (key (sy74 ing370))) +(recipe r74 (key (sx74 ing223))) +(recipe r74 (key (sy74 ing371))) +(recipe r74 (key (sx74 ing224))) +(recipe r74 (key (sy74 ing372))) +(recipe r74 (key (sx74 ing225))) +(recipe r74 (key (sy74 ing373))) +(recipe r74 (key (sx74 ing226))) +(recipe r74 (key (sy74 ing374))) +(recipe r74 (key (sx74 ing227))) +(recipe r74 (key (sy74 ing375))) +(recipe r74 (key (sx74 ing228))) +(recipe r74 (key (sy74 ing376))) +(recipe r74 (key (sx74 ing229))) +(recipe r74 (key (sy74 ing377))) +(recipe r74 (key (sx74 ing230))) +(recipe r74 (key (sy74 ing378))) +(recipe r74 (key (sx74 ing231))) +(recipe r74 (key (sy74 ing379))) +(recipe r74 (key (sx74 ing232))) +(recipe r74 (key (sy74 ing380))) +(recipe r74 (key (sx74 ing233))) +(recipe r74 (key (sy74 ing381))) +(recipe r75 (numIngredients 2)) +(recipe r75 (result (id item75))) +(recipe r75 (pattern 0 sx75)) +(recipe r75 (pattern 1 sy75)) +(recipe r75 (key (sx75 ing225))) +(recipe r75 (key (sy75 ing375))) +(recipe r75 (key (sx75 ing226))) +(recipe r75 (key (sy75 ing376))) +(recipe r75 (key (sx75 ing227))) +(recipe r75 (key (sy75 ing377))) +(recipe r75 (key (sx75 ing228))) +(recipe r75 (key (sy75 ing378))) +(recipe r75 (key (sx75 ing229))) +(recipe r75 (key (sy75 ing379))) +(recipe r75 (key (sx75 ing230))) +(recipe r75 (key (sy75 ing380))) +(recipe r75 (key (sx75 ing231))) +(recipe r75 (key (sy75 ing381))) +(recipe r75 (key (sx75 ing232))) +(recipe r75 (key (sy75 ing382))) +(recipe r75 (key (sx75 ing233))) +(recipe r75 (key (sy75 ing383))) +(recipe r75 (key (sx75 ing234))) +(recipe r75 (key (sy75 ing384))) +(recipe r75 (key (sx75 ing235))) +(recipe r75 (key (sy75 ing385))) +(recipe r75 (key (sx75 ing236))) +(recipe r75 (key (sy75 ing386))) +(recipe r76 (numIngredients 2)) +(recipe r76 (result (id item76))) +(recipe r76 (pattern 0 sx76)) +(recipe r76 (pattern 1 sy76)) +(recipe r76 (key (sx76 ing228))) +(recipe r76 (key (sy76 ing380))) +(recipe r76 (key (sx76 ing229))) +(recipe r76 (key (sy76 ing381))) +(recipe r76 (key (sx76 ing230))) +(recipe r76 (key (sy76 ing382))) +(recipe r76 (key (sx76 ing231))) +(recipe r76 (key (sy76 ing383))) +(recipe r76 (key (sx76 ing232))) +(recipe r76 (key (sy76 ing384))) +(recipe r76 (key (sx76 ing233))) +(recipe r76 (key (sy76 ing385))) +(recipe r76 (key (sx76 ing234))) +(recipe r76 (key (sy76 ing386))) +(recipe r76 (key (sx76 ing235))) +(recipe r76 (key (sy76 ing387))) +(recipe r76 (key (sx76 ing236))) +(recipe r76 (key (sy76 ing388))) +(recipe r76 (key (sx76 ing237))) +(recipe r76 (key (sy76 ing389))) +(recipe r76 (key (sx76 ing238))) +(recipe r76 (key (sy76 ing390))) +(recipe r76 (key (sx76 ing239))) +(recipe r76 (key (sy76 ing391))) +(recipe r77 (numIngredients 2)) +(recipe r77 (result (id item77))) +(recipe r77 (pattern 0 sx77)) +(recipe r77 (pattern 1 sy77)) +(recipe r77 (key (sx77 ing231))) +(recipe r77 (key (sy77 ing385))) +(recipe r77 (key (sx77 ing232))) +(recipe r77 (key (sy77 ing386))) +(recipe r77 (key (sx77 ing233))) +(recipe r77 (key (sy77 ing387))) +(recipe r77 (key (sx77 ing234))) +(recipe r77 (key (sy77 ing388))) +(recipe r77 (key (sx77 ing235))) +(recipe r77 (key (sy77 ing389))) +(recipe r77 (key (sx77 ing236))) +(recipe r77 (key (sy77 ing390))) +(recipe r77 (key (sx77 ing237))) +(recipe r77 (key (sy77 ing391))) +(recipe r77 (key (sx77 ing238))) +(recipe r77 (key (sy77 ing392))) +(recipe r77 (key (sx77 ing239))) +(recipe r77 (key (sy77 ing393))) +(recipe r77 (key (sx77 ing240))) +(recipe r77 (key (sy77 ing394))) +(recipe r77 (key (sx77 ing241))) +(recipe r77 (key (sy77 ing395))) +(recipe r77 (key (sx77 ing242))) +(recipe r77 (key (sy77 ing396))) +(recipe r78 (numIngredients 2)) +(recipe r78 (result (id item78))) +(recipe r78 (pattern 0 sx78)) +(recipe r78 (pattern 1 sy78)) +(recipe r78 (key (sx78 ing234))) +(recipe r78 (key (sy78 ing390))) +(recipe r78 (key (sx78 ing235))) +(recipe r78 (key (sy78 ing391))) +(recipe r78 (key (sx78 ing236))) +(recipe r78 (key (sy78 ing392))) +(recipe r78 (key (sx78 ing237))) +(recipe r78 (key (sy78 ing393))) +(recipe r78 (key (sx78 ing238))) +(recipe r78 (key (sy78 ing394))) +(recipe r78 (key (sx78 ing239))) +(recipe r78 (key (sy78 ing395))) +(recipe r78 (key (sx78 ing240))) +(recipe r78 (key (sy78 ing396))) +(recipe r78 (key (sx78 ing241))) +(recipe r78 (key (sy78 ing397))) +(recipe r78 (key (sx78 ing242))) +(recipe r78 (key (sy78 ing398))) +(recipe r78 (key (sx78 ing243))) +(recipe r78 (key (sy78 ing399))) +(recipe r78 (key (sx78 ing244))) +(recipe r78 (key (sy78 ing400))) +(recipe r78 (key (sx78 ing245))) +(recipe r78 (key (sy78 ing401))) +(recipe r79 (numIngredients 2)) +(recipe r79 (result (id item79))) +(recipe r79 (pattern 0 sx79)) +(recipe r79 (pattern 1 sy79)) +(recipe r79 (key (sx79 ing237))) +(recipe r79 (key (sy79 ing395))) +(recipe r79 (key (sx79 ing238))) +(recipe r79 (key (sy79 ing396))) +(recipe r79 (key (sx79 ing239))) +(recipe r79 (key (sy79 ing397))) +(recipe r79 (key (sx79 ing240))) +(recipe r79 (key (sy79 ing398))) +(recipe r79 (key (sx79 ing241))) +(recipe r79 (key (sy79 ing399))) +(recipe r79 (key (sx79 ing242))) +(recipe r79 (key (sy79 ing400))) +(recipe r79 (key (sx79 ing243))) +(recipe r79 (key (sy79 ing401))) +(recipe r79 (key (sx79 ing244))) +(recipe r79 (key (sy79 ing402))) +(recipe r79 (key (sx79 ing245))) +(recipe r79 (key (sy79 ing403))) +(recipe r79 (key (sx79 ing246))) +(recipe r79 (key (sy79 ing404))) +(recipe r79 (key (sx79 ing247))) +(recipe r79 (key (sy79 ing405))) +(recipe r79 (key (sx79 ing248))) +(recipe r79 (key (sy79 ing406))) +(recipe r80 (numIngredients 2)) +(recipe r80 (result (id item80))) +(recipe r80 (pattern 0 sx80)) +(recipe r80 (pattern 1 sy80)) +(recipe r80 (key (sx80 ing240))) +(recipe r80 (key (sy80 ing400))) +(recipe r80 (key (sx80 ing241))) +(recipe r80 (key (sy80 ing401))) +(recipe r80 (key (sx80 ing242))) +(recipe r80 (key (sy80 ing402))) +(recipe r80 (key (sx80 ing243))) +(recipe r80 (key (sy80 ing403))) +(recipe r80 (key (sx80 ing244))) +(recipe r80 (key (sy80 ing404))) +(recipe r80 (key (sx80 ing245))) +(recipe r80 (key (sy80 ing405))) +(recipe r80 (key (sx80 ing246))) +(recipe r80 (key (sy80 ing406))) +(recipe r80 (key (sx80 ing247))) +(recipe r80 (key (sy80 ing407))) +(recipe r80 (key (sx80 ing248))) +(recipe r80 (key (sy80 ing408))) +(recipe r80 (key (sx80 ing249))) +(recipe r80 (key (sy80 ing409))) +(recipe r80 (key (sx80 ing250))) +(recipe r80 (key (sy80 ing410))) +(recipe r80 (key (sx80 ing251))) +(recipe r80 (key (sy80 ing411))) +(recipe r81 (numIngredients 2)) +(recipe r81 (result (id item81))) +(recipe r81 (pattern 0 sx81)) +(recipe r81 (pattern 1 sy81)) +(recipe r81 (key (sx81 ing243))) +(recipe r81 (key (sy81 ing405))) +(recipe r81 (key (sx81 ing244))) +(recipe r81 (key (sy81 ing406))) +(recipe r81 (key (sx81 ing245))) +(recipe r81 (key (sy81 ing407))) +(recipe r81 (key (sx81 ing246))) +(recipe r81 (key (sy81 ing408))) +(recipe r81 (key (sx81 ing247))) +(recipe r81 (key (sy81 ing409))) +(recipe r81 (key (sx81 ing248))) +(recipe r81 (key (sy81 ing410))) +(recipe r81 (key (sx81 ing249))) +(recipe r81 (key (sy81 ing411))) +(recipe r81 (key (sx81 ing250))) +(recipe r81 (key (sy81 ing412))) +(recipe r81 (key (sx81 ing251))) +(recipe r81 (key (sy81 ing413))) +(recipe r81 (key (sx81 ing252))) +(recipe r81 (key (sy81 ing414))) +(recipe r81 (key (sx81 ing253))) +(recipe r81 (key (sy81 ing415))) +(recipe r81 (key (sx81 ing254))) +(recipe r81 (key (sy81 ing416))) +(recipe r82 (numIngredients 2)) +(recipe r82 (result (id item82))) +(recipe r82 (pattern 0 sx82)) +(recipe r82 (pattern 1 sy82)) +(recipe r82 (key (sx82 ing246))) +(recipe r82 (key (sy82 ing410))) +(recipe r82 (key (sx82 ing247))) +(recipe r82 (key (sy82 ing411))) +(recipe r82 (key (sx82 ing248))) +(recipe r82 (key (sy82 ing412))) +(recipe r82 (key (sx82 ing249))) +(recipe r82 (key (sy82 ing413))) +(recipe r82 (key (sx82 ing250))) +(recipe r82 (key (sy82 ing414))) +(recipe r82 (key (sx82 ing251))) +(recipe r82 (key (sy82 ing415))) +(recipe r82 (key (sx82 ing252))) +(recipe r82 (key (sy82 ing416))) +(recipe r82 (key (sx82 ing253))) +(recipe r82 (key (sy82 ing417))) +(recipe r82 (key (sx82 ing254))) +(recipe r82 (key (sy82 ing418))) +(recipe r82 (key (sx82 ing255))) +(recipe r82 (key (sy82 ing419))) +(recipe r82 (key (sx82 ing256))) +(recipe r82 (key (sy82 ing420))) +(recipe r82 (key (sx82 ing257))) +(recipe r82 (key (sy82 ing421))) +(recipe r83 (numIngredients 2)) +(recipe r83 (result (id item83))) +(recipe r83 (pattern 0 sx83)) +(recipe r83 (pattern 1 sy83)) +(recipe r83 (key (sx83 ing249))) +(recipe r83 (key (sy83 ing415))) +(recipe r83 (key (sx83 ing250))) +(recipe r83 (key (sy83 ing416))) +(recipe r83 (key (sx83 ing251))) +(recipe r83 (key (sy83 ing417))) +(recipe r83 (key (sx83 ing252))) +(recipe r83 (key (sy83 ing418))) +(recipe r83 (key (sx83 ing253))) +(recipe r83 (key (sy83 ing419))) +(recipe r83 (key (sx83 ing254))) +(recipe r83 (key (sy83 ing420))) +(recipe r83 (key (sx83 ing255))) +(recipe r83 (key (sy83 ing421))) +(recipe r83 (key (sx83 ing256))) +(recipe r83 (key (sy83 ing422))) +(recipe r83 (key (sx83 ing257))) +(recipe r83 (key (sy83 ing423))) +(recipe r83 (key (sx83 ing258))) +(recipe r83 (key (sy83 ing424))) +(recipe r83 (key (sx83 ing259))) +(recipe r83 (key (sy83 ing425))) +(recipe r83 (key (sx83 ing260))) +(recipe r83 (key (sy83 ing426))) +(recipe r84 (numIngredients 2)) +(recipe r84 (result (id item84))) +(recipe r84 (pattern 0 sx84)) +(recipe r84 (pattern 1 sy84)) +(recipe r84 (key (sx84 ing252))) +(recipe r84 (key (sy84 ing420))) +(recipe r84 (key (sx84 ing253))) +(recipe r84 (key (sy84 ing421))) +(recipe r84 (key (sx84 ing254))) +(recipe r84 (key (sy84 ing422))) +(recipe r84 (key (sx84 ing255))) +(recipe r84 (key (sy84 ing423))) +(recipe r84 (key (sx84 ing256))) +(recipe r84 (key (sy84 ing424))) +(recipe r84 (key (sx84 ing257))) +(recipe r84 (key (sy84 ing425))) +(recipe r84 (key (sx84 ing258))) +(recipe r84 (key (sy84 ing426))) +(recipe r84 (key (sx84 ing259))) +(recipe r84 (key (sy84 ing427))) +(recipe r84 (key (sx84 ing260))) +(recipe r84 (key (sy84 ing428))) +(recipe r84 (key (sx84 ing261))) +(recipe r84 (key (sy84 ing429))) +(recipe r84 (key (sx84 ing262))) +(recipe r84 (key (sy84 ing430))) +(recipe r84 (key (sx84 ing263))) +(recipe r84 (key (sy84 ing431))) +(recipe r85 (numIngredients 2)) +(recipe r85 (result (id item85))) +(recipe r85 (pattern 0 sx85)) +(recipe r85 (pattern 1 sy85)) +(recipe r85 (key (sx85 ing255))) +(recipe r85 (key (sy85 ing425))) +(recipe r85 (key (sx85 ing256))) +(recipe r85 (key (sy85 ing426))) +(recipe r85 (key (sx85 ing257))) +(recipe r85 (key (sy85 ing427))) +(recipe r85 (key (sx85 ing258))) +(recipe r85 (key (sy85 ing428))) +(recipe r85 (key (sx85 ing259))) +(recipe r85 (key (sy85 ing429))) +(recipe r85 (key (sx85 ing260))) +(recipe r85 (key (sy85 ing430))) +(recipe r85 (key (sx85 ing261))) +(recipe r85 (key (sy85 ing431))) +(recipe r85 (key (sx85 ing262))) +(recipe r85 (key (sy85 ing432))) +(recipe r85 (key (sx85 ing263))) +(recipe r85 (key (sy85 ing433))) +(recipe r85 (key (sx85 ing264))) +(recipe r85 (key (sy85 ing434))) +(recipe r85 (key (sx85 ing265))) +(recipe r85 (key (sy85 ing435))) +(recipe r85 (key (sx85 ing266))) +(recipe r85 (key (sy85 ing436))) +(recipe r86 (numIngredients 2)) +(recipe r86 (result (id item86))) +(recipe r86 (pattern 0 sx86)) +(recipe r86 (pattern 1 sy86)) +(recipe r86 (key (sx86 ing258))) +(recipe r86 (key (sy86 ing430))) +(recipe r86 (key (sx86 ing259))) +(recipe r86 (key (sy86 ing431))) +(recipe r86 (key (sx86 ing260))) +(recipe r86 (key (sy86 ing432))) +(recipe r86 (key (sx86 ing261))) +(recipe r86 (key (sy86 ing433))) +(recipe r86 (key (sx86 ing262))) +(recipe r86 (key (sy86 ing434))) +(recipe r86 (key (sx86 ing263))) +(recipe r86 (key (sy86 ing435))) +(recipe r86 (key (sx86 ing264))) +(recipe r86 (key (sy86 ing436))) +(recipe r86 (key (sx86 ing265))) +(recipe r86 (key (sy86 ing437))) +(recipe r86 (key (sx86 ing266))) +(recipe r86 (key (sy86 ing438))) +(recipe r86 (key (sx86 ing267))) +(recipe r86 (key (sy86 ing439))) +(recipe r86 (key (sx86 ing268))) +(recipe r86 (key (sy86 ing440))) +(recipe r86 (key (sx86 ing269))) +(recipe r86 (key (sy86 ing441))) +(recipe r87 (numIngredients 2)) +(recipe r87 (result (id item87))) +(recipe r87 (pattern 0 sx87)) +(recipe r87 (pattern 1 sy87)) +(recipe r87 (key (sx87 ing261))) +(recipe r87 (key (sy87 ing435))) +(recipe r87 (key (sx87 ing262))) +(recipe r87 (key (sy87 ing436))) +(recipe r87 (key (sx87 ing263))) +(recipe r87 (key (sy87 ing437))) +(recipe r87 (key (sx87 ing264))) +(recipe r87 (key (sy87 ing438))) +(recipe r87 (key (sx87 ing265))) +(recipe r87 (key (sy87 ing439))) +(recipe r87 (key (sx87 ing266))) +(recipe r87 (key (sy87 ing440))) +(recipe r87 (key (sx87 ing267))) +(recipe r87 (key (sy87 ing441))) +(recipe r87 (key (sx87 ing268))) +(recipe r87 (key (sy87 ing442))) +(recipe r87 (key (sx87 ing269))) +(recipe r87 (key (sy87 ing443))) +(recipe r87 (key (sx87 ing270))) +(recipe r87 (key (sy87 ing444))) +(recipe r87 (key (sx87 ing271))) +(recipe r87 (key (sy87 ing445))) +(recipe r87 (key (sx87 ing272))) +(recipe r87 (key (sy87 ing446))) +(recipe r88 (numIngredients 2)) +(recipe r88 (result (id item88))) +(recipe r88 (pattern 0 sx88)) +(recipe r88 (pattern 1 sy88)) +(recipe r88 (key (sx88 ing264))) +(recipe r88 (key (sy88 ing440))) +(recipe r88 (key (sx88 ing265))) +(recipe r88 (key (sy88 ing441))) +(recipe r88 (key (sx88 ing266))) +(recipe r88 (key (sy88 ing442))) +(recipe r88 (key (sx88 ing267))) +(recipe r88 (key (sy88 ing443))) +(recipe r88 (key (sx88 ing268))) +(recipe r88 (key (sy88 ing444))) +(recipe r88 (key (sx88 ing269))) +(recipe r88 (key (sy88 ing445))) +(recipe r88 (key (sx88 ing270))) +(recipe r88 (key (sy88 ing446))) +(recipe r88 (key (sx88 ing271))) +(recipe r88 (key (sy88 ing447))) +(recipe r88 (key (sx88 ing272))) +(recipe r88 (key (sy88 ing448))) +(recipe r88 (key (sx88 ing273))) +(recipe r88 (key (sy88 ing449))) +(recipe r88 (key (sx88 ing274))) +(recipe r88 (key (sy88 ing450))) +(recipe r88 (key (sx88 ing275))) +(recipe r88 (key (sy88 ing451))) +(recipe r89 (numIngredients 2)) +(recipe r89 (result (id item89))) +(recipe r89 (pattern 0 sx89)) +(recipe r89 (pattern 1 sy89)) +(recipe r89 (key (sx89 ing267))) +(recipe r89 (key (sy89 ing445))) +(recipe r89 (key (sx89 ing268))) +(recipe r89 (key (sy89 ing446))) +(recipe r89 (key (sx89 ing269))) +(recipe r89 (key (sy89 ing447))) +(recipe r89 (key (sx89 ing270))) +(recipe r89 (key (sy89 ing448))) +(recipe r89 (key (sx89 ing271))) +(recipe r89 (key (sy89 ing449))) +(recipe r89 (key (sx89 ing272))) +(recipe r89 (key (sy89 ing450))) +(recipe r89 (key (sx89 ing273))) +(recipe r89 (key (sy89 ing451))) +(recipe r89 (key (sx89 ing274))) +(recipe r89 (key (sy89 ing452))) +(recipe r89 (key (sx89 ing275))) +(recipe r89 (key (sy89 ing453))) +(recipe r89 (key (sx89 ing276))) +(recipe r89 (key (sy89 ing454))) +(recipe r89 (key (sx89 ing277))) +(recipe r89 (key (sy89 ing455))) +(recipe r89 (key (sx89 ing278))) +(recipe r89 (key (sy89 ing456))) +(recipe r90 (numIngredients 2)) +(recipe r90 (result (id item90))) +(recipe r90 (pattern 0 sx90)) +(recipe r90 (pattern 1 sy90)) +(recipe r90 (key (sx90 ing270))) +(recipe r90 (key (sy90 ing450))) +(recipe r90 (key (sx90 ing271))) +(recipe r90 (key (sy90 ing451))) +(recipe r90 (key (sx90 ing272))) +(recipe r90 (key (sy90 ing452))) +(recipe r90 (key (sx90 ing273))) +(recipe r90 (key (sy90 ing453))) +(recipe r90 (key (sx90 ing274))) +(recipe r90 (key (sy90 ing454))) +(recipe r90 (key (sx90 ing275))) +(recipe r90 (key (sy90 ing455))) +(recipe r90 (key (sx90 ing276))) +(recipe r90 (key (sy90 ing456))) +(recipe r90 (key (sx90 ing277))) +(recipe r90 (key (sy90 ing457))) +(recipe r90 (key (sx90 ing278))) +(recipe r90 (key (sy90 ing458))) +(recipe r90 (key (sx90 ing279))) +(recipe r90 (key (sy90 ing459))) +(recipe r90 (key (sx90 ing280))) +(recipe r90 (key (sy90 ing460))) +(recipe r90 (key (sx90 ing281))) +(recipe r90 (key (sy90 ing461))) +(recipe r91 (numIngredients 2)) +(recipe r91 (result (id item91))) +(recipe r91 (pattern 0 sx91)) +(recipe r91 (pattern 1 sy91)) +(recipe r91 (key (sx91 ing273))) +(recipe r91 (key (sy91 ing455))) +(recipe r91 (key (sx91 ing274))) +(recipe r91 (key (sy91 ing456))) +(recipe r91 (key (sx91 ing275))) +(recipe r91 (key (sy91 ing457))) +(recipe r91 (key (sx91 ing276))) +(recipe r91 (key (sy91 ing458))) +(recipe r91 (key (sx91 ing277))) +(recipe r91 (key (sy91 ing459))) +(recipe r91 (key (sx91 ing278))) +(recipe r91 (key (sy91 ing460))) +(recipe r91 (key (sx91 ing279))) +(recipe r91 (key (sy91 ing461))) +(recipe r91 (key (sx91 ing280))) +(recipe r91 (key (sy91 ing462))) +(recipe r91 (key (sx91 ing281))) +(recipe r91 (key (sy91 ing463))) +(recipe r91 (key (sx91 ing282))) +(recipe r91 (key (sy91 ing464))) +(recipe r91 (key (sx91 ing283))) +(recipe r91 (key (sy91 ing465))) +(recipe r91 (key (sx91 ing284))) +(recipe r91 (key (sy91 ing466))) +(recipe r92 (numIngredients 2)) +(recipe r92 (result (id item92))) +(recipe r92 (pattern 0 sx92)) +(recipe r92 (pattern 1 sy92)) +(recipe r92 (key (sx92 ing276))) +(recipe r92 (key (sy92 ing460))) +(recipe r92 (key (sx92 ing277))) +(recipe r92 (key (sy92 ing461))) +(recipe r92 (key (sx92 ing278))) +(recipe r92 (key (sy92 ing462))) +(recipe r92 (key (sx92 ing279))) +(recipe r92 (key (sy92 ing463))) +(recipe r92 (key (sx92 ing280))) +(recipe r92 (key (sy92 ing464))) +(recipe r92 (key (sx92 ing281))) +(recipe r92 (key (sy92 ing465))) +(recipe r92 (key (sx92 ing282))) +(recipe r92 (key (sy92 ing466))) +(recipe r92 (key (sx92 ing283))) +(recipe r92 (key (sy92 ing467))) +(recipe r92 (key (sx92 ing284))) +(recipe r92 (key (sy92 ing468))) +(recipe r92 (key (sx92 ing285))) +(recipe r92 (key (sy92 ing469))) +(recipe r92 (key (sx92 ing286))) +(recipe r92 (key (sy92 ing470))) +(recipe r92 (key (sx92 ing287))) +(recipe r92 (key (sy92 ing471))) +(recipe r93 (numIngredients 2)) +(recipe r93 (result (id item93))) +(recipe r93 (pattern 0 sx93)) +(recipe r93 (pattern 1 sy93)) +(recipe r93 (key (sx93 ing279))) +(recipe r93 (key (sy93 ing465))) +(recipe r93 (key (sx93 ing280))) +(recipe r93 (key (sy93 ing466))) +(recipe r93 (key (sx93 ing281))) +(recipe r93 (key (sy93 ing467))) +(recipe r93 (key (sx93 ing282))) +(recipe r93 (key (sy93 ing468))) +(recipe r93 (key (sx93 ing283))) +(recipe r93 (key (sy93 ing469))) +(recipe r93 (key (sx93 ing284))) +(recipe r93 (key (sy93 ing470))) +(recipe r93 (key (sx93 ing285))) +(recipe r93 (key (sy93 ing471))) +(recipe r93 (key (sx93 ing286))) +(recipe r93 (key (sy93 ing472))) +(recipe r93 (key (sx93 ing287))) +(recipe r93 (key (sy93 ing473))) +(recipe r93 (key (sx93 ing288))) +(recipe r93 (key (sy93 ing474))) +(recipe r93 (key (sx93 ing289))) +(recipe r93 (key (sy93 ing475))) +(recipe r93 (key (sx93 ing290))) +(recipe r93 (key (sy93 ing476))) +(recipe r94 (numIngredients 2)) +(recipe r94 (result (id item94))) +(recipe r94 (pattern 0 sx94)) +(recipe r94 (pattern 1 sy94)) +(recipe r94 (key (sx94 ing282))) +(recipe r94 (key (sy94 ing470))) +(recipe r94 (key (sx94 ing283))) +(recipe r94 (key (sy94 ing471))) +(recipe r94 (key (sx94 ing284))) +(recipe r94 (key (sy94 ing472))) +(recipe r94 (key (sx94 ing285))) +(recipe r94 (key (sy94 ing473))) +(recipe r94 (key (sx94 ing286))) +(recipe r94 (key (sy94 ing474))) +(recipe r94 (key (sx94 ing287))) +(recipe r94 (key (sy94 ing475))) +(recipe r94 (key (sx94 ing288))) +(recipe r94 (key (sy94 ing476))) +(recipe r94 (key (sx94 ing289))) +(recipe r94 (key (sy94 ing477))) +(recipe r94 (key (sx94 ing290))) +(recipe r94 (key (sy94 ing478))) +(recipe r94 (key (sx94 ing291))) +(recipe r94 (key (sy94 ing479))) +(recipe r94 (key (sx94 ing292))) +(recipe r94 (key (sy94 ing480))) +(recipe r94 (key (sx94 ing293))) +(recipe r94 (key (sy94 ing481))) +(recipe r95 (numIngredients 2)) +(recipe r95 (result (id item95))) +(recipe r95 (pattern 0 sx95)) +(recipe r95 (pattern 1 sy95)) +(recipe r95 (key (sx95 ing285))) +(recipe r95 (key (sy95 ing475))) +(recipe r95 (key (sx95 ing286))) +(recipe r95 (key (sy95 ing476))) +(recipe r95 (key (sx95 ing287))) +(recipe r95 (key (sy95 ing477))) +(recipe r95 (key (sx95 ing288))) +(recipe r95 (key (sy95 ing478))) +(recipe r95 (key (sx95 ing289))) +(recipe r95 (key (sy95 ing479))) +(recipe r95 (key (sx95 ing290))) +(recipe r95 (key (sy95 ing480))) +(recipe r95 (key (sx95 ing291))) +(recipe r95 (key (sy95 ing481))) +(recipe r95 (key (sx95 ing292))) +(recipe r95 (key (sy95 ing482))) +(recipe r95 (key (sx95 ing293))) +(recipe r95 (key (sy95 ing483))) +(recipe r95 (key (sx95 ing294))) +(recipe r95 (key (sy95 ing484))) +(recipe r95 (key (sx95 ing295))) +(recipe r95 (key (sy95 ing485))) +(recipe r95 (key (sx95 ing296))) +(recipe r95 (key (sy95 ing486))) +(recipe r96 (numIngredients 2)) +(recipe r96 (result (id item96))) +(recipe r96 (pattern 0 sx96)) +(recipe r96 (pattern 1 sy96)) +(recipe r96 (key (sx96 ing288))) +(recipe r96 (key (sy96 ing480))) +(recipe r96 (key (sx96 ing289))) +(recipe r96 (key (sy96 ing481))) +(recipe r96 (key (sx96 ing290))) +(recipe r96 (key (sy96 ing482))) +(recipe r96 (key (sx96 ing291))) +(recipe r96 (key (sy96 ing483))) +(recipe r96 (key (sx96 ing292))) +(recipe r96 (key (sy96 ing484))) +(recipe r96 (key (sx96 ing293))) +(recipe r96 (key (sy96 ing485))) +(recipe r96 (key (sx96 ing294))) +(recipe r96 (key (sy96 ing486))) +(recipe r96 (key (sx96 ing295))) +(recipe r96 (key (sy96 ing487))) +(recipe r96 (key (sx96 ing296))) +(recipe r96 (key (sy96 ing488))) +(recipe r96 (key (sx96 ing297))) +(recipe r96 (key (sy96 ing489))) +(recipe r96 (key (sx96 ing298))) +(recipe r96 (key (sy96 ing490))) +(recipe r96 (key (sx96 ing299))) +(recipe r96 (key (sy96 ing491))) +(recipe r97 (numIngredients 2)) +(recipe r97 (result (id item97))) +(recipe r97 (pattern 0 sx97)) +(recipe r97 (pattern 1 sy97)) +(recipe r97 (key (sx97 ing291))) +(recipe r97 (key (sy97 ing485))) +(recipe r97 (key (sx97 ing292))) +(recipe r97 (key (sy97 ing486))) +(recipe r97 (key (sx97 ing293))) +(recipe r97 (key (sy97 ing487))) +(recipe r97 (key (sx97 ing294))) +(recipe r97 (key (sy97 ing488))) +(recipe r97 (key (sx97 ing295))) +(recipe r97 (key (sy97 ing489))) +(recipe r97 (key (sx97 ing296))) +(recipe r97 (key (sy97 ing490))) +(recipe r97 (key (sx97 ing297))) +(recipe r97 (key (sy97 ing491))) +(recipe r97 (key (sx97 ing298))) +(recipe r97 (key (sy97 ing492))) +(recipe r97 (key (sx97 ing299))) +(recipe r97 (key (sy97 ing493))) +(recipe r97 (key (sx97 ing300))) +(recipe r97 (key (sy97 ing494))) +(recipe r97 (key (sx97 ing301))) +(recipe r97 (key (sy97 ing495))) +(recipe r97 (key (sx97 ing302))) +(recipe r97 (key (sy97 ing496))) +(recipe r98 (numIngredients 2)) +(recipe r98 (result (id item98))) +(recipe r98 (pattern 0 sx98)) +(recipe r98 (pattern 1 sy98)) +(recipe r98 (key (sx98 ing294))) +(recipe r98 (key (sy98 ing490))) +(recipe r98 (key (sx98 ing295))) +(recipe r98 (key (sy98 ing491))) +(recipe r98 (key (sx98 ing296))) +(recipe r98 (key (sy98 ing492))) +(recipe r98 (key (sx98 ing297))) +(recipe r98 (key (sy98 ing493))) +(recipe r98 (key (sx98 ing298))) +(recipe r98 (key (sy98 ing494))) +(recipe r98 (key (sx98 ing299))) +(recipe r98 (key (sy98 ing495))) +(recipe r98 (key (sx98 ing300))) +(recipe r98 (key (sy98 ing496))) +(recipe r98 (key (sx98 ing301))) +(recipe r98 (key (sy98 ing497))) +(recipe r98 (key (sx98 ing302))) +(recipe r98 (key (sy98 ing498))) +(recipe r98 (key (sx98 ing303))) +(recipe r98 (key (sy98 ing499))) +(recipe r98 (key (sx98 ing304))) +(recipe r98 (key (sy98 ing500))) +(recipe r98 (key (sx98 ing305))) +(recipe r98 (key (sy98 ing501))) +(recipe r99 (numIngredients 2)) +(recipe r99 (result (id item99))) +(recipe r99 (pattern 0 sx99)) +(recipe r99 (pattern 1 sy99)) +(recipe r99 (key (sx99 ing297))) +(recipe r99 (key (sy99 ing495))) +(recipe r99 (key (sx99 ing298))) +(recipe r99 (key (sy99 ing496))) +(recipe r99 (key (sx99 ing299))) +(recipe r99 (key (sy99 ing497))) +(recipe r99 (key (sx99 ing300))) +(recipe r99 (key (sy99 ing498))) +(recipe r99 (key (sx99 ing301))) +(recipe r99 (key (sy99 ing499))) +(recipe r99 (key (sx99 ing302))) +(recipe r99 (key (sy99 ing500))) +(recipe r99 (key (sx99 ing303))) +(recipe r99 (key (sy99 ing501))) +(recipe r99 (key (sx99 ing304))) +(recipe r99 (key (sy99 ing502))) +(recipe r99 (key (sx99 ing305))) +(recipe r99 (key (sy99 ing503))) +(recipe r99 (key (sx99 ing306))) +(recipe r99 (key (sy99 ing504))) +(recipe r99 (key (sx99 ing307))) +(recipe r99 (key (sy99 ing505))) +(recipe r99 (key (sx99 ing308))) +(recipe r99 (key (sy99 ing506))) +(recipe r100 (numIngredients 2)) +(recipe r100 (result (id item100))) +(recipe r100 (pattern 0 sx100)) +(recipe r100 (pattern 1 sy100)) +(recipe r100 (key (sx100 ing300))) +(recipe r100 (key (sy100 ing500))) +(recipe r100 (key (sx100 ing301))) +(recipe r100 (key (sy100 ing501))) +(recipe r100 (key (sx100 ing302))) +(recipe r100 (key (sy100 ing502))) +(recipe r100 (key (sx100 ing303))) +(recipe r100 (key (sy100 ing503))) +(recipe r100 (key (sx100 ing304))) +(recipe r100 (key (sy100 ing504))) +(recipe r100 (key (sx100 ing305))) +(recipe r100 (key (sy100 ing505))) +(recipe r100 (key (sx100 ing306))) +(recipe r100 (key (sy100 ing506))) +(recipe r100 (key (sx100 ing307))) +(recipe r100 (key (sy100 ing507))) +(recipe r100 (key (sx100 ing308))) +(recipe r100 (key (sy100 ing508))) +(recipe r100 (key (sx100 ing309))) +(recipe r100 (key (sy100 ing509))) +(recipe r100 (key (sx100 ing310))) +(recipe r100 (key (sy100 ing510))) +(recipe r100 (key (sx100 ing311))) +(recipe r100 (key (sy100 ing511))) +(recipe r101 (numIngredients 2)) +(recipe r101 (result (id item101))) +(recipe r101 (pattern 0 sx101)) +(recipe r101 (pattern 1 sy101)) +(recipe r101 (key (sx101 ing303))) +(recipe r101 (key (sy101 ing505))) +(recipe r101 (key (sx101 ing304))) +(recipe r101 (key (sy101 ing506))) +(recipe r101 (key (sx101 ing305))) +(recipe r101 (key (sy101 ing507))) +(recipe r101 (key (sx101 ing306))) +(recipe r101 (key (sy101 ing508))) +(recipe r101 (key (sx101 ing307))) +(recipe r101 (key (sy101 ing509))) +(recipe r101 (key (sx101 ing308))) +(recipe r101 (key (sy101 ing510))) +(recipe r101 (key (sx101 ing309))) +(recipe r101 (key (sy101 ing511))) +(recipe r101 (key (sx101 ing310))) +(recipe r101 (key (sy101 ing512))) +(recipe r101 (key (sx101 ing311))) +(recipe r101 (key (sy101 ing513))) +(recipe r101 (key (sx101 ing312))) +(recipe r101 (key (sy101 ing514))) +(recipe r101 (key (sx101 ing313))) +(recipe r101 (key (sy101 ing515))) +(recipe r101 (key (sx101 ing314))) +(recipe r101 (key (sy101 ing516))) +(recipe r102 (numIngredients 2)) +(recipe r102 (result (id item102))) +(recipe r102 (pattern 0 sx102)) +(recipe r102 (pattern 1 sy102)) +(recipe r102 (key (sx102 ing306))) +(recipe r102 (key (sy102 ing510))) +(recipe r102 (key (sx102 ing307))) +(recipe r102 (key (sy102 ing511))) +(recipe r102 (key (sx102 ing308))) +(recipe r102 (key (sy102 ing512))) +(recipe r102 (key (sx102 ing309))) +(recipe r102 (key (sy102 ing513))) +(recipe r102 (key (sx102 ing310))) +(recipe r102 (key (sy102 ing514))) +(recipe r102 (key (sx102 ing311))) +(recipe r102 (key (sy102 ing515))) +(recipe r102 (key (sx102 ing312))) +(recipe r102 (key (sy102 ing516))) +(recipe r102 (key (sx102 ing313))) +(recipe r102 (key (sy102 ing517))) +(recipe r102 (key (sx102 ing314))) +(recipe r102 (key (sy102 ing518))) +(recipe r102 (key (sx102 ing315))) +(recipe r102 (key (sy102 ing519))) +(recipe r102 (key (sx102 ing316))) +(recipe r102 (key (sy102 ing520))) +(recipe r102 (key (sx102 ing317))) +(recipe r102 (key (sy102 ing521))) +(recipe r103 (numIngredients 2)) +(recipe r103 (result (id item103))) +(recipe r103 (pattern 0 sx103)) +(recipe r103 (pattern 1 sy103)) +(recipe r103 (key (sx103 ing309))) +(recipe r103 (key (sy103 ing515))) +(recipe r103 (key (sx103 ing310))) +(recipe r103 (key (sy103 ing516))) +(recipe r103 (key (sx103 ing311))) +(recipe r103 (key (sy103 ing517))) +(recipe r103 (key (sx103 ing312))) +(recipe r103 (key (sy103 ing518))) +(recipe r103 (key (sx103 ing313))) +(recipe r103 (key (sy103 ing519))) +(recipe r103 (key (sx103 ing314))) +(recipe r103 (key (sy103 ing520))) +(recipe r103 (key (sx103 ing315))) +(recipe r103 (key (sy103 ing521))) +(recipe r103 (key (sx103 ing316))) +(recipe r103 (key (sy103 ing522))) +(recipe r103 (key (sx103 ing317))) +(recipe r103 (key (sy103 ing523))) +(recipe r103 (key (sx103 ing318))) +(recipe r103 (key (sy103 ing524))) +(recipe r103 (key (sx103 ing319))) +(recipe r103 (key (sy103 ing525))) +(recipe r103 (key (sx103 ing320))) +(recipe r103 (key (sy103 ing526))) +(recipe r104 (numIngredients 2)) +(recipe r104 (result (id item104))) +(recipe r104 (pattern 0 sx104)) +(recipe r104 (pattern 1 sy104)) +(recipe r104 (key (sx104 ing312))) +(recipe r104 (key (sy104 ing520))) +(recipe r104 (key (sx104 ing313))) +(recipe r104 (key (sy104 ing521))) +(recipe r104 (key (sx104 ing314))) +(recipe r104 (key (sy104 ing522))) +(recipe r104 (key (sx104 ing315))) +(recipe r104 (key (sy104 ing523))) +(recipe r104 (key (sx104 ing316))) +(recipe r104 (key (sy104 ing524))) +(recipe r104 (key (sx104 ing317))) +(recipe r104 (key (sy104 ing525))) +(recipe r104 (key (sx104 ing318))) +(recipe r104 (key (sy104 ing526))) +(recipe r104 (key (sx104 ing319))) +(recipe r104 (key (sy104 ing527))) +(recipe r104 (key (sx104 ing320))) +(recipe r104 (key (sy104 ing528))) +(recipe r104 (key (sx104 ing321))) +(recipe r104 (key (sy104 ing529))) +(recipe r104 (key (sx104 ing322))) +(recipe r104 (key (sy104 ing530))) +(recipe r104 (key (sx104 ing323))) +(recipe r104 (key (sy104 ing531))) +(recipe r105 (numIngredients 2)) +(recipe r105 (result (id item105))) +(recipe r105 (pattern 0 sx105)) +(recipe r105 (pattern 1 sy105)) +(recipe r105 (key (sx105 ing315))) +(recipe r105 (key (sy105 ing525))) +(recipe r105 (key (sx105 ing316))) +(recipe r105 (key (sy105 ing526))) +(recipe r105 (key (sx105 ing317))) +(recipe r105 (key (sy105 ing527))) +(recipe r105 (key (sx105 ing318))) +(recipe r105 (key (sy105 ing528))) +(recipe r105 (key (sx105 ing319))) +(recipe r105 (key (sy105 ing529))) +(recipe r105 (key (sx105 ing320))) +(recipe r105 (key (sy105 ing530))) +(recipe r105 (key (sx105 ing321))) +(recipe r105 (key (sy105 ing531))) +(recipe r105 (key (sx105 ing322))) +(recipe r105 (key (sy105 ing532))) +(recipe r105 (key (sx105 ing323))) +(recipe r105 (key (sy105 ing533))) +(recipe r105 (key (sx105 ing324))) +(recipe r105 (key (sy105 ing534))) +(recipe r105 (key (sx105 ing325))) +(recipe r105 (key (sy105 ing535))) +(recipe r105 (key (sx105 ing326))) +(recipe r105 (key (sy105 ing536))) +(recipe r106 (numIngredients 2)) +(recipe r106 (result (id item106))) +(recipe r106 (pattern 0 sx106)) +(recipe r106 (pattern 1 sy106)) +(recipe r106 (key (sx106 ing318))) +(recipe r106 (key (sy106 ing530))) +(recipe r106 (key (sx106 ing319))) +(recipe r106 (key (sy106 ing531))) +(recipe r106 (key (sx106 ing320))) +(recipe r106 (key (sy106 ing532))) +(recipe r106 (key (sx106 ing321))) +(recipe r106 (key (sy106 ing533))) +(recipe r106 (key (sx106 ing322))) +(recipe r106 (key (sy106 ing534))) +(recipe r106 (key (sx106 ing323))) +(recipe r106 (key (sy106 ing535))) +(recipe r106 (key (sx106 ing324))) +(recipe r106 (key (sy106 ing536))) +(recipe r106 (key (sx106 ing325))) +(recipe r106 (key (sy106 ing537))) +(recipe r106 (key (sx106 ing326))) +(recipe r106 (key (sy106 ing538))) +(recipe r106 (key (sx106 ing327))) +(recipe r106 (key (sy106 ing539))) +(recipe r106 (key (sx106 ing328))) +(recipe r106 (key (sy106 ing540))) +(recipe r106 (key (sx106 ing329))) +(recipe r106 (key (sy106 ing541))) +(recipe r107 (numIngredients 2)) +(recipe r107 (result (id item107))) +(recipe r107 (pattern 0 sx107)) +(recipe r107 (pattern 1 sy107)) +(recipe r107 (key (sx107 ing321))) +(recipe r107 (key (sy107 ing535))) +(recipe r107 (key (sx107 ing322))) +(recipe r107 (key (sy107 ing536))) +(recipe r107 (key (sx107 ing323))) +(recipe r107 (key (sy107 ing537))) +(recipe r107 (key (sx107 ing324))) +(recipe r107 (key (sy107 ing538))) +(recipe r107 (key (sx107 ing325))) +(recipe r107 (key (sy107 ing539))) +(recipe r107 (key (sx107 ing326))) +(recipe r107 (key (sy107 ing540))) +(recipe r107 (key (sx107 ing327))) +(recipe r107 (key (sy107 ing541))) +(recipe r107 (key (sx107 ing328))) +(recipe r107 (key (sy107 ing542))) +(recipe r107 (key (sx107 ing329))) +(recipe r107 (key (sy107 ing543))) +(recipe r107 (key (sx107 ing330))) +(recipe r107 (key (sy107 ing544))) +(recipe r107 (key (sx107 ing331))) +(recipe r107 (key (sy107 ing545))) +(recipe r107 (key (sx107 ing332))) +(recipe r107 (key (sy107 ing546))) +(recipe r108 (numIngredients 2)) +(recipe r108 (result (id item108))) +(recipe r108 (pattern 0 sx108)) +(recipe r108 (pattern 1 sy108)) +(recipe r108 (key (sx108 ing324))) +(recipe r108 (key (sy108 ing540))) +(recipe r108 (key (sx108 ing325))) +(recipe r108 (key (sy108 ing541))) +(recipe r108 (key (sx108 ing326))) +(recipe r108 (key (sy108 ing542))) +(recipe r108 (key (sx108 ing327))) +(recipe r108 (key (sy108 ing543))) +(recipe r108 (key (sx108 ing328))) +(recipe r108 (key (sy108 ing544))) +(recipe r108 (key (sx108 ing329))) +(recipe r108 (key (sy108 ing545))) +(recipe r108 (key (sx108 ing330))) +(recipe r108 (key (sy108 ing546))) +(recipe r108 (key (sx108 ing331))) +(recipe r108 (key (sy108 ing547))) +(recipe r108 (key (sx108 ing332))) +(recipe r108 (key (sy108 ing548))) +(recipe r108 (key (sx108 ing333))) +(recipe r108 (key (sy108 ing549))) +(recipe r108 (key (sx108 ing334))) +(recipe r108 (key (sy108 ing550))) +(recipe r108 (key (sx108 ing335))) +(recipe r108 (key (sy108 ing551))) +(recipe r109 (numIngredients 2)) +(recipe r109 (result (id item109))) +(recipe r109 (pattern 0 sx109)) +(recipe r109 (pattern 1 sy109)) +(recipe r109 (key (sx109 ing327))) +(recipe r109 (key (sy109 ing545))) +(recipe r109 (key (sx109 ing328))) +(recipe r109 (key (sy109 ing546))) +(recipe r109 (key (sx109 ing329))) +(recipe r109 (key (sy109 ing547))) +(recipe r109 (key (sx109 ing330))) +(recipe r109 (key (sy109 ing548))) +(recipe r109 (key (sx109 ing331))) +(recipe r109 (key (sy109 ing549))) +(recipe r109 (key (sx109 ing332))) +(recipe r109 (key (sy109 ing550))) +(recipe r109 (key (sx109 ing333))) +(recipe r109 (key (sy109 ing551))) +(recipe r109 (key (sx109 ing334))) +(recipe r109 (key (sy109 ing552))) +(recipe r109 (key (sx109 ing335))) +(recipe r109 (key (sy109 ing553))) +(recipe r109 (key (sx109 ing336))) +(recipe r109 (key (sy109 ing554))) +(recipe r109 (key (sx109 ing337))) +(recipe r109 (key (sy109 ing555))) +(recipe r109 (key (sx109 ing338))) +(recipe r109 (key (sy109 ing556))) +(recipe r110 (numIngredients 2)) +(recipe r110 (result (id item110))) +(recipe r110 (pattern 0 sx110)) +(recipe r110 (pattern 1 sy110)) +(recipe r110 (key (sx110 ing330))) +(recipe r110 (key (sy110 ing550))) +(recipe r110 (key (sx110 ing331))) +(recipe r110 (key (sy110 ing551))) +(recipe r110 (key (sx110 ing332))) +(recipe r110 (key (sy110 ing552))) +(recipe r110 (key (sx110 ing333))) +(recipe r110 (key (sy110 ing553))) +(recipe r110 (key (sx110 ing334))) +(recipe r110 (key (sy110 ing554))) +(recipe r110 (key (sx110 ing335))) +(recipe r110 (key (sy110 ing555))) +(recipe r110 (key (sx110 ing336))) +(recipe r110 (key (sy110 ing556))) +(recipe r110 (key (sx110 ing337))) +(recipe r110 (key (sy110 ing557))) +(recipe r110 (key (sx110 ing338))) +(recipe r110 (key (sy110 ing558))) +(recipe r110 (key (sx110 ing339))) +(recipe r110 (key (sy110 ing559))) +(recipe r110 (key (sx110 ing340))) +(recipe r110 (key (sy110 ing560))) +(recipe r110 (key (sx110 ing341))) +(recipe r110 (key (sy110 ing561))) +(recipe r111 (numIngredients 2)) +(recipe r111 (result (id item111))) +(recipe r111 (pattern 0 sx111)) +(recipe r111 (pattern 1 sy111)) +(recipe r111 (key (sx111 ing333))) +(recipe r111 (key (sy111 ing555))) +(recipe r111 (key (sx111 ing334))) +(recipe r111 (key (sy111 ing556))) +(recipe r111 (key (sx111 ing335))) +(recipe r111 (key (sy111 ing557))) +(recipe r111 (key (sx111 ing336))) +(recipe r111 (key (sy111 ing558))) +(recipe r111 (key (sx111 ing337))) +(recipe r111 (key (sy111 ing559))) +(recipe r111 (key (sx111 ing338))) +(recipe r111 (key (sy111 ing560))) +(recipe r111 (key (sx111 ing339))) +(recipe r111 (key (sy111 ing561))) +(recipe r111 (key (sx111 ing340))) +(recipe r111 (key (sy111 ing562))) +(recipe r111 (key (sx111 ing341))) +(recipe r111 (key (sy111 ing563))) +(recipe r111 (key (sx111 ing342))) +(recipe r111 (key (sy111 ing564))) +(recipe r111 (key (sx111 ing343))) +(recipe r111 (key (sy111 ing565))) +(recipe r111 (key (sx111 ing344))) +(recipe r111 (key (sy111 ing566))) +(recipe r112 (numIngredients 2)) +(recipe r112 (result (id item112))) +(recipe r112 (pattern 0 sx112)) +(recipe r112 (pattern 1 sy112)) +(recipe r112 (key (sx112 ing336))) +(recipe r112 (key (sy112 ing560))) +(recipe r112 (key (sx112 ing337))) +(recipe r112 (key (sy112 ing561))) +(recipe r112 (key (sx112 ing338))) +(recipe r112 (key (sy112 ing562))) +(recipe r112 (key (sx112 ing339))) +(recipe r112 (key (sy112 ing563))) +(recipe r112 (key (sx112 ing340))) +(recipe r112 (key (sy112 ing564))) +(recipe r112 (key (sx112 ing341))) +(recipe r112 (key (sy112 ing565))) +(recipe r112 (key (sx112 ing342))) +(recipe r112 (key (sy112 ing566))) +(recipe r112 (key (sx112 ing343))) +(recipe r112 (key (sy112 ing567))) +(recipe r112 (key (sx112 ing344))) +(recipe r112 (key (sy112 ing568))) +(recipe r112 (key (sx112 ing345))) +(recipe r112 (key (sy112 ing569))) +(recipe r112 (key (sx112 ing346))) +(recipe r112 (key (sy112 ing570))) +(recipe r112 (key (sx112 ing347))) +(recipe r112 (key (sy112 ing571))) +(recipe r113 (numIngredients 2)) +(recipe r113 (result (id item113))) +(recipe r113 (pattern 0 sx113)) +(recipe r113 (pattern 1 sy113)) +(recipe r113 (key (sx113 ing339))) +(recipe r113 (key (sy113 ing565))) +(recipe r113 (key (sx113 ing340))) +(recipe r113 (key (sy113 ing566))) +(recipe r113 (key (sx113 ing341))) +(recipe r113 (key (sy113 ing567))) +(recipe r113 (key (sx113 ing342))) +(recipe r113 (key (sy113 ing568))) +(recipe r113 (key (sx113 ing343))) +(recipe r113 (key (sy113 ing569))) +(recipe r113 (key (sx113 ing344))) +(recipe r113 (key (sy113 ing570))) +(recipe r113 (key (sx113 ing345))) +(recipe r113 (key (sy113 ing571))) +(recipe r113 (key (sx113 ing346))) +(recipe r113 (key (sy113 ing572))) +(recipe r113 (key (sx113 ing347))) +(recipe r113 (key (sy113 ing573))) +(recipe r113 (key (sx113 ing348))) +(recipe r113 (key (sy113 ing574))) +(recipe r113 (key (sx113 ing349))) +(recipe r113 (key (sy113 ing575))) +(recipe r113 (key (sx113 ing350))) +(recipe r113 (key (sy113 ing576))) +(recipe r114 (numIngredients 2)) +(recipe r114 (result (id item114))) +(recipe r114 (pattern 0 sx114)) +(recipe r114 (pattern 1 sy114)) +(recipe r114 (key (sx114 ing342))) +(recipe r114 (key (sy114 ing570))) +(recipe r114 (key (sx114 ing343))) +(recipe r114 (key (sy114 ing571))) +(recipe r114 (key (sx114 ing344))) +(recipe r114 (key (sy114 ing572))) +(recipe r114 (key (sx114 ing345))) +(recipe r114 (key (sy114 ing573))) +(recipe r114 (key (sx114 ing346))) +(recipe r114 (key (sy114 ing574))) +(recipe r114 (key (sx114 ing347))) +(recipe r114 (key (sy114 ing575))) +(recipe r114 (key (sx114 ing348))) +(recipe r114 (key (sy114 ing576))) +(recipe r114 (key (sx114 ing349))) +(recipe r114 (key (sy114 ing577))) +(recipe r114 (key (sx114 ing350))) +(recipe r114 (key (sy114 ing578))) +(recipe r114 (key (sx114 ing351))) +(recipe r114 (key (sy114 ing579))) +(recipe r114 (key (sx114 ing352))) +(recipe r114 (key (sy114 ing580))) +(recipe r114 (key (sx114 ing353))) +(recipe r114 (key (sy114 ing581))) +(recipe r115 (numIngredients 2)) +(recipe r115 (result (id item115))) +(recipe r115 (pattern 0 sx115)) +(recipe r115 (pattern 1 sy115)) +(recipe r115 (key (sx115 ing345))) +(recipe r115 (key (sy115 ing575))) +(recipe r115 (key (sx115 ing346))) +(recipe r115 (key (sy115 ing576))) +(recipe r115 (key (sx115 ing347))) +(recipe r115 (key (sy115 ing577))) +(recipe r115 (key (sx115 ing348))) +(recipe r115 (key (sy115 ing578))) +(recipe r115 (key (sx115 ing349))) +(recipe r115 (key (sy115 ing579))) +(recipe r115 (key (sx115 ing350))) +(recipe r115 (key (sy115 ing580))) +(recipe r115 (key (sx115 ing351))) +(recipe r115 (key (sy115 ing581))) +(recipe r115 (key (sx115 ing352))) +(recipe r115 (key (sy115 ing582))) +(recipe r115 (key (sx115 ing353))) +(recipe r115 (key (sy115 ing583))) +(recipe r115 (key (sx115 ing354))) +(recipe r115 (key (sy115 ing584))) +(recipe r115 (key (sx115 ing355))) +(recipe r115 (key (sy115 ing585))) +(recipe r115 (key (sx115 ing356))) +(recipe r115 (key (sy115 ing586))) +(recipe r116 (numIngredients 2)) +(recipe r116 (result (id item116))) +(recipe r116 (pattern 0 sx116)) +(recipe r116 (pattern 1 sy116)) +(recipe r116 (key (sx116 ing348))) +(recipe r116 (key (sy116 ing580))) +(recipe r116 (key (sx116 ing349))) +(recipe r116 (key (sy116 ing581))) +(recipe r116 (key (sx116 ing350))) +(recipe r116 (key (sy116 ing582))) +(recipe r116 (key (sx116 ing351))) +(recipe r116 (key (sy116 ing583))) +(recipe r116 (key (sx116 ing352))) +(recipe r116 (key (sy116 ing584))) +(recipe r116 (key (sx116 ing353))) +(recipe r116 (key (sy116 ing585))) +(recipe r116 (key (sx116 ing354))) +(recipe r116 (key (sy116 ing586))) +(recipe r116 (key (sx116 ing355))) +(recipe r116 (key (sy116 ing587))) +(recipe r116 (key (sx116 ing356))) +(recipe r116 (key (sy116 ing588))) +(recipe r116 (key (sx116 ing357))) +(recipe r116 (key (sy116 ing589))) +(recipe r116 (key (sx116 ing358))) +(recipe r116 (key (sy116 ing590))) +(recipe r116 (key (sx116 ing359))) +(recipe r116 (key (sy116 ing591))) +(recipe r117 (numIngredients 2)) +(recipe r117 (result (id item117))) +(recipe r117 (pattern 0 sx117)) +(recipe r117 (pattern 1 sy117)) +(recipe r117 (key (sx117 ing351))) +(recipe r117 (key (sy117 ing585))) +(recipe r117 (key (sx117 ing352))) +(recipe r117 (key (sy117 ing586))) +(recipe r117 (key (sx117 ing353))) +(recipe r117 (key (sy117 ing587))) +(recipe r117 (key (sx117 ing354))) +(recipe r117 (key (sy117 ing588))) +(recipe r117 (key (sx117 ing355))) +(recipe r117 (key (sy117 ing589))) +(recipe r117 (key (sx117 ing356))) +(recipe r117 (key (sy117 ing590))) +(recipe r117 (key (sx117 ing357))) +(recipe r117 (key (sy117 ing591))) +(recipe r117 (key (sx117 ing358))) +(recipe r117 (key (sy117 ing592))) +(recipe r117 (key (sx117 ing359))) +(recipe r117 (key (sy117 ing593))) +(recipe r117 (key (sx117 ing360))) +(recipe r117 (key (sy117 ing594))) +(recipe r117 (key (sx117 ing361))) +(recipe r117 (key (sy117 ing595))) +(recipe r117 (key (sx117 ing362))) +(recipe r117 (key (sy117 ing596))) +(recipe r118 (numIngredients 2)) +(recipe r118 (result (id item118))) +(recipe r118 (pattern 0 sx118)) +(recipe r118 (pattern 1 sy118)) +(recipe r118 (key (sx118 ing354))) +(recipe r118 (key (sy118 ing590))) +(recipe r118 (key (sx118 ing355))) +(recipe r118 (key (sy118 ing591))) +(recipe r118 (key (sx118 ing356))) +(recipe r118 (key (sy118 ing592))) +(recipe r118 (key (sx118 ing357))) +(recipe r118 (key (sy118 ing593))) +(recipe r118 (key (sx118 ing358))) +(recipe r118 (key (sy118 ing594))) +(recipe r118 (key (sx118 ing359))) +(recipe r118 (key (sy118 ing595))) +(recipe r118 (key (sx118 ing360))) +(recipe r118 (key (sy118 ing596))) +(recipe r118 (key (sx118 ing361))) +(recipe r118 (key (sy118 ing597))) +(recipe r118 (key (sx118 ing362))) +(recipe r118 (key (sy118 ing598))) +(recipe r118 (key (sx118 ing363))) +(recipe r118 (key (sy118 ing599))) +(recipe r118 (key (sx118 ing364))) +(recipe r118 (key (sy118 ing0))) +(recipe r118 (key (sx118 ing365))) +(recipe r118 (key (sy118 ing1))) +(recipe r119 (numIngredients 2)) +(recipe r119 (result (id item119))) +(recipe r119 (pattern 0 sx119)) +(recipe r119 (pattern 1 sy119)) +(recipe r119 (key (sx119 ing357))) +(recipe r119 (key (sy119 ing595))) +(recipe r119 (key (sx119 ing358))) +(recipe r119 (key (sy119 ing596))) +(recipe r119 (key (sx119 ing359))) +(recipe r119 (key (sy119 ing597))) +(recipe r119 (key (sx119 ing360))) +(recipe r119 (key (sy119 ing598))) +(recipe r119 (key (sx119 ing361))) +(recipe r119 (key (sy119 ing599))) +(recipe r119 (key (sx119 ing362))) +(recipe r119 (key (sy119 ing0))) +(recipe r119 (key (sx119 ing363))) +(recipe r119 (key (sy119 ing1))) +(recipe r119 (key (sx119 ing364))) +(recipe r119 (key (sy119 ing2))) +(recipe r119 (key (sx119 ing365))) +(recipe r119 (key (sy119 ing3))) +(recipe r119 (key (sx119 ing366))) +(recipe r119 (key (sy119 ing4))) +(recipe r119 (key (sx119 ing367))) +(recipe r119 (key (sy119 ing5))) +(recipe r119 (key (sx119 ing368))) +(recipe r119 (key (sy119 ing6))) +(recipe r120 (numIngredients 2)) +(recipe r120 (result (id item120))) +(recipe r120 (pattern 0 sx120)) +(recipe r120 (pattern 1 sy120)) +(recipe r120 (key (sx120 ing360))) +(recipe r120 (key (sy120 ing0))) +(recipe r120 (key (sx120 ing361))) +(recipe r120 (key (sy120 ing1))) +(recipe r120 (key (sx120 ing362))) +(recipe r120 (key (sy120 ing2))) +(recipe r120 (key (sx120 ing363))) +(recipe r120 (key (sy120 ing3))) +(recipe r120 (key (sx120 ing364))) +(recipe r120 (key (sy120 ing4))) +(recipe r120 (key (sx120 ing365))) +(recipe r120 (key (sy120 ing5))) +(recipe r120 (key (sx120 ing366))) +(recipe r120 (key (sy120 ing6))) +(recipe r120 (key (sx120 ing367))) +(recipe r120 (key (sy120 ing7))) +(recipe r120 (key (sx120 ing368))) +(recipe r120 (key (sy120 ing8))) +(recipe r120 (key (sx120 ing369))) +(recipe r120 (key (sy120 ing9))) +(recipe r120 (key (sx120 ing370))) +(recipe r120 (key (sy120 ing10))) +(recipe r120 (key (sx120 ing371))) +(recipe r120 (key (sy120 ing11))) +(recipe r121 (numIngredients 2)) +(recipe r121 (result (id item121))) +(recipe r121 (pattern 0 sx121)) +(recipe r121 (pattern 1 sy121)) +(recipe r121 (key (sx121 ing363))) +(recipe r121 (key (sy121 ing5))) +(recipe r121 (key (sx121 ing364))) +(recipe r121 (key (sy121 ing6))) +(recipe r121 (key (sx121 ing365))) +(recipe r121 (key (sy121 ing7))) +(recipe r121 (key (sx121 ing366))) +(recipe r121 (key (sy121 ing8))) +(recipe r121 (key (sx121 ing367))) +(recipe r121 (key (sy121 ing9))) +(recipe r121 (key (sx121 ing368))) +(recipe r121 (key (sy121 ing10))) +(recipe r121 (key (sx121 ing369))) +(recipe r121 (key (sy121 ing11))) +(recipe r121 (key (sx121 ing370))) +(recipe r121 (key (sy121 ing12))) +(recipe r121 (key (sx121 ing371))) +(recipe r121 (key (sy121 ing13))) +(recipe r121 (key (sx121 ing372))) +(recipe r121 (key (sy121 ing14))) +(recipe r121 (key (sx121 ing373))) +(recipe r121 (key (sy121 ing15))) +(recipe r121 (key (sx121 ing374))) +(recipe r121 (key (sy121 ing16))) +(recipe r122 (numIngredients 2)) +(recipe r122 (result (id item122))) +(recipe r122 (pattern 0 sx122)) +(recipe r122 (pattern 1 sy122)) +(recipe r122 (key (sx122 ing366))) +(recipe r122 (key (sy122 ing10))) +(recipe r122 (key (sx122 ing367))) +(recipe r122 (key (sy122 ing11))) +(recipe r122 (key (sx122 ing368))) +(recipe r122 (key (sy122 ing12))) +(recipe r122 (key (sx122 ing369))) +(recipe r122 (key (sy122 ing13))) +(recipe r122 (key (sx122 ing370))) +(recipe r122 (key (sy122 ing14))) +(recipe r122 (key (sx122 ing371))) +(recipe r122 (key (sy122 ing15))) +(recipe r122 (key (sx122 ing372))) +(recipe r122 (key (sy122 ing16))) +(recipe r122 (key (sx122 ing373))) +(recipe r122 (key (sy122 ing17))) +(recipe r122 (key (sx122 ing374))) +(recipe r122 (key (sy122 ing18))) +(recipe r122 (key (sx122 ing375))) +(recipe r122 (key (sy122 ing19))) +(recipe r122 (key (sx122 ing376))) +(recipe r122 (key (sy122 ing20))) +(recipe r122 (key (sx122 ing377))) +(recipe r122 (key (sy122 ing21))) +(recipe r123 (numIngredients 2)) +(recipe r123 (result (id item123))) +(recipe r123 (pattern 0 sx123)) +(recipe r123 (pattern 1 sy123)) +(recipe r123 (key (sx123 ing369))) +(recipe r123 (key (sy123 ing15))) +(recipe r123 (key (sx123 ing370))) +(recipe r123 (key (sy123 ing16))) +(recipe r123 (key (sx123 ing371))) +(recipe r123 (key (sy123 ing17))) +(recipe r123 (key (sx123 ing372))) +(recipe r123 (key (sy123 ing18))) +(recipe r123 (key (sx123 ing373))) +(recipe r123 (key (sy123 ing19))) +(recipe r123 (key (sx123 ing374))) +(recipe r123 (key (sy123 ing20))) +(recipe r123 (key (sx123 ing375))) +(recipe r123 (key (sy123 ing21))) +(recipe r123 (key (sx123 ing376))) +(recipe r123 (key (sy123 ing22))) +(recipe r123 (key (sx123 ing377))) +(recipe r123 (key (sy123 ing23))) +(recipe r123 (key (sx123 ing378))) +(recipe r123 (key (sy123 ing24))) +(recipe r123 (key (sx123 ing379))) +(recipe r123 (key (sy123 ing25))) +(recipe r123 (key (sx123 ing380))) +(recipe r123 (key (sy123 ing26))) +(recipe r124 (numIngredients 2)) +(recipe r124 (result (id item124))) +(recipe r124 (pattern 0 sx124)) +(recipe r124 (pattern 1 sy124)) +(recipe r124 (key (sx124 ing372))) +(recipe r124 (key (sy124 ing20))) +(recipe r124 (key (sx124 ing373))) +(recipe r124 (key (sy124 ing21))) +(recipe r124 (key (sx124 ing374))) +(recipe r124 (key (sy124 ing22))) +(recipe r124 (key (sx124 ing375))) +(recipe r124 (key (sy124 ing23))) +(recipe r124 (key (sx124 ing376))) +(recipe r124 (key (sy124 ing24))) +(recipe r124 (key (sx124 ing377))) +(recipe r124 (key (sy124 ing25))) +(recipe r124 (key (sx124 ing378))) +(recipe r124 (key (sy124 ing26))) +(recipe r124 (key (sx124 ing379))) +(recipe r124 (key (sy124 ing27))) +(recipe r124 (key (sx124 ing380))) +(recipe r124 (key (sy124 ing28))) +(recipe r124 (key (sx124 ing381))) +(recipe r124 (key (sy124 ing29))) +(recipe r124 (key (sx124 ing382))) +(recipe r124 (key (sy124 ing30))) +(recipe r124 (key (sx124 ing383))) +(recipe r124 (key (sy124 ing31))) +(recipe r125 (numIngredients 2)) +(recipe r125 (result (id item125))) +(recipe r125 (pattern 0 sx125)) +(recipe r125 (pattern 1 sy125)) +(recipe r125 (key (sx125 ing375))) +(recipe r125 (key (sy125 ing25))) +(recipe r125 (key (sx125 ing376))) +(recipe r125 (key (sy125 ing26))) +(recipe r125 (key (sx125 ing377))) +(recipe r125 (key (sy125 ing27))) +(recipe r125 (key (sx125 ing378))) +(recipe r125 (key (sy125 ing28))) +(recipe r125 (key (sx125 ing379))) +(recipe r125 (key (sy125 ing29))) +(recipe r125 (key (sx125 ing380))) +(recipe r125 (key (sy125 ing30))) +(recipe r125 (key (sx125 ing381))) +(recipe r125 (key (sy125 ing31))) +(recipe r125 (key (sx125 ing382))) +(recipe r125 (key (sy125 ing32))) +(recipe r125 (key (sx125 ing383))) +(recipe r125 (key (sy125 ing33))) +(recipe r125 (key (sx125 ing384))) +(recipe r125 (key (sy125 ing34))) +(recipe r125 (key (sx125 ing385))) +(recipe r125 (key (sy125 ing35))) +(recipe r125 (key (sx125 ing386))) +(recipe r125 (key (sy125 ing36))) +(recipe r126 (numIngredients 2)) +(recipe r126 (result (id item126))) +(recipe r126 (pattern 0 sx126)) +(recipe r126 (pattern 1 sy126)) +(recipe r126 (key (sx126 ing378))) +(recipe r126 (key (sy126 ing30))) +(recipe r126 (key (sx126 ing379))) +(recipe r126 (key (sy126 ing31))) +(recipe r126 (key (sx126 ing380))) +(recipe r126 (key (sy126 ing32))) +(recipe r126 (key (sx126 ing381))) +(recipe r126 (key (sy126 ing33))) +(recipe r126 (key (sx126 ing382))) +(recipe r126 (key (sy126 ing34))) +(recipe r126 (key (sx126 ing383))) +(recipe r126 (key (sy126 ing35))) +(recipe r126 (key (sx126 ing384))) +(recipe r126 (key (sy126 ing36))) +(recipe r126 (key (sx126 ing385))) +(recipe r126 (key (sy126 ing37))) +(recipe r126 (key (sx126 ing386))) +(recipe r126 (key (sy126 ing38))) +(recipe r126 (key (sx126 ing387))) +(recipe r126 (key (sy126 ing39))) +(recipe r126 (key (sx126 ing388))) +(recipe r126 (key (sy126 ing40))) +(recipe r126 (key (sx126 ing389))) +(recipe r126 (key (sy126 ing41))) +(recipe r127 (numIngredients 2)) +(recipe r127 (result (id item127))) +(recipe r127 (pattern 0 sx127)) +(recipe r127 (pattern 1 sy127)) +(recipe r127 (key (sx127 ing381))) +(recipe r127 (key (sy127 ing35))) +(recipe r127 (key (sx127 ing382))) +(recipe r127 (key (sy127 ing36))) +(recipe r127 (key (sx127 ing383))) +(recipe r127 (key (sy127 ing37))) +(recipe r127 (key (sx127 ing384))) +(recipe r127 (key (sy127 ing38))) +(recipe r127 (key (sx127 ing385))) +(recipe r127 (key (sy127 ing39))) +(recipe r127 (key (sx127 ing386))) +(recipe r127 (key (sy127 ing40))) +(recipe r127 (key (sx127 ing387))) +(recipe r127 (key (sy127 ing41))) +(recipe r127 (key (sx127 ing388))) +(recipe r127 (key (sy127 ing42))) +(recipe r127 (key (sx127 ing389))) +(recipe r127 (key (sy127 ing43))) +(recipe r127 (key (sx127 ing390))) +(recipe r127 (key (sy127 ing44))) +(recipe r127 (key (sx127 ing391))) +(recipe r127 (key (sy127 ing45))) +(recipe r127 (key (sx127 ing392))) +(recipe r127 (key (sy127 ing46))) +(recipe r128 (numIngredients 2)) +(recipe r128 (result (id item128))) +(recipe r128 (pattern 0 sx128)) +(recipe r128 (pattern 1 sy128)) +(recipe r128 (key (sx128 ing384))) +(recipe r128 (key (sy128 ing40))) +(recipe r128 (key (sx128 ing385))) +(recipe r128 (key (sy128 ing41))) +(recipe r128 (key (sx128 ing386))) +(recipe r128 (key (sy128 ing42))) +(recipe r128 (key (sx128 ing387))) +(recipe r128 (key (sy128 ing43))) +(recipe r128 (key (sx128 ing388))) +(recipe r128 (key (sy128 ing44))) +(recipe r128 (key (sx128 ing389))) +(recipe r128 (key (sy128 ing45))) +(recipe r128 (key (sx128 ing390))) +(recipe r128 (key (sy128 ing46))) +(recipe r128 (key (sx128 ing391))) +(recipe r128 (key (sy128 ing47))) +(recipe r128 (key (sx128 ing392))) +(recipe r128 (key (sy128 ing48))) +(recipe r128 (key (sx128 ing393))) +(recipe r128 (key (sy128 ing49))) +(recipe r128 (key (sx128 ing394))) +(recipe r128 (key (sy128 ing50))) +(recipe r128 (key (sx128 ing395))) +(recipe r128 (key (sy128 ing51))) +(recipe r129 (numIngredients 2)) +(recipe r129 (result (id item129))) +(recipe r129 (pattern 0 sx129)) +(recipe r129 (pattern 1 sy129)) +(recipe r129 (key (sx129 ing387))) +(recipe r129 (key (sy129 ing45))) +(recipe r129 (key (sx129 ing388))) +(recipe r129 (key (sy129 ing46))) +(recipe r129 (key (sx129 ing389))) +(recipe r129 (key (sy129 ing47))) +(recipe r129 (key (sx129 ing390))) +(recipe r129 (key (sy129 ing48))) +(recipe r129 (key (sx129 ing391))) +(recipe r129 (key (sy129 ing49))) +(recipe r129 (key (sx129 ing392))) +(recipe r129 (key (sy129 ing50))) +(recipe r129 (key (sx129 ing393))) +(recipe r129 (key (sy129 ing51))) +(recipe r129 (key (sx129 ing394))) +(recipe r129 (key (sy129 ing52))) +(recipe r129 (key (sx129 ing395))) +(recipe r129 (key (sy129 ing53))) +(recipe r129 (key (sx129 ing396))) +(recipe r129 (key (sy129 ing54))) +(recipe r129 (key (sx129 ing397))) +(recipe r129 (key (sy129 ing55))) +(recipe r129 (key (sx129 ing398))) +(recipe r129 (key (sy129 ing56))) +(recipe r130 (numIngredients 2)) +(recipe r130 (result (id item130))) +(recipe r130 (pattern 0 sx130)) +(recipe r130 (pattern 1 sy130)) +(recipe r130 (key (sx130 ing390))) +(recipe r130 (key (sy130 ing50))) +(recipe r130 (key (sx130 ing391))) +(recipe r130 (key (sy130 ing51))) +(recipe r130 (key (sx130 ing392))) +(recipe r130 (key (sy130 ing52))) +(recipe r130 (key (sx130 ing393))) +(recipe r130 (key (sy130 ing53))) +(recipe r130 (key (sx130 ing394))) +(recipe r130 (key (sy130 ing54))) +(recipe r130 (key (sx130 ing395))) +(recipe r130 (key (sy130 ing55))) +(recipe r130 (key (sx130 ing396))) +(recipe r130 (key (sy130 ing56))) +(recipe r130 (key (sx130 ing397))) +(recipe r130 (key (sy130 ing57))) +(recipe r130 (key (sx130 ing398))) +(recipe r130 (key (sy130 ing58))) +(recipe r130 (key (sx130 ing399))) +(recipe r130 (key (sy130 ing59))) +(recipe r130 (key (sx130 ing400))) +(recipe r130 (key (sy130 ing60))) +(recipe r130 (key (sx130 ing401))) +(recipe r130 (key (sy130 ing61))) +(recipe r131 (numIngredients 2)) +(recipe r131 (result (id item131))) +(recipe r131 (pattern 0 sx131)) +(recipe r131 (pattern 1 sy131)) +(recipe r131 (key (sx131 ing393))) +(recipe r131 (key (sy131 ing55))) +(recipe r131 (key (sx131 ing394))) +(recipe r131 (key (sy131 ing56))) +(recipe r131 (key (sx131 ing395))) +(recipe r131 (key (sy131 ing57))) +(recipe r131 (key (sx131 ing396))) +(recipe r131 (key (sy131 ing58))) +(recipe r131 (key (sx131 ing397))) +(recipe r131 (key (sy131 ing59))) +(recipe r131 (key (sx131 ing398))) +(recipe r131 (key (sy131 ing60))) +(recipe r131 (key (sx131 ing399))) +(recipe r131 (key (sy131 ing61))) +(recipe r131 (key (sx131 ing400))) +(recipe r131 (key (sy131 ing62))) +(recipe r131 (key (sx131 ing401))) +(recipe r131 (key (sy131 ing63))) +(recipe r131 (key (sx131 ing402))) +(recipe r131 (key (sy131 ing64))) +(recipe r131 (key (sx131 ing403))) +(recipe r131 (key (sy131 ing65))) +(recipe r131 (key (sx131 ing404))) +(recipe r131 (key (sy131 ing66))) +(recipe r132 (numIngredients 2)) +(recipe r132 (result (id item132))) +(recipe r132 (pattern 0 sx132)) +(recipe r132 (pattern 1 sy132)) +(recipe r132 (key (sx132 ing396))) +(recipe r132 (key (sy132 ing60))) +(recipe r132 (key (sx132 ing397))) +(recipe r132 (key (sy132 ing61))) +(recipe r132 (key (sx132 ing398))) +(recipe r132 (key (sy132 ing62))) +(recipe r132 (key (sx132 ing399))) +(recipe r132 (key (sy132 ing63))) +(recipe r132 (key (sx132 ing400))) +(recipe r132 (key (sy132 ing64))) +(recipe r132 (key (sx132 ing401))) +(recipe r132 (key (sy132 ing65))) +(recipe r132 (key (sx132 ing402))) +(recipe r132 (key (sy132 ing66))) +(recipe r132 (key (sx132 ing403))) +(recipe r132 (key (sy132 ing67))) +(recipe r132 (key (sx132 ing404))) +(recipe r132 (key (sy132 ing68))) +(recipe r132 (key (sx132 ing405))) +(recipe r132 (key (sy132 ing69))) +(recipe r132 (key (sx132 ing406))) +(recipe r132 (key (sy132 ing70))) +(recipe r132 (key (sx132 ing407))) +(recipe r132 (key (sy132 ing71))) +(recipe r133 (numIngredients 2)) +(recipe r133 (result (id item133))) +(recipe r133 (pattern 0 sx133)) +(recipe r133 (pattern 1 sy133)) +(recipe r133 (key (sx133 ing399))) +(recipe r133 (key (sy133 ing65))) +(recipe r133 (key (sx133 ing400))) +(recipe r133 (key (sy133 ing66))) +(recipe r133 (key (sx133 ing401))) +(recipe r133 (key (sy133 ing67))) +(recipe r133 (key (sx133 ing402))) +(recipe r133 (key (sy133 ing68))) +(recipe r133 (key (sx133 ing403))) +(recipe r133 (key (sy133 ing69))) +(recipe r133 (key (sx133 ing404))) +(recipe r133 (key (sy133 ing70))) +(recipe r133 (key (sx133 ing405))) +(recipe r133 (key (sy133 ing71))) +(recipe r133 (key (sx133 ing406))) +(recipe r133 (key (sy133 ing72))) +(recipe r133 (key (sx133 ing407))) +(recipe r133 (key (sy133 ing73))) +(recipe r133 (key (sx133 ing408))) +(recipe r133 (key (sy133 ing74))) +(recipe r133 (key (sx133 ing409))) +(recipe r133 (key (sy133 ing75))) +(recipe r133 (key (sx133 ing410))) +(recipe r133 (key (sy133 ing76))) +(recipe r134 (numIngredients 2)) +(recipe r134 (result (id item134))) +(recipe r134 (pattern 0 sx134)) +(recipe r134 (pattern 1 sy134)) +(recipe r134 (key (sx134 ing402))) +(recipe r134 (key (sy134 ing70))) +(recipe r134 (key (sx134 ing403))) +(recipe r134 (key (sy134 ing71))) +(recipe r134 (key (sx134 ing404))) +(recipe r134 (key (sy134 ing72))) +(recipe r134 (key (sx134 ing405))) +(recipe r134 (key (sy134 ing73))) +(recipe r134 (key (sx134 ing406))) +(recipe r134 (key (sy134 ing74))) +(recipe r134 (key (sx134 ing407))) +(recipe r134 (key (sy134 ing75))) +(recipe r134 (key (sx134 ing408))) +(recipe r134 (key (sy134 ing76))) +(recipe r134 (key (sx134 ing409))) +(recipe r134 (key (sy134 ing77))) +(recipe r134 (key (sx134 ing410))) +(recipe r134 (key (sy134 ing78))) +(recipe r134 (key (sx134 ing411))) +(recipe r134 (key (sy134 ing79))) +(recipe r134 (key (sx134 ing412))) +(recipe r134 (key (sy134 ing80))) +(recipe r134 (key (sx134 ing413))) +(recipe r134 (key (sy134 ing81))) +(recipe r135 (numIngredients 2)) +(recipe r135 (result (id item135))) +(recipe r135 (pattern 0 sx135)) +(recipe r135 (pattern 1 sy135)) +(recipe r135 (key (sx135 ing405))) +(recipe r135 (key (sy135 ing75))) +(recipe r135 (key (sx135 ing406))) +(recipe r135 (key (sy135 ing76))) +(recipe r135 (key (sx135 ing407))) +(recipe r135 (key (sy135 ing77))) +(recipe r135 (key (sx135 ing408))) +(recipe r135 (key (sy135 ing78))) +(recipe r135 (key (sx135 ing409))) +(recipe r135 (key (sy135 ing79))) +(recipe r135 (key (sx135 ing410))) +(recipe r135 (key (sy135 ing80))) +(recipe r135 (key (sx135 ing411))) +(recipe r135 (key (sy135 ing81))) +(recipe r135 (key (sx135 ing412))) +(recipe r135 (key (sy135 ing82))) +(recipe r135 (key (sx135 ing413))) +(recipe r135 (key (sy135 ing83))) +(recipe r135 (key (sx135 ing414))) +(recipe r135 (key (sy135 ing84))) +(recipe r135 (key (sx135 ing415))) +(recipe r135 (key (sy135 ing85))) +(recipe r135 (key (sx135 ing416))) +(recipe r135 (key (sy135 ing86))) +(recipe r136 (numIngredients 2)) +(recipe r136 (result (id item136))) +(recipe r136 (pattern 0 sx136)) +(recipe r136 (pattern 1 sy136)) +(recipe r136 (key (sx136 ing408))) +(recipe r136 (key (sy136 ing80))) +(recipe r136 (key (sx136 ing409))) +(recipe r136 (key (sy136 ing81))) +(recipe r136 (key (sx136 ing410))) +(recipe r136 (key (sy136 ing82))) +(recipe r136 (key (sx136 ing411))) +(recipe r136 (key (sy136 ing83))) +(recipe r136 (key (sx136 ing412))) +(recipe r136 (key (sy136 ing84))) +(recipe r136 (key (sx136 ing413))) +(recipe r136 (key (sy136 ing85))) +(recipe r136 (key (sx136 ing414))) +(recipe r136 (key (sy136 ing86))) +(recipe r136 (key (sx136 ing415))) +(recipe r136 (key (sy136 ing87))) +(recipe r136 (key (sx136 ing416))) +(recipe r136 (key (sy136 ing88))) +(recipe r136 (key (sx136 ing417))) +(recipe r136 (key (sy136 ing89))) +(recipe r136 (key (sx136 ing418))) +(recipe r136 (key (sy136 ing90))) +(recipe r136 (key (sx136 ing419))) +(recipe r136 (key (sy136 ing91))) +(recipe r137 (numIngredients 2)) +(recipe r137 (result (id item137))) +(recipe r137 (pattern 0 sx137)) +(recipe r137 (pattern 1 sy137)) +(recipe r137 (key (sx137 ing411))) +(recipe r137 (key (sy137 ing85))) +(recipe r137 (key (sx137 ing412))) +(recipe r137 (key (sy137 ing86))) +(recipe r137 (key (sx137 ing413))) +(recipe r137 (key (sy137 ing87))) +(recipe r137 (key (sx137 ing414))) +(recipe r137 (key (sy137 ing88))) +(recipe r137 (key (sx137 ing415))) +(recipe r137 (key (sy137 ing89))) +(recipe r137 (key (sx137 ing416))) +(recipe r137 (key (sy137 ing90))) +(recipe r137 (key (sx137 ing417))) +(recipe r137 (key (sy137 ing91))) +(recipe r137 (key (sx137 ing418))) +(recipe r137 (key (sy137 ing92))) +(recipe r137 (key (sx137 ing419))) +(recipe r137 (key (sy137 ing93))) +(recipe r137 (key (sx137 ing420))) +(recipe r137 (key (sy137 ing94))) +(recipe r137 (key (sx137 ing421))) +(recipe r137 (key (sy137 ing95))) +(recipe r137 (key (sx137 ing422))) +(recipe r137 (key (sy137 ing96))) +(recipe r138 (numIngredients 2)) +(recipe r138 (result (id item138))) +(recipe r138 (pattern 0 sx138)) +(recipe r138 (pattern 1 sy138)) +(recipe r138 (key (sx138 ing414))) +(recipe r138 (key (sy138 ing90))) +(recipe r138 (key (sx138 ing415))) +(recipe r138 (key (sy138 ing91))) +(recipe r138 (key (sx138 ing416))) +(recipe r138 (key (sy138 ing92))) +(recipe r138 (key (sx138 ing417))) +(recipe r138 (key (sy138 ing93))) +(recipe r138 (key (sx138 ing418))) +(recipe r138 (key (sy138 ing94))) +(recipe r138 (key (sx138 ing419))) +(recipe r138 (key (sy138 ing95))) +(recipe r138 (key (sx138 ing420))) +(recipe r138 (key (sy138 ing96))) +(recipe r138 (key (sx138 ing421))) +(recipe r138 (key (sy138 ing97))) +(recipe r138 (key (sx138 ing422))) +(recipe r138 (key (sy138 ing98))) +(recipe r138 (key (sx138 ing423))) +(recipe r138 (key (sy138 ing99))) +(recipe r138 (key (sx138 ing424))) +(recipe r138 (key (sy138 ing100))) +(recipe r138 (key (sx138 ing425))) +(recipe r138 (key (sy138 ing101))) +(recipe r139 (numIngredients 2)) +(recipe r139 (result (id item139))) +(recipe r139 (pattern 0 sx139)) +(recipe r139 (pattern 1 sy139)) +(recipe r139 (key (sx139 ing417))) +(recipe r139 (key (sy139 ing95))) +(recipe r139 (key (sx139 ing418))) +(recipe r139 (key (sy139 ing96))) +(recipe r139 (key (sx139 ing419))) +(recipe r139 (key (sy139 ing97))) +(recipe r139 (key (sx139 ing420))) +(recipe r139 (key (sy139 ing98))) +(recipe r139 (key (sx139 ing421))) +(recipe r139 (key (sy139 ing99))) +(recipe r139 (key (sx139 ing422))) +(recipe r139 (key (sy139 ing100))) +(recipe r139 (key (sx139 ing423))) +(recipe r139 (key (sy139 ing101))) +(recipe r139 (key (sx139 ing424))) +(recipe r139 (key (sy139 ing102))) +(recipe r139 (key (sx139 ing425))) +(recipe r139 (key (sy139 ing103))) +(recipe r139 (key (sx139 ing426))) +(recipe r139 (key (sy139 ing104))) +(recipe r139 (key (sx139 ing427))) +(recipe r139 (key (sy139 ing105))) +(recipe r139 (key (sx139 ing428))) +(recipe r139 (key (sy139 ing106))) +(recipe r140 (numIngredients 2)) +(recipe r140 (result (id item140))) +(recipe r140 (pattern 0 sx140)) +(recipe r140 (pattern 1 sy140)) +(recipe r140 (key (sx140 ing420))) +(recipe r140 (key (sy140 ing100))) +(recipe r140 (key (sx140 ing421))) +(recipe r140 (key (sy140 ing101))) +(recipe r140 (key (sx140 ing422))) +(recipe r140 (key (sy140 ing102))) +(recipe r140 (key (sx140 ing423))) +(recipe r140 (key (sy140 ing103))) +(recipe r140 (key (sx140 ing424))) +(recipe r140 (key (sy140 ing104))) +(recipe r140 (key (sx140 ing425))) +(recipe r140 (key (sy140 ing105))) +(recipe r140 (key (sx140 ing426))) +(recipe r140 (key (sy140 ing106))) +(recipe r140 (key (sx140 ing427))) +(recipe r140 (key (sy140 ing107))) +(recipe r140 (key (sx140 ing428))) +(recipe r140 (key (sy140 ing108))) +(recipe r140 (key (sx140 ing429))) +(recipe r140 (key (sy140 ing109))) +(recipe r140 (key (sx140 ing430))) +(recipe r140 (key (sy140 ing110))) +(recipe r140 (key (sx140 ing431))) +(recipe r140 (key (sy140 ing111))) +(recipe r141 (numIngredients 2)) +(recipe r141 (result (id item141))) +(recipe r141 (pattern 0 sx141)) +(recipe r141 (pattern 1 sy141)) +(recipe r141 (key (sx141 ing423))) +(recipe r141 (key (sy141 ing105))) +(recipe r141 (key (sx141 ing424))) +(recipe r141 (key (sy141 ing106))) +(recipe r141 (key (sx141 ing425))) +(recipe r141 (key (sy141 ing107))) +(recipe r141 (key (sx141 ing426))) +(recipe r141 (key (sy141 ing108))) +(recipe r141 (key (sx141 ing427))) +(recipe r141 (key (sy141 ing109))) +(recipe r141 (key (sx141 ing428))) +(recipe r141 (key (sy141 ing110))) +(recipe r141 (key (sx141 ing429))) +(recipe r141 (key (sy141 ing111))) +(recipe r141 (key (sx141 ing430))) +(recipe r141 (key (sy141 ing112))) +(recipe r141 (key (sx141 ing431))) +(recipe r141 (key (sy141 ing113))) +(recipe r141 (key (sx141 ing432))) +(recipe r141 (key (sy141 ing114))) +(recipe r141 (key (sx141 ing433))) +(recipe r141 (key (sy141 ing115))) +(recipe r141 (key (sx141 ing434))) +(recipe r141 (key (sy141 ing116))) +(recipe r142 (numIngredients 2)) +(recipe r142 (result (id item142))) +(recipe r142 (pattern 0 sx142)) +(recipe r142 (pattern 1 sy142)) +(recipe r142 (key (sx142 ing426))) +(recipe r142 (key (sy142 ing110))) +(recipe r142 (key (sx142 ing427))) +(recipe r142 (key (sy142 ing111))) +(recipe r142 (key (sx142 ing428))) +(recipe r142 (key (sy142 ing112))) +(recipe r142 (key (sx142 ing429))) +(recipe r142 (key (sy142 ing113))) +(recipe r142 (key (sx142 ing430))) +(recipe r142 (key (sy142 ing114))) +(recipe r142 (key (sx142 ing431))) +(recipe r142 (key (sy142 ing115))) +(recipe r142 (key (sx142 ing432))) +(recipe r142 (key (sy142 ing116))) +(recipe r142 (key (sx142 ing433))) +(recipe r142 (key (sy142 ing117))) +(recipe r142 (key (sx142 ing434))) +(recipe r142 (key (sy142 ing118))) +(recipe r142 (key (sx142 ing435))) +(recipe r142 (key (sy142 ing119))) +(recipe r142 (key (sx142 ing436))) +(recipe r142 (key (sy142 ing120))) +(recipe r142 (key (sx142 ing437))) +(recipe r142 (key (sy142 ing121))) +(recipe r143 (numIngredients 2)) +(recipe r143 (result (id item143))) +(recipe r143 (pattern 0 sx143)) +(recipe r143 (pattern 1 sy143)) +(recipe r143 (key (sx143 ing429))) +(recipe r143 (key (sy143 ing115))) +(recipe r143 (key (sx143 ing430))) +(recipe r143 (key (sy143 ing116))) +(recipe r143 (key (sx143 ing431))) +(recipe r143 (key (sy143 ing117))) +(recipe r143 (key (sx143 ing432))) +(recipe r143 (key (sy143 ing118))) +(recipe r143 (key (sx143 ing433))) +(recipe r143 (key (sy143 ing119))) +(recipe r143 (key (sx143 ing434))) +(recipe r143 (key (sy143 ing120))) +(recipe r143 (key (sx143 ing435))) +(recipe r143 (key (sy143 ing121))) +(recipe r143 (key (sx143 ing436))) +(recipe r143 (key (sy143 ing122))) +(recipe r143 (key (sx143 ing437))) +(recipe r143 (key (sy143 ing123))) +(recipe r143 (key (sx143 ing438))) +(recipe r143 (key (sy143 ing124))) +(recipe r143 (key (sx143 ing439))) +(recipe r143 (key (sy143 ing125))) +(recipe r143 (key (sx143 ing440))) +(recipe r143 (key (sy143 ing126))) +(recipe r144 (numIngredients 2)) +(recipe r144 (result (id item144))) +(recipe r144 (pattern 0 sx144)) +(recipe r144 (pattern 1 sy144)) +(recipe r144 (key (sx144 ing432))) +(recipe r144 (key (sy144 ing120))) +(recipe r144 (key (sx144 ing433))) +(recipe r144 (key (sy144 ing121))) +(recipe r144 (key (sx144 ing434))) +(recipe r144 (key (sy144 ing122))) +(recipe r144 (key (sx144 ing435))) +(recipe r144 (key (sy144 ing123))) +(recipe r144 (key (sx144 ing436))) +(recipe r144 (key (sy144 ing124))) +(recipe r144 (key (sx144 ing437))) +(recipe r144 (key (sy144 ing125))) +(recipe r144 (key (sx144 ing438))) +(recipe r144 (key (sy144 ing126))) +(recipe r144 (key (sx144 ing439))) +(recipe r144 (key (sy144 ing127))) +(recipe r144 (key (sx144 ing440))) +(recipe r144 (key (sy144 ing128))) +(recipe r144 (key (sx144 ing441))) +(recipe r144 (key (sy144 ing129))) +(recipe r144 (key (sx144 ing442))) +(recipe r144 (key (sy144 ing130))) +(recipe r144 (key (sx144 ing443))) +(recipe r144 (key (sy144 ing131))) +(recipe r145 (numIngredients 2)) +(recipe r145 (result (id item145))) +(recipe r145 (pattern 0 sx145)) +(recipe r145 (pattern 1 sy145)) +(recipe r145 (key (sx145 ing435))) +(recipe r145 (key (sy145 ing125))) +(recipe r145 (key (sx145 ing436))) +(recipe r145 (key (sy145 ing126))) +(recipe r145 (key (sx145 ing437))) +(recipe r145 (key (sy145 ing127))) +(recipe r145 (key (sx145 ing438))) +(recipe r145 (key (sy145 ing128))) +(recipe r145 (key (sx145 ing439))) +(recipe r145 (key (sy145 ing129))) +(recipe r145 (key (sx145 ing440))) +(recipe r145 (key (sy145 ing130))) +(recipe r145 (key (sx145 ing441))) +(recipe r145 (key (sy145 ing131))) +(recipe r145 (key (sx145 ing442))) +(recipe r145 (key (sy145 ing132))) +(recipe r145 (key (sx145 ing443))) +(recipe r145 (key (sy145 ing133))) +(recipe r145 (key (sx145 ing444))) +(recipe r145 (key (sy145 ing134))) +(recipe r145 (key (sx145 ing445))) +(recipe r145 (key (sy145 ing135))) +(recipe r145 (key (sx145 ing446))) +(recipe r145 (key (sy145 ing136))) +(recipe r146 (numIngredients 2)) +(recipe r146 (result (id item146))) +(recipe r146 (pattern 0 sx146)) +(recipe r146 (pattern 1 sy146)) +(recipe r146 (key (sx146 ing438))) +(recipe r146 (key (sy146 ing130))) +(recipe r146 (key (sx146 ing439))) +(recipe r146 (key (sy146 ing131))) +(recipe r146 (key (sx146 ing440))) +(recipe r146 (key (sy146 ing132))) +(recipe r146 (key (sx146 ing441))) +(recipe r146 (key (sy146 ing133))) +(recipe r146 (key (sx146 ing442))) +(recipe r146 (key (sy146 ing134))) +(recipe r146 (key (sx146 ing443))) +(recipe r146 (key (sy146 ing135))) +(recipe r146 (key (sx146 ing444))) +(recipe r146 (key (sy146 ing136))) +(recipe r146 (key (sx146 ing445))) +(recipe r146 (key (sy146 ing137))) +(recipe r146 (key (sx146 ing446))) +(recipe r146 (key (sy146 ing138))) +(recipe r146 (key (sx146 ing447))) +(recipe r146 (key (sy146 ing139))) +(recipe r146 (key (sx146 ing448))) +(recipe r146 (key (sy146 ing140))) +(recipe r146 (key (sx146 ing449))) +(recipe r146 (key (sy146 ing141))) +(recipe r147 (numIngredients 2)) +(recipe r147 (result (id item147))) +(recipe r147 (pattern 0 sx147)) +(recipe r147 (pattern 1 sy147)) +(recipe r147 (key (sx147 ing441))) +(recipe r147 (key (sy147 ing135))) +(recipe r147 (key (sx147 ing442))) +(recipe r147 (key (sy147 ing136))) +(recipe r147 (key (sx147 ing443))) +(recipe r147 (key (sy147 ing137))) +(recipe r147 (key (sx147 ing444))) +(recipe r147 (key (sy147 ing138))) +(recipe r147 (key (sx147 ing445))) +(recipe r147 (key (sy147 ing139))) +(recipe r147 (key (sx147 ing446))) +(recipe r147 (key (sy147 ing140))) +(recipe r147 (key (sx147 ing447))) +(recipe r147 (key (sy147 ing141))) +(recipe r147 (key (sx147 ing448))) +(recipe r147 (key (sy147 ing142))) +(recipe r147 (key (sx147 ing449))) +(recipe r147 (key (sy147 ing143))) +(recipe r147 (key (sx147 ing450))) +(recipe r147 (key (sy147 ing144))) +(recipe r147 (key (sx147 ing451))) +(recipe r147 (key (sy147 ing145))) +(recipe r147 (key (sx147 ing452))) +(recipe r147 (key (sy147 ing146))) +(recipe r148 (numIngredients 2)) +(recipe r148 (result (id item148))) +(recipe r148 (pattern 0 sx148)) +(recipe r148 (pattern 1 sy148)) +(recipe r148 (key (sx148 ing444))) +(recipe r148 (key (sy148 ing140))) +(recipe r148 (key (sx148 ing445))) +(recipe r148 (key (sy148 ing141))) +(recipe r148 (key (sx148 ing446))) +(recipe r148 (key (sy148 ing142))) +(recipe r148 (key (sx148 ing447))) +(recipe r148 (key (sy148 ing143))) +(recipe r148 (key (sx148 ing448))) +(recipe r148 (key (sy148 ing144))) +(recipe r148 (key (sx148 ing449))) +(recipe r148 (key (sy148 ing145))) +(recipe r148 (key (sx148 ing450))) +(recipe r148 (key (sy148 ing146))) +(recipe r148 (key (sx148 ing451))) +(recipe r148 (key (sy148 ing147))) +(recipe r148 (key (sx148 ing452))) +(recipe r148 (key (sy148 ing148))) +(recipe r148 (key (sx148 ing453))) +(recipe r148 (key (sy148 ing149))) +(recipe r148 (key (sx148 ing454))) +(recipe r148 (key (sy148 ing150))) +(recipe r148 (key (sx148 ing455))) +(recipe r148 (key (sy148 ing151))) +(recipe r149 (numIngredients 2)) +(recipe r149 (result (id item149))) +(recipe r149 (pattern 0 sx149)) +(recipe r149 (pattern 1 sy149)) +(recipe r149 (key (sx149 ing447))) +(recipe r149 (key (sy149 ing145))) +(recipe r149 (key (sx149 ing448))) +(recipe r149 (key (sy149 ing146))) +(recipe r149 (key (sx149 ing449))) +(recipe r149 (key (sy149 ing147))) +(recipe r149 (key (sx149 ing450))) +(recipe r149 (key (sy149 ing148))) +(recipe r149 (key (sx149 ing451))) +(recipe r149 (key (sy149 ing149))) +(recipe r149 (key (sx149 ing452))) +(recipe r149 (key (sy149 ing150))) +(recipe r149 (key (sx149 ing453))) +(recipe r149 (key (sy149 ing151))) +(recipe r149 (key (sx149 ing454))) +(recipe r149 (key (sy149 ing152))) +(recipe r149 (key (sx149 ing455))) +(recipe r149 (key (sy149 ing153))) +(recipe r149 (key (sx149 ing456))) +(recipe r149 (key (sy149 ing154))) +(recipe r149 (key (sx149 ing457))) +(recipe r149 (key (sy149 ing155))) +(recipe r149 (key (sx149 ing458))) +(recipe r149 (key (sy149 ing156))) +(recipe r150 (numIngredients 2)) +(recipe r150 (result (id item150))) +(recipe r150 (pattern 0 sx150)) +(recipe r150 (pattern 1 sy150)) +(recipe r150 (key (sx150 ing450))) +(recipe r150 (key (sy150 ing150))) +(recipe r150 (key (sx150 ing451))) +(recipe r150 (key (sy150 ing151))) +(recipe r150 (key (sx150 ing452))) +(recipe r150 (key (sy150 ing152))) +(recipe r150 (key (sx150 ing453))) +(recipe r150 (key (sy150 ing153))) +(recipe r150 (key (sx150 ing454))) +(recipe r150 (key (sy150 ing154))) +(recipe r150 (key (sx150 ing455))) +(recipe r150 (key (sy150 ing155))) +(recipe r150 (key (sx150 ing456))) +(recipe r150 (key (sy150 ing156))) +(recipe r150 (key (sx150 ing457))) +(recipe r150 (key (sy150 ing157))) +(recipe r150 (key (sx150 ing458))) +(recipe r150 (key (sy150 ing158))) +(recipe r150 (key (sx150 ing459))) +(recipe r150 (key (sy150 ing159))) +(recipe r150 (key (sx150 ing460))) +(recipe r150 (key (sy150 ing160))) +(recipe r150 (key (sx150 ing461))) +(recipe r150 (key (sy150 ing161))) +(recipe r151 (numIngredients 2)) +(recipe r151 (result (id item151))) +(recipe r151 (pattern 0 sx151)) +(recipe r151 (pattern 1 sy151)) +(recipe r151 (key (sx151 ing453))) +(recipe r151 (key (sy151 ing155))) +(recipe r151 (key (sx151 ing454))) +(recipe r151 (key (sy151 ing156))) +(recipe r151 (key (sx151 ing455))) +(recipe r151 (key (sy151 ing157))) +(recipe r151 (key (sx151 ing456))) +(recipe r151 (key (sy151 ing158))) +(recipe r151 (key (sx151 ing457))) +(recipe r151 (key (sy151 ing159))) +(recipe r151 (key (sx151 ing458))) +(recipe r151 (key (sy151 ing160))) +(recipe r151 (key (sx151 ing459))) +(recipe r151 (key (sy151 ing161))) +(recipe r151 (key (sx151 ing460))) +(recipe r151 (key (sy151 ing162))) +(recipe r151 (key (sx151 ing461))) +(recipe r151 (key (sy151 ing163))) +(recipe r151 (key (sx151 ing462))) +(recipe r151 (key (sy151 ing164))) +(recipe r151 (key (sx151 ing463))) +(recipe r151 (key (sy151 ing165))) +(recipe r151 (key (sx151 ing464))) +(recipe r151 (key (sy151 ing166))) +(recipe r152 (numIngredients 2)) +(recipe r152 (result (id item152))) +(recipe r152 (pattern 0 sx152)) +(recipe r152 (pattern 1 sy152)) +(recipe r152 (key (sx152 ing456))) +(recipe r152 (key (sy152 ing160))) +(recipe r152 (key (sx152 ing457))) +(recipe r152 (key (sy152 ing161))) +(recipe r152 (key (sx152 ing458))) +(recipe r152 (key (sy152 ing162))) +(recipe r152 (key (sx152 ing459))) +(recipe r152 (key (sy152 ing163))) +(recipe r152 (key (sx152 ing460))) +(recipe r152 (key (sy152 ing164))) +(recipe r152 (key (sx152 ing461))) +(recipe r152 (key (sy152 ing165))) +(recipe r152 (key (sx152 ing462))) +(recipe r152 (key (sy152 ing166))) +(recipe r152 (key (sx152 ing463))) +(recipe r152 (key (sy152 ing167))) +(recipe r152 (key (sx152 ing464))) +(recipe r152 (key (sy152 ing168))) +(recipe r152 (key (sx152 ing465))) +(recipe r152 (key (sy152 ing169))) +(recipe r152 (key (sx152 ing466))) +(recipe r152 (key (sy152 ing170))) +(recipe r152 (key (sx152 ing467))) +(recipe r152 (key (sy152 ing171))) +(recipe r153 (numIngredients 2)) +(recipe r153 (result (id item153))) +(recipe r153 (pattern 0 sx153)) +(recipe r153 (pattern 1 sy153)) +(recipe r153 (key (sx153 ing459))) +(recipe r153 (key (sy153 ing165))) +(recipe r153 (key (sx153 ing460))) +(recipe r153 (key (sy153 ing166))) +(recipe r153 (key (sx153 ing461))) +(recipe r153 (key (sy153 ing167))) +(recipe r153 (key (sx153 ing462))) +(recipe r153 (key (sy153 ing168))) +(recipe r153 (key (sx153 ing463))) +(recipe r153 (key (sy153 ing169))) +(recipe r153 (key (sx153 ing464))) +(recipe r153 (key (sy153 ing170))) +(recipe r153 (key (sx153 ing465))) +(recipe r153 (key (sy153 ing171))) +(recipe r153 (key (sx153 ing466))) +(recipe r153 (key (sy153 ing172))) +(recipe r153 (key (sx153 ing467))) +(recipe r153 (key (sy153 ing173))) +(recipe r153 (key (sx153 ing468))) +(recipe r153 (key (sy153 ing174))) +(recipe r153 (key (sx153 ing469))) +(recipe r153 (key (sy153 ing175))) +(recipe r153 (key (sx153 ing470))) +(recipe r153 (key (sy153 ing176))) +(recipe r154 (numIngredients 2)) +(recipe r154 (result (id item154))) +(recipe r154 (pattern 0 sx154)) +(recipe r154 (pattern 1 sy154)) +(recipe r154 (key (sx154 ing462))) +(recipe r154 (key (sy154 ing170))) +(recipe r154 (key (sx154 ing463))) +(recipe r154 (key (sy154 ing171))) +(recipe r154 (key (sx154 ing464))) +(recipe r154 (key (sy154 ing172))) +(recipe r154 (key (sx154 ing465))) +(recipe r154 (key (sy154 ing173))) +(recipe r154 (key (sx154 ing466))) +(recipe r154 (key (sy154 ing174))) +(recipe r154 (key (sx154 ing467))) +(recipe r154 (key (sy154 ing175))) +(recipe r154 (key (sx154 ing468))) +(recipe r154 (key (sy154 ing176))) +(recipe r154 (key (sx154 ing469))) +(recipe r154 (key (sy154 ing177))) +(recipe r154 (key (sx154 ing470))) +(recipe r154 (key (sy154 ing178))) +(recipe r154 (key (sx154 ing471))) +(recipe r154 (key (sy154 ing179))) +(recipe r154 (key (sx154 ing472))) +(recipe r154 (key (sy154 ing180))) +(recipe r154 (key (sx154 ing473))) +(recipe r154 (key (sy154 ing181))) +(recipe r155 (numIngredients 2)) +(recipe r155 (result (id item155))) +(recipe r155 (pattern 0 sx155)) +(recipe r155 (pattern 1 sy155)) +(recipe r155 (key (sx155 ing465))) +(recipe r155 (key (sy155 ing175))) +(recipe r155 (key (sx155 ing466))) +(recipe r155 (key (sy155 ing176))) +(recipe r155 (key (sx155 ing467))) +(recipe r155 (key (sy155 ing177))) +(recipe r155 (key (sx155 ing468))) +(recipe r155 (key (sy155 ing178))) +(recipe r155 (key (sx155 ing469))) +(recipe r155 (key (sy155 ing179))) +(recipe r155 (key (sx155 ing470))) +(recipe r155 (key (sy155 ing180))) +(recipe r155 (key (sx155 ing471))) +(recipe r155 (key (sy155 ing181))) +(recipe r155 (key (sx155 ing472))) +(recipe r155 (key (sy155 ing182))) +(recipe r155 (key (sx155 ing473))) +(recipe r155 (key (sy155 ing183))) +(recipe r155 (key (sx155 ing474))) +(recipe r155 (key (sy155 ing184))) +(recipe r155 (key (sx155 ing475))) +(recipe r155 (key (sy155 ing185))) +(recipe r155 (key (sx155 ing476))) +(recipe r155 (key (sy155 ing186))) +(recipe r156 (numIngredients 2)) +(recipe r156 (result (id item156))) +(recipe r156 (pattern 0 sx156)) +(recipe r156 (pattern 1 sy156)) +(recipe r156 (key (sx156 ing468))) +(recipe r156 (key (sy156 ing180))) +(recipe r156 (key (sx156 ing469))) +(recipe r156 (key (sy156 ing181))) +(recipe r156 (key (sx156 ing470))) +(recipe r156 (key (sy156 ing182))) +(recipe r156 (key (sx156 ing471))) +(recipe r156 (key (sy156 ing183))) +(recipe r156 (key (sx156 ing472))) +(recipe r156 (key (sy156 ing184))) +(recipe r156 (key (sx156 ing473))) +(recipe r156 (key (sy156 ing185))) +(recipe r156 (key (sx156 ing474))) +(recipe r156 (key (sy156 ing186))) +(recipe r156 (key (sx156 ing475))) +(recipe r156 (key (sy156 ing187))) +(recipe r156 (key (sx156 ing476))) +(recipe r156 (key (sy156 ing188))) +(recipe r156 (key (sx156 ing477))) +(recipe r156 (key (sy156 ing189))) +(recipe r156 (key (sx156 ing478))) +(recipe r156 (key (sy156 ing190))) +(recipe r156 (key (sx156 ing479))) +(recipe r156 (key (sy156 ing191))) +(recipe r157 (numIngredients 2)) +(recipe r157 (result (id item157))) +(recipe r157 (pattern 0 sx157)) +(recipe r157 (pattern 1 sy157)) +(recipe r157 (key (sx157 ing471))) +(recipe r157 (key (sy157 ing185))) +(recipe r157 (key (sx157 ing472))) +(recipe r157 (key (sy157 ing186))) +(recipe r157 (key (sx157 ing473))) +(recipe r157 (key (sy157 ing187))) +(recipe r157 (key (sx157 ing474))) +(recipe r157 (key (sy157 ing188))) +(recipe r157 (key (sx157 ing475))) +(recipe r157 (key (sy157 ing189))) +(recipe r157 (key (sx157 ing476))) +(recipe r157 (key (sy157 ing190))) +(recipe r157 (key (sx157 ing477))) +(recipe r157 (key (sy157 ing191))) +(recipe r157 (key (sx157 ing478))) +(recipe r157 (key (sy157 ing192))) +(recipe r157 (key (sx157 ing479))) +(recipe r157 (key (sy157 ing193))) +(recipe r157 (key (sx157 ing480))) +(recipe r157 (key (sy157 ing194))) +(recipe r157 (key (sx157 ing481))) +(recipe r157 (key (sy157 ing195))) +(recipe r157 (key (sx157 ing482))) +(recipe r157 (key (sy157 ing196))) +(recipe r158 (numIngredients 2)) +(recipe r158 (result (id item158))) +(recipe r158 (pattern 0 sx158)) +(recipe r158 (pattern 1 sy158)) +(recipe r158 (key (sx158 ing474))) +(recipe r158 (key (sy158 ing190))) +(recipe r158 (key (sx158 ing475))) +(recipe r158 (key (sy158 ing191))) +(recipe r158 (key (sx158 ing476))) +(recipe r158 (key (sy158 ing192))) +(recipe r158 (key (sx158 ing477))) +(recipe r158 (key (sy158 ing193))) +(recipe r158 (key (sx158 ing478))) +(recipe r158 (key (sy158 ing194))) +(recipe r158 (key (sx158 ing479))) +(recipe r158 (key (sy158 ing195))) +(recipe r158 (key (sx158 ing480))) +(recipe r158 (key (sy158 ing196))) +(recipe r158 (key (sx158 ing481))) +(recipe r158 (key (sy158 ing197))) +(recipe r158 (key (sx158 ing482))) +(recipe r158 (key (sy158 ing198))) +(recipe r158 (key (sx158 ing483))) +(recipe r158 (key (sy158 ing199))) +(recipe r158 (key (sx158 ing484))) +(recipe r158 (key (sy158 ing200))) +(recipe r158 (key (sx158 ing485))) +(recipe r158 (key (sy158 ing201))) +(recipe r159 (numIngredients 2)) +(recipe r159 (result (id item159))) +(recipe r159 (pattern 0 sx159)) +(recipe r159 (pattern 1 sy159)) +(recipe r159 (key (sx159 ing477))) +(recipe r159 (key (sy159 ing195))) +(recipe r159 (key (sx159 ing478))) +(recipe r159 (key (sy159 ing196))) +(recipe r159 (key (sx159 ing479))) +(recipe r159 (key (sy159 ing197))) +(recipe r159 (key (sx159 ing480))) +(recipe r159 (key (sy159 ing198))) +(recipe r159 (key (sx159 ing481))) +(recipe r159 (key (sy159 ing199))) +(recipe r159 (key (sx159 ing482))) +(recipe r159 (key (sy159 ing200))) +(recipe r159 (key (sx159 ing483))) +(recipe r159 (key (sy159 ing201))) +(recipe r159 (key (sx159 ing484))) +(recipe r159 (key (sy159 ing202))) +(recipe r159 (key (sx159 ing485))) +(recipe r159 (key (sy159 ing203))) +(recipe r159 (key (sx159 ing486))) +(recipe r159 (key (sy159 ing204))) +(recipe r159 (key (sx159 ing487))) +(recipe r159 (key (sy159 ing205))) +(recipe r159 (key (sx159 ing488))) +(recipe r159 (key (sy159 ing206))) +(recipe r160 (numIngredients 2)) +(recipe r160 (result (id item160))) +(recipe r160 (pattern 0 sx160)) +(recipe r160 (pattern 1 sy160)) +(recipe r160 (key (sx160 ing480))) +(recipe r160 (key (sy160 ing200))) +(recipe r160 (key (sx160 ing481))) +(recipe r160 (key (sy160 ing201))) +(recipe r160 (key (sx160 ing482))) +(recipe r160 (key (sy160 ing202))) +(recipe r160 (key (sx160 ing483))) +(recipe r160 (key (sy160 ing203))) +(recipe r160 (key (sx160 ing484))) +(recipe r160 (key (sy160 ing204))) +(recipe r160 (key (sx160 ing485))) +(recipe r160 (key (sy160 ing205))) +(recipe r160 (key (sx160 ing486))) +(recipe r160 (key (sy160 ing206))) +(recipe r160 (key (sx160 ing487))) +(recipe r160 (key (sy160 ing207))) +(recipe r160 (key (sx160 ing488))) +(recipe r160 (key (sy160 ing208))) +(recipe r160 (key (sx160 ing489))) +(recipe r160 (key (sy160 ing209))) +(recipe r160 (key (sx160 ing490))) +(recipe r160 (key (sy160 ing210))) +(recipe r160 (key (sx160 ing491))) +(recipe r160 (key (sy160 ing211))) +(recipe r161 (numIngredients 2)) +(recipe r161 (result (id item161))) +(recipe r161 (pattern 0 sx161)) +(recipe r161 (pattern 1 sy161)) +(recipe r161 (key (sx161 ing483))) +(recipe r161 (key (sy161 ing205))) +(recipe r161 (key (sx161 ing484))) +(recipe r161 (key (sy161 ing206))) +(recipe r161 (key (sx161 ing485))) +(recipe r161 (key (sy161 ing207))) +(recipe r161 (key (sx161 ing486))) +(recipe r161 (key (sy161 ing208))) +(recipe r161 (key (sx161 ing487))) +(recipe r161 (key (sy161 ing209))) +(recipe r161 (key (sx161 ing488))) +(recipe r161 (key (sy161 ing210))) +(recipe r161 (key (sx161 ing489))) +(recipe r161 (key (sy161 ing211))) +(recipe r161 (key (sx161 ing490))) +(recipe r161 (key (sy161 ing212))) +(recipe r161 (key (sx161 ing491))) +(recipe r161 (key (sy161 ing213))) +(recipe r161 (key (sx161 ing492))) +(recipe r161 (key (sy161 ing214))) +(recipe r161 (key (sx161 ing493))) +(recipe r161 (key (sy161 ing215))) +(recipe r161 (key (sx161 ing494))) +(recipe r161 (key (sy161 ing216))) +(recipe r162 (numIngredients 2)) +(recipe r162 (result (id item162))) +(recipe r162 (pattern 0 sx162)) +(recipe r162 (pattern 1 sy162)) +(recipe r162 (key (sx162 ing486))) +(recipe r162 (key (sy162 ing210))) +(recipe r162 (key (sx162 ing487))) +(recipe r162 (key (sy162 ing211))) +(recipe r162 (key (sx162 ing488))) +(recipe r162 (key (sy162 ing212))) +(recipe r162 (key (sx162 ing489))) +(recipe r162 (key (sy162 ing213))) +(recipe r162 (key (sx162 ing490))) +(recipe r162 (key (sy162 ing214))) +(recipe r162 (key (sx162 ing491))) +(recipe r162 (key (sy162 ing215))) +(recipe r162 (key (sx162 ing492))) +(recipe r162 (key (sy162 ing216))) +(recipe r162 (key (sx162 ing493))) +(recipe r162 (key (sy162 ing217))) +(recipe r162 (key (sx162 ing494))) +(recipe r162 (key (sy162 ing218))) +(recipe r162 (key (sx162 ing495))) +(recipe r162 (key (sy162 ing219))) +(recipe r162 (key (sx162 ing496))) +(recipe r162 (key (sy162 ing220))) +(recipe r162 (key (sx162 ing497))) +(recipe r162 (key (sy162 ing221))) +(recipe r163 (numIngredients 2)) +(recipe r163 (result (id item163))) +(recipe r163 (pattern 0 sx163)) +(recipe r163 (pattern 1 sy163)) +(recipe r163 (key (sx163 ing489))) +(recipe r163 (key (sy163 ing215))) +(recipe r163 (key (sx163 ing490))) +(recipe r163 (key (sy163 ing216))) +(recipe r163 (key (sx163 ing491))) +(recipe r163 (key (sy163 ing217))) +(recipe r163 (key (sx163 ing492))) +(recipe r163 (key (sy163 ing218))) +(recipe r163 (key (sx163 ing493))) +(recipe r163 (key (sy163 ing219))) +(recipe r163 (key (sx163 ing494))) +(recipe r163 (key (sy163 ing220))) +(recipe r163 (key (sx163 ing495))) +(recipe r163 (key (sy163 ing221))) +(recipe r163 (key (sx163 ing496))) +(recipe r163 (key (sy163 ing222))) +(recipe r163 (key (sx163 ing497))) +(recipe r163 (key (sy163 ing223))) +(recipe r163 (key (sx163 ing498))) +(recipe r163 (key (sy163 ing224))) +(recipe r163 (key (sx163 ing499))) +(recipe r163 (key (sy163 ing225))) +(recipe r163 (key (sx163 ing500))) +(recipe r163 (key (sy163 ing226))) +(recipe r164 (numIngredients 2)) +(recipe r164 (result (id item164))) +(recipe r164 (pattern 0 sx164)) +(recipe r164 (pattern 1 sy164)) +(recipe r164 (key (sx164 ing492))) +(recipe r164 (key (sy164 ing220))) +(recipe r164 (key (sx164 ing493))) +(recipe r164 (key (sy164 ing221))) +(recipe r164 (key (sx164 ing494))) +(recipe r164 (key (sy164 ing222))) +(recipe r164 (key (sx164 ing495))) +(recipe r164 (key (sy164 ing223))) +(recipe r164 (key (sx164 ing496))) +(recipe r164 (key (sy164 ing224))) +(recipe r164 (key (sx164 ing497))) +(recipe r164 (key (sy164 ing225))) +(recipe r164 (key (sx164 ing498))) +(recipe r164 (key (sy164 ing226))) +(recipe r164 (key (sx164 ing499))) +(recipe r164 (key (sy164 ing227))) +(recipe r164 (key (sx164 ing500))) +(recipe r164 (key (sy164 ing228))) +(recipe r164 (key (sx164 ing501))) +(recipe r164 (key (sy164 ing229))) +(recipe r164 (key (sx164 ing502))) +(recipe r164 (key (sy164 ing230))) +(recipe r164 (key (sx164 ing503))) +(recipe r164 (key (sy164 ing231))) +(recipe r165 (numIngredients 2)) +(recipe r165 (result (id item165))) +(recipe r165 (pattern 0 sx165)) +(recipe r165 (pattern 1 sy165)) +(recipe r165 (key (sx165 ing495))) +(recipe r165 (key (sy165 ing225))) +(recipe r165 (key (sx165 ing496))) +(recipe r165 (key (sy165 ing226))) +(recipe r165 (key (sx165 ing497))) +(recipe r165 (key (sy165 ing227))) +(recipe r165 (key (sx165 ing498))) +(recipe r165 (key (sy165 ing228))) +(recipe r165 (key (sx165 ing499))) +(recipe r165 (key (sy165 ing229))) +(recipe r165 (key (sx165 ing500))) +(recipe r165 (key (sy165 ing230))) +(recipe r165 (key (sx165 ing501))) +(recipe r165 (key (sy165 ing231))) +(recipe r165 (key (sx165 ing502))) +(recipe r165 (key (sy165 ing232))) +(recipe r165 (key (sx165 ing503))) +(recipe r165 (key (sy165 ing233))) +(recipe r165 (key (sx165 ing504))) +(recipe r165 (key (sy165 ing234))) +(recipe r165 (key (sx165 ing505))) +(recipe r165 (key (sy165 ing235))) +(recipe r165 (key (sx165 ing506))) +(recipe r165 (key (sy165 ing236))) +(recipe r166 (numIngredients 2)) +(recipe r166 (result (id item166))) +(recipe r166 (pattern 0 sx166)) +(recipe r166 (pattern 1 sy166)) +(recipe r166 (key (sx166 ing498))) +(recipe r166 (key (sy166 ing230))) +(recipe r166 (key (sx166 ing499))) +(recipe r166 (key (sy166 ing231))) +(recipe r166 (key (sx166 ing500))) +(recipe r166 (key (sy166 ing232))) +(recipe r166 (key (sx166 ing501))) +(recipe r166 (key (sy166 ing233))) +(recipe r166 (key (sx166 ing502))) +(recipe r166 (key (sy166 ing234))) +(recipe r166 (key (sx166 ing503))) +(recipe r166 (key (sy166 ing235))) +(recipe r166 (key (sx166 ing504))) +(recipe r166 (key (sy166 ing236))) +(recipe r166 (key (sx166 ing505))) +(recipe r166 (key (sy166 ing237))) +(recipe r166 (key (sx166 ing506))) +(recipe r166 (key (sy166 ing238))) +(recipe r166 (key (sx166 ing507))) +(recipe r166 (key (sy166 ing239))) +(recipe r166 (key (sx166 ing508))) +(recipe r166 (key (sy166 ing240))) +(recipe r166 (key (sx166 ing509))) +(recipe r166 (key (sy166 ing241))) +(recipe r167 (numIngredients 2)) +(recipe r167 (result (id item167))) +(recipe r167 (pattern 0 sx167)) +(recipe r167 (pattern 1 sy167)) +(recipe r167 (key (sx167 ing501))) +(recipe r167 (key (sy167 ing235))) +(recipe r167 (key (sx167 ing502))) +(recipe r167 (key (sy167 ing236))) +(recipe r167 (key (sx167 ing503))) +(recipe r167 (key (sy167 ing237))) +(recipe r167 (key (sx167 ing504))) +(recipe r167 (key (sy167 ing238))) +(recipe r167 (key (sx167 ing505))) +(recipe r167 (key (sy167 ing239))) +(recipe r167 (key (sx167 ing506))) +(recipe r167 (key (sy167 ing240))) +(recipe r167 (key (sx167 ing507))) +(recipe r167 (key (sy167 ing241))) +(recipe r167 (key (sx167 ing508))) +(recipe r167 (key (sy167 ing242))) +(recipe r167 (key (sx167 ing509))) +(recipe r167 (key (sy167 ing243))) +(recipe r167 (key (sx167 ing510))) +(recipe r167 (key (sy167 ing244))) +(recipe r167 (key (sx167 ing511))) +(recipe r167 (key (sy167 ing245))) +(recipe r167 (key (sx167 ing512))) +(recipe r167 (key (sy167 ing246))) +(recipe r168 (numIngredients 2)) +(recipe r168 (result (id item168))) +(recipe r168 (pattern 0 sx168)) +(recipe r168 (pattern 1 sy168)) +(recipe r168 (key (sx168 ing504))) +(recipe r168 (key (sy168 ing240))) +(recipe r168 (key (sx168 ing505))) +(recipe r168 (key (sy168 ing241))) +(recipe r168 (key (sx168 ing506))) +(recipe r168 (key (sy168 ing242))) +(recipe r168 (key (sx168 ing507))) +(recipe r168 (key (sy168 ing243))) +(recipe r168 (key (sx168 ing508))) +(recipe r168 (key (sy168 ing244))) +(recipe r168 (key (sx168 ing509))) +(recipe r168 (key (sy168 ing245))) +(recipe r168 (key (sx168 ing510))) +(recipe r168 (key (sy168 ing246))) +(recipe r168 (key (sx168 ing511))) +(recipe r168 (key (sy168 ing247))) +(recipe r168 (key (sx168 ing512))) +(recipe r168 (key (sy168 ing248))) +(recipe r168 (key (sx168 ing513))) +(recipe r168 (key (sy168 ing249))) +(recipe r168 (key (sx168 ing514))) +(recipe r168 (key (sy168 ing250))) +(recipe r168 (key (sx168 ing515))) +(recipe r168 (key (sy168 ing251))) +(recipe r169 (numIngredients 2)) +(recipe r169 (result (id item169))) +(recipe r169 (pattern 0 sx169)) +(recipe r169 (pattern 1 sy169)) +(recipe r169 (key (sx169 ing507))) +(recipe r169 (key (sy169 ing245))) +(recipe r169 (key (sx169 ing508))) +(recipe r169 (key (sy169 ing246))) +(recipe r169 (key (sx169 ing509))) +(recipe r169 (key (sy169 ing247))) +(recipe r169 (key (sx169 ing510))) +(recipe r169 (key (sy169 ing248))) +(recipe r169 (key (sx169 ing511))) +(recipe r169 (key (sy169 ing249))) +(recipe r169 (key (sx169 ing512))) +(recipe r169 (key (sy169 ing250))) +(recipe r169 (key (sx169 ing513))) +(recipe r169 (key (sy169 ing251))) +(recipe r169 (key (sx169 ing514))) +(recipe r169 (key (sy169 ing252))) +(recipe r169 (key (sx169 ing515))) +(recipe r169 (key (sy169 ing253))) +(recipe r169 (key (sx169 ing516))) +(recipe r169 (key (sy169 ing254))) +(recipe r169 (key (sx169 ing517))) +(recipe r169 (key (sy169 ing255))) +(recipe r169 (key (sx169 ing518))) +(recipe r169 (key (sy169 ing256))) +(recipe r170 (numIngredients 2)) +(recipe r170 (result (id item170))) +(recipe r170 (pattern 0 sx170)) +(recipe r170 (pattern 1 sy170)) +(recipe r170 (key (sx170 ing510))) +(recipe r170 (key (sy170 ing250))) +(recipe r170 (key (sx170 ing511))) +(recipe r170 (key (sy170 ing251))) +(recipe r170 (key (sx170 ing512))) +(recipe r170 (key (sy170 ing252))) +(recipe r170 (key (sx170 ing513))) +(recipe r170 (key (sy170 ing253))) +(recipe r170 (key (sx170 ing514))) +(recipe r170 (key (sy170 ing254))) +(recipe r170 (key (sx170 ing515))) +(recipe r170 (key (sy170 ing255))) +(recipe r170 (key (sx170 ing516))) +(recipe r170 (key (sy170 ing256))) +(recipe r170 (key (sx170 ing517))) +(recipe r170 (key (sy170 ing257))) +(recipe r170 (key (sx170 ing518))) +(recipe r170 (key (sy170 ing258))) +(recipe r170 (key (sx170 ing519))) +(recipe r170 (key (sy170 ing259))) +(recipe r170 (key (sx170 ing520))) +(recipe r170 (key (sy170 ing260))) +(recipe r170 (key (sx170 ing521))) +(recipe r170 (key (sy170 ing261))) +(recipe r171 (numIngredients 2)) +(recipe r171 (result (id item171))) +(recipe r171 (pattern 0 sx171)) +(recipe r171 (pattern 1 sy171)) +(recipe r171 (key (sx171 ing513))) +(recipe r171 (key (sy171 ing255))) +(recipe r171 (key (sx171 ing514))) +(recipe r171 (key (sy171 ing256))) +(recipe r171 (key (sx171 ing515))) +(recipe r171 (key (sy171 ing257))) +(recipe r171 (key (sx171 ing516))) +(recipe r171 (key (sy171 ing258))) +(recipe r171 (key (sx171 ing517))) +(recipe r171 (key (sy171 ing259))) +(recipe r171 (key (sx171 ing518))) +(recipe r171 (key (sy171 ing260))) +(recipe r171 (key (sx171 ing519))) +(recipe r171 (key (sy171 ing261))) +(recipe r171 (key (sx171 ing520))) +(recipe r171 (key (sy171 ing262))) +(recipe r171 (key (sx171 ing521))) +(recipe r171 (key (sy171 ing263))) +(recipe r171 (key (sx171 ing522))) +(recipe r171 (key (sy171 ing264))) +(recipe r171 (key (sx171 ing523))) +(recipe r171 (key (sy171 ing265))) +(recipe r171 (key (sx171 ing524))) +(recipe r171 (key (sy171 ing266))) +(recipe r172 (numIngredients 2)) +(recipe r172 (result (id item172))) +(recipe r172 (pattern 0 sx172)) +(recipe r172 (pattern 1 sy172)) +(recipe r172 (key (sx172 ing516))) +(recipe r172 (key (sy172 ing260))) +(recipe r172 (key (sx172 ing517))) +(recipe r172 (key (sy172 ing261))) +(recipe r172 (key (sx172 ing518))) +(recipe r172 (key (sy172 ing262))) +(recipe r172 (key (sx172 ing519))) +(recipe r172 (key (sy172 ing263))) +(recipe r172 (key (sx172 ing520))) +(recipe r172 (key (sy172 ing264))) +(recipe r172 (key (sx172 ing521))) +(recipe r172 (key (sy172 ing265))) +(recipe r172 (key (sx172 ing522))) +(recipe r172 (key (sy172 ing266))) +(recipe r172 (key (sx172 ing523))) +(recipe r172 (key (sy172 ing267))) +(recipe r172 (key (sx172 ing524))) +(recipe r172 (key (sy172 ing268))) +(recipe r172 (key (sx172 ing525))) +(recipe r172 (key (sy172 ing269))) +(recipe r172 (key (sx172 ing526))) +(recipe r172 (key (sy172 ing270))) +(recipe r172 (key (sx172 ing527))) +(recipe r172 (key (sy172 ing271))) +(recipe r173 (numIngredients 2)) +(recipe r173 (result (id item173))) +(recipe r173 (pattern 0 sx173)) +(recipe r173 (pattern 1 sy173)) +(recipe r173 (key (sx173 ing519))) +(recipe r173 (key (sy173 ing265))) +(recipe r173 (key (sx173 ing520))) +(recipe r173 (key (sy173 ing266))) +(recipe r173 (key (sx173 ing521))) +(recipe r173 (key (sy173 ing267))) +(recipe r173 (key (sx173 ing522))) +(recipe r173 (key (sy173 ing268))) +(recipe r173 (key (sx173 ing523))) +(recipe r173 (key (sy173 ing269))) +(recipe r173 (key (sx173 ing524))) +(recipe r173 (key (sy173 ing270))) +(recipe r173 (key (sx173 ing525))) +(recipe r173 (key (sy173 ing271))) +(recipe r173 (key (sx173 ing526))) +(recipe r173 (key (sy173 ing272))) +(recipe r173 (key (sx173 ing527))) +(recipe r173 (key (sy173 ing273))) +(recipe r173 (key (sx173 ing528))) +(recipe r173 (key (sy173 ing274))) +(recipe r173 (key (sx173 ing529))) +(recipe r173 (key (sy173 ing275))) +(recipe r173 (key (sx173 ing530))) +(recipe r173 (key (sy173 ing276))) +(recipe r174 (numIngredients 2)) +(recipe r174 (result (id item174))) +(recipe r174 (pattern 0 sx174)) +(recipe r174 (pattern 1 sy174)) +(recipe r174 (key (sx174 ing522))) +(recipe r174 (key (sy174 ing270))) +(recipe r174 (key (sx174 ing523))) +(recipe r174 (key (sy174 ing271))) +(recipe r174 (key (sx174 ing524))) +(recipe r174 (key (sy174 ing272))) +(recipe r174 (key (sx174 ing525))) +(recipe r174 (key (sy174 ing273))) +(recipe r174 (key (sx174 ing526))) +(recipe r174 (key (sy174 ing274))) +(recipe r174 (key (sx174 ing527))) +(recipe r174 (key (sy174 ing275))) +(recipe r174 (key (sx174 ing528))) +(recipe r174 (key (sy174 ing276))) +(recipe r174 (key (sx174 ing529))) +(recipe r174 (key (sy174 ing277))) +(recipe r174 (key (sx174 ing530))) +(recipe r174 (key (sy174 ing278))) +(recipe r174 (key (sx174 ing531))) +(recipe r174 (key (sy174 ing279))) +(recipe r174 (key (sx174 ing532))) +(recipe r174 (key (sy174 ing280))) +(recipe r174 (key (sx174 ing533))) +(recipe r174 (key (sy174 ing281))) +(recipe r175 (numIngredients 2)) +(recipe r175 (result (id item175))) +(recipe r175 (pattern 0 sx175)) +(recipe r175 (pattern 1 sy175)) +(recipe r175 (key (sx175 ing525))) +(recipe r175 (key (sy175 ing275))) +(recipe r175 (key (sx175 ing526))) +(recipe r175 (key (sy175 ing276))) +(recipe r175 (key (sx175 ing527))) +(recipe r175 (key (sy175 ing277))) +(recipe r175 (key (sx175 ing528))) +(recipe r175 (key (sy175 ing278))) +(recipe r175 (key (sx175 ing529))) +(recipe r175 (key (sy175 ing279))) +(recipe r175 (key (sx175 ing530))) +(recipe r175 (key (sy175 ing280))) +(recipe r175 (key (sx175 ing531))) +(recipe r175 (key (sy175 ing281))) +(recipe r175 (key (sx175 ing532))) +(recipe r175 (key (sy175 ing282))) +(recipe r175 (key (sx175 ing533))) +(recipe r175 (key (sy175 ing283))) +(recipe r175 (key (sx175 ing534))) +(recipe r175 (key (sy175 ing284))) +(recipe r175 (key (sx175 ing535))) +(recipe r175 (key (sy175 ing285))) +(recipe r175 (key (sx175 ing536))) +(recipe r175 (key (sy175 ing286))) +(recipe r176 (numIngredients 2)) +(recipe r176 (result (id item176))) +(recipe r176 (pattern 0 sx176)) +(recipe r176 (pattern 1 sy176)) +(recipe r176 (key (sx176 ing528))) +(recipe r176 (key (sy176 ing280))) +(recipe r176 (key (sx176 ing529))) +(recipe r176 (key (sy176 ing281))) +(recipe r176 (key (sx176 ing530))) +(recipe r176 (key (sy176 ing282))) +(recipe r176 (key (sx176 ing531))) +(recipe r176 (key (sy176 ing283))) +(recipe r176 (key (sx176 ing532))) +(recipe r176 (key (sy176 ing284))) +(recipe r176 (key (sx176 ing533))) +(recipe r176 (key (sy176 ing285))) +(recipe r176 (key (sx176 ing534))) +(recipe r176 (key (sy176 ing286))) +(recipe r176 (key (sx176 ing535))) +(recipe r176 (key (sy176 ing287))) +(recipe r176 (key (sx176 ing536))) +(recipe r176 (key (sy176 ing288))) +(recipe r176 (key (sx176 ing537))) +(recipe r176 (key (sy176 ing289))) +(recipe r176 (key (sx176 ing538))) +(recipe r176 (key (sy176 ing290))) +(recipe r176 (key (sx176 ing539))) +(recipe r176 (key (sy176 ing291))) +(recipe r177 (numIngredients 2)) +(recipe r177 (result (id item177))) +(recipe r177 (pattern 0 sx177)) +(recipe r177 (pattern 1 sy177)) +(recipe r177 (key (sx177 ing531))) +(recipe r177 (key (sy177 ing285))) +(recipe r177 (key (sx177 ing532))) +(recipe r177 (key (sy177 ing286))) +(recipe r177 (key (sx177 ing533))) +(recipe r177 (key (sy177 ing287))) +(recipe r177 (key (sx177 ing534))) +(recipe r177 (key (sy177 ing288))) +(recipe r177 (key (sx177 ing535))) +(recipe r177 (key (sy177 ing289))) +(recipe r177 (key (sx177 ing536))) +(recipe r177 (key (sy177 ing290))) +(recipe r177 (key (sx177 ing537))) +(recipe r177 (key (sy177 ing291))) +(recipe r177 (key (sx177 ing538))) +(recipe r177 (key (sy177 ing292))) +(recipe r177 (key (sx177 ing539))) +(recipe r177 (key (sy177 ing293))) +(recipe r177 (key (sx177 ing540))) +(recipe r177 (key (sy177 ing294))) +(recipe r177 (key (sx177 ing541))) +(recipe r177 (key (sy177 ing295))) +(recipe r177 (key (sx177 ing542))) +(recipe r177 (key (sy177 ing296))) +(recipe r178 (numIngredients 2)) +(recipe r178 (result (id item178))) +(recipe r178 (pattern 0 sx178)) +(recipe r178 (pattern 1 sy178)) +(recipe r178 (key (sx178 ing534))) +(recipe r178 (key (sy178 ing290))) +(recipe r178 (key (sx178 ing535))) +(recipe r178 (key (sy178 ing291))) +(recipe r178 (key (sx178 ing536))) +(recipe r178 (key (sy178 ing292))) +(recipe r178 (key (sx178 ing537))) +(recipe r178 (key (sy178 ing293))) +(recipe r178 (key (sx178 ing538))) +(recipe r178 (key (sy178 ing294))) +(recipe r178 (key (sx178 ing539))) +(recipe r178 (key (sy178 ing295))) +(recipe r178 (key (sx178 ing540))) +(recipe r178 (key (sy178 ing296))) +(recipe r178 (key (sx178 ing541))) +(recipe r178 (key (sy178 ing297))) +(recipe r178 (key (sx178 ing542))) +(recipe r178 (key (sy178 ing298))) +(recipe r178 (key (sx178 ing543))) +(recipe r178 (key (sy178 ing299))) +(recipe r178 (key (sx178 ing544))) +(recipe r178 (key (sy178 ing300))) +(recipe r178 (key (sx178 ing545))) +(recipe r178 (key (sy178 ing301))) +(recipe r179 (numIngredients 2)) +(recipe r179 (result (id item179))) +(recipe r179 (pattern 0 sx179)) +(recipe r179 (pattern 1 sy179)) +(recipe r179 (key (sx179 ing537))) +(recipe r179 (key (sy179 ing295))) +(recipe r179 (key (sx179 ing538))) +(recipe r179 (key (sy179 ing296))) +(recipe r179 (key (sx179 ing539))) +(recipe r179 (key (sy179 ing297))) +(recipe r179 (key (sx179 ing540))) +(recipe r179 (key (sy179 ing298))) +(recipe r179 (key (sx179 ing541))) +(recipe r179 (key (sy179 ing299))) +(recipe r179 (key (sx179 ing542))) +(recipe r179 (key (sy179 ing300))) +(recipe r179 (key (sx179 ing543))) +(recipe r179 (key (sy179 ing301))) +(recipe r179 (key (sx179 ing544))) +(recipe r179 (key (sy179 ing302))) +(recipe r179 (key (sx179 ing545))) +(recipe r179 (key (sy179 ing303))) +(recipe r179 (key (sx179 ing546))) +(recipe r179 (key (sy179 ing304))) +(recipe r179 (key (sx179 ing547))) +(recipe r179 (key (sy179 ing305))) +(recipe r179 (key (sx179 ing548))) +(recipe r179 (key (sy179 ing306))) +(recipe r180 (numIngredients 2)) +(recipe r180 (result (id item180))) +(recipe r180 (pattern 0 sx180)) +(recipe r180 (pattern 1 sy180)) +(recipe r180 (key (sx180 ing540))) +(recipe r180 (key (sy180 ing300))) +(recipe r180 (key (sx180 ing541))) +(recipe r180 (key (sy180 ing301))) +(recipe r180 (key (sx180 ing542))) +(recipe r180 (key (sy180 ing302))) +(recipe r180 (key (sx180 ing543))) +(recipe r180 (key (sy180 ing303))) +(recipe r180 (key (sx180 ing544))) +(recipe r180 (key (sy180 ing304))) +(recipe r180 (key (sx180 ing545))) +(recipe r180 (key (sy180 ing305))) +(recipe r180 (key (sx180 ing546))) +(recipe r180 (key (sy180 ing306))) +(recipe r180 (key (sx180 ing547))) +(recipe r180 (key (sy180 ing307))) +(recipe r180 (key (sx180 ing548))) +(recipe r180 (key (sy180 ing308))) +(recipe r180 (key (sx180 ing549))) +(recipe r180 (key (sy180 ing309))) +(recipe r180 (key (sx180 ing550))) +(recipe r180 (key (sy180 ing310))) +(recipe r180 (key (sx180 ing551))) +(recipe r180 (key (sy180 ing311))) +(recipe r181 (numIngredients 2)) +(recipe r181 (result (id item181))) +(recipe r181 (pattern 0 sx181)) +(recipe r181 (pattern 1 sy181)) +(recipe r181 (key (sx181 ing543))) +(recipe r181 (key (sy181 ing305))) +(recipe r181 (key (sx181 ing544))) +(recipe r181 (key (sy181 ing306))) +(recipe r181 (key (sx181 ing545))) +(recipe r181 (key (sy181 ing307))) +(recipe r181 (key (sx181 ing546))) +(recipe r181 (key (sy181 ing308))) +(recipe r181 (key (sx181 ing547))) +(recipe r181 (key (sy181 ing309))) +(recipe r181 (key (sx181 ing548))) +(recipe r181 (key (sy181 ing310))) +(recipe r181 (key (sx181 ing549))) +(recipe r181 (key (sy181 ing311))) +(recipe r181 (key (sx181 ing550))) +(recipe r181 (key (sy181 ing312))) +(recipe r181 (key (sx181 ing551))) +(recipe r181 (key (sy181 ing313))) +(recipe r181 (key (sx181 ing552))) +(recipe r181 (key (sy181 ing314))) +(recipe r181 (key (sx181 ing553))) +(recipe r181 (key (sy181 ing315))) +(recipe r181 (key (sx181 ing554))) +(recipe r181 (key (sy181 ing316))) +(recipe r182 (numIngredients 2)) +(recipe r182 (result (id item182))) +(recipe r182 (pattern 0 sx182)) +(recipe r182 (pattern 1 sy182)) +(recipe r182 (key (sx182 ing546))) +(recipe r182 (key (sy182 ing310))) +(recipe r182 (key (sx182 ing547))) +(recipe r182 (key (sy182 ing311))) +(recipe r182 (key (sx182 ing548))) +(recipe r182 (key (sy182 ing312))) +(recipe r182 (key (sx182 ing549))) +(recipe r182 (key (sy182 ing313))) +(recipe r182 (key (sx182 ing550))) +(recipe r182 (key (sy182 ing314))) +(recipe r182 (key (sx182 ing551))) +(recipe r182 (key (sy182 ing315))) +(recipe r182 (key (sx182 ing552))) +(recipe r182 (key (sy182 ing316))) +(recipe r182 (key (sx182 ing553))) +(recipe r182 (key (sy182 ing317))) +(recipe r182 (key (sx182 ing554))) +(recipe r182 (key (sy182 ing318))) +(recipe r182 (key (sx182 ing555))) +(recipe r182 (key (sy182 ing319))) +(recipe r182 (key (sx182 ing556))) +(recipe r182 (key (sy182 ing320))) +(recipe r182 (key (sx182 ing557))) +(recipe r182 (key (sy182 ing321))) +(recipe r183 (numIngredients 2)) +(recipe r183 (result (id item183))) +(recipe r183 (pattern 0 sx183)) +(recipe r183 (pattern 1 sy183)) +(recipe r183 (key (sx183 ing549))) +(recipe r183 (key (sy183 ing315))) +(recipe r183 (key (sx183 ing550))) +(recipe r183 (key (sy183 ing316))) +(recipe r183 (key (sx183 ing551))) +(recipe r183 (key (sy183 ing317))) +(recipe r183 (key (sx183 ing552))) +(recipe r183 (key (sy183 ing318))) +(recipe r183 (key (sx183 ing553))) +(recipe r183 (key (sy183 ing319))) +(recipe r183 (key (sx183 ing554))) +(recipe r183 (key (sy183 ing320))) +(recipe r183 (key (sx183 ing555))) +(recipe r183 (key (sy183 ing321))) +(recipe r183 (key (sx183 ing556))) +(recipe r183 (key (sy183 ing322))) +(recipe r183 (key (sx183 ing557))) +(recipe r183 (key (sy183 ing323))) +(recipe r183 (key (sx183 ing558))) +(recipe r183 (key (sy183 ing324))) +(recipe r183 (key (sx183 ing559))) +(recipe r183 (key (sy183 ing325))) +(recipe r183 (key (sx183 ing560))) +(recipe r183 (key (sy183 ing326))) +(recipe r184 (numIngredients 2)) +(recipe r184 (result (id item184))) +(recipe r184 (pattern 0 sx184)) +(recipe r184 (pattern 1 sy184)) +(recipe r184 (key (sx184 ing552))) +(recipe r184 (key (sy184 ing320))) +(recipe r184 (key (sx184 ing553))) +(recipe r184 (key (sy184 ing321))) +(recipe r184 (key (sx184 ing554))) +(recipe r184 (key (sy184 ing322))) +(recipe r184 (key (sx184 ing555))) +(recipe r184 (key (sy184 ing323))) +(recipe r184 (key (sx184 ing556))) +(recipe r184 (key (sy184 ing324))) +(recipe r184 (key (sx184 ing557))) +(recipe r184 (key (sy184 ing325))) +(recipe r184 (key (sx184 ing558))) +(recipe r184 (key (sy184 ing326))) +(recipe r184 (key (sx184 ing559))) +(recipe r184 (key (sy184 ing327))) +(recipe r184 (key (sx184 ing560))) +(recipe r184 (key (sy184 ing328))) +(recipe r184 (key (sx184 ing561))) +(recipe r184 (key (sy184 ing329))) +(recipe r184 (key (sx184 ing562))) +(recipe r184 (key (sy184 ing330))) +(recipe r184 (key (sx184 ing563))) +(recipe r184 (key (sy184 ing331))) +(recipe r185 (numIngredients 2)) +(recipe r185 (result (id item185))) +(recipe r185 (pattern 0 sx185)) +(recipe r185 (pattern 1 sy185)) +(recipe r185 (key (sx185 ing555))) +(recipe r185 (key (sy185 ing325))) +(recipe r185 (key (sx185 ing556))) +(recipe r185 (key (sy185 ing326))) +(recipe r185 (key (sx185 ing557))) +(recipe r185 (key (sy185 ing327))) +(recipe r185 (key (sx185 ing558))) +(recipe r185 (key (sy185 ing328))) +(recipe r185 (key (sx185 ing559))) +(recipe r185 (key (sy185 ing329))) +(recipe r185 (key (sx185 ing560))) +(recipe r185 (key (sy185 ing330))) +(recipe r185 (key (sx185 ing561))) +(recipe r185 (key (sy185 ing331))) +(recipe r185 (key (sx185 ing562))) +(recipe r185 (key (sy185 ing332))) +(recipe r185 (key (sx185 ing563))) +(recipe r185 (key (sy185 ing333))) +(recipe r185 (key (sx185 ing564))) +(recipe r185 (key (sy185 ing334))) +(recipe r185 (key (sx185 ing565))) +(recipe r185 (key (sy185 ing335))) +(recipe r185 (key (sx185 ing566))) +(recipe r185 (key (sy185 ing336))) +(recipe r186 (numIngredients 2)) +(recipe r186 (result (id item186))) +(recipe r186 (pattern 0 sx186)) +(recipe r186 (pattern 1 sy186)) +(recipe r186 (key (sx186 ing558))) +(recipe r186 (key (sy186 ing330))) +(recipe r186 (key (sx186 ing559))) +(recipe r186 (key (sy186 ing331))) +(recipe r186 (key (sx186 ing560))) +(recipe r186 (key (sy186 ing332))) +(recipe r186 (key (sx186 ing561))) +(recipe r186 (key (sy186 ing333))) +(recipe r186 (key (sx186 ing562))) +(recipe r186 (key (sy186 ing334))) +(recipe r186 (key (sx186 ing563))) +(recipe r186 (key (sy186 ing335))) +(recipe r186 (key (sx186 ing564))) +(recipe r186 (key (sy186 ing336))) +(recipe r186 (key (sx186 ing565))) +(recipe r186 (key (sy186 ing337))) +(recipe r186 (key (sx186 ing566))) +(recipe r186 (key (sy186 ing338))) +(recipe r186 (key (sx186 ing567))) +(recipe r186 (key (sy186 ing339))) +(recipe r186 (key (sx186 ing568))) +(recipe r186 (key (sy186 ing340))) +(recipe r186 (key (sx186 ing569))) +(recipe r186 (key (sy186 ing341))) +(recipe r187 (numIngredients 2)) +(recipe r187 (result (id item187))) +(recipe r187 (pattern 0 sx187)) +(recipe r187 (pattern 1 sy187)) +(recipe r187 (key (sx187 ing561))) +(recipe r187 (key (sy187 ing335))) +(recipe r187 (key (sx187 ing562))) +(recipe r187 (key (sy187 ing336))) +(recipe r187 (key (sx187 ing563))) +(recipe r187 (key (sy187 ing337))) +(recipe r187 (key (sx187 ing564))) +(recipe r187 (key (sy187 ing338))) +(recipe r187 (key (sx187 ing565))) +(recipe r187 (key (sy187 ing339))) +(recipe r187 (key (sx187 ing566))) +(recipe r187 (key (sy187 ing340))) +(recipe r187 (key (sx187 ing567))) +(recipe r187 (key (sy187 ing341))) +(recipe r187 (key (sx187 ing568))) +(recipe r187 (key (sy187 ing342))) +(recipe r187 (key (sx187 ing569))) +(recipe r187 (key (sy187 ing343))) +(recipe r187 (key (sx187 ing570))) +(recipe r187 (key (sy187 ing344))) +(recipe r187 (key (sx187 ing571))) +(recipe r187 (key (sy187 ing345))) +(recipe r187 (key (sx187 ing572))) +(recipe r187 (key (sy187 ing346))) +(recipe r188 (numIngredients 2)) +(recipe r188 (result (id item188))) +(recipe r188 (pattern 0 sx188)) +(recipe r188 (pattern 1 sy188)) +(recipe r188 (key (sx188 ing564))) +(recipe r188 (key (sy188 ing340))) +(recipe r188 (key (sx188 ing565))) +(recipe r188 (key (sy188 ing341))) +(recipe r188 (key (sx188 ing566))) +(recipe r188 (key (sy188 ing342))) +(recipe r188 (key (sx188 ing567))) +(recipe r188 (key (sy188 ing343))) +(recipe r188 (key (sx188 ing568))) +(recipe r188 (key (sy188 ing344))) +(recipe r188 (key (sx188 ing569))) +(recipe r188 (key (sy188 ing345))) +(recipe r188 (key (sx188 ing570))) +(recipe r188 (key (sy188 ing346))) +(recipe r188 (key (sx188 ing571))) +(recipe r188 (key (sy188 ing347))) +(recipe r188 (key (sx188 ing572))) +(recipe r188 (key (sy188 ing348))) +(recipe r188 (key (sx188 ing573))) +(recipe r188 (key (sy188 ing349))) +(recipe r188 (key (sx188 ing574))) +(recipe r188 (key (sy188 ing350))) +(recipe r188 (key (sx188 ing575))) +(recipe r188 (key (sy188 ing351))) +(recipe r189 (numIngredients 2)) +(recipe r189 (result (id item189))) +(recipe r189 (pattern 0 sx189)) +(recipe r189 (pattern 1 sy189)) +(recipe r189 (key (sx189 ing567))) +(recipe r189 (key (sy189 ing345))) +(recipe r189 (key (sx189 ing568))) +(recipe r189 (key (sy189 ing346))) +(recipe r189 (key (sx189 ing569))) +(recipe r189 (key (sy189 ing347))) +(recipe r189 (key (sx189 ing570))) +(recipe r189 (key (sy189 ing348))) +(recipe r189 (key (sx189 ing571))) +(recipe r189 (key (sy189 ing349))) +(recipe r189 (key (sx189 ing572))) +(recipe r189 (key (sy189 ing350))) +(recipe r189 (key (sx189 ing573))) +(recipe r189 (key (sy189 ing351))) +(recipe r189 (key (sx189 ing574))) +(recipe r189 (key (sy189 ing352))) +(recipe r189 (key (sx189 ing575))) +(recipe r189 (key (sy189 ing353))) +(recipe r189 (key (sx189 ing576))) +(recipe r189 (key (sy189 ing354))) +(recipe r189 (key (sx189 ing577))) +(recipe r189 (key (sy189 ing355))) +(recipe r189 (key (sx189 ing578))) +(recipe r189 (key (sy189 ing356))) +(recipe r190 (numIngredients 2)) +(recipe r190 (result (id item190))) +(recipe r190 (pattern 0 sx190)) +(recipe r190 (pattern 1 sy190)) +(recipe r190 (key (sx190 ing570))) +(recipe r190 (key (sy190 ing350))) +(recipe r190 (key (sx190 ing571))) +(recipe r190 (key (sy190 ing351))) +(recipe r190 (key (sx190 ing572))) +(recipe r190 (key (sy190 ing352))) +(recipe r190 (key (sx190 ing573))) +(recipe r190 (key (sy190 ing353))) +(recipe r190 (key (sx190 ing574))) +(recipe r190 (key (sy190 ing354))) +(recipe r190 (key (sx190 ing575))) +(recipe r190 (key (sy190 ing355))) +(recipe r190 (key (sx190 ing576))) +(recipe r190 (key (sy190 ing356))) +(recipe r190 (key (sx190 ing577))) +(recipe r190 (key (sy190 ing357))) +(recipe r190 (key (sx190 ing578))) +(recipe r190 (key (sy190 ing358))) +(recipe r190 (key (sx190 ing579))) +(recipe r190 (key (sy190 ing359))) +(recipe r190 (key (sx190 ing580))) +(recipe r190 (key (sy190 ing360))) +(recipe r190 (key (sx190 ing581))) +(recipe r190 (key (sy190 ing361))) +(recipe r191 (numIngredients 2)) +(recipe r191 (result (id item191))) +(recipe r191 (pattern 0 sx191)) +(recipe r191 (pattern 1 sy191)) +(recipe r191 (key (sx191 ing573))) +(recipe r191 (key (sy191 ing355))) +(recipe r191 (key (sx191 ing574))) +(recipe r191 (key (sy191 ing356))) +(recipe r191 (key (sx191 ing575))) +(recipe r191 (key (sy191 ing357))) +(recipe r191 (key (sx191 ing576))) +(recipe r191 (key (sy191 ing358))) +(recipe r191 (key (sx191 ing577))) +(recipe r191 (key (sy191 ing359))) +(recipe r191 (key (sx191 ing578))) +(recipe r191 (key (sy191 ing360))) +(recipe r191 (key (sx191 ing579))) +(recipe r191 (key (sy191 ing361))) +(recipe r191 (key (sx191 ing580))) +(recipe r191 (key (sy191 ing362))) +(recipe r191 (key (sx191 ing581))) +(recipe r191 (key (sy191 ing363))) +(recipe r191 (key (sx191 ing582))) +(recipe r191 (key (sy191 ing364))) +(recipe r191 (key (sx191 ing583))) +(recipe r191 (key (sy191 ing365))) +(recipe r191 (key (sx191 ing584))) +(recipe r191 (key (sy191 ing366))) +(recipe r192 (numIngredients 2)) +(recipe r192 (result (id item192))) +(recipe r192 (pattern 0 sx192)) +(recipe r192 (pattern 1 sy192)) +(recipe r192 (key (sx192 ing576))) +(recipe r192 (key (sy192 ing360))) +(recipe r192 (key (sx192 ing577))) +(recipe r192 (key (sy192 ing361))) +(recipe r192 (key (sx192 ing578))) +(recipe r192 (key (sy192 ing362))) +(recipe r192 (key (sx192 ing579))) +(recipe r192 (key (sy192 ing363))) +(recipe r192 (key (sx192 ing580))) +(recipe r192 (key (sy192 ing364))) +(recipe r192 (key (sx192 ing581))) +(recipe r192 (key (sy192 ing365))) +(recipe r192 (key (sx192 ing582))) +(recipe r192 (key (sy192 ing366))) +(recipe r192 (key (sx192 ing583))) +(recipe r192 (key (sy192 ing367))) +(recipe r192 (key (sx192 ing584))) +(recipe r192 (key (sy192 ing368))) +(recipe r192 (key (sx192 ing585))) +(recipe r192 (key (sy192 ing369))) +(recipe r192 (key (sx192 ing586))) +(recipe r192 (key (sy192 ing370))) +(recipe r192 (key (sx192 ing587))) +(recipe r192 (key (sy192 ing371))) +(recipe r193 (numIngredients 2)) +(recipe r193 (result (id item193))) +(recipe r193 (pattern 0 sx193)) +(recipe r193 (pattern 1 sy193)) +(recipe r193 (key (sx193 ing579))) +(recipe r193 (key (sy193 ing365))) +(recipe r193 (key (sx193 ing580))) +(recipe r193 (key (sy193 ing366))) +(recipe r193 (key (sx193 ing581))) +(recipe r193 (key (sy193 ing367))) +(recipe r193 (key (sx193 ing582))) +(recipe r193 (key (sy193 ing368))) +(recipe r193 (key (sx193 ing583))) +(recipe r193 (key (sy193 ing369))) +(recipe r193 (key (sx193 ing584))) +(recipe r193 (key (sy193 ing370))) +(recipe r193 (key (sx193 ing585))) +(recipe r193 (key (sy193 ing371))) +(recipe r193 (key (sx193 ing586))) +(recipe r193 (key (sy193 ing372))) +(recipe r193 (key (sx193 ing587))) +(recipe r193 (key (sy193 ing373))) +(recipe r193 (key (sx193 ing588))) +(recipe r193 (key (sy193 ing374))) +(recipe r193 (key (sx193 ing589))) +(recipe r193 (key (sy193 ing375))) +(recipe r193 (key (sx193 ing590))) +(recipe r193 (key (sy193 ing376))) +(recipe r194 (numIngredients 2)) +(recipe r194 (result (id item194))) +(recipe r194 (pattern 0 sx194)) +(recipe r194 (pattern 1 sy194)) +(recipe r194 (key (sx194 ing582))) +(recipe r194 (key (sy194 ing370))) +(recipe r194 (key (sx194 ing583))) +(recipe r194 (key (sy194 ing371))) +(recipe r194 (key (sx194 ing584))) +(recipe r194 (key (sy194 ing372))) +(recipe r194 (key (sx194 ing585))) +(recipe r194 (key (sy194 ing373))) +(recipe r194 (key (sx194 ing586))) +(recipe r194 (key (sy194 ing374))) +(recipe r194 (key (sx194 ing587))) +(recipe r194 (key (sy194 ing375))) +(recipe r194 (key (sx194 ing588))) +(recipe r194 (key (sy194 ing376))) +(recipe r194 (key (sx194 ing589))) +(recipe r194 (key (sy194 ing377))) +(recipe r194 (key (sx194 ing590))) +(recipe r194 (key (sy194 ing378))) +(recipe r194 (key (sx194 ing591))) +(recipe r194 (key (sy194 ing379))) +(recipe r194 (key (sx194 ing592))) +(recipe r194 (key (sy194 ing380))) +(recipe r194 (key (sx194 ing593))) +(recipe r194 (key (sy194 ing381))) +(recipe r195 (numIngredients 2)) +(recipe r195 (result (id item195))) +(recipe r195 (pattern 0 sx195)) +(recipe r195 (pattern 1 sy195)) +(recipe r195 (key (sx195 ing585))) +(recipe r195 (key (sy195 ing375))) +(recipe r195 (key (sx195 ing586))) +(recipe r195 (key (sy195 ing376))) +(recipe r195 (key (sx195 ing587))) +(recipe r195 (key (sy195 ing377))) +(recipe r195 (key (sx195 ing588))) +(recipe r195 (key (sy195 ing378))) +(recipe r195 (key (sx195 ing589))) +(recipe r195 (key (sy195 ing379))) +(recipe r195 (key (sx195 ing590))) +(recipe r195 (key (sy195 ing380))) +(recipe r195 (key (sx195 ing591))) +(recipe r195 (key (sy195 ing381))) +(recipe r195 (key (sx195 ing592))) +(recipe r195 (key (sy195 ing382))) +(recipe r195 (key (sx195 ing593))) +(recipe r195 (key (sy195 ing383))) +(recipe r195 (key (sx195 ing594))) +(recipe r195 (key (sy195 ing384))) +(recipe r195 (key (sx195 ing595))) +(recipe r195 (key (sy195 ing385))) +(recipe r195 (key (sx195 ing596))) +(recipe r195 (key (sy195 ing386))) +(recipe r196 (numIngredients 2)) +(recipe r196 (result (id item196))) +(recipe r196 (pattern 0 sx196)) +(recipe r196 (pattern 1 sy196)) +(recipe r196 (key (sx196 ing588))) +(recipe r196 (key (sy196 ing380))) +(recipe r196 (key (sx196 ing589))) +(recipe r196 (key (sy196 ing381))) +(recipe r196 (key (sx196 ing590))) +(recipe r196 (key (sy196 ing382))) +(recipe r196 (key (sx196 ing591))) +(recipe r196 (key (sy196 ing383))) +(recipe r196 (key (sx196 ing592))) +(recipe r196 (key (sy196 ing384))) +(recipe r196 (key (sx196 ing593))) +(recipe r196 (key (sy196 ing385))) +(recipe r196 (key (sx196 ing594))) +(recipe r196 (key (sy196 ing386))) +(recipe r196 (key (sx196 ing595))) +(recipe r196 (key (sy196 ing387))) +(recipe r196 (key (sx196 ing596))) +(recipe r196 (key (sy196 ing388))) +(recipe r196 (key (sx196 ing597))) +(recipe r196 (key (sy196 ing389))) +(recipe r196 (key (sx196 ing598))) +(recipe r196 (key (sy196 ing390))) +(recipe r196 (key (sx196 ing599))) +(recipe r196 (key (sy196 ing391))) +(recipe r197 (numIngredients 2)) +(recipe r197 (result (id item197))) +(recipe r197 (pattern 0 sx197)) +(recipe r197 (pattern 1 sy197)) +(recipe r197 (key (sx197 ing591))) +(recipe r197 (key (sy197 ing385))) +(recipe r197 (key (sx197 ing592))) +(recipe r197 (key (sy197 ing386))) +(recipe r197 (key (sx197 ing593))) +(recipe r197 (key (sy197 ing387))) +(recipe r197 (key (sx197 ing594))) +(recipe r197 (key (sy197 ing388))) +(recipe r197 (key (sx197 ing595))) +(recipe r197 (key (sy197 ing389))) +(recipe r197 (key (sx197 ing596))) +(recipe r197 (key (sy197 ing390))) +(recipe r197 (key (sx197 ing597))) +(recipe r197 (key (sy197 ing391))) +(recipe r197 (key (sx197 ing598))) +(recipe r197 (key (sy197 ing392))) +(recipe r197 (key (sx197 ing599))) +(recipe r197 (key (sy197 ing393))) +(recipe r197 (key (sx197 ing0))) +(recipe r197 (key (sy197 ing394))) +(recipe r197 (key (sx197 ing1))) +(recipe r197 (key (sy197 ing395))) +(recipe r197 (key (sx197 ing2))) +(recipe r197 (key (sy197 ing396))) +(recipe r198 (numIngredients 2)) +(recipe r198 (result (id item198))) +(recipe r198 (pattern 0 sx198)) +(recipe r198 (pattern 1 sy198)) +(recipe r198 (key (sx198 ing594))) +(recipe r198 (key (sy198 ing390))) +(recipe r198 (key (sx198 ing595))) +(recipe r198 (key (sy198 ing391))) +(recipe r198 (key (sx198 ing596))) +(recipe r198 (key (sy198 ing392))) +(recipe r198 (key (sx198 ing597))) +(recipe r198 (key (sy198 ing393))) +(recipe r198 (key (sx198 ing598))) +(recipe r198 (key (sy198 ing394))) +(recipe r198 (key (sx198 ing599))) +(recipe r198 (key (sy198 ing395))) +(recipe r198 (key (sx198 ing0))) +(recipe r198 (key (sy198 ing396))) +(recipe r198 (key (sx198 ing1))) +(recipe r198 (key (sy198 ing397))) +(recipe r198 (key (sx198 ing2))) +(recipe r198 (key (sy198 ing398))) +(recipe r198 (key (sx198 ing3))) +(recipe r198 (key (sy198 ing399))) +(recipe r198 (key (sx198 ing4))) +(recipe r198 (key (sy198 ing400))) +(recipe r198 (key (sx198 ing5))) +(recipe r198 (key (sy198 ing401))) +(recipe r199 (numIngredients 2)) +(recipe r199 (result (id item199))) +(recipe r199 (pattern 0 sx199)) +(recipe r199 (pattern 1 sy199)) +(recipe r199 (key (sx199 ing597))) +(recipe r199 (key (sy199 ing395))) +(recipe r199 (key (sx199 ing598))) +(recipe r199 (key (sy199 ing396))) +(recipe r199 (key (sx199 ing599))) +(recipe r199 (key (sy199 ing397))) +(recipe r199 (key (sx199 ing0))) +(recipe r199 (key (sy199 ing398))) +(recipe r199 (key (sx199 ing1))) +(recipe r199 (key (sy199 ing399))) +(recipe r199 (key (sx199 ing2))) +(recipe r199 (key (sy199 ing400))) +(recipe r199 (key (sx199 ing3))) +(recipe r199 (key (sy199 ing401))) +(recipe r199 (key (sx199 ing4))) +(recipe r199 (key (sy199 ing402))) +(recipe r199 (key (sx199 ing5))) +(recipe r199 (key (sy199 ing403))) +(recipe r199 (key (sx199 ing6))) +(recipe r199 (key (sy199 ing404))) +(recipe r199 (key (sx199 ing7))) +(recipe r199 (key (sy199 ing405))) +(recipe r199 (key (sx199 ing8))) +(recipe r199 (key (sy199 ing406))) +(recipe r200 (numIngredients 2)) +(recipe r200 (result (id item200))) +(recipe r200 (pattern 0 sx200)) +(recipe r200 (pattern 1 sy200)) +(recipe r200 (key (sx200 ing0))) +(recipe r200 (key (sy200 ing400))) +(recipe r200 (key (sx200 ing1))) +(recipe r200 (key (sy200 ing401))) +(recipe r200 (key (sx200 ing2))) +(recipe r200 (key (sy200 ing402))) +(recipe r200 (key (sx200 ing3))) +(recipe r200 (key (sy200 ing403))) +(recipe r200 (key (sx200 ing4))) +(recipe r200 (key (sy200 ing404))) +(recipe r200 (key (sx200 ing5))) +(recipe r200 (key (sy200 ing405))) +(recipe r200 (key (sx200 ing6))) +(recipe r200 (key (sy200 ing406))) +(recipe r200 (key (sx200 ing7))) +(recipe r200 (key (sy200 ing407))) +(recipe r200 (key (sx200 ing8))) +(recipe r200 (key (sy200 ing408))) +(recipe r200 (key (sx200 ing9))) +(recipe r200 (key (sy200 ing409))) +(recipe r200 (key (sx200 ing10))) +(recipe r200 (key (sy200 ing410))) +(recipe r200 (key (sx200 ing11))) +(recipe r200 (key (sy200 ing411))) +(recipe r201 (numIngredients 2)) +(recipe r201 (result (id item201))) +(recipe r201 (pattern 0 sx201)) +(recipe r201 (pattern 1 sy201)) +(recipe r201 (key (sx201 ing3))) +(recipe r201 (key (sy201 ing405))) +(recipe r201 (key (sx201 ing4))) +(recipe r201 (key (sy201 ing406))) +(recipe r201 (key (sx201 ing5))) +(recipe r201 (key (sy201 ing407))) +(recipe r201 (key (sx201 ing6))) +(recipe r201 (key (sy201 ing408))) +(recipe r201 (key (sx201 ing7))) +(recipe r201 (key (sy201 ing409))) +(recipe r201 (key (sx201 ing8))) +(recipe r201 (key (sy201 ing410))) +(recipe r201 (key (sx201 ing9))) +(recipe r201 (key (sy201 ing411))) +(recipe r201 (key (sx201 ing10))) +(recipe r201 (key (sy201 ing412))) +(recipe r201 (key (sx201 ing11))) +(recipe r201 (key (sy201 ing413))) +(recipe r201 (key (sx201 ing12))) +(recipe r201 (key (sy201 ing414))) +(recipe r201 (key (sx201 ing13))) +(recipe r201 (key (sy201 ing415))) +(recipe r201 (key (sx201 ing14))) +(recipe r201 (key (sy201 ing416))) +(recipe r202 (numIngredients 2)) +(recipe r202 (result (id item202))) +(recipe r202 (pattern 0 sx202)) +(recipe r202 (pattern 1 sy202)) +(recipe r202 (key (sx202 ing6))) +(recipe r202 (key (sy202 ing410))) +(recipe r202 (key (sx202 ing7))) +(recipe r202 (key (sy202 ing411))) +(recipe r202 (key (sx202 ing8))) +(recipe r202 (key (sy202 ing412))) +(recipe r202 (key (sx202 ing9))) +(recipe r202 (key (sy202 ing413))) +(recipe r202 (key (sx202 ing10))) +(recipe r202 (key (sy202 ing414))) +(recipe r202 (key (sx202 ing11))) +(recipe r202 (key (sy202 ing415))) +(recipe r202 (key (sx202 ing12))) +(recipe r202 (key (sy202 ing416))) +(recipe r202 (key (sx202 ing13))) +(recipe r202 (key (sy202 ing417))) +(recipe r202 (key (sx202 ing14))) +(recipe r202 (key (sy202 ing418))) +(recipe r202 (key (sx202 ing15))) +(recipe r202 (key (sy202 ing419))) +(recipe r202 (key (sx202 ing16))) +(recipe r202 (key (sy202 ing420))) +(recipe r202 (key (sx202 ing17))) +(recipe r202 (key (sy202 ing421))) +(recipe r203 (numIngredients 2)) +(recipe r203 (result (id item203))) +(recipe r203 (pattern 0 sx203)) +(recipe r203 (pattern 1 sy203)) +(recipe r203 (key (sx203 ing9))) +(recipe r203 (key (sy203 ing415))) +(recipe r203 (key (sx203 ing10))) +(recipe r203 (key (sy203 ing416))) +(recipe r203 (key (sx203 ing11))) +(recipe r203 (key (sy203 ing417))) +(recipe r203 (key (sx203 ing12))) +(recipe r203 (key (sy203 ing418))) +(recipe r203 (key (sx203 ing13))) +(recipe r203 (key (sy203 ing419))) +(recipe r203 (key (sx203 ing14))) +(recipe r203 (key (sy203 ing420))) +(recipe r203 (key (sx203 ing15))) +(recipe r203 (key (sy203 ing421))) +(recipe r203 (key (sx203 ing16))) +(recipe r203 (key (sy203 ing422))) +(recipe r203 (key (sx203 ing17))) +(recipe r203 (key (sy203 ing423))) +(recipe r203 (key (sx203 ing18))) +(recipe r203 (key (sy203 ing424))) +(recipe r203 (key (sx203 ing19))) +(recipe r203 (key (sy203 ing425))) +(recipe r203 (key (sx203 ing20))) +(recipe r203 (key (sy203 ing426))) +(recipe r204 (numIngredients 2)) +(recipe r204 (result (id item204))) +(recipe r204 (pattern 0 sx204)) +(recipe r204 (pattern 1 sy204)) +(recipe r204 (key (sx204 ing12))) +(recipe r204 (key (sy204 ing420))) +(recipe r204 (key (sx204 ing13))) +(recipe r204 (key (sy204 ing421))) +(recipe r204 (key (sx204 ing14))) +(recipe r204 (key (sy204 ing422))) +(recipe r204 (key (sx204 ing15))) +(recipe r204 (key (sy204 ing423))) +(recipe r204 (key (sx204 ing16))) +(recipe r204 (key (sy204 ing424))) +(recipe r204 (key (sx204 ing17))) +(recipe r204 (key (sy204 ing425))) +(recipe r204 (key (sx204 ing18))) +(recipe r204 (key (sy204 ing426))) +(recipe r204 (key (sx204 ing19))) +(recipe r204 (key (sy204 ing427))) +(recipe r204 (key (sx204 ing20))) +(recipe r204 (key (sy204 ing428))) +(recipe r204 (key (sx204 ing21))) +(recipe r204 (key (sy204 ing429))) +(recipe r204 (key (sx204 ing22))) +(recipe r204 (key (sy204 ing430))) +(recipe r204 (key (sx204 ing23))) +(recipe r204 (key (sy204 ing431))) +(recipe r205 (numIngredients 2)) +(recipe r205 (result (id item205))) +(recipe r205 (pattern 0 sx205)) +(recipe r205 (pattern 1 sy205)) +(recipe r205 (key (sx205 ing15))) +(recipe r205 (key (sy205 ing425))) +(recipe r205 (key (sx205 ing16))) +(recipe r205 (key (sy205 ing426))) +(recipe r205 (key (sx205 ing17))) +(recipe r205 (key (sy205 ing427))) +(recipe r205 (key (sx205 ing18))) +(recipe r205 (key (sy205 ing428))) +(recipe r205 (key (sx205 ing19))) +(recipe r205 (key (sy205 ing429))) +(recipe r205 (key (sx205 ing20))) +(recipe r205 (key (sy205 ing430))) +(recipe r205 (key (sx205 ing21))) +(recipe r205 (key (sy205 ing431))) +(recipe r205 (key (sx205 ing22))) +(recipe r205 (key (sy205 ing432))) +(recipe r205 (key (sx205 ing23))) +(recipe r205 (key (sy205 ing433))) +(recipe r205 (key (sx205 ing24))) +(recipe r205 (key (sy205 ing434))) +(recipe r205 (key (sx205 ing25))) +(recipe r205 (key (sy205 ing435))) +(recipe r205 (key (sx205 ing26))) +(recipe r205 (key (sy205 ing436))) +(recipe r206 (numIngredients 2)) +(recipe r206 (result (id item206))) +(recipe r206 (pattern 0 sx206)) +(recipe r206 (pattern 1 sy206)) +(recipe r206 (key (sx206 ing18))) +(recipe r206 (key (sy206 ing430))) +(recipe r206 (key (sx206 ing19))) +(recipe r206 (key (sy206 ing431))) +(recipe r206 (key (sx206 ing20))) +(recipe r206 (key (sy206 ing432))) +(recipe r206 (key (sx206 ing21))) +(recipe r206 (key (sy206 ing433))) +(recipe r206 (key (sx206 ing22))) +(recipe r206 (key (sy206 ing434))) +(recipe r206 (key (sx206 ing23))) +(recipe r206 (key (sy206 ing435))) +(recipe r206 (key (sx206 ing24))) +(recipe r206 (key (sy206 ing436))) +(recipe r206 (key (sx206 ing25))) +(recipe r206 (key (sy206 ing437))) +(recipe r206 (key (sx206 ing26))) +(recipe r206 (key (sy206 ing438))) +(recipe r206 (key (sx206 ing27))) +(recipe r206 (key (sy206 ing439))) +(recipe r206 (key (sx206 ing28))) +(recipe r206 (key (sy206 ing440))) +(recipe r206 (key (sx206 ing29))) +(recipe r206 (key (sy206 ing441))) +(recipe r207 (numIngredients 2)) +(recipe r207 (result (id item207))) +(recipe r207 (pattern 0 sx207)) +(recipe r207 (pattern 1 sy207)) +(recipe r207 (key (sx207 ing21))) +(recipe r207 (key (sy207 ing435))) +(recipe r207 (key (sx207 ing22))) +(recipe r207 (key (sy207 ing436))) +(recipe r207 (key (sx207 ing23))) +(recipe r207 (key (sy207 ing437))) +(recipe r207 (key (sx207 ing24))) +(recipe r207 (key (sy207 ing438))) +(recipe r207 (key (sx207 ing25))) +(recipe r207 (key (sy207 ing439))) +(recipe r207 (key (sx207 ing26))) +(recipe r207 (key (sy207 ing440))) +(recipe r207 (key (sx207 ing27))) +(recipe r207 (key (sy207 ing441))) +(recipe r207 (key (sx207 ing28))) +(recipe r207 (key (sy207 ing442))) +(recipe r207 (key (sx207 ing29))) +(recipe r207 (key (sy207 ing443))) +(recipe r207 (key (sx207 ing30))) +(recipe r207 (key (sy207 ing444))) +(recipe r207 (key (sx207 ing31))) +(recipe r207 (key (sy207 ing445))) +(recipe r207 (key (sx207 ing32))) +(recipe r207 (key (sy207 ing446))) +(recipe r208 (numIngredients 2)) +(recipe r208 (result (id item208))) +(recipe r208 (pattern 0 sx208)) +(recipe r208 (pattern 1 sy208)) +(recipe r208 (key (sx208 ing24))) +(recipe r208 (key (sy208 ing440))) +(recipe r208 (key (sx208 ing25))) +(recipe r208 (key (sy208 ing441))) +(recipe r208 (key (sx208 ing26))) +(recipe r208 (key (sy208 ing442))) +(recipe r208 (key (sx208 ing27))) +(recipe r208 (key (sy208 ing443))) +(recipe r208 (key (sx208 ing28))) +(recipe r208 (key (sy208 ing444))) +(recipe r208 (key (sx208 ing29))) +(recipe r208 (key (sy208 ing445))) +(recipe r208 (key (sx208 ing30))) +(recipe r208 (key (sy208 ing446))) +(recipe r208 (key (sx208 ing31))) +(recipe r208 (key (sy208 ing447))) +(recipe r208 (key (sx208 ing32))) +(recipe r208 (key (sy208 ing448))) +(recipe r208 (key (sx208 ing33))) +(recipe r208 (key (sy208 ing449))) +(recipe r208 (key (sx208 ing34))) +(recipe r208 (key (sy208 ing450))) +(recipe r208 (key (sx208 ing35))) +(recipe r208 (key (sy208 ing451))) +(recipe r209 (numIngredients 2)) +(recipe r209 (result (id item209))) +(recipe r209 (pattern 0 sx209)) +(recipe r209 (pattern 1 sy209)) +(recipe r209 (key (sx209 ing27))) +(recipe r209 (key (sy209 ing445))) +(recipe r209 (key (sx209 ing28))) +(recipe r209 (key (sy209 ing446))) +(recipe r209 (key (sx209 ing29))) +(recipe r209 (key (sy209 ing447))) +(recipe r209 (key (sx209 ing30))) +(recipe r209 (key (sy209 ing448))) +(recipe r209 (key (sx209 ing31))) +(recipe r209 (key (sy209 ing449))) +(recipe r209 (key (sx209 ing32))) +(recipe r209 (key (sy209 ing450))) +(recipe r209 (key (sx209 ing33))) +(recipe r209 (key (sy209 ing451))) +(recipe r209 (key (sx209 ing34))) +(recipe r209 (key (sy209 ing452))) +(recipe r209 (key (sx209 ing35))) +(recipe r209 (key (sy209 ing453))) +(recipe r209 (key (sx209 ing36))) +(recipe r209 (key (sy209 ing454))) +(recipe r209 (key (sx209 ing37))) +(recipe r209 (key (sy209 ing455))) +(recipe r209 (key (sx209 ing38))) +(recipe r209 (key (sy209 ing456))) +(recipe r210 (numIngredients 2)) +(recipe r210 (result (id item210))) +(recipe r210 (pattern 0 sx210)) +(recipe r210 (pattern 1 sy210)) +(recipe r210 (key (sx210 ing30))) +(recipe r210 (key (sy210 ing450))) +(recipe r210 (key (sx210 ing31))) +(recipe r210 (key (sy210 ing451))) +(recipe r210 (key (sx210 ing32))) +(recipe r210 (key (sy210 ing452))) +(recipe r210 (key (sx210 ing33))) +(recipe r210 (key (sy210 ing453))) +(recipe r210 (key (sx210 ing34))) +(recipe r210 (key (sy210 ing454))) +(recipe r210 (key (sx210 ing35))) +(recipe r210 (key (sy210 ing455))) +(recipe r210 (key (sx210 ing36))) +(recipe r210 (key (sy210 ing456))) +(recipe r210 (key (sx210 ing37))) +(recipe r210 (key (sy210 ing457))) +(recipe r210 (key (sx210 ing38))) +(recipe r210 (key (sy210 ing458))) +(recipe r210 (key (sx210 ing39))) +(recipe r210 (key (sy210 ing459))) +(recipe r210 (key (sx210 ing40))) +(recipe r210 (key (sy210 ing460))) +(recipe r210 (key (sx210 ing41))) +(recipe r210 (key (sy210 ing461))) +(recipe r211 (numIngredients 2)) +(recipe r211 (result (id item211))) +(recipe r211 (pattern 0 sx211)) +(recipe r211 (pattern 1 sy211)) +(recipe r211 (key (sx211 ing33))) +(recipe r211 (key (sy211 ing455))) +(recipe r211 (key (sx211 ing34))) +(recipe r211 (key (sy211 ing456))) +(recipe r211 (key (sx211 ing35))) +(recipe r211 (key (sy211 ing457))) +(recipe r211 (key (sx211 ing36))) +(recipe r211 (key (sy211 ing458))) +(recipe r211 (key (sx211 ing37))) +(recipe r211 (key (sy211 ing459))) +(recipe r211 (key (sx211 ing38))) +(recipe r211 (key (sy211 ing460))) +(recipe r211 (key (sx211 ing39))) +(recipe r211 (key (sy211 ing461))) +(recipe r211 (key (sx211 ing40))) +(recipe r211 (key (sy211 ing462))) +(recipe r211 (key (sx211 ing41))) +(recipe r211 (key (sy211 ing463))) +(recipe r211 (key (sx211 ing42))) +(recipe r211 (key (sy211 ing464))) +(recipe r211 (key (sx211 ing43))) +(recipe r211 (key (sy211 ing465))) +(recipe r211 (key (sx211 ing44))) +(recipe r211 (key (sy211 ing466))) +(recipe r212 (numIngredients 2)) +(recipe r212 (result (id item212))) +(recipe r212 (pattern 0 sx212)) +(recipe r212 (pattern 1 sy212)) +(recipe r212 (key (sx212 ing36))) +(recipe r212 (key (sy212 ing460))) +(recipe r212 (key (sx212 ing37))) +(recipe r212 (key (sy212 ing461))) +(recipe r212 (key (sx212 ing38))) +(recipe r212 (key (sy212 ing462))) +(recipe r212 (key (sx212 ing39))) +(recipe r212 (key (sy212 ing463))) +(recipe r212 (key (sx212 ing40))) +(recipe r212 (key (sy212 ing464))) +(recipe r212 (key (sx212 ing41))) +(recipe r212 (key (sy212 ing465))) +(recipe r212 (key (sx212 ing42))) +(recipe r212 (key (sy212 ing466))) +(recipe r212 (key (sx212 ing43))) +(recipe r212 (key (sy212 ing467))) +(recipe r212 (key (sx212 ing44))) +(recipe r212 (key (sy212 ing468))) +(recipe r212 (key (sx212 ing45))) +(recipe r212 (key (sy212 ing469))) +(recipe r212 (key (sx212 ing46))) +(recipe r212 (key (sy212 ing470))) +(recipe r212 (key (sx212 ing47))) +(recipe r212 (key (sy212 ing471))) +(recipe r213 (numIngredients 2)) +(recipe r213 (result (id item213))) +(recipe r213 (pattern 0 sx213)) +(recipe r213 (pattern 1 sy213)) +(recipe r213 (key (sx213 ing39))) +(recipe r213 (key (sy213 ing465))) +(recipe r213 (key (sx213 ing40))) +(recipe r213 (key (sy213 ing466))) +(recipe r213 (key (sx213 ing41))) +(recipe r213 (key (sy213 ing467))) +(recipe r213 (key (sx213 ing42))) +(recipe r213 (key (sy213 ing468))) +(recipe r213 (key (sx213 ing43))) +(recipe r213 (key (sy213 ing469))) +(recipe r213 (key (sx213 ing44))) +(recipe r213 (key (sy213 ing470))) +(recipe r213 (key (sx213 ing45))) +(recipe r213 (key (sy213 ing471))) +(recipe r213 (key (sx213 ing46))) +(recipe r213 (key (sy213 ing472))) +(recipe r213 (key (sx213 ing47))) +(recipe r213 (key (sy213 ing473))) +(recipe r213 (key (sx213 ing48))) +(recipe r213 (key (sy213 ing474))) +(recipe r213 (key (sx213 ing49))) +(recipe r213 (key (sy213 ing475))) +(recipe r213 (key (sx213 ing50))) +(recipe r213 (key (sy213 ing476))) +(recipe r214 (numIngredients 2)) +(recipe r214 (result (id item214))) +(recipe r214 (pattern 0 sx214)) +(recipe r214 (pattern 1 sy214)) +(recipe r214 (key (sx214 ing42))) +(recipe r214 (key (sy214 ing470))) +(recipe r214 (key (sx214 ing43))) +(recipe r214 (key (sy214 ing471))) +(recipe r214 (key (sx214 ing44))) +(recipe r214 (key (sy214 ing472))) +(recipe r214 (key (sx214 ing45))) +(recipe r214 (key (sy214 ing473))) +(recipe r214 (key (sx214 ing46))) +(recipe r214 (key (sy214 ing474))) +(recipe r214 (key (sx214 ing47))) +(recipe r214 (key (sy214 ing475))) +(recipe r214 (key (sx214 ing48))) +(recipe r214 (key (sy214 ing476))) +(recipe r214 (key (sx214 ing49))) +(recipe r214 (key (sy214 ing477))) +(recipe r214 (key (sx214 ing50))) +(recipe r214 (key (sy214 ing478))) +(recipe r214 (key (sx214 ing51))) +(recipe r214 (key (sy214 ing479))) +(recipe r214 (key (sx214 ing52))) +(recipe r214 (key (sy214 ing480))) +(recipe r214 (key (sx214 ing53))) +(recipe r214 (key (sy214 ing481))) +(recipe r215 (numIngredients 2)) +(recipe r215 (result (id item215))) +(recipe r215 (pattern 0 sx215)) +(recipe r215 (pattern 1 sy215)) +(recipe r215 (key (sx215 ing45))) +(recipe r215 (key (sy215 ing475))) +(recipe r215 (key (sx215 ing46))) +(recipe r215 (key (sy215 ing476))) +(recipe r215 (key (sx215 ing47))) +(recipe r215 (key (sy215 ing477))) +(recipe r215 (key (sx215 ing48))) +(recipe r215 (key (sy215 ing478))) +(recipe r215 (key (sx215 ing49))) +(recipe r215 (key (sy215 ing479))) +(recipe r215 (key (sx215 ing50))) +(recipe r215 (key (sy215 ing480))) +(recipe r215 (key (sx215 ing51))) +(recipe r215 (key (sy215 ing481))) +(recipe r215 (key (sx215 ing52))) +(recipe r215 (key (sy215 ing482))) +(recipe r215 (key (sx215 ing53))) +(recipe r215 (key (sy215 ing483))) +(recipe r215 (key (sx215 ing54))) +(recipe r215 (key (sy215 ing484))) +(recipe r215 (key (sx215 ing55))) +(recipe r215 (key (sy215 ing485))) +(recipe r215 (key (sx215 ing56))) +(recipe r215 (key (sy215 ing486))) +(recipe r216 (numIngredients 2)) +(recipe r216 (result (id item216))) +(recipe r216 (pattern 0 sx216)) +(recipe r216 (pattern 1 sy216)) +(recipe r216 (key (sx216 ing48))) +(recipe r216 (key (sy216 ing480))) +(recipe r216 (key (sx216 ing49))) +(recipe r216 (key (sy216 ing481))) +(recipe r216 (key (sx216 ing50))) +(recipe r216 (key (sy216 ing482))) +(recipe r216 (key (sx216 ing51))) +(recipe r216 (key (sy216 ing483))) +(recipe r216 (key (sx216 ing52))) +(recipe r216 (key (sy216 ing484))) +(recipe r216 (key (sx216 ing53))) +(recipe r216 (key (sy216 ing485))) +(recipe r216 (key (sx216 ing54))) +(recipe r216 (key (sy216 ing486))) +(recipe r216 (key (sx216 ing55))) +(recipe r216 (key (sy216 ing487))) +(recipe r216 (key (sx216 ing56))) +(recipe r216 (key (sy216 ing488))) +(recipe r216 (key (sx216 ing57))) +(recipe r216 (key (sy216 ing489))) +(recipe r216 (key (sx216 ing58))) +(recipe r216 (key (sy216 ing490))) +(recipe r216 (key (sx216 ing59))) +(recipe r216 (key (sy216 ing491))) +(recipe r217 (numIngredients 2)) +(recipe r217 (result (id item217))) +(recipe r217 (pattern 0 sx217)) +(recipe r217 (pattern 1 sy217)) +(recipe r217 (key (sx217 ing51))) +(recipe r217 (key (sy217 ing485))) +(recipe r217 (key (sx217 ing52))) +(recipe r217 (key (sy217 ing486))) +(recipe r217 (key (sx217 ing53))) +(recipe r217 (key (sy217 ing487))) +(recipe r217 (key (sx217 ing54))) +(recipe r217 (key (sy217 ing488))) +(recipe r217 (key (sx217 ing55))) +(recipe r217 (key (sy217 ing489))) +(recipe r217 (key (sx217 ing56))) +(recipe r217 (key (sy217 ing490))) +(recipe r217 (key (sx217 ing57))) +(recipe r217 (key (sy217 ing491))) +(recipe r217 (key (sx217 ing58))) +(recipe r217 (key (sy217 ing492))) +(recipe r217 (key (sx217 ing59))) +(recipe r217 (key (sy217 ing493))) +(recipe r217 (key (sx217 ing60))) +(recipe r217 (key (sy217 ing494))) +(recipe r217 (key (sx217 ing61))) +(recipe r217 (key (sy217 ing495))) +(recipe r217 (key (sx217 ing62))) +(recipe r217 (key (sy217 ing496))) +(recipe r218 (numIngredients 2)) +(recipe r218 (result (id item218))) +(recipe r218 (pattern 0 sx218)) +(recipe r218 (pattern 1 sy218)) +(recipe r218 (key (sx218 ing54))) +(recipe r218 (key (sy218 ing490))) +(recipe r218 (key (sx218 ing55))) +(recipe r218 (key (sy218 ing491))) +(recipe r218 (key (sx218 ing56))) +(recipe r218 (key (sy218 ing492))) +(recipe r218 (key (sx218 ing57))) +(recipe r218 (key (sy218 ing493))) +(recipe r218 (key (sx218 ing58))) +(recipe r218 (key (sy218 ing494))) +(recipe r218 (key (sx218 ing59))) +(recipe r218 (key (sy218 ing495))) +(recipe r218 (key (sx218 ing60))) +(recipe r218 (key (sy218 ing496))) +(recipe r218 (key (sx218 ing61))) +(recipe r218 (key (sy218 ing497))) +(recipe r218 (key (sx218 ing62))) +(recipe r218 (key (sy218 ing498))) +(recipe r218 (key (sx218 ing63))) +(recipe r218 (key (sy218 ing499))) +(recipe r218 (key (sx218 ing64))) +(recipe r218 (key (sy218 ing500))) +(recipe r218 (key (sx218 ing65))) +(recipe r218 (key (sy218 ing501))) +(recipe r219 (numIngredients 2)) +(recipe r219 (result (id item219))) +(recipe r219 (pattern 0 sx219)) +(recipe r219 (pattern 1 sy219)) +(recipe r219 (key (sx219 ing57))) +(recipe r219 (key (sy219 ing495))) +(recipe r219 (key (sx219 ing58))) +(recipe r219 (key (sy219 ing496))) +(recipe r219 (key (sx219 ing59))) +(recipe r219 (key (sy219 ing497))) +(recipe r219 (key (sx219 ing60))) +(recipe r219 (key (sy219 ing498))) +(recipe r219 (key (sx219 ing61))) +(recipe r219 (key (sy219 ing499))) +(recipe r219 (key (sx219 ing62))) +(recipe r219 (key (sy219 ing500))) +(recipe r219 (key (sx219 ing63))) +(recipe r219 (key (sy219 ing501))) +(recipe r219 (key (sx219 ing64))) +(recipe r219 (key (sy219 ing502))) +(recipe r219 (key (sx219 ing65))) +(recipe r219 (key (sy219 ing503))) +(recipe r219 (key (sx219 ing66))) +(recipe r219 (key (sy219 ing504))) +(recipe r219 (key (sx219 ing67))) +(recipe r219 (key (sy219 ing505))) +(recipe r219 (key (sx219 ing68))) +(recipe r219 (key (sy219 ing506))) +(recipe r220 (numIngredients 2)) +(recipe r220 (result (id item220))) +(recipe r220 (pattern 0 sx220)) +(recipe r220 (pattern 1 sy220)) +(recipe r220 (key (sx220 ing60))) +(recipe r220 (key (sy220 ing500))) +(recipe r220 (key (sx220 ing61))) +(recipe r220 (key (sy220 ing501))) +(recipe r220 (key (sx220 ing62))) +(recipe r220 (key (sy220 ing502))) +(recipe r220 (key (sx220 ing63))) +(recipe r220 (key (sy220 ing503))) +(recipe r220 (key (sx220 ing64))) +(recipe r220 (key (sy220 ing504))) +(recipe r220 (key (sx220 ing65))) +(recipe r220 (key (sy220 ing505))) +(recipe r220 (key (sx220 ing66))) +(recipe r220 (key (sy220 ing506))) +(recipe r220 (key (sx220 ing67))) +(recipe r220 (key (sy220 ing507))) +(recipe r220 (key (sx220 ing68))) +(recipe r220 (key (sy220 ing508))) +(recipe r220 (key (sx220 ing69))) +(recipe r220 (key (sy220 ing509))) +(recipe r220 (key (sx220 ing70))) +(recipe r220 (key (sy220 ing510))) +(recipe r220 (key (sx220 ing71))) +(recipe r220 (key (sy220 ing511))) +(recipe r221 (numIngredients 2)) +(recipe r221 (result (id item221))) +(recipe r221 (pattern 0 sx221)) +(recipe r221 (pattern 1 sy221)) +(recipe r221 (key (sx221 ing63))) +(recipe r221 (key (sy221 ing505))) +(recipe r221 (key (sx221 ing64))) +(recipe r221 (key (sy221 ing506))) +(recipe r221 (key (sx221 ing65))) +(recipe r221 (key (sy221 ing507))) +(recipe r221 (key (sx221 ing66))) +(recipe r221 (key (sy221 ing508))) +(recipe r221 (key (sx221 ing67))) +(recipe r221 (key (sy221 ing509))) +(recipe r221 (key (sx221 ing68))) +(recipe r221 (key (sy221 ing510))) +(recipe r221 (key (sx221 ing69))) +(recipe r221 (key (sy221 ing511))) +(recipe r221 (key (sx221 ing70))) +(recipe r221 (key (sy221 ing512))) +(recipe r221 (key (sx221 ing71))) +(recipe r221 (key (sy221 ing513))) +(recipe r221 (key (sx221 ing72))) +(recipe r221 (key (sy221 ing514))) +(recipe r221 (key (sx221 ing73))) +(recipe r221 (key (sy221 ing515))) +(recipe r221 (key (sx221 ing74))) +(recipe r221 (key (sy221 ing516))) +(recipe r222 (numIngredients 2)) +(recipe r222 (result (id item222))) +(recipe r222 (pattern 0 sx222)) +(recipe r222 (pattern 1 sy222)) +(recipe r222 (key (sx222 ing66))) +(recipe r222 (key (sy222 ing510))) +(recipe r222 (key (sx222 ing67))) +(recipe r222 (key (sy222 ing511))) +(recipe r222 (key (sx222 ing68))) +(recipe r222 (key (sy222 ing512))) +(recipe r222 (key (sx222 ing69))) +(recipe r222 (key (sy222 ing513))) +(recipe r222 (key (sx222 ing70))) +(recipe r222 (key (sy222 ing514))) +(recipe r222 (key (sx222 ing71))) +(recipe r222 (key (sy222 ing515))) +(recipe r222 (key (sx222 ing72))) +(recipe r222 (key (sy222 ing516))) +(recipe r222 (key (sx222 ing73))) +(recipe r222 (key (sy222 ing517))) +(recipe r222 (key (sx222 ing74))) +(recipe r222 (key (sy222 ing518))) +(recipe r222 (key (sx222 ing75))) +(recipe r222 (key (sy222 ing519))) +(recipe r222 (key (sx222 ing76))) +(recipe r222 (key (sy222 ing520))) +(recipe r222 (key (sx222 ing77))) +(recipe r222 (key (sy222 ing521))) +(recipe r223 (numIngredients 2)) +(recipe r223 (result (id item223))) +(recipe r223 (pattern 0 sx223)) +(recipe r223 (pattern 1 sy223)) +(recipe r223 (key (sx223 ing69))) +(recipe r223 (key (sy223 ing515))) +(recipe r223 (key (sx223 ing70))) +(recipe r223 (key (sy223 ing516))) +(recipe r223 (key (sx223 ing71))) +(recipe r223 (key (sy223 ing517))) +(recipe r223 (key (sx223 ing72))) +(recipe r223 (key (sy223 ing518))) +(recipe r223 (key (sx223 ing73))) +(recipe r223 (key (sy223 ing519))) +(recipe r223 (key (sx223 ing74))) +(recipe r223 (key (sy223 ing520))) +(recipe r223 (key (sx223 ing75))) +(recipe r223 (key (sy223 ing521))) +(recipe r223 (key (sx223 ing76))) +(recipe r223 (key (sy223 ing522))) +(recipe r223 (key (sx223 ing77))) +(recipe r223 (key (sy223 ing523))) +(recipe r223 (key (sx223 ing78))) +(recipe r223 (key (sy223 ing524))) +(recipe r223 (key (sx223 ing79))) +(recipe r223 (key (sy223 ing525))) +(recipe r223 (key (sx223 ing80))) +(recipe r223 (key (sy223 ing526))) +(recipe r224 (numIngredients 2)) +(recipe r224 (result (id item224))) +(recipe r224 (pattern 0 sx224)) +(recipe r224 (pattern 1 sy224)) +(recipe r224 (key (sx224 ing72))) +(recipe r224 (key (sy224 ing520))) +(recipe r224 (key (sx224 ing73))) +(recipe r224 (key (sy224 ing521))) +(recipe r224 (key (sx224 ing74))) +(recipe r224 (key (sy224 ing522))) +(recipe r224 (key (sx224 ing75))) +(recipe r224 (key (sy224 ing523))) +(recipe r224 (key (sx224 ing76))) +(recipe r224 (key (sy224 ing524))) +(recipe r224 (key (sx224 ing77))) +(recipe r224 (key (sy224 ing525))) +(recipe r224 (key (sx224 ing78))) +(recipe r224 (key (sy224 ing526))) +(recipe r224 (key (sx224 ing79))) +(recipe r224 (key (sy224 ing527))) +(recipe r224 (key (sx224 ing80))) +(recipe r224 (key (sy224 ing528))) +(recipe r224 (key (sx224 ing81))) +(recipe r224 (key (sy224 ing529))) +(recipe r224 (key (sx224 ing82))) +(recipe r224 (key (sy224 ing530))) +(recipe r224 (key (sx224 ing83))) +(recipe r224 (key (sy224 ing531))) +(recipe r225 (numIngredients 2)) +(recipe r225 (result (id item225))) +(recipe r225 (pattern 0 sx225)) +(recipe r225 (pattern 1 sy225)) +(recipe r225 (key (sx225 ing75))) +(recipe r225 (key (sy225 ing525))) +(recipe r225 (key (sx225 ing76))) +(recipe r225 (key (sy225 ing526))) +(recipe r225 (key (sx225 ing77))) +(recipe r225 (key (sy225 ing527))) +(recipe r225 (key (sx225 ing78))) +(recipe r225 (key (sy225 ing528))) +(recipe r225 (key (sx225 ing79))) +(recipe r225 (key (sy225 ing529))) +(recipe r225 (key (sx225 ing80))) +(recipe r225 (key (sy225 ing530))) +(recipe r225 (key (sx225 ing81))) +(recipe r225 (key (sy225 ing531))) +(recipe r225 (key (sx225 ing82))) +(recipe r225 (key (sy225 ing532))) +(recipe r225 (key (sx225 ing83))) +(recipe r225 (key (sy225 ing533))) +(recipe r225 (key (sx225 ing84))) +(recipe r225 (key (sy225 ing534))) +(recipe r225 (key (sx225 ing85))) +(recipe r225 (key (sy225 ing535))) +(recipe r225 (key (sx225 ing86))) +(recipe r225 (key (sy225 ing536))) +(recipe r226 (numIngredients 2)) +(recipe r226 (result (id item226))) +(recipe r226 (pattern 0 sx226)) +(recipe r226 (pattern 1 sy226)) +(recipe r226 (key (sx226 ing78))) +(recipe r226 (key (sy226 ing530))) +(recipe r226 (key (sx226 ing79))) +(recipe r226 (key (sy226 ing531))) +(recipe r226 (key (sx226 ing80))) +(recipe r226 (key (sy226 ing532))) +(recipe r226 (key (sx226 ing81))) +(recipe r226 (key (sy226 ing533))) +(recipe r226 (key (sx226 ing82))) +(recipe r226 (key (sy226 ing534))) +(recipe r226 (key (sx226 ing83))) +(recipe r226 (key (sy226 ing535))) +(recipe r226 (key (sx226 ing84))) +(recipe r226 (key (sy226 ing536))) +(recipe r226 (key (sx226 ing85))) +(recipe r226 (key (sy226 ing537))) +(recipe r226 (key (sx226 ing86))) +(recipe r226 (key (sy226 ing538))) +(recipe r226 (key (sx226 ing87))) +(recipe r226 (key (sy226 ing539))) +(recipe r226 (key (sx226 ing88))) +(recipe r226 (key (sy226 ing540))) +(recipe r226 (key (sx226 ing89))) +(recipe r226 (key (sy226 ing541))) +(recipe r227 (numIngredients 2)) +(recipe r227 (result (id item227))) +(recipe r227 (pattern 0 sx227)) +(recipe r227 (pattern 1 sy227)) +(recipe r227 (key (sx227 ing81))) +(recipe r227 (key (sy227 ing535))) +(recipe r227 (key (sx227 ing82))) +(recipe r227 (key (sy227 ing536))) +(recipe r227 (key (sx227 ing83))) +(recipe r227 (key (sy227 ing537))) +(recipe r227 (key (sx227 ing84))) +(recipe r227 (key (sy227 ing538))) +(recipe r227 (key (sx227 ing85))) +(recipe r227 (key (sy227 ing539))) +(recipe r227 (key (sx227 ing86))) +(recipe r227 (key (sy227 ing540))) +(recipe r227 (key (sx227 ing87))) +(recipe r227 (key (sy227 ing541))) +(recipe r227 (key (sx227 ing88))) +(recipe r227 (key (sy227 ing542))) +(recipe r227 (key (sx227 ing89))) +(recipe r227 (key (sy227 ing543))) +(recipe r227 (key (sx227 ing90))) +(recipe r227 (key (sy227 ing544))) +(recipe r227 (key (sx227 ing91))) +(recipe r227 (key (sy227 ing545))) +(recipe r227 (key (sx227 ing92))) +(recipe r227 (key (sy227 ing546))) +(recipe r228 (numIngredients 2)) +(recipe r228 (result (id item228))) +(recipe r228 (pattern 0 sx228)) +(recipe r228 (pattern 1 sy228)) +(recipe r228 (key (sx228 ing84))) +(recipe r228 (key (sy228 ing540))) +(recipe r228 (key (sx228 ing85))) +(recipe r228 (key (sy228 ing541))) +(recipe r228 (key (sx228 ing86))) +(recipe r228 (key (sy228 ing542))) +(recipe r228 (key (sx228 ing87))) +(recipe r228 (key (sy228 ing543))) +(recipe r228 (key (sx228 ing88))) +(recipe r228 (key (sy228 ing544))) +(recipe r228 (key (sx228 ing89))) +(recipe r228 (key (sy228 ing545))) +(recipe r228 (key (sx228 ing90))) +(recipe r228 (key (sy228 ing546))) +(recipe r228 (key (sx228 ing91))) +(recipe r228 (key (sy228 ing547))) +(recipe r228 (key (sx228 ing92))) +(recipe r228 (key (sy228 ing548))) +(recipe r228 (key (sx228 ing93))) +(recipe r228 (key (sy228 ing549))) +(recipe r228 (key (sx228 ing94))) +(recipe r228 (key (sy228 ing550))) +(recipe r228 (key (sx228 ing95))) +(recipe r228 (key (sy228 ing551))) +(recipe r229 (numIngredients 2)) +(recipe r229 (result (id item229))) +(recipe r229 (pattern 0 sx229)) +(recipe r229 (pattern 1 sy229)) +(recipe r229 (key (sx229 ing87))) +(recipe r229 (key (sy229 ing545))) +(recipe r229 (key (sx229 ing88))) +(recipe r229 (key (sy229 ing546))) +(recipe r229 (key (sx229 ing89))) +(recipe r229 (key (sy229 ing547))) +(recipe r229 (key (sx229 ing90))) +(recipe r229 (key (sy229 ing548))) +(recipe r229 (key (sx229 ing91))) +(recipe r229 (key (sy229 ing549))) +(recipe r229 (key (sx229 ing92))) +(recipe r229 (key (sy229 ing550))) +(recipe r229 (key (sx229 ing93))) +(recipe r229 (key (sy229 ing551))) +(recipe r229 (key (sx229 ing94))) +(recipe r229 (key (sy229 ing552))) +(recipe r229 (key (sx229 ing95))) +(recipe r229 (key (sy229 ing553))) +(recipe r229 (key (sx229 ing96))) +(recipe r229 (key (sy229 ing554))) +(recipe r229 (key (sx229 ing97))) +(recipe r229 (key (sy229 ing555))) +(recipe r229 (key (sx229 ing98))) +(recipe r229 (key (sy229 ing556))) +(recipe r230 (numIngredients 2)) +(recipe r230 (result (id item230))) +(recipe r230 (pattern 0 sx230)) +(recipe r230 (pattern 1 sy230)) +(recipe r230 (key (sx230 ing90))) +(recipe r230 (key (sy230 ing550))) +(recipe r230 (key (sx230 ing91))) +(recipe r230 (key (sy230 ing551))) +(recipe r230 (key (sx230 ing92))) +(recipe r230 (key (sy230 ing552))) +(recipe r230 (key (sx230 ing93))) +(recipe r230 (key (sy230 ing553))) +(recipe r230 (key (sx230 ing94))) +(recipe r230 (key (sy230 ing554))) +(recipe r230 (key (sx230 ing95))) +(recipe r230 (key (sy230 ing555))) +(recipe r230 (key (sx230 ing96))) +(recipe r230 (key (sy230 ing556))) +(recipe r230 (key (sx230 ing97))) +(recipe r230 (key (sy230 ing557))) +(recipe r230 (key (sx230 ing98))) +(recipe r230 (key (sy230 ing558))) +(recipe r230 (key (sx230 ing99))) +(recipe r230 (key (sy230 ing559))) +(recipe r230 (key (sx230 ing100))) +(recipe r230 (key (sy230 ing560))) +(recipe r230 (key (sx230 ing101))) +(recipe r230 (key (sy230 ing561))) +(recipe r231 (numIngredients 2)) +(recipe r231 (result (id item231))) +(recipe r231 (pattern 0 sx231)) +(recipe r231 (pattern 1 sy231)) +(recipe r231 (key (sx231 ing93))) +(recipe r231 (key (sy231 ing555))) +(recipe r231 (key (sx231 ing94))) +(recipe r231 (key (sy231 ing556))) +(recipe r231 (key (sx231 ing95))) +(recipe r231 (key (sy231 ing557))) +(recipe r231 (key (sx231 ing96))) +(recipe r231 (key (sy231 ing558))) +(recipe r231 (key (sx231 ing97))) +(recipe r231 (key (sy231 ing559))) +(recipe r231 (key (sx231 ing98))) +(recipe r231 (key (sy231 ing560))) +(recipe r231 (key (sx231 ing99))) +(recipe r231 (key (sy231 ing561))) +(recipe r231 (key (sx231 ing100))) +(recipe r231 (key (sy231 ing562))) +(recipe r231 (key (sx231 ing101))) +(recipe r231 (key (sy231 ing563))) +(recipe r231 (key (sx231 ing102))) +(recipe r231 (key (sy231 ing564))) +(recipe r231 (key (sx231 ing103))) +(recipe r231 (key (sy231 ing565))) +(recipe r231 (key (sx231 ing104))) +(recipe r231 (key (sy231 ing566))) +(recipe r232 (numIngredients 2)) +(recipe r232 (result (id item232))) +(recipe r232 (pattern 0 sx232)) +(recipe r232 (pattern 1 sy232)) +(recipe r232 (key (sx232 ing96))) +(recipe r232 (key (sy232 ing560))) +(recipe r232 (key (sx232 ing97))) +(recipe r232 (key (sy232 ing561))) +(recipe r232 (key (sx232 ing98))) +(recipe r232 (key (sy232 ing562))) +(recipe r232 (key (sx232 ing99))) +(recipe r232 (key (sy232 ing563))) +(recipe r232 (key (sx232 ing100))) +(recipe r232 (key (sy232 ing564))) +(recipe r232 (key (sx232 ing101))) +(recipe r232 (key (sy232 ing565))) +(recipe r232 (key (sx232 ing102))) +(recipe r232 (key (sy232 ing566))) +(recipe r232 (key (sx232 ing103))) +(recipe r232 (key (sy232 ing567))) +(recipe r232 (key (sx232 ing104))) +(recipe r232 (key (sy232 ing568))) +(recipe r232 (key (sx232 ing105))) +(recipe r232 (key (sy232 ing569))) +(recipe r232 (key (sx232 ing106))) +(recipe r232 (key (sy232 ing570))) +(recipe r232 (key (sx232 ing107))) +(recipe r232 (key (sy232 ing571))) +(recipe r233 (numIngredients 2)) +(recipe r233 (result (id item233))) +(recipe r233 (pattern 0 sx233)) +(recipe r233 (pattern 1 sy233)) +(recipe r233 (key (sx233 ing99))) +(recipe r233 (key (sy233 ing565))) +(recipe r233 (key (sx233 ing100))) +(recipe r233 (key (sy233 ing566))) +(recipe r233 (key (sx233 ing101))) +(recipe r233 (key (sy233 ing567))) +(recipe r233 (key (sx233 ing102))) +(recipe r233 (key (sy233 ing568))) +(recipe r233 (key (sx233 ing103))) +(recipe r233 (key (sy233 ing569))) +(recipe r233 (key (sx233 ing104))) +(recipe r233 (key (sy233 ing570))) +(recipe r233 (key (sx233 ing105))) +(recipe r233 (key (sy233 ing571))) +(recipe r233 (key (sx233 ing106))) +(recipe r233 (key (sy233 ing572))) +(recipe r233 (key (sx233 ing107))) +(recipe r233 (key (sy233 ing573))) +(recipe r233 (key (sx233 ing108))) +(recipe r233 (key (sy233 ing574))) +(recipe r233 (key (sx233 ing109))) +(recipe r233 (key (sy233 ing575))) +(recipe r233 (key (sx233 ing110))) +(recipe r233 (key (sy233 ing576))) +(recipe r234 (numIngredients 2)) +(recipe r234 (result (id item234))) +(recipe r234 (pattern 0 sx234)) +(recipe r234 (pattern 1 sy234)) +(recipe r234 (key (sx234 ing102))) +(recipe r234 (key (sy234 ing570))) +(recipe r234 (key (sx234 ing103))) +(recipe r234 (key (sy234 ing571))) +(recipe r234 (key (sx234 ing104))) +(recipe r234 (key (sy234 ing572))) +(recipe r234 (key (sx234 ing105))) +(recipe r234 (key (sy234 ing573))) +(recipe r234 (key (sx234 ing106))) +(recipe r234 (key (sy234 ing574))) +(recipe r234 (key (sx234 ing107))) +(recipe r234 (key (sy234 ing575))) +(recipe r234 (key (sx234 ing108))) +(recipe r234 (key (sy234 ing576))) +(recipe r234 (key (sx234 ing109))) +(recipe r234 (key (sy234 ing577))) +(recipe r234 (key (sx234 ing110))) +(recipe r234 (key (sy234 ing578))) +(recipe r234 (key (sx234 ing111))) +(recipe r234 (key (sy234 ing579))) +(recipe r234 (key (sx234 ing112))) +(recipe r234 (key (sy234 ing580))) +(recipe r234 (key (sx234 ing113))) +(recipe r234 (key (sy234 ing581))) +(recipe r235 (numIngredients 2)) +(recipe r235 (result (id item235))) +(recipe r235 (pattern 0 sx235)) +(recipe r235 (pattern 1 sy235)) +(recipe r235 (key (sx235 ing105))) +(recipe r235 (key (sy235 ing575))) +(recipe r235 (key (sx235 ing106))) +(recipe r235 (key (sy235 ing576))) +(recipe r235 (key (sx235 ing107))) +(recipe r235 (key (sy235 ing577))) +(recipe r235 (key (sx235 ing108))) +(recipe r235 (key (sy235 ing578))) +(recipe r235 (key (sx235 ing109))) +(recipe r235 (key (sy235 ing579))) +(recipe r235 (key (sx235 ing110))) +(recipe r235 (key (sy235 ing580))) +(recipe r235 (key (sx235 ing111))) +(recipe r235 (key (sy235 ing581))) +(recipe r235 (key (sx235 ing112))) +(recipe r235 (key (sy235 ing582))) +(recipe r235 (key (sx235 ing113))) +(recipe r235 (key (sy235 ing583))) +(recipe r235 (key (sx235 ing114))) +(recipe r235 (key (sy235 ing584))) +(recipe r235 (key (sx235 ing115))) +(recipe r235 (key (sy235 ing585))) +(recipe r235 (key (sx235 ing116))) +(recipe r235 (key (sy235 ing586))) +(recipe r236 (numIngredients 2)) +(recipe r236 (result (id item236))) +(recipe r236 (pattern 0 sx236)) +(recipe r236 (pattern 1 sy236)) +(recipe r236 (key (sx236 ing108))) +(recipe r236 (key (sy236 ing580))) +(recipe r236 (key (sx236 ing109))) +(recipe r236 (key (sy236 ing581))) +(recipe r236 (key (sx236 ing110))) +(recipe r236 (key (sy236 ing582))) +(recipe r236 (key (sx236 ing111))) +(recipe r236 (key (sy236 ing583))) +(recipe r236 (key (sx236 ing112))) +(recipe r236 (key (sy236 ing584))) +(recipe r236 (key (sx236 ing113))) +(recipe r236 (key (sy236 ing585))) +(recipe r236 (key (sx236 ing114))) +(recipe r236 (key (sy236 ing586))) +(recipe r236 (key (sx236 ing115))) +(recipe r236 (key (sy236 ing587))) +(recipe r236 (key (sx236 ing116))) +(recipe r236 (key (sy236 ing588))) +(recipe r236 (key (sx236 ing117))) +(recipe r236 (key (sy236 ing589))) +(recipe r236 (key (sx236 ing118))) +(recipe r236 (key (sy236 ing590))) +(recipe r236 (key (sx236 ing119))) +(recipe r236 (key (sy236 ing591))) +(recipe r237 (numIngredients 2)) +(recipe r237 (result (id item237))) +(recipe r237 (pattern 0 sx237)) +(recipe r237 (pattern 1 sy237)) +(recipe r237 (key (sx237 ing111))) +(recipe r237 (key (sy237 ing585))) +(recipe r237 (key (sx237 ing112))) +(recipe r237 (key (sy237 ing586))) +(recipe r237 (key (sx237 ing113))) +(recipe r237 (key (sy237 ing587))) +(recipe r237 (key (sx237 ing114))) +(recipe r237 (key (sy237 ing588))) +(recipe r237 (key (sx237 ing115))) +(recipe r237 (key (sy237 ing589))) +(recipe r237 (key (sx237 ing116))) +(recipe r237 (key (sy237 ing590))) +(recipe r237 (key (sx237 ing117))) +(recipe r237 (key (sy237 ing591))) +(recipe r237 (key (sx237 ing118))) +(recipe r237 (key (sy237 ing592))) +(recipe r237 (key (sx237 ing119))) +(recipe r237 (key (sy237 ing593))) +(recipe r237 (key (sx237 ing120))) +(recipe r237 (key (sy237 ing594))) +(recipe r237 (key (sx237 ing121))) +(recipe r237 (key (sy237 ing595))) +(recipe r237 (key (sx237 ing122))) +(recipe r237 (key (sy237 ing596))) +(recipe r238 (numIngredients 2)) +(recipe r238 (result (id item238))) +(recipe r238 (pattern 0 sx238)) +(recipe r238 (pattern 1 sy238)) +(recipe r238 (key (sx238 ing114))) +(recipe r238 (key (sy238 ing590))) +(recipe r238 (key (sx238 ing115))) +(recipe r238 (key (sy238 ing591))) +(recipe r238 (key (sx238 ing116))) +(recipe r238 (key (sy238 ing592))) +(recipe r238 (key (sx238 ing117))) +(recipe r238 (key (sy238 ing593))) +(recipe r238 (key (sx238 ing118))) +(recipe r238 (key (sy238 ing594))) +(recipe r238 (key (sx238 ing119))) +(recipe r238 (key (sy238 ing595))) +(recipe r238 (key (sx238 ing120))) +(recipe r238 (key (sy238 ing596))) +(recipe r238 (key (sx238 ing121))) +(recipe r238 (key (sy238 ing597))) +(recipe r238 (key (sx238 ing122))) +(recipe r238 (key (sy238 ing598))) +(recipe r238 (key (sx238 ing123))) +(recipe r238 (key (sy238 ing599))) +(recipe r238 (key (sx238 ing124))) +(recipe r238 (key (sy238 ing0))) +(recipe r238 (key (sx238 ing125))) +(recipe r238 (key (sy238 ing1))) +(recipe r239 (numIngredients 2)) +(recipe r239 (result (id item239))) +(recipe r239 (pattern 0 sx239)) +(recipe r239 (pattern 1 sy239)) +(recipe r239 (key (sx239 ing117))) +(recipe r239 (key (sy239 ing595))) +(recipe r239 (key (sx239 ing118))) +(recipe r239 (key (sy239 ing596))) +(recipe r239 (key (sx239 ing119))) +(recipe r239 (key (sy239 ing597))) +(recipe r239 (key (sx239 ing120))) +(recipe r239 (key (sy239 ing598))) +(recipe r239 (key (sx239 ing121))) +(recipe r239 (key (sy239 ing599))) +(recipe r239 (key (sx239 ing122))) +(recipe r239 (key (sy239 ing0))) +(recipe r239 (key (sx239 ing123))) +(recipe r239 (key (sy239 ing1))) +(recipe r239 (key (sx239 ing124))) +(recipe r239 (key (sy239 ing2))) +(recipe r239 (key (sx239 ing125))) +(recipe r239 (key (sy239 ing3))) +(recipe r239 (key (sx239 ing126))) +(recipe r239 (key (sy239 ing4))) +(recipe r239 (key (sx239 ing127))) +(recipe r239 (key (sy239 ing5))) +(recipe r239 (key (sx239 ing128))) +(recipe r239 (key (sy239 ing6))) +(recipe r240 (numIngredients 2)) +(recipe r240 (result (id item240))) +(recipe r240 (pattern 0 sx240)) +(recipe r240 (pattern 1 sy240)) +(recipe r240 (key (sx240 ing120))) +(recipe r240 (key (sy240 ing0))) +(recipe r240 (key (sx240 ing121))) +(recipe r240 (key (sy240 ing1))) +(recipe r240 (key (sx240 ing122))) +(recipe r240 (key (sy240 ing2))) +(recipe r240 (key (sx240 ing123))) +(recipe r240 (key (sy240 ing3))) +(recipe r240 (key (sx240 ing124))) +(recipe r240 (key (sy240 ing4))) +(recipe r240 (key (sx240 ing125))) +(recipe r240 (key (sy240 ing5))) +(recipe r240 (key (sx240 ing126))) +(recipe r240 (key (sy240 ing6))) +(recipe r240 (key (sx240 ing127))) +(recipe r240 (key (sy240 ing7))) +(recipe r240 (key (sx240 ing128))) +(recipe r240 (key (sy240 ing8))) +(recipe r240 (key (sx240 ing129))) +(recipe r240 (key (sy240 ing9))) +(recipe r240 (key (sx240 ing130))) +(recipe r240 (key (sy240 ing10))) +(recipe r240 (key (sx240 ing131))) +(recipe r240 (key (sy240 ing11))) +(recipe r241 (numIngredients 2)) +(recipe r241 (result (id item241))) +(recipe r241 (pattern 0 sx241)) +(recipe r241 (pattern 1 sy241)) +(recipe r241 (key (sx241 ing123))) +(recipe r241 (key (sy241 ing5))) +(recipe r241 (key (sx241 ing124))) +(recipe r241 (key (sy241 ing6))) +(recipe r241 (key (sx241 ing125))) +(recipe r241 (key (sy241 ing7))) +(recipe r241 (key (sx241 ing126))) +(recipe r241 (key (sy241 ing8))) +(recipe r241 (key (sx241 ing127))) +(recipe r241 (key (sy241 ing9))) +(recipe r241 (key (sx241 ing128))) +(recipe r241 (key (sy241 ing10))) +(recipe r241 (key (sx241 ing129))) +(recipe r241 (key (sy241 ing11))) +(recipe r241 (key (sx241 ing130))) +(recipe r241 (key (sy241 ing12))) +(recipe r241 (key (sx241 ing131))) +(recipe r241 (key (sy241 ing13))) +(recipe r241 (key (sx241 ing132))) +(recipe r241 (key (sy241 ing14))) +(recipe r241 (key (sx241 ing133))) +(recipe r241 (key (sy241 ing15))) +(recipe r241 (key (sx241 ing134))) +(recipe r241 (key (sy241 ing16))) +(recipe r242 (numIngredients 2)) +(recipe r242 (result (id item242))) +(recipe r242 (pattern 0 sx242)) +(recipe r242 (pattern 1 sy242)) +(recipe r242 (key (sx242 ing126))) +(recipe r242 (key (sy242 ing10))) +(recipe r242 (key (sx242 ing127))) +(recipe r242 (key (sy242 ing11))) +(recipe r242 (key (sx242 ing128))) +(recipe r242 (key (sy242 ing12))) +(recipe r242 (key (sx242 ing129))) +(recipe r242 (key (sy242 ing13))) +(recipe r242 (key (sx242 ing130))) +(recipe r242 (key (sy242 ing14))) +(recipe r242 (key (sx242 ing131))) +(recipe r242 (key (sy242 ing15))) +(recipe r242 (key (sx242 ing132))) +(recipe r242 (key (sy242 ing16))) +(recipe r242 (key (sx242 ing133))) +(recipe r242 (key (sy242 ing17))) +(recipe r242 (key (sx242 ing134))) +(recipe r242 (key (sy242 ing18))) +(recipe r242 (key (sx242 ing135))) +(recipe r242 (key (sy242 ing19))) +(recipe r242 (key (sx242 ing136))) +(recipe r242 (key (sy242 ing20))) +(recipe r242 (key (sx242 ing137))) +(recipe r242 (key (sy242 ing21))) +(recipe r243 (numIngredients 2)) +(recipe r243 (result (id item243))) +(recipe r243 (pattern 0 sx243)) +(recipe r243 (pattern 1 sy243)) +(recipe r243 (key (sx243 ing129))) +(recipe r243 (key (sy243 ing15))) +(recipe r243 (key (sx243 ing130))) +(recipe r243 (key (sy243 ing16))) +(recipe r243 (key (sx243 ing131))) +(recipe r243 (key (sy243 ing17))) +(recipe r243 (key (sx243 ing132))) +(recipe r243 (key (sy243 ing18))) +(recipe r243 (key (sx243 ing133))) +(recipe r243 (key (sy243 ing19))) +(recipe r243 (key (sx243 ing134))) +(recipe r243 (key (sy243 ing20))) +(recipe r243 (key (sx243 ing135))) +(recipe r243 (key (sy243 ing21))) +(recipe r243 (key (sx243 ing136))) +(recipe r243 (key (sy243 ing22))) +(recipe r243 (key (sx243 ing137))) +(recipe r243 (key (sy243 ing23))) +(recipe r243 (key (sx243 ing138))) +(recipe r243 (key (sy243 ing24))) +(recipe r243 (key (sx243 ing139))) +(recipe r243 (key (sy243 ing25))) +(recipe r243 (key (sx243 ing140))) +(recipe r243 (key (sy243 ing26))) +(recipe r244 (numIngredients 2)) +(recipe r244 (result (id item244))) +(recipe r244 (pattern 0 sx244)) +(recipe r244 (pattern 1 sy244)) +(recipe r244 (key (sx244 ing132))) +(recipe r244 (key (sy244 ing20))) +(recipe r244 (key (sx244 ing133))) +(recipe r244 (key (sy244 ing21))) +(recipe r244 (key (sx244 ing134))) +(recipe r244 (key (sy244 ing22))) +(recipe r244 (key (sx244 ing135))) +(recipe r244 (key (sy244 ing23))) +(recipe r244 (key (sx244 ing136))) +(recipe r244 (key (sy244 ing24))) +(recipe r244 (key (sx244 ing137))) +(recipe r244 (key (sy244 ing25))) +(recipe r244 (key (sx244 ing138))) +(recipe r244 (key (sy244 ing26))) +(recipe r244 (key (sx244 ing139))) +(recipe r244 (key (sy244 ing27))) +(recipe r244 (key (sx244 ing140))) +(recipe r244 (key (sy244 ing28))) +(recipe r244 (key (sx244 ing141))) +(recipe r244 (key (sy244 ing29))) +(recipe r244 (key (sx244 ing142))) +(recipe r244 (key (sy244 ing30))) +(recipe r244 (key (sx244 ing143))) +(recipe r244 (key (sy244 ing31))) +(recipe r245 (numIngredients 2)) +(recipe r245 (result (id item245))) +(recipe r245 (pattern 0 sx245)) +(recipe r245 (pattern 1 sy245)) +(recipe r245 (key (sx245 ing135))) +(recipe r245 (key (sy245 ing25))) +(recipe r245 (key (sx245 ing136))) +(recipe r245 (key (sy245 ing26))) +(recipe r245 (key (sx245 ing137))) +(recipe r245 (key (sy245 ing27))) +(recipe r245 (key (sx245 ing138))) +(recipe r245 (key (sy245 ing28))) +(recipe r245 (key (sx245 ing139))) +(recipe r245 (key (sy245 ing29))) +(recipe r245 (key (sx245 ing140))) +(recipe r245 (key (sy245 ing30))) +(recipe r245 (key (sx245 ing141))) +(recipe r245 (key (sy245 ing31))) +(recipe r245 (key (sx245 ing142))) +(recipe r245 (key (sy245 ing32))) +(recipe r245 (key (sx245 ing143))) +(recipe r245 (key (sy245 ing33))) +(recipe r245 (key (sx245 ing144))) +(recipe r245 (key (sy245 ing34))) +(recipe r245 (key (sx245 ing145))) +(recipe r245 (key (sy245 ing35))) +(recipe r245 (key (sx245 ing146))) +(recipe r245 (key (sy245 ing36))) +(recipe r246 (numIngredients 2)) +(recipe r246 (result (id item246))) +(recipe r246 (pattern 0 sx246)) +(recipe r246 (pattern 1 sy246)) +(recipe r246 (key (sx246 ing138))) +(recipe r246 (key (sy246 ing30))) +(recipe r246 (key (sx246 ing139))) +(recipe r246 (key (sy246 ing31))) +(recipe r246 (key (sx246 ing140))) +(recipe r246 (key (sy246 ing32))) +(recipe r246 (key (sx246 ing141))) +(recipe r246 (key (sy246 ing33))) +(recipe r246 (key (sx246 ing142))) +(recipe r246 (key (sy246 ing34))) +(recipe r246 (key (sx246 ing143))) +(recipe r246 (key (sy246 ing35))) +(recipe r246 (key (sx246 ing144))) +(recipe r246 (key (sy246 ing36))) +(recipe r246 (key (sx246 ing145))) +(recipe r246 (key (sy246 ing37))) +(recipe r246 (key (sx246 ing146))) +(recipe r246 (key (sy246 ing38))) +(recipe r246 (key (sx246 ing147))) +(recipe r246 (key (sy246 ing39))) +(recipe r246 (key (sx246 ing148))) +(recipe r246 (key (sy246 ing40))) +(recipe r246 (key (sx246 ing149))) +(recipe r246 (key (sy246 ing41))) +(recipe r247 (numIngredients 2)) +(recipe r247 (result (id item247))) +(recipe r247 (pattern 0 sx247)) +(recipe r247 (pattern 1 sy247)) +(recipe r247 (key (sx247 ing141))) +(recipe r247 (key (sy247 ing35))) +(recipe r247 (key (sx247 ing142))) +(recipe r247 (key (sy247 ing36))) +(recipe r247 (key (sx247 ing143))) +(recipe r247 (key (sy247 ing37))) +(recipe r247 (key (sx247 ing144))) +(recipe r247 (key (sy247 ing38))) +(recipe r247 (key (sx247 ing145))) +(recipe r247 (key (sy247 ing39))) +(recipe r247 (key (sx247 ing146))) +(recipe r247 (key (sy247 ing40))) +(recipe r247 (key (sx247 ing147))) +(recipe r247 (key (sy247 ing41))) +(recipe r247 (key (sx247 ing148))) +(recipe r247 (key (sy247 ing42))) +(recipe r247 (key (sx247 ing149))) +(recipe r247 (key (sy247 ing43))) +(recipe r247 (key (sx247 ing150))) +(recipe r247 (key (sy247 ing44))) +(recipe r247 (key (sx247 ing151))) +(recipe r247 (key (sy247 ing45))) +(recipe r247 (key (sx247 ing152))) +(recipe r247 (key (sy247 ing46))) +(recipe r248 (numIngredients 2)) +(recipe r248 (result (id item248))) +(recipe r248 (pattern 0 sx248)) +(recipe r248 (pattern 1 sy248)) +(recipe r248 (key (sx248 ing144))) +(recipe r248 (key (sy248 ing40))) +(recipe r248 (key (sx248 ing145))) +(recipe r248 (key (sy248 ing41))) +(recipe r248 (key (sx248 ing146))) +(recipe r248 (key (sy248 ing42))) +(recipe r248 (key (sx248 ing147))) +(recipe r248 (key (sy248 ing43))) +(recipe r248 (key (sx248 ing148))) +(recipe r248 (key (sy248 ing44))) +(recipe r248 (key (sx248 ing149))) +(recipe r248 (key (sy248 ing45))) +(recipe r248 (key (sx248 ing150))) +(recipe r248 (key (sy248 ing46))) +(recipe r248 (key (sx248 ing151))) +(recipe r248 (key (sy248 ing47))) +(recipe r248 (key (sx248 ing152))) +(recipe r248 (key (sy248 ing48))) +(recipe r248 (key (sx248 ing153))) +(recipe r248 (key (sy248 ing49))) +(recipe r248 (key (sx248 ing154))) +(recipe r248 (key (sy248 ing50))) +(recipe r248 (key (sx248 ing155))) +(recipe r248 (key (sy248 ing51))) +(recipe r249 (numIngredients 2)) +(recipe r249 (result (id item249))) +(recipe r249 (pattern 0 sx249)) +(recipe r249 (pattern 1 sy249)) +(recipe r249 (key (sx249 ing147))) +(recipe r249 (key (sy249 ing45))) +(recipe r249 (key (sx249 ing148))) +(recipe r249 (key (sy249 ing46))) +(recipe r249 (key (sx249 ing149))) +(recipe r249 (key (sy249 ing47))) +(recipe r249 (key (sx249 ing150))) +(recipe r249 (key (sy249 ing48))) +(recipe r249 (key (sx249 ing151))) +(recipe r249 (key (sy249 ing49))) +(recipe r249 (key (sx249 ing152))) +(recipe r249 (key (sy249 ing50))) +(recipe r249 (key (sx249 ing153))) +(recipe r249 (key (sy249 ing51))) +(recipe r249 (key (sx249 ing154))) +(recipe r249 (key (sy249 ing52))) +(recipe r249 (key (sx249 ing155))) +(recipe r249 (key (sy249 ing53))) +(recipe r249 (key (sx249 ing156))) +(recipe r249 (key (sy249 ing54))) +(recipe r249 (key (sx249 ing157))) +(recipe r249 (key (sy249 ing55))) +(recipe r249 (key (sx249 ing158))) +(recipe r249 (key (sy249 ing56))) +(recipe r250 (numIngredients 2)) +(recipe r250 (result (id item250))) +(recipe r250 (pattern 0 sx250)) +(recipe r250 (pattern 1 sy250)) +(recipe r250 (key (sx250 ing150))) +(recipe r250 (key (sy250 ing50))) +(recipe r250 (key (sx250 ing151))) +(recipe r250 (key (sy250 ing51))) +(recipe r250 (key (sx250 ing152))) +(recipe r250 (key (sy250 ing52))) +(recipe r250 (key (sx250 ing153))) +(recipe r250 (key (sy250 ing53))) +(recipe r250 (key (sx250 ing154))) +(recipe r250 (key (sy250 ing54))) +(recipe r250 (key (sx250 ing155))) +(recipe r250 (key (sy250 ing55))) +(recipe r250 (key (sx250 ing156))) +(recipe r250 (key (sy250 ing56))) +(recipe r250 (key (sx250 ing157))) +(recipe r250 (key (sy250 ing57))) +(recipe r250 (key (sx250 ing158))) +(recipe r250 (key (sy250 ing58))) +(recipe r250 (key (sx250 ing159))) +(recipe r250 (key (sy250 ing59))) +(recipe r250 (key (sx250 ing160))) +(recipe r250 (key (sy250 ing60))) +(recipe r250 (key (sx250 ing161))) +(recipe r250 (key (sy250 ing61))) +(recipe r251 (numIngredients 2)) +(recipe r251 (result (id item251))) +(recipe r251 (pattern 0 sx251)) +(recipe r251 (pattern 1 sy251)) +(recipe r251 (key (sx251 ing153))) +(recipe r251 (key (sy251 ing55))) +(recipe r251 (key (sx251 ing154))) +(recipe r251 (key (sy251 ing56))) +(recipe r251 (key (sx251 ing155))) +(recipe r251 (key (sy251 ing57))) +(recipe r251 (key (sx251 ing156))) +(recipe r251 (key (sy251 ing58))) +(recipe r251 (key (sx251 ing157))) +(recipe r251 (key (sy251 ing59))) +(recipe r251 (key (sx251 ing158))) +(recipe r251 (key (sy251 ing60))) +(recipe r251 (key (sx251 ing159))) +(recipe r251 (key (sy251 ing61))) +(recipe r251 (key (sx251 ing160))) +(recipe r251 (key (sy251 ing62))) +(recipe r251 (key (sx251 ing161))) +(recipe r251 (key (sy251 ing63))) +(recipe r251 (key (sx251 ing162))) +(recipe r251 (key (sy251 ing64))) +(recipe r251 (key (sx251 ing163))) +(recipe r251 (key (sy251 ing65))) +(recipe r251 (key (sx251 ing164))) +(recipe r251 (key (sy251 ing66))) +(recipe r252 (numIngredients 2)) +(recipe r252 (result (id item252))) +(recipe r252 (pattern 0 sx252)) +(recipe r252 (pattern 1 sy252)) +(recipe r252 (key (sx252 ing156))) +(recipe r252 (key (sy252 ing60))) +(recipe r252 (key (sx252 ing157))) +(recipe r252 (key (sy252 ing61))) +(recipe r252 (key (sx252 ing158))) +(recipe r252 (key (sy252 ing62))) +(recipe r252 (key (sx252 ing159))) +(recipe r252 (key (sy252 ing63))) +(recipe r252 (key (sx252 ing160))) +(recipe r252 (key (sy252 ing64))) +(recipe r252 (key (sx252 ing161))) +(recipe r252 (key (sy252 ing65))) +(recipe r252 (key (sx252 ing162))) +(recipe r252 (key (sy252 ing66))) +(recipe r252 (key (sx252 ing163))) +(recipe r252 (key (sy252 ing67))) +(recipe r252 (key (sx252 ing164))) +(recipe r252 (key (sy252 ing68))) +(recipe r252 (key (sx252 ing165))) +(recipe r252 (key (sy252 ing69))) +(recipe r252 (key (sx252 ing166))) +(recipe r252 (key (sy252 ing70))) +(recipe r252 (key (sx252 ing167))) +(recipe r252 (key (sy252 ing71))) +(recipe r253 (numIngredients 2)) +(recipe r253 (result (id item253))) +(recipe r253 (pattern 0 sx253)) +(recipe r253 (pattern 1 sy253)) +(recipe r253 (key (sx253 ing159))) +(recipe r253 (key (sy253 ing65))) +(recipe r253 (key (sx253 ing160))) +(recipe r253 (key (sy253 ing66))) +(recipe r253 (key (sx253 ing161))) +(recipe r253 (key (sy253 ing67))) +(recipe r253 (key (sx253 ing162))) +(recipe r253 (key (sy253 ing68))) +(recipe r253 (key (sx253 ing163))) +(recipe r253 (key (sy253 ing69))) +(recipe r253 (key (sx253 ing164))) +(recipe r253 (key (sy253 ing70))) +(recipe r253 (key (sx253 ing165))) +(recipe r253 (key (sy253 ing71))) +(recipe r253 (key (sx253 ing166))) +(recipe r253 (key (sy253 ing72))) +(recipe r253 (key (sx253 ing167))) +(recipe r253 (key (sy253 ing73))) +(recipe r253 (key (sx253 ing168))) +(recipe r253 (key (sy253 ing74))) +(recipe r253 (key (sx253 ing169))) +(recipe r253 (key (sy253 ing75))) +(recipe r253 (key (sx253 ing170))) +(recipe r253 (key (sy253 ing76))) +(recipe r254 (numIngredients 2)) +(recipe r254 (result (id item254))) +(recipe r254 (pattern 0 sx254)) +(recipe r254 (pattern 1 sy254)) +(recipe r254 (key (sx254 ing162))) +(recipe r254 (key (sy254 ing70))) +(recipe r254 (key (sx254 ing163))) +(recipe r254 (key (sy254 ing71))) +(recipe r254 (key (sx254 ing164))) +(recipe r254 (key (sy254 ing72))) +(recipe r254 (key (sx254 ing165))) +(recipe r254 (key (sy254 ing73))) +(recipe r254 (key (sx254 ing166))) +(recipe r254 (key (sy254 ing74))) +(recipe r254 (key (sx254 ing167))) +(recipe r254 (key (sy254 ing75))) +(recipe r254 (key (sx254 ing168))) +(recipe r254 (key (sy254 ing76))) +(recipe r254 (key (sx254 ing169))) +(recipe r254 (key (sy254 ing77))) +(recipe r254 (key (sx254 ing170))) +(recipe r254 (key (sy254 ing78))) +(recipe r254 (key (sx254 ing171))) +(recipe r254 (key (sy254 ing79))) +(recipe r254 (key (sx254 ing172))) +(recipe r254 (key (sy254 ing80))) +(recipe r254 (key (sx254 ing173))) +(recipe r254 (key (sy254 ing81))) +(recipe r255 (numIngredients 2)) +(recipe r255 (result (id item255))) +(recipe r255 (pattern 0 sx255)) +(recipe r255 (pattern 1 sy255)) +(recipe r255 (key (sx255 ing165))) +(recipe r255 (key (sy255 ing75))) +(recipe r255 (key (sx255 ing166))) +(recipe r255 (key (sy255 ing76))) +(recipe r255 (key (sx255 ing167))) +(recipe r255 (key (sy255 ing77))) +(recipe r255 (key (sx255 ing168))) +(recipe r255 (key (sy255 ing78))) +(recipe r255 (key (sx255 ing169))) +(recipe r255 (key (sy255 ing79))) +(recipe r255 (key (sx255 ing170))) +(recipe r255 (key (sy255 ing80))) +(recipe r255 (key (sx255 ing171))) +(recipe r255 (key (sy255 ing81))) +(recipe r255 (key (sx255 ing172))) +(recipe r255 (key (sy255 ing82))) +(recipe r255 (key (sx255 ing173))) +(recipe r255 (key (sy255 ing83))) +(recipe r255 (key (sx255 ing174))) +(recipe r255 (key (sy255 ing84))) +(recipe r255 (key (sx255 ing175))) +(recipe r255 (key (sy255 ing85))) +(recipe r255 (key (sx255 ing176))) +(recipe r255 (key (sy255 ing86))) +(recipe r256 (numIngredients 2)) +(recipe r256 (result (id item256))) +(recipe r256 (pattern 0 sx256)) +(recipe r256 (pattern 1 sy256)) +(recipe r256 (key (sx256 ing168))) +(recipe r256 (key (sy256 ing80))) +(recipe r256 (key (sx256 ing169))) +(recipe r256 (key (sy256 ing81))) +(recipe r256 (key (sx256 ing170))) +(recipe r256 (key (sy256 ing82))) +(recipe r256 (key (sx256 ing171))) +(recipe r256 (key (sy256 ing83))) +(recipe r256 (key (sx256 ing172))) +(recipe r256 (key (sy256 ing84))) +(recipe r256 (key (sx256 ing173))) +(recipe r256 (key (sy256 ing85))) +(recipe r256 (key (sx256 ing174))) +(recipe r256 (key (sy256 ing86))) +(recipe r256 (key (sx256 ing175))) +(recipe r256 (key (sy256 ing87))) +(recipe r256 (key (sx256 ing176))) +(recipe r256 (key (sy256 ing88))) +(recipe r256 (key (sx256 ing177))) +(recipe r256 (key (sy256 ing89))) +(recipe r256 (key (sx256 ing178))) +(recipe r256 (key (sy256 ing90))) +(recipe r256 (key (sx256 ing179))) +(recipe r256 (key (sy256 ing91))) +(recipe r257 (numIngredients 2)) +(recipe r257 (result (id item257))) +(recipe r257 (pattern 0 sx257)) +(recipe r257 (pattern 1 sy257)) +(recipe r257 (key (sx257 ing171))) +(recipe r257 (key (sy257 ing85))) +(recipe r257 (key (sx257 ing172))) +(recipe r257 (key (sy257 ing86))) +(recipe r257 (key (sx257 ing173))) +(recipe r257 (key (sy257 ing87))) +(recipe r257 (key (sx257 ing174))) +(recipe r257 (key (sy257 ing88))) +(recipe r257 (key (sx257 ing175))) +(recipe r257 (key (sy257 ing89))) +(recipe r257 (key (sx257 ing176))) +(recipe r257 (key (sy257 ing90))) +(recipe r257 (key (sx257 ing177))) +(recipe r257 (key (sy257 ing91))) +(recipe r257 (key (sx257 ing178))) +(recipe r257 (key (sy257 ing92))) +(recipe r257 (key (sx257 ing179))) +(recipe r257 (key (sy257 ing93))) +(recipe r257 (key (sx257 ing180))) +(recipe r257 (key (sy257 ing94))) +(recipe r257 (key (sx257 ing181))) +(recipe r257 (key (sy257 ing95))) +(recipe r257 (key (sx257 ing182))) +(recipe r257 (key (sy257 ing96))) +(recipe r258 (numIngredients 2)) +(recipe r258 (result (id item258))) +(recipe r258 (pattern 0 sx258)) +(recipe r258 (pattern 1 sy258)) +(recipe r258 (key (sx258 ing174))) +(recipe r258 (key (sy258 ing90))) +(recipe r258 (key (sx258 ing175))) +(recipe r258 (key (sy258 ing91))) +(recipe r258 (key (sx258 ing176))) +(recipe r258 (key (sy258 ing92))) +(recipe r258 (key (sx258 ing177))) +(recipe r258 (key (sy258 ing93))) +(recipe r258 (key (sx258 ing178))) +(recipe r258 (key (sy258 ing94))) +(recipe r258 (key (sx258 ing179))) +(recipe r258 (key (sy258 ing95))) +(recipe r258 (key (sx258 ing180))) +(recipe r258 (key (sy258 ing96))) +(recipe r258 (key (sx258 ing181))) +(recipe r258 (key (sy258 ing97))) +(recipe r258 (key (sx258 ing182))) +(recipe r258 (key (sy258 ing98))) +(recipe r258 (key (sx258 ing183))) +(recipe r258 (key (sy258 ing99))) +(recipe r258 (key (sx258 ing184))) +(recipe r258 (key (sy258 ing100))) +(recipe r258 (key (sx258 ing185))) +(recipe r258 (key (sy258 ing101))) +(recipe r259 (numIngredients 2)) +(recipe r259 (result (id item259))) +(recipe r259 (pattern 0 sx259)) +(recipe r259 (pattern 1 sy259)) +(recipe r259 (key (sx259 ing177))) +(recipe r259 (key (sy259 ing95))) +(recipe r259 (key (sx259 ing178))) +(recipe r259 (key (sy259 ing96))) +(recipe r259 (key (sx259 ing179))) +(recipe r259 (key (sy259 ing97))) +(recipe r259 (key (sx259 ing180))) +(recipe r259 (key (sy259 ing98))) +(recipe r259 (key (sx259 ing181))) +(recipe r259 (key (sy259 ing99))) +(recipe r259 (key (sx259 ing182))) +(recipe r259 (key (sy259 ing100))) +(recipe r259 (key (sx259 ing183))) +(recipe r259 (key (sy259 ing101))) +(recipe r259 (key (sx259 ing184))) +(recipe r259 (key (sy259 ing102))) +(recipe r259 (key (sx259 ing185))) +(recipe r259 (key (sy259 ing103))) +(recipe r259 (key (sx259 ing186))) +(recipe r259 (key (sy259 ing104))) +(recipe r259 (key (sx259 ing187))) +(recipe r259 (key (sy259 ing105))) +(recipe r259 (key (sx259 ing188))) +(recipe r259 (key (sy259 ing106))) +(recipe r260 (numIngredients 2)) +(recipe r260 (result (id item260))) +(recipe r260 (pattern 0 sx260)) +(recipe r260 (pattern 1 sy260)) +(recipe r260 (key (sx260 ing180))) +(recipe r260 (key (sy260 ing100))) +(recipe r260 (key (sx260 ing181))) +(recipe r260 (key (sy260 ing101))) +(recipe r260 (key (sx260 ing182))) +(recipe r260 (key (sy260 ing102))) +(recipe r260 (key (sx260 ing183))) +(recipe r260 (key (sy260 ing103))) +(recipe r260 (key (sx260 ing184))) +(recipe r260 (key (sy260 ing104))) +(recipe r260 (key (sx260 ing185))) +(recipe r260 (key (sy260 ing105))) +(recipe r260 (key (sx260 ing186))) +(recipe r260 (key (sy260 ing106))) +(recipe r260 (key (sx260 ing187))) +(recipe r260 (key (sy260 ing107))) +(recipe r260 (key (sx260 ing188))) +(recipe r260 (key (sy260 ing108))) +(recipe r260 (key (sx260 ing189))) +(recipe r260 (key (sy260 ing109))) +(recipe r260 (key (sx260 ing190))) +(recipe r260 (key (sy260 ing110))) +(recipe r260 (key (sx260 ing191))) +(recipe r260 (key (sy260 ing111))) +(recipe r261 (numIngredients 2)) +(recipe r261 (result (id item261))) +(recipe r261 (pattern 0 sx261)) +(recipe r261 (pattern 1 sy261)) +(recipe r261 (key (sx261 ing183))) +(recipe r261 (key (sy261 ing105))) +(recipe r261 (key (sx261 ing184))) +(recipe r261 (key (sy261 ing106))) +(recipe r261 (key (sx261 ing185))) +(recipe r261 (key (sy261 ing107))) +(recipe r261 (key (sx261 ing186))) +(recipe r261 (key (sy261 ing108))) +(recipe r261 (key (sx261 ing187))) +(recipe r261 (key (sy261 ing109))) +(recipe r261 (key (sx261 ing188))) +(recipe r261 (key (sy261 ing110))) +(recipe r261 (key (sx261 ing189))) +(recipe r261 (key (sy261 ing111))) +(recipe r261 (key (sx261 ing190))) +(recipe r261 (key (sy261 ing112))) +(recipe r261 (key (sx261 ing191))) +(recipe r261 (key (sy261 ing113))) +(recipe r261 (key (sx261 ing192))) +(recipe r261 (key (sy261 ing114))) +(recipe r261 (key (sx261 ing193))) +(recipe r261 (key (sy261 ing115))) +(recipe r261 (key (sx261 ing194))) +(recipe r261 (key (sy261 ing116))) +(recipe r262 (numIngredients 2)) +(recipe r262 (result (id item262))) +(recipe r262 (pattern 0 sx262)) +(recipe r262 (pattern 1 sy262)) +(recipe r262 (key (sx262 ing186))) +(recipe r262 (key (sy262 ing110))) +(recipe r262 (key (sx262 ing187))) +(recipe r262 (key (sy262 ing111))) +(recipe r262 (key (sx262 ing188))) +(recipe r262 (key (sy262 ing112))) +(recipe r262 (key (sx262 ing189))) +(recipe r262 (key (sy262 ing113))) +(recipe r262 (key (sx262 ing190))) +(recipe r262 (key (sy262 ing114))) +(recipe r262 (key (sx262 ing191))) +(recipe r262 (key (sy262 ing115))) +(recipe r262 (key (sx262 ing192))) +(recipe r262 (key (sy262 ing116))) +(recipe r262 (key (sx262 ing193))) +(recipe r262 (key (sy262 ing117))) +(recipe r262 (key (sx262 ing194))) +(recipe r262 (key (sy262 ing118))) +(recipe r262 (key (sx262 ing195))) +(recipe r262 (key (sy262 ing119))) +(recipe r262 (key (sx262 ing196))) +(recipe r262 (key (sy262 ing120))) +(recipe r262 (key (sx262 ing197))) +(recipe r262 (key (sy262 ing121))) +(recipe r263 (numIngredients 2)) +(recipe r263 (result (id item263))) +(recipe r263 (pattern 0 sx263)) +(recipe r263 (pattern 1 sy263)) +(recipe r263 (key (sx263 ing189))) +(recipe r263 (key (sy263 ing115))) +(recipe r263 (key (sx263 ing190))) +(recipe r263 (key (sy263 ing116))) +(recipe r263 (key (sx263 ing191))) +(recipe r263 (key (sy263 ing117))) +(recipe r263 (key (sx263 ing192))) +(recipe r263 (key (sy263 ing118))) +(recipe r263 (key (sx263 ing193))) +(recipe r263 (key (sy263 ing119))) +(recipe r263 (key (sx263 ing194))) +(recipe r263 (key (sy263 ing120))) +(recipe r263 (key (sx263 ing195))) +(recipe r263 (key (sy263 ing121))) +(recipe r263 (key (sx263 ing196))) +(recipe r263 (key (sy263 ing122))) +(recipe r263 (key (sx263 ing197))) +(recipe r263 (key (sy263 ing123))) +(recipe r263 (key (sx263 ing198))) +(recipe r263 (key (sy263 ing124))) +(recipe r263 (key (sx263 ing199))) +(recipe r263 (key (sy263 ing125))) +(recipe r263 (key (sx263 ing200))) +(recipe r263 (key (sy263 ing126))) +(recipe r264 (numIngredients 2)) +(recipe r264 (result (id item264))) +(recipe r264 (pattern 0 sx264)) +(recipe r264 (pattern 1 sy264)) +(recipe r264 (key (sx264 ing192))) +(recipe r264 (key (sy264 ing120))) +(recipe r264 (key (sx264 ing193))) +(recipe r264 (key (sy264 ing121))) +(recipe r264 (key (sx264 ing194))) +(recipe r264 (key (sy264 ing122))) +(recipe r264 (key (sx264 ing195))) +(recipe r264 (key (sy264 ing123))) +(recipe r264 (key (sx264 ing196))) +(recipe r264 (key (sy264 ing124))) +(recipe r264 (key (sx264 ing197))) +(recipe r264 (key (sy264 ing125))) +(recipe r264 (key (sx264 ing198))) +(recipe r264 (key (sy264 ing126))) +(recipe r264 (key (sx264 ing199))) +(recipe r264 (key (sy264 ing127))) +(recipe r264 (key (sx264 ing200))) +(recipe r264 (key (sy264 ing128))) +(recipe r264 (key (sx264 ing201))) +(recipe r264 (key (sy264 ing129))) +(recipe r264 (key (sx264 ing202))) +(recipe r264 (key (sy264 ing130))) +(recipe r264 (key (sx264 ing203))) +(recipe r264 (key (sy264 ing131))) +(recipe r265 (numIngredients 2)) +(recipe r265 (result (id item265))) +(recipe r265 (pattern 0 sx265)) +(recipe r265 (pattern 1 sy265)) +(recipe r265 (key (sx265 ing195))) +(recipe r265 (key (sy265 ing125))) +(recipe r265 (key (sx265 ing196))) +(recipe r265 (key (sy265 ing126))) +(recipe r265 (key (sx265 ing197))) +(recipe r265 (key (sy265 ing127))) +(recipe r265 (key (sx265 ing198))) +(recipe r265 (key (sy265 ing128))) +(recipe r265 (key (sx265 ing199))) +(recipe r265 (key (sy265 ing129))) +(recipe r265 (key (sx265 ing200))) +(recipe r265 (key (sy265 ing130))) +(recipe r265 (key (sx265 ing201))) +(recipe r265 (key (sy265 ing131))) +(recipe r265 (key (sx265 ing202))) +(recipe r265 (key (sy265 ing132))) +(recipe r265 (key (sx265 ing203))) +(recipe r265 (key (sy265 ing133))) +(recipe r265 (key (sx265 ing204))) +(recipe r265 (key (sy265 ing134))) +(recipe r265 (key (sx265 ing205))) +(recipe r265 (key (sy265 ing135))) +(recipe r265 (key (sx265 ing206))) +(recipe r265 (key (sy265 ing136))) +(recipe r266 (numIngredients 2)) +(recipe r266 (result (id item266))) +(recipe r266 (pattern 0 sx266)) +(recipe r266 (pattern 1 sy266)) +(recipe r266 (key (sx266 ing198))) +(recipe r266 (key (sy266 ing130))) +(recipe r266 (key (sx266 ing199))) +(recipe r266 (key (sy266 ing131))) +(recipe r266 (key (sx266 ing200))) +(recipe r266 (key (sy266 ing132))) +(recipe r266 (key (sx266 ing201))) +(recipe r266 (key (sy266 ing133))) +(recipe r266 (key (sx266 ing202))) +(recipe r266 (key (sy266 ing134))) +(recipe r266 (key (sx266 ing203))) +(recipe r266 (key (sy266 ing135))) +(recipe r266 (key (sx266 ing204))) +(recipe r266 (key (sy266 ing136))) +(recipe r266 (key (sx266 ing205))) +(recipe r266 (key (sy266 ing137))) +(recipe r266 (key (sx266 ing206))) +(recipe r266 (key (sy266 ing138))) +(recipe r266 (key (sx266 ing207))) +(recipe r266 (key (sy266 ing139))) +(recipe r266 (key (sx266 ing208))) +(recipe r266 (key (sy266 ing140))) +(recipe r266 (key (sx266 ing209))) +(recipe r266 (key (sy266 ing141))) +(recipe r267 (numIngredients 2)) +(recipe r267 (result (id item267))) +(recipe r267 (pattern 0 sx267)) +(recipe r267 (pattern 1 sy267)) +(recipe r267 (key (sx267 ing201))) +(recipe r267 (key (sy267 ing135))) +(recipe r267 (key (sx267 ing202))) +(recipe r267 (key (sy267 ing136))) +(recipe r267 (key (sx267 ing203))) +(recipe r267 (key (sy267 ing137))) +(recipe r267 (key (sx267 ing204))) +(recipe r267 (key (sy267 ing138))) +(recipe r267 (key (sx267 ing205))) +(recipe r267 (key (sy267 ing139))) +(recipe r267 (key (sx267 ing206))) +(recipe r267 (key (sy267 ing140))) +(recipe r267 (key (sx267 ing207))) +(recipe r267 (key (sy267 ing141))) +(recipe r267 (key (sx267 ing208))) +(recipe r267 (key (sy267 ing142))) +(recipe r267 (key (sx267 ing209))) +(recipe r267 (key (sy267 ing143))) +(recipe r267 (key (sx267 ing210))) +(recipe r267 (key (sy267 ing144))) +(recipe r267 (key (sx267 ing211))) +(recipe r267 (key (sy267 ing145))) +(recipe r267 (key (sx267 ing212))) +(recipe r267 (key (sy267 ing146))) +(recipe r268 (numIngredients 2)) +(recipe r268 (result (id item268))) +(recipe r268 (pattern 0 sx268)) +(recipe r268 (pattern 1 sy268)) +(recipe r268 (key (sx268 ing204))) +(recipe r268 (key (sy268 ing140))) +(recipe r268 (key (sx268 ing205))) +(recipe r268 (key (sy268 ing141))) +(recipe r268 (key (sx268 ing206))) +(recipe r268 (key (sy268 ing142))) +(recipe r268 (key (sx268 ing207))) +(recipe r268 (key (sy268 ing143))) +(recipe r268 (key (sx268 ing208))) +(recipe r268 (key (sy268 ing144))) +(recipe r268 (key (sx268 ing209))) +(recipe r268 (key (sy268 ing145))) +(recipe r268 (key (sx268 ing210))) +(recipe r268 (key (sy268 ing146))) +(recipe r268 (key (sx268 ing211))) +(recipe r268 (key (sy268 ing147))) +(recipe r268 (key (sx268 ing212))) +(recipe r268 (key (sy268 ing148))) +(recipe r268 (key (sx268 ing213))) +(recipe r268 (key (sy268 ing149))) +(recipe r268 (key (sx268 ing214))) +(recipe r268 (key (sy268 ing150))) +(recipe r268 (key (sx268 ing215))) +(recipe r268 (key (sy268 ing151))) +(recipe r269 (numIngredients 2)) +(recipe r269 (result (id item269))) +(recipe r269 (pattern 0 sx269)) +(recipe r269 (pattern 1 sy269)) +(recipe r269 (key (sx269 ing207))) +(recipe r269 (key (sy269 ing145))) +(recipe r269 (key (sx269 ing208))) +(recipe r269 (key (sy269 ing146))) +(recipe r269 (key (sx269 ing209))) +(recipe r269 (key (sy269 ing147))) +(recipe r269 (key (sx269 ing210))) +(recipe r269 (key (sy269 ing148))) +(recipe r269 (key (sx269 ing211))) +(recipe r269 (key (sy269 ing149))) +(recipe r269 (key (sx269 ing212))) +(recipe r269 (key (sy269 ing150))) +(recipe r269 (key (sx269 ing213))) +(recipe r269 (key (sy269 ing151))) +(recipe r269 (key (sx269 ing214))) +(recipe r269 (key (sy269 ing152))) +(recipe r269 (key (sx269 ing215))) +(recipe r269 (key (sy269 ing153))) +(recipe r269 (key (sx269 ing216))) +(recipe r269 (key (sy269 ing154))) +(recipe r269 (key (sx269 ing217))) +(recipe r269 (key (sy269 ing155))) +(recipe r269 (key (sx269 ing218))) +(recipe r269 (key (sy269 ing156))) +(recipe r270 (numIngredients 2)) +(recipe r270 (result (id item270))) +(recipe r270 (pattern 0 sx270)) +(recipe r270 (pattern 1 sy270)) +(recipe r270 (key (sx270 ing210))) +(recipe r270 (key (sy270 ing150))) +(recipe r270 (key (sx270 ing211))) +(recipe r270 (key (sy270 ing151))) +(recipe r270 (key (sx270 ing212))) +(recipe r270 (key (sy270 ing152))) +(recipe r270 (key (sx270 ing213))) +(recipe r270 (key (sy270 ing153))) +(recipe r270 (key (sx270 ing214))) +(recipe r270 (key (sy270 ing154))) +(recipe r270 (key (sx270 ing215))) +(recipe r270 (key (sy270 ing155))) +(recipe r270 (key (sx270 ing216))) +(recipe r270 (key (sy270 ing156))) +(recipe r270 (key (sx270 ing217))) +(recipe r270 (key (sy270 ing157))) +(recipe r270 (key (sx270 ing218))) +(recipe r270 (key (sy270 ing158))) +(recipe r270 (key (sx270 ing219))) +(recipe r270 (key (sy270 ing159))) +(recipe r270 (key (sx270 ing220))) +(recipe r270 (key (sy270 ing160))) +(recipe r270 (key (sx270 ing221))) +(recipe r270 (key (sy270 ing161))) +(recipe r271 (numIngredients 2)) +(recipe r271 (result (id item271))) +(recipe r271 (pattern 0 sx271)) +(recipe r271 (pattern 1 sy271)) +(recipe r271 (key (sx271 ing213))) +(recipe r271 (key (sy271 ing155))) +(recipe r271 (key (sx271 ing214))) +(recipe r271 (key (sy271 ing156))) +(recipe r271 (key (sx271 ing215))) +(recipe r271 (key (sy271 ing157))) +(recipe r271 (key (sx271 ing216))) +(recipe r271 (key (sy271 ing158))) +(recipe r271 (key (sx271 ing217))) +(recipe r271 (key (sy271 ing159))) +(recipe r271 (key (sx271 ing218))) +(recipe r271 (key (sy271 ing160))) +(recipe r271 (key (sx271 ing219))) +(recipe r271 (key (sy271 ing161))) +(recipe r271 (key (sx271 ing220))) +(recipe r271 (key (sy271 ing162))) +(recipe r271 (key (sx271 ing221))) +(recipe r271 (key (sy271 ing163))) +(recipe r271 (key (sx271 ing222))) +(recipe r271 (key (sy271 ing164))) +(recipe r271 (key (sx271 ing223))) +(recipe r271 (key (sy271 ing165))) +(recipe r271 (key (sx271 ing224))) +(recipe r271 (key (sy271 ing166))) +(recipe r272 (numIngredients 2)) +(recipe r272 (result (id item272))) +(recipe r272 (pattern 0 sx272)) +(recipe r272 (pattern 1 sy272)) +(recipe r272 (key (sx272 ing216))) +(recipe r272 (key (sy272 ing160))) +(recipe r272 (key (sx272 ing217))) +(recipe r272 (key (sy272 ing161))) +(recipe r272 (key (sx272 ing218))) +(recipe r272 (key (sy272 ing162))) +(recipe r272 (key (sx272 ing219))) +(recipe r272 (key (sy272 ing163))) +(recipe r272 (key (sx272 ing220))) +(recipe r272 (key (sy272 ing164))) +(recipe r272 (key (sx272 ing221))) +(recipe r272 (key (sy272 ing165))) +(recipe r272 (key (sx272 ing222))) +(recipe r272 (key (sy272 ing166))) +(recipe r272 (key (sx272 ing223))) +(recipe r272 (key (sy272 ing167))) +(recipe r272 (key (sx272 ing224))) +(recipe r272 (key (sy272 ing168))) +(recipe r272 (key (sx272 ing225))) +(recipe r272 (key (sy272 ing169))) +(recipe r272 (key (sx272 ing226))) +(recipe r272 (key (sy272 ing170))) +(recipe r272 (key (sx272 ing227))) +(recipe r272 (key (sy272 ing171))) +(recipe r273 (numIngredients 2)) +(recipe r273 (result (id item273))) +(recipe r273 (pattern 0 sx273)) +(recipe r273 (pattern 1 sy273)) +(recipe r273 (key (sx273 ing219))) +(recipe r273 (key (sy273 ing165))) +(recipe r273 (key (sx273 ing220))) +(recipe r273 (key (sy273 ing166))) +(recipe r273 (key (sx273 ing221))) +(recipe r273 (key (sy273 ing167))) +(recipe r273 (key (sx273 ing222))) +(recipe r273 (key (sy273 ing168))) +(recipe r273 (key (sx273 ing223))) +(recipe r273 (key (sy273 ing169))) +(recipe r273 (key (sx273 ing224))) +(recipe r273 (key (sy273 ing170))) +(recipe r273 (key (sx273 ing225))) +(recipe r273 (key (sy273 ing171))) +(recipe r273 (key (sx273 ing226))) +(recipe r273 (key (sy273 ing172))) +(recipe r273 (key (sx273 ing227))) +(recipe r273 (key (sy273 ing173))) +(recipe r273 (key (sx273 ing228))) +(recipe r273 (key (sy273 ing174))) +(recipe r273 (key (sx273 ing229))) +(recipe r273 (key (sy273 ing175))) +(recipe r273 (key (sx273 ing230))) +(recipe r273 (key (sy273 ing176))) +(recipe r274 (numIngredients 2)) +(recipe r274 (result (id item274))) +(recipe r274 (pattern 0 sx274)) +(recipe r274 (pattern 1 sy274)) +(recipe r274 (key (sx274 ing222))) +(recipe r274 (key (sy274 ing170))) +(recipe r274 (key (sx274 ing223))) +(recipe r274 (key (sy274 ing171))) +(recipe r274 (key (sx274 ing224))) +(recipe r274 (key (sy274 ing172))) +(recipe r274 (key (sx274 ing225))) +(recipe r274 (key (sy274 ing173))) +(recipe r274 (key (sx274 ing226))) +(recipe r274 (key (sy274 ing174))) +(recipe r274 (key (sx274 ing227))) +(recipe r274 (key (sy274 ing175))) +(recipe r274 (key (sx274 ing228))) +(recipe r274 (key (sy274 ing176))) +(recipe r274 (key (sx274 ing229))) +(recipe r274 (key (sy274 ing177))) +(recipe r274 (key (sx274 ing230))) +(recipe r274 (key (sy274 ing178))) +(recipe r274 (key (sx274 ing231))) +(recipe r274 (key (sy274 ing179))) +(recipe r274 (key (sx274 ing232))) +(recipe r274 (key (sy274 ing180))) +(recipe r274 (key (sx274 ing233))) +(recipe r274 (key (sy274 ing181))) +(recipe r275 (numIngredients 2)) +(recipe r275 (result (id item275))) +(recipe r275 (pattern 0 sx275)) +(recipe r275 (pattern 1 sy275)) +(recipe r275 (key (sx275 ing225))) +(recipe r275 (key (sy275 ing175))) +(recipe r275 (key (sx275 ing226))) +(recipe r275 (key (sy275 ing176))) +(recipe r275 (key (sx275 ing227))) +(recipe r275 (key (sy275 ing177))) +(recipe r275 (key (sx275 ing228))) +(recipe r275 (key (sy275 ing178))) +(recipe r275 (key (sx275 ing229))) +(recipe r275 (key (sy275 ing179))) +(recipe r275 (key (sx275 ing230))) +(recipe r275 (key (sy275 ing180))) +(recipe r275 (key (sx275 ing231))) +(recipe r275 (key (sy275 ing181))) +(recipe r275 (key (sx275 ing232))) +(recipe r275 (key (sy275 ing182))) +(recipe r275 (key (sx275 ing233))) +(recipe r275 (key (sy275 ing183))) +(recipe r275 (key (sx275 ing234))) +(recipe r275 (key (sy275 ing184))) +(recipe r275 (key (sx275 ing235))) +(recipe r275 (key (sy275 ing185))) +(recipe r275 (key (sx275 ing236))) +(recipe r275 (key (sy275 ing186))) +(recipe r276 (numIngredients 2)) +(recipe r276 (result (id item276))) +(recipe r276 (pattern 0 sx276)) +(recipe r276 (pattern 1 sy276)) +(recipe r276 (key (sx276 ing228))) +(recipe r276 (key (sy276 ing180))) +(recipe r276 (key (sx276 ing229))) +(recipe r276 (key (sy276 ing181))) +(recipe r276 (key (sx276 ing230))) +(recipe r276 (key (sy276 ing182))) +(recipe r276 (key (sx276 ing231))) +(recipe r276 (key (sy276 ing183))) +(recipe r276 (key (sx276 ing232))) +(recipe r276 (key (sy276 ing184))) +(recipe r276 (key (sx276 ing233))) +(recipe r276 (key (sy276 ing185))) +(recipe r276 (key (sx276 ing234))) +(recipe r276 (key (sy276 ing186))) +(recipe r276 (key (sx276 ing235))) +(recipe r276 (key (sy276 ing187))) +(recipe r276 (key (sx276 ing236))) +(recipe r276 (key (sy276 ing188))) +(recipe r276 (key (sx276 ing237))) +(recipe r276 (key (sy276 ing189))) +(recipe r276 (key (sx276 ing238))) +(recipe r276 (key (sy276 ing190))) +(recipe r276 (key (sx276 ing239))) +(recipe r276 (key (sy276 ing191))) +(recipe r277 (numIngredients 2)) +(recipe r277 (result (id item277))) +(recipe r277 (pattern 0 sx277)) +(recipe r277 (pattern 1 sy277)) +(recipe r277 (key (sx277 ing231))) +(recipe r277 (key (sy277 ing185))) +(recipe r277 (key (sx277 ing232))) +(recipe r277 (key (sy277 ing186))) +(recipe r277 (key (sx277 ing233))) +(recipe r277 (key (sy277 ing187))) +(recipe r277 (key (sx277 ing234))) +(recipe r277 (key (sy277 ing188))) +(recipe r277 (key (sx277 ing235))) +(recipe r277 (key (sy277 ing189))) +(recipe r277 (key (sx277 ing236))) +(recipe r277 (key (sy277 ing190))) +(recipe r277 (key (sx277 ing237))) +(recipe r277 (key (sy277 ing191))) +(recipe r277 (key (sx277 ing238))) +(recipe r277 (key (sy277 ing192))) +(recipe r277 (key (sx277 ing239))) +(recipe r277 (key (sy277 ing193))) +(recipe r277 (key (sx277 ing240))) +(recipe r277 (key (sy277 ing194))) +(recipe r277 (key (sx277 ing241))) +(recipe r277 (key (sy277 ing195))) +(recipe r277 (key (sx277 ing242))) +(recipe r277 (key (sy277 ing196))) +(recipe r278 (numIngredients 2)) +(recipe r278 (result (id item278))) +(recipe r278 (pattern 0 sx278)) +(recipe r278 (pattern 1 sy278)) +(recipe r278 (key (sx278 ing234))) +(recipe r278 (key (sy278 ing190))) +(recipe r278 (key (sx278 ing235))) +(recipe r278 (key (sy278 ing191))) +(recipe r278 (key (sx278 ing236))) +(recipe r278 (key (sy278 ing192))) +(recipe r278 (key (sx278 ing237))) +(recipe r278 (key (sy278 ing193))) +(recipe r278 (key (sx278 ing238))) +(recipe r278 (key (sy278 ing194))) +(recipe r278 (key (sx278 ing239))) +(recipe r278 (key (sy278 ing195))) +(recipe r278 (key (sx278 ing240))) +(recipe r278 (key (sy278 ing196))) +(recipe r278 (key (sx278 ing241))) +(recipe r278 (key (sy278 ing197))) +(recipe r278 (key (sx278 ing242))) +(recipe r278 (key (sy278 ing198))) +(recipe r278 (key (sx278 ing243))) +(recipe r278 (key (sy278 ing199))) +(recipe r278 (key (sx278 ing244))) +(recipe r278 (key (sy278 ing200))) +(recipe r278 (key (sx278 ing245))) +(recipe r278 (key (sy278 ing201))) +(recipe r279 (numIngredients 2)) +(recipe r279 (result (id item279))) +(recipe r279 (pattern 0 sx279)) +(recipe r279 (pattern 1 sy279)) +(recipe r279 (key (sx279 ing237))) +(recipe r279 (key (sy279 ing195))) +(recipe r279 (key (sx279 ing238))) +(recipe r279 (key (sy279 ing196))) +(recipe r279 (key (sx279 ing239))) +(recipe r279 (key (sy279 ing197))) +(recipe r279 (key (sx279 ing240))) +(recipe r279 (key (sy279 ing198))) +(recipe r279 (key (sx279 ing241))) +(recipe r279 (key (sy279 ing199))) +(recipe r279 (key (sx279 ing242))) +(recipe r279 (key (sy279 ing200))) +(recipe r279 (key (sx279 ing243))) +(recipe r279 (key (sy279 ing201))) +(recipe r279 (key (sx279 ing244))) +(recipe r279 (key (sy279 ing202))) +(recipe r279 (key (sx279 ing245))) +(recipe r279 (key (sy279 ing203))) +(recipe r279 (key (sx279 ing246))) +(recipe r279 (key (sy279 ing204))) +(recipe r279 (key (sx279 ing247))) +(recipe r279 (key (sy279 ing205))) +(recipe r279 (key (sx279 ing248))) +(recipe r279 (key (sy279 ing206))) +(recipe r280 (numIngredients 2)) +(recipe r280 (result (id item280))) +(recipe r280 (pattern 0 sx280)) +(recipe r280 (pattern 1 sy280)) +(recipe r280 (key (sx280 ing240))) +(recipe r280 (key (sy280 ing200))) +(recipe r280 (key (sx280 ing241))) +(recipe r280 (key (sy280 ing201))) +(recipe r280 (key (sx280 ing242))) +(recipe r280 (key (sy280 ing202))) +(recipe r280 (key (sx280 ing243))) +(recipe r280 (key (sy280 ing203))) +(recipe r280 (key (sx280 ing244))) +(recipe r280 (key (sy280 ing204))) +(recipe r280 (key (sx280 ing245))) +(recipe r280 (key (sy280 ing205))) +(recipe r280 (key (sx280 ing246))) +(recipe r280 (key (sy280 ing206))) +(recipe r280 (key (sx280 ing247))) +(recipe r280 (key (sy280 ing207))) +(recipe r280 (key (sx280 ing248))) +(recipe r280 (key (sy280 ing208))) +(recipe r280 (key (sx280 ing249))) +(recipe r280 (key (sy280 ing209))) +(recipe r280 (key (sx280 ing250))) +(recipe r280 (key (sy280 ing210))) +(recipe r280 (key (sx280 ing251))) +(recipe r280 (key (sy280 ing211))) +(recipe r281 (numIngredients 2)) +(recipe r281 (result (id item281))) +(recipe r281 (pattern 0 sx281)) +(recipe r281 (pattern 1 sy281)) +(recipe r281 (key (sx281 ing243))) +(recipe r281 (key (sy281 ing205))) +(recipe r281 (key (sx281 ing244))) +(recipe r281 (key (sy281 ing206))) +(recipe r281 (key (sx281 ing245))) +(recipe r281 (key (sy281 ing207))) +(recipe r281 (key (sx281 ing246))) +(recipe r281 (key (sy281 ing208))) +(recipe r281 (key (sx281 ing247))) +(recipe r281 (key (sy281 ing209))) +(recipe r281 (key (sx281 ing248))) +(recipe r281 (key (sy281 ing210))) +(recipe r281 (key (sx281 ing249))) +(recipe r281 (key (sy281 ing211))) +(recipe r281 (key (sx281 ing250))) +(recipe r281 (key (sy281 ing212))) +(recipe r281 (key (sx281 ing251))) +(recipe r281 (key (sy281 ing213))) +(recipe r281 (key (sx281 ing252))) +(recipe r281 (key (sy281 ing214))) +(recipe r281 (key (sx281 ing253))) +(recipe r281 (key (sy281 ing215))) +(recipe r281 (key (sx281 ing254))) +(recipe r281 (key (sy281 ing216))) +(recipe r282 (numIngredients 2)) +(recipe r282 (result (id item282))) +(recipe r282 (pattern 0 sx282)) +(recipe r282 (pattern 1 sy282)) +(recipe r282 (key (sx282 ing246))) +(recipe r282 (key (sy282 ing210))) +(recipe r282 (key (sx282 ing247))) +(recipe r282 (key (sy282 ing211))) +(recipe r282 (key (sx282 ing248))) +(recipe r282 (key (sy282 ing212))) +(recipe r282 (key (sx282 ing249))) +(recipe r282 (key (sy282 ing213))) +(recipe r282 (key (sx282 ing250))) +(recipe r282 (key (sy282 ing214))) +(recipe r282 (key (sx282 ing251))) +(recipe r282 (key (sy282 ing215))) +(recipe r282 (key (sx282 ing252))) +(recipe r282 (key (sy282 ing216))) +(recipe r282 (key (sx282 ing253))) +(recipe r282 (key (sy282 ing217))) +(recipe r282 (key (sx282 ing254))) +(recipe r282 (key (sy282 ing218))) +(recipe r282 (key (sx282 ing255))) +(recipe r282 (key (sy282 ing219))) +(recipe r282 (key (sx282 ing256))) +(recipe r282 (key (sy282 ing220))) +(recipe r282 (key (sx282 ing257))) +(recipe r282 (key (sy282 ing221))) +(recipe r283 (numIngredients 2)) +(recipe r283 (result (id item283))) +(recipe r283 (pattern 0 sx283)) +(recipe r283 (pattern 1 sy283)) +(recipe r283 (key (sx283 ing249))) +(recipe r283 (key (sy283 ing215))) +(recipe r283 (key (sx283 ing250))) +(recipe r283 (key (sy283 ing216))) +(recipe r283 (key (sx283 ing251))) +(recipe r283 (key (sy283 ing217))) +(recipe r283 (key (sx283 ing252))) +(recipe r283 (key (sy283 ing218))) +(recipe r283 (key (sx283 ing253))) +(recipe r283 (key (sy283 ing219))) +(recipe r283 (key (sx283 ing254))) +(recipe r283 (key (sy283 ing220))) +(recipe r283 (key (sx283 ing255))) +(recipe r283 (key (sy283 ing221))) +(recipe r283 (key (sx283 ing256))) +(recipe r283 (key (sy283 ing222))) +(recipe r283 (key (sx283 ing257))) +(recipe r283 (key (sy283 ing223))) +(recipe r283 (key (sx283 ing258))) +(recipe r283 (key (sy283 ing224))) +(recipe r283 (key (sx283 ing259))) +(recipe r283 (key (sy283 ing225))) +(recipe r283 (key (sx283 ing260))) +(recipe r283 (key (sy283 ing226))) +(recipe r284 (numIngredients 2)) +(recipe r284 (result (id item284))) +(recipe r284 (pattern 0 sx284)) +(recipe r284 (pattern 1 sy284)) +(recipe r284 (key (sx284 ing252))) +(recipe r284 (key (sy284 ing220))) +(recipe r284 (key (sx284 ing253))) +(recipe r284 (key (sy284 ing221))) +(recipe r284 (key (sx284 ing254))) +(recipe r284 (key (sy284 ing222))) +(recipe r284 (key (sx284 ing255))) +(recipe r284 (key (sy284 ing223))) +(recipe r284 (key (sx284 ing256))) +(recipe r284 (key (sy284 ing224))) +(recipe r284 (key (sx284 ing257))) +(recipe r284 (key (sy284 ing225))) +(recipe r284 (key (sx284 ing258))) +(recipe r284 (key (sy284 ing226))) +(recipe r284 (key (sx284 ing259))) +(recipe r284 (key (sy284 ing227))) +(recipe r284 (key (sx284 ing260))) +(recipe r284 (key (sy284 ing228))) +(recipe r284 (key (sx284 ing261))) +(recipe r284 (key (sy284 ing229))) +(recipe r284 (key (sx284 ing262))) +(recipe r284 (key (sy284 ing230))) +(recipe r284 (key (sx284 ing263))) +(recipe r284 (key (sy284 ing231))) +(recipe r285 (numIngredients 2)) +(recipe r285 (result (id item285))) +(recipe r285 (pattern 0 sx285)) +(recipe r285 (pattern 1 sy285)) +(recipe r285 (key (sx285 ing255))) +(recipe r285 (key (sy285 ing225))) +(recipe r285 (key (sx285 ing256))) +(recipe r285 (key (sy285 ing226))) +(recipe r285 (key (sx285 ing257))) +(recipe r285 (key (sy285 ing227))) +(recipe r285 (key (sx285 ing258))) +(recipe r285 (key (sy285 ing228))) +(recipe r285 (key (sx285 ing259))) +(recipe r285 (key (sy285 ing229))) +(recipe r285 (key (sx285 ing260))) +(recipe r285 (key (sy285 ing230))) +(recipe r285 (key (sx285 ing261))) +(recipe r285 (key (sy285 ing231))) +(recipe r285 (key (sx285 ing262))) +(recipe r285 (key (sy285 ing232))) +(recipe r285 (key (sx285 ing263))) +(recipe r285 (key (sy285 ing233))) +(recipe r285 (key (sx285 ing264))) +(recipe r285 (key (sy285 ing234))) +(recipe r285 (key (sx285 ing265))) +(recipe r285 (key (sy285 ing235))) +(recipe r285 (key (sx285 ing266))) +(recipe r285 (key (sy285 ing236))) +(recipe r286 (numIngredients 2)) +(recipe r286 (result (id item286))) +(recipe r286 (pattern 0 sx286)) +(recipe r286 (pattern 1 sy286)) +(recipe r286 (key (sx286 ing258))) +(recipe r286 (key (sy286 ing230))) +(recipe r286 (key (sx286 ing259))) +(recipe r286 (key (sy286 ing231))) +(recipe r286 (key (sx286 ing260))) +(recipe r286 (key (sy286 ing232))) +(recipe r286 (key (sx286 ing261))) +(recipe r286 (key (sy286 ing233))) +(recipe r286 (key (sx286 ing262))) +(recipe r286 (key (sy286 ing234))) +(recipe r286 (key (sx286 ing263))) +(recipe r286 (key (sy286 ing235))) +(recipe r286 (key (sx286 ing264))) +(recipe r286 (key (sy286 ing236))) +(recipe r286 (key (sx286 ing265))) +(recipe r286 (key (sy286 ing237))) +(recipe r286 (key (sx286 ing266))) +(recipe r286 (key (sy286 ing238))) +(recipe r286 (key (sx286 ing267))) +(recipe r286 (key (sy286 ing239))) +(recipe r286 (key (sx286 ing268))) +(recipe r286 (key (sy286 ing240))) +(recipe r286 (key (sx286 ing269))) +(recipe r286 (key (sy286 ing241))) +(recipe r287 (numIngredients 2)) +(recipe r287 (result (id item287))) +(recipe r287 (pattern 0 sx287)) +(recipe r287 (pattern 1 sy287)) +(recipe r287 (key (sx287 ing261))) +(recipe r287 (key (sy287 ing235))) +(recipe r287 (key (sx287 ing262))) +(recipe r287 (key (sy287 ing236))) +(recipe r287 (key (sx287 ing263))) +(recipe r287 (key (sy287 ing237))) +(recipe r287 (key (sx287 ing264))) +(recipe r287 (key (sy287 ing238))) +(recipe r287 (key (sx287 ing265))) +(recipe r287 (key (sy287 ing239))) +(recipe r287 (key (sx287 ing266))) +(recipe r287 (key (sy287 ing240))) +(recipe r287 (key (sx287 ing267))) +(recipe r287 (key (sy287 ing241))) +(recipe r287 (key (sx287 ing268))) +(recipe r287 (key (sy287 ing242))) +(recipe r287 (key (sx287 ing269))) +(recipe r287 (key (sy287 ing243))) +(recipe r287 (key (sx287 ing270))) +(recipe r287 (key (sy287 ing244))) +(recipe r287 (key (sx287 ing271))) +(recipe r287 (key (sy287 ing245))) +(recipe r287 (key (sx287 ing272))) +(recipe r287 (key (sy287 ing246))) +(recipe r288 (numIngredients 2)) +(recipe r288 (result (id item288))) +(recipe r288 (pattern 0 sx288)) +(recipe r288 (pattern 1 sy288)) +(recipe r288 (key (sx288 ing264))) +(recipe r288 (key (sy288 ing240))) +(recipe r288 (key (sx288 ing265))) +(recipe r288 (key (sy288 ing241))) +(recipe r288 (key (sx288 ing266))) +(recipe r288 (key (sy288 ing242))) +(recipe r288 (key (sx288 ing267))) +(recipe r288 (key (sy288 ing243))) +(recipe r288 (key (sx288 ing268))) +(recipe r288 (key (sy288 ing244))) +(recipe r288 (key (sx288 ing269))) +(recipe r288 (key (sy288 ing245))) +(recipe r288 (key (sx288 ing270))) +(recipe r288 (key (sy288 ing246))) +(recipe r288 (key (sx288 ing271))) +(recipe r288 (key (sy288 ing247))) +(recipe r288 (key (sx288 ing272))) +(recipe r288 (key (sy288 ing248))) +(recipe r288 (key (sx288 ing273))) +(recipe r288 (key (sy288 ing249))) +(recipe r288 (key (sx288 ing274))) +(recipe r288 (key (sy288 ing250))) +(recipe r288 (key (sx288 ing275))) +(recipe r288 (key (sy288 ing251))) +(recipe r289 (numIngredients 2)) +(recipe r289 (result (id item289))) +(recipe r289 (pattern 0 sx289)) +(recipe r289 (pattern 1 sy289)) +(recipe r289 (key (sx289 ing267))) +(recipe r289 (key (sy289 ing245))) +(recipe r289 (key (sx289 ing268))) +(recipe r289 (key (sy289 ing246))) +(recipe r289 (key (sx289 ing269))) +(recipe r289 (key (sy289 ing247))) +(recipe r289 (key (sx289 ing270))) +(recipe r289 (key (sy289 ing248))) +(recipe r289 (key (sx289 ing271))) +(recipe r289 (key (sy289 ing249))) +(recipe r289 (key (sx289 ing272))) +(recipe r289 (key (sy289 ing250))) +(recipe r289 (key (sx289 ing273))) +(recipe r289 (key (sy289 ing251))) +(recipe r289 (key (sx289 ing274))) +(recipe r289 (key (sy289 ing252))) +(recipe r289 (key (sx289 ing275))) +(recipe r289 (key (sy289 ing253))) +(recipe r289 (key (sx289 ing276))) +(recipe r289 (key (sy289 ing254))) +(recipe r289 (key (sx289 ing277))) +(recipe r289 (key (sy289 ing255))) +(recipe r289 (key (sx289 ing278))) +(recipe r289 (key (sy289 ing256))) +(recipe r290 (numIngredients 2)) +(recipe r290 (result (id item290))) +(recipe r290 (pattern 0 sx290)) +(recipe r290 (pattern 1 sy290)) +(recipe r290 (key (sx290 ing270))) +(recipe r290 (key (sy290 ing250))) +(recipe r290 (key (sx290 ing271))) +(recipe r290 (key (sy290 ing251))) +(recipe r290 (key (sx290 ing272))) +(recipe r290 (key (sy290 ing252))) +(recipe r290 (key (sx290 ing273))) +(recipe r290 (key (sy290 ing253))) +(recipe r290 (key (sx290 ing274))) +(recipe r290 (key (sy290 ing254))) +(recipe r290 (key (sx290 ing275))) +(recipe r290 (key (sy290 ing255))) +(recipe r290 (key (sx290 ing276))) +(recipe r290 (key (sy290 ing256))) +(recipe r290 (key (sx290 ing277))) +(recipe r290 (key (sy290 ing257))) +(recipe r290 (key (sx290 ing278))) +(recipe r290 (key (sy290 ing258))) +(recipe r290 (key (sx290 ing279))) +(recipe r290 (key (sy290 ing259))) +(recipe r290 (key (sx290 ing280))) +(recipe r290 (key (sy290 ing260))) +(recipe r290 (key (sx290 ing281))) +(recipe r290 (key (sy290 ing261))) +(recipe r291 (numIngredients 2)) +(recipe r291 (result (id item291))) +(recipe r291 (pattern 0 sx291)) +(recipe r291 (pattern 1 sy291)) +(recipe r291 (key (sx291 ing273))) +(recipe r291 (key (sy291 ing255))) +(recipe r291 (key (sx291 ing274))) +(recipe r291 (key (sy291 ing256))) +(recipe r291 (key (sx291 ing275))) +(recipe r291 (key (sy291 ing257))) +(recipe r291 (key (sx291 ing276))) +(recipe r291 (key (sy291 ing258))) +(recipe r291 (key (sx291 ing277))) +(recipe r291 (key (sy291 ing259))) +(recipe r291 (key (sx291 ing278))) +(recipe r291 (key (sy291 ing260))) +(recipe r291 (key (sx291 ing279))) +(recipe r291 (key (sy291 ing261))) +(recipe r291 (key (sx291 ing280))) +(recipe r291 (key (sy291 ing262))) +(recipe r291 (key (sx291 ing281))) +(recipe r291 (key (sy291 ing263))) +(recipe r291 (key (sx291 ing282))) +(recipe r291 (key (sy291 ing264))) +(recipe r291 (key (sx291 ing283))) +(recipe r291 (key (sy291 ing265))) +(recipe r291 (key (sx291 ing284))) +(recipe r291 (key (sy291 ing266))) +(recipe r292 (numIngredients 2)) +(recipe r292 (result (id item292))) +(recipe r292 (pattern 0 sx292)) +(recipe r292 (pattern 1 sy292)) +(recipe r292 (key (sx292 ing276))) +(recipe r292 (key (sy292 ing260))) +(recipe r292 (key (sx292 ing277))) +(recipe r292 (key (sy292 ing261))) +(recipe r292 (key (sx292 ing278))) +(recipe r292 (key (sy292 ing262))) +(recipe r292 (key (sx292 ing279))) +(recipe r292 (key (sy292 ing263))) +(recipe r292 (key (sx292 ing280))) +(recipe r292 (key (sy292 ing264))) +(recipe r292 (key (sx292 ing281))) +(recipe r292 (key (sy292 ing265))) +(recipe r292 (key (sx292 ing282))) +(recipe r292 (key (sy292 ing266))) +(recipe r292 (key (sx292 ing283))) +(recipe r292 (key (sy292 ing267))) +(recipe r292 (key (sx292 ing284))) +(recipe r292 (key (sy292 ing268))) +(recipe r292 (key (sx292 ing285))) +(recipe r292 (key (sy292 ing269))) +(recipe r292 (key (sx292 ing286))) +(recipe r292 (key (sy292 ing270))) +(recipe r292 (key (sx292 ing287))) +(recipe r292 (key (sy292 ing271))) +(recipe r293 (numIngredients 2)) +(recipe r293 (result (id item293))) +(recipe r293 (pattern 0 sx293)) +(recipe r293 (pattern 1 sy293)) +(recipe r293 (key (sx293 ing279))) +(recipe r293 (key (sy293 ing265))) +(recipe r293 (key (sx293 ing280))) +(recipe r293 (key (sy293 ing266))) +(recipe r293 (key (sx293 ing281))) +(recipe r293 (key (sy293 ing267))) +(recipe r293 (key (sx293 ing282))) +(recipe r293 (key (sy293 ing268))) +(recipe r293 (key (sx293 ing283))) +(recipe r293 (key (sy293 ing269))) +(recipe r293 (key (sx293 ing284))) +(recipe r293 (key (sy293 ing270))) +(recipe r293 (key (sx293 ing285))) +(recipe r293 (key (sy293 ing271))) +(recipe r293 (key (sx293 ing286))) +(recipe r293 (key (sy293 ing272))) +(recipe r293 (key (sx293 ing287))) +(recipe r293 (key (sy293 ing273))) +(recipe r293 (key (sx293 ing288))) +(recipe r293 (key (sy293 ing274))) +(recipe r293 (key (sx293 ing289))) +(recipe r293 (key (sy293 ing275))) +(recipe r293 (key (sx293 ing290))) +(recipe r293 (key (sy293 ing276))) +(recipe r294 (numIngredients 2)) +(recipe r294 (result (id item294))) +(recipe r294 (pattern 0 sx294)) +(recipe r294 (pattern 1 sy294)) +(recipe r294 (key (sx294 ing282))) +(recipe r294 (key (sy294 ing270))) +(recipe r294 (key (sx294 ing283))) +(recipe r294 (key (sy294 ing271))) +(recipe r294 (key (sx294 ing284))) +(recipe r294 (key (sy294 ing272))) +(recipe r294 (key (sx294 ing285))) +(recipe r294 (key (sy294 ing273))) +(recipe r294 (key (sx294 ing286))) +(recipe r294 (key (sy294 ing274))) +(recipe r294 (key (sx294 ing287))) +(recipe r294 (key (sy294 ing275))) +(recipe r294 (key (sx294 ing288))) +(recipe r294 (key (sy294 ing276))) +(recipe r294 (key (sx294 ing289))) +(recipe r294 (key (sy294 ing277))) +(recipe r294 (key (sx294 ing290))) +(recipe r294 (key (sy294 ing278))) +(recipe r294 (key (sx294 ing291))) +(recipe r294 (key (sy294 ing279))) +(recipe r294 (key (sx294 ing292))) +(recipe r294 (key (sy294 ing280))) +(recipe r294 (key (sx294 ing293))) +(recipe r294 (key (sy294 ing281))) +(recipe r295 (numIngredients 2)) +(recipe r295 (result (id item295))) +(recipe r295 (pattern 0 sx295)) +(recipe r295 (pattern 1 sy295)) +(recipe r295 (key (sx295 ing285))) +(recipe r295 (key (sy295 ing275))) +(recipe r295 (key (sx295 ing286))) +(recipe r295 (key (sy295 ing276))) +(recipe r295 (key (sx295 ing287))) +(recipe r295 (key (sy295 ing277))) +(recipe r295 (key (sx295 ing288))) +(recipe r295 (key (sy295 ing278))) +(recipe r295 (key (sx295 ing289))) +(recipe r295 (key (sy295 ing279))) +(recipe r295 (key (sx295 ing290))) +(recipe r295 (key (sy295 ing280))) +(recipe r295 (key (sx295 ing291))) +(recipe r295 (key (sy295 ing281))) +(recipe r295 (key (sx295 ing292))) +(recipe r295 (key (sy295 ing282))) +(recipe r295 (key (sx295 ing293))) +(recipe r295 (key (sy295 ing283))) +(recipe r295 (key (sx295 ing294))) +(recipe r295 (key (sy295 ing284))) +(recipe r295 (key (sx295 ing295))) +(recipe r295 (key (sy295 ing285))) +(recipe r295 (key (sx295 ing296))) +(recipe r295 (key (sy295 ing286))) +(recipe r296 (numIngredients 2)) +(recipe r296 (result (id item296))) +(recipe r296 (pattern 0 sx296)) +(recipe r296 (pattern 1 sy296)) +(recipe r296 (key (sx296 ing288))) +(recipe r296 (key (sy296 ing280))) +(recipe r296 (key (sx296 ing289))) +(recipe r296 (key (sy296 ing281))) +(recipe r296 (key (sx296 ing290))) +(recipe r296 (key (sy296 ing282))) +(recipe r296 (key (sx296 ing291))) +(recipe r296 (key (sy296 ing283))) +(recipe r296 (key (sx296 ing292))) +(recipe r296 (key (sy296 ing284))) +(recipe r296 (key (sx296 ing293))) +(recipe r296 (key (sy296 ing285))) +(recipe r296 (key (sx296 ing294))) +(recipe r296 (key (sy296 ing286))) +(recipe r296 (key (sx296 ing295))) +(recipe r296 (key (sy296 ing287))) +(recipe r296 (key (sx296 ing296))) +(recipe r296 (key (sy296 ing288))) +(recipe r296 (key (sx296 ing297))) +(recipe r296 (key (sy296 ing289))) +(recipe r296 (key (sx296 ing298))) +(recipe r296 (key (sy296 ing290))) +(recipe r296 (key (sx296 ing299))) +(recipe r296 (key (sy296 ing291))) +(recipe r297 (numIngredients 2)) +(recipe r297 (result (id item297))) +(recipe r297 (pattern 0 sx297)) +(recipe r297 (pattern 1 sy297)) +(recipe r297 (key (sx297 ing291))) +(recipe r297 (key (sy297 ing285))) +(recipe r297 (key (sx297 ing292))) +(recipe r297 (key (sy297 ing286))) +(recipe r297 (key (sx297 ing293))) +(recipe r297 (key (sy297 ing287))) +(recipe r297 (key (sx297 ing294))) +(recipe r297 (key (sy297 ing288))) +(recipe r297 (key (sx297 ing295))) +(recipe r297 (key (sy297 ing289))) +(recipe r297 (key (sx297 ing296))) +(recipe r297 (key (sy297 ing290))) +(recipe r297 (key (sx297 ing297))) +(recipe r297 (key (sy297 ing291))) +(recipe r297 (key (sx297 ing298))) +(recipe r297 (key (sy297 ing292))) +(recipe r297 (key (sx297 ing299))) +(recipe r297 (key (sy297 ing293))) +(recipe r297 (key (sx297 ing300))) +(recipe r297 (key (sy297 ing294))) +(recipe r297 (key (sx297 ing301))) +(recipe r297 (key (sy297 ing295))) +(recipe r297 (key (sx297 ing302))) +(recipe r297 (key (sy297 ing296))) +(recipe r298 (numIngredients 2)) +(recipe r298 (result (id item298))) +(recipe r298 (pattern 0 sx298)) +(recipe r298 (pattern 1 sy298)) +(recipe r298 (key (sx298 ing294))) +(recipe r298 (key (sy298 ing290))) +(recipe r298 (key (sx298 ing295))) +(recipe r298 (key (sy298 ing291))) +(recipe r298 (key (sx298 ing296))) +(recipe r298 (key (sy298 ing292))) +(recipe r298 (key (sx298 ing297))) +(recipe r298 (key (sy298 ing293))) +(recipe r298 (key (sx298 ing298))) +(recipe r298 (key (sy298 ing294))) +(recipe r298 (key (sx298 ing299))) +(recipe r298 (key (sy298 ing295))) +(recipe r298 (key (sx298 ing300))) +(recipe r298 (key (sy298 ing296))) +(recipe r298 (key (sx298 ing301))) +(recipe r298 (key (sy298 ing297))) +(recipe r298 (key (sx298 ing302))) +(recipe r298 (key (sy298 ing298))) +(recipe r298 (key (sx298 ing303))) +(recipe r298 (key (sy298 ing299))) +(recipe r298 (key (sx298 ing304))) +(recipe r298 (key (sy298 ing300))) +(recipe r298 (key (sx298 ing305))) +(recipe r298 (key (sy298 ing301))) +(recipe r299 (numIngredients 2)) +(recipe r299 (result (id item299))) +(recipe r299 (pattern 0 sx299)) +(recipe r299 (pattern 1 sy299)) +(recipe r299 (key (sx299 ing297))) +(recipe r299 (key (sy299 ing295))) +(recipe r299 (key (sx299 ing298))) +(recipe r299 (key (sy299 ing296))) +(recipe r299 (key (sx299 ing299))) +(recipe r299 (key (sy299 ing297))) +(recipe r299 (key (sx299 ing300))) +(recipe r299 (key (sy299 ing298))) +(recipe r299 (key (sx299 ing301))) +(recipe r299 (key (sy299 ing299))) +(recipe r299 (key (sx299 ing302))) +(recipe r299 (key (sy299 ing300))) +(recipe r299 (key (sx299 ing303))) +(recipe r299 (key (sy299 ing301))) +(recipe r299 (key (sx299 ing304))) +(recipe r299 (key (sy299 ing302))) +(recipe r299 (key (sx299 ing305))) +(recipe r299 (key (sy299 ing303))) +(recipe r299 (key (sx299 ing306))) +(recipe r299 (key (sy299 ing304))) +(recipe r299 (key (sx299 ing307))) +(recipe r299 (key (sy299 ing305))) +(recipe r299 (key (sx299 ing308))) +(recipe r299 (key (sy299 ing306))) +(recipe r300 (numIngredients 2)) +(recipe r300 (result (id item300))) +(recipe r300 (pattern 0 sx300)) +(recipe r300 (pattern 1 sy300)) +(recipe r300 (key (sx300 ing300))) +(recipe r300 (key (sy300 ing300))) +(recipe r300 (key (sx300 ing301))) +(recipe r300 (key (sy300 ing301))) +(recipe r300 (key (sx300 ing302))) +(recipe r300 (key (sy300 ing302))) +(recipe r300 (key (sx300 ing303))) +(recipe r300 (key (sy300 ing303))) +(recipe r300 (key (sx300 ing304))) +(recipe r300 (key (sy300 ing304))) +(recipe r300 (key (sx300 ing305))) +(recipe r300 (key (sy300 ing305))) +(recipe r300 (key (sx300 ing306))) +(recipe r300 (key (sy300 ing306))) +(recipe r300 (key (sx300 ing307))) +(recipe r300 (key (sy300 ing307))) +(recipe r300 (key (sx300 ing308))) +(recipe r300 (key (sy300 ing308))) +(recipe r300 (key (sx300 ing309))) +(recipe r300 (key (sy300 ing309))) +(recipe r300 (key (sx300 ing310))) +(recipe r300 (key (sy300 ing310))) +(recipe r300 (key (sx300 ing311))) +(recipe r300 (key (sy300 ing311))) +(recipe r301 (numIngredients 2)) +(recipe r301 (result (id item301))) +(recipe r301 (pattern 0 sx301)) +(recipe r301 (pattern 1 sy301)) +(recipe r301 (key (sx301 ing303))) +(recipe r301 (key (sy301 ing305))) +(recipe r301 (key (sx301 ing304))) +(recipe r301 (key (sy301 ing306))) +(recipe r301 (key (sx301 ing305))) +(recipe r301 (key (sy301 ing307))) +(recipe r301 (key (sx301 ing306))) +(recipe r301 (key (sy301 ing308))) +(recipe r301 (key (sx301 ing307))) +(recipe r301 (key (sy301 ing309))) +(recipe r301 (key (sx301 ing308))) +(recipe r301 (key (sy301 ing310))) +(recipe r301 (key (sx301 ing309))) +(recipe r301 (key (sy301 ing311))) +(recipe r301 (key (sx301 ing310))) +(recipe r301 (key (sy301 ing312))) +(recipe r301 (key (sx301 ing311))) +(recipe r301 (key (sy301 ing313))) +(recipe r301 (key (sx301 ing312))) +(recipe r301 (key (sy301 ing314))) +(recipe r301 (key (sx301 ing313))) +(recipe r301 (key (sy301 ing315))) +(recipe r301 (key (sx301 ing314))) +(recipe r301 (key (sy301 ing316))) +(recipe r302 (numIngredients 2)) +(recipe r302 (result (id item302))) +(recipe r302 (pattern 0 sx302)) +(recipe r302 (pattern 1 sy302)) +(recipe r302 (key (sx302 ing306))) +(recipe r302 (key (sy302 ing310))) +(recipe r302 (key (sx302 ing307))) +(recipe r302 (key (sy302 ing311))) +(recipe r302 (key (sx302 ing308))) +(recipe r302 (key (sy302 ing312))) +(recipe r302 (key (sx302 ing309))) +(recipe r302 (key (sy302 ing313))) +(recipe r302 (key (sx302 ing310))) +(recipe r302 (key (sy302 ing314))) +(recipe r302 (key (sx302 ing311))) +(recipe r302 (key (sy302 ing315))) +(recipe r302 (key (sx302 ing312))) +(recipe r302 (key (sy302 ing316))) +(recipe r302 (key (sx302 ing313))) +(recipe r302 (key (sy302 ing317))) +(recipe r302 (key (sx302 ing314))) +(recipe r302 (key (sy302 ing318))) +(recipe r302 (key (sx302 ing315))) +(recipe r302 (key (sy302 ing319))) +(recipe r302 (key (sx302 ing316))) +(recipe r302 (key (sy302 ing320))) +(recipe r302 (key (sx302 ing317))) +(recipe r302 (key (sy302 ing321))) +(recipe r303 (numIngredients 2)) +(recipe r303 (result (id item303))) +(recipe r303 (pattern 0 sx303)) +(recipe r303 (pattern 1 sy303)) +(recipe r303 (key (sx303 ing309))) +(recipe r303 (key (sy303 ing315))) +(recipe r303 (key (sx303 ing310))) +(recipe r303 (key (sy303 ing316))) +(recipe r303 (key (sx303 ing311))) +(recipe r303 (key (sy303 ing317))) +(recipe r303 (key (sx303 ing312))) +(recipe r303 (key (sy303 ing318))) +(recipe r303 (key (sx303 ing313))) +(recipe r303 (key (sy303 ing319))) +(recipe r303 (key (sx303 ing314))) +(recipe r303 (key (sy303 ing320))) +(recipe r303 (key (sx303 ing315))) +(recipe r303 (key (sy303 ing321))) +(recipe r303 (key (sx303 ing316))) +(recipe r303 (key (sy303 ing322))) +(recipe r303 (key (sx303 ing317))) +(recipe r303 (key (sy303 ing323))) +(recipe r303 (key (sx303 ing318))) +(recipe r303 (key (sy303 ing324))) +(recipe r303 (key (sx303 ing319))) +(recipe r303 (key (sy303 ing325))) +(recipe r303 (key (sx303 ing320))) +(recipe r303 (key (sy303 ing326))) +(recipe r304 (numIngredients 2)) +(recipe r304 (result (id item304))) +(recipe r304 (pattern 0 sx304)) +(recipe r304 (pattern 1 sy304)) +(recipe r304 (key (sx304 ing312))) +(recipe r304 (key (sy304 ing320))) +(recipe r304 (key (sx304 ing313))) +(recipe r304 (key (sy304 ing321))) +(recipe r304 (key (sx304 ing314))) +(recipe r304 (key (sy304 ing322))) +(recipe r304 (key (sx304 ing315))) +(recipe r304 (key (sy304 ing323))) +(recipe r304 (key (sx304 ing316))) +(recipe r304 (key (sy304 ing324))) +(recipe r304 (key (sx304 ing317))) +(recipe r304 (key (sy304 ing325))) +(recipe r304 (key (sx304 ing318))) +(recipe r304 (key (sy304 ing326))) +(recipe r304 (key (sx304 ing319))) +(recipe r304 (key (sy304 ing327))) +(recipe r304 (key (sx304 ing320))) +(recipe r304 (key (sy304 ing328))) +(recipe r304 (key (sx304 ing321))) +(recipe r304 (key (sy304 ing329))) +(recipe r304 (key (sx304 ing322))) +(recipe r304 (key (sy304 ing330))) +(recipe r304 (key (sx304 ing323))) +(recipe r304 (key (sy304 ing331))) +(recipe r305 (numIngredients 2)) +(recipe r305 (result (id item305))) +(recipe r305 (pattern 0 sx305)) +(recipe r305 (pattern 1 sy305)) +(recipe r305 (key (sx305 ing315))) +(recipe r305 (key (sy305 ing325))) +(recipe r305 (key (sx305 ing316))) +(recipe r305 (key (sy305 ing326))) +(recipe r305 (key (sx305 ing317))) +(recipe r305 (key (sy305 ing327))) +(recipe r305 (key (sx305 ing318))) +(recipe r305 (key (sy305 ing328))) +(recipe r305 (key (sx305 ing319))) +(recipe r305 (key (sy305 ing329))) +(recipe r305 (key (sx305 ing320))) +(recipe r305 (key (sy305 ing330))) +(recipe r305 (key (sx305 ing321))) +(recipe r305 (key (sy305 ing331))) +(recipe r305 (key (sx305 ing322))) +(recipe r305 (key (sy305 ing332))) +(recipe r305 (key (sx305 ing323))) +(recipe r305 (key (sy305 ing333))) +(recipe r305 (key (sx305 ing324))) +(recipe r305 (key (sy305 ing334))) +(recipe r305 (key (sx305 ing325))) +(recipe r305 (key (sy305 ing335))) +(recipe r305 (key (sx305 ing326))) +(recipe r305 (key (sy305 ing336))) +(recipe r306 (numIngredients 2)) +(recipe r306 (result (id item306))) +(recipe r306 (pattern 0 sx306)) +(recipe r306 (pattern 1 sy306)) +(recipe r306 (key (sx306 ing318))) +(recipe r306 (key (sy306 ing330))) +(recipe r306 (key (sx306 ing319))) +(recipe r306 (key (sy306 ing331))) +(recipe r306 (key (sx306 ing320))) +(recipe r306 (key (sy306 ing332))) +(recipe r306 (key (sx306 ing321))) +(recipe r306 (key (sy306 ing333))) +(recipe r306 (key (sx306 ing322))) +(recipe r306 (key (sy306 ing334))) +(recipe r306 (key (sx306 ing323))) +(recipe r306 (key (sy306 ing335))) +(recipe r306 (key (sx306 ing324))) +(recipe r306 (key (sy306 ing336))) +(recipe r306 (key (sx306 ing325))) +(recipe r306 (key (sy306 ing337))) +(recipe r306 (key (sx306 ing326))) +(recipe r306 (key (sy306 ing338))) +(recipe r306 (key (sx306 ing327))) +(recipe r306 (key (sy306 ing339))) +(recipe r306 (key (sx306 ing328))) +(recipe r306 (key (sy306 ing340))) +(recipe r306 (key (sx306 ing329))) +(recipe r306 (key (sy306 ing341))) +(recipe r307 (numIngredients 2)) +(recipe r307 (result (id item307))) +(recipe r307 (pattern 0 sx307)) +(recipe r307 (pattern 1 sy307)) +(recipe r307 (key (sx307 ing321))) +(recipe r307 (key (sy307 ing335))) +(recipe r307 (key (sx307 ing322))) +(recipe r307 (key (sy307 ing336))) +(recipe r307 (key (sx307 ing323))) +(recipe r307 (key (sy307 ing337))) +(recipe r307 (key (sx307 ing324))) +(recipe r307 (key (sy307 ing338))) +(recipe r307 (key (sx307 ing325))) +(recipe r307 (key (sy307 ing339))) +(recipe r307 (key (sx307 ing326))) +(recipe r307 (key (sy307 ing340))) +(recipe r307 (key (sx307 ing327))) +(recipe r307 (key (sy307 ing341))) +(recipe r307 (key (sx307 ing328))) +(recipe r307 (key (sy307 ing342))) +(recipe r307 (key (sx307 ing329))) +(recipe r307 (key (sy307 ing343))) +(recipe r307 (key (sx307 ing330))) +(recipe r307 (key (sy307 ing344))) +(recipe r307 (key (sx307 ing331))) +(recipe r307 (key (sy307 ing345))) +(recipe r307 (key (sx307 ing332))) +(recipe r307 (key (sy307 ing346))) +(recipe r308 (numIngredients 2)) +(recipe r308 (result (id item308))) +(recipe r308 (pattern 0 sx308)) +(recipe r308 (pattern 1 sy308)) +(recipe r308 (key (sx308 ing324))) +(recipe r308 (key (sy308 ing340))) +(recipe r308 (key (sx308 ing325))) +(recipe r308 (key (sy308 ing341))) +(recipe r308 (key (sx308 ing326))) +(recipe r308 (key (sy308 ing342))) +(recipe r308 (key (sx308 ing327))) +(recipe r308 (key (sy308 ing343))) +(recipe r308 (key (sx308 ing328))) +(recipe r308 (key (sy308 ing344))) +(recipe r308 (key (sx308 ing329))) +(recipe r308 (key (sy308 ing345))) +(recipe r308 (key (sx308 ing330))) +(recipe r308 (key (sy308 ing346))) +(recipe r308 (key (sx308 ing331))) +(recipe r308 (key (sy308 ing347))) +(recipe r308 (key (sx308 ing332))) +(recipe r308 (key (sy308 ing348))) +(recipe r308 (key (sx308 ing333))) +(recipe r308 (key (sy308 ing349))) +(recipe r308 (key (sx308 ing334))) +(recipe r308 (key (sy308 ing350))) +(recipe r308 (key (sx308 ing335))) +(recipe r308 (key (sy308 ing351))) +(recipe r309 (numIngredients 2)) +(recipe r309 (result (id item309))) +(recipe r309 (pattern 0 sx309)) +(recipe r309 (pattern 1 sy309)) +(recipe r309 (key (sx309 ing327))) +(recipe r309 (key (sy309 ing345))) +(recipe r309 (key (sx309 ing328))) +(recipe r309 (key (sy309 ing346))) +(recipe r309 (key (sx309 ing329))) +(recipe r309 (key (sy309 ing347))) +(recipe r309 (key (sx309 ing330))) +(recipe r309 (key (sy309 ing348))) +(recipe r309 (key (sx309 ing331))) +(recipe r309 (key (sy309 ing349))) +(recipe r309 (key (sx309 ing332))) +(recipe r309 (key (sy309 ing350))) +(recipe r309 (key (sx309 ing333))) +(recipe r309 (key (sy309 ing351))) +(recipe r309 (key (sx309 ing334))) +(recipe r309 (key (sy309 ing352))) +(recipe r309 (key (sx309 ing335))) +(recipe r309 (key (sy309 ing353))) +(recipe r309 (key (sx309 ing336))) +(recipe r309 (key (sy309 ing354))) +(recipe r309 (key (sx309 ing337))) +(recipe r309 (key (sy309 ing355))) +(recipe r309 (key (sx309 ing338))) +(recipe r309 (key (sy309 ing356))) +(recipe r310 (numIngredients 2)) +(recipe r310 (result (id item310))) +(recipe r310 (pattern 0 sx310)) +(recipe r310 (pattern 1 sy310)) +(recipe r310 (key (sx310 ing330))) +(recipe r310 (key (sy310 ing350))) +(recipe r310 (key (sx310 ing331))) +(recipe r310 (key (sy310 ing351))) +(recipe r310 (key (sx310 ing332))) +(recipe r310 (key (sy310 ing352))) +(recipe r310 (key (sx310 ing333))) +(recipe r310 (key (sy310 ing353))) +(recipe r310 (key (sx310 ing334))) +(recipe r310 (key (sy310 ing354))) +(recipe r310 (key (sx310 ing335))) +(recipe r310 (key (sy310 ing355))) +(recipe r310 (key (sx310 ing336))) +(recipe r310 (key (sy310 ing356))) +(recipe r310 (key (sx310 ing337))) +(recipe r310 (key (sy310 ing357))) +(recipe r310 (key (sx310 ing338))) +(recipe r310 (key (sy310 ing358))) +(recipe r310 (key (sx310 ing339))) +(recipe r310 (key (sy310 ing359))) +(recipe r310 (key (sx310 ing340))) +(recipe r310 (key (sy310 ing360))) +(recipe r310 (key (sx310 ing341))) +(recipe r310 (key (sy310 ing361))) +(recipe r311 (numIngredients 2)) +(recipe r311 (result (id item311))) +(recipe r311 (pattern 0 sx311)) +(recipe r311 (pattern 1 sy311)) +(recipe r311 (key (sx311 ing333))) +(recipe r311 (key (sy311 ing355))) +(recipe r311 (key (sx311 ing334))) +(recipe r311 (key (sy311 ing356))) +(recipe r311 (key (sx311 ing335))) +(recipe r311 (key (sy311 ing357))) +(recipe r311 (key (sx311 ing336))) +(recipe r311 (key (sy311 ing358))) +(recipe r311 (key (sx311 ing337))) +(recipe r311 (key (sy311 ing359))) +(recipe r311 (key (sx311 ing338))) +(recipe r311 (key (sy311 ing360))) +(recipe r311 (key (sx311 ing339))) +(recipe r311 (key (sy311 ing361))) +(recipe r311 (key (sx311 ing340))) +(recipe r311 (key (sy311 ing362))) +(recipe r311 (key (sx311 ing341))) +(recipe r311 (key (sy311 ing363))) +(recipe r311 (key (sx311 ing342))) +(recipe r311 (key (sy311 ing364))) +(recipe r311 (key (sx311 ing343))) +(recipe r311 (key (sy311 ing365))) +(recipe r311 (key (sx311 ing344))) +(recipe r311 (key (sy311 ing366))) +(recipe r312 (numIngredients 2)) +(recipe r312 (result (id item312))) +(recipe r312 (pattern 0 sx312)) +(recipe r312 (pattern 1 sy312)) +(recipe r312 (key (sx312 ing336))) +(recipe r312 (key (sy312 ing360))) +(recipe r312 (key (sx312 ing337))) +(recipe r312 (key (sy312 ing361))) +(recipe r312 (key (sx312 ing338))) +(recipe r312 (key (sy312 ing362))) +(recipe r312 (key (sx312 ing339))) +(recipe r312 (key (sy312 ing363))) +(recipe r312 (key (sx312 ing340))) +(recipe r312 (key (sy312 ing364))) +(recipe r312 (key (sx312 ing341))) +(recipe r312 (key (sy312 ing365))) +(recipe r312 (key (sx312 ing342))) +(recipe r312 (key (sy312 ing366))) +(recipe r312 (key (sx312 ing343))) +(recipe r312 (key (sy312 ing367))) +(recipe r312 (key (sx312 ing344))) +(recipe r312 (key (sy312 ing368))) +(recipe r312 (key (sx312 ing345))) +(recipe r312 (key (sy312 ing369))) +(recipe r312 (key (sx312 ing346))) +(recipe r312 (key (sy312 ing370))) +(recipe r312 (key (sx312 ing347))) +(recipe r312 (key (sy312 ing371))) +(recipe r313 (numIngredients 2)) +(recipe r313 (result (id item313))) +(recipe r313 (pattern 0 sx313)) +(recipe r313 (pattern 1 sy313)) +(recipe r313 (key (sx313 ing339))) +(recipe r313 (key (sy313 ing365))) +(recipe r313 (key (sx313 ing340))) +(recipe r313 (key (sy313 ing366))) +(recipe r313 (key (sx313 ing341))) +(recipe r313 (key (sy313 ing367))) +(recipe r313 (key (sx313 ing342))) +(recipe r313 (key (sy313 ing368))) +(recipe r313 (key (sx313 ing343))) +(recipe r313 (key (sy313 ing369))) +(recipe r313 (key (sx313 ing344))) +(recipe r313 (key (sy313 ing370))) +(recipe r313 (key (sx313 ing345))) +(recipe r313 (key (sy313 ing371))) +(recipe r313 (key (sx313 ing346))) +(recipe r313 (key (sy313 ing372))) +(recipe r313 (key (sx313 ing347))) +(recipe r313 (key (sy313 ing373))) +(recipe r313 (key (sx313 ing348))) +(recipe r313 (key (sy313 ing374))) +(recipe r313 (key (sx313 ing349))) +(recipe r313 (key (sy313 ing375))) +(recipe r313 (key (sx313 ing350))) +(recipe r313 (key (sy313 ing376))) +(recipe r314 (numIngredients 2)) +(recipe r314 (result (id item314))) +(recipe r314 (pattern 0 sx314)) +(recipe r314 (pattern 1 sy314)) +(recipe r314 (key (sx314 ing342))) +(recipe r314 (key (sy314 ing370))) +(recipe r314 (key (sx314 ing343))) +(recipe r314 (key (sy314 ing371))) +(recipe r314 (key (sx314 ing344))) +(recipe r314 (key (sy314 ing372))) +(recipe r314 (key (sx314 ing345))) +(recipe r314 (key (sy314 ing373))) +(recipe r314 (key (sx314 ing346))) +(recipe r314 (key (sy314 ing374))) +(recipe r314 (key (sx314 ing347))) +(recipe r314 (key (sy314 ing375))) +(recipe r314 (key (sx314 ing348))) +(recipe r314 (key (sy314 ing376))) +(recipe r314 (key (sx314 ing349))) +(recipe r314 (key (sy314 ing377))) +(recipe r314 (key (sx314 ing350))) +(recipe r314 (key (sy314 ing378))) +(recipe r314 (key (sx314 ing351))) +(recipe r314 (key (sy314 ing379))) +(recipe r314 (key (sx314 ing352))) +(recipe r314 (key (sy314 ing380))) +(recipe r314 (key (sx314 ing353))) +(recipe r314 (key (sy314 ing381))) +(recipe r315 (numIngredients 2)) +(recipe r315 (result (id item315))) +(recipe r315 (pattern 0 sx315)) +(recipe r315 (pattern 1 sy315)) +(recipe r315 (key (sx315 ing345))) +(recipe r315 (key (sy315 ing375))) +(recipe r315 (key (sx315 ing346))) +(recipe r315 (key (sy315 ing376))) +(recipe r315 (key (sx315 ing347))) +(recipe r315 (key (sy315 ing377))) +(recipe r315 (key (sx315 ing348))) +(recipe r315 (key (sy315 ing378))) +(recipe r315 (key (sx315 ing349))) +(recipe r315 (key (sy315 ing379))) +(recipe r315 (key (sx315 ing350))) +(recipe r315 (key (sy315 ing380))) +(recipe r315 (key (sx315 ing351))) +(recipe r315 (key (sy315 ing381))) +(recipe r315 (key (sx315 ing352))) +(recipe r315 (key (sy315 ing382))) +(recipe r315 (key (sx315 ing353))) +(recipe r315 (key (sy315 ing383))) +(recipe r315 (key (sx315 ing354))) +(recipe r315 (key (sy315 ing384))) +(recipe r315 (key (sx315 ing355))) +(recipe r315 (key (sy315 ing385))) +(recipe r315 (key (sx315 ing356))) +(recipe r315 (key (sy315 ing386))) +(recipe r316 (numIngredients 2)) +(recipe r316 (result (id item316))) +(recipe r316 (pattern 0 sx316)) +(recipe r316 (pattern 1 sy316)) +(recipe r316 (key (sx316 ing348))) +(recipe r316 (key (sy316 ing380))) +(recipe r316 (key (sx316 ing349))) +(recipe r316 (key (sy316 ing381))) +(recipe r316 (key (sx316 ing350))) +(recipe r316 (key (sy316 ing382))) +(recipe r316 (key (sx316 ing351))) +(recipe r316 (key (sy316 ing383))) +(recipe r316 (key (sx316 ing352))) +(recipe r316 (key (sy316 ing384))) +(recipe r316 (key (sx316 ing353))) +(recipe r316 (key (sy316 ing385))) +(recipe r316 (key (sx316 ing354))) +(recipe r316 (key (sy316 ing386))) +(recipe r316 (key (sx316 ing355))) +(recipe r316 (key (sy316 ing387))) +(recipe r316 (key (sx316 ing356))) +(recipe r316 (key (sy316 ing388))) +(recipe r316 (key (sx316 ing357))) +(recipe r316 (key (sy316 ing389))) +(recipe r316 (key (sx316 ing358))) +(recipe r316 (key (sy316 ing390))) +(recipe r316 (key (sx316 ing359))) +(recipe r316 (key (sy316 ing391))) +(recipe r317 (numIngredients 2)) +(recipe r317 (result (id item317))) +(recipe r317 (pattern 0 sx317)) +(recipe r317 (pattern 1 sy317)) +(recipe r317 (key (sx317 ing351))) +(recipe r317 (key (sy317 ing385))) +(recipe r317 (key (sx317 ing352))) +(recipe r317 (key (sy317 ing386))) +(recipe r317 (key (sx317 ing353))) +(recipe r317 (key (sy317 ing387))) +(recipe r317 (key (sx317 ing354))) +(recipe r317 (key (sy317 ing388))) +(recipe r317 (key (sx317 ing355))) +(recipe r317 (key (sy317 ing389))) +(recipe r317 (key (sx317 ing356))) +(recipe r317 (key (sy317 ing390))) +(recipe r317 (key (sx317 ing357))) +(recipe r317 (key (sy317 ing391))) +(recipe r317 (key (sx317 ing358))) +(recipe r317 (key (sy317 ing392))) +(recipe r317 (key (sx317 ing359))) +(recipe r317 (key (sy317 ing393))) +(recipe r317 (key (sx317 ing360))) +(recipe r317 (key (sy317 ing394))) +(recipe r317 (key (sx317 ing361))) +(recipe r317 (key (sy317 ing395))) +(recipe r317 (key (sx317 ing362))) +(recipe r317 (key (sy317 ing396))) +(recipe r318 (numIngredients 2)) +(recipe r318 (result (id item318))) +(recipe r318 (pattern 0 sx318)) +(recipe r318 (pattern 1 sy318)) +(recipe r318 (key (sx318 ing354))) +(recipe r318 (key (sy318 ing390))) +(recipe r318 (key (sx318 ing355))) +(recipe r318 (key (sy318 ing391))) +(recipe r318 (key (sx318 ing356))) +(recipe r318 (key (sy318 ing392))) +(recipe r318 (key (sx318 ing357))) +(recipe r318 (key (sy318 ing393))) +(recipe r318 (key (sx318 ing358))) +(recipe r318 (key (sy318 ing394))) +(recipe r318 (key (sx318 ing359))) +(recipe r318 (key (sy318 ing395))) +(recipe r318 (key (sx318 ing360))) +(recipe r318 (key (sy318 ing396))) +(recipe r318 (key (sx318 ing361))) +(recipe r318 (key (sy318 ing397))) +(recipe r318 (key (sx318 ing362))) +(recipe r318 (key (sy318 ing398))) +(recipe r318 (key (sx318 ing363))) +(recipe r318 (key (sy318 ing399))) +(recipe r318 (key (sx318 ing364))) +(recipe r318 (key (sy318 ing400))) +(recipe r318 (key (sx318 ing365))) +(recipe r318 (key (sy318 ing401))) +(recipe r319 (numIngredients 2)) +(recipe r319 (result (id item319))) +(recipe r319 (pattern 0 sx319)) +(recipe r319 (pattern 1 sy319)) +(recipe r319 (key (sx319 ing357))) +(recipe r319 (key (sy319 ing395))) +(recipe r319 (key (sx319 ing358))) +(recipe r319 (key (sy319 ing396))) +(recipe r319 (key (sx319 ing359))) +(recipe r319 (key (sy319 ing397))) +(recipe r319 (key (sx319 ing360))) +(recipe r319 (key (sy319 ing398))) +(recipe r319 (key (sx319 ing361))) +(recipe r319 (key (sy319 ing399))) +(recipe r319 (key (sx319 ing362))) +(recipe r319 (key (sy319 ing400))) +(recipe r319 (key (sx319 ing363))) +(recipe r319 (key (sy319 ing401))) +(recipe r319 (key (sx319 ing364))) +(recipe r319 (key (sy319 ing402))) +(recipe r319 (key (sx319 ing365))) +(recipe r319 (key (sy319 ing403))) +(recipe r319 (key (sx319 ing366))) +(recipe r319 (key (sy319 ing404))) +(recipe r319 (key (sx319 ing367))) +(recipe r319 (key (sy319 ing405))) +(recipe r319 (key (sx319 ing368))) +(recipe r319 (key (sy319 ing406))) +(recipe r320 (numIngredients 2)) +(recipe r320 (result (id item320))) +(recipe r320 (pattern 0 sx320)) +(recipe r320 (pattern 1 sy320)) +(recipe r320 (key (sx320 ing360))) +(recipe r320 (key (sy320 ing400))) +(recipe r320 (key (sx320 ing361))) +(recipe r320 (key (sy320 ing401))) +(recipe r320 (key (sx320 ing362))) +(recipe r320 (key (sy320 ing402))) +(recipe r320 (key (sx320 ing363))) +(recipe r320 (key (sy320 ing403))) +(recipe r320 (key (sx320 ing364))) +(recipe r320 (key (sy320 ing404))) +(recipe r320 (key (sx320 ing365))) +(recipe r320 (key (sy320 ing405))) +(recipe r320 (key (sx320 ing366))) +(recipe r320 (key (sy320 ing406))) +(recipe r320 (key (sx320 ing367))) +(recipe r320 (key (sy320 ing407))) +(recipe r320 (key (sx320 ing368))) +(recipe r320 (key (sy320 ing408))) +(recipe r320 (key (sx320 ing369))) +(recipe r320 (key (sy320 ing409))) +(recipe r320 (key (sx320 ing370))) +(recipe r320 (key (sy320 ing410))) +(recipe r320 (key (sx320 ing371))) +(recipe r320 (key (sy320 ing411))) +(recipe r321 (numIngredients 2)) +(recipe r321 (result (id item321))) +(recipe r321 (pattern 0 sx321)) +(recipe r321 (pattern 1 sy321)) +(recipe r321 (key (sx321 ing363))) +(recipe r321 (key (sy321 ing405))) +(recipe r321 (key (sx321 ing364))) +(recipe r321 (key (sy321 ing406))) +(recipe r321 (key (sx321 ing365))) +(recipe r321 (key (sy321 ing407))) +(recipe r321 (key (sx321 ing366))) +(recipe r321 (key (sy321 ing408))) +(recipe r321 (key (sx321 ing367))) +(recipe r321 (key (sy321 ing409))) +(recipe r321 (key (sx321 ing368))) +(recipe r321 (key (sy321 ing410))) +(recipe r321 (key (sx321 ing369))) +(recipe r321 (key (sy321 ing411))) +(recipe r321 (key (sx321 ing370))) +(recipe r321 (key (sy321 ing412))) +(recipe r321 (key (sx321 ing371))) +(recipe r321 (key (sy321 ing413))) +(recipe r321 (key (sx321 ing372))) +(recipe r321 (key (sy321 ing414))) +(recipe r321 (key (sx321 ing373))) +(recipe r321 (key (sy321 ing415))) +(recipe r321 (key (sx321 ing374))) +(recipe r321 (key (sy321 ing416))) +(recipe r322 (numIngredients 2)) +(recipe r322 (result (id item322))) +(recipe r322 (pattern 0 sx322)) +(recipe r322 (pattern 1 sy322)) +(recipe r322 (key (sx322 ing366))) +(recipe r322 (key (sy322 ing410))) +(recipe r322 (key (sx322 ing367))) +(recipe r322 (key (sy322 ing411))) +(recipe r322 (key (sx322 ing368))) +(recipe r322 (key (sy322 ing412))) +(recipe r322 (key (sx322 ing369))) +(recipe r322 (key (sy322 ing413))) +(recipe r322 (key (sx322 ing370))) +(recipe r322 (key (sy322 ing414))) +(recipe r322 (key (sx322 ing371))) +(recipe r322 (key (sy322 ing415))) +(recipe r322 (key (sx322 ing372))) +(recipe r322 (key (sy322 ing416))) +(recipe r322 (key (sx322 ing373))) +(recipe r322 (key (sy322 ing417))) +(recipe r322 (key (sx322 ing374))) +(recipe r322 (key (sy322 ing418))) +(recipe r322 (key (sx322 ing375))) +(recipe r322 (key (sy322 ing419))) +(recipe r322 (key (sx322 ing376))) +(recipe r322 (key (sy322 ing420))) +(recipe r322 (key (sx322 ing377))) +(recipe r322 (key (sy322 ing421))) +(recipe r323 (numIngredients 2)) +(recipe r323 (result (id item323))) +(recipe r323 (pattern 0 sx323)) +(recipe r323 (pattern 1 sy323)) +(recipe r323 (key (sx323 ing369))) +(recipe r323 (key (sy323 ing415))) +(recipe r323 (key (sx323 ing370))) +(recipe r323 (key (sy323 ing416))) +(recipe r323 (key (sx323 ing371))) +(recipe r323 (key (sy323 ing417))) +(recipe r323 (key (sx323 ing372))) +(recipe r323 (key (sy323 ing418))) +(recipe r323 (key (sx323 ing373))) +(recipe r323 (key (sy323 ing419))) +(recipe r323 (key (sx323 ing374))) +(recipe r323 (key (sy323 ing420))) +(recipe r323 (key (sx323 ing375))) +(recipe r323 (key (sy323 ing421))) +(recipe r323 (key (sx323 ing376))) +(recipe r323 (key (sy323 ing422))) +(recipe r323 (key (sx323 ing377))) +(recipe r323 (key (sy323 ing423))) +(recipe r323 (key (sx323 ing378))) +(recipe r323 (key (sy323 ing424))) +(recipe r323 (key (sx323 ing379))) +(recipe r323 (key (sy323 ing425))) +(recipe r323 (key (sx323 ing380))) +(recipe r323 (key (sy323 ing426))) +(recipe r324 (numIngredients 2)) +(recipe r324 (result (id item324))) +(recipe r324 (pattern 0 sx324)) +(recipe r324 (pattern 1 sy324)) +(recipe r324 (key (sx324 ing372))) +(recipe r324 (key (sy324 ing420))) +(recipe r324 (key (sx324 ing373))) +(recipe r324 (key (sy324 ing421))) +(recipe r324 (key (sx324 ing374))) +(recipe r324 (key (sy324 ing422))) +(recipe r324 (key (sx324 ing375))) +(recipe r324 (key (sy324 ing423))) +(recipe r324 (key (sx324 ing376))) +(recipe r324 (key (sy324 ing424))) +(recipe r324 (key (sx324 ing377))) +(recipe r324 (key (sy324 ing425))) +(recipe r324 (key (sx324 ing378))) +(recipe r324 (key (sy324 ing426))) +(recipe r324 (key (sx324 ing379))) +(recipe r324 (key (sy324 ing427))) +(recipe r324 (key (sx324 ing380))) +(recipe r324 (key (sy324 ing428))) +(recipe r324 (key (sx324 ing381))) +(recipe r324 (key (sy324 ing429))) +(recipe r324 (key (sx324 ing382))) +(recipe r324 (key (sy324 ing430))) +(recipe r324 (key (sx324 ing383))) +(recipe r324 (key (sy324 ing431))) +(recipe r325 (numIngredients 2)) +(recipe r325 (result (id item325))) +(recipe r325 (pattern 0 sx325)) +(recipe r325 (pattern 1 sy325)) +(recipe r325 (key (sx325 ing375))) +(recipe r325 (key (sy325 ing425))) +(recipe r325 (key (sx325 ing376))) +(recipe r325 (key (sy325 ing426))) +(recipe r325 (key (sx325 ing377))) +(recipe r325 (key (sy325 ing427))) +(recipe r325 (key (sx325 ing378))) +(recipe r325 (key (sy325 ing428))) +(recipe r325 (key (sx325 ing379))) +(recipe r325 (key (sy325 ing429))) +(recipe r325 (key (sx325 ing380))) +(recipe r325 (key (sy325 ing430))) +(recipe r325 (key (sx325 ing381))) +(recipe r325 (key (sy325 ing431))) +(recipe r325 (key (sx325 ing382))) +(recipe r325 (key (sy325 ing432))) +(recipe r325 (key (sx325 ing383))) +(recipe r325 (key (sy325 ing433))) +(recipe r325 (key (sx325 ing384))) +(recipe r325 (key (sy325 ing434))) +(recipe r325 (key (sx325 ing385))) +(recipe r325 (key (sy325 ing435))) +(recipe r325 (key (sx325 ing386))) +(recipe r325 (key (sy325 ing436))) +(recipe r326 (numIngredients 2)) +(recipe r326 (result (id item326))) +(recipe r326 (pattern 0 sx326)) +(recipe r326 (pattern 1 sy326)) +(recipe r326 (key (sx326 ing378))) +(recipe r326 (key (sy326 ing430))) +(recipe r326 (key (sx326 ing379))) +(recipe r326 (key (sy326 ing431))) +(recipe r326 (key (sx326 ing380))) +(recipe r326 (key (sy326 ing432))) +(recipe r326 (key (sx326 ing381))) +(recipe r326 (key (sy326 ing433))) +(recipe r326 (key (sx326 ing382))) +(recipe r326 (key (sy326 ing434))) +(recipe r326 (key (sx326 ing383))) +(recipe r326 (key (sy326 ing435))) +(recipe r326 (key (sx326 ing384))) +(recipe r326 (key (sy326 ing436))) +(recipe r326 (key (sx326 ing385))) +(recipe r326 (key (sy326 ing437))) +(recipe r326 (key (sx326 ing386))) +(recipe r326 (key (sy326 ing438))) +(recipe r326 (key (sx326 ing387))) +(recipe r326 (key (sy326 ing439))) +(recipe r326 (key (sx326 ing388))) +(recipe r326 (key (sy326 ing440))) +(recipe r326 (key (sx326 ing389))) +(recipe r326 (key (sy326 ing441))) +(recipe r327 (numIngredients 2)) +(recipe r327 (result (id item327))) +(recipe r327 (pattern 0 sx327)) +(recipe r327 (pattern 1 sy327)) +(recipe r327 (key (sx327 ing381))) +(recipe r327 (key (sy327 ing435))) +(recipe r327 (key (sx327 ing382))) +(recipe r327 (key (sy327 ing436))) +(recipe r327 (key (sx327 ing383))) +(recipe r327 (key (sy327 ing437))) +(recipe r327 (key (sx327 ing384))) +(recipe r327 (key (sy327 ing438))) +(recipe r327 (key (sx327 ing385))) +(recipe r327 (key (sy327 ing439))) +(recipe r327 (key (sx327 ing386))) +(recipe r327 (key (sy327 ing440))) +(recipe r327 (key (sx327 ing387))) +(recipe r327 (key (sy327 ing441))) +(recipe r327 (key (sx327 ing388))) +(recipe r327 (key (sy327 ing442))) +(recipe r327 (key (sx327 ing389))) +(recipe r327 (key (sy327 ing443))) +(recipe r327 (key (sx327 ing390))) +(recipe r327 (key (sy327 ing444))) +(recipe r327 (key (sx327 ing391))) +(recipe r327 (key (sy327 ing445))) +(recipe r327 (key (sx327 ing392))) +(recipe r327 (key (sy327 ing446))) +(recipe r328 (numIngredients 2)) +(recipe r328 (result (id item328))) +(recipe r328 (pattern 0 sx328)) +(recipe r328 (pattern 1 sy328)) +(recipe r328 (key (sx328 ing384))) +(recipe r328 (key (sy328 ing440))) +(recipe r328 (key (sx328 ing385))) +(recipe r328 (key (sy328 ing441))) +(recipe r328 (key (sx328 ing386))) +(recipe r328 (key (sy328 ing442))) +(recipe r328 (key (sx328 ing387))) +(recipe r328 (key (sy328 ing443))) +(recipe r328 (key (sx328 ing388))) +(recipe r328 (key (sy328 ing444))) +(recipe r328 (key (sx328 ing389))) +(recipe r328 (key (sy328 ing445))) +(recipe r328 (key (sx328 ing390))) +(recipe r328 (key (sy328 ing446))) +(recipe r328 (key (sx328 ing391))) +(recipe r328 (key (sy328 ing447))) +(recipe r328 (key (sx328 ing392))) +(recipe r328 (key (sy328 ing448))) +(recipe r328 (key (sx328 ing393))) +(recipe r328 (key (sy328 ing449))) +(recipe r328 (key (sx328 ing394))) +(recipe r328 (key (sy328 ing450))) +(recipe r328 (key (sx328 ing395))) +(recipe r328 (key (sy328 ing451))) +(recipe r329 (numIngredients 2)) +(recipe r329 (result (id item329))) +(recipe r329 (pattern 0 sx329)) +(recipe r329 (pattern 1 sy329)) +(recipe r329 (key (sx329 ing387))) +(recipe r329 (key (sy329 ing445))) +(recipe r329 (key (sx329 ing388))) +(recipe r329 (key (sy329 ing446))) +(recipe r329 (key (sx329 ing389))) +(recipe r329 (key (sy329 ing447))) +(recipe r329 (key (sx329 ing390))) +(recipe r329 (key (sy329 ing448))) +(recipe r329 (key (sx329 ing391))) +(recipe r329 (key (sy329 ing449))) +(recipe r329 (key (sx329 ing392))) +(recipe r329 (key (sy329 ing450))) +(recipe r329 (key (sx329 ing393))) +(recipe r329 (key (sy329 ing451))) +(recipe r329 (key (sx329 ing394))) +(recipe r329 (key (sy329 ing452))) +(recipe r329 (key (sx329 ing395))) +(recipe r329 (key (sy329 ing453))) +(recipe r329 (key (sx329 ing396))) +(recipe r329 (key (sy329 ing454))) +(recipe r329 (key (sx329 ing397))) +(recipe r329 (key (sy329 ing455))) +(recipe r329 (key (sx329 ing398))) +(recipe r329 (key (sy329 ing456))) +(recipe r330 (numIngredients 2)) +(recipe r330 (result (id item330))) +(recipe r330 (pattern 0 sx330)) +(recipe r330 (pattern 1 sy330)) +(recipe r330 (key (sx330 ing390))) +(recipe r330 (key (sy330 ing450))) +(recipe r330 (key (sx330 ing391))) +(recipe r330 (key (sy330 ing451))) +(recipe r330 (key (sx330 ing392))) +(recipe r330 (key (sy330 ing452))) +(recipe r330 (key (sx330 ing393))) +(recipe r330 (key (sy330 ing453))) +(recipe r330 (key (sx330 ing394))) +(recipe r330 (key (sy330 ing454))) +(recipe r330 (key (sx330 ing395))) +(recipe r330 (key (sy330 ing455))) +(recipe r330 (key (sx330 ing396))) +(recipe r330 (key (sy330 ing456))) +(recipe r330 (key (sx330 ing397))) +(recipe r330 (key (sy330 ing457))) +(recipe r330 (key (sx330 ing398))) +(recipe r330 (key (sy330 ing458))) +(recipe r330 (key (sx330 ing399))) +(recipe r330 (key (sy330 ing459))) +(recipe r330 (key (sx330 ing400))) +(recipe r330 (key (sy330 ing460))) +(recipe r330 (key (sx330 ing401))) +(recipe r330 (key (sy330 ing461))) +(recipe r331 (numIngredients 2)) +(recipe r331 (result (id item331))) +(recipe r331 (pattern 0 sx331)) +(recipe r331 (pattern 1 sy331)) +(recipe r331 (key (sx331 ing393))) +(recipe r331 (key (sy331 ing455))) +(recipe r331 (key (sx331 ing394))) +(recipe r331 (key (sy331 ing456))) +(recipe r331 (key (sx331 ing395))) +(recipe r331 (key (sy331 ing457))) +(recipe r331 (key (sx331 ing396))) +(recipe r331 (key (sy331 ing458))) +(recipe r331 (key (sx331 ing397))) +(recipe r331 (key (sy331 ing459))) +(recipe r331 (key (sx331 ing398))) +(recipe r331 (key (sy331 ing460))) +(recipe r331 (key (sx331 ing399))) +(recipe r331 (key (sy331 ing461))) +(recipe r331 (key (sx331 ing400))) +(recipe r331 (key (sy331 ing462))) +(recipe r331 (key (sx331 ing401))) +(recipe r331 (key (sy331 ing463))) +(recipe r331 (key (sx331 ing402))) +(recipe r331 (key (sy331 ing464))) +(recipe r331 (key (sx331 ing403))) +(recipe r331 (key (sy331 ing465))) +(recipe r331 (key (sx331 ing404))) +(recipe r331 (key (sy331 ing466))) +(recipe r332 (numIngredients 2)) +(recipe r332 (result (id item332))) +(recipe r332 (pattern 0 sx332)) +(recipe r332 (pattern 1 sy332)) +(recipe r332 (key (sx332 ing396))) +(recipe r332 (key (sy332 ing460))) +(recipe r332 (key (sx332 ing397))) +(recipe r332 (key (sy332 ing461))) +(recipe r332 (key (sx332 ing398))) +(recipe r332 (key (sy332 ing462))) +(recipe r332 (key (sx332 ing399))) +(recipe r332 (key (sy332 ing463))) +(recipe r332 (key (sx332 ing400))) +(recipe r332 (key (sy332 ing464))) +(recipe r332 (key (sx332 ing401))) +(recipe r332 (key (sy332 ing465))) +(recipe r332 (key (sx332 ing402))) +(recipe r332 (key (sy332 ing466))) +(recipe r332 (key (sx332 ing403))) +(recipe r332 (key (sy332 ing467))) +(recipe r332 (key (sx332 ing404))) +(recipe r332 (key (sy332 ing468))) +(recipe r332 (key (sx332 ing405))) +(recipe r332 (key (sy332 ing469))) +(recipe r332 (key (sx332 ing406))) +(recipe r332 (key (sy332 ing470))) +(recipe r332 (key (sx332 ing407))) +(recipe r332 (key (sy332 ing471))) +(recipe r333 (numIngredients 2)) +(recipe r333 (result (id item333))) +(recipe r333 (pattern 0 sx333)) +(recipe r333 (pattern 1 sy333)) +(recipe r333 (key (sx333 ing399))) +(recipe r333 (key (sy333 ing465))) +(recipe r333 (key (sx333 ing400))) +(recipe r333 (key (sy333 ing466))) +(recipe r333 (key (sx333 ing401))) +(recipe r333 (key (sy333 ing467))) +(recipe r333 (key (sx333 ing402))) +(recipe r333 (key (sy333 ing468))) +(recipe r333 (key (sx333 ing403))) +(recipe r333 (key (sy333 ing469))) +(recipe r333 (key (sx333 ing404))) +(recipe r333 (key (sy333 ing470))) +(recipe r333 (key (sx333 ing405))) +(recipe r333 (key (sy333 ing471))) +(recipe r333 (key (sx333 ing406))) +(recipe r333 (key (sy333 ing472))) +(recipe r333 (key (sx333 ing407))) +(recipe r333 (key (sy333 ing473))) +(recipe r333 (key (sx333 ing408))) +(recipe r333 (key (sy333 ing474))) +(recipe r333 (key (sx333 ing409))) +(recipe r333 (key (sy333 ing475))) +(recipe r333 (key (sx333 ing410))) +(recipe r333 (key (sy333 ing476))) +(recipe r334 (numIngredients 2)) +(recipe r334 (result (id item334))) +(recipe r334 (pattern 0 sx334)) +(recipe r334 (pattern 1 sy334)) +(recipe r334 (key (sx334 ing402))) +(recipe r334 (key (sy334 ing470))) +(recipe r334 (key (sx334 ing403))) +(recipe r334 (key (sy334 ing471))) +(recipe r334 (key (sx334 ing404))) +(recipe r334 (key (sy334 ing472))) +(recipe r334 (key (sx334 ing405))) +(recipe r334 (key (sy334 ing473))) +(recipe r334 (key (sx334 ing406))) +(recipe r334 (key (sy334 ing474))) +(recipe r334 (key (sx334 ing407))) +(recipe r334 (key (sy334 ing475))) +(recipe r334 (key (sx334 ing408))) +(recipe r334 (key (sy334 ing476))) +(recipe r334 (key (sx334 ing409))) +(recipe r334 (key (sy334 ing477))) +(recipe r334 (key (sx334 ing410))) +(recipe r334 (key (sy334 ing478))) +(recipe r334 (key (sx334 ing411))) +(recipe r334 (key (sy334 ing479))) +(recipe r334 (key (sx334 ing412))) +(recipe r334 (key (sy334 ing480))) +(recipe r334 (key (sx334 ing413))) +(recipe r334 (key (sy334 ing481))) +(recipe r335 (numIngredients 2)) +(recipe r335 (result (id item335))) +(recipe r335 (pattern 0 sx335)) +(recipe r335 (pattern 1 sy335)) +(recipe r335 (key (sx335 ing405))) +(recipe r335 (key (sy335 ing475))) +(recipe r335 (key (sx335 ing406))) +(recipe r335 (key (sy335 ing476))) +(recipe r335 (key (sx335 ing407))) +(recipe r335 (key (sy335 ing477))) +(recipe r335 (key (sx335 ing408))) +(recipe r335 (key (sy335 ing478))) +(recipe r335 (key (sx335 ing409))) +(recipe r335 (key (sy335 ing479))) +(recipe r335 (key (sx335 ing410))) +(recipe r335 (key (sy335 ing480))) +(recipe r335 (key (sx335 ing411))) +(recipe r335 (key (sy335 ing481))) +(recipe r335 (key (sx335 ing412))) +(recipe r335 (key (sy335 ing482))) +(recipe r335 (key (sx335 ing413))) +(recipe r335 (key (sy335 ing483))) +(recipe r335 (key (sx335 ing414))) +(recipe r335 (key (sy335 ing484))) +(recipe r335 (key (sx335 ing415))) +(recipe r335 (key (sy335 ing485))) +(recipe r335 (key (sx335 ing416))) +(recipe r335 (key (sy335 ing486))) +(recipe r336 (numIngredients 2)) +(recipe r336 (result (id item336))) +(recipe r336 (pattern 0 sx336)) +(recipe r336 (pattern 1 sy336)) +(recipe r336 (key (sx336 ing408))) +(recipe r336 (key (sy336 ing480))) +(recipe r336 (key (sx336 ing409))) +(recipe r336 (key (sy336 ing481))) +(recipe r336 (key (sx336 ing410))) +(recipe r336 (key (sy336 ing482))) +(recipe r336 (key (sx336 ing411))) +(recipe r336 (key (sy336 ing483))) +(recipe r336 (key (sx336 ing412))) +(recipe r336 (key (sy336 ing484))) +(recipe r336 (key (sx336 ing413))) +(recipe r336 (key (sy336 ing485))) +(recipe r336 (key (sx336 ing414))) +(recipe r336 (key (sy336 ing486))) +(recipe r336 (key (sx336 ing415))) +(recipe r336 (key (sy336 ing487))) +(recipe r336 (key (sx336 ing416))) +(recipe r336 (key (sy336 ing488))) +(recipe r336 (key (sx336 ing417))) +(recipe r336 (key (sy336 ing489))) +(recipe r336 (key (sx336 ing418))) +(recipe r336 (key (sy336 ing490))) +(recipe r336 (key (sx336 ing419))) +(recipe r336 (key (sy336 ing491))) +(recipe r337 (numIngredients 2)) +(recipe r337 (result (id item337))) +(recipe r337 (pattern 0 sx337)) +(recipe r337 (pattern 1 sy337)) +(recipe r337 (key (sx337 ing411))) +(recipe r337 (key (sy337 ing485))) +(recipe r337 (key (sx337 ing412))) +(recipe r337 (key (sy337 ing486))) +(recipe r337 (key (sx337 ing413))) +(recipe r337 (key (sy337 ing487))) +(recipe r337 (key (sx337 ing414))) +(recipe r337 (key (sy337 ing488))) +(recipe r337 (key (sx337 ing415))) +(recipe r337 (key (sy337 ing489))) +(recipe r337 (key (sx337 ing416))) +(recipe r337 (key (sy337 ing490))) +(recipe r337 (key (sx337 ing417))) +(recipe r337 (key (sy337 ing491))) +(recipe r337 (key (sx337 ing418))) +(recipe r337 (key (sy337 ing492))) +(recipe r337 (key (sx337 ing419))) +(recipe r337 (key (sy337 ing493))) +(recipe r337 (key (sx337 ing420))) +(recipe r337 (key (sy337 ing494))) +(recipe r337 (key (sx337 ing421))) +(recipe r337 (key (sy337 ing495))) +(recipe r337 (key (sx337 ing422))) +(recipe r337 (key (sy337 ing496))) +(recipe r338 (numIngredients 2)) +(recipe r338 (result (id item338))) +(recipe r338 (pattern 0 sx338)) +(recipe r338 (pattern 1 sy338)) +(recipe r338 (key (sx338 ing414))) +(recipe r338 (key (sy338 ing490))) +(recipe r338 (key (sx338 ing415))) +(recipe r338 (key (sy338 ing491))) +(recipe r338 (key (sx338 ing416))) +(recipe r338 (key (sy338 ing492))) +(recipe r338 (key (sx338 ing417))) +(recipe r338 (key (sy338 ing493))) +(recipe r338 (key (sx338 ing418))) +(recipe r338 (key (sy338 ing494))) +(recipe r338 (key (sx338 ing419))) +(recipe r338 (key (sy338 ing495))) +(recipe r338 (key (sx338 ing420))) +(recipe r338 (key (sy338 ing496))) +(recipe r338 (key (sx338 ing421))) +(recipe r338 (key (sy338 ing497))) +(recipe r338 (key (sx338 ing422))) +(recipe r338 (key (sy338 ing498))) +(recipe r338 (key (sx338 ing423))) +(recipe r338 (key (sy338 ing499))) +(recipe r338 (key (sx338 ing424))) +(recipe r338 (key (sy338 ing500))) +(recipe r338 (key (sx338 ing425))) +(recipe r338 (key (sy338 ing501))) +(recipe r339 (numIngredients 2)) +(recipe r339 (result (id item339))) +(recipe r339 (pattern 0 sx339)) +(recipe r339 (pattern 1 sy339)) +(recipe r339 (key (sx339 ing417))) +(recipe r339 (key (sy339 ing495))) +(recipe r339 (key (sx339 ing418))) +(recipe r339 (key (sy339 ing496))) +(recipe r339 (key (sx339 ing419))) +(recipe r339 (key (sy339 ing497))) +(recipe r339 (key (sx339 ing420))) +(recipe r339 (key (sy339 ing498))) +(recipe r339 (key (sx339 ing421))) +(recipe r339 (key (sy339 ing499))) +(recipe r339 (key (sx339 ing422))) +(recipe r339 (key (sy339 ing500))) +(recipe r339 (key (sx339 ing423))) +(recipe r339 (key (sy339 ing501))) +(recipe r339 (key (sx339 ing424))) +(recipe r339 (key (sy339 ing502))) +(recipe r339 (key (sx339 ing425))) +(recipe r339 (key (sy339 ing503))) +(recipe r339 (key (sx339 ing426))) +(recipe r339 (key (sy339 ing504))) +(recipe r339 (key (sx339 ing427))) +(recipe r339 (key (sy339 ing505))) +(recipe r339 (key (sx339 ing428))) +(recipe r339 (key (sy339 ing506))) +(recipe r340 (numIngredients 2)) +(recipe r340 (result (id item340))) +(recipe r340 (pattern 0 sx340)) +(recipe r340 (pattern 1 sy340)) +(recipe r340 (key (sx340 ing420))) +(recipe r340 (key (sy340 ing500))) +(recipe r340 (key (sx340 ing421))) +(recipe r340 (key (sy340 ing501))) +(recipe r340 (key (sx340 ing422))) +(recipe r340 (key (sy340 ing502))) +(recipe r340 (key (sx340 ing423))) +(recipe r340 (key (sy340 ing503))) +(recipe r340 (key (sx340 ing424))) +(recipe r340 (key (sy340 ing504))) +(recipe r340 (key (sx340 ing425))) +(recipe r340 (key (sy340 ing505))) +(recipe r340 (key (sx340 ing426))) +(recipe r340 (key (sy340 ing506))) +(recipe r340 (key (sx340 ing427))) +(recipe r340 (key (sy340 ing507))) +(recipe r340 (key (sx340 ing428))) +(recipe r340 (key (sy340 ing508))) +(recipe r340 (key (sx340 ing429))) +(recipe r340 (key (sy340 ing509))) +(recipe r340 (key (sx340 ing430))) +(recipe r340 (key (sy340 ing510))) +(recipe r340 (key (sx340 ing431))) +(recipe r340 (key (sy340 ing511))) +(recipe r341 (numIngredients 2)) +(recipe r341 (result (id item341))) +(recipe r341 (pattern 0 sx341)) +(recipe r341 (pattern 1 sy341)) +(recipe r341 (key (sx341 ing423))) +(recipe r341 (key (sy341 ing505))) +(recipe r341 (key (sx341 ing424))) +(recipe r341 (key (sy341 ing506))) +(recipe r341 (key (sx341 ing425))) +(recipe r341 (key (sy341 ing507))) +(recipe r341 (key (sx341 ing426))) +(recipe r341 (key (sy341 ing508))) +(recipe r341 (key (sx341 ing427))) +(recipe r341 (key (sy341 ing509))) +(recipe r341 (key (sx341 ing428))) +(recipe r341 (key (sy341 ing510))) +(recipe r341 (key (sx341 ing429))) +(recipe r341 (key (sy341 ing511))) +(recipe r341 (key (sx341 ing430))) +(recipe r341 (key (sy341 ing512))) +(recipe r341 (key (sx341 ing431))) +(recipe r341 (key (sy341 ing513))) +(recipe r341 (key (sx341 ing432))) +(recipe r341 (key (sy341 ing514))) +(recipe r341 (key (sx341 ing433))) +(recipe r341 (key (sy341 ing515))) +(recipe r341 (key (sx341 ing434))) +(recipe r341 (key (sy341 ing516))) +(recipe r342 (numIngredients 2)) +(recipe r342 (result (id item342))) +(recipe r342 (pattern 0 sx342)) +(recipe r342 (pattern 1 sy342)) +(recipe r342 (key (sx342 ing426))) +(recipe r342 (key (sy342 ing510))) +(recipe r342 (key (sx342 ing427))) +(recipe r342 (key (sy342 ing511))) +(recipe r342 (key (sx342 ing428))) +(recipe r342 (key (sy342 ing512))) +(recipe r342 (key (sx342 ing429))) +(recipe r342 (key (sy342 ing513))) +(recipe r342 (key (sx342 ing430))) +(recipe r342 (key (sy342 ing514))) +(recipe r342 (key (sx342 ing431))) +(recipe r342 (key (sy342 ing515))) +(recipe r342 (key (sx342 ing432))) +(recipe r342 (key (sy342 ing516))) +(recipe r342 (key (sx342 ing433))) +(recipe r342 (key (sy342 ing517))) +(recipe r342 (key (sx342 ing434))) +(recipe r342 (key (sy342 ing518))) +(recipe r342 (key (sx342 ing435))) +(recipe r342 (key (sy342 ing519))) +(recipe r342 (key (sx342 ing436))) +(recipe r342 (key (sy342 ing520))) +(recipe r342 (key (sx342 ing437))) +(recipe r342 (key (sy342 ing521))) +(recipe r343 (numIngredients 2)) +(recipe r343 (result (id item343))) +(recipe r343 (pattern 0 sx343)) +(recipe r343 (pattern 1 sy343)) +(recipe r343 (key (sx343 ing429))) +(recipe r343 (key (sy343 ing515))) +(recipe r343 (key (sx343 ing430))) +(recipe r343 (key (sy343 ing516))) +(recipe r343 (key (sx343 ing431))) +(recipe r343 (key (sy343 ing517))) +(recipe r343 (key (sx343 ing432))) +(recipe r343 (key (sy343 ing518))) +(recipe r343 (key (sx343 ing433))) +(recipe r343 (key (sy343 ing519))) +(recipe r343 (key (sx343 ing434))) +(recipe r343 (key (sy343 ing520))) +(recipe r343 (key (sx343 ing435))) +(recipe r343 (key (sy343 ing521))) +(recipe r343 (key (sx343 ing436))) +(recipe r343 (key (sy343 ing522))) +(recipe r343 (key (sx343 ing437))) +(recipe r343 (key (sy343 ing523))) +(recipe r343 (key (sx343 ing438))) +(recipe r343 (key (sy343 ing524))) +(recipe r343 (key (sx343 ing439))) +(recipe r343 (key (sy343 ing525))) +(recipe r343 (key (sx343 ing440))) +(recipe r343 (key (sy343 ing526))) +(recipe r344 (numIngredients 2)) +(recipe r344 (result (id item344))) +(recipe r344 (pattern 0 sx344)) +(recipe r344 (pattern 1 sy344)) +(recipe r344 (key (sx344 ing432))) +(recipe r344 (key (sy344 ing520))) +(recipe r344 (key (sx344 ing433))) +(recipe r344 (key (sy344 ing521))) +(recipe r344 (key (sx344 ing434))) +(recipe r344 (key (sy344 ing522))) +(recipe r344 (key (sx344 ing435))) +(recipe r344 (key (sy344 ing523))) +(recipe r344 (key (sx344 ing436))) +(recipe r344 (key (sy344 ing524))) +(recipe r344 (key (sx344 ing437))) +(recipe r344 (key (sy344 ing525))) +(recipe r344 (key (sx344 ing438))) +(recipe r344 (key (sy344 ing526))) +(recipe r344 (key (sx344 ing439))) +(recipe r344 (key (sy344 ing527))) +(recipe r344 (key (sx344 ing440))) +(recipe r344 (key (sy344 ing528))) +(recipe r344 (key (sx344 ing441))) +(recipe r344 (key (sy344 ing529))) +(recipe r344 (key (sx344 ing442))) +(recipe r344 (key (sy344 ing530))) +(recipe r344 (key (sx344 ing443))) +(recipe r344 (key (sy344 ing531))) +(recipe r345 (numIngredients 2)) +(recipe r345 (result (id item345))) +(recipe r345 (pattern 0 sx345)) +(recipe r345 (pattern 1 sy345)) +(recipe r345 (key (sx345 ing435))) +(recipe r345 (key (sy345 ing525))) +(recipe r345 (key (sx345 ing436))) +(recipe r345 (key (sy345 ing526))) +(recipe r345 (key (sx345 ing437))) +(recipe r345 (key (sy345 ing527))) +(recipe r345 (key (sx345 ing438))) +(recipe r345 (key (sy345 ing528))) +(recipe r345 (key (sx345 ing439))) +(recipe r345 (key (sy345 ing529))) +(recipe r345 (key (sx345 ing440))) +(recipe r345 (key (sy345 ing530))) +(recipe r345 (key (sx345 ing441))) +(recipe r345 (key (sy345 ing531))) +(recipe r345 (key (sx345 ing442))) +(recipe r345 (key (sy345 ing532))) +(recipe r345 (key (sx345 ing443))) +(recipe r345 (key (sy345 ing533))) +(recipe r345 (key (sx345 ing444))) +(recipe r345 (key (sy345 ing534))) +(recipe r345 (key (sx345 ing445))) +(recipe r345 (key (sy345 ing535))) +(recipe r345 (key (sx345 ing446))) +(recipe r345 (key (sy345 ing536))) +(recipe r346 (numIngredients 2)) +(recipe r346 (result (id item346))) +(recipe r346 (pattern 0 sx346)) +(recipe r346 (pattern 1 sy346)) +(recipe r346 (key (sx346 ing438))) +(recipe r346 (key (sy346 ing530))) +(recipe r346 (key (sx346 ing439))) +(recipe r346 (key (sy346 ing531))) +(recipe r346 (key (sx346 ing440))) +(recipe r346 (key (sy346 ing532))) +(recipe r346 (key (sx346 ing441))) +(recipe r346 (key (sy346 ing533))) +(recipe r346 (key (sx346 ing442))) +(recipe r346 (key (sy346 ing534))) +(recipe r346 (key (sx346 ing443))) +(recipe r346 (key (sy346 ing535))) +(recipe r346 (key (sx346 ing444))) +(recipe r346 (key (sy346 ing536))) +(recipe r346 (key (sx346 ing445))) +(recipe r346 (key (sy346 ing537))) +(recipe r346 (key (sx346 ing446))) +(recipe r346 (key (sy346 ing538))) +(recipe r346 (key (sx346 ing447))) +(recipe r346 (key (sy346 ing539))) +(recipe r346 (key (sx346 ing448))) +(recipe r346 (key (sy346 ing540))) +(recipe r346 (key (sx346 ing449))) +(recipe r346 (key (sy346 ing541))) +(recipe r347 (numIngredients 2)) +(recipe r347 (result (id item347))) +(recipe r347 (pattern 0 sx347)) +(recipe r347 (pattern 1 sy347)) +(recipe r347 (key (sx347 ing441))) +(recipe r347 (key (sy347 ing535))) +(recipe r347 (key (sx347 ing442))) +(recipe r347 (key (sy347 ing536))) +(recipe r347 (key (sx347 ing443))) +(recipe r347 (key (sy347 ing537))) +(recipe r347 (key (sx347 ing444))) +(recipe r347 (key (sy347 ing538))) +(recipe r347 (key (sx347 ing445))) +(recipe r347 (key (sy347 ing539))) +(recipe r347 (key (sx347 ing446))) +(recipe r347 (key (sy347 ing540))) +(recipe r347 (key (sx347 ing447))) +(recipe r347 (key (sy347 ing541))) +(recipe r347 (key (sx347 ing448))) +(recipe r347 (key (sy347 ing542))) +(recipe r347 (key (sx347 ing449))) +(recipe r347 (key (sy347 ing543))) +(recipe r347 (key (sx347 ing450))) +(recipe r347 (key (sy347 ing544))) +(recipe r347 (key (sx347 ing451))) +(recipe r347 (key (sy347 ing545))) +(recipe r347 (key (sx347 ing452))) +(recipe r347 (key (sy347 ing546))) +(recipe r348 (numIngredients 2)) +(recipe r348 (result (id item348))) +(recipe r348 (pattern 0 sx348)) +(recipe r348 (pattern 1 sy348)) +(recipe r348 (key (sx348 ing444))) +(recipe r348 (key (sy348 ing540))) +(recipe r348 (key (sx348 ing445))) +(recipe r348 (key (sy348 ing541))) +(recipe r348 (key (sx348 ing446))) +(recipe r348 (key (sy348 ing542))) +(recipe r348 (key (sx348 ing447))) +(recipe r348 (key (sy348 ing543))) +(recipe r348 (key (sx348 ing448))) +(recipe r348 (key (sy348 ing544))) +(recipe r348 (key (sx348 ing449))) +(recipe r348 (key (sy348 ing545))) +(recipe r348 (key (sx348 ing450))) +(recipe r348 (key (sy348 ing546))) +(recipe r348 (key (sx348 ing451))) +(recipe r348 (key (sy348 ing547))) +(recipe r348 (key (sx348 ing452))) +(recipe r348 (key (sy348 ing548))) +(recipe r348 (key (sx348 ing453))) +(recipe r348 (key (sy348 ing549))) +(recipe r348 (key (sx348 ing454))) +(recipe r348 (key (sy348 ing550))) +(recipe r348 (key (sx348 ing455))) +(recipe r348 (key (sy348 ing551))) +(recipe r349 (numIngredients 2)) +(recipe r349 (result (id item349))) +(recipe r349 (pattern 0 sx349)) +(recipe r349 (pattern 1 sy349)) +(recipe r349 (key (sx349 ing447))) +(recipe r349 (key (sy349 ing545))) +(recipe r349 (key (sx349 ing448))) +(recipe r349 (key (sy349 ing546))) +(recipe r349 (key (sx349 ing449))) +(recipe r349 (key (sy349 ing547))) +(recipe r349 (key (sx349 ing450))) +(recipe r349 (key (sy349 ing548))) +(recipe r349 (key (sx349 ing451))) +(recipe r349 (key (sy349 ing549))) +(recipe r349 (key (sx349 ing452))) +(recipe r349 (key (sy349 ing550))) +(recipe r349 (key (sx349 ing453))) +(recipe r349 (key (sy349 ing551))) +(recipe r349 (key (sx349 ing454))) +(recipe r349 (key (sy349 ing552))) +(recipe r349 (key (sx349 ing455))) +(recipe r349 (key (sy349 ing553))) +(recipe r349 (key (sx349 ing456))) +(recipe r349 (key (sy349 ing554))) +(recipe r349 (key (sx349 ing457))) +(recipe r349 (key (sy349 ing555))) +(recipe r349 (key (sx349 ing458))) +(recipe r349 (key (sy349 ing556))) +(recipe r350 (numIngredients 2)) +(recipe r350 (result (id item350))) +(recipe r350 (pattern 0 sx350)) +(recipe r350 (pattern 1 sy350)) +(recipe r350 (key (sx350 ing450))) +(recipe r350 (key (sy350 ing550))) +(recipe r350 (key (sx350 ing451))) +(recipe r350 (key (sy350 ing551))) +(recipe r350 (key (sx350 ing452))) +(recipe r350 (key (sy350 ing552))) +(recipe r350 (key (sx350 ing453))) +(recipe r350 (key (sy350 ing553))) +(recipe r350 (key (sx350 ing454))) +(recipe r350 (key (sy350 ing554))) +(recipe r350 (key (sx350 ing455))) +(recipe r350 (key (sy350 ing555))) +(recipe r350 (key (sx350 ing456))) +(recipe r350 (key (sy350 ing556))) +(recipe r350 (key (sx350 ing457))) +(recipe r350 (key (sy350 ing557))) +(recipe r350 (key (sx350 ing458))) +(recipe r350 (key (sy350 ing558))) +(recipe r350 (key (sx350 ing459))) +(recipe r350 (key (sy350 ing559))) +(recipe r350 (key (sx350 ing460))) +(recipe r350 (key (sy350 ing560))) +(recipe r350 (key (sx350 ing461))) +(recipe r350 (key (sy350 ing561))) +(recipe r351 (numIngredients 2)) +(recipe r351 (result (id item351))) +(recipe r351 (pattern 0 sx351)) +(recipe r351 (pattern 1 sy351)) +(recipe r351 (key (sx351 ing453))) +(recipe r351 (key (sy351 ing555))) +(recipe r351 (key (sx351 ing454))) +(recipe r351 (key (sy351 ing556))) +(recipe r351 (key (sx351 ing455))) +(recipe r351 (key (sy351 ing557))) +(recipe r351 (key (sx351 ing456))) +(recipe r351 (key (sy351 ing558))) +(recipe r351 (key (sx351 ing457))) +(recipe r351 (key (sy351 ing559))) +(recipe r351 (key (sx351 ing458))) +(recipe r351 (key (sy351 ing560))) +(recipe r351 (key (sx351 ing459))) +(recipe r351 (key (sy351 ing561))) +(recipe r351 (key (sx351 ing460))) +(recipe r351 (key (sy351 ing562))) +(recipe r351 (key (sx351 ing461))) +(recipe r351 (key (sy351 ing563))) +(recipe r351 (key (sx351 ing462))) +(recipe r351 (key (sy351 ing564))) +(recipe r351 (key (sx351 ing463))) +(recipe r351 (key (sy351 ing565))) +(recipe r351 (key (sx351 ing464))) +(recipe r351 (key (sy351 ing566))) +(recipe r352 (numIngredients 2)) +(recipe r352 (result (id item352))) +(recipe r352 (pattern 0 sx352)) +(recipe r352 (pattern 1 sy352)) +(recipe r352 (key (sx352 ing456))) +(recipe r352 (key (sy352 ing560))) +(recipe r352 (key (sx352 ing457))) +(recipe r352 (key (sy352 ing561))) +(recipe r352 (key (sx352 ing458))) +(recipe r352 (key (sy352 ing562))) +(recipe r352 (key (sx352 ing459))) +(recipe r352 (key (sy352 ing563))) +(recipe r352 (key (sx352 ing460))) +(recipe r352 (key (sy352 ing564))) +(recipe r352 (key (sx352 ing461))) +(recipe r352 (key (sy352 ing565))) +(recipe r352 (key (sx352 ing462))) +(recipe r352 (key (sy352 ing566))) +(recipe r352 (key (sx352 ing463))) +(recipe r352 (key (sy352 ing567))) +(recipe r352 (key (sx352 ing464))) +(recipe r352 (key (sy352 ing568))) +(recipe r352 (key (sx352 ing465))) +(recipe r352 (key (sy352 ing569))) +(recipe r352 (key (sx352 ing466))) +(recipe r352 (key (sy352 ing570))) +(recipe r352 (key (sx352 ing467))) +(recipe r352 (key (sy352 ing571))) +(recipe r353 (numIngredients 2)) +(recipe r353 (result (id item353))) +(recipe r353 (pattern 0 sx353)) +(recipe r353 (pattern 1 sy353)) +(recipe r353 (key (sx353 ing459))) +(recipe r353 (key (sy353 ing565))) +(recipe r353 (key (sx353 ing460))) +(recipe r353 (key (sy353 ing566))) +(recipe r353 (key (sx353 ing461))) +(recipe r353 (key (sy353 ing567))) +(recipe r353 (key (sx353 ing462))) +(recipe r353 (key (sy353 ing568))) +(recipe r353 (key (sx353 ing463))) +(recipe r353 (key (sy353 ing569))) +(recipe r353 (key (sx353 ing464))) +(recipe r353 (key (sy353 ing570))) +(recipe r353 (key (sx353 ing465))) +(recipe r353 (key (sy353 ing571))) +(recipe r353 (key (sx353 ing466))) +(recipe r353 (key (sy353 ing572))) +(recipe r353 (key (sx353 ing467))) +(recipe r353 (key (sy353 ing573))) +(recipe r353 (key (sx353 ing468))) +(recipe r353 (key (sy353 ing574))) +(recipe r353 (key (sx353 ing469))) +(recipe r353 (key (sy353 ing575))) +(recipe r353 (key (sx353 ing470))) +(recipe r353 (key (sy353 ing576))) +(recipe r354 (numIngredients 2)) +(recipe r354 (result (id item354))) +(recipe r354 (pattern 0 sx354)) +(recipe r354 (pattern 1 sy354)) +(recipe r354 (key (sx354 ing462))) +(recipe r354 (key (sy354 ing570))) +(recipe r354 (key (sx354 ing463))) +(recipe r354 (key (sy354 ing571))) +(recipe r354 (key (sx354 ing464))) +(recipe r354 (key (sy354 ing572))) +(recipe r354 (key (sx354 ing465))) +(recipe r354 (key (sy354 ing573))) +(recipe r354 (key (sx354 ing466))) +(recipe r354 (key (sy354 ing574))) +(recipe r354 (key (sx354 ing467))) +(recipe r354 (key (sy354 ing575))) +(recipe r354 (key (sx354 ing468))) +(recipe r354 (key (sy354 ing576))) +(recipe r354 (key (sx354 ing469))) +(recipe r354 (key (sy354 ing577))) +(recipe r354 (key (sx354 ing470))) +(recipe r354 (key (sy354 ing578))) +(recipe r354 (key (sx354 ing471))) +(recipe r354 (key (sy354 ing579))) +(recipe r354 (key (sx354 ing472))) +(recipe r354 (key (sy354 ing580))) +(recipe r354 (key (sx354 ing473))) +(recipe r354 (key (sy354 ing581))) +(recipe r355 (numIngredients 2)) +(recipe r355 (result (id item355))) +(recipe r355 (pattern 0 sx355)) +(recipe r355 (pattern 1 sy355)) +(recipe r355 (key (sx355 ing465))) +(recipe r355 (key (sy355 ing575))) +(recipe r355 (key (sx355 ing466))) +(recipe r355 (key (sy355 ing576))) +(recipe r355 (key (sx355 ing467))) +(recipe r355 (key (sy355 ing577))) +(recipe r355 (key (sx355 ing468))) +(recipe r355 (key (sy355 ing578))) +(recipe r355 (key (sx355 ing469))) +(recipe r355 (key (sy355 ing579))) +(recipe r355 (key (sx355 ing470))) +(recipe r355 (key (sy355 ing580))) +(recipe r355 (key (sx355 ing471))) +(recipe r355 (key (sy355 ing581))) +(recipe r355 (key (sx355 ing472))) +(recipe r355 (key (sy355 ing582))) +(recipe r355 (key (sx355 ing473))) +(recipe r355 (key (sy355 ing583))) +(recipe r355 (key (sx355 ing474))) +(recipe r355 (key (sy355 ing584))) +(recipe r355 (key (sx355 ing475))) +(recipe r355 (key (sy355 ing585))) +(recipe r355 (key (sx355 ing476))) +(recipe r355 (key (sy355 ing586))) +(recipe r356 (numIngredients 2)) +(recipe r356 (result (id item356))) +(recipe r356 (pattern 0 sx356)) +(recipe r356 (pattern 1 sy356)) +(recipe r356 (key (sx356 ing468))) +(recipe r356 (key (sy356 ing580))) +(recipe r356 (key (sx356 ing469))) +(recipe r356 (key (sy356 ing581))) +(recipe r356 (key (sx356 ing470))) +(recipe r356 (key (sy356 ing582))) +(recipe r356 (key (sx356 ing471))) +(recipe r356 (key (sy356 ing583))) +(recipe r356 (key (sx356 ing472))) +(recipe r356 (key (sy356 ing584))) +(recipe r356 (key (sx356 ing473))) +(recipe r356 (key (sy356 ing585))) +(recipe r356 (key (sx356 ing474))) +(recipe r356 (key (sy356 ing586))) +(recipe r356 (key (sx356 ing475))) +(recipe r356 (key (sy356 ing587))) +(recipe r356 (key (sx356 ing476))) +(recipe r356 (key (sy356 ing588))) +(recipe r356 (key (sx356 ing477))) +(recipe r356 (key (sy356 ing589))) +(recipe r356 (key (sx356 ing478))) +(recipe r356 (key (sy356 ing590))) +(recipe r356 (key (sx356 ing479))) +(recipe r356 (key (sy356 ing591))) +(recipe r357 (numIngredients 2)) +(recipe r357 (result (id item357))) +(recipe r357 (pattern 0 sx357)) +(recipe r357 (pattern 1 sy357)) +(recipe r357 (key (sx357 ing471))) +(recipe r357 (key (sy357 ing585))) +(recipe r357 (key (sx357 ing472))) +(recipe r357 (key (sy357 ing586))) +(recipe r357 (key (sx357 ing473))) +(recipe r357 (key (sy357 ing587))) +(recipe r357 (key (sx357 ing474))) +(recipe r357 (key (sy357 ing588))) +(recipe r357 (key (sx357 ing475))) +(recipe r357 (key (sy357 ing589))) +(recipe r357 (key (sx357 ing476))) +(recipe r357 (key (sy357 ing590))) +(recipe r357 (key (sx357 ing477))) +(recipe r357 (key (sy357 ing591))) +(recipe r357 (key (sx357 ing478))) +(recipe r357 (key (sy357 ing592))) +(recipe r357 (key (sx357 ing479))) +(recipe r357 (key (sy357 ing593))) +(recipe r357 (key (sx357 ing480))) +(recipe r357 (key (sy357 ing594))) +(recipe r357 (key (sx357 ing481))) +(recipe r357 (key (sy357 ing595))) +(recipe r357 (key (sx357 ing482))) +(recipe r357 (key (sy357 ing596))) +(recipe r358 (numIngredients 2)) +(recipe r358 (result (id item358))) +(recipe r358 (pattern 0 sx358)) +(recipe r358 (pattern 1 sy358)) +(recipe r358 (key (sx358 ing474))) +(recipe r358 (key (sy358 ing590))) +(recipe r358 (key (sx358 ing475))) +(recipe r358 (key (sy358 ing591))) +(recipe r358 (key (sx358 ing476))) +(recipe r358 (key (sy358 ing592))) +(recipe r358 (key (sx358 ing477))) +(recipe r358 (key (sy358 ing593))) +(recipe r358 (key (sx358 ing478))) +(recipe r358 (key (sy358 ing594))) +(recipe r358 (key (sx358 ing479))) +(recipe r358 (key (sy358 ing595))) +(recipe r358 (key (sx358 ing480))) +(recipe r358 (key (sy358 ing596))) +(recipe r358 (key (sx358 ing481))) +(recipe r358 (key (sy358 ing597))) +(recipe r358 (key (sx358 ing482))) +(recipe r358 (key (sy358 ing598))) +(recipe r358 (key (sx358 ing483))) +(recipe r358 (key (sy358 ing599))) +(recipe r358 (key (sx358 ing484))) +(recipe r358 (key (sy358 ing0))) +(recipe r358 (key (sx358 ing485))) +(recipe r358 (key (sy358 ing1))) +(recipe r359 (numIngredients 2)) +(recipe r359 (result (id item359))) +(recipe r359 (pattern 0 sx359)) +(recipe r359 (pattern 1 sy359)) +(recipe r359 (key (sx359 ing477))) +(recipe r359 (key (sy359 ing595))) +(recipe r359 (key (sx359 ing478))) +(recipe r359 (key (sy359 ing596))) +(recipe r359 (key (sx359 ing479))) +(recipe r359 (key (sy359 ing597))) +(recipe r359 (key (sx359 ing480))) +(recipe r359 (key (sy359 ing598))) +(recipe r359 (key (sx359 ing481))) +(recipe r359 (key (sy359 ing599))) +(recipe r359 (key (sx359 ing482))) +(recipe r359 (key (sy359 ing0))) +(recipe r359 (key (sx359 ing483))) +(recipe r359 (key (sy359 ing1))) +(recipe r359 (key (sx359 ing484))) +(recipe r359 (key (sy359 ing2))) +(recipe r359 (key (sx359 ing485))) +(recipe r359 (key (sy359 ing3))) +(recipe r359 (key (sx359 ing486))) +(recipe r359 (key (sy359 ing4))) +(recipe r359 (key (sx359 ing487))) +(recipe r359 (key (sy359 ing5))) +(recipe r359 (key (sx359 ing488))) +(recipe r359 (key (sy359 ing6))) +(recipe r360 (numIngredients 2)) +(recipe r360 (result (id item360))) +(recipe r360 (pattern 0 sx360)) +(recipe r360 (pattern 1 sy360)) +(recipe r360 (key (sx360 ing480))) +(recipe r360 (key (sy360 ing0))) +(recipe r360 (key (sx360 ing481))) +(recipe r360 (key (sy360 ing1))) +(recipe r360 (key (sx360 ing482))) +(recipe r360 (key (sy360 ing2))) +(recipe r360 (key (sx360 ing483))) +(recipe r360 (key (sy360 ing3))) +(recipe r360 (key (sx360 ing484))) +(recipe r360 (key (sy360 ing4))) +(recipe r360 (key (sx360 ing485))) +(recipe r360 (key (sy360 ing5))) +(recipe r360 (key (sx360 ing486))) +(recipe r360 (key (sy360 ing6))) +(recipe r360 (key (sx360 ing487))) +(recipe r360 (key (sy360 ing7))) +(recipe r360 (key (sx360 ing488))) +(recipe r360 (key (sy360 ing8))) +(recipe r360 (key (sx360 ing489))) +(recipe r360 (key (sy360 ing9))) +(recipe r360 (key (sx360 ing490))) +(recipe r360 (key (sy360 ing10))) +(recipe r360 (key (sx360 ing491))) +(recipe r360 (key (sy360 ing11))) +(recipe r361 (numIngredients 2)) +(recipe r361 (result (id item361))) +(recipe r361 (pattern 0 sx361)) +(recipe r361 (pattern 1 sy361)) +(recipe r361 (key (sx361 ing483))) +(recipe r361 (key (sy361 ing5))) +(recipe r361 (key (sx361 ing484))) +(recipe r361 (key (sy361 ing6))) +(recipe r361 (key (sx361 ing485))) +(recipe r361 (key (sy361 ing7))) +(recipe r361 (key (sx361 ing486))) +(recipe r361 (key (sy361 ing8))) +(recipe r361 (key (sx361 ing487))) +(recipe r361 (key (sy361 ing9))) +(recipe r361 (key (sx361 ing488))) +(recipe r361 (key (sy361 ing10))) +(recipe r361 (key (sx361 ing489))) +(recipe r361 (key (sy361 ing11))) +(recipe r361 (key (sx361 ing490))) +(recipe r361 (key (sy361 ing12))) +(recipe r361 (key (sx361 ing491))) +(recipe r361 (key (sy361 ing13))) +(recipe r361 (key (sx361 ing492))) +(recipe r361 (key (sy361 ing14))) +(recipe r361 (key (sx361 ing493))) +(recipe r361 (key (sy361 ing15))) +(recipe r361 (key (sx361 ing494))) +(recipe r361 (key (sy361 ing16))) +(recipe r362 (numIngredients 2)) +(recipe r362 (result (id item362))) +(recipe r362 (pattern 0 sx362)) +(recipe r362 (pattern 1 sy362)) +(recipe r362 (key (sx362 ing486))) +(recipe r362 (key (sy362 ing10))) +(recipe r362 (key (sx362 ing487))) +(recipe r362 (key (sy362 ing11))) +(recipe r362 (key (sx362 ing488))) +(recipe r362 (key (sy362 ing12))) +(recipe r362 (key (sx362 ing489))) +(recipe r362 (key (sy362 ing13))) +(recipe r362 (key (sx362 ing490))) +(recipe r362 (key (sy362 ing14))) +(recipe r362 (key (sx362 ing491))) +(recipe r362 (key (sy362 ing15))) +(recipe r362 (key (sx362 ing492))) +(recipe r362 (key (sy362 ing16))) +(recipe r362 (key (sx362 ing493))) +(recipe r362 (key (sy362 ing17))) +(recipe r362 (key (sx362 ing494))) +(recipe r362 (key (sy362 ing18))) +(recipe r362 (key (sx362 ing495))) +(recipe r362 (key (sy362 ing19))) +(recipe r362 (key (sx362 ing496))) +(recipe r362 (key (sy362 ing20))) +(recipe r362 (key (sx362 ing497))) +(recipe r362 (key (sy362 ing21))) +(recipe r363 (numIngredients 2)) +(recipe r363 (result (id item363))) +(recipe r363 (pattern 0 sx363)) +(recipe r363 (pattern 1 sy363)) +(recipe r363 (key (sx363 ing489))) +(recipe r363 (key (sy363 ing15))) +(recipe r363 (key (sx363 ing490))) +(recipe r363 (key (sy363 ing16))) +(recipe r363 (key (sx363 ing491))) +(recipe r363 (key (sy363 ing17))) +(recipe r363 (key (sx363 ing492))) +(recipe r363 (key (sy363 ing18))) +(recipe r363 (key (sx363 ing493))) +(recipe r363 (key (sy363 ing19))) +(recipe r363 (key (sx363 ing494))) +(recipe r363 (key (sy363 ing20))) +(recipe r363 (key (sx363 ing495))) +(recipe r363 (key (sy363 ing21))) +(recipe r363 (key (sx363 ing496))) +(recipe r363 (key (sy363 ing22))) +(recipe r363 (key (sx363 ing497))) +(recipe r363 (key (sy363 ing23))) +(recipe r363 (key (sx363 ing498))) +(recipe r363 (key (sy363 ing24))) +(recipe r363 (key (sx363 ing499))) +(recipe r363 (key (sy363 ing25))) +(recipe r363 (key (sx363 ing500))) +(recipe r363 (key (sy363 ing26))) +(recipe r364 (numIngredients 2)) +(recipe r364 (result (id item364))) +(recipe r364 (pattern 0 sx364)) +(recipe r364 (pattern 1 sy364)) +(recipe r364 (key (sx364 ing492))) +(recipe r364 (key (sy364 ing20))) +(recipe r364 (key (sx364 ing493))) +(recipe r364 (key (sy364 ing21))) +(recipe r364 (key (sx364 ing494))) +(recipe r364 (key (sy364 ing22))) +(recipe r364 (key (sx364 ing495))) +(recipe r364 (key (sy364 ing23))) +(recipe r364 (key (sx364 ing496))) +(recipe r364 (key (sy364 ing24))) +(recipe r364 (key (sx364 ing497))) +(recipe r364 (key (sy364 ing25))) +(recipe r364 (key (sx364 ing498))) +(recipe r364 (key (sy364 ing26))) +(recipe r364 (key (sx364 ing499))) +(recipe r364 (key (sy364 ing27))) +(recipe r364 (key (sx364 ing500))) +(recipe r364 (key (sy364 ing28))) +(recipe r364 (key (sx364 ing501))) +(recipe r364 (key (sy364 ing29))) +(recipe r364 (key (sx364 ing502))) +(recipe r364 (key (sy364 ing30))) +(recipe r364 (key (sx364 ing503))) +(recipe r364 (key (sy364 ing31))) +(recipe r365 (numIngredients 2)) +(recipe r365 (result (id item365))) +(recipe r365 (pattern 0 sx365)) +(recipe r365 (pattern 1 sy365)) +(recipe r365 (key (sx365 ing495))) +(recipe r365 (key (sy365 ing25))) +(recipe r365 (key (sx365 ing496))) +(recipe r365 (key (sy365 ing26))) +(recipe r365 (key (sx365 ing497))) +(recipe r365 (key (sy365 ing27))) +(recipe r365 (key (sx365 ing498))) +(recipe r365 (key (sy365 ing28))) +(recipe r365 (key (sx365 ing499))) +(recipe r365 (key (sy365 ing29))) +(recipe r365 (key (sx365 ing500))) +(recipe r365 (key (sy365 ing30))) +(recipe r365 (key (sx365 ing501))) +(recipe r365 (key (sy365 ing31))) +(recipe r365 (key (sx365 ing502))) +(recipe r365 (key (sy365 ing32))) +(recipe r365 (key (sx365 ing503))) +(recipe r365 (key (sy365 ing33))) +(recipe r365 (key (sx365 ing504))) +(recipe r365 (key (sy365 ing34))) +(recipe r365 (key (sx365 ing505))) +(recipe r365 (key (sy365 ing35))) +(recipe r365 (key (sx365 ing506))) +(recipe r365 (key (sy365 ing36))) +(recipe r366 (numIngredients 2)) +(recipe r366 (result (id item366))) +(recipe r366 (pattern 0 sx366)) +(recipe r366 (pattern 1 sy366)) +(recipe r366 (key (sx366 ing498))) +(recipe r366 (key (sy366 ing30))) +(recipe r366 (key (sx366 ing499))) +(recipe r366 (key (sy366 ing31))) +(recipe r366 (key (sx366 ing500))) +(recipe r366 (key (sy366 ing32))) +(recipe r366 (key (sx366 ing501))) +(recipe r366 (key (sy366 ing33))) +(recipe r366 (key (sx366 ing502))) +(recipe r366 (key (sy366 ing34))) +(recipe r366 (key (sx366 ing503))) +(recipe r366 (key (sy366 ing35))) +(recipe r366 (key (sx366 ing504))) +(recipe r366 (key (sy366 ing36))) +(recipe r366 (key (sx366 ing505))) +(recipe r366 (key (sy366 ing37))) +(recipe r366 (key (sx366 ing506))) +(recipe r366 (key (sy366 ing38))) +(recipe r366 (key (sx366 ing507))) +(recipe r366 (key (sy366 ing39))) +(recipe r366 (key (sx366 ing508))) +(recipe r366 (key (sy366 ing40))) +(recipe r366 (key (sx366 ing509))) +(recipe r366 (key (sy366 ing41))) +(recipe r367 (numIngredients 2)) +(recipe r367 (result (id item367))) +(recipe r367 (pattern 0 sx367)) +(recipe r367 (pattern 1 sy367)) +(recipe r367 (key (sx367 ing501))) +(recipe r367 (key (sy367 ing35))) +(recipe r367 (key (sx367 ing502))) +(recipe r367 (key (sy367 ing36))) +(recipe r367 (key (sx367 ing503))) +(recipe r367 (key (sy367 ing37))) +(recipe r367 (key (sx367 ing504))) +(recipe r367 (key (sy367 ing38))) +(recipe r367 (key (sx367 ing505))) +(recipe r367 (key (sy367 ing39))) +(recipe r367 (key (sx367 ing506))) +(recipe r367 (key (sy367 ing40))) +(recipe r367 (key (sx367 ing507))) +(recipe r367 (key (sy367 ing41))) +(recipe r367 (key (sx367 ing508))) +(recipe r367 (key (sy367 ing42))) +(recipe r367 (key (sx367 ing509))) +(recipe r367 (key (sy367 ing43))) +(recipe r367 (key (sx367 ing510))) +(recipe r367 (key (sy367 ing44))) +(recipe r367 (key (sx367 ing511))) +(recipe r367 (key (sy367 ing45))) +(recipe r367 (key (sx367 ing512))) +(recipe r367 (key (sy367 ing46))) +(recipe r368 (numIngredients 2)) +(recipe r368 (result (id item368))) +(recipe r368 (pattern 0 sx368)) +(recipe r368 (pattern 1 sy368)) +(recipe r368 (key (sx368 ing504))) +(recipe r368 (key (sy368 ing40))) +(recipe r368 (key (sx368 ing505))) +(recipe r368 (key (sy368 ing41))) +(recipe r368 (key (sx368 ing506))) +(recipe r368 (key (sy368 ing42))) +(recipe r368 (key (sx368 ing507))) +(recipe r368 (key (sy368 ing43))) +(recipe r368 (key (sx368 ing508))) +(recipe r368 (key (sy368 ing44))) +(recipe r368 (key (sx368 ing509))) +(recipe r368 (key (sy368 ing45))) +(recipe r368 (key (sx368 ing510))) +(recipe r368 (key (sy368 ing46))) +(recipe r368 (key (sx368 ing511))) +(recipe r368 (key (sy368 ing47))) +(recipe r368 (key (sx368 ing512))) +(recipe r368 (key (sy368 ing48))) +(recipe r368 (key (sx368 ing513))) +(recipe r368 (key (sy368 ing49))) +(recipe r368 (key (sx368 ing514))) +(recipe r368 (key (sy368 ing50))) +(recipe r368 (key (sx368 ing515))) +(recipe r368 (key (sy368 ing51))) +(recipe r369 (numIngredients 2)) +(recipe r369 (result (id item369))) +(recipe r369 (pattern 0 sx369)) +(recipe r369 (pattern 1 sy369)) +(recipe r369 (key (sx369 ing507))) +(recipe r369 (key (sy369 ing45))) +(recipe r369 (key (sx369 ing508))) +(recipe r369 (key (sy369 ing46))) +(recipe r369 (key (sx369 ing509))) +(recipe r369 (key (sy369 ing47))) +(recipe r369 (key (sx369 ing510))) +(recipe r369 (key (sy369 ing48))) +(recipe r369 (key (sx369 ing511))) +(recipe r369 (key (sy369 ing49))) +(recipe r369 (key (sx369 ing512))) +(recipe r369 (key (sy369 ing50))) +(recipe r369 (key (sx369 ing513))) +(recipe r369 (key (sy369 ing51))) +(recipe r369 (key (sx369 ing514))) +(recipe r369 (key (sy369 ing52))) +(recipe r369 (key (sx369 ing515))) +(recipe r369 (key (sy369 ing53))) +(recipe r369 (key (sx369 ing516))) +(recipe r369 (key (sy369 ing54))) +(recipe r369 (key (sx369 ing517))) +(recipe r369 (key (sy369 ing55))) +(recipe r369 (key (sx369 ing518))) +(recipe r369 (key (sy369 ing56))) +(recipe r370 (numIngredients 2)) +(recipe r370 (result (id item370))) +(recipe r370 (pattern 0 sx370)) +(recipe r370 (pattern 1 sy370)) +(recipe r370 (key (sx370 ing510))) +(recipe r370 (key (sy370 ing50))) +(recipe r370 (key (sx370 ing511))) +(recipe r370 (key (sy370 ing51))) +(recipe r370 (key (sx370 ing512))) +(recipe r370 (key (sy370 ing52))) +(recipe r370 (key (sx370 ing513))) +(recipe r370 (key (sy370 ing53))) +(recipe r370 (key (sx370 ing514))) +(recipe r370 (key (sy370 ing54))) +(recipe r370 (key (sx370 ing515))) +(recipe r370 (key (sy370 ing55))) +(recipe r370 (key (sx370 ing516))) +(recipe r370 (key (sy370 ing56))) +(recipe r370 (key (sx370 ing517))) +(recipe r370 (key (sy370 ing57))) +(recipe r370 (key (sx370 ing518))) +(recipe r370 (key (sy370 ing58))) +(recipe r370 (key (sx370 ing519))) +(recipe r370 (key (sy370 ing59))) +(recipe r370 (key (sx370 ing520))) +(recipe r370 (key (sy370 ing60))) +(recipe r370 (key (sx370 ing521))) +(recipe r370 (key (sy370 ing61))) +(recipe r371 (numIngredients 2)) +(recipe r371 (result (id item371))) +(recipe r371 (pattern 0 sx371)) +(recipe r371 (pattern 1 sy371)) +(recipe r371 (key (sx371 ing513))) +(recipe r371 (key (sy371 ing55))) +(recipe r371 (key (sx371 ing514))) +(recipe r371 (key (sy371 ing56))) +(recipe r371 (key (sx371 ing515))) +(recipe r371 (key (sy371 ing57))) +(recipe r371 (key (sx371 ing516))) +(recipe r371 (key (sy371 ing58))) +(recipe r371 (key (sx371 ing517))) +(recipe r371 (key (sy371 ing59))) +(recipe r371 (key (sx371 ing518))) +(recipe r371 (key (sy371 ing60))) +(recipe r371 (key (sx371 ing519))) +(recipe r371 (key (sy371 ing61))) +(recipe r371 (key (sx371 ing520))) +(recipe r371 (key (sy371 ing62))) +(recipe r371 (key (sx371 ing521))) +(recipe r371 (key (sy371 ing63))) +(recipe r371 (key (sx371 ing522))) +(recipe r371 (key (sy371 ing64))) +(recipe r371 (key (sx371 ing523))) +(recipe r371 (key (sy371 ing65))) +(recipe r371 (key (sx371 ing524))) +(recipe r371 (key (sy371 ing66))) +(recipe r372 (numIngredients 2)) +(recipe r372 (result (id item372))) +(recipe r372 (pattern 0 sx372)) +(recipe r372 (pattern 1 sy372)) +(recipe r372 (key (sx372 ing516))) +(recipe r372 (key (sy372 ing60))) +(recipe r372 (key (sx372 ing517))) +(recipe r372 (key (sy372 ing61))) +(recipe r372 (key (sx372 ing518))) +(recipe r372 (key (sy372 ing62))) +(recipe r372 (key (sx372 ing519))) +(recipe r372 (key (sy372 ing63))) +(recipe r372 (key (sx372 ing520))) +(recipe r372 (key (sy372 ing64))) +(recipe r372 (key (sx372 ing521))) +(recipe r372 (key (sy372 ing65))) +(recipe r372 (key (sx372 ing522))) +(recipe r372 (key (sy372 ing66))) +(recipe r372 (key (sx372 ing523))) +(recipe r372 (key (sy372 ing67))) +(recipe r372 (key (sx372 ing524))) +(recipe r372 (key (sy372 ing68))) +(recipe r372 (key (sx372 ing525))) +(recipe r372 (key (sy372 ing69))) +(recipe r372 (key (sx372 ing526))) +(recipe r372 (key (sy372 ing70))) +(recipe r372 (key (sx372 ing527))) +(recipe r372 (key (sy372 ing71))) +(recipe r373 (numIngredients 2)) +(recipe r373 (result (id item373))) +(recipe r373 (pattern 0 sx373)) +(recipe r373 (pattern 1 sy373)) +(recipe r373 (key (sx373 ing519))) +(recipe r373 (key (sy373 ing65))) +(recipe r373 (key (sx373 ing520))) +(recipe r373 (key (sy373 ing66))) +(recipe r373 (key (sx373 ing521))) +(recipe r373 (key (sy373 ing67))) +(recipe r373 (key (sx373 ing522))) +(recipe r373 (key (sy373 ing68))) +(recipe r373 (key (sx373 ing523))) +(recipe r373 (key (sy373 ing69))) +(recipe r373 (key (sx373 ing524))) +(recipe r373 (key (sy373 ing70))) +(recipe r373 (key (sx373 ing525))) +(recipe r373 (key (sy373 ing71))) +(recipe r373 (key (sx373 ing526))) +(recipe r373 (key (sy373 ing72))) +(recipe r373 (key (sx373 ing527))) +(recipe r373 (key (sy373 ing73))) +(recipe r373 (key (sx373 ing528))) +(recipe r373 (key (sy373 ing74))) +(recipe r373 (key (sx373 ing529))) +(recipe r373 (key (sy373 ing75))) +(recipe r373 (key (sx373 ing530))) +(recipe r373 (key (sy373 ing76))) +(recipe r374 (numIngredients 2)) +(recipe r374 (result (id item374))) +(recipe r374 (pattern 0 sx374)) +(recipe r374 (pattern 1 sy374)) +(recipe r374 (key (sx374 ing522))) +(recipe r374 (key (sy374 ing70))) +(recipe r374 (key (sx374 ing523))) +(recipe r374 (key (sy374 ing71))) +(recipe r374 (key (sx374 ing524))) +(recipe r374 (key (sy374 ing72))) +(recipe r374 (key (sx374 ing525))) +(recipe r374 (key (sy374 ing73))) +(recipe r374 (key (sx374 ing526))) +(recipe r374 (key (sy374 ing74))) +(recipe r374 (key (sx374 ing527))) +(recipe r374 (key (sy374 ing75))) +(recipe r374 (key (sx374 ing528))) +(recipe r374 (key (sy374 ing76))) +(recipe r374 (key (sx374 ing529))) +(recipe r374 (key (sy374 ing77))) +(recipe r374 (key (sx374 ing530))) +(recipe r374 (key (sy374 ing78))) +(recipe r374 (key (sx374 ing531))) +(recipe r374 (key (sy374 ing79))) +(recipe r374 (key (sx374 ing532))) +(recipe r374 (key (sy374 ing80))) +(recipe r374 (key (sx374 ing533))) +(recipe r374 (key (sy374 ing81))) +(recipe r375 (numIngredients 2)) +(recipe r375 (result (id item375))) +(recipe r375 (pattern 0 sx375)) +(recipe r375 (pattern 1 sy375)) +(recipe r375 (key (sx375 ing525))) +(recipe r375 (key (sy375 ing75))) +(recipe r375 (key (sx375 ing526))) +(recipe r375 (key (sy375 ing76))) +(recipe r375 (key (sx375 ing527))) +(recipe r375 (key (sy375 ing77))) +(recipe r375 (key (sx375 ing528))) +(recipe r375 (key (sy375 ing78))) +(recipe r375 (key (sx375 ing529))) +(recipe r375 (key (sy375 ing79))) +(recipe r375 (key (sx375 ing530))) +(recipe r375 (key (sy375 ing80))) +(recipe r375 (key (sx375 ing531))) +(recipe r375 (key (sy375 ing81))) +(recipe r375 (key (sx375 ing532))) +(recipe r375 (key (sy375 ing82))) +(recipe r375 (key (sx375 ing533))) +(recipe r375 (key (sy375 ing83))) +(recipe r375 (key (sx375 ing534))) +(recipe r375 (key (sy375 ing84))) +(recipe r375 (key (sx375 ing535))) +(recipe r375 (key (sy375 ing85))) +(recipe r375 (key (sx375 ing536))) +(recipe r375 (key (sy375 ing86))) +(recipe r376 (numIngredients 2)) +(recipe r376 (result (id item376))) +(recipe r376 (pattern 0 sx376)) +(recipe r376 (pattern 1 sy376)) +(recipe r376 (key (sx376 ing528))) +(recipe r376 (key (sy376 ing80))) +(recipe r376 (key (sx376 ing529))) +(recipe r376 (key (sy376 ing81))) +(recipe r376 (key (sx376 ing530))) +(recipe r376 (key (sy376 ing82))) +(recipe r376 (key (sx376 ing531))) +(recipe r376 (key (sy376 ing83))) +(recipe r376 (key (sx376 ing532))) +(recipe r376 (key (sy376 ing84))) +(recipe r376 (key (sx376 ing533))) +(recipe r376 (key (sy376 ing85))) +(recipe r376 (key (sx376 ing534))) +(recipe r376 (key (sy376 ing86))) +(recipe r376 (key (sx376 ing535))) +(recipe r376 (key (sy376 ing87))) +(recipe r376 (key (sx376 ing536))) +(recipe r376 (key (sy376 ing88))) +(recipe r376 (key (sx376 ing537))) +(recipe r376 (key (sy376 ing89))) +(recipe r376 (key (sx376 ing538))) +(recipe r376 (key (sy376 ing90))) +(recipe r376 (key (sx376 ing539))) +(recipe r376 (key (sy376 ing91))) +(recipe r377 (numIngredients 2)) +(recipe r377 (result (id item377))) +(recipe r377 (pattern 0 sx377)) +(recipe r377 (pattern 1 sy377)) +(recipe r377 (key (sx377 ing531))) +(recipe r377 (key (sy377 ing85))) +(recipe r377 (key (sx377 ing532))) +(recipe r377 (key (sy377 ing86))) +(recipe r377 (key (sx377 ing533))) +(recipe r377 (key (sy377 ing87))) +(recipe r377 (key (sx377 ing534))) +(recipe r377 (key (sy377 ing88))) +(recipe r377 (key (sx377 ing535))) +(recipe r377 (key (sy377 ing89))) +(recipe r377 (key (sx377 ing536))) +(recipe r377 (key (sy377 ing90))) +(recipe r377 (key (sx377 ing537))) +(recipe r377 (key (sy377 ing91))) +(recipe r377 (key (sx377 ing538))) +(recipe r377 (key (sy377 ing92))) +(recipe r377 (key (sx377 ing539))) +(recipe r377 (key (sy377 ing93))) +(recipe r377 (key (sx377 ing540))) +(recipe r377 (key (sy377 ing94))) +(recipe r377 (key (sx377 ing541))) +(recipe r377 (key (sy377 ing95))) +(recipe r377 (key (sx377 ing542))) +(recipe r377 (key (sy377 ing96))) +(recipe r378 (numIngredients 2)) +(recipe r378 (result (id item378))) +(recipe r378 (pattern 0 sx378)) +(recipe r378 (pattern 1 sy378)) +(recipe r378 (key (sx378 ing534))) +(recipe r378 (key (sy378 ing90))) +(recipe r378 (key (sx378 ing535))) +(recipe r378 (key (sy378 ing91))) +(recipe r378 (key (sx378 ing536))) +(recipe r378 (key (sy378 ing92))) +(recipe r378 (key (sx378 ing537))) +(recipe r378 (key (sy378 ing93))) +(recipe r378 (key (sx378 ing538))) +(recipe r378 (key (sy378 ing94))) +(recipe r378 (key (sx378 ing539))) +(recipe r378 (key (sy378 ing95))) +(recipe r378 (key (sx378 ing540))) +(recipe r378 (key (sy378 ing96))) +(recipe r378 (key (sx378 ing541))) +(recipe r378 (key (sy378 ing97))) +(recipe r378 (key (sx378 ing542))) +(recipe r378 (key (sy378 ing98))) +(recipe r378 (key (sx378 ing543))) +(recipe r378 (key (sy378 ing99))) +(recipe r378 (key (sx378 ing544))) +(recipe r378 (key (sy378 ing100))) +(recipe r378 (key (sx378 ing545))) +(recipe r378 (key (sy378 ing101))) +(recipe r379 (numIngredients 2)) +(recipe r379 (result (id item379))) +(recipe r379 (pattern 0 sx379)) +(recipe r379 (pattern 1 sy379)) +(recipe r379 (key (sx379 ing537))) +(recipe r379 (key (sy379 ing95))) +(recipe r379 (key (sx379 ing538))) +(recipe r379 (key (sy379 ing96))) +(recipe r379 (key (sx379 ing539))) +(recipe r379 (key (sy379 ing97))) +(recipe r379 (key (sx379 ing540))) +(recipe r379 (key (sy379 ing98))) +(recipe r379 (key (sx379 ing541))) +(recipe r379 (key (sy379 ing99))) +(recipe r379 (key (sx379 ing542))) +(recipe r379 (key (sy379 ing100))) +(recipe r379 (key (sx379 ing543))) +(recipe r379 (key (sy379 ing101))) +(recipe r379 (key (sx379 ing544))) +(recipe r379 (key (sy379 ing102))) +(recipe r379 (key (sx379 ing545))) +(recipe r379 (key (sy379 ing103))) +(recipe r379 (key (sx379 ing546))) +(recipe r379 (key (sy379 ing104))) +(recipe r379 (key (sx379 ing547))) +(recipe r379 (key (sy379 ing105))) +(recipe r379 (key (sx379 ing548))) +(recipe r379 (key (sy379 ing106))) +(recipe r380 (numIngredients 2)) +(recipe r380 (result (id item380))) +(recipe r380 (pattern 0 sx380)) +(recipe r380 (pattern 1 sy380)) +(recipe r380 (key (sx380 ing540))) +(recipe r380 (key (sy380 ing100))) +(recipe r380 (key (sx380 ing541))) +(recipe r380 (key (sy380 ing101))) +(recipe r380 (key (sx380 ing542))) +(recipe r380 (key (sy380 ing102))) +(recipe r380 (key (sx380 ing543))) +(recipe r380 (key (sy380 ing103))) +(recipe r380 (key (sx380 ing544))) +(recipe r380 (key (sy380 ing104))) +(recipe r380 (key (sx380 ing545))) +(recipe r380 (key (sy380 ing105))) +(recipe r380 (key (sx380 ing546))) +(recipe r380 (key (sy380 ing106))) +(recipe r380 (key (sx380 ing547))) +(recipe r380 (key (sy380 ing107))) +(recipe r380 (key (sx380 ing548))) +(recipe r380 (key (sy380 ing108))) +(recipe r380 (key (sx380 ing549))) +(recipe r380 (key (sy380 ing109))) +(recipe r380 (key (sx380 ing550))) +(recipe r380 (key (sy380 ing110))) +(recipe r380 (key (sx380 ing551))) +(recipe r380 (key (sy380 ing111))) +(recipe r381 (numIngredients 2)) +(recipe r381 (result (id item381))) +(recipe r381 (pattern 0 sx381)) +(recipe r381 (pattern 1 sy381)) +(recipe r381 (key (sx381 ing543))) +(recipe r381 (key (sy381 ing105))) +(recipe r381 (key (sx381 ing544))) +(recipe r381 (key (sy381 ing106))) +(recipe r381 (key (sx381 ing545))) +(recipe r381 (key (sy381 ing107))) +(recipe r381 (key (sx381 ing546))) +(recipe r381 (key (sy381 ing108))) +(recipe r381 (key (sx381 ing547))) +(recipe r381 (key (sy381 ing109))) +(recipe r381 (key (sx381 ing548))) +(recipe r381 (key (sy381 ing110))) +(recipe r381 (key (sx381 ing549))) +(recipe r381 (key (sy381 ing111))) +(recipe r381 (key (sx381 ing550))) +(recipe r381 (key (sy381 ing112))) +(recipe r381 (key (sx381 ing551))) +(recipe r381 (key (sy381 ing113))) +(recipe r381 (key (sx381 ing552))) +(recipe r381 (key (sy381 ing114))) +(recipe r381 (key (sx381 ing553))) +(recipe r381 (key (sy381 ing115))) +(recipe r381 (key (sx381 ing554))) +(recipe r381 (key (sy381 ing116))) +(recipe r382 (numIngredients 2)) +(recipe r382 (result (id item382))) +(recipe r382 (pattern 0 sx382)) +(recipe r382 (pattern 1 sy382)) +(recipe r382 (key (sx382 ing546))) +(recipe r382 (key (sy382 ing110))) +(recipe r382 (key (sx382 ing547))) +(recipe r382 (key (sy382 ing111))) +(recipe r382 (key (sx382 ing548))) +(recipe r382 (key (sy382 ing112))) +(recipe r382 (key (sx382 ing549))) +(recipe r382 (key (sy382 ing113))) +(recipe r382 (key (sx382 ing550))) +(recipe r382 (key (sy382 ing114))) +(recipe r382 (key (sx382 ing551))) +(recipe r382 (key (sy382 ing115))) +(recipe r382 (key (sx382 ing552))) +(recipe r382 (key (sy382 ing116))) +(recipe r382 (key (sx382 ing553))) +(recipe r382 (key (sy382 ing117))) +(recipe r382 (key (sx382 ing554))) +(recipe r382 (key (sy382 ing118))) +(recipe r382 (key (sx382 ing555))) +(recipe r382 (key (sy382 ing119))) +(recipe r382 (key (sx382 ing556))) +(recipe r382 (key (sy382 ing120))) +(recipe r382 (key (sx382 ing557))) +(recipe r382 (key (sy382 ing121))) +(recipe r383 (numIngredients 2)) +(recipe r383 (result (id item383))) +(recipe r383 (pattern 0 sx383)) +(recipe r383 (pattern 1 sy383)) +(recipe r383 (key (sx383 ing549))) +(recipe r383 (key (sy383 ing115))) +(recipe r383 (key (sx383 ing550))) +(recipe r383 (key (sy383 ing116))) +(recipe r383 (key (sx383 ing551))) +(recipe r383 (key (sy383 ing117))) +(recipe r383 (key (sx383 ing552))) +(recipe r383 (key (sy383 ing118))) +(recipe r383 (key (sx383 ing553))) +(recipe r383 (key (sy383 ing119))) +(recipe r383 (key (sx383 ing554))) +(recipe r383 (key (sy383 ing120))) +(recipe r383 (key (sx383 ing555))) +(recipe r383 (key (sy383 ing121))) +(recipe r383 (key (sx383 ing556))) +(recipe r383 (key (sy383 ing122))) +(recipe r383 (key (sx383 ing557))) +(recipe r383 (key (sy383 ing123))) +(recipe r383 (key (sx383 ing558))) +(recipe r383 (key (sy383 ing124))) +(recipe r383 (key (sx383 ing559))) +(recipe r383 (key (sy383 ing125))) +(recipe r383 (key (sx383 ing560))) +(recipe r383 (key (sy383 ing126))) +(recipe r384 (numIngredients 2)) +(recipe r384 (result (id item384))) +(recipe r384 (pattern 0 sx384)) +(recipe r384 (pattern 1 sy384)) +(recipe r384 (key (sx384 ing552))) +(recipe r384 (key (sy384 ing120))) +(recipe r384 (key (sx384 ing553))) +(recipe r384 (key (sy384 ing121))) +(recipe r384 (key (sx384 ing554))) +(recipe r384 (key (sy384 ing122))) +(recipe r384 (key (sx384 ing555))) +(recipe r384 (key (sy384 ing123))) +(recipe r384 (key (sx384 ing556))) +(recipe r384 (key (sy384 ing124))) +(recipe r384 (key (sx384 ing557))) +(recipe r384 (key (sy384 ing125))) +(recipe r384 (key (sx384 ing558))) +(recipe r384 (key (sy384 ing126))) +(recipe r384 (key (sx384 ing559))) +(recipe r384 (key (sy384 ing127))) +(recipe r384 (key (sx384 ing560))) +(recipe r384 (key (sy384 ing128))) +(recipe r384 (key (sx384 ing561))) +(recipe r384 (key (sy384 ing129))) +(recipe r384 (key (sx384 ing562))) +(recipe r384 (key (sy384 ing130))) +(recipe r384 (key (sx384 ing563))) +(recipe r384 (key (sy384 ing131))) +(recipe r385 (numIngredients 2)) +(recipe r385 (result (id item385))) +(recipe r385 (pattern 0 sx385)) +(recipe r385 (pattern 1 sy385)) +(recipe r385 (key (sx385 ing555))) +(recipe r385 (key (sy385 ing125))) +(recipe r385 (key (sx385 ing556))) +(recipe r385 (key (sy385 ing126))) +(recipe r385 (key (sx385 ing557))) +(recipe r385 (key (sy385 ing127))) +(recipe r385 (key (sx385 ing558))) +(recipe r385 (key (sy385 ing128))) +(recipe r385 (key (sx385 ing559))) +(recipe r385 (key (sy385 ing129))) +(recipe r385 (key (sx385 ing560))) +(recipe r385 (key (sy385 ing130))) +(recipe r385 (key (sx385 ing561))) +(recipe r385 (key (sy385 ing131))) +(recipe r385 (key (sx385 ing562))) +(recipe r385 (key (sy385 ing132))) +(recipe r385 (key (sx385 ing563))) +(recipe r385 (key (sy385 ing133))) +(recipe r385 (key (sx385 ing564))) +(recipe r385 (key (sy385 ing134))) +(recipe r385 (key (sx385 ing565))) +(recipe r385 (key (sy385 ing135))) +(recipe r385 (key (sx385 ing566))) +(recipe r385 (key (sy385 ing136))) +(recipe r386 (numIngredients 2)) +(recipe r386 (result (id item386))) +(recipe r386 (pattern 0 sx386)) +(recipe r386 (pattern 1 sy386)) +(recipe r386 (key (sx386 ing558))) +(recipe r386 (key (sy386 ing130))) +(recipe r386 (key (sx386 ing559))) +(recipe r386 (key (sy386 ing131))) +(recipe r386 (key (sx386 ing560))) +(recipe r386 (key (sy386 ing132))) +(recipe r386 (key (sx386 ing561))) +(recipe r386 (key (sy386 ing133))) +(recipe r386 (key (sx386 ing562))) +(recipe r386 (key (sy386 ing134))) +(recipe r386 (key (sx386 ing563))) +(recipe r386 (key (sy386 ing135))) +(recipe r386 (key (sx386 ing564))) +(recipe r386 (key (sy386 ing136))) +(recipe r386 (key (sx386 ing565))) +(recipe r386 (key (sy386 ing137))) +(recipe r386 (key (sx386 ing566))) +(recipe r386 (key (sy386 ing138))) +(recipe r386 (key (sx386 ing567))) +(recipe r386 (key (sy386 ing139))) +(recipe r386 (key (sx386 ing568))) +(recipe r386 (key (sy386 ing140))) +(recipe r386 (key (sx386 ing569))) +(recipe r386 (key (sy386 ing141))) +(recipe r387 (numIngredients 2)) +(recipe r387 (result (id item387))) +(recipe r387 (pattern 0 sx387)) +(recipe r387 (pattern 1 sy387)) +(recipe r387 (key (sx387 ing561))) +(recipe r387 (key (sy387 ing135))) +(recipe r387 (key (sx387 ing562))) +(recipe r387 (key (sy387 ing136))) +(recipe r387 (key (sx387 ing563))) +(recipe r387 (key (sy387 ing137))) +(recipe r387 (key (sx387 ing564))) +(recipe r387 (key (sy387 ing138))) +(recipe r387 (key (sx387 ing565))) +(recipe r387 (key (sy387 ing139))) +(recipe r387 (key (sx387 ing566))) +(recipe r387 (key (sy387 ing140))) +(recipe r387 (key (sx387 ing567))) +(recipe r387 (key (sy387 ing141))) +(recipe r387 (key (sx387 ing568))) +(recipe r387 (key (sy387 ing142))) +(recipe r387 (key (sx387 ing569))) +(recipe r387 (key (sy387 ing143))) +(recipe r387 (key (sx387 ing570))) +(recipe r387 (key (sy387 ing144))) +(recipe r387 (key (sx387 ing571))) +(recipe r387 (key (sy387 ing145))) +(recipe r387 (key (sx387 ing572))) +(recipe r387 (key (sy387 ing146))) +(recipe r388 (numIngredients 2)) +(recipe r388 (result (id item388))) +(recipe r388 (pattern 0 sx388)) +(recipe r388 (pattern 1 sy388)) +(recipe r388 (key (sx388 ing564))) +(recipe r388 (key (sy388 ing140))) +(recipe r388 (key (sx388 ing565))) +(recipe r388 (key (sy388 ing141))) +(recipe r388 (key (sx388 ing566))) +(recipe r388 (key (sy388 ing142))) +(recipe r388 (key (sx388 ing567))) +(recipe r388 (key (sy388 ing143))) +(recipe r388 (key (sx388 ing568))) +(recipe r388 (key (sy388 ing144))) +(recipe r388 (key (sx388 ing569))) +(recipe r388 (key (sy388 ing145))) +(recipe r388 (key (sx388 ing570))) +(recipe r388 (key (sy388 ing146))) +(recipe r388 (key (sx388 ing571))) +(recipe r388 (key (sy388 ing147))) +(recipe r388 (key (sx388 ing572))) +(recipe r388 (key (sy388 ing148))) +(recipe r388 (key (sx388 ing573))) +(recipe r388 (key (sy388 ing149))) +(recipe r388 (key (sx388 ing574))) +(recipe r388 (key (sy388 ing150))) +(recipe r388 (key (sx388 ing575))) +(recipe r388 (key (sy388 ing151))) +(recipe r389 (numIngredients 2)) +(recipe r389 (result (id item389))) +(recipe r389 (pattern 0 sx389)) +(recipe r389 (pattern 1 sy389)) +(recipe r389 (key (sx389 ing567))) +(recipe r389 (key (sy389 ing145))) +(recipe r389 (key (sx389 ing568))) +(recipe r389 (key (sy389 ing146))) +(recipe r389 (key (sx389 ing569))) +(recipe r389 (key (sy389 ing147))) +(recipe r389 (key (sx389 ing570))) +(recipe r389 (key (sy389 ing148))) +(recipe r389 (key (sx389 ing571))) +(recipe r389 (key (sy389 ing149))) +(recipe r389 (key (sx389 ing572))) +(recipe r389 (key (sy389 ing150))) +(recipe r389 (key (sx389 ing573))) +(recipe r389 (key (sy389 ing151))) +(recipe r389 (key (sx389 ing574))) +(recipe r389 (key (sy389 ing152))) +(recipe r389 (key (sx389 ing575))) +(recipe r389 (key (sy389 ing153))) +(recipe r389 (key (sx389 ing576))) +(recipe r389 (key (sy389 ing154))) +(recipe r389 (key (sx389 ing577))) +(recipe r389 (key (sy389 ing155))) +(recipe r389 (key (sx389 ing578))) +(recipe r389 (key (sy389 ing156))) +(recipe r390 (numIngredients 2)) +(recipe r390 (result (id item390))) +(recipe r390 (pattern 0 sx390)) +(recipe r390 (pattern 1 sy390)) +(recipe r390 (key (sx390 ing570))) +(recipe r390 (key (sy390 ing150))) +(recipe r390 (key (sx390 ing571))) +(recipe r390 (key (sy390 ing151))) +(recipe r390 (key (sx390 ing572))) +(recipe r390 (key (sy390 ing152))) +(recipe r390 (key (sx390 ing573))) +(recipe r390 (key (sy390 ing153))) +(recipe r390 (key (sx390 ing574))) +(recipe r390 (key (sy390 ing154))) +(recipe r390 (key (sx390 ing575))) +(recipe r390 (key (sy390 ing155))) +(recipe r390 (key (sx390 ing576))) +(recipe r390 (key (sy390 ing156))) +(recipe r390 (key (sx390 ing577))) +(recipe r390 (key (sy390 ing157))) +(recipe r390 (key (sx390 ing578))) +(recipe r390 (key (sy390 ing158))) +(recipe r390 (key (sx390 ing579))) +(recipe r390 (key (sy390 ing159))) +(recipe r390 (key (sx390 ing580))) +(recipe r390 (key (sy390 ing160))) +(recipe r390 (key (sx390 ing581))) +(recipe r390 (key (sy390 ing161))) +(recipe r391 (numIngredients 2)) +(recipe r391 (result (id item391))) +(recipe r391 (pattern 0 sx391)) +(recipe r391 (pattern 1 sy391)) +(recipe r391 (key (sx391 ing573))) +(recipe r391 (key (sy391 ing155))) +(recipe r391 (key (sx391 ing574))) +(recipe r391 (key (sy391 ing156))) +(recipe r391 (key (sx391 ing575))) +(recipe r391 (key (sy391 ing157))) +(recipe r391 (key (sx391 ing576))) +(recipe r391 (key (sy391 ing158))) +(recipe r391 (key (sx391 ing577))) +(recipe r391 (key (sy391 ing159))) +(recipe r391 (key (sx391 ing578))) +(recipe r391 (key (sy391 ing160))) +(recipe r391 (key (sx391 ing579))) +(recipe r391 (key (sy391 ing161))) +(recipe r391 (key (sx391 ing580))) +(recipe r391 (key (sy391 ing162))) +(recipe r391 (key (sx391 ing581))) +(recipe r391 (key (sy391 ing163))) +(recipe r391 (key (sx391 ing582))) +(recipe r391 (key (sy391 ing164))) +(recipe r391 (key (sx391 ing583))) +(recipe r391 (key (sy391 ing165))) +(recipe r391 (key (sx391 ing584))) +(recipe r391 (key (sy391 ing166))) +(recipe r392 (numIngredients 2)) +(recipe r392 (result (id item392))) +(recipe r392 (pattern 0 sx392)) +(recipe r392 (pattern 1 sy392)) +(recipe r392 (key (sx392 ing576))) +(recipe r392 (key (sy392 ing160))) +(recipe r392 (key (sx392 ing577))) +(recipe r392 (key (sy392 ing161))) +(recipe r392 (key (sx392 ing578))) +(recipe r392 (key (sy392 ing162))) +(recipe r392 (key (sx392 ing579))) +(recipe r392 (key (sy392 ing163))) +(recipe r392 (key (sx392 ing580))) +(recipe r392 (key (sy392 ing164))) +(recipe r392 (key (sx392 ing581))) +(recipe r392 (key (sy392 ing165))) +(recipe r392 (key (sx392 ing582))) +(recipe r392 (key (sy392 ing166))) +(recipe r392 (key (sx392 ing583))) +(recipe r392 (key (sy392 ing167))) +(recipe r392 (key (sx392 ing584))) +(recipe r392 (key (sy392 ing168))) +(recipe r392 (key (sx392 ing585))) +(recipe r392 (key (sy392 ing169))) +(recipe r392 (key (sx392 ing586))) +(recipe r392 (key (sy392 ing170))) +(recipe r392 (key (sx392 ing587))) +(recipe r392 (key (sy392 ing171))) +(recipe r393 (numIngredients 2)) +(recipe r393 (result (id item393))) +(recipe r393 (pattern 0 sx393)) +(recipe r393 (pattern 1 sy393)) +(recipe r393 (key (sx393 ing579))) +(recipe r393 (key (sy393 ing165))) +(recipe r393 (key (sx393 ing580))) +(recipe r393 (key (sy393 ing166))) +(recipe r393 (key (sx393 ing581))) +(recipe r393 (key (sy393 ing167))) +(recipe r393 (key (sx393 ing582))) +(recipe r393 (key (sy393 ing168))) +(recipe r393 (key (sx393 ing583))) +(recipe r393 (key (sy393 ing169))) +(recipe r393 (key (sx393 ing584))) +(recipe r393 (key (sy393 ing170))) +(recipe r393 (key (sx393 ing585))) +(recipe r393 (key (sy393 ing171))) +(recipe r393 (key (sx393 ing586))) +(recipe r393 (key (sy393 ing172))) +(recipe r393 (key (sx393 ing587))) +(recipe r393 (key (sy393 ing173))) +(recipe r393 (key (sx393 ing588))) +(recipe r393 (key (sy393 ing174))) +(recipe r393 (key (sx393 ing589))) +(recipe r393 (key (sy393 ing175))) +(recipe r393 (key (sx393 ing590))) +(recipe r393 (key (sy393 ing176))) +(recipe r394 (numIngredients 2)) +(recipe r394 (result (id item394))) +(recipe r394 (pattern 0 sx394)) +(recipe r394 (pattern 1 sy394)) +(recipe r394 (key (sx394 ing582))) +(recipe r394 (key (sy394 ing170))) +(recipe r394 (key (sx394 ing583))) +(recipe r394 (key (sy394 ing171))) +(recipe r394 (key (sx394 ing584))) +(recipe r394 (key (sy394 ing172))) +(recipe r394 (key (sx394 ing585))) +(recipe r394 (key (sy394 ing173))) +(recipe r394 (key (sx394 ing586))) +(recipe r394 (key (sy394 ing174))) +(recipe r394 (key (sx394 ing587))) +(recipe r394 (key (sy394 ing175))) +(recipe r394 (key (sx394 ing588))) +(recipe r394 (key (sy394 ing176))) +(recipe r394 (key (sx394 ing589))) +(recipe r394 (key (sy394 ing177))) +(recipe r394 (key (sx394 ing590))) +(recipe r394 (key (sy394 ing178))) +(recipe r394 (key (sx394 ing591))) +(recipe r394 (key (sy394 ing179))) +(recipe r394 (key (sx394 ing592))) +(recipe r394 (key (sy394 ing180))) +(recipe r394 (key (sx394 ing593))) +(recipe r394 (key (sy394 ing181))) +(recipe r395 (numIngredients 2)) +(recipe r395 (result (id item395))) +(recipe r395 (pattern 0 sx395)) +(recipe r395 (pattern 1 sy395)) +(recipe r395 (key (sx395 ing585))) +(recipe r395 (key (sy395 ing175))) +(recipe r395 (key (sx395 ing586))) +(recipe r395 (key (sy395 ing176))) +(recipe r395 (key (sx395 ing587))) +(recipe r395 (key (sy395 ing177))) +(recipe r395 (key (sx395 ing588))) +(recipe r395 (key (sy395 ing178))) +(recipe r395 (key (sx395 ing589))) +(recipe r395 (key (sy395 ing179))) +(recipe r395 (key (sx395 ing590))) +(recipe r395 (key (sy395 ing180))) +(recipe r395 (key (sx395 ing591))) +(recipe r395 (key (sy395 ing181))) +(recipe r395 (key (sx395 ing592))) +(recipe r395 (key (sy395 ing182))) +(recipe r395 (key (sx395 ing593))) +(recipe r395 (key (sy395 ing183))) +(recipe r395 (key (sx395 ing594))) +(recipe r395 (key (sy395 ing184))) +(recipe r395 (key (sx395 ing595))) +(recipe r395 (key (sy395 ing185))) +(recipe r395 (key (sx395 ing596))) +(recipe r395 (key (sy395 ing186))) +(recipe r396 (numIngredients 2)) +(recipe r396 (result (id item396))) +(recipe r396 (pattern 0 sx396)) +(recipe r396 (pattern 1 sy396)) +(recipe r396 (key (sx396 ing588))) +(recipe r396 (key (sy396 ing180))) +(recipe r396 (key (sx396 ing589))) +(recipe r396 (key (sy396 ing181))) +(recipe r396 (key (sx396 ing590))) +(recipe r396 (key (sy396 ing182))) +(recipe r396 (key (sx396 ing591))) +(recipe r396 (key (sy396 ing183))) +(recipe r396 (key (sx396 ing592))) +(recipe r396 (key (sy396 ing184))) +(recipe r396 (key (sx396 ing593))) +(recipe r396 (key (sy396 ing185))) +(recipe r396 (key (sx396 ing594))) +(recipe r396 (key (sy396 ing186))) +(recipe r396 (key (sx396 ing595))) +(recipe r396 (key (sy396 ing187))) +(recipe r396 (key (sx396 ing596))) +(recipe r396 (key (sy396 ing188))) +(recipe r396 (key (sx396 ing597))) +(recipe r396 (key (sy396 ing189))) +(recipe r396 (key (sx396 ing598))) +(recipe r396 (key (sy396 ing190))) +(recipe r396 (key (sx396 ing599))) +(recipe r396 (key (sy396 ing191))) +(recipe r397 (numIngredients 2)) +(recipe r397 (result (id item397))) +(recipe r397 (pattern 0 sx397)) +(recipe r397 (pattern 1 sy397)) +(recipe r397 (key (sx397 ing591))) +(recipe r397 (key (sy397 ing185))) +(recipe r397 (key (sx397 ing592))) +(recipe r397 (key (sy397 ing186))) +(recipe r397 (key (sx397 ing593))) +(recipe r397 (key (sy397 ing187))) +(recipe r397 (key (sx397 ing594))) +(recipe r397 (key (sy397 ing188))) +(recipe r397 (key (sx397 ing595))) +(recipe r397 (key (sy397 ing189))) +(recipe r397 (key (sx397 ing596))) +(recipe r397 (key (sy397 ing190))) +(recipe r397 (key (sx397 ing597))) +(recipe r397 (key (sy397 ing191))) +(recipe r397 (key (sx397 ing598))) +(recipe r397 (key (sy397 ing192))) +(recipe r397 (key (sx397 ing599))) +(recipe r397 (key (sy397 ing193))) +(recipe r397 (key (sx397 ing0))) +(recipe r397 (key (sy397 ing194))) +(recipe r397 (key (sx397 ing1))) +(recipe r397 (key (sy397 ing195))) +(recipe r397 (key (sx397 ing2))) +(recipe r397 (key (sy397 ing196))) +(recipe r398 (numIngredients 2)) +(recipe r398 (result (id item398))) +(recipe r398 (pattern 0 sx398)) +(recipe r398 (pattern 1 sy398)) +(recipe r398 (key (sx398 ing594))) +(recipe r398 (key (sy398 ing190))) +(recipe r398 (key (sx398 ing595))) +(recipe r398 (key (sy398 ing191))) +(recipe r398 (key (sx398 ing596))) +(recipe r398 (key (sy398 ing192))) +(recipe r398 (key (sx398 ing597))) +(recipe r398 (key (sy398 ing193))) +(recipe r398 (key (sx398 ing598))) +(recipe r398 (key (sy398 ing194))) +(recipe r398 (key (sx398 ing599))) +(recipe r398 (key (sy398 ing195))) +(recipe r398 (key (sx398 ing0))) +(recipe r398 (key (sy398 ing196))) +(recipe r398 (key (sx398 ing1))) +(recipe r398 (key (sy398 ing197))) +(recipe r398 (key (sx398 ing2))) +(recipe r398 (key (sy398 ing198))) +(recipe r398 (key (sx398 ing3))) +(recipe r398 (key (sy398 ing199))) +(recipe r398 (key (sx398 ing4))) +(recipe r398 (key (sy398 ing200))) +(recipe r398 (key (sx398 ing5))) +(recipe r398 (key (sy398 ing201))) +(recipe r399 (numIngredients 2)) +(recipe r399 (result (id item399))) +(recipe r399 (pattern 0 sx399)) +(recipe r399 (pattern 1 sy399)) +(recipe r399 (key (sx399 ing597))) +(recipe r399 (key (sy399 ing195))) +(recipe r399 (key (sx399 ing598))) +(recipe r399 (key (sy399 ing196))) +(recipe r399 (key (sx399 ing599))) +(recipe r399 (key (sy399 ing197))) +(recipe r399 (key (sx399 ing0))) +(recipe r399 (key (sy399 ing198))) +(recipe r399 (key (sx399 ing1))) +(recipe r399 (key (sy399 ing199))) +(recipe r399 (key (sx399 ing2))) +(recipe r399 (key (sy399 ing200))) +(recipe r399 (key (sx399 ing3))) +(recipe r399 (key (sy399 ing201))) +(recipe r399 (key (sx399 ing4))) +(recipe r399 (key (sy399 ing202))) +(recipe r399 (key (sx399 ing5))) +(recipe r399 (key (sy399 ing203))) +(recipe r399 (key (sx399 ing6))) +(recipe r399 (key (sy399 ing204))) +(recipe r399 (key (sx399 ing7))) +(recipe r399 (key (sy399 ing205))) +(recipe r399 (key (sx399 ing8))) +(recipe r399 (key (sy399 ing206))) +(inventory ing0) +(inventory ing1) +(inventory ing2) +(inventory ing3) +(inventory ing4) +(inventory ing5) +(inventory ing6) +(inventory ing7) +(inventory ing8) +(inventory ing9) +(inventory ing10) +(inventory ing11) +(inventory ing12) +(inventory ing13) +(inventory ing14) +(inventory ing15) +(inventory ing16) +(inventory ing17) +(inventory ing18) +(inventory ing19) +(inventory ing20) +(inventory ing21) +(inventory ing22) +(inventory ing23) +(inventory ing24) +(inventory ing25) +(inventory ing26) +(inventory ing27) +(inventory ing28) +(inventory ing29) +(inventory ing30) +(inventory ing31) +(inventory ing32) +(inventory ing33) +(inventory ing34) +(inventory ing35) +(inventory ing36) +(inventory ing37) +(inventory ing38) +(inventory ing39) +(inventory ing40) +(inventory ing41) +(inventory ing42) +(inventory ing43) +(inventory ing44) +(inventory ing45) +(inventory ing46) +(inventory ing47) +(inventory ing48) +(inventory ing49) +(inventory ing50) +(inventory ing51) +(inventory ing52) +(inventory ing53) +(inventory ing54) +(inventory ing55) +(inventory ing56) +(inventory ing57) +(inventory ing58) +(inventory ing59) +(inventory ing60) +(inventory ing61) +(inventory ing62) +(inventory ing63) +(inventory ing64) +(inventory ing65) +(inventory ing66) +(inventory ing67) +(inventory ing68) +(inventory ing69) +(inventory ing70) +(inventory ing71) +(inventory ing72) +(inventory ing73) +(inventory ing74) +(inventory ing75) +(inventory ing76) +(inventory ing77) +(inventory ing78) +(inventory ing79) +(inventory ing80) +(inventory ing81) +(inventory ing82) +(inventory ing83) +(inventory ing84) +(inventory ing85) +(inventory ing86) +(inventory ing87) +(inventory ing88) +(inventory ing89) +(inventory ing90) +(inventory ing91) +(inventory ing92) +(inventory ing93) +(inventory ing94) +(inventory ing95) +(inventory ing96) +(inventory ing97) +(inventory ing98) +(inventory ing99) +(inventory ing100) +(inventory ing101) +(inventory ing102) +(inventory ing103) +(inventory ing104) +(inventory ing105) +(inventory ing106) +(inventory ing107) +(inventory ing108) +(inventory ing109) +(inventory ing110) +(inventory ing111) +(inventory ing112) +(inventory ing113) +(inventory ing114) +(inventory ing115) +(inventory ing116) +(inventory ing117) +(inventory ing118) +(inventory ing119) +(inventory ing120) +(inventory ing121) +(inventory ing122) +(inventory ing123) +(inventory ing124) +(inventory ing125) +(inventory ing126) +(inventory ing127) +(inventory ing128) +(inventory ing129) +(inventory ing130) +(inventory ing131) +(inventory ing132) +(inventory ing133) +(inventory ing134) +(inventory ing135) +(inventory ing136) +(inventory ing137) +(inventory ing138) +(inventory ing139) +(inventory ing140) +(inventory ing141) +(inventory ing142) +(inventory ing143) +(inventory ing144) +(inventory ing145) +(inventory ing146) +(inventory ing147) +(inventory ing148) +(inventory ing149) +(inventory ing150) +(inventory ing151) +(inventory ing152) +(inventory ing153) +(inventory ing154) +(inventory ing155) +(inventory ing156) +(inventory ing157) +(inventory ing158) +(inventory ing159) +(inventory ing160) +(inventory ing161) +(inventory ing162) +(inventory ing163) +(inventory ing164) +(inventory ing165) +(inventory ing166) +(inventory ing167) +(inventory ing168) +(inventory ing169) +(inventory ing170) +(inventory ing171) +(inventory ing172) +(inventory ing173) +(inventory ing174) +(inventory ing175) +(inventory ing176) +(inventory ing177) +(inventory ing178) +(inventory ing179) +(inventory ing180) +(inventory ing181) +(inventory ing182) +(inventory ing183) +(inventory ing184) +(inventory ing185) +(inventory ing186) +(inventory ing187) +(inventory ing188) +(inventory ing189) +(inventory ing190) +(inventory ing191) +(inventory ing192) +(inventory ing193) +(inventory ing194) +(inventory ing195) +(inventory ing196) +(inventory ing197) +(inventory ing198) +(inventory ing199) +(inventory ing200) +(inventory ing201) +(inventory ing202) +(inventory ing203) +(inventory ing204) +(inventory ing205) +(inventory ing206) +(inventory ing207) +(inventory ing208) +(inventory ing209) +(inventory ing210) +(inventory ing211) +(inventory ing212) +(inventory ing213) +(inventory ing214) +(inventory ing215) +(inventory ing216) +(inventory ing217) +(inventory ing218) +(inventory ing219) +(inventory ing220) +(inventory ing221) +(inventory ing222) +(inventory ing223) +(inventory ing224) +(inventory ing225) +(inventory ing226) +(inventory ing227) +(inventory ing228) +(inventory ing229) +(inventory ing230) +(inventory ing231) +(inventory ing232) +(inventory ing233) +(inventory ing234) +(inventory ing235) +(inventory ing236) +(inventory ing237) +(inventory ing238) +(inventory ing239) +(inventory ing240) +(inventory ing241) +(inventory ing242) +(inventory ing243) +(inventory ing244) +(inventory ing245) +(inventory ing246) +(inventory ing247) +(inventory ing248) +(inventory ing249) +(inventory ing250) +(inventory ing251) +(inventory ing252) +(inventory ing253) +(inventory ing254) +(inventory ing255) +(inventory ing256) +(inventory ing257) +(inventory ing258) +(inventory ing259) +(inventory ing260) +(inventory ing261) +(inventory ing262) +(inventory ing263) +(inventory ing264) +(inventory ing265) +(inventory ing266) +(inventory ing267) +(inventory ing268) +(inventory ing269) +(inventory ing270) +(inventory ing271) +(inventory ing272) +(inventory ing273) +(inventory ing274) +(inventory ing275) +(inventory ing276) +(inventory ing277) +(inventory ing278) +(inventory ing279) +(inventory ing280) +(inventory ing281) +(inventory ing282) +(inventory ing283) +(inventory ing284) +(inventory ing285) +(inventory ing286) +(inventory ing287) +(inventory ing288) +(inventory ing289) +(inventory ing290) +(inventory ing291) +(inventory ing292) +(inventory ing293) +(inventory ing294) +(inventory ing295) +(inventory ing296) +(inventory ing297) +(inventory ing298) +(inventory ing299) +(inventory ing300) +(inventory ing301) +(inventory ing302) +(inventory ing303) +(inventory ing304) +(inventory ing305) +(inventory ing306) +(inventory ing307) +(inventory ing308) +(inventory ing309) +(inventory ing310) +(inventory ing311) +(inventory ing312) +(inventory ing313) +(inventory ing314) +(inventory ing315) +(inventory ing316) +(inventory ing317) +(inventory ing318) +(inventory ing319) +(inventory ing320) +(inventory ing321) +(inventory ing322) +(inventory ing323) +(inventory ing324) +(inventory ing325) +(inventory ing326) +(inventory ing327) +(inventory ing328) +(inventory ing329) +(inventory ing330) +(inventory ing331) +(inventory ing332) +(inventory ing333) +(inventory ing334) +(inventory ing335) +(inventory ing336) +(inventory ing337) +(inventory ing338) +(inventory ing339) +(inventory ing340) +(inventory ing341) +(inventory ing342) +(inventory ing343) +(inventory ing344) +(inventory ing345) +(inventory ing346) +(inventory ing347) +(inventory ing348) +(inventory ing349) +(inventory ing350) +(inventory ing351) +(inventory ing352) +(inventory ing353) +(inventory ing354) +(inventory ing355) +(inventory ing356) +(inventory ing357) +(inventory ing358) +(inventory ing359) +(inventory ing360) +(inventory ing361) +(inventory ing362) +(inventory ing363) +(inventory ing364) +(inventory ing365) +(inventory ing366) +(inventory ing367) +(inventory ing368) +(inventory ing369) +(inventory ing370) +(inventory ing371) +(inventory ing372) +(inventory ing373) +(inventory ing374) +(inventory ing375) +(inventory ing376) +(inventory ing377) +(inventory ing378) +(inventory ing379) +(inventory ing380) +(inventory ing381) +(inventory ing382) +(inventory ing383) +(inventory ing384) +(inventory ing385) +(inventory ing386) +(inventory ing387) +(inventory ing388) +(inventory ing389) +(inventory ing390) +(inventory ing391) +(inventory ing392) +(inventory ing393) +(inventory ing394) +(inventory ing395) +(inventory ing396) +(inventory ing397) +(inventory ing398) +(inventory ing399) +(inventory ing400) +(inventory ing401) +(inventory ing402) +(inventory ing403) +(inventory ing404) +(inventory ing405) +(inventory ing406) +(inventory ing407) +(inventory ing408) +(inventory ing409) +(inventory ing410) +(inventory ing411) +(inventory ing412) +(inventory ing413) +(inventory ing414) +(inventory ing415) +(inventory ing416) +(inventory ing417) +(inventory ing418) +(inventory ing419) +(inventory ing420) +(inventory ing421) +(inventory ing422) +(inventory ing423) +(inventory ing424) +(inventory ing425) +(inventory ing426) +(inventory ing427) +(inventory ing428) +(inventory ing429) +(inventory ing430) +(inventory ing431) +(inventory ing432) +(inventory ing433) +(inventory ing434) +(inventory ing435) +(inventory ing436) +(inventory ing437) +(inventory ing438) +(inventory ing439) +(inventory ing440) +(inventory ing441) +(inventory ing442) +(inventory ing443) +(inventory ing444) +(inventory ing445) +(inventory ing446) +(inventory ing447) +(inventory ing448) +(inventory ing449) +(inventory ing450) +(inventory ing451) +(inventory ing452) +(inventory ing453) +(inventory ing454) +(inventory ing455) +(inventory ing456) +(inventory ing457) +(inventory ing458) +(inventory ing459) +(inventory ing460) +(inventory ing461) +(inventory ing462) +(inventory ing463) +(inventory ing464) +(inventory ing465) +(inventory ing466) +(inventory ing467) +(inventory ing468) +(inventory ing469) +(inventory ing470) +(inventory ing471) +(inventory ing472) +(inventory ing473) +(inventory ing474) +(inventory ing475) +(inventory ing476) +(inventory ing477) +(inventory ing478) +(inventory ing479) +(inventory ing480) +(inventory ing481) +(inventory ing482) +(inventory ing483) +(inventory ing484) +(inventory ing485) +(inventory ing486) +(inventory ing487) +(inventory ing488) +(inventory ing489) +(inventory ing490) +(inventory ing491) +(inventory ing492) +(inventory ing493) +(inventory ing494) +(inventory ing495) +(inventory ing496) +(inventory ing497) +(inventory ing498) +(inventory ing499) +(inventory ing500) +(inventory ing501) +(inventory ing502) +(inventory ing503) +(inventory ing504) +(inventory ing505) +(inventory ing506) +(inventory ing507) +(inventory ing508) +(inventory ing509) +(inventory ing510) +(inventory ing511) +(inventory ing512) +(inventory ing513) +(inventory ing514) +(inventory ing515) +(inventory ing516) +(inventory ing517) +(inventory ing518) +(inventory ing519) +(inventory ing520) +(inventory ing521) +(inventory ing522) +(inventory ing523) +(inventory ing524) +(inventory ing525) +(inventory ing526) +(inventory ing527) +(inventory ing528) +(inventory ing529) +(inventory ing530) +(inventory ing531) +(inventory ing532) +(inventory ing533) +(inventory ing534) +(inventory ing535) +(inventory ing536) +(inventory ing537) +(inventory ing538) +(inventory ing539) +(inventory ing540) +(inventory ing541) +(inventory ing542) +(inventory ing543) +(inventory ing544) +(inventory ing545) +(inventory ing546) +(inventory ing547) +(inventory ing548) +(inventory ing549) +(inventory ing550) +(inventory ing551) +(inventory ing552) +(inventory ing553) +(inventory ing554) +(inventory ing555) +(inventory ing556) +(inventory ing557) +(inventory ing558) +(inventory ing559) +(inventory ing560) +(inventory ing561) +(inventory ing562) +(inventory ing563) +(inventory ing564) +(inventory ing565) +(inventory ing566) +(inventory ing567) +(inventory ing568) +(inventory ing569) +(inventory ing570) +(inventory ing571) +(inventory ing572) +(inventory ing573) +(inventory ing574) +(inventory ing575) +(inventory ing576) +(inventory ing577) +(inventory ing578) +(inventory ing579) +(inventory ing580) +(inventory ing581) +(inventory ing582) +(inventory ing583) +(inventory ing584) +(inventory ing585) +(inventory ing586) +(inventory ing587) +(inventory ing588) +(inventory ing589) +(inventory ing590) +(inventory ing591) +(inventory ing592) +(inventory ing593) +(inventory ing594) +(inventory ing595) +(inventory ing596) +(inventory ing597) +(inventory ing598) +(inventory ing599) + +(exec (1 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p))) +(exec (1 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p))) +(exec (1 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n)))) + (, (craftable $n))) diff --git a/examples/transforms/cyc_naive.mm2 b/examples/transforms/cyc_naive.mm2 new file mode 100644 index 00000000..f2ed2721 --- /dev/null +++ b/examples/transforms/cyc_naive.mm2 @@ -0,0 +1,901 @@ +(e n0 n23) +(e n0 n26) +(e n0 n30) +(e n0 n34) +(e n0 n37) +(e n0 n48) +(e n0 n69) +(e n1 n5) +(e n1 n7) +(e n1 n9) +(e n1 n12) +(e n1 n14) +(e n1 n18) +(e n1 n26) +(e n1 n31) +(e n1 n43) +(e n1 n47) +(e n1 n48) +(e n1 n51) +(e n1 n52) +(e n1 n60) +(e n1 n67) +(e n2 n0) +(e n2 n4) +(e n2 n8) +(e n2 n9) +(e n2 n12) +(e n2 n17) +(e n2 n20) +(e n2 n28) +(e n2 n33) +(e n2 n50) +(e n2 n63) +(e n3 n1) +(e n3 n8) +(e n3 n9) +(e n3 n18) +(e n3 n21) +(e n3 n25) +(e n3 n41) +(e n3 n46) +(e n3 n59) +(e n3 n63) +(e n3 n69) +(e n4 n2) +(e n4 n13) +(e n4 n22) +(e n4 n26) +(e n4 n35) +(e n4 n44) +(e n4 n51) +(e n4 n53) +(e n4 n59) +(e n4 n65) +(e n4 n67) +(e n4 n69) +(e n5 n0) +(e n5 n3) +(e n5 n16) +(e n5 n18) +(e n5 n24) +(e n5 n35) +(e n5 n40) +(e n5 n65) +(e n5 n66) +(e n6 n4) +(e n6 n13) +(e n6 n19) +(e n6 n22) +(e n6 n27) +(e n6 n40) +(e n6 n41) +(e n6 n45) +(e n6 n60) +(e n6 n69) +(e n7 n1) +(e n7 n4) +(e n7 n5) +(e n7 n8) +(e n7 n17) +(e n7 n25) +(e n7 n27) +(e n7 n30) +(e n7 n38) +(e n7 n40) +(e n7 n43) +(e n7 n60) +(e n8 n0) +(e n8 n13) +(e n8 n16) +(e n8 n26) +(e n8 n35) +(e n8 n46) +(e n8 n49) +(e n8 n51) +(e n8 n59) +(e n9 n3) +(e n9 n4) +(e n9 n5) +(e n9 n6) +(e n9 n10) +(e n9 n11) +(e n9 n15) +(e n9 n28) +(e n9 n34) +(e n9 n35) +(e n9 n39) +(e n9 n43) +(e n9 n46) +(e n9 n49) +(e n9 n53) +(e n9 n57) +(e n9 n58) +(e n9 n61) +(e n9 n63) +(e n9 n67) +(e n10 n0) +(e n10 n4) +(e n10 n17) +(e n10 n32) +(e n10 n38) +(e n10 n42) +(e n10 n45) +(e n10 n53) +(e n10 n58) +(e n10 n60) +(e n10 n66) +(e n11 n12) +(e n11 n14) +(e n11 n20) +(e n11 n21) +(e n11 n28) +(e n11 n32) +(e n11 n33) +(e n11 n39) +(e n11 n54) +(e n11 n59) +(e n12 n1) +(e n12 n16) +(e n12 n17) +(e n12 n41) +(e n12 n54) +(e n12 n56) +(e n12 n58) +(e n12 n59) +(e n12 n61) +(e n12 n66) +(e n13 n2) +(e n13 n3) +(e n13 n4) +(e n13 n18) +(e n13 n19) +(e n13 n24) +(e n13 n32) +(e n13 n37) +(e n13 n39) +(e n13 n51) +(e n13 n56) +(e n13 n67) +(e n13 n68) +(e n13 n69) +(e n14 n6) +(e n14 n7) +(e n14 n13) +(e n14 n20) +(e n14 n22) +(e n14 n26) +(e n14 n29) +(e n14 n50) +(e n14 n57) +(e n14 n67) +(e n15 n0) +(e n15 n2) +(e n15 n9) +(e n15 n12) +(e n15 n17) +(e n15 n19) +(e n15 n26) +(e n15 n27) +(e n15 n41) +(e n15 n46) +(e n15 n47) +(e n15 n50) +(e n15 n56) +(e n15 n58) +(e n16 n8) +(e n16 n11) +(e n16 n15) +(e n16 n30) +(e n16 n33) +(e n16 n34) +(e n16 n43) +(e n16 n53) +(e n16 n57) +(e n16 n61) +(e n16 n62) +(e n16 n69) +(e n17 n6) +(e n17 n9) +(e n17 n13) +(e n17 n25) +(e n17 n26) +(e n17 n30) +(e n17 n37) +(e n17 n49) +(e n17 n63) +(e n17 n64) +(e n18 n6) +(e n18 n9) +(e n18 n11) +(e n18 n25) +(e n18 n31) +(e n18 n33) +(e n18 n45) +(e n18 n47) +(e n18 n49) +(e n18 n51) +(e n18 n58) +(e n18 n65) +(e n18 n67) +(e n19 n16) +(e n19 n22) +(e n19 n24) +(e n19 n41) +(e n19 n46) +(e n19 n47) +(e n19 n60) +(e n19 n61) +(e n19 n68) +(e n20 n1) +(e n20 n15) +(e n20 n16) +(e n20 n25) +(e n20 n32) +(e n20 n41) +(e n20 n42) +(e n20 n48) +(e n20 n50) +(e n20 n51) +(e n20 n52) +(e n20 n53) +(e n20 n61) +(e n21 n8) +(e n21 n12) +(e n21 n14) +(e n21 n23) +(e n21 n28) +(e n21 n32) +(e n21 n41) +(e n21 n59) +(e n21 n63) +(e n22 n1) +(e n22 n7) +(e n22 n8) +(e n22 n11) +(e n22 n12) +(e n22 n20) +(e n22 n23) +(e n22 n24) +(e n22 n25) +(e n22 n34) +(e n22 n36) +(e n22 n39) +(e n22 n41) +(e n22 n44) +(e n22 n59) +(e n22 n65) +(e n22 n68) +(e n23 n1) +(e n23 n4) +(e n23 n8) +(e n23 n12) +(e n23 n16) +(e n23 n17) +(e n23 n18) +(e n23 n19) +(e n23 n30) +(e n23 n40) +(e n23 n51) +(e n23 n60) +(e n23 n62) +(e n23 n68) +(e n24 n3) +(e n24 n6) +(e n24 n11) +(e n24 n16) +(e n24 n19) +(e n24 n20) +(e n24 n23) +(e n24 n25) +(e n24 n30) +(e n24 n35) +(e n24 n37) +(e n24 n47) +(e n24 n51) +(e n24 n53) +(e n24 n60) +(e n25 n1) +(e n25 n5) +(e n25 n6) +(e n25 n23) +(e n25 n34) +(e n25 n37) +(e n25 n45) +(e n25 n48) +(e n25 n51) +(e n25 n52) +(e n25 n66) +(e n25 n67) +(e n26 n2) +(e n26 n11) +(e n26 n12) +(e n26 n17) +(e n26 n19) +(e n26 n23) +(e n26 n31) +(e n26 n35) +(e n26 n47) +(e n26 n49) +(e n26 n51) +(e n26 n68) +(e n26 n69) +(e n27 n5) +(e n27 n6) +(e n27 n8) +(e n27 n9) +(e n27 n15) +(e n27 n17) +(e n27 n23) +(e n27 n24) +(e n27 n26) +(e n27 n44) +(e n27 n45) +(e n27 n49) +(e n27 n51) +(e n27 n56) +(e n27 n59) +(e n27 n69) +(e n28 n2) +(e n28 n11) +(e n28 n20) +(e n28 n34) +(e n28 n35) +(e n28 n40) +(e n28 n45) +(e n28 n53) +(e n28 n57) +(e n28 n63) +(e n28 n69) +(e n29 n1) +(e n29 n4) +(e n29 n5) +(e n29 n10) +(e n29 n14) +(e n29 n34) +(e n29 n37) +(e n29 n41) +(e n29 n44) +(e n29 n45) +(e n29 n46) +(e n29 n61) +(e n29 n69) +(e n30 n8) +(e n30 n9) +(e n30 n16) +(e n30 n24) +(e n30 n31) +(e n30 n32) +(e n30 n33) +(e n30 n46) +(e n30 n47) +(e n30 n50) +(e n30 n53) +(e n30 n60) +(e n30 n63) +(e n30 n66) +(e n30 n69) +(e n31 n5) +(e n31 n10) +(e n31 n12) +(e n31 n15) +(e n31 n20) +(e n31 n22) +(e n31 n23) +(e n31 n24) +(e n31 n28) +(e n31 n38) +(e n31 n42) +(e n31 n49) +(e n31 n53) +(e n31 n56) +(e n31 n61) +(e n31 n64) +(e n31 n67) +(e n32 n1) +(e n32 n3) +(e n32 n15) +(e n32 n25) +(e n32 n31) +(e n32 n35) +(e n32 n39) +(e n32 n40) +(e n32 n47) +(e n32 n49) +(e n32 n53) +(e n32 n54) +(e n32 n66) +(e n33 n1) +(e n33 n2) +(e n33 n4) +(e n33 n8) +(e n33 n16) +(e n33 n21) +(e n33 n28) +(e n33 n31) +(e n33 n32) +(e n33 n35) +(e n33 n42) +(e n33 n44) +(e n33 n49) +(e n33 n53) +(e n33 n65) +(e n34 n6) +(e n34 n13) +(e n34 n18) +(e n34 n29) +(e n34 n30) +(e n34 n31) +(e n34 n33) +(e n34 n37) +(e n34 n39) +(e n34 n47) +(e n34 n52) +(e n34 n54) +(e n34 n63) +(e n34 n66) +(e n34 n67) +(e n35 n2) +(e n35 n3) +(e n35 n8) +(e n35 n9) +(e n35 n13) +(e n35 n14) +(e n35 n27) +(e n35 n34) +(e n35 n41) +(e n35 n43) +(e n35 n46) +(e n35 n51) +(e n35 n52) +(e n35 n58) +(e n35 n60) +(e n36 n5) +(e n36 n10) +(e n36 n12) +(e n36 n15) +(e n36 n18) +(e n36 n24) +(e n36 n28) +(e n36 n37) +(e n36 n41) +(e n36 n45) +(e n36 n46) +(e n36 n56) +(e n36 n62) +(e n36 n68) +(e n37 n2) +(e n37 n13) +(e n37 n14) +(e n37 n21) +(e n37 n23) +(e n37 n29) +(e n37 n35) +(e n37 n48) +(e n37 n55) +(e n38 n2) +(e n38 n8) +(e n38 n18) +(e n38 n19) +(e n38 n23) +(e n38 n26) +(e n38 n33) +(e n38 n43) +(e n38 n60) +(e n39 n3) +(e n39 n4) +(e n39 n8) +(e n39 n10) +(e n39 n11) +(e n39 n14) +(e n39 n15) +(e n39 n27) +(e n39 n29) +(e n39 n40) +(e n39 n41) +(e n39 n42) +(e n39 n43) +(e n39 n46) +(e n39 n48) +(e n39 n50) +(e n39 n51) +(e n39 n52) +(e n39 n54) +(e n39 n56) +(e n39 n58) +(e n39 n60) +(e n39 n68) +(e n40 n10) +(e n40 n13) +(e n40 n24) +(e n40 n25) +(e n40 n26) +(e n40 n28) +(e n40 n29) +(e n40 n35) +(e n40 n45) +(e n40 n50) +(e n40 n57) +(e n41 n2) +(e n41 n6) +(e n41 n9) +(e n41 n10) +(e n41 n12) +(e n41 n19) +(e n41 n23) +(e n41 n32) +(e n41 n46) +(e n41 n47) +(e n41 n49) +(e n41 n51) +(e n41 n55) +(e n41 n56) +(e n41 n68) +(e n42 n4) +(e n42 n10) +(e n42 n11) +(e n42 n17) +(e n42 n18) +(e n42 n24) +(e n42 n26) +(e n42 n36) +(e n42 n37) +(e n42 n39) +(e n42 n49) +(e n42 n56) +(e n42 n57) +(e n42 n67) +(e n42 n68) +(e n43 n11) +(e n43 n13) +(e n43 n32) +(e n43 n39) +(e n43 n42) +(e n43 n45) +(e n43 n50) +(e n43 n54) +(e n43 n56) +(e n43 n58) +(e n43 n61) +(e n43 n66) +(e n44 n2) +(e n44 n5) +(e n44 n23) +(e n44 n28) +(e n44 n30) +(e n44 n32) +(e n44 n50) +(e n44 n64) +(e n44 n65) +(e n44 n69) +(e n45 n3) +(e n45 n6) +(e n45 n26) +(e n45 n27) +(e n45 n28) +(e n45 n31) +(e n45 n39) +(e n45 n55) +(e n45 n67) +(e n46 n2) +(e n46 n3) +(e n46 n7) +(e n46 n9) +(e n46 n14) +(e n46 n17) +(e n46 n27) +(e n46 n33) +(e n46 n34) +(e n46 n39) +(e n46 n41) +(e n46 n47) +(e n46 n57) +(e n46 n67) +(e n47 n3) +(e n47 n8) +(e n47 n9) +(e n47 n16) +(e n47 n38) +(e n47 n44) +(e n47 n52) +(e n47 n53) +(e n47 n55) +(e n47 n57) +(e n47 n58) +(e n47 n67) +(e n47 n69) +(e n48 n1) +(e n48 n3) +(e n48 n7) +(e n48 n11) +(e n48 n14) +(e n48 n18) +(e n48 n26) +(e n48 n32) +(e n48 n41) +(e n48 n50) +(e n48 n52) +(e n48 n63) +(e n48 n69) +(e n49 n0) +(e n49 n3) +(e n49 n4) +(e n49 n6) +(e n49 n8) +(e n49 n9) +(e n49 n12) +(e n49 n15) +(e n49 n20) +(e n49 n43) +(e n49 n47) +(e n49 n53) +(e n49 n60) +(e n49 n61) +(e n49 n66) +(e n49 n67) +(e n49 n69) +(e n50 n0) +(e n50 n2) +(e n50 n12) +(e n50 n20) +(e n50 n27) +(e n50 n30) +(e n50 n32) +(e n50 n38) +(e n50 n44) +(e n50 n49) +(e n50 n52) +(e n50 n55) +(e n50 n57) +(e n50 n59) +(e n50 n64) +(e n51 n6) +(e n51 n12) +(e n51 n17) +(e n51 n22) +(e n51 n24) +(e n51 n25) +(e n51 n27) +(e n51 n40) +(e n51 n42) +(e n51 n52) +(e n51 n58) +(e n51 n66) +(e n52 n1) +(e n52 n25) +(e n52 n44) +(e n52 n48) +(e n52 n49) +(e n52 n51) +(e n52 n53) +(e n52 n58) +(e n52 n59) +(e n52 n61) +(e n52 n67) +(e n53 n3) +(e n53 n9) +(e n53 n10) +(e n53 n17) +(e n53 n21) +(e n53 n23) +(e n53 n27) +(e n53 n30) +(e n53 n32) +(e n53 n35) +(e n53 n36) +(e n53 n42) +(e n53 n44) +(e n53 n49) +(e n53 n58) +(e n53 n66) +(e n54 n3) +(e n54 n4) +(e n54 n8) +(e n54 n25) +(e n54 n47) +(e n54 n61) +(e n54 n63) +(e n54 n65) +(e n54 n67) +(e n55 n2) +(e n55 n15) +(e n55 n25) +(e n55 n30) +(e n55 n48) +(e n55 n52) +(e n55 n53) +(e n55 n59) +(e n55 n60) +(e n55 n62) +(e n55 n64) +(e n56 n13) +(e n56 n17) +(e n56 n22) +(e n56 n23) +(e n56 n26) +(e n56 n32) +(e n56 n33) +(e n56 n35) +(e n56 n43) +(e n56 n51) +(e n56 n54) +(e n56 n57) +(e n56 n63) +(e n56 n67) +(e n57 n10) +(e n57 n17) +(e n57 n23) +(e n57 n27) +(e n57 n31) +(e n57 n38) +(e n57 n42) +(e n57 n48) +(e n57 n59) +(e n57 n60) +(e n57 n62) +(e n57 n65) +(e n58 n1) +(e n58 n2) +(e n58 n25) +(e n58 n26) +(e n58 n28) +(e n58 n36) +(e n58 n40) +(e n58 n56) +(e n59 n4) +(e n59 n8) +(e n59 n9) +(e n59 n10) +(e n59 n11) +(e n59 n15) +(e n59 n38) +(e n59 n41) +(e n59 n42) +(e n59 n52) +(e n59 n62) +(e n59 n69) +(e n60 n2) +(e n60 n17) +(e n60 n19) +(e n60 n21) +(e n60 n26) +(e n60 n28) +(e n60 n30) +(e n60 n32) +(e n60 n44) +(e n60 n45) +(e n60 n54) +(e n60 n63) +(e n60 n68) +(e n61 n1) +(e n61 n2) +(e n61 n4) +(e n61 n5) +(e n61 n6) +(e n61 n7) +(e n61 n8) +(e n61 n14) +(e n61 n18) +(e n61 n21) +(e n61 n25) +(e n61 n28) +(e n61 n33) +(e n61 n34) +(e n61 n42) +(e n61 n49) +(e n62 n3) +(e n62 n5) +(e n62 n11) +(e n62 n17) +(e n62 n30) +(e n62 n35) +(e n62 n37) +(e n62 n49) +(e n62 n51) +(e n62 n55) +(e n62 n66) +(e n62 n68) +(e n62 n69) +(e n63 n0) +(e n63 n7) +(e n63 n11) +(e n63 n13) +(e n63 n15) +(e n63 n17) +(e n63 n18) +(e n63 n20) +(e n63 n30) +(e n63 n35) +(e n63 n41) +(e n63 n46) +(e n63 n47) +(e n63 n51) +(e n63 n52) +(e n63 n58) +(e n63 n62) +(e n64 n0) +(e n64 n6) +(e n64 n14) +(e n64 n24) +(e n64 n29) +(e n64 n35) +(e n64 n37) +(e n64 n39) +(e n64 n40) +(e n64 n43) +(e n64 n45) +(e n64 n50) +(e n64 n65) +(e n64 n66) +(e n65 n1) +(e n65 n3) +(e n65 n16) +(e n65 n21) +(e n65 n28) +(e n65 n32) +(e n65 n36) +(e n65 n42) +(e n65 n59) +(e n65 n60) +(e n65 n63) +(e n66 n5) +(e n66 n7) +(e n66 n11) +(e n66 n16) +(e n66 n17) +(e n66 n21) +(e n66 n22) +(e n66 n23) +(e n66 n25) +(e n66 n26) +(e n66 n29) +(e n66 n33) +(e n66 n35) +(e n66 n37) +(e n66 n44) +(e n66 n51) +(e n66 n55) +(e n66 n63) +(e n66 n64) +(e n66 n65) +(e n67 n8) +(e n67 n14) +(e n67 n19) +(e n67 n20) +(e n67 n27) +(e n67 n33) +(e n67 n36) +(e n67 n40) +(e n67 n46) +(e n67 n50) +(e n67 n51) +(e n68 n1) +(e n68 n5) +(e n68 n6) +(e n68 n14) +(e n68 n15) +(e n68 n22) +(e n68 n26) +(e n68 n27) +(e n68 n30) +(e n68 n38) +(e n68 n41) +(e n68 n57) +(e n68 n58) +(e n68 n63) +(e n69 n3) +(e n69 n7) +(e n69 n8) +(e n69 n10) +(e n69 n15) +(e n69 n16) +(e n69 n17) +(e n69 n20) +(e n69 n30) +(e n69 n38) +(e n69 n39) +(e n69 n47) +(e n69 n64) +(e n69 n65) +(e n69 n67) +(exec 9 (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a))) diff --git a/examples/transforms/cyc_staged.mm2 b/examples/transforms/cyc_staged.mm2 new file mode 100644 index 00000000..63ad0c46 --- /dev/null +++ b/examples/transforms/cyc_staged.mm2 @@ -0,0 +1,902 @@ +(e n0 n23) +(e n0 n26) +(e n0 n30) +(e n0 n34) +(e n0 n37) +(e n0 n48) +(e n0 n69) +(e n1 n5) +(e n1 n7) +(e n1 n9) +(e n1 n12) +(e n1 n14) +(e n1 n18) +(e n1 n26) +(e n1 n31) +(e n1 n43) +(e n1 n47) +(e n1 n48) +(e n1 n51) +(e n1 n52) +(e n1 n60) +(e n1 n67) +(e n2 n0) +(e n2 n4) +(e n2 n8) +(e n2 n9) +(e n2 n12) +(e n2 n17) +(e n2 n20) +(e n2 n28) +(e n2 n33) +(e n2 n50) +(e n2 n63) +(e n3 n1) +(e n3 n8) +(e n3 n9) +(e n3 n18) +(e n3 n21) +(e n3 n25) +(e n3 n41) +(e n3 n46) +(e n3 n59) +(e n3 n63) +(e n3 n69) +(e n4 n2) +(e n4 n13) +(e n4 n22) +(e n4 n26) +(e n4 n35) +(e n4 n44) +(e n4 n51) +(e n4 n53) +(e n4 n59) +(e n4 n65) +(e n4 n67) +(e n4 n69) +(e n5 n0) +(e n5 n3) +(e n5 n16) +(e n5 n18) +(e n5 n24) +(e n5 n35) +(e n5 n40) +(e n5 n65) +(e n5 n66) +(e n6 n4) +(e n6 n13) +(e n6 n19) +(e n6 n22) +(e n6 n27) +(e n6 n40) +(e n6 n41) +(e n6 n45) +(e n6 n60) +(e n6 n69) +(e n7 n1) +(e n7 n4) +(e n7 n5) +(e n7 n8) +(e n7 n17) +(e n7 n25) +(e n7 n27) +(e n7 n30) +(e n7 n38) +(e n7 n40) +(e n7 n43) +(e n7 n60) +(e n8 n0) +(e n8 n13) +(e n8 n16) +(e n8 n26) +(e n8 n35) +(e n8 n46) +(e n8 n49) +(e n8 n51) +(e n8 n59) +(e n9 n3) +(e n9 n4) +(e n9 n5) +(e n9 n6) +(e n9 n10) +(e n9 n11) +(e n9 n15) +(e n9 n28) +(e n9 n34) +(e n9 n35) +(e n9 n39) +(e n9 n43) +(e n9 n46) +(e n9 n49) +(e n9 n53) +(e n9 n57) +(e n9 n58) +(e n9 n61) +(e n9 n63) +(e n9 n67) +(e n10 n0) +(e n10 n4) +(e n10 n17) +(e n10 n32) +(e n10 n38) +(e n10 n42) +(e n10 n45) +(e n10 n53) +(e n10 n58) +(e n10 n60) +(e n10 n66) +(e n11 n12) +(e n11 n14) +(e n11 n20) +(e n11 n21) +(e n11 n28) +(e n11 n32) +(e n11 n33) +(e n11 n39) +(e n11 n54) +(e n11 n59) +(e n12 n1) +(e n12 n16) +(e n12 n17) +(e n12 n41) +(e n12 n54) +(e n12 n56) +(e n12 n58) +(e n12 n59) +(e n12 n61) +(e n12 n66) +(e n13 n2) +(e n13 n3) +(e n13 n4) +(e n13 n18) +(e n13 n19) +(e n13 n24) +(e n13 n32) +(e n13 n37) +(e n13 n39) +(e n13 n51) +(e n13 n56) +(e n13 n67) +(e n13 n68) +(e n13 n69) +(e n14 n6) +(e n14 n7) +(e n14 n13) +(e n14 n20) +(e n14 n22) +(e n14 n26) +(e n14 n29) +(e n14 n50) +(e n14 n57) +(e n14 n67) +(e n15 n0) +(e n15 n2) +(e n15 n9) +(e n15 n12) +(e n15 n17) +(e n15 n19) +(e n15 n26) +(e n15 n27) +(e n15 n41) +(e n15 n46) +(e n15 n47) +(e n15 n50) +(e n15 n56) +(e n15 n58) +(e n16 n8) +(e n16 n11) +(e n16 n15) +(e n16 n30) +(e n16 n33) +(e n16 n34) +(e n16 n43) +(e n16 n53) +(e n16 n57) +(e n16 n61) +(e n16 n62) +(e n16 n69) +(e n17 n6) +(e n17 n9) +(e n17 n13) +(e n17 n25) +(e n17 n26) +(e n17 n30) +(e n17 n37) +(e n17 n49) +(e n17 n63) +(e n17 n64) +(e n18 n6) +(e n18 n9) +(e n18 n11) +(e n18 n25) +(e n18 n31) +(e n18 n33) +(e n18 n45) +(e n18 n47) +(e n18 n49) +(e n18 n51) +(e n18 n58) +(e n18 n65) +(e n18 n67) +(e n19 n16) +(e n19 n22) +(e n19 n24) +(e n19 n41) +(e n19 n46) +(e n19 n47) +(e n19 n60) +(e n19 n61) +(e n19 n68) +(e n20 n1) +(e n20 n15) +(e n20 n16) +(e n20 n25) +(e n20 n32) +(e n20 n41) +(e n20 n42) +(e n20 n48) +(e n20 n50) +(e n20 n51) +(e n20 n52) +(e n20 n53) +(e n20 n61) +(e n21 n8) +(e n21 n12) +(e n21 n14) +(e n21 n23) +(e n21 n28) +(e n21 n32) +(e n21 n41) +(e n21 n59) +(e n21 n63) +(e n22 n1) +(e n22 n7) +(e n22 n8) +(e n22 n11) +(e n22 n12) +(e n22 n20) +(e n22 n23) +(e n22 n24) +(e n22 n25) +(e n22 n34) +(e n22 n36) +(e n22 n39) +(e n22 n41) +(e n22 n44) +(e n22 n59) +(e n22 n65) +(e n22 n68) +(e n23 n1) +(e n23 n4) +(e n23 n8) +(e n23 n12) +(e n23 n16) +(e n23 n17) +(e n23 n18) +(e n23 n19) +(e n23 n30) +(e n23 n40) +(e n23 n51) +(e n23 n60) +(e n23 n62) +(e n23 n68) +(e n24 n3) +(e n24 n6) +(e n24 n11) +(e n24 n16) +(e n24 n19) +(e n24 n20) +(e n24 n23) +(e n24 n25) +(e n24 n30) +(e n24 n35) +(e n24 n37) +(e n24 n47) +(e n24 n51) +(e n24 n53) +(e n24 n60) +(e n25 n1) +(e n25 n5) +(e n25 n6) +(e n25 n23) +(e n25 n34) +(e n25 n37) +(e n25 n45) +(e n25 n48) +(e n25 n51) +(e n25 n52) +(e n25 n66) +(e n25 n67) +(e n26 n2) +(e n26 n11) +(e n26 n12) +(e n26 n17) +(e n26 n19) +(e n26 n23) +(e n26 n31) +(e n26 n35) +(e n26 n47) +(e n26 n49) +(e n26 n51) +(e n26 n68) +(e n26 n69) +(e n27 n5) +(e n27 n6) +(e n27 n8) +(e n27 n9) +(e n27 n15) +(e n27 n17) +(e n27 n23) +(e n27 n24) +(e n27 n26) +(e n27 n44) +(e n27 n45) +(e n27 n49) +(e n27 n51) +(e n27 n56) +(e n27 n59) +(e n27 n69) +(e n28 n2) +(e n28 n11) +(e n28 n20) +(e n28 n34) +(e n28 n35) +(e n28 n40) +(e n28 n45) +(e n28 n53) +(e n28 n57) +(e n28 n63) +(e n28 n69) +(e n29 n1) +(e n29 n4) +(e n29 n5) +(e n29 n10) +(e n29 n14) +(e n29 n34) +(e n29 n37) +(e n29 n41) +(e n29 n44) +(e n29 n45) +(e n29 n46) +(e n29 n61) +(e n29 n69) +(e n30 n8) +(e n30 n9) +(e n30 n16) +(e n30 n24) +(e n30 n31) +(e n30 n32) +(e n30 n33) +(e n30 n46) +(e n30 n47) +(e n30 n50) +(e n30 n53) +(e n30 n60) +(e n30 n63) +(e n30 n66) +(e n30 n69) +(e n31 n5) +(e n31 n10) +(e n31 n12) +(e n31 n15) +(e n31 n20) +(e n31 n22) +(e n31 n23) +(e n31 n24) +(e n31 n28) +(e n31 n38) +(e n31 n42) +(e n31 n49) +(e n31 n53) +(e n31 n56) +(e n31 n61) +(e n31 n64) +(e n31 n67) +(e n32 n1) +(e n32 n3) +(e n32 n15) +(e n32 n25) +(e n32 n31) +(e n32 n35) +(e n32 n39) +(e n32 n40) +(e n32 n47) +(e n32 n49) +(e n32 n53) +(e n32 n54) +(e n32 n66) +(e n33 n1) +(e n33 n2) +(e n33 n4) +(e n33 n8) +(e n33 n16) +(e n33 n21) +(e n33 n28) +(e n33 n31) +(e n33 n32) +(e n33 n35) +(e n33 n42) +(e n33 n44) +(e n33 n49) +(e n33 n53) +(e n33 n65) +(e n34 n6) +(e n34 n13) +(e n34 n18) +(e n34 n29) +(e n34 n30) +(e n34 n31) +(e n34 n33) +(e n34 n37) +(e n34 n39) +(e n34 n47) +(e n34 n52) +(e n34 n54) +(e n34 n63) +(e n34 n66) +(e n34 n67) +(e n35 n2) +(e n35 n3) +(e n35 n8) +(e n35 n9) +(e n35 n13) +(e n35 n14) +(e n35 n27) +(e n35 n34) +(e n35 n41) +(e n35 n43) +(e n35 n46) +(e n35 n51) +(e n35 n52) +(e n35 n58) +(e n35 n60) +(e n36 n5) +(e n36 n10) +(e n36 n12) +(e n36 n15) +(e n36 n18) +(e n36 n24) +(e n36 n28) +(e n36 n37) +(e n36 n41) +(e n36 n45) +(e n36 n46) +(e n36 n56) +(e n36 n62) +(e n36 n68) +(e n37 n2) +(e n37 n13) +(e n37 n14) +(e n37 n21) +(e n37 n23) +(e n37 n29) +(e n37 n35) +(e n37 n48) +(e n37 n55) +(e n38 n2) +(e n38 n8) +(e n38 n18) +(e n38 n19) +(e n38 n23) +(e n38 n26) +(e n38 n33) +(e n38 n43) +(e n38 n60) +(e n39 n3) +(e n39 n4) +(e n39 n8) +(e n39 n10) +(e n39 n11) +(e n39 n14) +(e n39 n15) +(e n39 n27) +(e n39 n29) +(e n39 n40) +(e n39 n41) +(e n39 n42) +(e n39 n43) +(e n39 n46) +(e n39 n48) +(e n39 n50) +(e n39 n51) +(e n39 n52) +(e n39 n54) +(e n39 n56) +(e n39 n58) +(e n39 n60) +(e n39 n68) +(e n40 n10) +(e n40 n13) +(e n40 n24) +(e n40 n25) +(e n40 n26) +(e n40 n28) +(e n40 n29) +(e n40 n35) +(e n40 n45) +(e n40 n50) +(e n40 n57) +(e n41 n2) +(e n41 n6) +(e n41 n9) +(e n41 n10) +(e n41 n12) +(e n41 n19) +(e n41 n23) +(e n41 n32) +(e n41 n46) +(e n41 n47) +(e n41 n49) +(e n41 n51) +(e n41 n55) +(e n41 n56) +(e n41 n68) +(e n42 n4) +(e n42 n10) +(e n42 n11) +(e n42 n17) +(e n42 n18) +(e n42 n24) +(e n42 n26) +(e n42 n36) +(e n42 n37) +(e n42 n39) +(e n42 n49) +(e n42 n56) +(e n42 n57) +(e n42 n67) +(e n42 n68) +(e n43 n11) +(e n43 n13) +(e n43 n32) +(e n43 n39) +(e n43 n42) +(e n43 n45) +(e n43 n50) +(e n43 n54) +(e n43 n56) +(e n43 n58) +(e n43 n61) +(e n43 n66) +(e n44 n2) +(e n44 n5) +(e n44 n23) +(e n44 n28) +(e n44 n30) +(e n44 n32) +(e n44 n50) +(e n44 n64) +(e n44 n65) +(e n44 n69) +(e n45 n3) +(e n45 n6) +(e n45 n26) +(e n45 n27) +(e n45 n28) +(e n45 n31) +(e n45 n39) +(e n45 n55) +(e n45 n67) +(e n46 n2) +(e n46 n3) +(e n46 n7) +(e n46 n9) +(e n46 n14) +(e n46 n17) +(e n46 n27) +(e n46 n33) +(e n46 n34) +(e n46 n39) +(e n46 n41) +(e n46 n47) +(e n46 n57) +(e n46 n67) +(e n47 n3) +(e n47 n8) +(e n47 n9) +(e n47 n16) +(e n47 n38) +(e n47 n44) +(e n47 n52) +(e n47 n53) +(e n47 n55) +(e n47 n57) +(e n47 n58) +(e n47 n67) +(e n47 n69) +(e n48 n1) +(e n48 n3) +(e n48 n7) +(e n48 n11) +(e n48 n14) +(e n48 n18) +(e n48 n26) +(e n48 n32) +(e n48 n41) +(e n48 n50) +(e n48 n52) +(e n48 n63) +(e n48 n69) +(e n49 n0) +(e n49 n3) +(e n49 n4) +(e n49 n6) +(e n49 n8) +(e n49 n9) +(e n49 n12) +(e n49 n15) +(e n49 n20) +(e n49 n43) +(e n49 n47) +(e n49 n53) +(e n49 n60) +(e n49 n61) +(e n49 n66) +(e n49 n67) +(e n49 n69) +(e n50 n0) +(e n50 n2) +(e n50 n12) +(e n50 n20) +(e n50 n27) +(e n50 n30) +(e n50 n32) +(e n50 n38) +(e n50 n44) +(e n50 n49) +(e n50 n52) +(e n50 n55) +(e n50 n57) +(e n50 n59) +(e n50 n64) +(e n51 n6) +(e n51 n12) +(e n51 n17) +(e n51 n22) +(e n51 n24) +(e n51 n25) +(e n51 n27) +(e n51 n40) +(e n51 n42) +(e n51 n52) +(e n51 n58) +(e n51 n66) +(e n52 n1) +(e n52 n25) +(e n52 n44) +(e n52 n48) +(e n52 n49) +(e n52 n51) +(e n52 n53) +(e n52 n58) +(e n52 n59) +(e n52 n61) +(e n52 n67) +(e n53 n3) +(e n53 n9) +(e n53 n10) +(e n53 n17) +(e n53 n21) +(e n53 n23) +(e n53 n27) +(e n53 n30) +(e n53 n32) +(e n53 n35) +(e n53 n36) +(e n53 n42) +(e n53 n44) +(e n53 n49) +(e n53 n58) +(e n53 n66) +(e n54 n3) +(e n54 n4) +(e n54 n8) +(e n54 n25) +(e n54 n47) +(e n54 n61) +(e n54 n63) +(e n54 n65) +(e n54 n67) +(e n55 n2) +(e n55 n15) +(e n55 n25) +(e n55 n30) +(e n55 n48) +(e n55 n52) +(e n55 n53) +(e n55 n59) +(e n55 n60) +(e n55 n62) +(e n55 n64) +(e n56 n13) +(e n56 n17) +(e n56 n22) +(e n56 n23) +(e n56 n26) +(e n56 n32) +(e n56 n33) +(e n56 n35) +(e n56 n43) +(e n56 n51) +(e n56 n54) +(e n56 n57) +(e n56 n63) +(e n56 n67) +(e n57 n10) +(e n57 n17) +(e n57 n23) +(e n57 n27) +(e n57 n31) +(e n57 n38) +(e n57 n42) +(e n57 n48) +(e n57 n59) +(e n57 n60) +(e n57 n62) +(e n57 n65) +(e n58 n1) +(e n58 n2) +(e n58 n25) +(e n58 n26) +(e n58 n28) +(e n58 n36) +(e n58 n40) +(e n58 n56) +(e n59 n4) +(e n59 n8) +(e n59 n9) +(e n59 n10) +(e n59 n11) +(e n59 n15) +(e n59 n38) +(e n59 n41) +(e n59 n42) +(e n59 n52) +(e n59 n62) +(e n59 n69) +(e n60 n2) +(e n60 n17) +(e n60 n19) +(e n60 n21) +(e n60 n26) +(e n60 n28) +(e n60 n30) +(e n60 n32) +(e n60 n44) +(e n60 n45) +(e n60 n54) +(e n60 n63) +(e n60 n68) +(e n61 n1) +(e n61 n2) +(e n61 n4) +(e n61 n5) +(e n61 n6) +(e n61 n7) +(e n61 n8) +(e n61 n14) +(e n61 n18) +(e n61 n21) +(e n61 n25) +(e n61 n28) +(e n61 n33) +(e n61 n34) +(e n61 n42) +(e n61 n49) +(e n62 n3) +(e n62 n5) +(e n62 n11) +(e n62 n17) +(e n62 n30) +(e n62 n35) +(e n62 n37) +(e n62 n49) +(e n62 n51) +(e n62 n55) +(e n62 n66) +(e n62 n68) +(e n62 n69) +(e n63 n0) +(e n63 n7) +(e n63 n11) +(e n63 n13) +(e n63 n15) +(e n63 n17) +(e n63 n18) +(e n63 n20) +(e n63 n30) +(e n63 n35) +(e n63 n41) +(e n63 n46) +(e n63 n47) +(e n63 n51) +(e n63 n52) +(e n63 n58) +(e n63 n62) +(e n64 n0) +(e n64 n6) +(e n64 n14) +(e n64 n24) +(e n64 n29) +(e n64 n35) +(e n64 n37) +(e n64 n39) +(e n64 n40) +(e n64 n43) +(e n64 n45) +(e n64 n50) +(e n64 n65) +(e n64 n66) +(e n65 n1) +(e n65 n3) +(e n65 n16) +(e n65 n21) +(e n65 n28) +(e n65 n32) +(e n65 n36) +(e n65 n42) +(e n65 n59) +(e n65 n60) +(e n65 n63) +(e n66 n5) +(e n66 n7) +(e n66 n11) +(e n66 n16) +(e n66 n17) +(e n66 n21) +(e n66 n22) +(e n66 n23) +(e n66 n25) +(e n66 n26) +(e n66 n29) +(e n66 n33) +(e n66 n35) +(e n66 n37) +(e n66 n44) +(e n66 n51) +(e n66 n55) +(e n66 n63) +(e n66 n64) +(e n66 n65) +(e n67 n8) +(e n67 n14) +(e n67 n19) +(e n67 n20) +(e n67 n27) +(e n67 n33) +(e n67 n36) +(e n67 n40) +(e n67 n46) +(e n67 n50) +(e n67 n51) +(e n68 n1) +(e n68 n5) +(e n68 n6) +(e n68 n14) +(e n68 n15) +(e n68 n22) +(e n68 n26) +(e n68 n27) +(e n68 n30) +(e n68 n38) +(e n68 n41) +(e n68 n57) +(e n68 n58) +(e n68 n63) +(e n69 n3) +(e n69 n7) +(e n69 n8) +(e n69 n10) +(e n69 n15) +(e n69 n16) +(e n69 n17) +(e n69 n20) +(e n69 n30) +(e n69 n38) +(e n69 n39) +(e n69 n47) +(e n69 n64) +(e n69 n65) +(e n69 n67) +(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d))) +(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a))) diff --git a/examples/transforms/generate.py b/examples/transforms/generate.py new file mode 100755 index 00000000..cfdd6692 --- /dev/null +++ b/examples/transforms/generate.py @@ -0,0 +1,63 @@ +#!/usr/bin/env python3 +"""Generate the measured programs for the two source-level transforms. + + chain_{naive,staged}.mm2 a chain query R-S-T, joined directly vs Yannakakis-staged + proj_{keyfirst,keylast}.mm2 the same projection under both column orders + tc_{naive,delta}.mm2 transitive closure, re-joined in full vs semi-naive + +Run: generate.py OUTDIR then mork run OUTDIR/.mm2 --steps 300 /tmp/out.space +""" +import os, random, sys + +def main(outdir): + os.makedirs(outdir, exist_ok=True) + w = lambda n, s: open(os.path.join(outdir, n), "w").write(s) + random.seed(9) + + # ---- chain query: T is narrow, so most S and R tuples dangle + ny = nz = 600 + R = [(f"x{i}", f"y{random.randrange(ny)}") for i in range(60000)] + S = [(f"y{random.randrange(ny)}", f"z{random.randrange(nz)}") for i in range(60000)] + T = [(f"z{i}", f"w{j}") for i in range(8) for j in range(3)] + data = ([f"(R {a} {b})" for a, b in R] + [f"(S {a} {b})" for a, b in S] + + [f"(T {a} {b})" for a, b in T]) + w("chain_naive.mm2", "\n".join(data) + "\n" + "(exec 9 (, (R $x $y) (S $y $z) (T $z $w)) (, (out $x $w)))\n") + w("chain_staged.mm2", "\n".join(data) + """ +;; Yannakakis: project, semi-join bottom-up, semi-join top-down, join the reduced relations. +;; Every projection is `(, (Rel $key $_))` -- the shape the projection cut answers with one +;; witness per key -- which is why the reduced relations are emitted KEY-FIRST. +(exec (1 0) (, (T $z $_)) (, (Tz $z))) +(exec (1 1) (, (S $y $z) (Tz $z)) (, (S1 $y $z))) +(exec (1 2) (, (S1 $y $_)) (, (S1y $y))) +(exec (1 3) (, (R $x $y) (S1y $y)) (, (R1 $y $x))) +(exec (1 4) (, (R1 $y $_)) (, (R1y $y))) +(exec (1 5) (, (S1 $y $z) (R1y $y)) (, (S2 $z $y))) +(exec (1 6) (, (S2 $z $_)) (, (S2z $z))) +(exec (1 7) (, (T $z $w) (S2z $z)) (, (T1 $z $w))) +(exec (2 0) (, (R1 $y $x) (S2 $z $y) (T1 $z $w)) (, (out $x $w))) +""") + + # ---- the projection alone, under both column orders + P = [(f"y{random.randrange(600)}", f"z{random.randrange(600)}") for _ in range(80000)] + pd = "\n".join(f"(S {a} {b})" for a, b in P) + w("proj_keyfirst.mm2", pd + "\n(exec 0 (, (S $y $_)) (, (Sy $y)))\n") + w("proj_keylast.mm2", pd + "\n(exec 0 (, (S $_ $z)) (, (Sz $z)))\n") + + # ---- transitive closure over a chain: |path| is quadratic, each frontier is linear + n = 220 + edges = "\n".join(f"(edge n{i} n{i+1})" for i in range(n - 1)) + w("tc_naive.mm2", edges + """ +(exec (0 0) (, (edge $x $y)) (, (path $x $y))) +(exec (1 Z) (, (exec (1 $l) $p $t) (path $x $y) (edge $y $z)) + (, (exec (1 (S $l)) $p $t) (path $x $z))) +""") + w("tc_delta.mm2", edges + """ +(exec (0 0) (, (edge $x $y)) (, (front Z $x $y) (path $x $y))) +(exec (1 Z) (, (exec (1 $l) $p $t) (front $l $x $y) (edge $y $z)) + (, (exec (1 (S $l)) $p $t) (front (S $l) $x $z) (path $x $z))) +""") + print("wrote 6 programs to " + outdir) + +if __name__ == "__main__": + main(sys.argv[1] if len(sys.argv) > 1 else ".") diff --git a/examples/transforms/lts_delta.mm2 b/examples/transforms/lts_delta.mm2 new file mode 100644 index 00000000..b944a0d9 --- /dev/null +++ b/examples/transforms/lts_delta.mm2 @@ -0,0 +1,18011 @@ +(trans s0 s1) +(trans s0 s14) +(trans s0 s27) +(trans s1 s8) +(trans s1 s21) +(trans s1 s34) +(trans s2 s15) +(trans s2 s28) +(trans s2 s41) +(trans s3 s22) +(trans s3 s35) +(trans s3 s48) +(trans s4 s29) +(trans s4 s42) +(trans s4 s55) +(trans s5 s36) +(trans s5 s49) +(trans s5 s62) +(trans s6 s43) +(trans s6 s56) +(trans s6 s69) +(trans s7 s50) +(trans s7 s63) +(trans s7 s76) +(trans s8 s57) +(trans s8 s70) +(trans s8 s83) +(trans s9 s64) +(trans s9 s77) +(trans s9 s90) +(trans s10 s71) +(trans s10 s84) +(trans s10 s97) +(trans s11 s78) +(trans s11 s91) +(trans s11 s104) +(trans s12 s85) +(trans s12 s98) +(trans s12 s111) +(trans s13 s92) +(trans s13 s105) +(trans s13 s118) +(trans s14 s99) +(trans s14 s112) +(trans s14 s125) +(trans s15 s106) +(trans s15 s119) +(trans s15 s132) +(trans s16 s113) +(trans s16 s126) +(trans s16 s139) +(trans s17 s120) +(trans s17 s133) +(trans s17 s146) +(trans s18 s127) +(trans s18 s140) +(trans s18 s153) +(trans s19 s134) +(trans s19 s147) +(trans s19 s160) +(trans s20 s141) +(trans s20 s154) +(trans s20 s167) +(trans s21 s148) +(trans s21 s161) +(trans s21 s174) +(trans s22 s155) +(trans s22 s168) +(trans s22 s181) +(trans s23 s162) +(trans s23 s175) +(trans s23 s188) +(trans s24 s169) +(trans s24 s182) +(trans s24 s195) +(trans s25 s176) +(trans s25 s189) +(trans s25 s202) +(trans s26 s183) +(trans s26 s196) +(trans s26 s209) +(trans s27 s190) +(trans s27 s203) +(trans s27 s216) +(trans s28 s197) +(trans s28 s210) +(trans s28 s223) +(trans s29 s204) +(trans s29 s217) +(trans s29 s230) +(trans s30 s211) +(trans s30 s224) +(trans s30 s237) +(trans s31 s218) +(trans s31 s231) +(trans s31 s244) +(trans s32 s225) +(trans s32 s238) +(trans s32 s251) +(trans s33 s232) +(trans s33 s245) +(trans s33 s258) +(trans s34 s239) +(trans s34 s252) +(trans s34 s265) +(trans s35 s246) +(trans s35 s259) +(trans s35 s272) +(trans s36 s253) +(trans s36 s266) +(trans s36 s279) +(trans s37 s260) +(trans s37 s273) +(trans s37 s286) +(trans s38 s267) +(trans s38 s280) +(trans s38 s293) +(trans s39 s274) +(trans s39 s287) +(trans s39 s300) +(trans s40 s281) +(trans s40 s294) +(trans s40 s307) +(trans s41 s288) +(trans s41 s301) +(trans s41 s314) +(trans s42 s295) +(trans s42 s308) +(trans s42 s321) +(trans s43 s302) +(trans s43 s315) +(trans s43 s328) +(trans s44 s309) +(trans s44 s322) +(trans s44 s335) +(trans s45 s316) +(trans s45 s329) +(trans s45 s342) +(trans s46 s323) +(trans s46 s336) +(trans s46 s349) +(trans s47 s330) +(trans s47 s343) +(trans s47 s356) +(trans s48 s337) +(trans s48 s350) +(trans s48 s363) +(trans s49 s344) +(trans s49 s357) +(trans s49 s370) +(trans s50 s351) +(trans s50 s364) +(trans s50 s377) +(trans s51 s358) +(trans s51 s371) +(trans s51 s384) +(trans s52 s365) +(trans s52 s378) +(trans s52 s391) +(trans s53 s372) +(trans s53 s385) +(trans s53 s398) +(trans s54 s379) +(trans s54 s392) +(trans s54 s405) +(trans s55 s386) +(trans s55 s399) +(trans s55 s412) +(trans s56 s393) +(trans s56 s406) +(trans s56 s419) +(trans s57 s400) +(trans s57 s413) +(trans s57 s426) +(trans s58 s407) +(trans s58 s420) +(trans s58 s433) +(trans s59 s414) +(trans s59 s427) +(trans s59 s440) +(trans s60 s421) +(trans s60 s434) +(trans s60 s447) +(trans s61 s428) +(trans s61 s441) +(trans s61 s454) +(trans s62 s435) +(trans s62 s448) +(trans s62 s461) +(trans s63 s442) +(trans s63 s455) +(trans s63 s468) +(trans s64 s449) +(trans s64 s462) +(trans s64 s475) +(trans s65 s456) +(trans s65 s469) +(trans s65 s482) +(trans s66 s463) +(trans s66 s476) +(trans s66 s489) +(trans s67 s470) +(trans s67 s483) +(trans s67 s496) +(trans s68 s477) +(trans s68 s490) +(trans s68 s503) +(trans s69 s484) +(trans s69 s497) +(trans s69 s510) +(trans s70 s491) +(trans s70 s504) +(trans s70 s517) +(trans s71 s498) +(trans s71 s511) +(trans s71 s524) +(trans s72 s505) +(trans s72 s518) +(trans s72 s531) +(trans s73 s512) +(trans s73 s525) +(trans s73 s538) +(trans s74 s519) +(trans s74 s532) +(trans s74 s545) +(trans s75 s526) +(trans s75 s539) +(trans s75 s552) +(trans s76 s533) +(trans s76 s546) +(trans s76 s559) +(trans s77 s540) +(trans s77 s553) +(trans s77 s566) +(trans s78 s547) +(trans s78 s560) +(trans s78 s573) +(trans s79 s554) +(trans s79 s567) +(trans s79 s580) +(trans s80 s561) +(trans s80 s574) +(trans s80 s587) +(trans s81 s568) +(trans s81 s581) +(trans s81 s594) +(trans s82 s575) +(trans s82 s588) +(trans s82 s601) +(trans s83 s582) +(trans s83 s595) +(trans s83 s608) +(trans s84 s589) +(trans s84 s602) +(trans s84 s615) +(trans s85 s596) +(trans s85 s609) +(trans s85 s622) +(trans s86 s603) +(trans s86 s616) +(trans s86 s629) +(trans s87 s610) +(trans s87 s623) +(trans s87 s636) +(trans s88 s617) +(trans s88 s630) +(trans s88 s643) +(trans s89 s624) +(trans s89 s637) +(trans s89 s650) +(trans s90 s631) +(trans s90 s644) +(trans s90 s657) +(trans s91 s638) +(trans s91 s651) +(trans s91 s664) +(trans s92 s645) +(trans s92 s658) +(trans s92 s671) +(trans s93 s652) +(trans s93 s665) +(trans s93 s678) +(trans s94 s659) +(trans s94 s672) +(trans s94 s685) +(trans s95 s666) +(trans s95 s679) +(trans s95 s692) +(trans s96 s673) +(trans s96 s686) +(trans s96 s699) +(trans s97 s680) +(trans s97 s693) +(trans s97 s706) +(trans s98 s687) +(trans s98 s700) +(trans s98 s713) +(trans s99 s694) +(trans s99 s707) +(trans s99 s720) +(trans s100 s701) +(trans s100 s714) +(trans s100 s727) +(trans s101 s708) +(trans s101 s721) +(trans s101 s734) +(trans s102 s715) +(trans s102 s728) +(trans s102 s741) +(trans s103 s722) +(trans s103 s735) +(trans s103 s748) +(trans s104 s729) +(trans s104 s742) +(trans s104 s755) +(trans s105 s736) +(trans s105 s749) +(trans s105 s762) +(trans s106 s743) +(trans s106 s756) +(trans s106 s769) +(trans s107 s750) +(trans s107 s763) +(trans s107 s776) +(trans s108 s757) +(trans s108 s770) +(trans s108 s783) +(trans s109 s764) +(trans s109 s777) +(trans s109 s790) +(trans s110 s771) +(trans s110 s784) +(trans s110 s797) +(trans s111 s778) +(trans s111 s791) +(trans s111 s804) +(trans s112 s785) +(trans s112 s798) +(trans s112 s811) +(trans s113 s792) +(trans s113 s805) +(trans s113 s818) +(trans s114 s799) +(trans s114 s812) +(trans s114 s825) +(trans s115 s806) +(trans s115 s819) +(trans s115 s832) +(trans s116 s813) +(trans s116 s826) +(trans s116 s839) +(trans s117 s820) +(trans s117 s833) +(trans s117 s846) +(trans s118 s827) +(trans s118 s840) +(trans s118 s853) +(trans s119 s834) +(trans s119 s847) +(trans s119 s860) +(trans s120 s841) +(trans s120 s854) +(trans s120 s867) +(trans s121 s848) +(trans s121 s861) +(trans s121 s874) +(trans s122 s855) +(trans s122 s868) +(trans s122 s881) +(trans s123 s862) +(trans s123 s875) +(trans s123 s888) +(trans s124 s869) +(trans s124 s882) +(trans s124 s895) +(trans s125 s876) +(trans s125 s889) +(trans s125 s902) +(trans s126 s883) +(trans s126 s896) +(trans s126 s909) +(trans s127 s890) +(trans s127 s903) +(trans s127 s916) +(trans s128 s897) +(trans s128 s910) +(trans s128 s923) +(trans s129 s904) +(trans s129 s917) +(trans s129 s930) +(trans s130 s911) +(trans s130 s924) +(trans s130 s937) +(trans s131 s918) +(trans s131 s931) +(trans s131 s944) +(trans s132 s925) +(trans s132 s938) +(trans s132 s951) +(trans s133 s932) +(trans s133 s945) +(trans s133 s958) +(trans s134 s939) +(trans s134 s952) +(trans s134 s965) +(trans s135 s946) +(trans s135 s959) +(trans s135 s972) +(trans s136 s953) +(trans s136 s966) +(trans s136 s979) +(trans s137 s960) +(trans s137 s973) +(trans s137 s986) +(trans s138 s967) +(trans s138 s980) +(trans s138 s993) +(trans s139 s974) +(trans s139 s987) +(trans s139 s1000) +(trans s140 s981) +(trans s140 s994) +(trans s140 s1007) +(trans s141 s988) +(trans s141 s1001) +(trans s141 s1014) +(trans s142 s995) +(trans s142 s1008) +(trans s142 s1021) +(trans s143 s1002) +(trans s143 s1015) +(trans s143 s1028) +(trans s144 s1009) +(trans s144 s1022) +(trans s144 s1035) +(trans s145 s1016) +(trans s145 s1029) +(trans s145 s1042) +(trans s146 s1023) +(trans s146 s1036) +(trans s146 s1049) +(trans s147 s1030) +(trans s147 s1043) +(trans s147 s1056) +(trans s148 s1037) +(trans s148 s1050) +(trans s148 s1063) +(trans s149 s1044) +(trans s149 s1057) +(trans s149 s1070) +(trans s150 s1051) +(trans s150 s1064) +(trans s150 s1077) +(trans s151 s1058) +(trans s151 s1071) +(trans s151 s1084) +(trans s152 s1065) +(trans s152 s1078) +(trans s152 s1091) +(trans s153 s1072) +(trans s153 s1085) +(trans s153 s1098) +(trans s154 s1079) +(trans s154 s1092) +(trans s154 s1105) +(trans s155 s1086) +(trans s155 s1099) +(trans s155 s1112) +(trans s156 s1093) +(trans s156 s1106) +(trans s156 s1119) +(trans s157 s1100) +(trans s157 s1113) +(trans s157 s1126) +(trans s158 s1107) +(trans s158 s1120) +(trans s158 s1133) +(trans s159 s1114) +(trans s159 s1127) +(trans s159 s1140) +(trans s160 s1121) +(trans s160 s1134) +(trans s160 s1147) +(trans s161 s1128) +(trans s161 s1141) +(trans s161 s1154) +(trans s162 s1135) +(trans s162 s1148) +(trans s162 s1161) +(trans s163 s1142) +(trans s163 s1155) +(trans s163 s1168) +(trans s164 s1149) +(trans s164 s1162) +(trans s164 s1175) +(trans s165 s1156) +(trans s165 s1169) +(trans s165 s1182) +(trans s166 s1163) +(trans s166 s1176) +(trans s166 s1189) +(trans s167 s1170) +(trans s167 s1183) +(trans s167 s1196) +(trans s168 s1177) +(trans s168 s1190) +(trans s168 s1203) +(trans s169 s1184) +(trans s169 s1197) +(trans s169 s1210) +(trans s170 s1191) +(trans s170 s1204) +(trans s170 s1217) +(trans s171 s1198) +(trans s171 s1211) +(trans s171 s1224) +(trans s172 s1205) +(trans s172 s1218) +(trans s172 s1231) +(trans s173 s1212) +(trans s173 s1225) +(trans s173 s1238) +(trans s174 s1219) +(trans s174 s1232) +(trans s174 s1245) +(trans s175 s1226) +(trans s175 s1239) +(trans s175 s1252) +(trans s176 s1233) +(trans s176 s1246) +(trans s176 s1259) +(trans s177 s1240) +(trans s177 s1253) +(trans s177 s1266) +(trans s178 s1247) +(trans s178 s1260) +(trans s178 s1273) +(trans s179 s1254) +(trans s179 s1267) +(trans s179 s1280) +(trans s180 s1261) +(trans s180 s1274) +(trans s180 s1287) +(trans s181 s1268) +(trans s181 s1281) +(trans s181 s1294) +(trans s182 s1275) +(trans s182 s1288) +(trans s182 s1301) +(trans s183 s1282) +(trans s183 s1295) +(trans s183 s1308) +(trans s184 s1289) +(trans s184 s1302) +(trans s184 s1315) +(trans s185 s1296) +(trans s185 s1309) +(trans s185 s1322) +(trans s186 s1303) +(trans s186 s1316) +(trans s186 s1329) +(trans s187 s1310) +(trans s187 s1323) +(trans s187 s1336) +(trans s188 s1317) +(trans s188 s1330) +(trans s188 s1343) +(trans s189 s1324) +(trans s189 s1337) +(trans s189 s1350) +(trans s190 s1331) +(trans s190 s1344) +(trans s190 s1357) +(trans s191 s1338) +(trans s191 s1351) +(trans s191 s1364) +(trans s192 s1345) +(trans s192 s1358) +(trans s192 s1371) +(trans s193 s1352) +(trans s193 s1365) +(trans s193 s1378) +(trans s194 s1359) +(trans s194 s1372) +(trans s194 s1385) +(trans s195 s1366) +(trans s195 s1379) +(trans s195 s1392) +(trans s196 s1373) +(trans s196 s1386) +(trans s196 s1399) +(trans s197 s1380) +(trans s197 s1393) +(trans s197 s1406) +(trans s198 s1387) +(trans s198 s1400) +(trans s198 s1413) +(trans s199 s1394) +(trans s199 s1407) +(trans s199 s1420) +(trans s200 s1401) +(trans s200 s1414) +(trans s200 s1427) +(trans s201 s1408) +(trans s201 s1421) +(trans s201 s1434) +(trans s202 s1415) +(trans s202 s1428) +(trans s202 s1441) +(trans s203 s1422) +(trans s203 s1435) +(trans s203 s1448) +(trans s204 s1429) +(trans s204 s1442) +(trans s204 s1455) +(trans s205 s1436) +(trans s205 s1449) +(trans s205 s1462) +(trans s206 s1443) +(trans s206 s1456) +(trans s206 s1469) +(trans s207 s1450) +(trans s207 s1463) +(trans s207 s1476) +(trans s208 s1457) +(trans s208 s1470) +(trans s208 s1483) +(trans s209 s1464) +(trans s209 s1477) +(trans s209 s1490) +(trans s210 s1471) +(trans s210 s1484) +(trans s210 s1497) +(trans s211 s1478) +(trans s211 s1491) +(trans s211 s1504) +(trans s212 s1485) +(trans s212 s1498) +(trans s212 s1511) +(trans s213 s1492) +(trans s213 s1505) +(trans s213 s1518) +(trans s214 s1499) +(trans s214 s1512) +(trans s214 s1525) +(trans s215 s1506) +(trans s215 s1519) +(trans s215 s1532) +(trans s216 s1513) +(trans s216 s1526) +(trans s216 s1539) +(trans s217 s1520) +(trans s217 s1533) +(trans s217 s1546) +(trans s218 s1527) +(trans s218 s1540) +(trans s218 s1553) +(trans s219 s1534) +(trans s219 s1547) +(trans s219 s1560) +(trans s220 s1541) +(trans s220 s1554) +(trans s220 s1567) +(trans s221 s1548) +(trans s221 s1561) +(trans s221 s1574) +(trans s222 s1555) +(trans s222 s1568) +(trans s222 s1581) +(trans s223 s1562) +(trans s223 s1575) +(trans s223 s1588) +(trans s224 s1569) +(trans s224 s1582) +(trans s224 s1595) +(trans s225 s1576) +(trans s225 s1589) +(trans s225 s1602) +(trans s226 s1583) +(trans s226 s1596) +(trans s226 s1609) +(trans s227 s1590) +(trans s227 s1603) +(trans s227 s1616) +(trans s228 s1597) +(trans s228 s1610) +(trans s228 s1623) +(trans s229 s1604) +(trans s229 s1617) +(trans s229 s1630) +(trans s230 s1611) +(trans s230 s1624) +(trans s230 s1637) +(trans s231 s1618) +(trans s231 s1631) +(trans s231 s1644) +(trans s232 s1625) +(trans s232 s1638) +(trans s232 s1651) +(trans s233 s1632) +(trans s233 s1645) +(trans s233 s1658) +(trans s234 s1639) +(trans s234 s1652) +(trans s234 s1665) +(trans s235 s1646) +(trans s235 s1659) +(trans s235 s1672) +(trans s236 s1653) +(trans s236 s1666) +(trans s236 s1679) +(trans s237 s1660) +(trans s237 s1673) +(trans s237 s1686) +(trans s238 s1667) +(trans s238 s1680) +(trans s238 s1693) +(trans s239 s1674) +(trans s239 s1687) +(trans s239 s1700) +(trans s240 s1681) +(trans s240 s1694) +(trans s240 s1707) +(trans s241 s1688) +(trans s241 s1701) +(trans s241 s1714) +(trans s242 s1695) +(trans s242 s1708) +(trans s242 s1721) +(trans s243 s1702) +(trans s243 s1715) +(trans s243 s1728) +(trans s244 s1709) +(trans s244 s1722) +(trans s244 s1735) +(trans s245 s1716) +(trans s245 s1729) +(trans s245 s1742) +(trans s246 s1723) +(trans s246 s1736) +(trans s246 s1749) +(trans s247 s1730) +(trans s247 s1743) +(trans s247 s1756) +(trans s248 s1737) +(trans s248 s1750) +(trans s248 s1763) +(trans s249 s1744) +(trans s249 s1757) +(trans s249 s1770) +(trans s250 s1751) +(trans s250 s1764) +(trans s250 s1777) +(trans s251 s1758) +(trans s251 s1771) +(trans s251 s1784) +(trans s252 s1765) +(trans s252 s1778) +(trans s252 s1791) +(trans s253 s1772) +(trans s253 s1785) +(trans s253 s1798) +(trans s254 s1779) +(trans s254 s1792) +(trans s254 s1805) +(trans s255 s1786) +(trans s255 s1799) +(trans s255 s1812) +(trans s256 s1793) +(trans s256 s1806) +(trans s256 s1819) +(trans s257 s1800) +(trans s257 s1813) +(trans s257 s1826) +(trans s258 s1807) +(trans s258 s1820) +(trans s258 s1833) +(trans s259 s1814) +(trans s259 s1827) +(trans s259 s1840) +(trans s260 s1821) +(trans s260 s1834) +(trans s260 s1847) +(trans s261 s1828) +(trans s261 s1841) +(trans s261 s1854) +(trans s262 s1835) +(trans s262 s1848) +(trans s262 s1861) +(trans s263 s1842) +(trans s263 s1855) +(trans s263 s1868) +(trans s264 s1849) +(trans s264 s1862) +(trans s264 s1875) +(trans s265 s1856) +(trans s265 s1869) +(trans s265 s1882) +(trans s266 s1863) +(trans s266 s1876) +(trans s266 s1889) +(trans s267 s1870) +(trans s267 s1883) +(trans s267 s1896) +(trans s268 s1877) +(trans s268 s1890) +(trans s268 s1903) +(trans s269 s1884) +(trans s269 s1897) +(trans s269 s1910) +(trans s270 s1891) +(trans s270 s1904) +(trans s270 s1917) +(trans s271 s1898) +(trans s271 s1911) +(trans s271 s1924) +(trans s272 s1905) +(trans s272 s1918) +(trans s272 s1931) +(trans s273 s1912) +(trans s273 s1925) +(trans s273 s1938) +(trans s274 s1919) +(trans s274 s1932) +(trans s274 s1945) +(trans s275 s1926) +(trans s275 s1939) +(trans s275 s1952) +(trans s276 s1933) +(trans s276 s1946) +(trans s276 s1959) +(trans s277 s1940) +(trans s277 s1953) +(trans s277 s1966) +(trans s278 s1947) +(trans s278 s1960) +(trans s278 s1973) +(trans s279 s1954) +(trans s279 s1967) +(trans s279 s1980) +(trans s280 s1961) +(trans s280 s1974) +(trans s280 s1987) +(trans s281 s1968) +(trans s281 s1981) +(trans s281 s1994) +(trans s282 s1975) +(trans s282 s1988) +(trans s282 s2001) +(trans s283 s1982) +(trans s283 s1995) +(trans s283 s2008) +(trans s284 s1989) +(trans s284 s2002) +(trans s284 s2015) +(trans s285 s1996) +(trans s285 s2009) +(trans s285 s2022) +(trans s286 s2003) +(trans s286 s2016) +(trans s286 s2029) +(trans s287 s2010) +(trans s287 s2023) +(trans s287 s2036) +(trans s288 s2017) +(trans s288 s2030) +(trans s288 s2043) +(trans s289 s2024) +(trans s289 s2037) +(trans s289 s2050) +(trans s290 s2031) +(trans s290 s2044) +(trans s290 s2057) +(trans s291 s2038) +(trans s291 s2051) +(trans s291 s2064) +(trans s292 s2045) +(trans s292 s2058) +(trans s292 s2071) +(trans s293 s2052) +(trans s293 s2065) +(trans s293 s2078) +(trans s294 s2059) +(trans s294 s2072) +(trans s294 s2085) +(trans s295 s2066) +(trans s295 s2079) +(trans s295 s2092) +(trans s296 s2073) +(trans s296 s2086) +(trans s296 s2099) +(trans s297 s2080) +(trans s297 s2093) +(trans s297 s2106) +(trans s298 s2087) +(trans s298 s2100) +(trans s298 s2113) +(trans s299 s2094) +(trans s299 s2107) +(trans s299 s2120) +(trans s300 s2101) +(trans s300 s2114) +(trans s300 s2127) +(trans s301 s2108) +(trans s301 s2121) +(trans s301 s2134) +(trans s302 s2115) +(trans s302 s2128) +(trans s302 s2141) +(trans s303 s2122) +(trans s303 s2135) +(trans s303 s2148) +(trans s304 s2129) +(trans s304 s2142) +(trans s304 s2155) +(trans s305 s2136) +(trans s305 s2149) +(trans s305 s2162) +(trans s306 s2143) +(trans s306 s2156) +(trans s306 s2169) +(trans s307 s2150) +(trans s307 s2163) +(trans s307 s2176) +(trans s308 s2157) +(trans s308 s2170) +(trans s308 s2183) +(trans s309 s2164) +(trans s309 s2177) +(trans s309 s2190) +(trans s310 s2171) +(trans s310 s2184) +(trans s310 s2197) +(trans s311 s2178) +(trans s311 s2191) +(trans s311 s2204) +(trans s312 s2185) +(trans s312 s2198) +(trans s312 s2211) +(trans s313 s2192) +(trans s313 s2205) +(trans s313 s2218) +(trans s314 s2199) +(trans s314 s2212) +(trans s314 s2225) +(trans s315 s2206) +(trans s315 s2219) +(trans s315 s2232) +(trans s316 s2213) +(trans s316 s2226) +(trans s316 s2239) +(trans s317 s2220) +(trans s317 s2233) +(trans s317 s2246) +(trans s318 s2227) +(trans s318 s2240) +(trans s318 s2253) +(trans s319 s2234) +(trans s319 s2247) +(trans s319 s2260) +(trans s320 s2241) +(trans s320 s2254) +(trans s320 s2267) +(trans s321 s2248) +(trans s321 s2261) +(trans s321 s2274) +(trans s322 s2255) +(trans s322 s2268) +(trans s322 s2281) +(trans s323 s2262) +(trans s323 s2275) +(trans s323 s2288) +(trans s324 s2269) +(trans s324 s2282) +(trans s324 s2295) +(trans s325 s2276) +(trans s325 s2289) +(trans s325 s2302) +(trans s326 s2283) +(trans s326 s2296) +(trans s326 s2309) +(trans s327 s2290) +(trans s327 s2303) +(trans s327 s2316) +(trans s328 s2297) +(trans s328 s2310) +(trans s328 s2323) +(trans s329 s2304) +(trans s329 s2317) +(trans s329 s2330) +(trans s330 s2311) +(trans s330 s2324) +(trans s330 s2337) +(trans s331 s2318) +(trans s331 s2331) +(trans s331 s2344) +(trans s332 s2325) +(trans s332 s2338) +(trans s332 s2351) +(trans s333 s2332) +(trans s333 s2345) +(trans s333 s2358) +(trans s334 s2339) +(trans s334 s2352) +(trans s334 s2365) +(trans s335 s2346) +(trans s335 s2359) +(trans s335 s2372) +(trans s336 s2353) +(trans s336 s2366) +(trans s336 s2379) +(trans s337 s2360) +(trans s337 s2373) +(trans s337 s2386) +(trans s338 s2367) +(trans s338 s2380) +(trans s338 s2393) +(trans s339 s2374) +(trans s339 s2387) +(trans s339 s2400) +(trans s340 s2381) +(trans s340 s2394) +(trans s340 s2407) +(trans s341 s2388) +(trans s341 s2401) +(trans s341 s2414) +(trans s342 s2395) +(trans s342 s2408) +(trans s342 s2421) +(trans s343 s2402) +(trans s343 s2415) +(trans s343 s2428) +(trans s344 s2409) +(trans s344 s2422) +(trans s344 s2435) +(trans s345 s2416) +(trans s345 s2429) +(trans s345 s2442) +(trans s346 s2423) +(trans s346 s2436) +(trans s346 s2449) +(trans s347 s2430) +(trans s347 s2443) +(trans s347 s2456) +(trans s348 s2437) +(trans s348 s2450) +(trans s348 s2463) +(trans s349 s2444) +(trans s349 s2457) +(trans s349 s2470) +(trans s350 s2451) +(trans s350 s2464) +(trans s350 s2477) +(trans s351 s2458) +(trans s351 s2471) +(trans s351 s2484) +(trans s352 s2465) +(trans s352 s2478) +(trans s352 s2491) +(trans s353 s2472) +(trans s353 s2485) +(trans s353 s2498) +(trans s354 s2479) +(trans s354 s2492) +(trans s354 s2505) +(trans s355 s2486) +(trans s355 s2499) +(trans s355 s2512) +(trans s356 s2493) +(trans s356 s2506) +(trans s356 s2519) +(trans s357 s2500) +(trans s357 s2513) +(trans s357 s2526) +(trans s358 s2507) +(trans s358 s2520) +(trans s358 s2533) +(trans s359 s2514) +(trans s359 s2527) +(trans s359 s2540) +(trans s360 s2521) +(trans s360 s2534) +(trans s360 s2547) +(trans s361 s2528) +(trans s361 s2541) +(trans s361 s2554) +(trans s362 s2535) +(trans s362 s2548) +(trans s362 s2561) +(trans s363 s2542) +(trans s363 s2555) +(trans s363 s2568) +(trans s364 s2549) +(trans s364 s2562) +(trans s364 s2575) +(trans s365 s2556) +(trans s365 s2569) +(trans s365 s2582) +(trans s366 s2563) +(trans s366 s2576) +(trans s366 s2589) +(trans s367 s2570) +(trans s367 s2583) +(trans s367 s2596) +(trans s368 s2577) +(trans s368 s2590) +(trans s368 s2603) +(trans s369 s2584) +(trans s369 s2597) +(trans s369 s2610) +(trans s370 s2591) +(trans s370 s2604) +(trans s370 s2617) +(trans s371 s2598) +(trans s371 s2611) +(trans s371 s2624) +(trans s372 s2605) +(trans s372 s2618) +(trans s372 s2631) +(trans s373 s2612) +(trans s373 s2625) +(trans s373 s2638) +(trans s374 s2619) +(trans s374 s2632) +(trans s374 s2645) +(trans s375 s2626) +(trans s375 s2639) +(trans s375 s2652) +(trans s376 s2633) +(trans s376 s2646) +(trans s376 s2659) +(trans s377 s2640) +(trans s377 s2653) +(trans s377 s2666) +(trans s378 s2647) +(trans s378 s2660) +(trans s378 s2673) +(trans s379 s2654) +(trans s379 s2667) +(trans s379 s2680) +(trans s380 s2661) +(trans s380 s2674) +(trans s380 s2687) +(trans s381 s2668) +(trans s381 s2681) +(trans s381 s2694) +(trans s382 s2675) +(trans s382 s2688) +(trans s382 s2701) +(trans s383 s2682) +(trans s383 s2695) +(trans s383 s2708) +(trans s384 s2689) +(trans s384 s2702) +(trans s384 s2715) +(trans s385 s2696) +(trans s385 s2709) +(trans s385 s2722) +(trans s386 s2703) +(trans s386 s2716) +(trans s386 s2729) +(trans s387 s2710) +(trans s387 s2723) +(trans s387 s2736) +(trans s388 s2717) +(trans s388 s2730) +(trans s388 s2743) +(trans s389 s2724) +(trans s389 s2737) +(trans s389 s2750) +(trans s390 s2731) +(trans s390 s2744) +(trans s390 s2757) +(trans s391 s2738) +(trans s391 s2751) +(trans s391 s2764) +(trans s392 s2745) +(trans s392 s2758) +(trans s392 s2771) +(trans s393 s2752) +(trans s393 s2765) +(trans s393 s2778) +(trans s394 s2759) +(trans s394 s2772) +(trans s394 s2785) +(trans s395 s2766) +(trans s395 s2779) +(trans s395 s2792) +(trans s396 s2773) +(trans s396 s2786) +(trans s396 s2799) +(trans s397 s2780) +(trans s397 s2793) +(trans s397 s2806) +(trans s398 s2787) +(trans s398 s2800) +(trans s398 s2813) +(trans s399 s2794) +(trans s399 s2807) +(trans s399 s2820) +(trans s400 s2801) +(trans s400 s2814) +(trans s400 s2827) +(trans s401 s2808) +(trans s401 s2821) +(trans s401 s2834) +(trans s402 s2815) +(trans s402 s2828) +(trans s402 s2841) +(trans s403 s2822) +(trans s403 s2835) +(trans s403 s2848) +(trans s404 s2829) +(trans s404 s2842) +(trans s404 s2855) +(trans s405 s2836) +(trans s405 s2849) +(trans s405 s2862) +(trans s406 s2843) +(trans s406 s2856) +(trans s406 s2869) +(trans s407 s2850) +(trans s407 s2863) +(trans s407 s2876) +(trans s408 s2857) +(trans s408 s2870) +(trans s408 s2883) +(trans s409 s2864) +(trans s409 s2877) +(trans s409 s2890) +(trans s410 s2871) +(trans s410 s2884) +(trans s410 s2897) +(trans s411 s2878) +(trans s411 s2891) +(trans s411 s2904) +(trans s412 s2885) +(trans s412 s2898) +(trans s412 s2911) +(trans s413 s2892) +(trans s413 s2905) +(trans s413 s2918) +(trans s414 s2899) +(trans s414 s2912) +(trans s414 s2925) +(trans s415 s2906) +(trans s415 s2919) +(trans s415 s2932) +(trans s416 s2913) +(trans s416 s2926) +(trans s416 s2939) +(trans s417 s2920) +(trans s417 s2933) +(trans s417 s2946) +(trans s418 s2927) +(trans s418 s2940) +(trans s418 s2953) +(trans s419 s2934) +(trans s419 s2947) +(trans s419 s2960) +(trans s420 s2941) +(trans s420 s2954) +(trans s420 s2967) +(trans s421 s2948) +(trans s421 s2961) +(trans s421 s2974) +(trans s422 s2955) +(trans s422 s2968) +(trans s422 s2981) +(trans s423 s2962) +(trans s423 s2975) +(trans s423 s2988) +(trans s424 s2969) +(trans s424 s2982) +(trans s424 s2995) +(trans s425 s2976) +(trans s425 s2989) +(trans s425 s3002) +(trans s426 s2983) +(trans s426 s2996) +(trans s426 s3009) +(trans s427 s2990) +(trans s427 s3003) +(trans s427 s3016) +(trans s428 s2997) +(trans s428 s3010) +(trans s428 s3023) +(trans s429 s3004) +(trans s429 s3017) +(trans s429 s3030) +(trans s430 s3011) +(trans s430 s3024) +(trans s430 s3037) +(trans s431 s3018) +(trans s431 s3031) +(trans s431 s3044) +(trans s432 s3025) +(trans s432 s3038) +(trans s432 s3051) +(trans s433 s3032) +(trans s433 s3045) +(trans s433 s3058) +(trans s434 s3039) +(trans s434 s3052) +(trans s434 s3065) +(trans s435 s3046) +(trans s435 s3059) +(trans s435 s3072) +(trans s436 s3053) +(trans s436 s3066) +(trans s436 s3079) +(trans s437 s3060) +(trans s437 s3073) +(trans s437 s3086) +(trans s438 s3067) +(trans s438 s3080) +(trans s438 s3093) +(trans s439 s3074) +(trans s439 s3087) +(trans s439 s3100) +(trans s440 s3081) +(trans s440 s3094) +(trans s440 s3107) +(trans s441 s3088) +(trans s441 s3101) +(trans s441 s3114) +(trans s442 s3095) +(trans s442 s3108) +(trans s442 s3121) +(trans s443 s3102) +(trans s443 s3115) +(trans s443 s3128) +(trans s444 s3109) +(trans s444 s3122) +(trans s444 s3135) +(trans s445 s3116) +(trans s445 s3129) +(trans s445 s3142) +(trans s446 s3123) +(trans s446 s3136) +(trans s446 s3149) +(trans s447 s3130) +(trans s447 s3143) +(trans s447 s3156) +(trans s448 s3137) +(trans s448 s3150) +(trans s448 s3163) +(trans s449 s3144) +(trans s449 s3157) +(trans s449 s3170) +(trans s450 s3151) +(trans s450 s3164) +(trans s450 s3177) +(trans s451 s3158) +(trans s451 s3171) +(trans s451 s3184) +(trans s452 s3165) +(trans s452 s3178) +(trans s452 s3191) +(trans s453 s3172) +(trans s453 s3185) +(trans s453 s3198) +(trans s454 s3179) +(trans s454 s3192) +(trans s454 s3205) +(trans s455 s3186) +(trans s455 s3199) +(trans s455 s3212) +(trans s456 s3193) +(trans s456 s3206) +(trans s456 s3219) +(trans s457 s3200) +(trans s457 s3213) +(trans s457 s3226) +(trans s458 s3207) +(trans s458 s3220) +(trans s458 s3233) +(trans s459 s3214) +(trans s459 s3227) +(trans s459 s3240) +(trans s460 s3221) +(trans s460 s3234) +(trans s460 s3247) +(trans s461 s3228) +(trans s461 s3241) +(trans s461 s3254) +(trans s462 s3235) +(trans s462 s3248) +(trans s462 s3261) +(trans s463 s3242) +(trans s463 s3255) +(trans s463 s3268) +(trans s464 s3249) +(trans s464 s3262) +(trans s464 s3275) +(trans s465 s3256) +(trans s465 s3269) +(trans s465 s3282) +(trans s466 s3263) +(trans s466 s3276) +(trans s466 s3289) +(trans s467 s3270) +(trans s467 s3283) +(trans s467 s3296) +(trans s468 s3277) +(trans s468 s3290) +(trans s468 s3303) +(trans s469 s3284) +(trans s469 s3297) +(trans s469 s3310) +(trans s470 s3291) +(trans s470 s3304) +(trans s470 s3317) +(trans s471 s3298) +(trans s471 s3311) +(trans s471 s3324) +(trans s472 s3305) +(trans s472 s3318) +(trans s472 s3331) +(trans s473 s3312) +(trans s473 s3325) +(trans s473 s3338) +(trans s474 s3319) +(trans s474 s3332) +(trans s474 s3345) +(trans s475 s3326) +(trans s475 s3339) +(trans s475 s3352) +(trans s476 s3333) +(trans s476 s3346) +(trans s476 s3359) +(trans s477 s3340) +(trans s477 s3353) +(trans s477 s3366) +(trans s478 s3347) +(trans s478 s3360) +(trans s478 s3373) +(trans s479 s3354) +(trans s479 s3367) +(trans s479 s3380) +(trans s480 s3361) +(trans s480 s3374) +(trans s480 s3387) +(trans s481 s3368) +(trans s481 s3381) +(trans s481 s3394) +(trans s482 s3375) +(trans s482 s3388) +(trans s482 s3401) +(trans s483 s3382) +(trans s483 s3395) +(trans s483 s3408) +(trans s484 s3389) +(trans s484 s3402) +(trans s484 s3415) +(trans s485 s3396) +(trans s485 s3409) +(trans s485 s3422) +(trans s486 s3403) +(trans s486 s3416) +(trans s486 s3429) +(trans s487 s3410) +(trans s487 s3423) +(trans s487 s3436) +(trans s488 s3417) +(trans s488 s3430) +(trans s488 s3443) +(trans s489 s3424) +(trans s489 s3437) +(trans s489 s3450) +(trans s490 s3431) +(trans s490 s3444) +(trans s490 s3457) +(trans s491 s3438) +(trans s491 s3451) +(trans s491 s3464) +(trans s492 s3445) +(trans s492 s3458) +(trans s492 s3471) +(trans s493 s3452) +(trans s493 s3465) +(trans s493 s3478) +(trans s494 s3459) +(trans s494 s3472) +(trans s494 s3485) +(trans s495 s3466) +(trans s495 s3479) +(trans s495 s3492) +(trans s496 s3473) +(trans s496 s3486) +(trans s496 s3499) +(trans s497 s3480) +(trans s497 s3493) +(trans s497 s3506) +(trans s498 s3487) +(trans s498 s3500) +(trans s498 s3513) +(trans s499 s3494) +(trans s499 s3507) +(trans s499 s3520) +(trans s500 s3501) +(trans s500 s3514) +(trans s500 s3527) +(trans s501 s3508) +(trans s501 s3521) +(trans s501 s3534) +(trans s502 s3515) +(trans s502 s3528) +(trans s502 s3541) +(trans s503 s3522) +(trans s503 s3535) +(trans s503 s3548) +(trans s504 s3529) +(trans s504 s3542) +(trans s504 s3555) +(trans s505 s3536) +(trans s505 s3549) +(trans s505 s3562) +(trans s506 s3543) +(trans s506 s3556) +(trans s506 s3569) +(trans s507 s3550) +(trans s507 s3563) +(trans s507 s3576) +(trans s508 s3557) +(trans s508 s3570) +(trans s508 s3583) +(trans s509 s3564) +(trans s509 s3577) +(trans s509 s3590) +(trans s510 s3571) +(trans s510 s3584) +(trans s510 s3597) +(trans s511 s3578) +(trans s511 s3591) +(trans s511 s3604) +(trans s512 s3585) +(trans s512 s3598) +(trans s512 s3611) +(trans s513 s3592) +(trans s513 s3605) +(trans s513 s3618) +(trans s514 s3599) +(trans s514 s3612) +(trans s514 s3625) +(trans s515 s3606) +(trans s515 s3619) +(trans s515 s3632) +(trans s516 s3613) +(trans s516 s3626) +(trans s516 s3639) +(trans s517 s3620) +(trans s517 s3633) +(trans s517 s3646) +(trans s518 s3627) +(trans s518 s3640) +(trans s518 s3653) +(trans s519 s3634) +(trans s519 s3647) +(trans s519 s3660) +(trans s520 s3641) +(trans s520 s3654) +(trans s520 s3667) +(trans s521 s3648) +(trans s521 s3661) +(trans s521 s3674) +(trans s522 s3655) +(trans s522 s3668) +(trans s522 s3681) +(trans s523 s3662) +(trans s523 s3675) +(trans s523 s3688) +(trans s524 s3669) +(trans s524 s3682) +(trans s524 s3695) +(trans s525 s3676) +(trans s525 s3689) +(trans s525 s3702) +(trans s526 s3683) +(trans s526 s3696) +(trans s526 s3709) +(trans s527 s3690) +(trans s527 s3703) +(trans s527 s3716) +(trans s528 s3697) +(trans s528 s3710) +(trans s528 s3723) +(trans s529 s3704) +(trans s529 s3717) +(trans s529 s3730) +(trans s530 s3711) +(trans s530 s3724) +(trans s530 s3737) +(trans s531 s3718) +(trans s531 s3731) +(trans s531 s3744) +(trans s532 s3725) +(trans s532 s3738) +(trans s532 s3751) +(trans s533 s3732) +(trans s533 s3745) +(trans s533 s3758) +(trans s534 s3739) +(trans s534 s3752) +(trans s534 s3765) +(trans s535 s3746) +(trans s535 s3759) +(trans s535 s3772) +(trans s536 s3753) +(trans s536 s3766) +(trans s536 s3779) +(trans s537 s3760) +(trans s537 s3773) +(trans s537 s3786) +(trans s538 s3767) +(trans s538 s3780) +(trans s538 s3793) +(trans s539 s3774) +(trans s539 s3787) +(trans s539 s3800) +(trans s540 s3781) +(trans s540 s3794) +(trans s540 s3807) +(trans s541 s3788) +(trans s541 s3801) +(trans s541 s3814) +(trans s542 s3795) +(trans s542 s3808) +(trans s542 s3821) +(trans s543 s3802) +(trans s543 s3815) +(trans s543 s3828) +(trans s544 s3809) +(trans s544 s3822) +(trans s544 s3835) +(trans s545 s3816) +(trans s545 s3829) +(trans s545 s3842) +(trans s546 s3823) +(trans s546 s3836) +(trans s546 s3849) +(trans s547 s3830) +(trans s547 s3843) +(trans s547 s3856) +(trans s548 s3837) +(trans s548 s3850) +(trans s548 s3863) +(trans s549 s3844) +(trans s549 s3857) +(trans s549 s3870) +(trans s550 s3851) +(trans s550 s3864) +(trans s550 s3877) +(trans s551 s3858) +(trans s551 s3871) +(trans s551 s3884) +(trans s552 s3865) +(trans s552 s3878) +(trans s552 s3891) +(trans s553 s3872) +(trans s553 s3885) +(trans s553 s3898) +(trans s554 s3879) +(trans s554 s3892) +(trans s554 s3905) +(trans s555 s3886) +(trans s555 s3899) +(trans s555 s3912) +(trans s556 s3893) +(trans s556 s3906) +(trans s556 s3919) +(trans s557 s3900) +(trans s557 s3913) +(trans s557 s3926) +(trans s558 s3907) +(trans s558 s3920) +(trans s558 s3933) +(trans s559 s3914) +(trans s559 s3927) +(trans s559 s3940) +(trans s560 s3921) +(trans s560 s3934) +(trans s560 s3947) +(trans s561 s3928) +(trans s561 s3941) +(trans s561 s3954) +(trans s562 s3935) +(trans s562 s3948) +(trans s562 s3961) +(trans s563 s3942) +(trans s563 s3955) +(trans s563 s3968) +(trans s564 s3949) +(trans s564 s3962) +(trans s564 s3975) +(trans s565 s3956) +(trans s565 s3969) +(trans s565 s3982) +(trans s566 s3963) +(trans s566 s3976) +(trans s566 s3989) +(trans s567 s3970) +(trans s567 s3983) +(trans s567 s3996) +(trans s568 s3977) +(trans s568 s3990) +(trans s568 s4003) +(trans s569 s3984) +(trans s569 s3997) +(trans s569 s4010) +(trans s570 s3991) +(trans s570 s4004) +(trans s570 s4017) +(trans s571 s3998) +(trans s571 s4011) +(trans s571 s4024) +(trans s572 s4005) +(trans s572 s4018) +(trans s572 s4031) +(trans s573 s4012) +(trans s573 s4025) +(trans s573 s4038) +(trans s574 s4019) +(trans s574 s4032) +(trans s574 s4045) +(trans s575 s4026) +(trans s575 s4039) +(trans s575 s4052) +(trans s576 s4033) +(trans s576 s4046) +(trans s576 s4059) +(trans s577 s4040) +(trans s577 s4053) +(trans s577 s4066) +(trans s578 s4047) +(trans s578 s4060) +(trans s578 s4073) +(trans s579 s4054) +(trans s579 s4067) +(trans s579 s4080) +(trans s580 s4061) +(trans s580 s4074) +(trans s580 s4087) +(trans s581 s4068) +(trans s581 s4081) +(trans s581 s4094) +(trans s582 s4075) +(trans s582 s4088) +(trans s582 s4101) +(trans s583 s4082) +(trans s583 s4095) +(trans s583 s4108) +(trans s584 s4089) +(trans s584 s4102) +(trans s584 s4115) +(trans s585 s4096) +(trans s585 s4109) +(trans s585 s4122) +(trans s586 s4103) +(trans s586 s4116) +(trans s586 s4129) +(trans s587 s4110) +(trans s587 s4123) +(trans s587 s4136) +(trans s588 s4117) +(trans s588 s4130) +(trans s588 s4143) +(trans s589 s4124) +(trans s589 s4137) +(trans s589 s4150) +(trans s590 s4131) +(trans s590 s4144) +(trans s590 s4157) +(trans s591 s4138) +(trans s591 s4151) +(trans s591 s4164) +(trans s592 s4145) +(trans s592 s4158) +(trans s592 s4171) +(trans s593 s4152) +(trans s593 s4165) +(trans s593 s4178) +(trans s594 s4159) +(trans s594 s4172) +(trans s594 s4185) +(trans s595 s4166) +(trans s595 s4179) +(trans s595 s4192) +(trans s596 s4173) +(trans s596 s4186) +(trans s596 s4199) +(trans s597 s4180) +(trans s597 s4193) +(trans s597 s4206) +(trans s598 s4187) +(trans s598 s4200) +(trans s598 s4213) +(trans s599 s4194) +(trans s599 s4207) +(trans s599 s4220) +(trans s600 s4201) +(trans s600 s4214) +(trans s600 s4227) +(trans s601 s4208) +(trans s601 s4221) +(trans s601 s4234) +(trans s602 s4215) +(trans s602 s4228) +(trans s602 s4241) +(trans s603 s4222) +(trans s603 s4235) +(trans s603 s4248) +(trans s604 s4229) +(trans s604 s4242) +(trans s604 s4255) +(trans s605 s4236) +(trans s605 s4249) +(trans s605 s4262) +(trans s606 s4243) +(trans s606 s4256) +(trans s606 s4269) +(trans s607 s4250) +(trans s607 s4263) +(trans s607 s4276) +(trans s608 s4257) +(trans s608 s4270) +(trans s608 s4283) +(trans s609 s4264) +(trans s609 s4277) +(trans s609 s4290) +(trans s610 s4271) +(trans s610 s4284) +(trans s610 s4297) +(trans s611 s4278) +(trans s611 s4291) +(trans s611 s4304) +(trans s612 s4285) +(trans s612 s4298) +(trans s612 s4311) +(trans s613 s4292) +(trans s613 s4305) +(trans s613 s4318) +(trans s614 s4299) +(trans s614 s4312) +(trans s614 s4325) +(trans s615 s4306) +(trans s615 s4319) +(trans s615 s4332) +(trans s616 s4313) +(trans s616 s4326) +(trans s616 s4339) +(trans s617 s4320) +(trans s617 s4333) +(trans s617 s4346) +(trans s618 s4327) +(trans s618 s4340) +(trans s618 s4353) +(trans s619 s4334) +(trans s619 s4347) +(trans s619 s4360) +(trans s620 s4341) +(trans s620 s4354) +(trans s620 s4367) +(trans s621 s4348) +(trans s621 s4361) +(trans s621 s4374) +(trans s622 s4355) +(trans s622 s4368) +(trans s622 s4381) +(trans s623 s4362) +(trans s623 s4375) +(trans s623 s4388) +(trans s624 s4369) +(trans s624 s4382) +(trans s624 s4395) +(trans s625 s4376) +(trans s625 s4389) +(trans s625 s4402) +(trans s626 s4383) +(trans s626 s4396) +(trans s626 s4409) +(trans s627 s4390) +(trans s627 s4403) +(trans s627 s4416) +(trans s628 s4397) +(trans s628 s4410) +(trans s628 s4423) +(trans s629 s4404) +(trans s629 s4417) +(trans s629 s4430) +(trans s630 s4411) +(trans s630 s4424) +(trans s630 s4437) +(trans s631 s4418) +(trans s631 s4431) +(trans s631 s4444) +(trans s632 s4425) +(trans s632 s4438) +(trans s632 s4451) +(trans s633 s4432) +(trans s633 s4445) +(trans s633 s4458) +(trans s634 s4439) +(trans s634 s4452) +(trans s634 s4465) +(trans s635 s4446) +(trans s635 s4459) +(trans s635 s4472) +(trans s636 s4453) +(trans s636 s4466) +(trans s636 s4479) +(trans s637 s4460) +(trans s637 s4473) +(trans s637 s4486) +(trans s638 s4467) +(trans s638 s4480) +(trans s638 s4493) +(trans s639 s4474) +(trans s639 s4487) +(trans s639 s4500) +(trans s640 s4481) +(trans s640 s4494) +(trans s640 s4507) +(trans s641 s4488) +(trans s641 s4501) +(trans s641 s4514) +(trans s642 s4495) +(trans s642 s4508) +(trans s642 s4521) +(trans s643 s4502) +(trans s643 s4515) +(trans s643 s4528) +(trans s644 s4509) +(trans s644 s4522) +(trans s644 s4535) +(trans s645 s4516) +(trans s645 s4529) +(trans s645 s4542) +(trans s646 s4523) +(trans s646 s4536) +(trans s646 s4549) +(trans s647 s4530) +(trans s647 s4543) +(trans s647 s4556) +(trans s648 s4537) +(trans s648 s4550) +(trans s648 s4563) +(trans s649 s4544) +(trans s649 s4557) +(trans s649 s4570) +(trans s650 s4551) +(trans s650 s4564) +(trans s650 s4577) +(trans s651 s4558) +(trans s651 s4571) +(trans s651 s4584) +(trans s652 s4565) +(trans s652 s4578) +(trans s652 s4591) +(trans s653 s4572) +(trans s653 s4585) +(trans s653 s4598) +(trans s654 s4579) +(trans s654 s4592) +(trans s654 s4605) +(trans s655 s4586) +(trans s655 s4599) +(trans s655 s4612) +(trans s656 s4593) +(trans s656 s4606) +(trans s656 s4619) +(trans s657 s4600) +(trans s657 s4613) +(trans s657 s4626) +(trans s658 s4607) +(trans s658 s4620) +(trans s658 s4633) +(trans s659 s4614) +(trans s659 s4627) +(trans s659 s4640) +(trans s660 s4621) +(trans s660 s4634) +(trans s660 s4647) +(trans s661 s4628) +(trans s661 s4641) +(trans s661 s4654) +(trans s662 s4635) +(trans s662 s4648) +(trans s662 s4661) +(trans s663 s4642) +(trans s663 s4655) +(trans s663 s4668) +(trans s664 s4649) +(trans s664 s4662) +(trans s664 s4675) +(trans s665 s4656) +(trans s665 s4669) +(trans s665 s4682) +(trans s666 s4663) +(trans s666 s4676) +(trans s666 s4689) +(trans s667 s4670) +(trans s667 s4683) +(trans s667 s4696) +(trans s668 s4677) +(trans s668 s4690) +(trans s668 s4703) +(trans s669 s4684) +(trans s669 s4697) +(trans s669 s4710) +(trans s670 s4691) +(trans s670 s4704) +(trans s670 s4717) +(trans s671 s4698) +(trans s671 s4711) +(trans s671 s4724) +(trans s672 s4705) +(trans s672 s4718) +(trans s672 s4731) +(trans s673 s4712) +(trans s673 s4725) +(trans s673 s4738) +(trans s674 s4719) +(trans s674 s4732) +(trans s674 s4745) +(trans s675 s4726) +(trans s675 s4739) +(trans s675 s4752) +(trans s676 s4733) +(trans s676 s4746) +(trans s676 s4759) +(trans s677 s4740) +(trans s677 s4753) +(trans s677 s4766) +(trans s678 s4747) +(trans s678 s4760) +(trans s678 s4773) +(trans s679 s4754) +(trans s679 s4767) +(trans s679 s4780) +(trans s680 s4761) +(trans s680 s4774) +(trans s680 s4787) +(trans s681 s4768) +(trans s681 s4781) +(trans s681 s4794) +(trans s682 s4775) +(trans s682 s4788) +(trans s682 s4801) +(trans s683 s4782) +(trans s683 s4795) +(trans s683 s4808) +(trans s684 s4789) +(trans s684 s4802) +(trans s684 s4815) +(trans s685 s4796) +(trans s685 s4809) +(trans s685 s4822) +(trans s686 s4803) +(trans s686 s4816) +(trans s686 s4829) +(trans s687 s4810) +(trans s687 s4823) +(trans s687 s4836) +(trans s688 s4817) +(trans s688 s4830) +(trans s688 s4843) +(trans s689 s4824) +(trans s689 s4837) +(trans s689 s4850) +(trans s690 s4831) +(trans s690 s4844) +(trans s690 s4857) +(trans s691 s4838) +(trans s691 s4851) +(trans s691 s4864) +(trans s692 s4845) +(trans s692 s4858) +(trans s692 s4871) +(trans s693 s4852) +(trans s693 s4865) +(trans s693 s4878) +(trans s694 s4859) +(trans s694 s4872) +(trans s694 s4885) +(trans s695 s4866) +(trans s695 s4879) +(trans s695 s4892) +(trans s696 s4873) +(trans s696 s4886) +(trans s696 s4899) +(trans s697 s4880) +(trans s697 s4893) +(trans s697 s4906) +(trans s698 s4887) +(trans s698 s4900) +(trans s698 s4913) +(trans s699 s4894) +(trans s699 s4907) +(trans s699 s4920) +(trans s700 s4901) +(trans s700 s4914) +(trans s700 s4927) +(trans s701 s4908) +(trans s701 s4921) +(trans s701 s4934) +(trans s702 s4915) +(trans s702 s4928) +(trans s702 s4941) +(trans s703 s4922) +(trans s703 s4935) +(trans s703 s4948) +(trans s704 s4929) +(trans s704 s4942) +(trans s704 s4955) +(trans s705 s4936) +(trans s705 s4949) +(trans s705 s4962) +(trans s706 s4943) +(trans s706 s4956) +(trans s706 s4969) +(trans s707 s4950) +(trans s707 s4963) +(trans s707 s4976) +(trans s708 s4957) +(trans s708 s4970) +(trans s708 s4983) +(trans s709 s4964) +(trans s709 s4977) +(trans s709 s4990) +(trans s710 s4971) +(trans s710 s4984) +(trans s710 s4997) +(trans s711 s4978) +(trans s711 s4991) +(trans s711 s5004) +(trans s712 s4985) +(trans s712 s4998) +(trans s712 s5011) +(trans s713 s4992) +(trans s713 s5005) +(trans s713 s5018) +(trans s714 s4999) +(trans s714 s5012) +(trans s714 s5025) +(trans s715 s5006) +(trans s715 s5019) +(trans s715 s5032) +(trans s716 s5013) +(trans s716 s5026) +(trans s716 s5039) +(trans s717 s5020) +(trans s717 s5033) +(trans s717 s5046) +(trans s718 s5027) +(trans s718 s5040) +(trans s718 s5053) +(trans s719 s5034) +(trans s719 s5047) +(trans s719 s5060) +(trans s720 s5041) +(trans s720 s5054) +(trans s720 s5067) +(trans s721 s5048) +(trans s721 s5061) +(trans s721 s5074) +(trans s722 s5055) +(trans s722 s5068) +(trans s722 s5081) +(trans s723 s5062) +(trans s723 s5075) +(trans s723 s5088) +(trans s724 s5069) +(trans s724 s5082) +(trans s724 s5095) +(trans s725 s5076) +(trans s725 s5089) +(trans s725 s5102) +(trans s726 s5083) +(trans s726 s5096) +(trans s726 s5109) +(trans s727 s5090) +(trans s727 s5103) +(trans s727 s5116) +(trans s728 s5097) +(trans s728 s5110) +(trans s728 s5123) +(trans s729 s5104) +(trans s729 s5117) +(trans s729 s5130) +(trans s730 s5111) +(trans s730 s5124) +(trans s730 s5137) +(trans s731 s5118) +(trans s731 s5131) +(trans s731 s5144) +(trans s732 s5125) +(trans s732 s5138) +(trans s732 s5151) +(trans s733 s5132) +(trans s733 s5145) +(trans s733 s5158) +(trans s734 s5139) +(trans s734 s5152) +(trans s734 s5165) +(trans s735 s5146) +(trans s735 s5159) +(trans s735 s5172) +(trans s736 s5153) +(trans s736 s5166) +(trans s736 s5179) +(trans s737 s5160) +(trans s737 s5173) +(trans s737 s5186) +(trans s738 s5167) +(trans s738 s5180) +(trans s738 s5193) +(trans s739 s5174) +(trans s739 s5187) +(trans s739 s5200) +(trans s740 s5181) +(trans s740 s5194) +(trans s740 s5207) +(trans s741 s5188) +(trans s741 s5201) +(trans s741 s5214) +(trans s742 s5195) +(trans s742 s5208) +(trans s742 s5221) +(trans s743 s5202) +(trans s743 s5215) +(trans s743 s5228) +(trans s744 s5209) +(trans s744 s5222) +(trans s744 s5235) +(trans s745 s5216) +(trans s745 s5229) +(trans s745 s5242) +(trans s746 s5223) +(trans s746 s5236) +(trans s746 s5249) +(trans s747 s5230) +(trans s747 s5243) +(trans s747 s5256) +(trans s748 s5237) +(trans s748 s5250) +(trans s748 s5263) +(trans s749 s5244) +(trans s749 s5257) +(trans s749 s5270) +(trans s750 s5251) +(trans s750 s5264) +(trans s750 s5277) +(trans s751 s5258) +(trans s751 s5271) +(trans s751 s5284) +(trans s752 s5265) +(trans s752 s5278) +(trans s752 s5291) +(trans s753 s5272) +(trans s753 s5285) +(trans s753 s5298) +(trans s754 s5279) +(trans s754 s5292) +(trans s754 s5305) +(trans s755 s5286) +(trans s755 s5299) +(trans s755 s5312) +(trans s756 s5293) +(trans s756 s5306) +(trans s756 s5319) +(trans s757 s5300) +(trans s757 s5313) +(trans s757 s5326) +(trans s758 s5307) +(trans s758 s5320) +(trans s758 s5333) +(trans s759 s5314) +(trans s759 s5327) +(trans s759 s5340) +(trans s760 s5321) +(trans s760 s5334) +(trans s760 s5347) +(trans s761 s5328) +(trans s761 s5341) +(trans s761 s5354) +(trans s762 s5335) +(trans s762 s5348) +(trans s762 s5361) +(trans s763 s5342) +(trans s763 s5355) +(trans s763 s5368) +(trans s764 s5349) +(trans s764 s5362) +(trans s764 s5375) +(trans s765 s5356) +(trans s765 s5369) +(trans s765 s5382) +(trans s766 s5363) +(trans s766 s5376) +(trans s766 s5389) +(trans s767 s5370) +(trans s767 s5383) +(trans s767 s5396) +(trans s768 s5377) +(trans s768 s5390) +(trans s768 s5403) +(trans s769 s5384) +(trans s769 s5397) +(trans s769 s5410) +(trans s770 s5391) +(trans s770 s5404) +(trans s770 s5417) +(trans s771 s5398) +(trans s771 s5411) +(trans s771 s5424) +(trans s772 s5405) +(trans s772 s5418) +(trans s772 s5431) +(trans s773 s5412) +(trans s773 s5425) +(trans s773 s5438) +(trans s774 s5419) +(trans s774 s5432) +(trans s774 s5445) +(trans s775 s5426) +(trans s775 s5439) +(trans s775 s5452) +(trans s776 s5433) +(trans s776 s5446) +(trans s776 s5459) +(trans s777 s5440) +(trans s777 s5453) +(trans s777 s5466) +(trans s778 s5447) +(trans s778 s5460) +(trans s778 s5473) +(trans s779 s5454) +(trans s779 s5467) +(trans s779 s5480) +(trans s780 s5461) +(trans s780 s5474) +(trans s780 s5487) +(trans s781 s5468) +(trans s781 s5481) +(trans s781 s5494) +(trans s782 s5475) +(trans s782 s5488) +(trans s782 s5501) +(trans s783 s5482) +(trans s783 s5495) +(trans s783 s5508) +(trans s784 s5489) +(trans s784 s5502) +(trans s784 s5515) +(trans s785 s5496) +(trans s785 s5509) +(trans s785 s5522) +(trans s786 s5503) +(trans s786 s5516) +(trans s786 s5529) +(trans s787 s5510) +(trans s787 s5523) +(trans s787 s5536) +(trans s788 s5517) +(trans s788 s5530) +(trans s788 s5543) +(trans s789 s5524) +(trans s789 s5537) +(trans s789 s5550) +(trans s790 s5531) +(trans s790 s5544) +(trans s790 s5557) +(trans s791 s5538) +(trans s791 s5551) +(trans s791 s5564) +(trans s792 s5545) +(trans s792 s5558) +(trans s792 s5571) +(trans s793 s5552) +(trans s793 s5565) +(trans s793 s5578) +(trans s794 s5559) +(trans s794 s5572) +(trans s794 s5585) +(trans s795 s5566) +(trans s795 s5579) +(trans s795 s5592) +(trans s796 s5573) +(trans s796 s5586) +(trans s796 s5599) +(trans s797 s5580) +(trans s797 s5593) +(trans s797 s5606) +(trans s798 s5587) +(trans s798 s5600) +(trans s798 s5613) +(trans s799 s5594) +(trans s799 s5607) +(trans s799 s5620) +(trans s800 s5601) +(trans s800 s5614) +(trans s800 s5627) +(trans s801 s5608) +(trans s801 s5621) +(trans s801 s5634) +(trans s802 s5615) +(trans s802 s5628) +(trans s802 s5641) +(trans s803 s5622) +(trans s803 s5635) +(trans s803 s5648) +(trans s804 s5629) +(trans s804 s5642) +(trans s804 s5655) +(trans s805 s5636) +(trans s805 s5649) +(trans s805 s5662) +(trans s806 s5643) +(trans s806 s5656) +(trans s806 s5669) +(trans s807 s5650) +(trans s807 s5663) +(trans s807 s5676) +(trans s808 s5657) +(trans s808 s5670) +(trans s808 s5683) +(trans s809 s5664) +(trans s809 s5677) +(trans s809 s5690) +(trans s810 s5671) +(trans s810 s5684) +(trans s810 s5697) +(trans s811 s5678) +(trans s811 s5691) +(trans s811 s5704) +(trans s812 s5685) +(trans s812 s5698) +(trans s812 s5711) +(trans s813 s5692) +(trans s813 s5705) +(trans s813 s5718) +(trans s814 s5699) +(trans s814 s5712) +(trans s814 s5725) +(trans s815 s5706) +(trans s815 s5719) +(trans s815 s5732) +(trans s816 s5713) +(trans s816 s5726) +(trans s816 s5739) +(trans s817 s5720) +(trans s817 s5733) +(trans s817 s5746) +(trans s818 s5727) +(trans s818 s5740) +(trans s818 s5753) +(trans s819 s5734) +(trans s819 s5747) +(trans s819 s5760) +(trans s820 s5741) +(trans s820 s5754) +(trans s820 s5767) +(trans s821 s5748) +(trans s821 s5761) +(trans s821 s5774) +(trans s822 s5755) +(trans s822 s5768) +(trans s822 s5781) +(trans s823 s5762) +(trans s823 s5775) +(trans s823 s5788) +(trans s824 s5769) +(trans s824 s5782) +(trans s824 s5795) +(trans s825 s5776) +(trans s825 s5789) +(trans s825 s5802) +(trans s826 s5783) +(trans s826 s5796) +(trans s826 s5809) +(trans s827 s5790) +(trans s827 s5803) +(trans s827 s5816) +(trans s828 s5797) +(trans s828 s5810) +(trans s828 s5823) +(trans s829 s5804) +(trans s829 s5817) +(trans s829 s5830) +(trans s830 s5811) +(trans s830 s5824) +(trans s830 s5837) +(trans s831 s5818) +(trans s831 s5831) +(trans s831 s5844) +(trans s832 s5825) +(trans s832 s5838) +(trans s832 s5851) +(trans s833 s5832) +(trans s833 s5845) +(trans s833 s5858) +(trans s834 s5839) +(trans s834 s5852) +(trans s834 s5865) +(trans s835 s5846) +(trans s835 s5859) +(trans s835 s5872) +(trans s836 s5853) +(trans s836 s5866) +(trans s836 s5879) +(trans s837 s5860) +(trans s837 s5873) +(trans s837 s5886) +(trans s838 s5867) +(trans s838 s5880) +(trans s838 s5893) +(trans s839 s5874) +(trans s839 s5887) +(trans s839 s5900) +(trans s840 s5881) +(trans s840 s5894) +(trans s840 s5907) +(trans s841 s5888) +(trans s841 s5901) +(trans s841 s5914) +(trans s842 s5895) +(trans s842 s5908) +(trans s842 s5921) +(trans s843 s5902) +(trans s843 s5915) +(trans s843 s5928) +(trans s844 s5909) +(trans s844 s5922) +(trans s844 s5935) +(trans s845 s5916) +(trans s845 s5929) +(trans s845 s5942) +(trans s846 s5923) +(trans s846 s5936) +(trans s846 s5949) +(trans s847 s5930) +(trans s847 s5943) +(trans s847 s5956) +(trans s848 s5937) +(trans s848 s5950) +(trans s848 s5963) +(trans s849 s5944) +(trans s849 s5957) +(trans s849 s5970) +(trans s850 s5951) +(trans s850 s5964) +(trans s850 s5977) +(trans s851 s5958) +(trans s851 s5971) +(trans s851 s5984) +(trans s852 s5965) +(trans s852 s5978) +(trans s852 s5991) +(trans s853 s5972) +(trans s853 s5985) +(trans s853 s5998) +(trans s854 s5979) +(trans s854 s5992) +(trans s854 s5) +(trans s855 s5986) +(trans s855 s5999) +(trans s855 s12) +(trans s856 s5993) +(trans s856 s6) +(trans s856 s19) +(trans s857 s0) +(trans s857 s13) +(trans s857 s26) +(trans s858 s7) +(trans s858 s20) +(trans s858 s33) +(trans s859 s14) +(trans s859 s27) +(trans s859 s40) +(trans s860 s21) +(trans s860 s34) +(trans s860 s47) +(trans s861 s28) +(trans s861 s41) +(trans s861 s54) +(trans s862 s35) +(trans s862 s48) +(trans s862 s61) +(trans s863 s42) +(trans s863 s55) +(trans s863 s68) +(trans s864 s49) +(trans s864 s62) +(trans s864 s75) +(trans s865 s56) +(trans s865 s69) +(trans s865 s82) +(trans s866 s63) +(trans s866 s76) +(trans s866 s89) +(trans s867 s70) +(trans s867 s83) +(trans s867 s96) +(trans s868 s77) +(trans s868 s90) +(trans s868 s103) +(trans s869 s84) +(trans s869 s97) +(trans s869 s110) +(trans s870 s91) +(trans s870 s104) +(trans s870 s117) +(trans s871 s98) +(trans s871 s111) +(trans s871 s124) +(trans s872 s105) +(trans s872 s118) +(trans s872 s131) +(trans s873 s112) +(trans s873 s125) +(trans s873 s138) +(trans s874 s119) +(trans s874 s132) +(trans s874 s145) +(trans s875 s126) +(trans s875 s139) +(trans s875 s152) +(trans s876 s133) +(trans s876 s146) +(trans s876 s159) +(trans s877 s140) +(trans s877 s153) +(trans s877 s166) +(trans s878 s147) +(trans s878 s160) +(trans s878 s173) +(trans s879 s154) +(trans s879 s167) +(trans s879 s180) +(trans s880 s161) +(trans s880 s174) +(trans s880 s187) +(trans s881 s168) +(trans s881 s181) +(trans s881 s194) +(trans s882 s175) +(trans s882 s188) +(trans s882 s201) +(trans s883 s182) +(trans s883 s195) +(trans s883 s208) +(trans s884 s189) +(trans s884 s202) +(trans s884 s215) +(trans s885 s196) +(trans s885 s209) +(trans s885 s222) +(trans s886 s203) +(trans s886 s216) +(trans s886 s229) +(trans s887 s210) +(trans s887 s223) +(trans s887 s236) +(trans s888 s217) +(trans s888 s230) +(trans s888 s243) +(trans s889 s224) +(trans s889 s237) +(trans s889 s250) +(trans s890 s231) +(trans s890 s244) +(trans s890 s257) +(trans s891 s238) +(trans s891 s251) +(trans s891 s264) +(trans s892 s245) +(trans s892 s258) +(trans s892 s271) +(trans s893 s252) +(trans s893 s265) +(trans s893 s278) +(trans s894 s259) +(trans s894 s272) +(trans s894 s285) +(trans s895 s266) +(trans s895 s279) +(trans s895 s292) +(trans s896 s273) +(trans s896 s286) +(trans s896 s299) +(trans s897 s280) +(trans s897 s293) +(trans s897 s306) +(trans s898 s287) +(trans s898 s300) +(trans s898 s313) +(trans s899 s294) +(trans s899 s307) +(trans s899 s320) +(trans s900 s301) +(trans s900 s314) +(trans s900 s327) +(trans s901 s308) +(trans s901 s321) +(trans s901 s334) +(trans s902 s315) +(trans s902 s328) +(trans s902 s341) +(trans s903 s322) +(trans s903 s335) +(trans s903 s348) +(trans s904 s329) +(trans s904 s342) +(trans s904 s355) +(trans s905 s336) +(trans s905 s349) +(trans s905 s362) +(trans s906 s343) +(trans s906 s356) +(trans s906 s369) +(trans s907 s350) +(trans s907 s363) +(trans s907 s376) +(trans s908 s357) +(trans s908 s370) +(trans s908 s383) +(trans s909 s364) +(trans s909 s377) +(trans s909 s390) +(trans s910 s371) +(trans s910 s384) +(trans s910 s397) +(trans s911 s378) +(trans s911 s391) +(trans s911 s404) +(trans s912 s385) +(trans s912 s398) +(trans s912 s411) +(trans s913 s392) +(trans s913 s405) +(trans s913 s418) +(trans s914 s399) +(trans s914 s412) +(trans s914 s425) +(trans s915 s406) +(trans s915 s419) +(trans s915 s432) +(trans s916 s413) +(trans s916 s426) +(trans s916 s439) +(trans s917 s420) +(trans s917 s433) +(trans s917 s446) +(trans s918 s427) +(trans s918 s440) +(trans s918 s453) +(trans s919 s434) +(trans s919 s447) +(trans s919 s460) +(trans s920 s441) +(trans s920 s454) +(trans s920 s467) +(trans s921 s448) +(trans s921 s461) +(trans s921 s474) +(trans s922 s455) +(trans s922 s468) +(trans s922 s481) +(trans s923 s462) +(trans s923 s475) +(trans s923 s488) +(trans s924 s469) +(trans s924 s482) +(trans s924 s495) +(trans s925 s476) +(trans s925 s489) +(trans s925 s502) +(trans s926 s483) +(trans s926 s496) +(trans s926 s509) +(trans s927 s490) +(trans s927 s503) +(trans s927 s516) +(trans s928 s497) +(trans s928 s510) +(trans s928 s523) +(trans s929 s504) +(trans s929 s517) +(trans s929 s530) +(trans s930 s511) +(trans s930 s524) +(trans s930 s537) +(trans s931 s518) +(trans s931 s531) +(trans s931 s544) +(trans s932 s525) +(trans s932 s538) +(trans s932 s551) +(trans s933 s532) +(trans s933 s545) +(trans s933 s558) +(trans s934 s539) +(trans s934 s552) +(trans s934 s565) +(trans s935 s546) +(trans s935 s559) +(trans s935 s572) +(trans s936 s553) +(trans s936 s566) +(trans s936 s579) +(trans s937 s560) +(trans s937 s573) +(trans s937 s586) +(trans s938 s567) +(trans s938 s580) +(trans s938 s593) +(trans s939 s574) +(trans s939 s587) +(trans s939 s600) +(trans s940 s581) +(trans s940 s594) +(trans s940 s607) +(trans s941 s588) +(trans s941 s601) +(trans s941 s614) +(trans s942 s595) +(trans s942 s608) +(trans s942 s621) +(trans s943 s602) +(trans s943 s615) +(trans s943 s628) +(trans s944 s609) +(trans s944 s622) +(trans s944 s635) +(trans s945 s616) +(trans s945 s629) +(trans s945 s642) +(trans s946 s623) +(trans s946 s636) +(trans s946 s649) +(trans s947 s630) +(trans s947 s643) +(trans s947 s656) +(trans s948 s637) +(trans s948 s650) +(trans s948 s663) +(trans s949 s644) +(trans s949 s657) +(trans s949 s670) +(trans s950 s651) +(trans s950 s664) +(trans s950 s677) +(trans s951 s658) +(trans s951 s671) +(trans s951 s684) +(trans s952 s665) +(trans s952 s678) +(trans s952 s691) +(trans s953 s672) +(trans s953 s685) +(trans s953 s698) +(trans s954 s679) +(trans s954 s692) +(trans s954 s705) +(trans s955 s686) +(trans s955 s699) +(trans s955 s712) +(trans s956 s693) +(trans s956 s706) +(trans s956 s719) +(trans s957 s700) +(trans s957 s713) +(trans s957 s726) +(trans s958 s707) +(trans s958 s720) +(trans s958 s733) +(trans s959 s714) +(trans s959 s727) +(trans s959 s740) +(trans s960 s721) +(trans s960 s734) +(trans s960 s747) +(trans s961 s728) +(trans s961 s741) +(trans s961 s754) +(trans s962 s735) +(trans s962 s748) +(trans s962 s761) +(trans s963 s742) +(trans s963 s755) +(trans s963 s768) +(trans s964 s749) +(trans s964 s762) +(trans s964 s775) +(trans s965 s756) +(trans s965 s769) +(trans s965 s782) +(trans s966 s763) +(trans s966 s776) +(trans s966 s789) +(trans s967 s770) +(trans s967 s783) +(trans s967 s796) +(trans s968 s777) +(trans s968 s790) +(trans s968 s803) +(trans s969 s784) +(trans s969 s797) +(trans s969 s810) +(trans s970 s791) +(trans s970 s804) +(trans s970 s817) +(trans s971 s798) +(trans s971 s811) +(trans s971 s824) +(trans s972 s805) +(trans s972 s818) +(trans s972 s831) +(trans s973 s812) +(trans s973 s825) +(trans s973 s838) +(trans s974 s819) +(trans s974 s832) +(trans s974 s845) +(trans s975 s826) +(trans s975 s839) +(trans s975 s852) +(trans s976 s833) +(trans s976 s846) +(trans s976 s859) +(trans s977 s840) +(trans s977 s853) +(trans s977 s866) +(trans s978 s847) +(trans s978 s860) +(trans s978 s873) +(trans s979 s854) +(trans s979 s867) +(trans s979 s880) +(trans s980 s861) +(trans s980 s874) +(trans s980 s887) +(trans s981 s868) +(trans s981 s881) +(trans s981 s894) +(trans s982 s875) +(trans s982 s888) +(trans s982 s901) +(trans s983 s882) +(trans s983 s895) +(trans s983 s908) +(trans s984 s889) +(trans s984 s902) +(trans s984 s915) +(trans s985 s896) +(trans s985 s909) +(trans s985 s922) +(trans s986 s903) +(trans s986 s916) +(trans s986 s929) +(trans s987 s910) +(trans s987 s923) +(trans s987 s936) +(trans s988 s917) +(trans s988 s930) +(trans s988 s943) +(trans s989 s924) +(trans s989 s937) +(trans s989 s950) +(trans s990 s931) +(trans s990 s944) +(trans s990 s957) +(trans s991 s938) +(trans s991 s951) +(trans s991 s964) +(trans s992 s945) +(trans s992 s958) +(trans s992 s971) +(trans s993 s952) +(trans s993 s965) +(trans s993 s978) +(trans s994 s959) +(trans s994 s972) +(trans s994 s985) +(trans s995 s966) +(trans s995 s979) +(trans s995 s992) +(trans s996 s973) +(trans s996 s986) +(trans s996 s999) +(trans s997 s980) +(trans s997 s993) +(trans s997 s1006) +(trans s998 s987) +(trans s998 s1000) +(trans s998 s1013) +(trans s999 s994) +(trans s999 s1007) +(trans s999 s1020) +(trans s1000 s1001) +(trans s1000 s1014) +(trans s1000 s1027) +(trans s1001 s1008) +(trans s1001 s1021) +(trans s1001 s1034) +(trans s1002 s1015) +(trans s1002 s1028) +(trans s1002 s1041) +(trans s1003 s1022) +(trans s1003 s1035) +(trans s1003 s1048) +(trans s1004 s1029) +(trans s1004 s1042) +(trans s1004 s1055) +(trans s1005 s1036) +(trans s1005 s1049) +(trans s1005 s1062) +(trans s1006 s1043) +(trans s1006 s1056) +(trans s1006 s1069) +(trans s1007 s1050) +(trans s1007 s1063) +(trans s1007 s1076) +(trans s1008 s1057) +(trans s1008 s1070) +(trans s1008 s1083) +(trans s1009 s1064) +(trans s1009 s1077) +(trans s1009 s1090) +(trans s1010 s1071) +(trans s1010 s1084) +(trans s1010 s1097) +(trans s1011 s1078) +(trans s1011 s1091) +(trans s1011 s1104) +(trans s1012 s1085) +(trans s1012 s1098) +(trans s1012 s1111) +(trans s1013 s1092) +(trans s1013 s1105) +(trans s1013 s1118) +(trans s1014 s1099) +(trans s1014 s1112) +(trans s1014 s1125) +(trans s1015 s1106) +(trans s1015 s1119) +(trans s1015 s1132) +(trans s1016 s1113) +(trans s1016 s1126) +(trans s1016 s1139) +(trans s1017 s1120) +(trans s1017 s1133) +(trans s1017 s1146) +(trans s1018 s1127) +(trans s1018 s1140) +(trans s1018 s1153) +(trans s1019 s1134) +(trans s1019 s1147) +(trans s1019 s1160) +(trans s1020 s1141) +(trans s1020 s1154) +(trans s1020 s1167) +(trans s1021 s1148) +(trans s1021 s1161) +(trans s1021 s1174) +(trans s1022 s1155) +(trans s1022 s1168) +(trans s1022 s1181) +(trans s1023 s1162) +(trans s1023 s1175) +(trans s1023 s1188) +(trans s1024 s1169) +(trans s1024 s1182) +(trans s1024 s1195) +(trans s1025 s1176) +(trans s1025 s1189) +(trans s1025 s1202) +(trans s1026 s1183) +(trans s1026 s1196) +(trans s1026 s1209) +(trans s1027 s1190) +(trans s1027 s1203) +(trans s1027 s1216) +(trans s1028 s1197) +(trans s1028 s1210) +(trans s1028 s1223) +(trans s1029 s1204) +(trans s1029 s1217) +(trans s1029 s1230) +(trans s1030 s1211) +(trans s1030 s1224) +(trans s1030 s1237) +(trans s1031 s1218) +(trans s1031 s1231) +(trans s1031 s1244) +(trans s1032 s1225) +(trans s1032 s1238) +(trans s1032 s1251) +(trans s1033 s1232) +(trans s1033 s1245) +(trans s1033 s1258) +(trans s1034 s1239) +(trans s1034 s1252) +(trans s1034 s1265) +(trans s1035 s1246) +(trans s1035 s1259) +(trans s1035 s1272) +(trans s1036 s1253) +(trans s1036 s1266) +(trans s1036 s1279) +(trans s1037 s1260) +(trans s1037 s1273) +(trans s1037 s1286) +(trans s1038 s1267) +(trans s1038 s1280) +(trans s1038 s1293) +(trans s1039 s1274) +(trans s1039 s1287) +(trans s1039 s1300) +(trans s1040 s1281) +(trans s1040 s1294) +(trans s1040 s1307) +(trans s1041 s1288) +(trans s1041 s1301) +(trans s1041 s1314) +(trans s1042 s1295) +(trans s1042 s1308) +(trans s1042 s1321) +(trans s1043 s1302) +(trans s1043 s1315) +(trans s1043 s1328) +(trans s1044 s1309) +(trans s1044 s1322) +(trans s1044 s1335) +(trans s1045 s1316) +(trans s1045 s1329) +(trans s1045 s1342) +(trans s1046 s1323) +(trans s1046 s1336) +(trans s1046 s1349) +(trans s1047 s1330) +(trans s1047 s1343) +(trans s1047 s1356) +(trans s1048 s1337) +(trans s1048 s1350) +(trans s1048 s1363) +(trans s1049 s1344) +(trans s1049 s1357) +(trans s1049 s1370) +(trans s1050 s1351) +(trans s1050 s1364) +(trans s1050 s1377) +(trans s1051 s1358) +(trans s1051 s1371) +(trans s1051 s1384) +(trans s1052 s1365) +(trans s1052 s1378) +(trans s1052 s1391) +(trans s1053 s1372) +(trans s1053 s1385) +(trans s1053 s1398) +(trans s1054 s1379) +(trans s1054 s1392) +(trans s1054 s1405) +(trans s1055 s1386) +(trans s1055 s1399) +(trans s1055 s1412) +(trans s1056 s1393) +(trans s1056 s1406) +(trans s1056 s1419) +(trans s1057 s1400) +(trans s1057 s1413) +(trans s1057 s1426) +(trans s1058 s1407) +(trans s1058 s1420) +(trans s1058 s1433) +(trans s1059 s1414) +(trans s1059 s1427) +(trans s1059 s1440) +(trans s1060 s1421) +(trans s1060 s1434) +(trans s1060 s1447) +(trans s1061 s1428) +(trans s1061 s1441) +(trans s1061 s1454) +(trans s1062 s1435) +(trans s1062 s1448) +(trans s1062 s1461) +(trans s1063 s1442) +(trans s1063 s1455) +(trans s1063 s1468) +(trans s1064 s1449) +(trans s1064 s1462) +(trans s1064 s1475) +(trans s1065 s1456) +(trans s1065 s1469) +(trans s1065 s1482) +(trans s1066 s1463) +(trans s1066 s1476) +(trans s1066 s1489) +(trans s1067 s1470) +(trans s1067 s1483) +(trans s1067 s1496) +(trans s1068 s1477) +(trans s1068 s1490) +(trans s1068 s1503) +(trans s1069 s1484) +(trans s1069 s1497) +(trans s1069 s1510) +(trans s1070 s1491) +(trans s1070 s1504) +(trans s1070 s1517) +(trans s1071 s1498) +(trans s1071 s1511) +(trans s1071 s1524) +(trans s1072 s1505) +(trans s1072 s1518) +(trans s1072 s1531) +(trans s1073 s1512) +(trans s1073 s1525) +(trans s1073 s1538) +(trans s1074 s1519) +(trans s1074 s1532) +(trans s1074 s1545) +(trans s1075 s1526) +(trans s1075 s1539) +(trans s1075 s1552) +(trans s1076 s1533) +(trans s1076 s1546) +(trans s1076 s1559) +(trans s1077 s1540) +(trans s1077 s1553) +(trans s1077 s1566) +(trans s1078 s1547) +(trans s1078 s1560) +(trans s1078 s1573) +(trans s1079 s1554) +(trans s1079 s1567) +(trans s1079 s1580) +(trans s1080 s1561) +(trans s1080 s1574) +(trans s1080 s1587) +(trans s1081 s1568) +(trans s1081 s1581) +(trans s1081 s1594) +(trans s1082 s1575) +(trans s1082 s1588) +(trans s1082 s1601) +(trans s1083 s1582) +(trans s1083 s1595) +(trans s1083 s1608) +(trans s1084 s1589) +(trans s1084 s1602) +(trans s1084 s1615) +(trans s1085 s1596) +(trans s1085 s1609) +(trans s1085 s1622) +(trans s1086 s1603) +(trans s1086 s1616) +(trans s1086 s1629) +(trans s1087 s1610) +(trans s1087 s1623) +(trans s1087 s1636) +(trans s1088 s1617) +(trans s1088 s1630) +(trans s1088 s1643) +(trans s1089 s1624) +(trans s1089 s1637) +(trans s1089 s1650) +(trans s1090 s1631) +(trans s1090 s1644) +(trans s1090 s1657) +(trans s1091 s1638) +(trans s1091 s1651) +(trans s1091 s1664) +(trans s1092 s1645) +(trans s1092 s1658) +(trans s1092 s1671) +(trans s1093 s1652) +(trans s1093 s1665) +(trans s1093 s1678) +(trans s1094 s1659) +(trans s1094 s1672) +(trans s1094 s1685) +(trans s1095 s1666) +(trans s1095 s1679) +(trans s1095 s1692) +(trans s1096 s1673) +(trans s1096 s1686) +(trans s1096 s1699) +(trans s1097 s1680) +(trans s1097 s1693) +(trans s1097 s1706) +(trans s1098 s1687) +(trans s1098 s1700) +(trans s1098 s1713) +(trans s1099 s1694) +(trans s1099 s1707) +(trans s1099 s1720) +(trans s1100 s1701) +(trans s1100 s1714) +(trans s1100 s1727) +(trans s1101 s1708) +(trans s1101 s1721) +(trans s1101 s1734) +(trans s1102 s1715) +(trans s1102 s1728) +(trans s1102 s1741) +(trans s1103 s1722) +(trans s1103 s1735) +(trans s1103 s1748) +(trans s1104 s1729) +(trans s1104 s1742) +(trans s1104 s1755) +(trans s1105 s1736) +(trans s1105 s1749) +(trans s1105 s1762) +(trans s1106 s1743) +(trans s1106 s1756) +(trans s1106 s1769) +(trans s1107 s1750) +(trans s1107 s1763) +(trans s1107 s1776) +(trans s1108 s1757) +(trans s1108 s1770) +(trans s1108 s1783) +(trans s1109 s1764) +(trans s1109 s1777) +(trans s1109 s1790) +(trans s1110 s1771) +(trans s1110 s1784) +(trans s1110 s1797) +(trans s1111 s1778) +(trans s1111 s1791) +(trans s1111 s1804) +(trans s1112 s1785) +(trans s1112 s1798) +(trans s1112 s1811) +(trans s1113 s1792) +(trans s1113 s1805) +(trans s1113 s1818) +(trans s1114 s1799) +(trans s1114 s1812) +(trans s1114 s1825) +(trans s1115 s1806) +(trans s1115 s1819) +(trans s1115 s1832) +(trans s1116 s1813) +(trans s1116 s1826) +(trans s1116 s1839) +(trans s1117 s1820) +(trans s1117 s1833) +(trans s1117 s1846) +(trans s1118 s1827) +(trans s1118 s1840) +(trans s1118 s1853) +(trans s1119 s1834) +(trans s1119 s1847) +(trans s1119 s1860) +(trans s1120 s1841) +(trans s1120 s1854) +(trans s1120 s1867) +(trans s1121 s1848) +(trans s1121 s1861) +(trans s1121 s1874) +(trans s1122 s1855) +(trans s1122 s1868) +(trans s1122 s1881) +(trans s1123 s1862) +(trans s1123 s1875) +(trans s1123 s1888) +(trans s1124 s1869) +(trans s1124 s1882) +(trans s1124 s1895) +(trans s1125 s1876) +(trans s1125 s1889) +(trans s1125 s1902) +(trans s1126 s1883) +(trans s1126 s1896) +(trans s1126 s1909) +(trans s1127 s1890) +(trans s1127 s1903) +(trans s1127 s1916) +(trans s1128 s1897) +(trans s1128 s1910) +(trans s1128 s1923) +(trans s1129 s1904) +(trans s1129 s1917) +(trans s1129 s1930) +(trans s1130 s1911) +(trans s1130 s1924) +(trans s1130 s1937) +(trans s1131 s1918) +(trans s1131 s1931) +(trans s1131 s1944) +(trans s1132 s1925) +(trans s1132 s1938) +(trans s1132 s1951) +(trans s1133 s1932) +(trans s1133 s1945) +(trans s1133 s1958) +(trans s1134 s1939) +(trans s1134 s1952) +(trans s1134 s1965) +(trans s1135 s1946) +(trans s1135 s1959) +(trans s1135 s1972) +(trans s1136 s1953) +(trans s1136 s1966) +(trans s1136 s1979) +(trans s1137 s1960) +(trans s1137 s1973) +(trans s1137 s1986) +(trans s1138 s1967) +(trans s1138 s1980) +(trans s1138 s1993) +(trans s1139 s1974) +(trans s1139 s1987) +(trans s1139 s2000) +(trans s1140 s1981) +(trans s1140 s1994) +(trans s1140 s2007) +(trans s1141 s1988) +(trans s1141 s2001) +(trans s1141 s2014) +(trans s1142 s1995) +(trans s1142 s2008) +(trans s1142 s2021) +(trans s1143 s2002) +(trans s1143 s2015) +(trans s1143 s2028) +(trans s1144 s2009) +(trans s1144 s2022) +(trans s1144 s2035) +(trans s1145 s2016) +(trans s1145 s2029) +(trans s1145 s2042) +(trans s1146 s2023) +(trans s1146 s2036) +(trans s1146 s2049) +(trans s1147 s2030) +(trans s1147 s2043) +(trans s1147 s2056) +(trans s1148 s2037) +(trans s1148 s2050) +(trans s1148 s2063) +(trans s1149 s2044) +(trans s1149 s2057) +(trans s1149 s2070) +(trans s1150 s2051) +(trans s1150 s2064) +(trans s1150 s2077) +(trans s1151 s2058) +(trans s1151 s2071) +(trans s1151 s2084) +(trans s1152 s2065) +(trans s1152 s2078) +(trans s1152 s2091) +(trans s1153 s2072) +(trans s1153 s2085) +(trans s1153 s2098) +(trans s1154 s2079) +(trans s1154 s2092) +(trans s1154 s2105) +(trans s1155 s2086) +(trans s1155 s2099) +(trans s1155 s2112) +(trans s1156 s2093) +(trans s1156 s2106) +(trans s1156 s2119) +(trans s1157 s2100) +(trans s1157 s2113) +(trans s1157 s2126) +(trans s1158 s2107) +(trans s1158 s2120) +(trans s1158 s2133) +(trans s1159 s2114) +(trans s1159 s2127) +(trans s1159 s2140) +(trans s1160 s2121) +(trans s1160 s2134) +(trans s1160 s2147) +(trans s1161 s2128) +(trans s1161 s2141) +(trans s1161 s2154) +(trans s1162 s2135) +(trans s1162 s2148) +(trans s1162 s2161) +(trans s1163 s2142) +(trans s1163 s2155) +(trans s1163 s2168) +(trans s1164 s2149) +(trans s1164 s2162) +(trans s1164 s2175) +(trans s1165 s2156) +(trans s1165 s2169) +(trans s1165 s2182) +(trans s1166 s2163) +(trans s1166 s2176) +(trans s1166 s2189) +(trans s1167 s2170) +(trans s1167 s2183) +(trans s1167 s2196) +(trans s1168 s2177) +(trans s1168 s2190) +(trans s1168 s2203) +(trans s1169 s2184) +(trans s1169 s2197) +(trans s1169 s2210) +(trans s1170 s2191) +(trans s1170 s2204) +(trans s1170 s2217) +(trans s1171 s2198) +(trans s1171 s2211) +(trans s1171 s2224) +(trans s1172 s2205) +(trans s1172 s2218) +(trans s1172 s2231) +(trans s1173 s2212) +(trans s1173 s2225) +(trans s1173 s2238) +(trans s1174 s2219) +(trans s1174 s2232) +(trans s1174 s2245) +(trans s1175 s2226) +(trans s1175 s2239) +(trans s1175 s2252) +(trans s1176 s2233) +(trans s1176 s2246) +(trans s1176 s2259) +(trans s1177 s2240) +(trans s1177 s2253) +(trans s1177 s2266) +(trans s1178 s2247) +(trans s1178 s2260) +(trans s1178 s2273) +(trans s1179 s2254) +(trans s1179 s2267) +(trans s1179 s2280) +(trans s1180 s2261) +(trans s1180 s2274) +(trans s1180 s2287) +(trans s1181 s2268) +(trans s1181 s2281) +(trans s1181 s2294) +(trans s1182 s2275) +(trans s1182 s2288) +(trans s1182 s2301) +(trans s1183 s2282) +(trans s1183 s2295) +(trans s1183 s2308) +(trans s1184 s2289) +(trans s1184 s2302) +(trans s1184 s2315) +(trans s1185 s2296) +(trans s1185 s2309) +(trans s1185 s2322) +(trans s1186 s2303) +(trans s1186 s2316) +(trans s1186 s2329) +(trans s1187 s2310) +(trans s1187 s2323) +(trans s1187 s2336) +(trans s1188 s2317) +(trans s1188 s2330) +(trans s1188 s2343) +(trans s1189 s2324) +(trans s1189 s2337) +(trans s1189 s2350) +(trans s1190 s2331) +(trans s1190 s2344) +(trans s1190 s2357) +(trans s1191 s2338) +(trans s1191 s2351) +(trans s1191 s2364) +(trans s1192 s2345) +(trans s1192 s2358) +(trans s1192 s2371) +(trans s1193 s2352) +(trans s1193 s2365) +(trans s1193 s2378) +(trans s1194 s2359) +(trans s1194 s2372) +(trans s1194 s2385) +(trans s1195 s2366) +(trans s1195 s2379) +(trans s1195 s2392) +(trans s1196 s2373) +(trans s1196 s2386) +(trans s1196 s2399) +(trans s1197 s2380) +(trans s1197 s2393) +(trans s1197 s2406) +(trans s1198 s2387) +(trans s1198 s2400) +(trans s1198 s2413) +(trans s1199 s2394) +(trans s1199 s2407) +(trans s1199 s2420) +(trans s1200 s2401) +(trans s1200 s2414) +(trans s1200 s2427) +(trans s1201 s2408) +(trans s1201 s2421) +(trans s1201 s2434) +(trans s1202 s2415) +(trans s1202 s2428) +(trans s1202 s2441) +(trans s1203 s2422) +(trans s1203 s2435) +(trans s1203 s2448) +(trans s1204 s2429) +(trans s1204 s2442) +(trans s1204 s2455) +(trans s1205 s2436) +(trans s1205 s2449) +(trans s1205 s2462) +(trans s1206 s2443) +(trans s1206 s2456) +(trans s1206 s2469) +(trans s1207 s2450) +(trans s1207 s2463) +(trans s1207 s2476) +(trans s1208 s2457) +(trans s1208 s2470) +(trans s1208 s2483) +(trans s1209 s2464) +(trans s1209 s2477) +(trans s1209 s2490) +(trans s1210 s2471) +(trans s1210 s2484) +(trans s1210 s2497) +(trans s1211 s2478) +(trans s1211 s2491) +(trans s1211 s2504) +(trans s1212 s2485) +(trans s1212 s2498) +(trans s1212 s2511) +(trans s1213 s2492) +(trans s1213 s2505) +(trans s1213 s2518) +(trans s1214 s2499) +(trans s1214 s2512) +(trans s1214 s2525) +(trans s1215 s2506) +(trans s1215 s2519) +(trans s1215 s2532) +(trans s1216 s2513) +(trans s1216 s2526) +(trans s1216 s2539) +(trans s1217 s2520) +(trans s1217 s2533) +(trans s1217 s2546) +(trans s1218 s2527) +(trans s1218 s2540) +(trans s1218 s2553) +(trans s1219 s2534) +(trans s1219 s2547) +(trans s1219 s2560) +(trans s1220 s2541) +(trans s1220 s2554) +(trans s1220 s2567) +(trans s1221 s2548) +(trans s1221 s2561) +(trans s1221 s2574) +(trans s1222 s2555) +(trans s1222 s2568) +(trans s1222 s2581) +(trans s1223 s2562) +(trans s1223 s2575) +(trans s1223 s2588) +(trans s1224 s2569) +(trans s1224 s2582) +(trans s1224 s2595) +(trans s1225 s2576) +(trans s1225 s2589) +(trans s1225 s2602) +(trans s1226 s2583) +(trans s1226 s2596) +(trans s1226 s2609) +(trans s1227 s2590) +(trans s1227 s2603) +(trans s1227 s2616) +(trans s1228 s2597) +(trans s1228 s2610) +(trans s1228 s2623) +(trans s1229 s2604) +(trans s1229 s2617) +(trans s1229 s2630) +(trans s1230 s2611) +(trans s1230 s2624) +(trans s1230 s2637) +(trans s1231 s2618) +(trans s1231 s2631) +(trans s1231 s2644) +(trans s1232 s2625) +(trans s1232 s2638) +(trans s1232 s2651) +(trans s1233 s2632) +(trans s1233 s2645) +(trans s1233 s2658) +(trans s1234 s2639) +(trans s1234 s2652) +(trans s1234 s2665) +(trans s1235 s2646) +(trans s1235 s2659) +(trans s1235 s2672) +(trans s1236 s2653) +(trans s1236 s2666) +(trans s1236 s2679) +(trans s1237 s2660) +(trans s1237 s2673) +(trans s1237 s2686) +(trans s1238 s2667) +(trans s1238 s2680) +(trans s1238 s2693) +(trans s1239 s2674) +(trans s1239 s2687) +(trans s1239 s2700) +(trans s1240 s2681) +(trans s1240 s2694) +(trans s1240 s2707) +(trans s1241 s2688) +(trans s1241 s2701) +(trans s1241 s2714) +(trans s1242 s2695) +(trans s1242 s2708) +(trans s1242 s2721) +(trans s1243 s2702) +(trans s1243 s2715) +(trans s1243 s2728) +(trans s1244 s2709) +(trans s1244 s2722) +(trans s1244 s2735) +(trans s1245 s2716) +(trans s1245 s2729) +(trans s1245 s2742) +(trans s1246 s2723) +(trans s1246 s2736) +(trans s1246 s2749) +(trans s1247 s2730) +(trans s1247 s2743) +(trans s1247 s2756) +(trans s1248 s2737) +(trans s1248 s2750) +(trans s1248 s2763) +(trans s1249 s2744) +(trans s1249 s2757) +(trans s1249 s2770) +(trans s1250 s2751) +(trans s1250 s2764) +(trans s1250 s2777) +(trans s1251 s2758) +(trans s1251 s2771) +(trans s1251 s2784) +(trans s1252 s2765) +(trans s1252 s2778) +(trans s1252 s2791) +(trans s1253 s2772) +(trans s1253 s2785) +(trans s1253 s2798) +(trans s1254 s2779) +(trans s1254 s2792) +(trans s1254 s2805) +(trans s1255 s2786) +(trans s1255 s2799) +(trans s1255 s2812) +(trans s1256 s2793) +(trans s1256 s2806) +(trans s1256 s2819) +(trans s1257 s2800) +(trans s1257 s2813) +(trans s1257 s2826) +(trans s1258 s2807) +(trans s1258 s2820) +(trans s1258 s2833) +(trans s1259 s2814) +(trans s1259 s2827) +(trans s1259 s2840) +(trans s1260 s2821) +(trans s1260 s2834) +(trans s1260 s2847) +(trans s1261 s2828) +(trans s1261 s2841) +(trans s1261 s2854) +(trans s1262 s2835) +(trans s1262 s2848) +(trans s1262 s2861) +(trans s1263 s2842) +(trans s1263 s2855) +(trans s1263 s2868) +(trans s1264 s2849) +(trans s1264 s2862) +(trans s1264 s2875) +(trans s1265 s2856) +(trans s1265 s2869) +(trans s1265 s2882) +(trans s1266 s2863) +(trans s1266 s2876) +(trans s1266 s2889) +(trans s1267 s2870) +(trans s1267 s2883) +(trans s1267 s2896) +(trans s1268 s2877) +(trans s1268 s2890) +(trans s1268 s2903) +(trans s1269 s2884) +(trans s1269 s2897) +(trans s1269 s2910) +(trans s1270 s2891) +(trans s1270 s2904) +(trans s1270 s2917) +(trans s1271 s2898) +(trans s1271 s2911) +(trans s1271 s2924) +(trans s1272 s2905) +(trans s1272 s2918) +(trans s1272 s2931) +(trans s1273 s2912) +(trans s1273 s2925) +(trans s1273 s2938) +(trans s1274 s2919) +(trans s1274 s2932) +(trans s1274 s2945) +(trans s1275 s2926) +(trans s1275 s2939) +(trans s1275 s2952) +(trans s1276 s2933) +(trans s1276 s2946) +(trans s1276 s2959) +(trans s1277 s2940) +(trans s1277 s2953) +(trans s1277 s2966) +(trans s1278 s2947) +(trans s1278 s2960) +(trans s1278 s2973) +(trans s1279 s2954) +(trans s1279 s2967) +(trans s1279 s2980) +(trans s1280 s2961) +(trans s1280 s2974) +(trans s1280 s2987) +(trans s1281 s2968) +(trans s1281 s2981) +(trans s1281 s2994) +(trans s1282 s2975) +(trans s1282 s2988) +(trans s1282 s3001) +(trans s1283 s2982) +(trans s1283 s2995) +(trans s1283 s3008) +(trans s1284 s2989) +(trans s1284 s3002) +(trans s1284 s3015) +(trans s1285 s2996) +(trans s1285 s3009) +(trans s1285 s3022) +(trans s1286 s3003) +(trans s1286 s3016) +(trans s1286 s3029) +(trans s1287 s3010) +(trans s1287 s3023) +(trans s1287 s3036) +(trans s1288 s3017) +(trans s1288 s3030) +(trans s1288 s3043) +(trans s1289 s3024) +(trans s1289 s3037) +(trans s1289 s3050) +(trans s1290 s3031) +(trans s1290 s3044) +(trans s1290 s3057) +(trans s1291 s3038) +(trans s1291 s3051) +(trans s1291 s3064) +(trans s1292 s3045) +(trans s1292 s3058) +(trans s1292 s3071) +(trans s1293 s3052) +(trans s1293 s3065) +(trans s1293 s3078) +(trans s1294 s3059) +(trans s1294 s3072) +(trans s1294 s3085) +(trans s1295 s3066) +(trans s1295 s3079) +(trans s1295 s3092) +(trans s1296 s3073) +(trans s1296 s3086) +(trans s1296 s3099) +(trans s1297 s3080) +(trans s1297 s3093) +(trans s1297 s3106) +(trans s1298 s3087) +(trans s1298 s3100) +(trans s1298 s3113) +(trans s1299 s3094) +(trans s1299 s3107) +(trans s1299 s3120) +(trans s1300 s3101) +(trans s1300 s3114) +(trans s1300 s3127) +(trans s1301 s3108) +(trans s1301 s3121) +(trans s1301 s3134) +(trans s1302 s3115) +(trans s1302 s3128) +(trans s1302 s3141) +(trans s1303 s3122) +(trans s1303 s3135) +(trans s1303 s3148) +(trans s1304 s3129) +(trans s1304 s3142) +(trans s1304 s3155) +(trans s1305 s3136) +(trans s1305 s3149) +(trans s1305 s3162) +(trans s1306 s3143) +(trans s1306 s3156) +(trans s1306 s3169) +(trans s1307 s3150) +(trans s1307 s3163) +(trans s1307 s3176) +(trans s1308 s3157) +(trans s1308 s3170) +(trans s1308 s3183) +(trans s1309 s3164) +(trans s1309 s3177) +(trans s1309 s3190) +(trans s1310 s3171) +(trans s1310 s3184) +(trans s1310 s3197) +(trans s1311 s3178) +(trans s1311 s3191) +(trans s1311 s3204) +(trans s1312 s3185) +(trans s1312 s3198) +(trans s1312 s3211) +(trans s1313 s3192) +(trans s1313 s3205) +(trans s1313 s3218) +(trans s1314 s3199) +(trans s1314 s3212) +(trans s1314 s3225) +(trans s1315 s3206) +(trans s1315 s3219) +(trans s1315 s3232) +(trans s1316 s3213) +(trans s1316 s3226) +(trans s1316 s3239) +(trans s1317 s3220) +(trans s1317 s3233) +(trans s1317 s3246) +(trans s1318 s3227) +(trans s1318 s3240) +(trans s1318 s3253) +(trans s1319 s3234) +(trans s1319 s3247) +(trans s1319 s3260) +(trans s1320 s3241) +(trans s1320 s3254) +(trans s1320 s3267) +(trans s1321 s3248) +(trans s1321 s3261) +(trans s1321 s3274) +(trans s1322 s3255) +(trans s1322 s3268) +(trans s1322 s3281) +(trans s1323 s3262) +(trans s1323 s3275) +(trans s1323 s3288) +(trans s1324 s3269) +(trans s1324 s3282) +(trans s1324 s3295) +(trans s1325 s3276) +(trans s1325 s3289) +(trans s1325 s3302) +(trans s1326 s3283) +(trans s1326 s3296) +(trans s1326 s3309) +(trans s1327 s3290) +(trans s1327 s3303) +(trans s1327 s3316) +(trans s1328 s3297) +(trans s1328 s3310) +(trans s1328 s3323) +(trans s1329 s3304) +(trans s1329 s3317) +(trans s1329 s3330) +(trans s1330 s3311) +(trans s1330 s3324) +(trans s1330 s3337) +(trans s1331 s3318) +(trans s1331 s3331) +(trans s1331 s3344) +(trans s1332 s3325) +(trans s1332 s3338) +(trans s1332 s3351) +(trans s1333 s3332) +(trans s1333 s3345) +(trans s1333 s3358) +(trans s1334 s3339) +(trans s1334 s3352) +(trans s1334 s3365) +(trans s1335 s3346) +(trans s1335 s3359) +(trans s1335 s3372) +(trans s1336 s3353) +(trans s1336 s3366) +(trans s1336 s3379) +(trans s1337 s3360) +(trans s1337 s3373) +(trans s1337 s3386) +(trans s1338 s3367) +(trans s1338 s3380) +(trans s1338 s3393) +(trans s1339 s3374) +(trans s1339 s3387) +(trans s1339 s3400) +(trans s1340 s3381) +(trans s1340 s3394) +(trans s1340 s3407) +(trans s1341 s3388) +(trans s1341 s3401) +(trans s1341 s3414) +(trans s1342 s3395) +(trans s1342 s3408) +(trans s1342 s3421) +(trans s1343 s3402) +(trans s1343 s3415) +(trans s1343 s3428) +(trans s1344 s3409) +(trans s1344 s3422) +(trans s1344 s3435) +(trans s1345 s3416) +(trans s1345 s3429) +(trans s1345 s3442) +(trans s1346 s3423) +(trans s1346 s3436) +(trans s1346 s3449) +(trans s1347 s3430) +(trans s1347 s3443) +(trans s1347 s3456) +(trans s1348 s3437) +(trans s1348 s3450) +(trans s1348 s3463) +(trans s1349 s3444) +(trans s1349 s3457) +(trans s1349 s3470) +(trans s1350 s3451) +(trans s1350 s3464) +(trans s1350 s3477) +(trans s1351 s3458) +(trans s1351 s3471) +(trans s1351 s3484) +(trans s1352 s3465) +(trans s1352 s3478) +(trans s1352 s3491) +(trans s1353 s3472) +(trans s1353 s3485) +(trans s1353 s3498) +(trans s1354 s3479) +(trans s1354 s3492) +(trans s1354 s3505) +(trans s1355 s3486) +(trans s1355 s3499) +(trans s1355 s3512) +(trans s1356 s3493) +(trans s1356 s3506) +(trans s1356 s3519) +(trans s1357 s3500) +(trans s1357 s3513) +(trans s1357 s3526) +(trans s1358 s3507) +(trans s1358 s3520) +(trans s1358 s3533) +(trans s1359 s3514) +(trans s1359 s3527) +(trans s1359 s3540) +(trans s1360 s3521) +(trans s1360 s3534) +(trans s1360 s3547) +(trans s1361 s3528) +(trans s1361 s3541) +(trans s1361 s3554) +(trans s1362 s3535) +(trans s1362 s3548) +(trans s1362 s3561) +(trans s1363 s3542) +(trans s1363 s3555) +(trans s1363 s3568) +(trans s1364 s3549) +(trans s1364 s3562) +(trans s1364 s3575) +(trans s1365 s3556) +(trans s1365 s3569) +(trans s1365 s3582) +(trans s1366 s3563) +(trans s1366 s3576) +(trans s1366 s3589) +(trans s1367 s3570) +(trans s1367 s3583) +(trans s1367 s3596) +(trans s1368 s3577) +(trans s1368 s3590) +(trans s1368 s3603) +(trans s1369 s3584) +(trans s1369 s3597) +(trans s1369 s3610) +(trans s1370 s3591) +(trans s1370 s3604) +(trans s1370 s3617) +(trans s1371 s3598) +(trans s1371 s3611) +(trans s1371 s3624) +(trans s1372 s3605) +(trans s1372 s3618) +(trans s1372 s3631) +(trans s1373 s3612) +(trans s1373 s3625) +(trans s1373 s3638) +(trans s1374 s3619) +(trans s1374 s3632) +(trans s1374 s3645) +(trans s1375 s3626) +(trans s1375 s3639) +(trans s1375 s3652) +(trans s1376 s3633) +(trans s1376 s3646) +(trans s1376 s3659) +(trans s1377 s3640) +(trans s1377 s3653) +(trans s1377 s3666) +(trans s1378 s3647) +(trans s1378 s3660) +(trans s1378 s3673) +(trans s1379 s3654) +(trans s1379 s3667) +(trans s1379 s3680) +(trans s1380 s3661) +(trans s1380 s3674) +(trans s1380 s3687) +(trans s1381 s3668) +(trans s1381 s3681) +(trans s1381 s3694) +(trans s1382 s3675) +(trans s1382 s3688) +(trans s1382 s3701) +(trans s1383 s3682) +(trans s1383 s3695) +(trans s1383 s3708) +(trans s1384 s3689) +(trans s1384 s3702) +(trans s1384 s3715) +(trans s1385 s3696) +(trans s1385 s3709) +(trans s1385 s3722) +(trans s1386 s3703) +(trans s1386 s3716) +(trans s1386 s3729) +(trans s1387 s3710) +(trans s1387 s3723) +(trans s1387 s3736) +(trans s1388 s3717) +(trans s1388 s3730) +(trans s1388 s3743) +(trans s1389 s3724) +(trans s1389 s3737) +(trans s1389 s3750) +(trans s1390 s3731) +(trans s1390 s3744) +(trans s1390 s3757) +(trans s1391 s3738) +(trans s1391 s3751) +(trans s1391 s3764) +(trans s1392 s3745) +(trans s1392 s3758) +(trans s1392 s3771) +(trans s1393 s3752) +(trans s1393 s3765) +(trans s1393 s3778) +(trans s1394 s3759) +(trans s1394 s3772) +(trans s1394 s3785) +(trans s1395 s3766) +(trans s1395 s3779) +(trans s1395 s3792) +(trans s1396 s3773) +(trans s1396 s3786) +(trans s1396 s3799) +(trans s1397 s3780) +(trans s1397 s3793) +(trans s1397 s3806) +(trans s1398 s3787) +(trans s1398 s3800) +(trans s1398 s3813) +(trans s1399 s3794) +(trans s1399 s3807) +(trans s1399 s3820) +(trans s1400 s3801) +(trans s1400 s3814) +(trans s1400 s3827) +(trans s1401 s3808) +(trans s1401 s3821) +(trans s1401 s3834) +(trans s1402 s3815) +(trans s1402 s3828) +(trans s1402 s3841) +(trans s1403 s3822) +(trans s1403 s3835) +(trans s1403 s3848) +(trans s1404 s3829) +(trans s1404 s3842) +(trans s1404 s3855) +(trans s1405 s3836) +(trans s1405 s3849) +(trans s1405 s3862) +(trans s1406 s3843) +(trans s1406 s3856) +(trans s1406 s3869) +(trans s1407 s3850) +(trans s1407 s3863) +(trans s1407 s3876) +(trans s1408 s3857) +(trans s1408 s3870) +(trans s1408 s3883) +(trans s1409 s3864) +(trans s1409 s3877) +(trans s1409 s3890) +(trans s1410 s3871) +(trans s1410 s3884) +(trans s1410 s3897) +(trans s1411 s3878) +(trans s1411 s3891) +(trans s1411 s3904) +(trans s1412 s3885) +(trans s1412 s3898) +(trans s1412 s3911) +(trans s1413 s3892) +(trans s1413 s3905) +(trans s1413 s3918) +(trans s1414 s3899) +(trans s1414 s3912) +(trans s1414 s3925) +(trans s1415 s3906) +(trans s1415 s3919) +(trans s1415 s3932) +(trans s1416 s3913) +(trans s1416 s3926) +(trans s1416 s3939) +(trans s1417 s3920) +(trans s1417 s3933) +(trans s1417 s3946) +(trans s1418 s3927) +(trans s1418 s3940) +(trans s1418 s3953) +(trans s1419 s3934) +(trans s1419 s3947) +(trans s1419 s3960) +(trans s1420 s3941) +(trans s1420 s3954) +(trans s1420 s3967) +(trans s1421 s3948) +(trans s1421 s3961) +(trans s1421 s3974) +(trans s1422 s3955) +(trans s1422 s3968) +(trans s1422 s3981) +(trans s1423 s3962) +(trans s1423 s3975) +(trans s1423 s3988) +(trans s1424 s3969) +(trans s1424 s3982) +(trans s1424 s3995) +(trans s1425 s3976) +(trans s1425 s3989) +(trans s1425 s4002) +(trans s1426 s3983) +(trans s1426 s3996) +(trans s1426 s4009) +(trans s1427 s3990) +(trans s1427 s4003) +(trans s1427 s4016) +(trans s1428 s3997) +(trans s1428 s4010) +(trans s1428 s4023) +(trans s1429 s4004) +(trans s1429 s4017) +(trans s1429 s4030) +(trans s1430 s4011) +(trans s1430 s4024) +(trans s1430 s4037) +(trans s1431 s4018) +(trans s1431 s4031) +(trans s1431 s4044) +(trans s1432 s4025) +(trans s1432 s4038) +(trans s1432 s4051) +(trans s1433 s4032) +(trans s1433 s4045) +(trans s1433 s4058) +(trans s1434 s4039) +(trans s1434 s4052) +(trans s1434 s4065) +(trans s1435 s4046) +(trans s1435 s4059) +(trans s1435 s4072) +(trans s1436 s4053) +(trans s1436 s4066) +(trans s1436 s4079) +(trans s1437 s4060) +(trans s1437 s4073) +(trans s1437 s4086) +(trans s1438 s4067) +(trans s1438 s4080) +(trans s1438 s4093) +(trans s1439 s4074) +(trans s1439 s4087) +(trans s1439 s4100) +(trans s1440 s4081) +(trans s1440 s4094) +(trans s1440 s4107) +(trans s1441 s4088) +(trans s1441 s4101) +(trans s1441 s4114) +(trans s1442 s4095) +(trans s1442 s4108) +(trans s1442 s4121) +(trans s1443 s4102) +(trans s1443 s4115) +(trans s1443 s4128) +(trans s1444 s4109) +(trans s1444 s4122) +(trans s1444 s4135) +(trans s1445 s4116) +(trans s1445 s4129) +(trans s1445 s4142) +(trans s1446 s4123) +(trans s1446 s4136) +(trans s1446 s4149) +(trans s1447 s4130) +(trans s1447 s4143) +(trans s1447 s4156) +(trans s1448 s4137) +(trans s1448 s4150) +(trans s1448 s4163) +(trans s1449 s4144) +(trans s1449 s4157) +(trans s1449 s4170) +(trans s1450 s4151) +(trans s1450 s4164) +(trans s1450 s4177) +(trans s1451 s4158) +(trans s1451 s4171) +(trans s1451 s4184) +(trans s1452 s4165) +(trans s1452 s4178) +(trans s1452 s4191) +(trans s1453 s4172) +(trans s1453 s4185) +(trans s1453 s4198) +(trans s1454 s4179) +(trans s1454 s4192) +(trans s1454 s4205) +(trans s1455 s4186) +(trans s1455 s4199) +(trans s1455 s4212) +(trans s1456 s4193) +(trans s1456 s4206) +(trans s1456 s4219) +(trans s1457 s4200) +(trans s1457 s4213) +(trans s1457 s4226) +(trans s1458 s4207) +(trans s1458 s4220) +(trans s1458 s4233) +(trans s1459 s4214) +(trans s1459 s4227) +(trans s1459 s4240) +(trans s1460 s4221) +(trans s1460 s4234) +(trans s1460 s4247) +(trans s1461 s4228) +(trans s1461 s4241) +(trans s1461 s4254) +(trans s1462 s4235) +(trans s1462 s4248) +(trans s1462 s4261) +(trans s1463 s4242) +(trans s1463 s4255) +(trans s1463 s4268) +(trans s1464 s4249) +(trans s1464 s4262) +(trans s1464 s4275) +(trans s1465 s4256) +(trans s1465 s4269) +(trans s1465 s4282) +(trans s1466 s4263) +(trans s1466 s4276) +(trans s1466 s4289) +(trans s1467 s4270) +(trans s1467 s4283) +(trans s1467 s4296) +(trans s1468 s4277) +(trans s1468 s4290) +(trans s1468 s4303) +(trans s1469 s4284) +(trans s1469 s4297) +(trans s1469 s4310) +(trans s1470 s4291) +(trans s1470 s4304) +(trans s1470 s4317) +(trans s1471 s4298) +(trans s1471 s4311) +(trans s1471 s4324) +(trans s1472 s4305) +(trans s1472 s4318) +(trans s1472 s4331) +(trans s1473 s4312) +(trans s1473 s4325) +(trans s1473 s4338) +(trans s1474 s4319) +(trans s1474 s4332) +(trans s1474 s4345) +(trans s1475 s4326) +(trans s1475 s4339) +(trans s1475 s4352) +(trans s1476 s4333) +(trans s1476 s4346) +(trans s1476 s4359) +(trans s1477 s4340) +(trans s1477 s4353) +(trans s1477 s4366) +(trans s1478 s4347) +(trans s1478 s4360) +(trans s1478 s4373) +(trans s1479 s4354) +(trans s1479 s4367) +(trans s1479 s4380) +(trans s1480 s4361) +(trans s1480 s4374) +(trans s1480 s4387) +(trans s1481 s4368) +(trans s1481 s4381) +(trans s1481 s4394) +(trans s1482 s4375) +(trans s1482 s4388) +(trans s1482 s4401) +(trans s1483 s4382) +(trans s1483 s4395) +(trans s1483 s4408) +(trans s1484 s4389) +(trans s1484 s4402) +(trans s1484 s4415) +(trans s1485 s4396) +(trans s1485 s4409) +(trans s1485 s4422) +(trans s1486 s4403) +(trans s1486 s4416) +(trans s1486 s4429) +(trans s1487 s4410) +(trans s1487 s4423) +(trans s1487 s4436) +(trans s1488 s4417) +(trans s1488 s4430) +(trans s1488 s4443) +(trans s1489 s4424) +(trans s1489 s4437) +(trans s1489 s4450) +(trans s1490 s4431) +(trans s1490 s4444) +(trans s1490 s4457) +(trans s1491 s4438) +(trans s1491 s4451) +(trans s1491 s4464) +(trans s1492 s4445) +(trans s1492 s4458) +(trans s1492 s4471) +(trans s1493 s4452) +(trans s1493 s4465) +(trans s1493 s4478) +(trans s1494 s4459) +(trans s1494 s4472) +(trans s1494 s4485) +(trans s1495 s4466) +(trans s1495 s4479) +(trans s1495 s4492) +(trans s1496 s4473) +(trans s1496 s4486) +(trans s1496 s4499) +(trans s1497 s4480) +(trans s1497 s4493) +(trans s1497 s4506) +(trans s1498 s4487) +(trans s1498 s4500) +(trans s1498 s4513) +(trans s1499 s4494) +(trans s1499 s4507) +(trans s1499 s4520) +(trans s1500 s4501) +(trans s1500 s4514) +(trans s1500 s4527) +(trans s1501 s4508) +(trans s1501 s4521) +(trans s1501 s4534) +(trans s1502 s4515) +(trans s1502 s4528) +(trans s1502 s4541) +(trans s1503 s4522) +(trans s1503 s4535) +(trans s1503 s4548) +(trans s1504 s4529) +(trans s1504 s4542) +(trans s1504 s4555) +(trans s1505 s4536) +(trans s1505 s4549) +(trans s1505 s4562) +(trans s1506 s4543) +(trans s1506 s4556) +(trans s1506 s4569) +(trans s1507 s4550) +(trans s1507 s4563) +(trans s1507 s4576) +(trans s1508 s4557) +(trans s1508 s4570) +(trans s1508 s4583) +(trans s1509 s4564) +(trans s1509 s4577) +(trans s1509 s4590) +(trans s1510 s4571) +(trans s1510 s4584) +(trans s1510 s4597) +(trans s1511 s4578) +(trans s1511 s4591) +(trans s1511 s4604) +(trans s1512 s4585) +(trans s1512 s4598) +(trans s1512 s4611) +(trans s1513 s4592) +(trans s1513 s4605) +(trans s1513 s4618) +(trans s1514 s4599) +(trans s1514 s4612) +(trans s1514 s4625) +(trans s1515 s4606) +(trans s1515 s4619) +(trans s1515 s4632) +(trans s1516 s4613) +(trans s1516 s4626) +(trans s1516 s4639) +(trans s1517 s4620) +(trans s1517 s4633) +(trans s1517 s4646) +(trans s1518 s4627) +(trans s1518 s4640) +(trans s1518 s4653) +(trans s1519 s4634) +(trans s1519 s4647) +(trans s1519 s4660) +(trans s1520 s4641) +(trans s1520 s4654) +(trans s1520 s4667) +(trans s1521 s4648) +(trans s1521 s4661) +(trans s1521 s4674) +(trans s1522 s4655) +(trans s1522 s4668) +(trans s1522 s4681) +(trans s1523 s4662) +(trans s1523 s4675) +(trans s1523 s4688) +(trans s1524 s4669) +(trans s1524 s4682) +(trans s1524 s4695) +(trans s1525 s4676) +(trans s1525 s4689) +(trans s1525 s4702) +(trans s1526 s4683) +(trans s1526 s4696) +(trans s1526 s4709) +(trans s1527 s4690) +(trans s1527 s4703) +(trans s1527 s4716) +(trans s1528 s4697) +(trans s1528 s4710) +(trans s1528 s4723) +(trans s1529 s4704) +(trans s1529 s4717) +(trans s1529 s4730) +(trans s1530 s4711) +(trans s1530 s4724) +(trans s1530 s4737) +(trans s1531 s4718) +(trans s1531 s4731) +(trans s1531 s4744) +(trans s1532 s4725) +(trans s1532 s4738) +(trans s1532 s4751) +(trans s1533 s4732) +(trans s1533 s4745) +(trans s1533 s4758) +(trans s1534 s4739) +(trans s1534 s4752) +(trans s1534 s4765) +(trans s1535 s4746) +(trans s1535 s4759) +(trans s1535 s4772) +(trans s1536 s4753) +(trans s1536 s4766) +(trans s1536 s4779) +(trans s1537 s4760) +(trans s1537 s4773) +(trans s1537 s4786) +(trans s1538 s4767) +(trans s1538 s4780) +(trans s1538 s4793) +(trans s1539 s4774) +(trans s1539 s4787) +(trans s1539 s4800) +(trans s1540 s4781) +(trans s1540 s4794) +(trans s1540 s4807) +(trans s1541 s4788) +(trans s1541 s4801) +(trans s1541 s4814) +(trans s1542 s4795) +(trans s1542 s4808) +(trans s1542 s4821) +(trans s1543 s4802) +(trans s1543 s4815) +(trans s1543 s4828) +(trans s1544 s4809) +(trans s1544 s4822) +(trans s1544 s4835) +(trans s1545 s4816) +(trans s1545 s4829) +(trans s1545 s4842) +(trans s1546 s4823) +(trans s1546 s4836) +(trans s1546 s4849) +(trans s1547 s4830) +(trans s1547 s4843) +(trans s1547 s4856) +(trans s1548 s4837) +(trans s1548 s4850) +(trans s1548 s4863) +(trans s1549 s4844) +(trans s1549 s4857) +(trans s1549 s4870) +(trans s1550 s4851) +(trans s1550 s4864) +(trans s1550 s4877) +(trans s1551 s4858) +(trans s1551 s4871) +(trans s1551 s4884) +(trans s1552 s4865) +(trans s1552 s4878) +(trans s1552 s4891) +(trans s1553 s4872) +(trans s1553 s4885) +(trans s1553 s4898) +(trans s1554 s4879) +(trans s1554 s4892) +(trans s1554 s4905) +(trans s1555 s4886) +(trans s1555 s4899) +(trans s1555 s4912) +(trans s1556 s4893) +(trans s1556 s4906) +(trans s1556 s4919) +(trans s1557 s4900) +(trans s1557 s4913) +(trans s1557 s4926) +(trans s1558 s4907) +(trans s1558 s4920) +(trans s1558 s4933) +(trans s1559 s4914) +(trans s1559 s4927) +(trans s1559 s4940) +(trans s1560 s4921) +(trans s1560 s4934) +(trans s1560 s4947) +(trans s1561 s4928) +(trans s1561 s4941) +(trans s1561 s4954) +(trans s1562 s4935) +(trans s1562 s4948) +(trans s1562 s4961) +(trans s1563 s4942) +(trans s1563 s4955) +(trans s1563 s4968) +(trans s1564 s4949) +(trans s1564 s4962) +(trans s1564 s4975) +(trans s1565 s4956) +(trans s1565 s4969) +(trans s1565 s4982) +(trans s1566 s4963) +(trans s1566 s4976) +(trans s1566 s4989) +(trans s1567 s4970) +(trans s1567 s4983) +(trans s1567 s4996) +(trans s1568 s4977) +(trans s1568 s4990) +(trans s1568 s5003) +(trans s1569 s4984) +(trans s1569 s4997) +(trans s1569 s5010) +(trans s1570 s4991) +(trans s1570 s5004) +(trans s1570 s5017) +(trans s1571 s4998) +(trans s1571 s5011) +(trans s1571 s5024) +(trans s1572 s5005) +(trans s1572 s5018) +(trans s1572 s5031) +(trans s1573 s5012) +(trans s1573 s5025) +(trans s1573 s5038) +(trans s1574 s5019) +(trans s1574 s5032) +(trans s1574 s5045) +(trans s1575 s5026) +(trans s1575 s5039) +(trans s1575 s5052) +(trans s1576 s5033) +(trans s1576 s5046) +(trans s1576 s5059) +(trans s1577 s5040) +(trans s1577 s5053) +(trans s1577 s5066) +(trans s1578 s5047) +(trans s1578 s5060) +(trans s1578 s5073) +(trans s1579 s5054) +(trans s1579 s5067) +(trans s1579 s5080) +(trans s1580 s5061) +(trans s1580 s5074) +(trans s1580 s5087) +(trans s1581 s5068) +(trans s1581 s5081) +(trans s1581 s5094) +(trans s1582 s5075) +(trans s1582 s5088) +(trans s1582 s5101) +(trans s1583 s5082) +(trans s1583 s5095) +(trans s1583 s5108) +(trans s1584 s5089) +(trans s1584 s5102) +(trans s1584 s5115) +(trans s1585 s5096) +(trans s1585 s5109) +(trans s1585 s5122) +(trans s1586 s5103) +(trans s1586 s5116) +(trans s1586 s5129) +(trans s1587 s5110) +(trans s1587 s5123) +(trans s1587 s5136) +(trans s1588 s5117) +(trans s1588 s5130) +(trans s1588 s5143) +(trans s1589 s5124) +(trans s1589 s5137) +(trans s1589 s5150) +(trans s1590 s5131) +(trans s1590 s5144) +(trans s1590 s5157) +(trans s1591 s5138) +(trans s1591 s5151) +(trans s1591 s5164) +(trans s1592 s5145) +(trans s1592 s5158) +(trans s1592 s5171) +(trans s1593 s5152) +(trans s1593 s5165) +(trans s1593 s5178) +(trans s1594 s5159) +(trans s1594 s5172) +(trans s1594 s5185) +(trans s1595 s5166) +(trans s1595 s5179) +(trans s1595 s5192) +(trans s1596 s5173) +(trans s1596 s5186) +(trans s1596 s5199) +(trans s1597 s5180) +(trans s1597 s5193) +(trans s1597 s5206) +(trans s1598 s5187) +(trans s1598 s5200) +(trans s1598 s5213) +(trans s1599 s5194) +(trans s1599 s5207) +(trans s1599 s5220) +(trans s1600 s5201) +(trans s1600 s5214) +(trans s1600 s5227) +(trans s1601 s5208) +(trans s1601 s5221) +(trans s1601 s5234) +(trans s1602 s5215) +(trans s1602 s5228) +(trans s1602 s5241) +(trans s1603 s5222) +(trans s1603 s5235) +(trans s1603 s5248) +(trans s1604 s5229) +(trans s1604 s5242) +(trans s1604 s5255) +(trans s1605 s5236) +(trans s1605 s5249) +(trans s1605 s5262) +(trans s1606 s5243) +(trans s1606 s5256) +(trans s1606 s5269) +(trans s1607 s5250) +(trans s1607 s5263) +(trans s1607 s5276) +(trans s1608 s5257) +(trans s1608 s5270) +(trans s1608 s5283) +(trans s1609 s5264) +(trans s1609 s5277) +(trans s1609 s5290) +(trans s1610 s5271) +(trans s1610 s5284) +(trans s1610 s5297) +(trans s1611 s5278) +(trans s1611 s5291) +(trans s1611 s5304) +(trans s1612 s5285) +(trans s1612 s5298) +(trans s1612 s5311) +(trans s1613 s5292) +(trans s1613 s5305) +(trans s1613 s5318) +(trans s1614 s5299) +(trans s1614 s5312) +(trans s1614 s5325) +(trans s1615 s5306) +(trans s1615 s5319) +(trans s1615 s5332) +(trans s1616 s5313) +(trans s1616 s5326) +(trans s1616 s5339) +(trans s1617 s5320) +(trans s1617 s5333) +(trans s1617 s5346) +(trans s1618 s5327) +(trans s1618 s5340) +(trans s1618 s5353) +(trans s1619 s5334) +(trans s1619 s5347) +(trans s1619 s5360) +(trans s1620 s5341) +(trans s1620 s5354) +(trans s1620 s5367) +(trans s1621 s5348) +(trans s1621 s5361) +(trans s1621 s5374) +(trans s1622 s5355) +(trans s1622 s5368) +(trans s1622 s5381) +(trans s1623 s5362) +(trans s1623 s5375) +(trans s1623 s5388) +(trans s1624 s5369) +(trans s1624 s5382) +(trans s1624 s5395) +(trans s1625 s5376) +(trans s1625 s5389) +(trans s1625 s5402) +(trans s1626 s5383) +(trans s1626 s5396) +(trans s1626 s5409) +(trans s1627 s5390) +(trans s1627 s5403) +(trans s1627 s5416) +(trans s1628 s5397) +(trans s1628 s5410) +(trans s1628 s5423) +(trans s1629 s5404) +(trans s1629 s5417) +(trans s1629 s5430) +(trans s1630 s5411) +(trans s1630 s5424) +(trans s1630 s5437) +(trans s1631 s5418) +(trans s1631 s5431) +(trans s1631 s5444) +(trans s1632 s5425) +(trans s1632 s5438) +(trans s1632 s5451) +(trans s1633 s5432) +(trans s1633 s5445) +(trans s1633 s5458) +(trans s1634 s5439) +(trans s1634 s5452) +(trans s1634 s5465) +(trans s1635 s5446) +(trans s1635 s5459) +(trans s1635 s5472) +(trans s1636 s5453) +(trans s1636 s5466) +(trans s1636 s5479) +(trans s1637 s5460) +(trans s1637 s5473) +(trans s1637 s5486) +(trans s1638 s5467) +(trans s1638 s5480) +(trans s1638 s5493) +(trans s1639 s5474) +(trans s1639 s5487) +(trans s1639 s5500) +(trans s1640 s5481) +(trans s1640 s5494) +(trans s1640 s5507) +(trans s1641 s5488) +(trans s1641 s5501) +(trans s1641 s5514) +(trans s1642 s5495) +(trans s1642 s5508) +(trans s1642 s5521) +(trans s1643 s5502) +(trans s1643 s5515) +(trans s1643 s5528) +(trans s1644 s5509) +(trans s1644 s5522) +(trans s1644 s5535) +(trans s1645 s5516) +(trans s1645 s5529) +(trans s1645 s5542) +(trans s1646 s5523) +(trans s1646 s5536) +(trans s1646 s5549) +(trans s1647 s5530) +(trans s1647 s5543) +(trans s1647 s5556) +(trans s1648 s5537) +(trans s1648 s5550) +(trans s1648 s5563) +(trans s1649 s5544) +(trans s1649 s5557) +(trans s1649 s5570) +(trans s1650 s5551) +(trans s1650 s5564) +(trans s1650 s5577) +(trans s1651 s5558) +(trans s1651 s5571) +(trans s1651 s5584) +(trans s1652 s5565) +(trans s1652 s5578) +(trans s1652 s5591) +(trans s1653 s5572) +(trans s1653 s5585) +(trans s1653 s5598) +(trans s1654 s5579) +(trans s1654 s5592) +(trans s1654 s5605) +(trans s1655 s5586) +(trans s1655 s5599) +(trans s1655 s5612) +(trans s1656 s5593) +(trans s1656 s5606) +(trans s1656 s5619) +(trans s1657 s5600) +(trans s1657 s5613) +(trans s1657 s5626) +(trans s1658 s5607) +(trans s1658 s5620) +(trans s1658 s5633) +(trans s1659 s5614) +(trans s1659 s5627) +(trans s1659 s5640) +(trans s1660 s5621) +(trans s1660 s5634) +(trans s1660 s5647) +(trans s1661 s5628) +(trans s1661 s5641) +(trans s1661 s5654) +(trans s1662 s5635) +(trans s1662 s5648) +(trans s1662 s5661) +(trans s1663 s5642) +(trans s1663 s5655) +(trans s1663 s5668) +(trans s1664 s5649) +(trans s1664 s5662) +(trans s1664 s5675) +(trans s1665 s5656) +(trans s1665 s5669) +(trans s1665 s5682) +(trans s1666 s5663) +(trans s1666 s5676) +(trans s1666 s5689) +(trans s1667 s5670) +(trans s1667 s5683) +(trans s1667 s5696) +(trans s1668 s5677) +(trans s1668 s5690) +(trans s1668 s5703) +(trans s1669 s5684) +(trans s1669 s5697) +(trans s1669 s5710) +(trans s1670 s5691) +(trans s1670 s5704) +(trans s1670 s5717) +(trans s1671 s5698) +(trans s1671 s5711) +(trans s1671 s5724) +(trans s1672 s5705) +(trans s1672 s5718) +(trans s1672 s5731) +(trans s1673 s5712) +(trans s1673 s5725) +(trans s1673 s5738) +(trans s1674 s5719) +(trans s1674 s5732) +(trans s1674 s5745) +(trans s1675 s5726) +(trans s1675 s5739) +(trans s1675 s5752) +(trans s1676 s5733) +(trans s1676 s5746) +(trans s1676 s5759) +(trans s1677 s5740) +(trans s1677 s5753) +(trans s1677 s5766) +(trans s1678 s5747) +(trans s1678 s5760) +(trans s1678 s5773) +(trans s1679 s5754) +(trans s1679 s5767) +(trans s1679 s5780) +(trans s1680 s5761) +(trans s1680 s5774) +(trans s1680 s5787) +(trans s1681 s5768) +(trans s1681 s5781) +(trans s1681 s5794) +(trans s1682 s5775) +(trans s1682 s5788) +(trans s1682 s5801) +(trans s1683 s5782) +(trans s1683 s5795) +(trans s1683 s5808) +(trans s1684 s5789) +(trans s1684 s5802) +(trans s1684 s5815) +(trans s1685 s5796) +(trans s1685 s5809) +(trans s1685 s5822) +(trans s1686 s5803) +(trans s1686 s5816) +(trans s1686 s5829) +(trans s1687 s5810) +(trans s1687 s5823) +(trans s1687 s5836) +(trans s1688 s5817) +(trans s1688 s5830) +(trans s1688 s5843) +(trans s1689 s5824) +(trans s1689 s5837) +(trans s1689 s5850) +(trans s1690 s5831) +(trans s1690 s5844) +(trans s1690 s5857) +(trans s1691 s5838) +(trans s1691 s5851) +(trans s1691 s5864) +(trans s1692 s5845) +(trans s1692 s5858) +(trans s1692 s5871) +(trans s1693 s5852) +(trans s1693 s5865) +(trans s1693 s5878) +(trans s1694 s5859) +(trans s1694 s5872) +(trans s1694 s5885) +(trans s1695 s5866) +(trans s1695 s5879) +(trans s1695 s5892) +(trans s1696 s5873) +(trans s1696 s5886) +(trans s1696 s5899) +(trans s1697 s5880) +(trans s1697 s5893) +(trans s1697 s5906) +(trans s1698 s5887) +(trans s1698 s5900) +(trans s1698 s5913) +(trans s1699 s5894) +(trans s1699 s5907) +(trans s1699 s5920) +(trans s1700 s5901) +(trans s1700 s5914) +(trans s1700 s5927) +(trans s1701 s5908) +(trans s1701 s5921) +(trans s1701 s5934) +(trans s1702 s5915) +(trans s1702 s5928) +(trans s1702 s5941) +(trans s1703 s5922) +(trans s1703 s5935) +(trans s1703 s5948) +(trans s1704 s5929) +(trans s1704 s5942) +(trans s1704 s5955) +(trans s1705 s5936) +(trans s1705 s5949) +(trans s1705 s5962) +(trans s1706 s5943) +(trans s1706 s5956) +(trans s1706 s5969) +(trans s1707 s5950) +(trans s1707 s5963) +(trans s1707 s5976) +(trans s1708 s5957) +(trans s1708 s5970) +(trans s1708 s5983) +(trans s1709 s5964) +(trans s1709 s5977) +(trans s1709 s5990) +(trans s1710 s5971) +(trans s1710 s5984) +(trans s1710 s5997) +(trans s1711 s5978) +(trans s1711 s5991) +(trans s1711 s4) +(trans s1712 s5985) +(trans s1712 s5998) +(trans s1712 s11) +(trans s1713 s5992) +(trans s1713 s5) +(trans s1713 s18) +(trans s1714 s5999) +(trans s1714 s12) +(trans s1714 s25) +(trans s1715 s6) +(trans s1715 s19) +(trans s1715 s32) +(trans s1716 s13) +(trans s1716 s26) +(trans s1716 s39) +(trans s1717 s20) +(trans s1717 s33) +(trans s1717 s46) +(trans s1718 s27) +(trans s1718 s40) +(trans s1718 s53) +(trans s1719 s34) +(trans s1719 s47) +(trans s1719 s60) +(trans s1720 s41) +(trans s1720 s54) +(trans s1720 s67) +(trans s1721 s48) +(trans s1721 s61) +(trans s1721 s74) +(trans s1722 s55) +(trans s1722 s68) +(trans s1722 s81) +(trans s1723 s62) +(trans s1723 s75) +(trans s1723 s88) +(trans s1724 s69) +(trans s1724 s82) +(trans s1724 s95) +(trans s1725 s76) +(trans s1725 s89) +(trans s1725 s102) +(trans s1726 s83) +(trans s1726 s96) +(trans s1726 s109) +(trans s1727 s90) +(trans s1727 s103) +(trans s1727 s116) +(trans s1728 s97) +(trans s1728 s110) +(trans s1728 s123) +(trans s1729 s104) +(trans s1729 s117) +(trans s1729 s130) +(trans s1730 s111) +(trans s1730 s124) +(trans s1730 s137) +(trans s1731 s118) +(trans s1731 s131) +(trans s1731 s144) +(trans s1732 s125) +(trans s1732 s138) +(trans s1732 s151) +(trans s1733 s132) +(trans s1733 s145) +(trans s1733 s158) +(trans s1734 s139) +(trans s1734 s152) +(trans s1734 s165) +(trans s1735 s146) +(trans s1735 s159) +(trans s1735 s172) +(trans s1736 s153) +(trans s1736 s166) +(trans s1736 s179) +(trans s1737 s160) +(trans s1737 s173) +(trans s1737 s186) +(trans s1738 s167) +(trans s1738 s180) +(trans s1738 s193) +(trans s1739 s174) +(trans s1739 s187) +(trans s1739 s200) +(trans s1740 s181) +(trans s1740 s194) +(trans s1740 s207) +(trans s1741 s188) +(trans s1741 s201) +(trans s1741 s214) +(trans s1742 s195) +(trans s1742 s208) +(trans s1742 s221) +(trans s1743 s202) +(trans s1743 s215) +(trans s1743 s228) +(trans s1744 s209) +(trans s1744 s222) +(trans s1744 s235) +(trans s1745 s216) +(trans s1745 s229) +(trans s1745 s242) +(trans s1746 s223) +(trans s1746 s236) +(trans s1746 s249) +(trans s1747 s230) +(trans s1747 s243) +(trans s1747 s256) +(trans s1748 s237) +(trans s1748 s250) +(trans s1748 s263) +(trans s1749 s244) +(trans s1749 s257) +(trans s1749 s270) +(trans s1750 s251) +(trans s1750 s264) +(trans s1750 s277) +(trans s1751 s258) +(trans s1751 s271) +(trans s1751 s284) +(trans s1752 s265) +(trans s1752 s278) +(trans s1752 s291) +(trans s1753 s272) +(trans s1753 s285) +(trans s1753 s298) +(trans s1754 s279) +(trans s1754 s292) +(trans s1754 s305) +(trans s1755 s286) +(trans s1755 s299) +(trans s1755 s312) +(trans s1756 s293) +(trans s1756 s306) +(trans s1756 s319) +(trans s1757 s300) +(trans s1757 s313) +(trans s1757 s326) +(trans s1758 s307) +(trans s1758 s320) +(trans s1758 s333) +(trans s1759 s314) +(trans s1759 s327) +(trans s1759 s340) +(trans s1760 s321) +(trans s1760 s334) +(trans s1760 s347) +(trans s1761 s328) +(trans s1761 s341) +(trans s1761 s354) +(trans s1762 s335) +(trans s1762 s348) +(trans s1762 s361) +(trans s1763 s342) +(trans s1763 s355) +(trans s1763 s368) +(trans s1764 s349) +(trans s1764 s362) +(trans s1764 s375) +(trans s1765 s356) +(trans s1765 s369) +(trans s1765 s382) +(trans s1766 s363) +(trans s1766 s376) +(trans s1766 s389) +(trans s1767 s370) +(trans s1767 s383) +(trans s1767 s396) +(trans s1768 s377) +(trans s1768 s390) +(trans s1768 s403) +(trans s1769 s384) +(trans s1769 s397) +(trans s1769 s410) +(trans s1770 s391) +(trans s1770 s404) +(trans s1770 s417) +(trans s1771 s398) +(trans s1771 s411) +(trans s1771 s424) +(trans s1772 s405) +(trans s1772 s418) +(trans s1772 s431) +(trans s1773 s412) +(trans s1773 s425) +(trans s1773 s438) +(trans s1774 s419) +(trans s1774 s432) +(trans s1774 s445) +(trans s1775 s426) +(trans s1775 s439) +(trans s1775 s452) +(trans s1776 s433) +(trans s1776 s446) +(trans s1776 s459) +(trans s1777 s440) +(trans s1777 s453) +(trans s1777 s466) +(trans s1778 s447) +(trans s1778 s460) +(trans s1778 s473) +(trans s1779 s454) +(trans s1779 s467) +(trans s1779 s480) +(trans s1780 s461) +(trans s1780 s474) +(trans s1780 s487) +(trans s1781 s468) +(trans s1781 s481) +(trans s1781 s494) +(trans s1782 s475) +(trans s1782 s488) +(trans s1782 s501) +(trans s1783 s482) +(trans s1783 s495) +(trans s1783 s508) +(trans s1784 s489) +(trans s1784 s502) +(trans s1784 s515) +(trans s1785 s496) +(trans s1785 s509) +(trans s1785 s522) +(trans s1786 s503) +(trans s1786 s516) +(trans s1786 s529) +(trans s1787 s510) +(trans s1787 s523) +(trans s1787 s536) +(trans s1788 s517) +(trans s1788 s530) +(trans s1788 s543) +(trans s1789 s524) +(trans s1789 s537) +(trans s1789 s550) +(trans s1790 s531) +(trans s1790 s544) +(trans s1790 s557) +(trans s1791 s538) +(trans s1791 s551) +(trans s1791 s564) +(trans s1792 s545) +(trans s1792 s558) +(trans s1792 s571) +(trans s1793 s552) +(trans s1793 s565) +(trans s1793 s578) +(trans s1794 s559) +(trans s1794 s572) +(trans s1794 s585) +(trans s1795 s566) +(trans s1795 s579) +(trans s1795 s592) +(trans s1796 s573) +(trans s1796 s586) +(trans s1796 s599) +(trans s1797 s580) +(trans s1797 s593) +(trans s1797 s606) +(trans s1798 s587) +(trans s1798 s600) +(trans s1798 s613) +(trans s1799 s594) +(trans s1799 s607) +(trans s1799 s620) +(trans s1800 s601) +(trans s1800 s614) +(trans s1800 s627) +(trans s1801 s608) +(trans s1801 s621) +(trans s1801 s634) +(trans s1802 s615) +(trans s1802 s628) +(trans s1802 s641) +(trans s1803 s622) +(trans s1803 s635) +(trans s1803 s648) +(trans s1804 s629) +(trans s1804 s642) +(trans s1804 s655) +(trans s1805 s636) +(trans s1805 s649) +(trans s1805 s662) +(trans s1806 s643) +(trans s1806 s656) +(trans s1806 s669) +(trans s1807 s650) +(trans s1807 s663) +(trans s1807 s676) +(trans s1808 s657) +(trans s1808 s670) +(trans s1808 s683) +(trans s1809 s664) +(trans s1809 s677) +(trans s1809 s690) +(trans s1810 s671) +(trans s1810 s684) +(trans s1810 s697) +(trans s1811 s678) +(trans s1811 s691) +(trans s1811 s704) +(trans s1812 s685) +(trans s1812 s698) +(trans s1812 s711) +(trans s1813 s692) +(trans s1813 s705) +(trans s1813 s718) +(trans s1814 s699) +(trans s1814 s712) +(trans s1814 s725) +(trans s1815 s706) +(trans s1815 s719) +(trans s1815 s732) +(trans s1816 s713) +(trans s1816 s726) +(trans s1816 s739) +(trans s1817 s720) +(trans s1817 s733) +(trans s1817 s746) +(trans s1818 s727) +(trans s1818 s740) +(trans s1818 s753) +(trans s1819 s734) +(trans s1819 s747) +(trans s1819 s760) +(trans s1820 s741) +(trans s1820 s754) +(trans s1820 s767) +(trans s1821 s748) +(trans s1821 s761) +(trans s1821 s774) +(trans s1822 s755) +(trans s1822 s768) +(trans s1822 s781) +(trans s1823 s762) +(trans s1823 s775) +(trans s1823 s788) +(trans s1824 s769) +(trans s1824 s782) +(trans s1824 s795) +(trans s1825 s776) +(trans s1825 s789) +(trans s1825 s802) +(trans s1826 s783) +(trans s1826 s796) +(trans s1826 s809) +(trans s1827 s790) +(trans s1827 s803) +(trans s1827 s816) +(trans s1828 s797) +(trans s1828 s810) +(trans s1828 s823) +(trans s1829 s804) +(trans s1829 s817) +(trans s1829 s830) +(trans s1830 s811) +(trans s1830 s824) +(trans s1830 s837) +(trans s1831 s818) +(trans s1831 s831) +(trans s1831 s844) +(trans s1832 s825) +(trans s1832 s838) +(trans s1832 s851) +(trans s1833 s832) +(trans s1833 s845) +(trans s1833 s858) +(trans s1834 s839) +(trans s1834 s852) +(trans s1834 s865) +(trans s1835 s846) +(trans s1835 s859) +(trans s1835 s872) +(trans s1836 s853) +(trans s1836 s866) +(trans s1836 s879) +(trans s1837 s860) +(trans s1837 s873) +(trans s1837 s886) +(trans s1838 s867) +(trans s1838 s880) +(trans s1838 s893) +(trans s1839 s874) +(trans s1839 s887) +(trans s1839 s900) +(trans s1840 s881) +(trans s1840 s894) +(trans s1840 s907) +(trans s1841 s888) +(trans s1841 s901) +(trans s1841 s914) +(trans s1842 s895) +(trans s1842 s908) +(trans s1842 s921) +(trans s1843 s902) +(trans s1843 s915) +(trans s1843 s928) +(trans s1844 s909) +(trans s1844 s922) +(trans s1844 s935) +(trans s1845 s916) +(trans s1845 s929) +(trans s1845 s942) +(trans s1846 s923) +(trans s1846 s936) +(trans s1846 s949) +(trans s1847 s930) +(trans s1847 s943) +(trans s1847 s956) +(trans s1848 s937) +(trans s1848 s950) +(trans s1848 s963) +(trans s1849 s944) +(trans s1849 s957) +(trans s1849 s970) +(trans s1850 s951) +(trans s1850 s964) +(trans s1850 s977) +(trans s1851 s958) +(trans s1851 s971) +(trans s1851 s984) +(trans s1852 s965) +(trans s1852 s978) +(trans s1852 s991) +(trans s1853 s972) +(trans s1853 s985) +(trans s1853 s998) +(trans s1854 s979) +(trans s1854 s992) +(trans s1854 s1005) +(trans s1855 s986) +(trans s1855 s999) +(trans s1855 s1012) +(trans s1856 s993) +(trans s1856 s1006) +(trans s1856 s1019) +(trans s1857 s1000) +(trans s1857 s1013) +(trans s1857 s1026) +(trans s1858 s1007) +(trans s1858 s1020) +(trans s1858 s1033) +(trans s1859 s1014) +(trans s1859 s1027) +(trans s1859 s1040) +(trans s1860 s1021) +(trans s1860 s1034) +(trans s1860 s1047) +(trans s1861 s1028) +(trans s1861 s1041) +(trans s1861 s1054) +(trans s1862 s1035) +(trans s1862 s1048) +(trans s1862 s1061) +(trans s1863 s1042) +(trans s1863 s1055) +(trans s1863 s1068) +(trans s1864 s1049) +(trans s1864 s1062) +(trans s1864 s1075) +(trans s1865 s1056) +(trans s1865 s1069) +(trans s1865 s1082) +(trans s1866 s1063) +(trans s1866 s1076) +(trans s1866 s1089) +(trans s1867 s1070) +(trans s1867 s1083) +(trans s1867 s1096) +(trans s1868 s1077) +(trans s1868 s1090) +(trans s1868 s1103) +(trans s1869 s1084) +(trans s1869 s1097) +(trans s1869 s1110) +(trans s1870 s1091) +(trans s1870 s1104) +(trans s1870 s1117) +(trans s1871 s1098) +(trans s1871 s1111) +(trans s1871 s1124) +(trans s1872 s1105) +(trans s1872 s1118) +(trans s1872 s1131) +(trans s1873 s1112) +(trans s1873 s1125) +(trans s1873 s1138) +(trans s1874 s1119) +(trans s1874 s1132) +(trans s1874 s1145) +(trans s1875 s1126) +(trans s1875 s1139) +(trans s1875 s1152) +(trans s1876 s1133) +(trans s1876 s1146) +(trans s1876 s1159) +(trans s1877 s1140) +(trans s1877 s1153) +(trans s1877 s1166) +(trans s1878 s1147) +(trans s1878 s1160) +(trans s1878 s1173) +(trans s1879 s1154) +(trans s1879 s1167) +(trans s1879 s1180) +(trans s1880 s1161) +(trans s1880 s1174) +(trans s1880 s1187) +(trans s1881 s1168) +(trans s1881 s1181) +(trans s1881 s1194) +(trans s1882 s1175) +(trans s1882 s1188) +(trans s1882 s1201) +(trans s1883 s1182) +(trans s1883 s1195) +(trans s1883 s1208) +(trans s1884 s1189) +(trans s1884 s1202) +(trans s1884 s1215) +(trans s1885 s1196) +(trans s1885 s1209) +(trans s1885 s1222) +(trans s1886 s1203) +(trans s1886 s1216) +(trans s1886 s1229) +(trans s1887 s1210) +(trans s1887 s1223) +(trans s1887 s1236) +(trans s1888 s1217) +(trans s1888 s1230) +(trans s1888 s1243) +(trans s1889 s1224) +(trans s1889 s1237) +(trans s1889 s1250) +(trans s1890 s1231) +(trans s1890 s1244) +(trans s1890 s1257) +(trans s1891 s1238) +(trans s1891 s1251) +(trans s1891 s1264) +(trans s1892 s1245) +(trans s1892 s1258) +(trans s1892 s1271) +(trans s1893 s1252) +(trans s1893 s1265) +(trans s1893 s1278) +(trans s1894 s1259) +(trans s1894 s1272) +(trans s1894 s1285) +(trans s1895 s1266) +(trans s1895 s1279) +(trans s1895 s1292) +(trans s1896 s1273) +(trans s1896 s1286) +(trans s1896 s1299) +(trans s1897 s1280) +(trans s1897 s1293) +(trans s1897 s1306) +(trans s1898 s1287) +(trans s1898 s1300) +(trans s1898 s1313) +(trans s1899 s1294) +(trans s1899 s1307) +(trans s1899 s1320) +(trans s1900 s1301) +(trans s1900 s1314) +(trans s1900 s1327) +(trans s1901 s1308) +(trans s1901 s1321) +(trans s1901 s1334) +(trans s1902 s1315) +(trans s1902 s1328) +(trans s1902 s1341) +(trans s1903 s1322) +(trans s1903 s1335) +(trans s1903 s1348) +(trans s1904 s1329) +(trans s1904 s1342) +(trans s1904 s1355) +(trans s1905 s1336) +(trans s1905 s1349) +(trans s1905 s1362) +(trans s1906 s1343) +(trans s1906 s1356) +(trans s1906 s1369) +(trans s1907 s1350) +(trans s1907 s1363) +(trans s1907 s1376) +(trans s1908 s1357) +(trans s1908 s1370) +(trans s1908 s1383) +(trans s1909 s1364) +(trans s1909 s1377) +(trans s1909 s1390) +(trans s1910 s1371) +(trans s1910 s1384) +(trans s1910 s1397) +(trans s1911 s1378) +(trans s1911 s1391) +(trans s1911 s1404) +(trans s1912 s1385) +(trans s1912 s1398) +(trans s1912 s1411) +(trans s1913 s1392) +(trans s1913 s1405) +(trans s1913 s1418) +(trans s1914 s1399) +(trans s1914 s1412) +(trans s1914 s1425) +(trans s1915 s1406) +(trans s1915 s1419) +(trans s1915 s1432) +(trans s1916 s1413) +(trans s1916 s1426) +(trans s1916 s1439) +(trans s1917 s1420) +(trans s1917 s1433) +(trans s1917 s1446) +(trans s1918 s1427) +(trans s1918 s1440) +(trans s1918 s1453) +(trans s1919 s1434) +(trans s1919 s1447) +(trans s1919 s1460) +(trans s1920 s1441) +(trans s1920 s1454) +(trans s1920 s1467) +(trans s1921 s1448) +(trans s1921 s1461) +(trans s1921 s1474) +(trans s1922 s1455) +(trans s1922 s1468) +(trans s1922 s1481) +(trans s1923 s1462) +(trans s1923 s1475) +(trans s1923 s1488) +(trans s1924 s1469) +(trans s1924 s1482) +(trans s1924 s1495) +(trans s1925 s1476) +(trans s1925 s1489) +(trans s1925 s1502) +(trans s1926 s1483) +(trans s1926 s1496) +(trans s1926 s1509) +(trans s1927 s1490) +(trans s1927 s1503) +(trans s1927 s1516) +(trans s1928 s1497) +(trans s1928 s1510) +(trans s1928 s1523) +(trans s1929 s1504) +(trans s1929 s1517) +(trans s1929 s1530) +(trans s1930 s1511) +(trans s1930 s1524) +(trans s1930 s1537) +(trans s1931 s1518) +(trans s1931 s1531) +(trans s1931 s1544) +(trans s1932 s1525) +(trans s1932 s1538) +(trans s1932 s1551) +(trans s1933 s1532) +(trans s1933 s1545) +(trans s1933 s1558) +(trans s1934 s1539) +(trans s1934 s1552) +(trans s1934 s1565) +(trans s1935 s1546) +(trans s1935 s1559) +(trans s1935 s1572) +(trans s1936 s1553) +(trans s1936 s1566) +(trans s1936 s1579) +(trans s1937 s1560) +(trans s1937 s1573) +(trans s1937 s1586) +(trans s1938 s1567) +(trans s1938 s1580) +(trans s1938 s1593) +(trans s1939 s1574) +(trans s1939 s1587) +(trans s1939 s1600) +(trans s1940 s1581) +(trans s1940 s1594) +(trans s1940 s1607) +(trans s1941 s1588) +(trans s1941 s1601) +(trans s1941 s1614) +(trans s1942 s1595) +(trans s1942 s1608) +(trans s1942 s1621) +(trans s1943 s1602) +(trans s1943 s1615) +(trans s1943 s1628) +(trans s1944 s1609) +(trans s1944 s1622) +(trans s1944 s1635) +(trans s1945 s1616) +(trans s1945 s1629) +(trans s1945 s1642) +(trans s1946 s1623) +(trans s1946 s1636) +(trans s1946 s1649) +(trans s1947 s1630) +(trans s1947 s1643) +(trans s1947 s1656) +(trans s1948 s1637) +(trans s1948 s1650) +(trans s1948 s1663) +(trans s1949 s1644) +(trans s1949 s1657) +(trans s1949 s1670) +(trans s1950 s1651) +(trans s1950 s1664) +(trans s1950 s1677) +(trans s1951 s1658) +(trans s1951 s1671) +(trans s1951 s1684) +(trans s1952 s1665) +(trans s1952 s1678) +(trans s1952 s1691) +(trans s1953 s1672) +(trans s1953 s1685) +(trans s1953 s1698) +(trans s1954 s1679) +(trans s1954 s1692) +(trans s1954 s1705) +(trans s1955 s1686) +(trans s1955 s1699) +(trans s1955 s1712) +(trans s1956 s1693) +(trans s1956 s1706) +(trans s1956 s1719) +(trans s1957 s1700) +(trans s1957 s1713) +(trans s1957 s1726) +(trans s1958 s1707) +(trans s1958 s1720) +(trans s1958 s1733) +(trans s1959 s1714) +(trans s1959 s1727) +(trans s1959 s1740) +(trans s1960 s1721) +(trans s1960 s1734) +(trans s1960 s1747) +(trans s1961 s1728) +(trans s1961 s1741) +(trans s1961 s1754) +(trans s1962 s1735) +(trans s1962 s1748) +(trans s1962 s1761) +(trans s1963 s1742) +(trans s1963 s1755) +(trans s1963 s1768) +(trans s1964 s1749) +(trans s1964 s1762) +(trans s1964 s1775) +(trans s1965 s1756) +(trans s1965 s1769) +(trans s1965 s1782) +(trans s1966 s1763) +(trans s1966 s1776) +(trans s1966 s1789) +(trans s1967 s1770) +(trans s1967 s1783) +(trans s1967 s1796) +(trans s1968 s1777) +(trans s1968 s1790) +(trans s1968 s1803) +(trans s1969 s1784) +(trans s1969 s1797) +(trans s1969 s1810) +(trans s1970 s1791) +(trans s1970 s1804) +(trans s1970 s1817) +(trans s1971 s1798) +(trans s1971 s1811) +(trans s1971 s1824) +(trans s1972 s1805) +(trans s1972 s1818) +(trans s1972 s1831) +(trans s1973 s1812) +(trans s1973 s1825) +(trans s1973 s1838) +(trans s1974 s1819) +(trans s1974 s1832) +(trans s1974 s1845) +(trans s1975 s1826) +(trans s1975 s1839) +(trans s1975 s1852) +(trans s1976 s1833) +(trans s1976 s1846) +(trans s1976 s1859) +(trans s1977 s1840) +(trans s1977 s1853) +(trans s1977 s1866) +(trans s1978 s1847) +(trans s1978 s1860) +(trans s1978 s1873) +(trans s1979 s1854) +(trans s1979 s1867) +(trans s1979 s1880) +(trans s1980 s1861) +(trans s1980 s1874) +(trans s1980 s1887) +(trans s1981 s1868) +(trans s1981 s1881) +(trans s1981 s1894) +(trans s1982 s1875) +(trans s1982 s1888) +(trans s1982 s1901) +(trans s1983 s1882) +(trans s1983 s1895) +(trans s1983 s1908) +(trans s1984 s1889) +(trans s1984 s1902) +(trans s1984 s1915) +(trans s1985 s1896) +(trans s1985 s1909) +(trans s1985 s1922) +(trans s1986 s1903) +(trans s1986 s1916) +(trans s1986 s1929) +(trans s1987 s1910) +(trans s1987 s1923) +(trans s1987 s1936) +(trans s1988 s1917) +(trans s1988 s1930) +(trans s1988 s1943) +(trans s1989 s1924) +(trans s1989 s1937) +(trans s1989 s1950) +(trans s1990 s1931) +(trans s1990 s1944) +(trans s1990 s1957) +(trans s1991 s1938) +(trans s1991 s1951) +(trans s1991 s1964) +(trans s1992 s1945) +(trans s1992 s1958) +(trans s1992 s1971) +(trans s1993 s1952) +(trans s1993 s1965) +(trans s1993 s1978) +(trans s1994 s1959) +(trans s1994 s1972) +(trans s1994 s1985) +(trans s1995 s1966) +(trans s1995 s1979) +(trans s1995 s1992) +(trans s1996 s1973) +(trans s1996 s1986) +(trans s1996 s1999) +(trans s1997 s1980) +(trans s1997 s1993) +(trans s1997 s2006) +(trans s1998 s1987) +(trans s1998 s2000) +(trans s1998 s2013) +(trans s1999 s1994) +(trans s1999 s2007) +(trans s1999 s2020) +(trans s2000 s2001) +(trans s2000 s2014) +(trans s2000 s2027) +(trans s2001 s2008) +(trans s2001 s2021) +(trans s2001 s2034) +(trans s2002 s2015) +(trans s2002 s2028) +(trans s2002 s2041) +(trans s2003 s2022) +(trans s2003 s2035) +(trans s2003 s2048) +(trans s2004 s2029) +(trans s2004 s2042) +(trans s2004 s2055) +(trans s2005 s2036) +(trans s2005 s2049) +(trans s2005 s2062) +(trans s2006 s2043) +(trans s2006 s2056) +(trans s2006 s2069) +(trans s2007 s2050) +(trans s2007 s2063) +(trans s2007 s2076) +(trans s2008 s2057) +(trans s2008 s2070) +(trans s2008 s2083) +(trans s2009 s2064) +(trans s2009 s2077) +(trans s2009 s2090) +(trans s2010 s2071) +(trans s2010 s2084) +(trans s2010 s2097) +(trans s2011 s2078) +(trans s2011 s2091) +(trans s2011 s2104) +(trans s2012 s2085) +(trans s2012 s2098) +(trans s2012 s2111) +(trans s2013 s2092) +(trans s2013 s2105) +(trans s2013 s2118) +(trans s2014 s2099) +(trans s2014 s2112) +(trans s2014 s2125) +(trans s2015 s2106) +(trans s2015 s2119) +(trans s2015 s2132) +(trans s2016 s2113) +(trans s2016 s2126) +(trans s2016 s2139) +(trans s2017 s2120) +(trans s2017 s2133) +(trans s2017 s2146) +(trans s2018 s2127) +(trans s2018 s2140) +(trans s2018 s2153) +(trans s2019 s2134) +(trans s2019 s2147) +(trans s2019 s2160) +(trans s2020 s2141) +(trans s2020 s2154) +(trans s2020 s2167) +(trans s2021 s2148) +(trans s2021 s2161) +(trans s2021 s2174) +(trans s2022 s2155) +(trans s2022 s2168) +(trans s2022 s2181) +(trans s2023 s2162) +(trans s2023 s2175) +(trans s2023 s2188) +(trans s2024 s2169) +(trans s2024 s2182) +(trans s2024 s2195) +(trans s2025 s2176) +(trans s2025 s2189) +(trans s2025 s2202) +(trans s2026 s2183) +(trans s2026 s2196) +(trans s2026 s2209) +(trans s2027 s2190) +(trans s2027 s2203) +(trans s2027 s2216) +(trans s2028 s2197) +(trans s2028 s2210) +(trans s2028 s2223) +(trans s2029 s2204) +(trans s2029 s2217) +(trans s2029 s2230) +(trans s2030 s2211) +(trans s2030 s2224) +(trans s2030 s2237) +(trans s2031 s2218) +(trans s2031 s2231) +(trans s2031 s2244) +(trans s2032 s2225) +(trans s2032 s2238) +(trans s2032 s2251) +(trans s2033 s2232) +(trans s2033 s2245) +(trans s2033 s2258) +(trans s2034 s2239) +(trans s2034 s2252) +(trans s2034 s2265) +(trans s2035 s2246) +(trans s2035 s2259) +(trans s2035 s2272) +(trans s2036 s2253) +(trans s2036 s2266) +(trans s2036 s2279) +(trans s2037 s2260) +(trans s2037 s2273) +(trans s2037 s2286) +(trans s2038 s2267) +(trans s2038 s2280) +(trans s2038 s2293) +(trans s2039 s2274) +(trans s2039 s2287) +(trans s2039 s2300) +(trans s2040 s2281) +(trans s2040 s2294) +(trans s2040 s2307) +(trans s2041 s2288) +(trans s2041 s2301) +(trans s2041 s2314) +(trans s2042 s2295) +(trans s2042 s2308) +(trans s2042 s2321) +(trans s2043 s2302) +(trans s2043 s2315) +(trans s2043 s2328) +(trans s2044 s2309) +(trans s2044 s2322) +(trans s2044 s2335) +(trans s2045 s2316) +(trans s2045 s2329) +(trans s2045 s2342) +(trans s2046 s2323) +(trans s2046 s2336) +(trans s2046 s2349) +(trans s2047 s2330) +(trans s2047 s2343) +(trans s2047 s2356) +(trans s2048 s2337) +(trans s2048 s2350) +(trans s2048 s2363) +(trans s2049 s2344) +(trans s2049 s2357) +(trans s2049 s2370) +(trans s2050 s2351) +(trans s2050 s2364) +(trans s2050 s2377) +(trans s2051 s2358) +(trans s2051 s2371) +(trans s2051 s2384) +(trans s2052 s2365) +(trans s2052 s2378) +(trans s2052 s2391) +(trans s2053 s2372) +(trans s2053 s2385) +(trans s2053 s2398) +(trans s2054 s2379) +(trans s2054 s2392) +(trans s2054 s2405) +(trans s2055 s2386) +(trans s2055 s2399) +(trans s2055 s2412) +(trans s2056 s2393) +(trans s2056 s2406) +(trans s2056 s2419) +(trans s2057 s2400) +(trans s2057 s2413) +(trans s2057 s2426) +(trans s2058 s2407) +(trans s2058 s2420) +(trans s2058 s2433) +(trans s2059 s2414) +(trans s2059 s2427) +(trans s2059 s2440) +(trans s2060 s2421) +(trans s2060 s2434) +(trans s2060 s2447) +(trans s2061 s2428) +(trans s2061 s2441) +(trans s2061 s2454) +(trans s2062 s2435) +(trans s2062 s2448) +(trans s2062 s2461) +(trans s2063 s2442) +(trans s2063 s2455) +(trans s2063 s2468) +(trans s2064 s2449) +(trans s2064 s2462) +(trans s2064 s2475) +(trans s2065 s2456) +(trans s2065 s2469) +(trans s2065 s2482) +(trans s2066 s2463) +(trans s2066 s2476) +(trans s2066 s2489) +(trans s2067 s2470) +(trans s2067 s2483) +(trans s2067 s2496) +(trans s2068 s2477) +(trans s2068 s2490) +(trans s2068 s2503) +(trans s2069 s2484) +(trans s2069 s2497) +(trans s2069 s2510) +(trans s2070 s2491) +(trans s2070 s2504) +(trans s2070 s2517) +(trans s2071 s2498) +(trans s2071 s2511) +(trans s2071 s2524) +(trans s2072 s2505) +(trans s2072 s2518) +(trans s2072 s2531) +(trans s2073 s2512) +(trans s2073 s2525) +(trans s2073 s2538) +(trans s2074 s2519) +(trans s2074 s2532) +(trans s2074 s2545) +(trans s2075 s2526) +(trans s2075 s2539) +(trans s2075 s2552) +(trans s2076 s2533) +(trans s2076 s2546) +(trans s2076 s2559) +(trans s2077 s2540) +(trans s2077 s2553) +(trans s2077 s2566) +(trans s2078 s2547) +(trans s2078 s2560) +(trans s2078 s2573) +(trans s2079 s2554) +(trans s2079 s2567) +(trans s2079 s2580) +(trans s2080 s2561) +(trans s2080 s2574) +(trans s2080 s2587) +(trans s2081 s2568) +(trans s2081 s2581) +(trans s2081 s2594) +(trans s2082 s2575) +(trans s2082 s2588) +(trans s2082 s2601) +(trans s2083 s2582) +(trans s2083 s2595) +(trans s2083 s2608) +(trans s2084 s2589) +(trans s2084 s2602) +(trans s2084 s2615) +(trans s2085 s2596) +(trans s2085 s2609) +(trans s2085 s2622) +(trans s2086 s2603) +(trans s2086 s2616) +(trans s2086 s2629) +(trans s2087 s2610) +(trans s2087 s2623) +(trans s2087 s2636) +(trans s2088 s2617) +(trans s2088 s2630) +(trans s2088 s2643) +(trans s2089 s2624) +(trans s2089 s2637) +(trans s2089 s2650) +(trans s2090 s2631) +(trans s2090 s2644) +(trans s2090 s2657) +(trans s2091 s2638) +(trans s2091 s2651) +(trans s2091 s2664) +(trans s2092 s2645) +(trans s2092 s2658) +(trans s2092 s2671) +(trans s2093 s2652) +(trans s2093 s2665) +(trans s2093 s2678) +(trans s2094 s2659) +(trans s2094 s2672) +(trans s2094 s2685) +(trans s2095 s2666) +(trans s2095 s2679) +(trans s2095 s2692) +(trans s2096 s2673) +(trans s2096 s2686) +(trans s2096 s2699) +(trans s2097 s2680) +(trans s2097 s2693) +(trans s2097 s2706) +(trans s2098 s2687) +(trans s2098 s2700) +(trans s2098 s2713) +(trans s2099 s2694) +(trans s2099 s2707) +(trans s2099 s2720) +(trans s2100 s2701) +(trans s2100 s2714) +(trans s2100 s2727) +(trans s2101 s2708) +(trans s2101 s2721) +(trans s2101 s2734) +(trans s2102 s2715) +(trans s2102 s2728) +(trans s2102 s2741) +(trans s2103 s2722) +(trans s2103 s2735) +(trans s2103 s2748) +(trans s2104 s2729) +(trans s2104 s2742) +(trans s2104 s2755) +(trans s2105 s2736) +(trans s2105 s2749) +(trans s2105 s2762) +(trans s2106 s2743) +(trans s2106 s2756) +(trans s2106 s2769) +(trans s2107 s2750) +(trans s2107 s2763) +(trans s2107 s2776) +(trans s2108 s2757) +(trans s2108 s2770) +(trans s2108 s2783) +(trans s2109 s2764) +(trans s2109 s2777) +(trans s2109 s2790) +(trans s2110 s2771) +(trans s2110 s2784) +(trans s2110 s2797) +(trans s2111 s2778) +(trans s2111 s2791) +(trans s2111 s2804) +(trans s2112 s2785) +(trans s2112 s2798) +(trans s2112 s2811) +(trans s2113 s2792) +(trans s2113 s2805) +(trans s2113 s2818) +(trans s2114 s2799) +(trans s2114 s2812) +(trans s2114 s2825) +(trans s2115 s2806) +(trans s2115 s2819) +(trans s2115 s2832) +(trans s2116 s2813) +(trans s2116 s2826) +(trans s2116 s2839) +(trans s2117 s2820) +(trans s2117 s2833) +(trans s2117 s2846) +(trans s2118 s2827) +(trans s2118 s2840) +(trans s2118 s2853) +(trans s2119 s2834) +(trans s2119 s2847) +(trans s2119 s2860) +(trans s2120 s2841) +(trans s2120 s2854) +(trans s2120 s2867) +(trans s2121 s2848) +(trans s2121 s2861) +(trans s2121 s2874) +(trans s2122 s2855) +(trans s2122 s2868) +(trans s2122 s2881) +(trans s2123 s2862) +(trans s2123 s2875) +(trans s2123 s2888) +(trans s2124 s2869) +(trans s2124 s2882) +(trans s2124 s2895) +(trans s2125 s2876) +(trans s2125 s2889) +(trans s2125 s2902) +(trans s2126 s2883) +(trans s2126 s2896) +(trans s2126 s2909) +(trans s2127 s2890) +(trans s2127 s2903) +(trans s2127 s2916) +(trans s2128 s2897) +(trans s2128 s2910) +(trans s2128 s2923) +(trans s2129 s2904) +(trans s2129 s2917) +(trans s2129 s2930) +(trans s2130 s2911) +(trans s2130 s2924) +(trans s2130 s2937) +(trans s2131 s2918) +(trans s2131 s2931) +(trans s2131 s2944) +(trans s2132 s2925) +(trans s2132 s2938) +(trans s2132 s2951) +(trans s2133 s2932) +(trans s2133 s2945) +(trans s2133 s2958) +(trans s2134 s2939) +(trans s2134 s2952) +(trans s2134 s2965) +(trans s2135 s2946) +(trans s2135 s2959) +(trans s2135 s2972) +(trans s2136 s2953) +(trans s2136 s2966) +(trans s2136 s2979) +(trans s2137 s2960) +(trans s2137 s2973) +(trans s2137 s2986) +(trans s2138 s2967) +(trans s2138 s2980) +(trans s2138 s2993) +(trans s2139 s2974) +(trans s2139 s2987) +(trans s2139 s3000) +(trans s2140 s2981) +(trans s2140 s2994) +(trans s2140 s3007) +(trans s2141 s2988) +(trans s2141 s3001) +(trans s2141 s3014) +(trans s2142 s2995) +(trans s2142 s3008) +(trans s2142 s3021) +(trans s2143 s3002) +(trans s2143 s3015) +(trans s2143 s3028) +(trans s2144 s3009) +(trans s2144 s3022) +(trans s2144 s3035) +(trans s2145 s3016) +(trans s2145 s3029) +(trans s2145 s3042) +(trans s2146 s3023) +(trans s2146 s3036) +(trans s2146 s3049) +(trans s2147 s3030) +(trans s2147 s3043) +(trans s2147 s3056) +(trans s2148 s3037) +(trans s2148 s3050) +(trans s2148 s3063) +(trans s2149 s3044) +(trans s2149 s3057) +(trans s2149 s3070) +(trans s2150 s3051) +(trans s2150 s3064) +(trans s2150 s3077) +(trans s2151 s3058) +(trans s2151 s3071) +(trans s2151 s3084) +(trans s2152 s3065) +(trans s2152 s3078) +(trans s2152 s3091) +(trans s2153 s3072) +(trans s2153 s3085) +(trans s2153 s3098) +(trans s2154 s3079) +(trans s2154 s3092) +(trans s2154 s3105) +(trans s2155 s3086) +(trans s2155 s3099) +(trans s2155 s3112) +(trans s2156 s3093) +(trans s2156 s3106) +(trans s2156 s3119) +(trans s2157 s3100) +(trans s2157 s3113) +(trans s2157 s3126) +(trans s2158 s3107) +(trans s2158 s3120) +(trans s2158 s3133) +(trans s2159 s3114) +(trans s2159 s3127) +(trans s2159 s3140) +(trans s2160 s3121) +(trans s2160 s3134) +(trans s2160 s3147) +(trans s2161 s3128) +(trans s2161 s3141) +(trans s2161 s3154) +(trans s2162 s3135) +(trans s2162 s3148) +(trans s2162 s3161) +(trans s2163 s3142) +(trans s2163 s3155) +(trans s2163 s3168) +(trans s2164 s3149) +(trans s2164 s3162) +(trans s2164 s3175) +(trans s2165 s3156) +(trans s2165 s3169) +(trans s2165 s3182) +(trans s2166 s3163) +(trans s2166 s3176) +(trans s2166 s3189) +(trans s2167 s3170) +(trans s2167 s3183) +(trans s2167 s3196) +(trans s2168 s3177) +(trans s2168 s3190) +(trans s2168 s3203) +(trans s2169 s3184) +(trans s2169 s3197) +(trans s2169 s3210) +(trans s2170 s3191) +(trans s2170 s3204) +(trans s2170 s3217) +(trans s2171 s3198) +(trans s2171 s3211) +(trans s2171 s3224) +(trans s2172 s3205) +(trans s2172 s3218) +(trans s2172 s3231) +(trans s2173 s3212) +(trans s2173 s3225) +(trans s2173 s3238) +(trans s2174 s3219) +(trans s2174 s3232) +(trans s2174 s3245) +(trans s2175 s3226) +(trans s2175 s3239) +(trans s2175 s3252) +(trans s2176 s3233) +(trans s2176 s3246) +(trans s2176 s3259) +(trans s2177 s3240) +(trans s2177 s3253) +(trans s2177 s3266) +(trans s2178 s3247) +(trans s2178 s3260) +(trans s2178 s3273) +(trans s2179 s3254) +(trans s2179 s3267) +(trans s2179 s3280) +(trans s2180 s3261) +(trans s2180 s3274) +(trans s2180 s3287) +(trans s2181 s3268) +(trans s2181 s3281) +(trans s2181 s3294) +(trans s2182 s3275) +(trans s2182 s3288) +(trans s2182 s3301) +(trans s2183 s3282) +(trans s2183 s3295) +(trans s2183 s3308) +(trans s2184 s3289) +(trans s2184 s3302) +(trans s2184 s3315) +(trans s2185 s3296) +(trans s2185 s3309) +(trans s2185 s3322) +(trans s2186 s3303) +(trans s2186 s3316) +(trans s2186 s3329) +(trans s2187 s3310) +(trans s2187 s3323) +(trans s2187 s3336) +(trans s2188 s3317) +(trans s2188 s3330) +(trans s2188 s3343) +(trans s2189 s3324) +(trans s2189 s3337) +(trans s2189 s3350) +(trans s2190 s3331) +(trans s2190 s3344) +(trans s2190 s3357) +(trans s2191 s3338) +(trans s2191 s3351) +(trans s2191 s3364) +(trans s2192 s3345) +(trans s2192 s3358) +(trans s2192 s3371) +(trans s2193 s3352) +(trans s2193 s3365) +(trans s2193 s3378) +(trans s2194 s3359) +(trans s2194 s3372) +(trans s2194 s3385) +(trans s2195 s3366) +(trans s2195 s3379) +(trans s2195 s3392) +(trans s2196 s3373) +(trans s2196 s3386) +(trans s2196 s3399) +(trans s2197 s3380) +(trans s2197 s3393) +(trans s2197 s3406) +(trans s2198 s3387) +(trans s2198 s3400) +(trans s2198 s3413) +(trans s2199 s3394) +(trans s2199 s3407) +(trans s2199 s3420) +(trans s2200 s3401) +(trans s2200 s3414) +(trans s2200 s3427) +(trans s2201 s3408) +(trans s2201 s3421) +(trans s2201 s3434) +(trans s2202 s3415) +(trans s2202 s3428) +(trans s2202 s3441) +(trans s2203 s3422) +(trans s2203 s3435) +(trans s2203 s3448) +(trans s2204 s3429) +(trans s2204 s3442) +(trans s2204 s3455) +(trans s2205 s3436) +(trans s2205 s3449) +(trans s2205 s3462) +(trans s2206 s3443) +(trans s2206 s3456) +(trans s2206 s3469) +(trans s2207 s3450) +(trans s2207 s3463) +(trans s2207 s3476) +(trans s2208 s3457) +(trans s2208 s3470) +(trans s2208 s3483) +(trans s2209 s3464) +(trans s2209 s3477) +(trans s2209 s3490) +(trans s2210 s3471) +(trans s2210 s3484) +(trans s2210 s3497) +(trans s2211 s3478) +(trans s2211 s3491) +(trans s2211 s3504) +(trans s2212 s3485) +(trans s2212 s3498) +(trans s2212 s3511) +(trans s2213 s3492) +(trans s2213 s3505) +(trans s2213 s3518) +(trans s2214 s3499) +(trans s2214 s3512) +(trans s2214 s3525) +(trans s2215 s3506) +(trans s2215 s3519) +(trans s2215 s3532) +(trans s2216 s3513) +(trans s2216 s3526) +(trans s2216 s3539) +(trans s2217 s3520) +(trans s2217 s3533) +(trans s2217 s3546) +(trans s2218 s3527) +(trans s2218 s3540) +(trans s2218 s3553) +(trans s2219 s3534) +(trans s2219 s3547) +(trans s2219 s3560) +(trans s2220 s3541) +(trans s2220 s3554) +(trans s2220 s3567) +(trans s2221 s3548) +(trans s2221 s3561) +(trans s2221 s3574) +(trans s2222 s3555) +(trans s2222 s3568) +(trans s2222 s3581) +(trans s2223 s3562) +(trans s2223 s3575) +(trans s2223 s3588) +(trans s2224 s3569) +(trans s2224 s3582) +(trans s2224 s3595) +(trans s2225 s3576) +(trans s2225 s3589) +(trans s2225 s3602) +(trans s2226 s3583) +(trans s2226 s3596) +(trans s2226 s3609) +(trans s2227 s3590) +(trans s2227 s3603) +(trans s2227 s3616) +(trans s2228 s3597) +(trans s2228 s3610) +(trans s2228 s3623) +(trans s2229 s3604) +(trans s2229 s3617) +(trans s2229 s3630) +(trans s2230 s3611) +(trans s2230 s3624) +(trans s2230 s3637) +(trans s2231 s3618) +(trans s2231 s3631) +(trans s2231 s3644) +(trans s2232 s3625) +(trans s2232 s3638) +(trans s2232 s3651) +(trans s2233 s3632) +(trans s2233 s3645) +(trans s2233 s3658) +(trans s2234 s3639) +(trans s2234 s3652) +(trans s2234 s3665) +(trans s2235 s3646) +(trans s2235 s3659) +(trans s2235 s3672) +(trans s2236 s3653) +(trans s2236 s3666) +(trans s2236 s3679) +(trans s2237 s3660) +(trans s2237 s3673) +(trans s2237 s3686) +(trans s2238 s3667) +(trans s2238 s3680) +(trans s2238 s3693) +(trans s2239 s3674) +(trans s2239 s3687) +(trans s2239 s3700) +(trans s2240 s3681) +(trans s2240 s3694) +(trans s2240 s3707) +(trans s2241 s3688) +(trans s2241 s3701) +(trans s2241 s3714) +(trans s2242 s3695) +(trans s2242 s3708) +(trans s2242 s3721) +(trans s2243 s3702) +(trans s2243 s3715) +(trans s2243 s3728) +(trans s2244 s3709) +(trans s2244 s3722) +(trans s2244 s3735) +(trans s2245 s3716) +(trans s2245 s3729) +(trans s2245 s3742) +(trans s2246 s3723) +(trans s2246 s3736) +(trans s2246 s3749) +(trans s2247 s3730) +(trans s2247 s3743) +(trans s2247 s3756) +(trans s2248 s3737) +(trans s2248 s3750) +(trans s2248 s3763) +(trans s2249 s3744) +(trans s2249 s3757) +(trans s2249 s3770) +(trans s2250 s3751) +(trans s2250 s3764) +(trans s2250 s3777) +(trans s2251 s3758) +(trans s2251 s3771) +(trans s2251 s3784) +(trans s2252 s3765) +(trans s2252 s3778) +(trans s2252 s3791) +(trans s2253 s3772) +(trans s2253 s3785) +(trans s2253 s3798) +(trans s2254 s3779) +(trans s2254 s3792) +(trans s2254 s3805) +(trans s2255 s3786) +(trans s2255 s3799) +(trans s2255 s3812) +(trans s2256 s3793) +(trans s2256 s3806) +(trans s2256 s3819) +(trans s2257 s3800) +(trans s2257 s3813) +(trans s2257 s3826) +(trans s2258 s3807) +(trans s2258 s3820) +(trans s2258 s3833) +(trans s2259 s3814) +(trans s2259 s3827) +(trans s2259 s3840) +(trans s2260 s3821) +(trans s2260 s3834) +(trans s2260 s3847) +(trans s2261 s3828) +(trans s2261 s3841) +(trans s2261 s3854) +(trans s2262 s3835) +(trans s2262 s3848) +(trans s2262 s3861) +(trans s2263 s3842) +(trans s2263 s3855) +(trans s2263 s3868) +(trans s2264 s3849) +(trans s2264 s3862) +(trans s2264 s3875) +(trans s2265 s3856) +(trans s2265 s3869) +(trans s2265 s3882) +(trans s2266 s3863) +(trans s2266 s3876) +(trans s2266 s3889) +(trans s2267 s3870) +(trans s2267 s3883) +(trans s2267 s3896) +(trans s2268 s3877) +(trans s2268 s3890) +(trans s2268 s3903) +(trans s2269 s3884) +(trans s2269 s3897) +(trans s2269 s3910) +(trans s2270 s3891) +(trans s2270 s3904) +(trans s2270 s3917) +(trans s2271 s3898) +(trans s2271 s3911) +(trans s2271 s3924) +(trans s2272 s3905) +(trans s2272 s3918) +(trans s2272 s3931) +(trans s2273 s3912) +(trans s2273 s3925) +(trans s2273 s3938) +(trans s2274 s3919) +(trans s2274 s3932) +(trans s2274 s3945) +(trans s2275 s3926) +(trans s2275 s3939) +(trans s2275 s3952) +(trans s2276 s3933) +(trans s2276 s3946) +(trans s2276 s3959) +(trans s2277 s3940) +(trans s2277 s3953) +(trans s2277 s3966) +(trans s2278 s3947) +(trans s2278 s3960) +(trans s2278 s3973) +(trans s2279 s3954) +(trans s2279 s3967) +(trans s2279 s3980) +(trans s2280 s3961) +(trans s2280 s3974) +(trans s2280 s3987) +(trans s2281 s3968) +(trans s2281 s3981) +(trans s2281 s3994) +(trans s2282 s3975) +(trans s2282 s3988) +(trans s2282 s4001) +(trans s2283 s3982) +(trans s2283 s3995) +(trans s2283 s4008) +(trans s2284 s3989) +(trans s2284 s4002) +(trans s2284 s4015) +(trans s2285 s3996) +(trans s2285 s4009) +(trans s2285 s4022) +(trans s2286 s4003) +(trans s2286 s4016) +(trans s2286 s4029) +(trans s2287 s4010) +(trans s2287 s4023) +(trans s2287 s4036) +(trans s2288 s4017) +(trans s2288 s4030) +(trans s2288 s4043) +(trans s2289 s4024) +(trans s2289 s4037) +(trans s2289 s4050) +(trans s2290 s4031) +(trans s2290 s4044) +(trans s2290 s4057) +(trans s2291 s4038) +(trans s2291 s4051) +(trans s2291 s4064) +(trans s2292 s4045) +(trans s2292 s4058) +(trans s2292 s4071) +(trans s2293 s4052) +(trans s2293 s4065) +(trans s2293 s4078) +(trans s2294 s4059) +(trans s2294 s4072) +(trans s2294 s4085) +(trans s2295 s4066) +(trans s2295 s4079) +(trans s2295 s4092) +(trans s2296 s4073) +(trans s2296 s4086) +(trans s2296 s4099) +(trans s2297 s4080) +(trans s2297 s4093) +(trans s2297 s4106) +(trans s2298 s4087) +(trans s2298 s4100) +(trans s2298 s4113) +(trans s2299 s4094) +(trans s2299 s4107) +(trans s2299 s4120) +(trans s2300 s4101) +(trans s2300 s4114) +(trans s2300 s4127) +(trans s2301 s4108) +(trans s2301 s4121) +(trans s2301 s4134) +(trans s2302 s4115) +(trans s2302 s4128) +(trans s2302 s4141) +(trans s2303 s4122) +(trans s2303 s4135) +(trans s2303 s4148) +(trans s2304 s4129) +(trans s2304 s4142) +(trans s2304 s4155) +(trans s2305 s4136) +(trans s2305 s4149) +(trans s2305 s4162) +(trans s2306 s4143) +(trans s2306 s4156) +(trans s2306 s4169) +(trans s2307 s4150) +(trans s2307 s4163) +(trans s2307 s4176) +(trans s2308 s4157) +(trans s2308 s4170) +(trans s2308 s4183) +(trans s2309 s4164) +(trans s2309 s4177) +(trans s2309 s4190) +(trans s2310 s4171) +(trans s2310 s4184) +(trans s2310 s4197) +(trans s2311 s4178) +(trans s2311 s4191) +(trans s2311 s4204) +(trans s2312 s4185) +(trans s2312 s4198) +(trans s2312 s4211) +(trans s2313 s4192) +(trans s2313 s4205) +(trans s2313 s4218) +(trans s2314 s4199) +(trans s2314 s4212) +(trans s2314 s4225) +(trans s2315 s4206) +(trans s2315 s4219) +(trans s2315 s4232) +(trans s2316 s4213) +(trans s2316 s4226) +(trans s2316 s4239) +(trans s2317 s4220) +(trans s2317 s4233) +(trans s2317 s4246) +(trans s2318 s4227) +(trans s2318 s4240) +(trans s2318 s4253) +(trans s2319 s4234) +(trans s2319 s4247) +(trans s2319 s4260) +(trans s2320 s4241) +(trans s2320 s4254) +(trans s2320 s4267) +(trans s2321 s4248) +(trans s2321 s4261) +(trans s2321 s4274) +(trans s2322 s4255) +(trans s2322 s4268) +(trans s2322 s4281) +(trans s2323 s4262) +(trans s2323 s4275) +(trans s2323 s4288) +(trans s2324 s4269) +(trans s2324 s4282) +(trans s2324 s4295) +(trans s2325 s4276) +(trans s2325 s4289) +(trans s2325 s4302) +(trans s2326 s4283) +(trans s2326 s4296) +(trans s2326 s4309) +(trans s2327 s4290) +(trans s2327 s4303) +(trans s2327 s4316) +(trans s2328 s4297) +(trans s2328 s4310) +(trans s2328 s4323) +(trans s2329 s4304) +(trans s2329 s4317) +(trans s2329 s4330) +(trans s2330 s4311) +(trans s2330 s4324) +(trans s2330 s4337) +(trans s2331 s4318) +(trans s2331 s4331) +(trans s2331 s4344) +(trans s2332 s4325) +(trans s2332 s4338) +(trans s2332 s4351) +(trans s2333 s4332) +(trans s2333 s4345) +(trans s2333 s4358) +(trans s2334 s4339) +(trans s2334 s4352) +(trans s2334 s4365) +(trans s2335 s4346) +(trans s2335 s4359) +(trans s2335 s4372) +(trans s2336 s4353) +(trans s2336 s4366) +(trans s2336 s4379) +(trans s2337 s4360) +(trans s2337 s4373) +(trans s2337 s4386) +(trans s2338 s4367) +(trans s2338 s4380) +(trans s2338 s4393) +(trans s2339 s4374) +(trans s2339 s4387) +(trans s2339 s4400) +(trans s2340 s4381) +(trans s2340 s4394) +(trans s2340 s4407) +(trans s2341 s4388) +(trans s2341 s4401) +(trans s2341 s4414) +(trans s2342 s4395) +(trans s2342 s4408) +(trans s2342 s4421) +(trans s2343 s4402) +(trans s2343 s4415) +(trans s2343 s4428) +(trans s2344 s4409) +(trans s2344 s4422) +(trans s2344 s4435) +(trans s2345 s4416) +(trans s2345 s4429) +(trans s2345 s4442) +(trans s2346 s4423) +(trans s2346 s4436) +(trans s2346 s4449) +(trans s2347 s4430) +(trans s2347 s4443) +(trans s2347 s4456) +(trans s2348 s4437) +(trans s2348 s4450) +(trans s2348 s4463) +(trans s2349 s4444) +(trans s2349 s4457) +(trans s2349 s4470) +(trans s2350 s4451) +(trans s2350 s4464) +(trans s2350 s4477) +(trans s2351 s4458) +(trans s2351 s4471) +(trans s2351 s4484) +(trans s2352 s4465) +(trans s2352 s4478) +(trans s2352 s4491) +(trans s2353 s4472) +(trans s2353 s4485) +(trans s2353 s4498) +(trans s2354 s4479) +(trans s2354 s4492) +(trans s2354 s4505) +(trans s2355 s4486) +(trans s2355 s4499) +(trans s2355 s4512) +(trans s2356 s4493) +(trans s2356 s4506) +(trans s2356 s4519) +(trans s2357 s4500) +(trans s2357 s4513) +(trans s2357 s4526) +(trans s2358 s4507) +(trans s2358 s4520) +(trans s2358 s4533) +(trans s2359 s4514) +(trans s2359 s4527) +(trans s2359 s4540) +(trans s2360 s4521) +(trans s2360 s4534) +(trans s2360 s4547) +(trans s2361 s4528) +(trans s2361 s4541) +(trans s2361 s4554) +(trans s2362 s4535) +(trans s2362 s4548) +(trans s2362 s4561) +(trans s2363 s4542) +(trans s2363 s4555) +(trans s2363 s4568) +(trans s2364 s4549) +(trans s2364 s4562) +(trans s2364 s4575) +(trans s2365 s4556) +(trans s2365 s4569) +(trans s2365 s4582) +(trans s2366 s4563) +(trans s2366 s4576) +(trans s2366 s4589) +(trans s2367 s4570) +(trans s2367 s4583) +(trans s2367 s4596) +(trans s2368 s4577) +(trans s2368 s4590) +(trans s2368 s4603) +(trans s2369 s4584) +(trans s2369 s4597) +(trans s2369 s4610) +(trans s2370 s4591) +(trans s2370 s4604) +(trans s2370 s4617) +(trans s2371 s4598) +(trans s2371 s4611) +(trans s2371 s4624) +(trans s2372 s4605) +(trans s2372 s4618) +(trans s2372 s4631) +(trans s2373 s4612) +(trans s2373 s4625) +(trans s2373 s4638) +(trans s2374 s4619) +(trans s2374 s4632) +(trans s2374 s4645) +(trans s2375 s4626) +(trans s2375 s4639) +(trans s2375 s4652) +(trans s2376 s4633) +(trans s2376 s4646) +(trans s2376 s4659) +(trans s2377 s4640) +(trans s2377 s4653) +(trans s2377 s4666) +(trans s2378 s4647) +(trans s2378 s4660) +(trans s2378 s4673) +(trans s2379 s4654) +(trans s2379 s4667) +(trans s2379 s4680) +(trans s2380 s4661) +(trans s2380 s4674) +(trans s2380 s4687) +(trans s2381 s4668) +(trans s2381 s4681) +(trans s2381 s4694) +(trans s2382 s4675) +(trans s2382 s4688) +(trans s2382 s4701) +(trans s2383 s4682) +(trans s2383 s4695) +(trans s2383 s4708) +(trans s2384 s4689) +(trans s2384 s4702) +(trans s2384 s4715) +(trans s2385 s4696) +(trans s2385 s4709) +(trans s2385 s4722) +(trans s2386 s4703) +(trans s2386 s4716) +(trans s2386 s4729) +(trans s2387 s4710) +(trans s2387 s4723) +(trans s2387 s4736) +(trans s2388 s4717) +(trans s2388 s4730) +(trans s2388 s4743) +(trans s2389 s4724) +(trans s2389 s4737) +(trans s2389 s4750) +(trans s2390 s4731) +(trans s2390 s4744) +(trans s2390 s4757) +(trans s2391 s4738) +(trans s2391 s4751) +(trans s2391 s4764) +(trans s2392 s4745) +(trans s2392 s4758) +(trans s2392 s4771) +(trans s2393 s4752) +(trans s2393 s4765) +(trans s2393 s4778) +(trans s2394 s4759) +(trans s2394 s4772) +(trans s2394 s4785) +(trans s2395 s4766) +(trans s2395 s4779) +(trans s2395 s4792) +(trans s2396 s4773) +(trans s2396 s4786) +(trans s2396 s4799) +(trans s2397 s4780) +(trans s2397 s4793) +(trans s2397 s4806) +(trans s2398 s4787) +(trans s2398 s4800) +(trans s2398 s4813) +(trans s2399 s4794) +(trans s2399 s4807) +(trans s2399 s4820) +(trans s2400 s4801) +(trans s2400 s4814) +(trans s2400 s4827) +(trans s2401 s4808) +(trans s2401 s4821) +(trans s2401 s4834) +(trans s2402 s4815) +(trans s2402 s4828) +(trans s2402 s4841) +(trans s2403 s4822) +(trans s2403 s4835) +(trans s2403 s4848) +(trans s2404 s4829) +(trans s2404 s4842) +(trans s2404 s4855) +(trans s2405 s4836) +(trans s2405 s4849) +(trans s2405 s4862) +(trans s2406 s4843) +(trans s2406 s4856) +(trans s2406 s4869) +(trans s2407 s4850) +(trans s2407 s4863) +(trans s2407 s4876) +(trans s2408 s4857) +(trans s2408 s4870) +(trans s2408 s4883) +(trans s2409 s4864) +(trans s2409 s4877) +(trans s2409 s4890) +(trans s2410 s4871) +(trans s2410 s4884) +(trans s2410 s4897) +(trans s2411 s4878) +(trans s2411 s4891) +(trans s2411 s4904) +(trans s2412 s4885) +(trans s2412 s4898) +(trans s2412 s4911) +(trans s2413 s4892) +(trans s2413 s4905) +(trans s2413 s4918) +(trans s2414 s4899) +(trans s2414 s4912) +(trans s2414 s4925) +(trans s2415 s4906) +(trans s2415 s4919) +(trans s2415 s4932) +(trans s2416 s4913) +(trans s2416 s4926) +(trans s2416 s4939) +(trans s2417 s4920) +(trans s2417 s4933) +(trans s2417 s4946) +(trans s2418 s4927) +(trans s2418 s4940) +(trans s2418 s4953) +(trans s2419 s4934) +(trans s2419 s4947) +(trans s2419 s4960) +(trans s2420 s4941) +(trans s2420 s4954) +(trans s2420 s4967) +(trans s2421 s4948) +(trans s2421 s4961) +(trans s2421 s4974) +(trans s2422 s4955) +(trans s2422 s4968) +(trans s2422 s4981) +(trans s2423 s4962) +(trans s2423 s4975) +(trans s2423 s4988) +(trans s2424 s4969) +(trans s2424 s4982) +(trans s2424 s4995) +(trans s2425 s4976) +(trans s2425 s4989) +(trans s2425 s5002) +(trans s2426 s4983) +(trans s2426 s4996) +(trans s2426 s5009) +(trans s2427 s4990) +(trans s2427 s5003) +(trans s2427 s5016) +(trans s2428 s4997) +(trans s2428 s5010) +(trans s2428 s5023) +(trans s2429 s5004) +(trans s2429 s5017) +(trans s2429 s5030) +(trans s2430 s5011) +(trans s2430 s5024) +(trans s2430 s5037) +(trans s2431 s5018) +(trans s2431 s5031) +(trans s2431 s5044) +(trans s2432 s5025) +(trans s2432 s5038) +(trans s2432 s5051) +(trans s2433 s5032) +(trans s2433 s5045) +(trans s2433 s5058) +(trans s2434 s5039) +(trans s2434 s5052) +(trans s2434 s5065) +(trans s2435 s5046) +(trans s2435 s5059) +(trans s2435 s5072) +(trans s2436 s5053) +(trans s2436 s5066) +(trans s2436 s5079) +(trans s2437 s5060) +(trans s2437 s5073) +(trans s2437 s5086) +(trans s2438 s5067) +(trans s2438 s5080) +(trans s2438 s5093) +(trans s2439 s5074) +(trans s2439 s5087) +(trans s2439 s5100) +(trans s2440 s5081) +(trans s2440 s5094) +(trans s2440 s5107) +(trans s2441 s5088) +(trans s2441 s5101) +(trans s2441 s5114) +(trans s2442 s5095) +(trans s2442 s5108) +(trans s2442 s5121) +(trans s2443 s5102) +(trans s2443 s5115) +(trans s2443 s5128) +(trans s2444 s5109) +(trans s2444 s5122) +(trans s2444 s5135) +(trans s2445 s5116) +(trans s2445 s5129) +(trans s2445 s5142) +(trans s2446 s5123) +(trans s2446 s5136) +(trans s2446 s5149) +(trans s2447 s5130) +(trans s2447 s5143) +(trans s2447 s5156) +(trans s2448 s5137) +(trans s2448 s5150) +(trans s2448 s5163) +(trans s2449 s5144) +(trans s2449 s5157) +(trans s2449 s5170) +(trans s2450 s5151) +(trans s2450 s5164) +(trans s2450 s5177) +(trans s2451 s5158) +(trans s2451 s5171) +(trans s2451 s5184) +(trans s2452 s5165) +(trans s2452 s5178) +(trans s2452 s5191) +(trans s2453 s5172) +(trans s2453 s5185) +(trans s2453 s5198) +(trans s2454 s5179) +(trans s2454 s5192) +(trans s2454 s5205) +(trans s2455 s5186) +(trans s2455 s5199) +(trans s2455 s5212) +(trans s2456 s5193) +(trans s2456 s5206) +(trans s2456 s5219) +(trans s2457 s5200) +(trans s2457 s5213) +(trans s2457 s5226) +(trans s2458 s5207) +(trans s2458 s5220) +(trans s2458 s5233) +(trans s2459 s5214) +(trans s2459 s5227) +(trans s2459 s5240) +(trans s2460 s5221) +(trans s2460 s5234) +(trans s2460 s5247) +(trans s2461 s5228) +(trans s2461 s5241) +(trans s2461 s5254) +(trans s2462 s5235) +(trans s2462 s5248) +(trans s2462 s5261) +(trans s2463 s5242) +(trans s2463 s5255) +(trans s2463 s5268) +(trans s2464 s5249) +(trans s2464 s5262) +(trans s2464 s5275) +(trans s2465 s5256) +(trans s2465 s5269) +(trans s2465 s5282) +(trans s2466 s5263) +(trans s2466 s5276) +(trans s2466 s5289) +(trans s2467 s5270) +(trans s2467 s5283) +(trans s2467 s5296) +(trans s2468 s5277) +(trans s2468 s5290) +(trans s2468 s5303) +(trans s2469 s5284) +(trans s2469 s5297) +(trans s2469 s5310) +(trans s2470 s5291) +(trans s2470 s5304) +(trans s2470 s5317) +(trans s2471 s5298) +(trans s2471 s5311) +(trans s2471 s5324) +(trans s2472 s5305) +(trans s2472 s5318) +(trans s2472 s5331) +(trans s2473 s5312) +(trans s2473 s5325) +(trans s2473 s5338) +(trans s2474 s5319) +(trans s2474 s5332) +(trans s2474 s5345) +(trans s2475 s5326) +(trans s2475 s5339) +(trans s2475 s5352) +(trans s2476 s5333) +(trans s2476 s5346) +(trans s2476 s5359) +(trans s2477 s5340) +(trans s2477 s5353) +(trans s2477 s5366) +(trans s2478 s5347) +(trans s2478 s5360) +(trans s2478 s5373) +(trans s2479 s5354) +(trans s2479 s5367) +(trans s2479 s5380) +(trans s2480 s5361) +(trans s2480 s5374) +(trans s2480 s5387) +(trans s2481 s5368) +(trans s2481 s5381) +(trans s2481 s5394) +(trans s2482 s5375) +(trans s2482 s5388) +(trans s2482 s5401) +(trans s2483 s5382) +(trans s2483 s5395) +(trans s2483 s5408) +(trans s2484 s5389) +(trans s2484 s5402) +(trans s2484 s5415) +(trans s2485 s5396) +(trans s2485 s5409) +(trans s2485 s5422) +(trans s2486 s5403) +(trans s2486 s5416) +(trans s2486 s5429) +(trans s2487 s5410) +(trans s2487 s5423) +(trans s2487 s5436) +(trans s2488 s5417) +(trans s2488 s5430) +(trans s2488 s5443) +(trans s2489 s5424) +(trans s2489 s5437) +(trans s2489 s5450) +(trans s2490 s5431) +(trans s2490 s5444) +(trans s2490 s5457) +(trans s2491 s5438) +(trans s2491 s5451) +(trans s2491 s5464) +(trans s2492 s5445) +(trans s2492 s5458) +(trans s2492 s5471) +(trans s2493 s5452) +(trans s2493 s5465) +(trans s2493 s5478) +(trans s2494 s5459) +(trans s2494 s5472) +(trans s2494 s5485) +(trans s2495 s5466) +(trans s2495 s5479) +(trans s2495 s5492) +(trans s2496 s5473) +(trans s2496 s5486) +(trans s2496 s5499) +(trans s2497 s5480) +(trans s2497 s5493) +(trans s2497 s5506) +(trans s2498 s5487) +(trans s2498 s5500) +(trans s2498 s5513) +(trans s2499 s5494) +(trans s2499 s5507) +(trans s2499 s5520) +(trans s2500 s5501) +(trans s2500 s5514) +(trans s2500 s5527) +(trans s2501 s5508) +(trans s2501 s5521) +(trans s2501 s5534) +(trans s2502 s5515) +(trans s2502 s5528) +(trans s2502 s5541) +(trans s2503 s5522) +(trans s2503 s5535) +(trans s2503 s5548) +(trans s2504 s5529) +(trans s2504 s5542) +(trans s2504 s5555) +(trans s2505 s5536) +(trans s2505 s5549) +(trans s2505 s5562) +(trans s2506 s5543) +(trans s2506 s5556) +(trans s2506 s5569) +(trans s2507 s5550) +(trans s2507 s5563) +(trans s2507 s5576) +(trans s2508 s5557) +(trans s2508 s5570) +(trans s2508 s5583) +(trans s2509 s5564) +(trans s2509 s5577) +(trans s2509 s5590) +(trans s2510 s5571) +(trans s2510 s5584) +(trans s2510 s5597) +(trans s2511 s5578) +(trans s2511 s5591) +(trans s2511 s5604) +(trans s2512 s5585) +(trans s2512 s5598) +(trans s2512 s5611) +(trans s2513 s5592) +(trans s2513 s5605) +(trans s2513 s5618) +(trans s2514 s5599) +(trans s2514 s5612) +(trans s2514 s5625) +(trans s2515 s5606) +(trans s2515 s5619) +(trans s2515 s5632) +(trans s2516 s5613) +(trans s2516 s5626) +(trans s2516 s5639) +(trans s2517 s5620) +(trans s2517 s5633) +(trans s2517 s5646) +(trans s2518 s5627) +(trans s2518 s5640) +(trans s2518 s5653) +(trans s2519 s5634) +(trans s2519 s5647) +(trans s2519 s5660) +(trans s2520 s5641) +(trans s2520 s5654) +(trans s2520 s5667) +(trans s2521 s5648) +(trans s2521 s5661) +(trans s2521 s5674) +(trans s2522 s5655) +(trans s2522 s5668) +(trans s2522 s5681) +(trans s2523 s5662) +(trans s2523 s5675) +(trans s2523 s5688) +(trans s2524 s5669) +(trans s2524 s5682) +(trans s2524 s5695) +(trans s2525 s5676) +(trans s2525 s5689) +(trans s2525 s5702) +(trans s2526 s5683) +(trans s2526 s5696) +(trans s2526 s5709) +(trans s2527 s5690) +(trans s2527 s5703) +(trans s2527 s5716) +(trans s2528 s5697) +(trans s2528 s5710) +(trans s2528 s5723) +(trans s2529 s5704) +(trans s2529 s5717) +(trans s2529 s5730) +(trans s2530 s5711) +(trans s2530 s5724) +(trans s2530 s5737) +(trans s2531 s5718) +(trans s2531 s5731) +(trans s2531 s5744) +(trans s2532 s5725) +(trans s2532 s5738) +(trans s2532 s5751) +(trans s2533 s5732) +(trans s2533 s5745) +(trans s2533 s5758) +(trans s2534 s5739) +(trans s2534 s5752) +(trans s2534 s5765) +(trans s2535 s5746) +(trans s2535 s5759) +(trans s2535 s5772) +(trans s2536 s5753) +(trans s2536 s5766) +(trans s2536 s5779) +(trans s2537 s5760) +(trans s2537 s5773) +(trans s2537 s5786) +(trans s2538 s5767) +(trans s2538 s5780) +(trans s2538 s5793) +(trans s2539 s5774) +(trans s2539 s5787) +(trans s2539 s5800) +(trans s2540 s5781) +(trans s2540 s5794) +(trans s2540 s5807) +(trans s2541 s5788) +(trans s2541 s5801) +(trans s2541 s5814) +(trans s2542 s5795) +(trans s2542 s5808) +(trans s2542 s5821) +(trans s2543 s5802) +(trans s2543 s5815) +(trans s2543 s5828) +(trans s2544 s5809) +(trans s2544 s5822) +(trans s2544 s5835) +(trans s2545 s5816) +(trans s2545 s5829) +(trans s2545 s5842) +(trans s2546 s5823) +(trans s2546 s5836) +(trans s2546 s5849) +(trans s2547 s5830) +(trans s2547 s5843) +(trans s2547 s5856) +(trans s2548 s5837) +(trans s2548 s5850) +(trans s2548 s5863) +(trans s2549 s5844) +(trans s2549 s5857) +(trans s2549 s5870) +(trans s2550 s5851) +(trans s2550 s5864) +(trans s2550 s5877) +(trans s2551 s5858) +(trans s2551 s5871) +(trans s2551 s5884) +(trans s2552 s5865) +(trans s2552 s5878) +(trans s2552 s5891) +(trans s2553 s5872) +(trans s2553 s5885) +(trans s2553 s5898) +(trans s2554 s5879) +(trans s2554 s5892) +(trans s2554 s5905) +(trans s2555 s5886) +(trans s2555 s5899) +(trans s2555 s5912) +(trans s2556 s5893) +(trans s2556 s5906) +(trans s2556 s5919) +(trans s2557 s5900) +(trans s2557 s5913) +(trans s2557 s5926) +(trans s2558 s5907) +(trans s2558 s5920) +(trans s2558 s5933) +(trans s2559 s5914) +(trans s2559 s5927) +(trans s2559 s5940) +(trans s2560 s5921) +(trans s2560 s5934) +(trans s2560 s5947) +(trans s2561 s5928) +(trans s2561 s5941) +(trans s2561 s5954) +(trans s2562 s5935) +(trans s2562 s5948) +(trans s2562 s5961) +(trans s2563 s5942) +(trans s2563 s5955) +(trans s2563 s5968) +(trans s2564 s5949) +(trans s2564 s5962) +(trans s2564 s5975) +(trans s2565 s5956) +(trans s2565 s5969) +(trans s2565 s5982) +(trans s2566 s5963) +(trans s2566 s5976) +(trans s2566 s5989) +(trans s2567 s5970) +(trans s2567 s5983) +(trans s2567 s5996) +(trans s2568 s5977) +(trans s2568 s5990) +(trans s2568 s3) +(trans s2569 s5984) +(trans s2569 s5997) +(trans s2569 s10) +(trans s2570 s5991) +(trans s2570 s4) +(trans s2570 s17) +(trans s2571 s5998) +(trans s2571 s11) +(trans s2571 s24) +(trans s2572 s5) +(trans s2572 s18) +(trans s2572 s31) +(trans s2573 s12) +(trans s2573 s25) +(trans s2573 s38) +(trans s2574 s19) +(trans s2574 s32) +(trans s2574 s45) +(trans s2575 s26) +(trans s2575 s39) +(trans s2575 s52) +(trans s2576 s33) +(trans s2576 s46) +(trans s2576 s59) +(trans s2577 s40) +(trans s2577 s53) +(trans s2577 s66) +(trans s2578 s47) +(trans s2578 s60) +(trans s2578 s73) +(trans s2579 s54) +(trans s2579 s67) +(trans s2579 s80) +(trans s2580 s61) +(trans s2580 s74) +(trans s2580 s87) +(trans s2581 s68) +(trans s2581 s81) +(trans s2581 s94) +(trans s2582 s75) +(trans s2582 s88) +(trans s2582 s101) +(trans s2583 s82) +(trans s2583 s95) +(trans s2583 s108) +(trans s2584 s89) +(trans s2584 s102) +(trans s2584 s115) +(trans s2585 s96) +(trans s2585 s109) +(trans s2585 s122) +(trans s2586 s103) +(trans s2586 s116) +(trans s2586 s129) +(trans s2587 s110) +(trans s2587 s123) +(trans s2587 s136) +(trans s2588 s117) +(trans s2588 s130) +(trans s2588 s143) +(trans s2589 s124) +(trans s2589 s137) +(trans s2589 s150) +(trans s2590 s131) +(trans s2590 s144) +(trans s2590 s157) +(trans s2591 s138) +(trans s2591 s151) +(trans s2591 s164) +(trans s2592 s145) +(trans s2592 s158) +(trans s2592 s171) +(trans s2593 s152) +(trans s2593 s165) +(trans s2593 s178) +(trans s2594 s159) +(trans s2594 s172) +(trans s2594 s185) +(trans s2595 s166) +(trans s2595 s179) +(trans s2595 s192) +(trans s2596 s173) +(trans s2596 s186) +(trans s2596 s199) +(trans s2597 s180) +(trans s2597 s193) +(trans s2597 s206) +(trans s2598 s187) +(trans s2598 s200) +(trans s2598 s213) +(trans s2599 s194) +(trans s2599 s207) +(trans s2599 s220) +(trans s2600 s201) +(trans s2600 s214) +(trans s2600 s227) +(trans s2601 s208) +(trans s2601 s221) +(trans s2601 s234) +(trans s2602 s215) +(trans s2602 s228) +(trans s2602 s241) +(trans s2603 s222) +(trans s2603 s235) +(trans s2603 s248) +(trans s2604 s229) +(trans s2604 s242) +(trans s2604 s255) +(trans s2605 s236) +(trans s2605 s249) +(trans s2605 s262) +(trans s2606 s243) +(trans s2606 s256) +(trans s2606 s269) +(trans s2607 s250) +(trans s2607 s263) +(trans s2607 s276) +(trans s2608 s257) +(trans s2608 s270) +(trans s2608 s283) +(trans s2609 s264) +(trans s2609 s277) +(trans s2609 s290) +(trans s2610 s271) +(trans s2610 s284) +(trans s2610 s297) +(trans s2611 s278) +(trans s2611 s291) +(trans s2611 s304) +(trans s2612 s285) +(trans s2612 s298) +(trans s2612 s311) +(trans s2613 s292) +(trans s2613 s305) +(trans s2613 s318) +(trans s2614 s299) +(trans s2614 s312) +(trans s2614 s325) +(trans s2615 s306) +(trans s2615 s319) +(trans s2615 s332) +(trans s2616 s313) +(trans s2616 s326) +(trans s2616 s339) +(trans s2617 s320) +(trans s2617 s333) +(trans s2617 s346) +(trans s2618 s327) +(trans s2618 s340) +(trans s2618 s353) +(trans s2619 s334) +(trans s2619 s347) +(trans s2619 s360) +(trans s2620 s341) +(trans s2620 s354) +(trans s2620 s367) +(trans s2621 s348) +(trans s2621 s361) +(trans s2621 s374) +(trans s2622 s355) +(trans s2622 s368) +(trans s2622 s381) +(trans s2623 s362) +(trans s2623 s375) +(trans s2623 s388) +(trans s2624 s369) +(trans s2624 s382) +(trans s2624 s395) +(trans s2625 s376) +(trans s2625 s389) +(trans s2625 s402) +(trans s2626 s383) +(trans s2626 s396) +(trans s2626 s409) +(trans s2627 s390) +(trans s2627 s403) +(trans s2627 s416) +(trans s2628 s397) +(trans s2628 s410) +(trans s2628 s423) +(trans s2629 s404) +(trans s2629 s417) +(trans s2629 s430) +(trans s2630 s411) +(trans s2630 s424) +(trans s2630 s437) +(trans s2631 s418) +(trans s2631 s431) +(trans s2631 s444) +(trans s2632 s425) +(trans s2632 s438) +(trans s2632 s451) +(trans s2633 s432) +(trans s2633 s445) +(trans s2633 s458) +(trans s2634 s439) +(trans s2634 s452) +(trans s2634 s465) +(trans s2635 s446) +(trans s2635 s459) +(trans s2635 s472) +(trans s2636 s453) +(trans s2636 s466) +(trans s2636 s479) +(trans s2637 s460) +(trans s2637 s473) +(trans s2637 s486) +(trans s2638 s467) +(trans s2638 s480) +(trans s2638 s493) +(trans s2639 s474) +(trans s2639 s487) +(trans s2639 s500) +(trans s2640 s481) +(trans s2640 s494) +(trans s2640 s507) +(trans s2641 s488) +(trans s2641 s501) +(trans s2641 s514) +(trans s2642 s495) +(trans s2642 s508) +(trans s2642 s521) +(trans s2643 s502) +(trans s2643 s515) +(trans s2643 s528) +(trans s2644 s509) +(trans s2644 s522) +(trans s2644 s535) +(trans s2645 s516) +(trans s2645 s529) +(trans s2645 s542) +(trans s2646 s523) +(trans s2646 s536) +(trans s2646 s549) +(trans s2647 s530) +(trans s2647 s543) +(trans s2647 s556) +(trans s2648 s537) +(trans s2648 s550) +(trans s2648 s563) +(trans s2649 s544) +(trans s2649 s557) +(trans s2649 s570) +(trans s2650 s551) +(trans s2650 s564) +(trans s2650 s577) +(trans s2651 s558) +(trans s2651 s571) +(trans s2651 s584) +(trans s2652 s565) +(trans s2652 s578) +(trans s2652 s591) +(trans s2653 s572) +(trans s2653 s585) +(trans s2653 s598) +(trans s2654 s579) +(trans s2654 s592) +(trans s2654 s605) +(trans s2655 s586) +(trans s2655 s599) +(trans s2655 s612) +(trans s2656 s593) +(trans s2656 s606) +(trans s2656 s619) +(trans s2657 s600) +(trans s2657 s613) +(trans s2657 s626) +(trans s2658 s607) +(trans s2658 s620) +(trans s2658 s633) +(trans s2659 s614) +(trans s2659 s627) +(trans s2659 s640) +(trans s2660 s621) +(trans s2660 s634) +(trans s2660 s647) +(trans s2661 s628) +(trans s2661 s641) +(trans s2661 s654) +(trans s2662 s635) +(trans s2662 s648) +(trans s2662 s661) +(trans s2663 s642) +(trans s2663 s655) +(trans s2663 s668) +(trans s2664 s649) +(trans s2664 s662) +(trans s2664 s675) +(trans s2665 s656) +(trans s2665 s669) +(trans s2665 s682) +(trans s2666 s663) +(trans s2666 s676) +(trans s2666 s689) +(trans s2667 s670) +(trans s2667 s683) +(trans s2667 s696) +(trans s2668 s677) +(trans s2668 s690) +(trans s2668 s703) +(trans s2669 s684) +(trans s2669 s697) +(trans s2669 s710) +(trans s2670 s691) +(trans s2670 s704) +(trans s2670 s717) +(trans s2671 s698) +(trans s2671 s711) +(trans s2671 s724) +(trans s2672 s705) +(trans s2672 s718) +(trans s2672 s731) +(trans s2673 s712) +(trans s2673 s725) +(trans s2673 s738) +(trans s2674 s719) +(trans s2674 s732) +(trans s2674 s745) +(trans s2675 s726) +(trans s2675 s739) +(trans s2675 s752) +(trans s2676 s733) +(trans s2676 s746) +(trans s2676 s759) +(trans s2677 s740) +(trans s2677 s753) +(trans s2677 s766) +(trans s2678 s747) +(trans s2678 s760) +(trans s2678 s773) +(trans s2679 s754) +(trans s2679 s767) +(trans s2679 s780) +(trans s2680 s761) +(trans s2680 s774) +(trans s2680 s787) +(trans s2681 s768) +(trans s2681 s781) +(trans s2681 s794) +(trans s2682 s775) +(trans s2682 s788) +(trans s2682 s801) +(trans s2683 s782) +(trans s2683 s795) +(trans s2683 s808) +(trans s2684 s789) +(trans s2684 s802) +(trans s2684 s815) +(trans s2685 s796) +(trans s2685 s809) +(trans s2685 s822) +(trans s2686 s803) +(trans s2686 s816) +(trans s2686 s829) +(trans s2687 s810) +(trans s2687 s823) +(trans s2687 s836) +(trans s2688 s817) +(trans s2688 s830) +(trans s2688 s843) +(trans s2689 s824) +(trans s2689 s837) +(trans s2689 s850) +(trans s2690 s831) +(trans s2690 s844) +(trans s2690 s857) +(trans s2691 s838) +(trans s2691 s851) +(trans s2691 s864) +(trans s2692 s845) +(trans s2692 s858) +(trans s2692 s871) +(trans s2693 s852) +(trans s2693 s865) +(trans s2693 s878) +(trans s2694 s859) +(trans s2694 s872) +(trans s2694 s885) +(trans s2695 s866) +(trans s2695 s879) +(trans s2695 s892) +(trans s2696 s873) +(trans s2696 s886) +(trans s2696 s899) +(trans s2697 s880) +(trans s2697 s893) +(trans s2697 s906) +(trans s2698 s887) +(trans s2698 s900) +(trans s2698 s913) +(trans s2699 s894) +(trans s2699 s907) +(trans s2699 s920) +(trans s2700 s901) +(trans s2700 s914) +(trans s2700 s927) +(trans s2701 s908) +(trans s2701 s921) +(trans s2701 s934) +(trans s2702 s915) +(trans s2702 s928) +(trans s2702 s941) +(trans s2703 s922) +(trans s2703 s935) +(trans s2703 s948) +(trans s2704 s929) +(trans s2704 s942) +(trans s2704 s955) +(trans s2705 s936) +(trans s2705 s949) +(trans s2705 s962) +(trans s2706 s943) +(trans s2706 s956) +(trans s2706 s969) +(trans s2707 s950) +(trans s2707 s963) +(trans s2707 s976) +(trans s2708 s957) +(trans s2708 s970) +(trans s2708 s983) +(trans s2709 s964) +(trans s2709 s977) +(trans s2709 s990) +(trans s2710 s971) +(trans s2710 s984) +(trans s2710 s997) +(trans s2711 s978) +(trans s2711 s991) +(trans s2711 s1004) +(trans s2712 s985) +(trans s2712 s998) +(trans s2712 s1011) +(trans s2713 s992) +(trans s2713 s1005) +(trans s2713 s1018) +(trans s2714 s999) +(trans s2714 s1012) +(trans s2714 s1025) +(trans s2715 s1006) +(trans s2715 s1019) +(trans s2715 s1032) +(trans s2716 s1013) +(trans s2716 s1026) +(trans s2716 s1039) +(trans s2717 s1020) +(trans s2717 s1033) +(trans s2717 s1046) +(trans s2718 s1027) +(trans s2718 s1040) +(trans s2718 s1053) +(trans s2719 s1034) +(trans s2719 s1047) +(trans s2719 s1060) +(trans s2720 s1041) +(trans s2720 s1054) +(trans s2720 s1067) +(trans s2721 s1048) +(trans s2721 s1061) +(trans s2721 s1074) +(trans s2722 s1055) +(trans s2722 s1068) +(trans s2722 s1081) +(trans s2723 s1062) +(trans s2723 s1075) +(trans s2723 s1088) +(trans s2724 s1069) +(trans s2724 s1082) +(trans s2724 s1095) +(trans s2725 s1076) +(trans s2725 s1089) +(trans s2725 s1102) +(trans s2726 s1083) +(trans s2726 s1096) +(trans s2726 s1109) +(trans s2727 s1090) +(trans s2727 s1103) +(trans s2727 s1116) +(trans s2728 s1097) +(trans s2728 s1110) +(trans s2728 s1123) +(trans s2729 s1104) +(trans s2729 s1117) +(trans s2729 s1130) +(trans s2730 s1111) +(trans s2730 s1124) +(trans s2730 s1137) +(trans s2731 s1118) +(trans s2731 s1131) +(trans s2731 s1144) +(trans s2732 s1125) +(trans s2732 s1138) +(trans s2732 s1151) +(trans s2733 s1132) +(trans s2733 s1145) +(trans s2733 s1158) +(trans s2734 s1139) +(trans s2734 s1152) +(trans s2734 s1165) +(trans s2735 s1146) +(trans s2735 s1159) +(trans s2735 s1172) +(trans s2736 s1153) +(trans s2736 s1166) +(trans s2736 s1179) +(trans s2737 s1160) +(trans s2737 s1173) +(trans s2737 s1186) +(trans s2738 s1167) +(trans s2738 s1180) +(trans s2738 s1193) +(trans s2739 s1174) +(trans s2739 s1187) +(trans s2739 s1200) +(trans s2740 s1181) +(trans s2740 s1194) +(trans s2740 s1207) +(trans s2741 s1188) +(trans s2741 s1201) +(trans s2741 s1214) +(trans s2742 s1195) +(trans s2742 s1208) +(trans s2742 s1221) +(trans s2743 s1202) +(trans s2743 s1215) +(trans s2743 s1228) +(trans s2744 s1209) +(trans s2744 s1222) +(trans s2744 s1235) +(trans s2745 s1216) +(trans s2745 s1229) +(trans s2745 s1242) +(trans s2746 s1223) +(trans s2746 s1236) +(trans s2746 s1249) +(trans s2747 s1230) +(trans s2747 s1243) +(trans s2747 s1256) +(trans s2748 s1237) +(trans s2748 s1250) +(trans s2748 s1263) +(trans s2749 s1244) +(trans s2749 s1257) +(trans s2749 s1270) +(trans s2750 s1251) +(trans s2750 s1264) +(trans s2750 s1277) +(trans s2751 s1258) +(trans s2751 s1271) +(trans s2751 s1284) +(trans s2752 s1265) +(trans s2752 s1278) +(trans s2752 s1291) +(trans s2753 s1272) +(trans s2753 s1285) +(trans s2753 s1298) +(trans s2754 s1279) +(trans s2754 s1292) +(trans s2754 s1305) +(trans s2755 s1286) +(trans s2755 s1299) +(trans s2755 s1312) +(trans s2756 s1293) +(trans s2756 s1306) +(trans s2756 s1319) +(trans s2757 s1300) +(trans s2757 s1313) +(trans s2757 s1326) +(trans s2758 s1307) +(trans s2758 s1320) +(trans s2758 s1333) +(trans s2759 s1314) +(trans s2759 s1327) +(trans s2759 s1340) +(trans s2760 s1321) +(trans s2760 s1334) +(trans s2760 s1347) +(trans s2761 s1328) +(trans s2761 s1341) +(trans s2761 s1354) +(trans s2762 s1335) +(trans s2762 s1348) +(trans s2762 s1361) +(trans s2763 s1342) +(trans s2763 s1355) +(trans s2763 s1368) +(trans s2764 s1349) +(trans s2764 s1362) +(trans s2764 s1375) +(trans s2765 s1356) +(trans s2765 s1369) +(trans s2765 s1382) +(trans s2766 s1363) +(trans s2766 s1376) +(trans s2766 s1389) +(trans s2767 s1370) +(trans s2767 s1383) +(trans s2767 s1396) +(trans s2768 s1377) +(trans s2768 s1390) +(trans s2768 s1403) +(trans s2769 s1384) +(trans s2769 s1397) +(trans s2769 s1410) +(trans s2770 s1391) +(trans s2770 s1404) +(trans s2770 s1417) +(trans s2771 s1398) +(trans s2771 s1411) +(trans s2771 s1424) +(trans s2772 s1405) +(trans s2772 s1418) +(trans s2772 s1431) +(trans s2773 s1412) +(trans s2773 s1425) +(trans s2773 s1438) +(trans s2774 s1419) +(trans s2774 s1432) +(trans s2774 s1445) +(trans s2775 s1426) +(trans s2775 s1439) +(trans s2775 s1452) +(trans s2776 s1433) +(trans s2776 s1446) +(trans s2776 s1459) +(trans s2777 s1440) +(trans s2777 s1453) +(trans s2777 s1466) +(trans s2778 s1447) +(trans s2778 s1460) +(trans s2778 s1473) +(trans s2779 s1454) +(trans s2779 s1467) +(trans s2779 s1480) +(trans s2780 s1461) +(trans s2780 s1474) +(trans s2780 s1487) +(trans s2781 s1468) +(trans s2781 s1481) +(trans s2781 s1494) +(trans s2782 s1475) +(trans s2782 s1488) +(trans s2782 s1501) +(trans s2783 s1482) +(trans s2783 s1495) +(trans s2783 s1508) +(trans s2784 s1489) +(trans s2784 s1502) +(trans s2784 s1515) +(trans s2785 s1496) +(trans s2785 s1509) +(trans s2785 s1522) +(trans s2786 s1503) +(trans s2786 s1516) +(trans s2786 s1529) +(trans s2787 s1510) +(trans s2787 s1523) +(trans s2787 s1536) +(trans s2788 s1517) +(trans s2788 s1530) +(trans s2788 s1543) +(trans s2789 s1524) +(trans s2789 s1537) +(trans s2789 s1550) +(trans s2790 s1531) +(trans s2790 s1544) +(trans s2790 s1557) +(trans s2791 s1538) +(trans s2791 s1551) +(trans s2791 s1564) +(trans s2792 s1545) +(trans s2792 s1558) +(trans s2792 s1571) +(trans s2793 s1552) +(trans s2793 s1565) +(trans s2793 s1578) +(trans s2794 s1559) +(trans s2794 s1572) +(trans s2794 s1585) +(trans s2795 s1566) +(trans s2795 s1579) +(trans s2795 s1592) +(trans s2796 s1573) +(trans s2796 s1586) +(trans s2796 s1599) +(trans s2797 s1580) +(trans s2797 s1593) +(trans s2797 s1606) +(trans s2798 s1587) +(trans s2798 s1600) +(trans s2798 s1613) +(trans s2799 s1594) +(trans s2799 s1607) +(trans s2799 s1620) +(trans s2800 s1601) +(trans s2800 s1614) +(trans s2800 s1627) +(trans s2801 s1608) +(trans s2801 s1621) +(trans s2801 s1634) +(trans s2802 s1615) +(trans s2802 s1628) +(trans s2802 s1641) +(trans s2803 s1622) +(trans s2803 s1635) +(trans s2803 s1648) +(trans s2804 s1629) +(trans s2804 s1642) +(trans s2804 s1655) +(trans s2805 s1636) +(trans s2805 s1649) +(trans s2805 s1662) +(trans s2806 s1643) +(trans s2806 s1656) +(trans s2806 s1669) +(trans s2807 s1650) +(trans s2807 s1663) +(trans s2807 s1676) +(trans s2808 s1657) +(trans s2808 s1670) +(trans s2808 s1683) +(trans s2809 s1664) +(trans s2809 s1677) +(trans s2809 s1690) +(trans s2810 s1671) +(trans s2810 s1684) +(trans s2810 s1697) +(trans s2811 s1678) +(trans s2811 s1691) +(trans s2811 s1704) +(trans s2812 s1685) +(trans s2812 s1698) +(trans s2812 s1711) +(trans s2813 s1692) +(trans s2813 s1705) +(trans s2813 s1718) +(trans s2814 s1699) +(trans s2814 s1712) +(trans s2814 s1725) +(trans s2815 s1706) +(trans s2815 s1719) +(trans s2815 s1732) +(trans s2816 s1713) +(trans s2816 s1726) +(trans s2816 s1739) +(trans s2817 s1720) +(trans s2817 s1733) +(trans s2817 s1746) +(trans s2818 s1727) +(trans s2818 s1740) +(trans s2818 s1753) +(trans s2819 s1734) +(trans s2819 s1747) +(trans s2819 s1760) +(trans s2820 s1741) +(trans s2820 s1754) +(trans s2820 s1767) +(trans s2821 s1748) +(trans s2821 s1761) +(trans s2821 s1774) +(trans s2822 s1755) +(trans s2822 s1768) +(trans s2822 s1781) +(trans s2823 s1762) +(trans s2823 s1775) +(trans s2823 s1788) +(trans s2824 s1769) +(trans s2824 s1782) +(trans s2824 s1795) +(trans s2825 s1776) +(trans s2825 s1789) +(trans s2825 s1802) +(trans s2826 s1783) +(trans s2826 s1796) +(trans s2826 s1809) +(trans s2827 s1790) +(trans s2827 s1803) +(trans s2827 s1816) +(trans s2828 s1797) +(trans s2828 s1810) +(trans s2828 s1823) +(trans s2829 s1804) +(trans s2829 s1817) +(trans s2829 s1830) +(trans s2830 s1811) +(trans s2830 s1824) +(trans s2830 s1837) +(trans s2831 s1818) +(trans s2831 s1831) +(trans s2831 s1844) +(trans s2832 s1825) +(trans s2832 s1838) +(trans s2832 s1851) +(trans s2833 s1832) +(trans s2833 s1845) +(trans s2833 s1858) +(trans s2834 s1839) +(trans s2834 s1852) +(trans s2834 s1865) +(trans s2835 s1846) +(trans s2835 s1859) +(trans s2835 s1872) +(trans s2836 s1853) +(trans s2836 s1866) +(trans s2836 s1879) +(trans s2837 s1860) +(trans s2837 s1873) +(trans s2837 s1886) +(trans s2838 s1867) +(trans s2838 s1880) +(trans s2838 s1893) +(trans s2839 s1874) +(trans s2839 s1887) +(trans s2839 s1900) +(trans s2840 s1881) +(trans s2840 s1894) +(trans s2840 s1907) +(trans s2841 s1888) +(trans s2841 s1901) +(trans s2841 s1914) +(trans s2842 s1895) +(trans s2842 s1908) +(trans s2842 s1921) +(trans s2843 s1902) +(trans s2843 s1915) +(trans s2843 s1928) +(trans s2844 s1909) +(trans s2844 s1922) +(trans s2844 s1935) +(trans s2845 s1916) +(trans s2845 s1929) +(trans s2845 s1942) +(trans s2846 s1923) +(trans s2846 s1936) +(trans s2846 s1949) +(trans s2847 s1930) +(trans s2847 s1943) +(trans s2847 s1956) +(trans s2848 s1937) +(trans s2848 s1950) +(trans s2848 s1963) +(trans s2849 s1944) +(trans s2849 s1957) +(trans s2849 s1970) +(trans s2850 s1951) +(trans s2850 s1964) +(trans s2850 s1977) +(trans s2851 s1958) +(trans s2851 s1971) +(trans s2851 s1984) +(trans s2852 s1965) +(trans s2852 s1978) +(trans s2852 s1991) +(trans s2853 s1972) +(trans s2853 s1985) +(trans s2853 s1998) +(trans s2854 s1979) +(trans s2854 s1992) +(trans s2854 s2005) +(trans s2855 s1986) +(trans s2855 s1999) +(trans s2855 s2012) +(trans s2856 s1993) +(trans s2856 s2006) +(trans s2856 s2019) +(trans s2857 s2000) +(trans s2857 s2013) +(trans s2857 s2026) +(trans s2858 s2007) +(trans s2858 s2020) +(trans s2858 s2033) +(trans s2859 s2014) +(trans s2859 s2027) +(trans s2859 s2040) +(trans s2860 s2021) +(trans s2860 s2034) +(trans s2860 s2047) +(trans s2861 s2028) +(trans s2861 s2041) +(trans s2861 s2054) +(trans s2862 s2035) +(trans s2862 s2048) +(trans s2862 s2061) +(trans s2863 s2042) +(trans s2863 s2055) +(trans s2863 s2068) +(trans s2864 s2049) +(trans s2864 s2062) +(trans s2864 s2075) +(trans s2865 s2056) +(trans s2865 s2069) +(trans s2865 s2082) +(trans s2866 s2063) +(trans s2866 s2076) +(trans s2866 s2089) +(trans s2867 s2070) +(trans s2867 s2083) +(trans s2867 s2096) +(trans s2868 s2077) +(trans s2868 s2090) +(trans s2868 s2103) +(trans s2869 s2084) +(trans s2869 s2097) +(trans s2869 s2110) +(trans s2870 s2091) +(trans s2870 s2104) +(trans s2870 s2117) +(trans s2871 s2098) +(trans s2871 s2111) +(trans s2871 s2124) +(trans s2872 s2105) +(trans s2872 s2118) +(trans s2872 s2131) +(trans s2873 s2112) +(trans s2873 s2125) +(trans s2873 s2138) +(trans s2874 s2119) +(trans s2874 s2132) +(trans s2874 s2145) +(trans s2875 s2126) +(trans s2875 s2139) +(trans s2875 s2152) +(trans s2876 s2133) +(trans s2876 s2146) +(trans s2876 s2159) +(trans s2877 s2140) +(trans s2877 s2153) +(trans s2877 s2166) +(trans s2878 s2147) +(trans s2878 s2160) +(trans s2878 s2173) +(trans s2879 s2154) +(trans s2879 s2167) +(trans s2879 s2180) +(trans s2880 s2161) +(trans s2880 s2174) +(trans s2880 s2187) +(trans s2881 s2168) +(trans s2881 s2181) +(trans s2881 s2194) +(trans s2882 s2175) +(trans s2882 s2188) +(trans s2882 s2201) +(trans s2883 s2182) +(trans s2883 s2195) +(trans s2883 s2208) +(trans s2884 s2189) +(trans s2884 s2202) +(trans s2884 s2215) +(trans s2885 s2196) +(trans s2885 s2209) +(trans s2885 s2222) +(trans s2886 s2203) +(trans s2886 s2216) +(trans s2886 s2229) +(trans s2887 s2210) +(trans s2887 s2223) +(trans s2887 s2236) +(trans s2888 s2217) +(trans s2888 s2230) +(trans s2888 s2243) +(trans s2889 s2224) +(trans s2889 s2237) +(trans s2889 s2250) +(trans s2890 s2231) +(trans s2890 s2244) +(trans s2890 s2257) +(trans s2891 s2238) +(trans s2891 s2251) +(trans s2891 s2264) +(trans s2892 s2245) +(trans s2892 s2258) +(trans s2892 s2271) +(trans s2893 s2252) +(trans s2893 s2265) +(trans s2893 s2278) +(trans s2894 s2259) +(trans s2894 s2272) +(trans s2894 s2285) +(trans s2895 s2266) +(trans s2895 s2279) +(trans s2895 s2292) +(trans s2896 s2273) +(trans s2896 s2286) +(trans s2896 s2299) +(trans s2897 s2280) +(trans s2897 s2293) +(trans s2897 s2306) +(trans s2898 s2287) +(trans s2898 s2300) +(trans s2898 s2313) +(trans s2899 s2294) +(trans s2899 s2307) +(trans s2899 s2320) +(trans s2900 s2301) +(trans s2900 s2314) +(trans s2900 s2327) +(trans s2901 s2308) +(trans s2901 s2321) +(trans s2901 s2334) +(trans s2902 s2315) +(trans s2902 s2328) +(trans s2902 s2341) +(trans s2903 s2322) +(trans s2903 s2335) +(trans s2903 s2348) +(trans s2904 s2329) +(trans s2904 s2342) +(trans s2904 s2355) +(trans s2905 s2336) +(trans s2905 s2349) +(trans s2905 s2362) +(trans s2906 s2343) +(trans s2906 s2356) +(trans s2906 s2369) +(trans s2907 s2350) +(trans s2907 s2363) +(trans s2907 s2376) +(trans s2908 s2357) +(trans s2908 s2370) +(trans s2908 s2383) +(trans s2909 s2364) +(trans s2909 s2377) +(trans s2909 s2390) +(trans s2910 s2371) +(trans s2910 s2384) +(trans s2910 s2397) +(trans s2911 s2378) +(trans s2911 s2391) +(trans s2911 s2404) +(trans s2912 s2385) +(trans s2912 s2398) +(trans s2912 s2411) +(trans s2913 s2392) +(trans s2913 s2405) +(trans s2913 s2418) +(trans s2914 s2399) +(trans s2914 s2412) +(trans s2914 s2425) +(trans s2915 s2406) +(trans s2915 s2419) +(trans s2915 s2432) +(trans s2916 s2413) +(trans s2916 s2426) +(trans s2916 s2439) +(trans s2917 s2420) +(trans s2917 s2433) +(trans s2917 s2446) +(trans s2918 s2427) +(trans s2918 s2440) +(trans s2918 s2453) +(trans s2919 s2434) +(trans s2919 s2447) +(trans s2919 s2460) +(trans s2920 s2441) +(trans s2920 s2454) +(trans s2920 s2467) +(trans s2921 s2448) +(trans s2921 s2461) +(trans s2921 s2474) +(trans s2922 s2455) +(trans s2922 s2468) +(trans s2922 s2481) +(trans s2923 s2462) +(trans s2923 s2475) +(trans s2923 s2488) +(trans s2924 s2469) +(trans s2924 s2482) +(trans s2924 s2495) +(trans s2925 s2476) +(trans s2925 s2489) +(trans s2925 s2502) +(trans s2926 s2483) +(trans s2926 s2496) +(trans s2926 s2509) +(trans s2927 s2490) +(trans s2927 s2503) +(trans s2927 s2516) +(trans s2928 s2497) +(trans s2928 s2510) +(trans s2928 s2523) +(trans s2929 s2504) +(trans s2929 s2517) +(trans s2929 s2530) +(trans s2930 s2511) +(trans s2930 s2524) +(trans s2930 s2537) +(trans s2931 s2518) +(trans s2931 s2531) +(trans s2931 s2544) +(trans s2932 s2525) +(trans s2932 s2538) +(trans s2932 s2551) +(trans s2933 s2532) +(trans s2933 s2545) +(trans s2933 s2558) +(trans s2934 s2539) +(trans s2934 s2552) +(trans s2934 s2565) +(trans s2935 s2546) +(trans s2935 s2559) +(trans s2935 s2572) +(trans s2936 s2553) +(trans s2936 s2566) +(trans s2936 s2579) +(trans s2937 s2560) +(trans s2937 s2573) +(trans s2937 s2586) +(trans s2938 s2567) +(trans s2938 s2580) +(trans s2938 s2593) +(trans s2939 s2574) +(trans s2939 s2587) +(trans s2939 s2600) +(trans s2940 s2581) +(trans s2940 s2594) +(trans s2940 s2607) +(trans s2941 s2588) +(trans s2941 s2601) +(trans s2941 s2614) +(trans s2942 s2595) +(trans s2942 s2608) +(trans s2942 s2621) +(trans s2943 s2602) +(trans s2943 s2615) +(trans s2943 s2628) +(trans s2944 s2609) +(trans s2944 s2622) +(trans s2944 s2635) +(trans s2945 s2616) +(trans s2945 s2629) +(trans s2945 s2642) +(trans s2946 s2623) +(trans s2946 s2636) +(trans s2946 s2649) +(trans s2947 s2630) +(trans s2947 s2643) +(trans s2947 s2656) +(trans s2948 s2637) +(trans s2948 s2650) +(trans s2948 s2663) +(trans s2949 s2644) +(trans s2949 s2657) +(trans s2949 s2670) +(trans s2950 s2651) +(trans s2950 s2664) +(trans s2950 s2677) +(trans s2951 s2658) +(trans s2951 s2671) +(trans s2951 s2684) +(trans s2952 s2665) +(trans s2952 s2678) +(trans s2952 s2691) +(trans s2953 s2672) +(trans s2953 s2685) +(trans s2953 s2698) +(trans s2954 s2679) +(trans s2954 s2692) +(trans s2954 s2705) +(trans s2955 s2686) +(trans s2955 s2699) +(trans s2955 s2712) +(trans s2956 s2693) +(trans s2956 s2706) +(trans s2956 s2719) +(trans s2957 s2700) +(trans s2957 s2713) +(trans s2957 s2726) +(trans s2958 s2707) +(trans s2958 s2720) +(trans s2958 s2733) +(trans s2959 s2714) +(trans s2959 s2727) +(trans s2959 s2740) +(trans s2960 s2721) +(trans s2960 s2734) +(trans s2960 s2747) +(trans s2961 s2728) +(trans s2961 s2741) +(trans s2961 s2754) +(trans s2962 s2735) +(trans s2962 s2748) +(trans s2962 s2761) +(trans s2963 s2742) +(trans s2963 s2755) +(trans s2963 s2768) +(trans s2964 s2749) +(trans s2964 s2762) +(trans s2964 s2775) +(trans s2965 s2756) +(trans s2965 s2769) +(trans s2965 s2782) +(trans s2966 s2763) +(trans s2966 s2776) +(trans s2966 s2789) +(trans s2967 s2770) +(trans s2967 s2783) +(trans s2967 s2796) +(trans s2968 s2777) +(trans s2968 s2790) +(trans s2968 s2803) +(trans s2969 s2784) +(trans s2969 s2797) +(trans s2969 s2810) +(trans s2970 s2791) +(trans s2970 s2804) +(trans s2970 s2817) +(trans s2971 s2798) +(trans s2971 s2811) +(trans s2971 s2824) +(trans s2972 s2805) +(trans s2972 s2818) +(trans s2972 s2831) +(trans s2973 s2812) +(trans s2973 s2825) +(trans s2973 s2838) +(trans s2974 s2819) +(trans s2974 s2832) +(trans s2974 s2845) +(trans s2975 s2826) +(trans s2975 s2839) +(trans s2975 s2852) +(trans s2976 s2833) +(trans s2976 s2846) +(trans s2976 s2859) +(trans s2977 s2840) +(trans s2977 s2853) +(trans s2977 s2866) +(trans s2978 s2847) +(trans s2978 s2860) +(trans s2978 s2873) +(trans s2979 s2854) +(trans s2979 s2867) +(trans s2979 s2880) +(trans s2980 s2861) +(trans s2980 s2874) +(trans s2980 s2887) +(trans s2981 s2868) +(trans s2981 s2881) +(trans s2981 s2894) +(trans s2982 s2875) +(trans s2982 s2888) +(trans s2982 s2901) +(trans s2983 s2882) +(trans s2983 s2895) +(trans s2983 s2908) +(trans s2984 s2889) +(trans s2984 s2902) +(trans s2984 s2915) +(trans s2985 s2896) +(trans s2985 s2909) +(trans s2985 s2922) +(trans s2986 s2903) +(trans s2986 s2916) +(trans s2986 s2929) +(trans s2987 s2910) +(trans s2987 s2923) +(trans s2987 s2936) +(trans s2988 s2917) +(trans s2988 s2930) +(trans s2988 s2943) +(trans s2989 s2924) +(trans s2989 s2937) +(trans s2989 s2950) +(trans s2990 s2931) +(trans s2990 s2944) +(trans s2990 s2957) +(trans s2991 s2938) +(trans s2991 s2951) +(trans s2991 s2964) +(trans s2992 s2945) +(trans s2992 s2958) +(trans s2992 s2971) +(trans s2993 s2952) +(trans s2993 s2965) +(trans s2993 s2978) +(trans s2994 s2959) +(trans s2994 s2972) +(trans s2994 s2985) +(trans s2995 s2966) +(trans s2995 s2979) +(trans s2995 s2992) +(trans s2996 s2973) +(trans s2996 s2986) +(trans s2996 s2999) +(trans s2997 s2980) +(trans s2997 s2993) +(trans s2997 s3006) +(trans s2998 s2987) +(trans s2998 s3000) +(trans s2998 s3013) +(trans s2999 s2994) +(trans s2999 s3007) +(trans s2999 s3020) +(trans s3000 s3001) +(trans s3000 s3014) +(trans s3000 s3027) +(trans s3001 s3008) +(trans s3001 s3021) +(trans s3001 s3034) +(trans s3002 s3015) +(trans s3002 s3028) +(trans s3002 s3041) +(trans s3003 s3022) +(trans s3003 s3035) +(trans s3003 s3048) +(trans s3004 s3029) +(trans s3004 s3042) +(trans s3004 s3055) +(trans s3005 s3036) +(trans s3005 s3049) +(trans s3005 s3062) +(trans s3006 s3043) +(trans s3006 s3056) +(trans s3006 s3069) +(trans s3007 s3050) +(trans s3007 s3063) +(trans s3007 s3076) +(trans s3008 s3057) +(trans s3008 s3070) +(trans s3008 s3083) +(trans s3009 s3064) +(trans s3009 s3077) +(trans s3009 s3090) +(trans s3010 s3071) +(trans s3010 s3084) +(trans s3010 s3097) +(trans s3011 s3078) +(trans s3011 s3091) +(trans s3011 s3104) +(trans s3012 s3085) +(trans s3012 s3098) +(trans s3012 s3111) +(trans s3013 s3092) +(trans s3013 s3105) +(trans s3013 s3118) +(trans s3014 s3099) +(trans s3014 s3112) +(trans s3014 s3125) +(trans s3015 s3106) +(trans s3015 s3119) +(trans s3015 s3132) +(trans s3016 s3113) +(trans s3016 s3126) +(trans s3016 s3139) +(trans s3017 s3120) +(trans s3017 s3133) +(trans s3017 s3146) +(trans s3018 s3127) +(trans s3018 s3140) +(trans s3018 s3153) +(trans s3019 s3134) +(trans s3019 s3147) +(trans s3019 s3160) +(trans s3020 s3141) +(trans s3020 s3154) +(trans s3020 s3167) +(trans s3021 s3148) +(trans s3021 s3161) +(trans s3021 s3174) +(trans s3022 s3155) +(trans s3022 s3168) +(trans s3022 s3181) +(trans s3023 s3162) +(trans s3023 s3175) +(trans s3023 s3188) +(trans s3024 s3169) +(trans s3024 s3182) +(trans s3024 s3195) +(trans s3025 s3176) +(trans s3025 s3189) +(trans s3025 s3202) +(trans s3026 s3183) +(trans s3026 s3196) +(trans s3026 s3209) +(trans s3027 s3190) +(trans s3027 s3203) +(trans s3027 s3216) +(trans s3028 s3197) +(trans s3028 s3210) +(trans s3028 s3223) +(trans s3029 s3204) +(trans s3029 s3217) +(trans s3029 s3230) +(trans s3030 s3211) +(trans s3030 s3224) +(trans s3030 s3237) +(trans s3031 s3218) +(trans s3031 s3231) +(trans s3031 s3244) +(trans s3032 s3225) +(trans s3032 s3238) +(trans s3032 s3251) +(trans s3033 s3232) +(trans s3033 s3245) +(trans s3033 s3258) +(trans s3034 s3239) +(trans s3034 s3252) +(trans s3034 s3265) +(trans s3035 s3246) +(trans s3035 s3259) +(trans s3035 s3272) +(trans s3036 s3253) +(trans s3036 s3266) +(trans s3036 s3279) +(trans s3037 s3260) +(trans s3037 s3273) +(trans s3037 s3286) +(trans s3038 s3267) +(trans s3038 s3280) +(trans s3038 s3293) +(trans s3039 s3274) +(trans s3039 s3287) +(trans s3039 s3300) +(trans s3040 s3281) +(trans s3040 s3294) +(trans s3040 s3307) +(trans s3041 s3288) +(trans s3041 s3301) +(trans s3041 s3314) +(trans s3042 s3295) +(trans s3042 s3308) +(trans s3042 s3321) +(trans s3043 s3302) +(trans s3043 s3315) +(trans s3043 s3328) +(trans s3044 s3309) +(trans s3044 s3322) +(trans s3044 s3335) +(trans s3045 s3316) +(trans s3045 s3329) +(trans s3045 s3342) +(trans s3046 s3323) +(trans s3046 s3336) +(trans s3046 s3349) +(trans s3047 s3330) +(trans s3047 s3343) +(trans s3047 s3356) +(trans s3048 s3337) +(trans s3048 s3350) +(trans s3048 s3363) +(trans s3049 s3344) +(trans s3049 s3357) +(trans s3049 s3370) +(trans s3050 s3351) +(trans s3050 s3364) +(trans s3050 s3377) +(trans s3051 s3358) +(trans s3051 s3371) +(trans s3051 s3384) +(trans s3052 s3365) +(trans s3052 s3378) +(trans s3052 s3391) +(trans s3053 s3372) +(trans s3053 s3385) +(trans s3053 s3398) +(trans s3054 s3379) +(trans s3054 s3392) +(trans s3054 s3405) +(trans s3055 s3386) +(trans s3055 s3399) +(trans s3055 s3412) +(trans s3056 s3393) +(trans s3056 s3406) +(trans s3056 s3419) +(trans s3057 s3400) +(trans s3057 s3413) +(trans s3057 s3426) +(trans s3058 s3407) +(trans s3058 s3420) +(trans s3058 s3433) +(trans s3059 s3414) +(trans s3059 s3427) +(trans s3059 s3440) +(trans s3060 s3421) +(trans s3060 s3434) +(trans s3060 s3447) +(trans s3061 s3428) +(trans s3061 s3441) +(trans s3061 s3454) +(trans s3062 s3435) +(trans s3062 s3448) +(trans s3062 s3461) +(trans s3063 s3442) +(trans s3063 s3455) +(trans s3063 s3468) +(trans s3064 s3449) +(trans s3064 s3462) +(trans s3064 s3475) +(trans s3065 s3456) +(trans s3065 s3469) +(trans s3065 s3482) +(trans s3066 s3463) +(trans s3066 s3476) +(trans s3066 s3489) +(trans s3067 s3470) +(trans s3067 s3483) +(trans s3067 s3496) +(trans s3068 s3477) +(trans s3068 s3490) +(trans s3068 s3503) +(trans s3069 s3484) +(trans s3069 s3497) +(trans s3069 s3510) +(trans s3070 s3491) +(trans s3070 s3504) +(trans s3070 s3517) +(trans s3071 s3498) +(trans s3071 s3511) +(trans s3071 s3524) +(trans s3072 s3505) +(trans s3072 s3518) +(trans s3072 s3531) +(trans s3073 s3512) +(trans s3073 s3525) +(trans s3073 s3538) +(trans s3074 s3519) +(trans s3074 s3532) +(trans s3074 s3545) +(trans s3075 s3526) +(trans s3075 s3539) +(trans s3075 s3552) +(trans s3076 s3533) +(trans s3076 s3546) +(trans s3076 s3559) +(trans s3077 s3540) +(trans s3077 s3553) +(trans s3077 s3566) +(trans s3078 s3547) +(trans s3078 s3560) +(trans s3078 s3573) +(trans s3079 s3554) +(trans s3079 s3567) +(trans s3079 s3580) +(trans s3080 s3561) +(trans s3080 s3574) +(trans s3080 s3587) +(trans s3081 s3568) +(trans s3081 s3581) +(trans s3081 s3594) +(trans s3082 s3575) +(trans s3082 s3588) +(trans s3082 s3601) +(trans s3083 s3582) +(trans s3083 s3595) +(trans s3083 s3608) +(trans s3084 s3589) +(trans s3084 s3602) +(trans s3084 s3615) +(trans s3085 s3596) +(trans s3085 s3609) +(trans s3085 s3622) +(trans s3086 s3603) +(trans s3086 s3616) +(trans s3086 s3629) +(trans s3087 s3610) +(trans s3087 s3623) +(trans s3087 s3636) +(trans s3088 s3617) +(trans s3088 s3630) +(trans s3088 s3643) +(trans s3089 s3624) +(trans s3089 s3637) +(trans s3089 s3650) +(trans s3090 s3631) +(trans s3090 s3644) +(trans s3090 s3657) +(trans s3091 s3638) +(trans s3091 s3651) +(trans s3091 s3664) +(trans s3092 s3645) +(trans s3092 s3658) +(trans s3092 s3671) +(trans s3093 s3652) +(trans s3093 s3665) +(trans s3093 s3678) +(trans s3094 s3659) +(trans s3094 s3672) +(trans s3094 s3685) +(trans s3095 s3666) +(trans s3095 s3679) +(trans s3095 s3692) +(trans s3096 s3673) +(trans s3096 s3686) +(trans s3096 s3699) +(trans s3097 s3680) +(trans s3097 s3693) +(trans s3097 s3706) +(trans s3098 s3687) +(trans s3098 s3700) +(trans s3098 s3713) +(trans s3099 s3694) +(trans s3099 s3707) +(trans s3099 s3720) +(trans s3100 s3701) +(trans s3100 s3714) +(trans s3100 s3727) +(trans s3101 s3708) +(trans s3101 s3721) +(trans s3101 s3734) +(trans s3102 s3715) +(trans s3102 s3728) +(trans s3102 s3741) +(trans s3103 s3722) +(trans s3103 s3735) +(trans s3103 s3748) +(trans s3104 s3729) +(trans s3104 s3742) +(trans s3104 s3755) +(trans s3105 s3736) +(trans s3105 s3749) +(trans s3105 s3762) +(trans s3106 s3743) +(trans s3106 s3756) +(trans s3106 s3769) +(trans s3107 s3750) +(trans s3107 s3763) +(trans s3107 s3776) +(trans s3108 s3757) +(trans s3108 s3770) +(trans s3108 s3783) +(trans s3109 s3764) +(trans s3109 s3777) +(trans s3109 s3790) +(trans s3110 s3771) +(trans s3110 s3784) +(trans s3110 s3797) +(trans s3111 s3778) +(trans s3111 s3791) +(trans s3111 s3804) +(trans s3112 s3785) +(trans s3112 s3798) +(trans s3112 s3811) +(trans s3113 s3792) +(trans s3113 s3805) +(trans s3113 s3818) +(trans s3114 s3799) +(trans s3114 s3812) +(trans s3114 s3825) +(trans s3115 s3806) +(trans s3115 s3819) +(trans s3115 s3832) +(trans s3116 s3813) +(trans s3116 s3826) +(trans s3116 s3839) +(trans s3117 s3820) +(trans s3117 s3833) +(trans s3117 s3846) +(trans s3118 s3827) +(trans s3118 s3840) +(trans s3118 s3853) +(trans s3119 s3834) +(trans s3119 s3847) +(trans s3119 s3860) +(trans s3120 s3841) +(trans s3120 s3854) +(trans s3120 s3867) +(trans s3121 s3848) +(trans s3121 s3861) +(trans s3121 s3874) +(trans s3122 s3855) +(trans s3122 s3868) +(trans s3122 s3881) +(trans s3123 s3862) +(trans s3123 s3875) +(trans s3123 s3888) +(trans s3124 s3869) +(trans s3124 s3882) +(trans s3124 s3895) +(trans s3125 s3876) +(trans s3125 s3889) +(trans s3125 s3902) +(trans s3126 s3883) +(trans s3126 s3896) +(trans s3126 s3909) +(trans s3127 s3890) +(trans s3127 s3903) +(trans s3127 s3916) +(trans s3128 s3897) +(trans s3128 s3910) +(trans s3128 s3923) +(trans s3129 s3904) +(trans s3129 s3917) +(trans s3129 s3930) +(trans s3130 s3911) +(trans s3130 s3924) +(trans s3130 s3937) +(trans s3131 s3918) +(trans s3131 s3931) +(trans s3131 s3944) +(trans s3132 s3925) +(trans s3132 s3938) +(trans s3132 s3951) +(trans s3133 s3932) +(trans s3133 s3945) +(trans s3133 s3958) +(trans s3134 s3939) +(trans s3134 s3952) +(trans s3134 s3965) +(trans s3135 s3946) +(trans s3135 s3959) +(trans s3135 s3972) +(trans s3136 s3953) +(trans s3136 s3966) +(trans s3136 s3979) +(trans s3137 s3960) +(trans s3137 s3973) +(trans s3137 s3986) +(trans s3138 s3967) +(trans s3138 s3980) +(trans s3138 s3993) +(trans s3139 s3974) +(trans s3139 s3987) +(trans s3139 s4000) +(trans s3140 s3981) +(trans s3140 s3994) +(trans s3140 s4007) +(trans s3141 s3988) +(trans s3141 s4001) +(trans s3141 s4014) +(trans s3142 s3995) +(trans s3142 s4008) +(trans s3142 s4021) +(trans s3143 s4002) +(trans s3143 s4015) +(trans s3143 s4028) +(trans s3144 s4009) +(trans s3144 s4022) +(trans s3144 s4035) +(trans s3145 s4016) +(trans s3145 s4029) +(trans s3145 s4042) +(trans s3146 s4023) +(trans s3146 s4036) +(trans s3146 s4049) +(trans s3147 s4030) +(trans s3147 s4043) +(trans s3147 s4056) +(trans s3148 s4037) +(trans s3148 s4050) +(trans s3148 s4063) +(trans s3149 s4044) +(trans s3149 s4057) +(trans s3149 s4070) +(trans s3150 s4051) +(trans s3150 s4064) +(trans s3150 s4077) +(trans s3151 s4058) +(trans s3151 s4071) +(trans s3151 s4084) +(trans s3152 s4065) +(trans s3152 s4078) +(trans s3152 s4091) +(trans s3153 s4072) +(trans s3153 s4085) +(trans s3153 s4098) +(trans s3154 s4079) +(trans s3154 s4092) +(trans s3154 s4105) +(trans s3155 s4086) +(trans s3155 s4099) +(trans s3155 s4112) +(trans s3156 s4093) +(trans s3156 s4106) +(trans s3156 s4119) +(trans s3157 s4100) +(trans s3157 s4113) +(trans s3157 s4126) +(trans s3158 s4107) +(trans s3158 s4120) +(trans s3158 s4133) +(trans s3159 s4114) +(trans s3159 s4127) +(trans s3159 s4140) +(trans s3160 s4121) +(trans s3160 s4134) +(trans s3160 s4147) +(trans s3161 s4128) +(trans s3161 s4141) +(trans s3161 s4154) +(trans s3162 s4135) +(trans s3162 s4148) +(trans s3162 s4161) +(trans s3163 s4142) +(trans s3163 s4155) +(trans s3163 s4168) +(trans s3164 s4149) +(trans s3164 s4162) +(trans s3164 s4175) +(trans s3165 s4156) +(trans s3165 s4169) +(trans s3165 s4182) +(trans s3166 s4163) +(trans s3166 s4176) +(trans s3166 s4189) +(trans s3167 s4170) +(trans s3167 s4183) +(trans s3167 s4196) +(trans s3168 s4177) +(trans s3168 s4190) +(trans s3168 s4203) +(trans s3169 s4184) +(trans s3169 s4197) +(trans s3169 s4210) +(trans s3170 s4191) +(trans s3170 s4204) +(trans s3170 s4217) +(trans s3171 s4198) +(trans s3171 s4211) +(trans s3171 s4224) +(trans s3172 s4205) +(trans s3172 s4218) +(trans s3172 s4231) +(trans s3173 s4212) +(trans s3173 s4225) +(trans s3173 s4238) +(trans s3174 s4219) +(trans s3174 s4232) +(trans s3174 s4245) +(trans s3175 s4226) +(trans s3175 s4239) +(trans s3175 s4252) +(trans s3176 s4233) +(trans s3176 s4246) +(trans s3176 s4259) +(trans s3177 s4240) +(trans s3177 s4253) +(trans s3177 s4266) +(trans s3178 s4247) +(trans s3178 s4260) +(trans s3178 s4273) +(trans s3179 s4254) +(trans s3179 s4267) +(trans s3179 s4280) +(trans s3180 s4261) +(trans s3180 s4274) +(trans s3180 s4287) +(trans s3181 s4268) +(trans s3181 s4281) +(trans s3181 s4294) +(trans s3182 s4275) +(trans s3182 s4288) +(trans s3182 s4301) +(trans s3183 s4282) +(trans s3183 s4295) +(trans s3183 s4308) +(trans s3184 s4289) +(trans s3184 s4302) +(trans s3184 s4315) +(trans s3185 s4296) +(trans s3185 s4309) +(trans s3185 s4322) +(trans s3186 s4303) +(trans s3186 s4316) +(trans s3186 s4329) +(trans s3187 s4310) +(trans s3187 s4323) +(trans s3187 s4336) +(trans s3188 s4317) +(trans s3188 s4330) +(trans s3188 s4343) +(trans s3189 s4324) +(trans s3189 s4337) +(trans s3189 s4350) +(trans s3190 s4331) +(trans s3190 s4344) +(trans s3190 s4357) +(trans s3191 s4338) +(trans s3191 s4351) +(trans s3191 s4364) +(trans s3192 s4345) +(trans s3192 s4358) +(trans s3192 s4371) +(trans s3193 s4352) +(trans s3193 s4365) +(trans s3193 s4378) +(trans s3194 s4359) +(trans s3194 s4372) +(trans s3194 s4385) +(trans s3195 s4366) +(trans s3195 s4379) +(trans s3195 s4392) +(trans s3196 s4373) +(trans s3196 s4386) +(trans s3196 s4399) +(trans s3197 s4380) +(trans s3197 s4393) +(trans s3197 s4406) +(trans s3198 s4387) +(trans s3198 s4400) +(trans s3198 s4413) +(trans s3199 s4394) +(trans s3199 s4407) +(trans s3199 s4420) +(trans s3200 s4401) +(trans s3200 s4414) +(trans s3200 s4427) +(trans s3201 s4408) +(trans s3201 s4421) +(trans s3201 s4434) +(trans s3202 s4415) +(trans s3202 s4428) +(trans s3202 s4441) +(trans s3203 s4422) +(trans s3203 s4435) +(trans s3203 s4448) +(trans s3204 s4429) +(trans s3204 s4442) +(trans s3204 s4455) +(trans s3205 s4436) +(trans s3205 s4449) +(trans s3205 s4462) +(trans s3206 s4443) +(trans s3206 s4456) +(trans s3206 s4469) +(trans s3207 s4450) +(trans s3207 s4463) +(trans s3207 s4476) +(trans s3208 s4457) +(trans s3208 s4470) +(trans s3208 s4483) +(trans s3209 s4464) +(trans s3209 s4477) +(trans s3209 s4490) +(trans s3210 s4471) +(trans s3210 s4484) +(trans s3210 s4497) +(trans s3211 s4478) +(trans s3211 s4491) +(trans s3211 s4504) +(trans s3212 s4485) +(trans s3212 s4498) +(trans s3212 s4511) +(trans s3213 s4492) +(trans s3213 s4505) +(trans s3213 s4518) +(trans s3214 s4499) +(trans s3214 s4512) +(trans s3214 s4525) +(trans s3215 s4506) +(trans s3215 s4519) +(trans s3215 s4532) +(trans s3216 s4513) +(trans s3216 s4526) +(trans s3216 s4539) +(trans s3217 s4520) +(trans s3217 s4533) +(trans s3217 s4546) +(trans s3218 s4527) +(trans s3218 s4540) +(trans s3218 s4553) +(trans s3219 s4534) +(trans s3219 s4547) +(trans s3219 s4560) +(trans s3220 s4541) +(trans s3220 s4554) +(trans s3220 s4567) +(trans s3221 s4548) +(trans s3221 s4561) +(trans s3221 s4574) +(trans s3222 s4555) +(trans s3222 s4568) +(trans s3222 s4581) +(trans s3223 s4562) +(trans s3223 s4575) +(trans s3223 s4588) +(trans s3224 s4569) +(trans s3224 s4582) +(trans s3224 s4595) +(trans s3225 s4576) +(trans s3225 s4589) +(trans s3225 s4602) +(trans s3226 s4583) +(trans s3226 s4596) +(trans s3226 s4609) +(trans s3227 s4590) +(trans s3227 s4603) +(trans s3227 s4616) +(trans s3228 s4597) +(trans s3228 s4610) +(trans s3228 s4623) +(trans s3229 s4604) +(trans s3229 s4617) +(trans s3229 s4630) +(trans s3230 s4611) +(trans s3230 s4624) +(trans s3230 s4637) +(trans s3231 s4618) +(trans s3231 s4631) +(trans s3231 s4644) +(trans s3232 s4625) +(trans s3232 s4638) +(trans s3232 s4651) +(trans s3233 s4632) +(trans s3233 s4645) +(trans s3233 s4658) +(trans s3234 s4639) +(trans s3234 s4652) +(trans s3234 s4665) +(trans s3235 s4646) +(trans s3235 s4659) +(trans s3235 s4672) +(trans s3236 s4653) +(trans s3236 s4666) +(trans s3236 s4679) +(trans s3237 s4660) +(trans s3237 s4673) +(trans s3237 s4686) +(trans s3238 s4667) +(trans s3238 s4680) +(trans s3238 s4693) +(trans s3239 s4674) +(trans s3239 s4687) +(trans s3239 s4700) +(trans s3240 s4681) +(trans s3240 s4694) +(trans s3240 s4707) +(trans s3241 s4688) +(trans s3241 s4701) +(trans s3241 s4714) +(trans s3242 s4695) +(trans s3242 s4708) +(trans s3242 s4721) +(trans s3243 s4702) +(trans s3243 s4715) +(trans s3243 s4728) +(trans s3244 s4709) +(trans s3244 s4722) +(trans s3244 s4735) +(trans s3245 s4716) +(trans s3245 s4729) +(trans s3245 s4742) +(trans s3246 s4723) +(trans s3246 s4736) +(trans s3246 s4749) +(trans s3247 s4730) +(trans s3247 s4743) +(trans s3247 s4756) +(trans s3248 s4737) +(trans s3248 s4750) +(trans s3248 s4763) +(trans s3249 s4744) +(trans s3249 s4757) +(trans s3249 s4770) +(trans s3250 s4751) +(trans s3250 s4764) +(trans s3250 s4777) +(trans s3251 s4758) +(trans s3251 s4771) +(trans s3251 s4784) +(trans s3252 s4765) +(trans s3252 s4778) +(trans s3252 s4791) +(trans s3253 s4772) +(trans s3253 s4785) +(trans s3253 s4798) +(trans s3254 s4779) +(trans s3254 s4792) +(trans s3254 s4805) +(trans s3255 s4786) +(trans s3255 s4799) +(trans s3255 s4812) +(trans s3256 s4793) +(trans s3256 s4806) +(trans s3256 s4819) +(trans s3257 s4800) +(trans s3257 s4813) +(trans s3257 s4826) +(trans s3258 s4807) +(trans s3258 s4820) +(trans s3258 s4833) +(trans s3259 s4814) +(trans s3259 s4827) +(trans s3259 s4840) +(trans s3260 s4821) +(trans s3260 s4834) +(trans s3260 s4847) +(trans s3261 s4828) +(trans s3261 s4841) +(trans s3261 s4854) +(trans s3262 s4835) +(trans s3262 s4848) +(trans s3262 s4861) +(trans s3263 s4842) +(trans s3263 s4855) +(trans s3263 s4868) +(trans s3264 s4849) +(trans s3264 s4862) +(trans s3264 s4875) +(trans s3265 s4856) +(trans s3265 s4869) +(trans s3265 s4882) +(trans s3266 s4863) +(trans s3266 s4876) +(trans s3266 s4889) +(trans s3267 s4870) +(trans s3267 s4883) +(trans s3267 s4896) +(trans s3268 s4877) +(trans s3268 s4890) +(trans s3268 s4903) +(trans s3269 s4884) +(trans s3269 s4897) +(trans s3269 s4910) +(trans s3270 s4891) +(trans s3270 s4904) +(trans s3270 s4917) +(trans s3271 s4898) +(trans s3271 s4911) +(trans s3271 s4924) +(trans s3272 s4905) +(trans s3272 s4918) +(trans s3272 s4931) +(trans s3273 s4912) +(trans s3273 s4925) +(trans s3273 s4938) +(trans s3274 s4919) +(trans s3274 s4932) +(trans s3274 s4945) +(trans s3275 s4926) +(trans s3275 s4939) +(trans s3275 s4952) +(trans s3276 s4933) +(trans s3276 s4946) +(trans s3276 s4959) +(trans s3277 s4940) +(trans s3277 s4953) +(trans s3277 s4966) +(trans s3278 s4947) +(trans s3278 s4960) +(trans s3278 s4973) +(trans s3279 s4954) +(trans s3279 s4967) +(trans s3279 s4980) +(trans s3280 s4961) +(trans s3280 s4974) +(trans s3280 s4987) +(trans s3281 s4968) +(trans s3281 s4981) +(trans s3281 s4994) +(trans s3282 s4975) +(trans s3282 s4988) +(trans s3282 s5001) +(trans s3283 s4982) +(trans s3283 s4995) +(trans s3283 s5008) +(trans s3284 s4989) +(trans s3284 s5002) +(trans s3284 s5015) +(trans s3285 s4996) +(trans s3285 s5009) +(trans s3285 s5022) +(trans s3286 s5003) +(trans s3286 s5016) +(trans s3286 s5029) +(trans s3287 s5010) +(trans s3287 s5023) +(trans s3287 s5036) +(trans s3288 s5017) +(trans s3288 s5030) +(trans s3288 s5043) +(trans s3289 s5024) +(trans s3289 s5037) +(trans s3289 s5050) +(trans s3290 s5031) +(trans s3290 s5044) +(trans s3290 s5057) +(trans s3291 s5038) +(trans s3291 s5051) +(trans s3291 s5064) +(trans s3292 s5045) +(trans s3292 s5058) +(trans s3292 s5071) +(trans s3293 s5052) +(trans s3293 s5065) +(trans s3293 s5078) +(trans s3294 s5059) +(trans s3294 s5072) +(trans s3294 s5085) +(trans s3295 s5066) +(trans s3295 s5079) +(trans s3295 s5092) +(trans s3296 s5073) +(trans s3296 s5086) +(trans s3296 s5099) +(trans s3297 s5080) +(trans s3297 s5093) +(trans s3297 s5106) +(trans s3298 s5087) +(trans s3298 s5100) +(trans s3298 s5113) +(trans s3299 s5094) +(trans s3299 s5107) +(trans s3299 s5120) +(trans s3300 s5101) +(trans s3300 s5114) +(trans s3300 s5127) +(trans s3301 s5108) +(trans s3301 s5121) +(trans s3301 s5134) +(trans s3302 s5115) +(trans s3302 s5128) +(trans s3302 s5141) +(trans s3303 s5122) +(trans s3303 s5135) +(trans s3303 s5148) +(trans s3304 s5129) +(trans s3304 s5142) +(trans s3304 s5155) +(trans s3305 s5136) +(trans s3305 s5149) +(trans s3305 s5162) +(trans s3306 s5143) +(trans s3306 s5156) +(trans s3306 s5169) +(trans s3307 s5150) +(trans s3307 s5163) +(trans s3307 s5176) +(trans s3308 s5157) +(trans s3308 s5170) +(trans s3308 s5183) +(trans s3309 s5164) +(trans s3309 s5177) +(trans s3309 s5190) +(trans s3310 s5171) +(trans s3310 s5184) +(trans s3310 s5197) +(trans s3311 s5178) +(trans s3311 s5191) +(trans s3311 s5204) +(trans s3312 s5185) +(trans s3312 s5198) +(trans s3312 s5211) +(trans s3313 s5192) +(trans s3313 s5205) +(trans s3313 s5218) +(trans s3314 s5199) +(trans s3314 s5212) +(trans s3314 s5225) +(trans s3315 s5206) +(trans s3315 s5219) +(trans s3315 s5232) +(trans s3316 s5213) +(trans s3316 s5226) +(trans s3316 s5239) +(trans s3317 s5220) +(trans s3317 s5233) +(trans s3317 s5246) +(trans s3318 s5227) +(trans s3318 s5240) +(trans s3318 s5253) +(trans s3319 s5234) +(trans s3319 s5247) +(trans s3319 s5260) +(trans s3320 s5241) +(trans s3320 s5254) +(trans s3320 s5267) +(trans s3321 s5248) +(trans s3321 s5261) +(trans s3321 s5274) +(trans s3322 s5255) +(trans s3322 s5268) +(trans s3322 s5281) +(trans s3323 s5262) +(trans s3323 s5275) +(trans s3323 s5288) +(trans s3324 s5269) +(trans s3324 s5282) +(trans s3324 s5295) +(trans s3325 s5276) +(trans s3325 s5289) +(trans s3325 s5302) +(trans s3326 s5283) +(trans s3326 s5296) +(trans s3326 s5309) +(trans s3327 s5290) +(trans s3327 s5303) +(trans s3327 s5316) +(trans s3328 s5297) +(trans s3328 s5310) +(trans s3328 s5323) +(trans s3329 s5304) +(trans s3329 s5317) +(trans s3329 s5330) +(trans s3330 s5311) +(trans s3330 s5324) +(trans s3330 s5337) +(trans s3331 s5318) +(trans s3331 s5331) +(trans s3331 s5344) +(trans s3332 s5325) +(trans s3332 s5338) +(trans s3332 s5351) +(trans s3333 s5332) +(trans s3333 s5345) +(trans s3333 s5358) +(trans s3334 s5339) +(trans s3334 s5352) +(trans s3334 s5365) +(trans s3335 s5346) +(trans s3335 s5359) +(trans s3335 s5372) +(trans s3336 s5353) +(trans s3336 s5366) +(trans s3336 s5379) +(trans s3337 s5360) +(trans s3337 s5373) +(trans s3337 s5386) +(trans s3338 s5367) +(trans s3338 s5380) +(trans s3338 s5393) +(trans s3339 s5374) +(trans s3339 s5387) +(trans s3339 s5400) +(trans s3340 s5381) +(trans s3340 s5394) +(trans s3340 s5407) +(trans s3341 s5388) +(trans s3341 s5401) +(trans s3341 s5414) +(trans s3342 s5395) +(trans s3342 s5408) +(trans s3342 s5421) +(trans s3343 s5402) +(trans s3343 s5415) +(trans s3343 s5428) +(trans s3344 s5409) +(trans s3344 s5422) +(trans s3344 s5435) +(trans s3345 s5416) +(trans s3345 s5429) +(trans s3345 s5442) +(trans s3346 s5423) +(trans s3346 s5436) +(trans s3346 s5449) +(trans s3347 s5430) +(trans s3347 s5443) +(trans s3347 s5456) +(trans s3348 s5437) +(trans s3348 s5450) +(trans s3348 s5463) +(trans s3349 s5444) +(trans s3349 s5457) +(trans s3349 s5470) +(trans s3350 s5451) +(trans s3350 s5464) +(trans s3350 s5477) +(trans s3351 s5458) +(trans s3351 s5471) +(trans s3351 s5484) +(trans s3352 s5465) +(trans s3352 s5478) +(trans s3352 s5491) +(trans s3353 s5472) +(trans s3353 s5485) +(trans s3353 s5498) +(trans s3354 s5479) +(trans s3354 s5492) +(trans s3354 s5505) +(trans s3355 s5486) +(trans s3355 s5499) +(trans s3355 s5512) +(trans s3356 s5493) +(trans s3356 s5506) +(trans s3356 s5519) +(trans s3357 s5500) +(trans s3357 s5513) +(trans s3357 s5526) +(trans s3358 s5507) +(trans s3358 s5520) +(trans s3358 s5533) +(trans s3359 s5514) +(trans s3359 s5527) +(trans s3359 s5540) +(trans s3360 s5521) +(trans s3360 s5534) +(trans s3360 s5547) +(trans s3361 s5528) +(trans s3361 s5541) +(trans s3361 s5554) +(trans s3362 s5535) +(trans s3362 s5548) +(trans s3362 s5561) +(trans s3363 s5542) +(trans s3363 s5555) +(trans s3363 s5568) +(trans s3364 s5549) +(trans s3364 s5562) +(trans s3364 s5575) +(trans s3365 s5556) +(trans s3365 s5569) +(trans s3365 s5582) +(trans s3366 s5563) +(trans s3366 s5576) +(trans s3366 s5589) +(trans s3367 s5570) +(trans s3367 s5583) +(trans s3367 s5596) +(trans s3368 s5577) +(trans s3368 s5590) +(trans s3368 s5603) +(trans s3369 s5584) +(trans s3369 s5597) +(trans s3369 s5610) +(trans s3370 s5591) +(trans s3370 s5604) +(trans s3370 s5617) +(trans s3371 s5598) +(trans s3371 s5611) +(trans s3371 s5624) +(trans s3372 s5605) +(trans s3372 s5618) +(trans s3372 s5631) +(trans s3373 s5612) +(trans s3373 s5625) +(trans s3373 s5638) +(trans s3374 s5619) +(trans s3374 s5632) +(trans s3374 s5645) +(trans s3375 s5626) +(trans s3375 s5639) +(trans s3375 s5652) +(trans s3376 s5633) +(trans s3376 s5646) +(trans s3376 s5659) +(trans s3377 s5640) +(trans s3377 s5653) +(trans s3377 s5666) +(trans s3378 s5647) +(trans s3378 s5660) +(trans s3378 s5673) +(trans s3379 s5654) +(trans s3379 s5667) +(trans s3379 s5680) +(trans s3380 s5661) +(trans s3380 s5674) +(trans s3380 s5687) +(trans s3381 s5668) +(trans s3381 s5681) +(trans s3381 s5694) +(trans s3382 s5675) +(trans s3382 s5688) +(trans s3382 s5701) +(trans s3383 s5682) +(trans s3383 s5695) +(trans s3383 s5708) +(trans s3384 s5689) +(trans s3384 s5702) +(trans s3384 s5715) +(trans s3385 s5696) +(trans s3385 s5709) +(trans s3385 s5722) +(trans s3386 s5703) +(trans s3386 s5716) +(trans s3386 s5729) +(trans s3387 s5710) +(trans s3387 s5723) +(trans s3387 s5736) +(trans s3388 s5717) +(trans s3388 s5730) +(trans s3388 s5743) +(trans s3389 s5724) +(trans s3389 s5737) +(trans s3389 s5750) +(trans s3390 s5731) +(trans s3390 s5744) +(trans s3390 s5757) +(trans s3391 s5738) +(trans s3391 s5751) +(trans s3391 s5764) +(trans s3392 s5745) +(trans s3392 s5758) +(trans s3392 s5771) +(trans s3393 s5752) +(trans s3393 s5765) +(trans s3393 s5778) +(trans s3394 s5759) +(trans s3394 s5772) +(trans s3394 s5785) +(trans s3395 s5766) +(trans s3395 s5779) +(trans s3395 s5792) +(trans s3396 s5773) +(trans s3396 s5786) +(trans s3396 s5799) +(trans s3397 s5780) +(trans s3397 s5793) +(trans s3397 s5806) +(trans s3398 s5787) +(trans s3398 s5800) +(trans s3398 s5813) +(trans s3399 s5794) +(trans s3399 s5807) +(trans s3399 s5820) +(trans s3400 s5801) +(trans s3400 s5814) +(trans s3400 s5827) +(trans s3401 s5808) +(trans s3401 s5821) +(trans s3401 s5834) +(trans s3402 s5815) +(trans s3402 s5828) +(trans s3402 s5841) +(trans s3403 s5822) +(trans s3403 s5835) +(trans s3403 s5848) +(trans s3404 s5829) +(trans s3404 s5842) +(trans s3404 s5855) +(trans s3405 s5836) +(trans s3405 s5849) +(trans s3405 s5862) +(trans s3406 s5843) +(trans s3406 s5856) +(trans s3406 s5869) +(trans s3407 s5850) +(trans s3407 s5863) +(trans s3407 s5876) +(trans s3408 s5857) +(trans s3408 s5870) +(trans s3408 s5883) +(trans s3409 s5864) +(trans s3409 s5877) +(trans s3409 s5890) +(trans s3410 s5871) +(trans s3410 s5884) +(trans s3410 s5897) +(trans s3411 s5878) +(trans s3411 s5891) +(trans s3411 s5904) +(trans s3412 s5885) +(trans s3412 s5898) +(trans s3412 s5911) +(trans s3413 s5892) +(trans s3413 s5905) +(trans s3413 s5918) +(trans s3414 s5899) +(trans s3414 s5912) +(trans s3414 s5925) +(trans s3415 s5906) +(trans s3415 s5919) +(trans s3415 s5932) +(trans s3416 s5913) +(trans s3416 s5926) +(trans s3416 s5939) +(trans s3417 s5920) +(trans s3417 s5933) +(trans s3417 s5946) +(trans s3418 s5927) +(trans s3418 s5940) +(trans s3418 s5953) +(trans s3419 s5934) +(trans s3419 s5947) +(trans s3419 s5960) +(trans s3420 s5941) +(trans s3420 s5954) +(trans s3420 s5967) +(trans s3421 s5948) +(trans s3421 s5961) +(trans s3421 s5974) +(trans s3422 s5955) +(trans s3422 s5968) +(trans s3422 s5981) +(trans s3423 s5962) +(trans s3423 s5975) +(trans s3423 s5988) +(trans s3424 s5969) +(trans s3424 s5982) +(trans s3424 s5995) +(trans s3425 s5976) +(trans s3425 s5989) +(trans s3425 s2) +(trans s3426 s5983) +(trans s3426 s5996) +(trans s3426 s9) +(trans s3427 s5990) +(trans s3427 s3) +(trans s3427 s16) +(trans s3428 s5997) +(trans s3428 s10) +(trans s3428 s23) +(trans s3429 s4) +(trans s3429 s17) +(trans s3429 s30) +(trans s3430 s11) +(trans s3430 s24) +(trans s3430 s37) +(trans s3431 s18) +(trans s3431 s31) +(trans s3431 s44) +(trans s3432 s25) +(trans s3432 s38) +(trans s3432 s51) +(trans s3433 s32) +(trans s3433 s45) +(trans s3433 s58) +(trans s3434 s39) +(trans s3434 s52) +(trans s3434 s65) +(trans s3435 s46) +(trans s3435 s59) +(trans s3435 s72) +(trans s3436 s53) +(trans s3436 s66) +(trans s3436 s79) +(trans s3437 s60) +(trans s3437 s73) +(trans s3437 s86) +(trans s3438 s67) +(trans s3438 s80) +(trans s3438 s93) +(trans s3439 s74) +(trans s3439 s87) +(trans s3439 s100) +(trans s3440 s81) +(trans s3440 s94) +(trans s3440 s107) +(trans s3441 s88) +(trans s3441 s101) +(trans s3441 s114) +(trans s3442 s95) +(trans s3442 s108) +(trans s3442 s121) +(trans s3443 s102) +(trans s3443 s115) +(trans s3443 s128) +(trans s3444 s109) +(trans s3444 s122) +(trans s3444 s135) +(trans s3445 s116) +(trans s3445 s129) +(trans s3445 s142) +(trans s3446 s123) +(trans s3446 s136) +(trans s3446 s149) +(trans s3447 s130) +(trans s3447 s143) +(trans s3447 s156) +(trans s3448 s137) +(trans s3448 s150) +(trans s3448 s163) +(trans s3449 s144) +(trans s3449 s157) +(trans s3449 s170) +(trans s3450 s151) +(trans s3450 s164) +(trans s3450 s177) +(trans s3451 s158) +(trans s3451 s171) +(trans s3451 s184) +(trans s3452 s165) +(trans s3452 s178) +(trans s3452 s191) +(trans s3453 s172) +(trans s3453 s185) +(trans s3453 s198) +(trans s3454 s179) +(trans s3454 s192) +(trans s3454 s205) +(trans s3455 s186) +(trans s3455 s199) +(trans s3455 s212) +(trans s3456 s193) +(trans s3456 s206) +(trans s3456 s219) +(trans s3457 s200) +(trans s3457 s213) +(trans s3457 s226) +(trans s3458 s207) +(trans s3458 s220) +(trans s3458 s233) +(trans s3459 s214) +(trans s3459 s227) +(trans s3459 s240) +(trans s3460 s221) +(trans s3460 s234) +(trans s3460 s247) +(trans s3461 s228) +(trans s3461 s241) +(trans s3461 s254) +(trans s3462 s235) +(trans s3462 s248) +(trans s3462 s261) +(trans s3463 s242) +(trans s3463 s255) +(trans s3463 s268) +(trans s3464 s249) +(trans s3464 s262) +(trans s3464 s275) +(trans s3465 s256) +(trans s3465 s269) +(trans s3465 s282) +(trans s3466 s263) +(trans s3466 s276) +(trans s3466 s289) +(trans s3467 s270) +(trans s3467 s283) +(trans s3467 s296) +(trans s3468 s277) +(trans s3468 s290) +(trans s3468 s303) +(trans s3469 s284) +(trans s3469 s297) +(trans s3469 s310) +(trans s3470 s291) +(trans s3470 s304) +(trans s3470 s317) +(trans s3471 s298) +(trans s3471 s311) +(trans s3471 s324) +(trans s3472 s305) +(trans s3472 s318) +(trans s3472 s331) +(trans s3473 s312) +(trans s3473 s325) +(trans s3473 s338) +(trans s3474 s319) +(trans s3474 s332) +(trans s3474 s345) +(trans s3475 s326) +(trans s3475 s339) +(trans s3475 s352) +(trans s3476 s333) +(trans s3476 s346) +(trans s3476 s359) +(trans s3477 s340) +(trans s3477 s353) +(trans s3477 s366) +(trans s3478 s347) +(trans s3478 s360) +(trans s3478 s373) +(trans s3479 s354) +(trans s3479 s367) +(trans s3479 s380) +(trans s3480 s361) +(trans s3480 s374) +(trans s3480 s387) +(trans s3481 s368) +(trans s3481 s381) +(trans s3481 s394) +(trans s3482 s375) +(trans s3482 s388) +(trans s3482 s401) +(trans s3483 s382) +(trans s3483 s395) +(trans s3483 s408) +(trans s3484 s389) +(trans s3484 s402) +(trans s3484 s415) +(trans s3485 s396) +(trans s3485 s409) +(trans s3485 s422) +(trans s3486 s403) +(trans s3486 s416) +(trans s3486 s429) +(trans s3487 s410) +(trans s3487 s423) +(trans s3487 s436) +(trans s3488 s417) +(trans s3488 s430) +(trans s3488 s443) +(trans s3489 s424) +(trans s3489 s437) +(trans s3489 s450) +(trans s3490 s431) +(trans s3490 s444) +(trans s3490 s457) +(trans s3491 s438) +(trans s3491 s451) +(trans s3491 s464) +(trans s3492 s445) +(trans s3492 s458) +(trans s3492 s471) +(trans s3493 s452) +(trans s3493 s465) +(trans s3493 s478) +(trans s3494 s459) +(trans s3494 s472) +(trans s3494 s485) +(trans s3495 s466) +(trans s3495 s479) +(trans s3495 s492) +(trans s3496 s473) +(trans s3496 s486) +(trans s3496 s499) +(trans s3497 s480) +(trans s3497 s493) +(trans s3497 s506) +(trans s3498 s487) +(trans s3498 s500) +(trans s3498 s513) +(trans s3499 s494) +(trans s3499 s507) +(trans s3499 s520) +(trans s3500 s501) +(trans s3500 s514) +(trans s3500 s527) +(trans s3501 s508) +(trans s3501 s521) +(trans s3501 s534) +(trans s3502 s515) +(trans s3502 s528) +(trans s3502 s541) +(trans s3503 s522) +(trans s3503 s535) +(trans s3503 s548) +(trans s3504 s529) +(trans s3504 s542) +(trans s3504 s555) +(trans s3505 s536) +(trans s3505 s549) +(trans s3505 s562) +(trans s3506 s543) +(trans s3506 s556) +(trans s3506 s569) +(trans s3507 s550) +(trans s3507 s563) +(trans s3507 s576) +(trans s3508 s557) +(trans s3508 s570) +(trans s3508 s583) +(trans s3509 s564) +(trans s3509 s577) +(trans s3509 s590) +(trans s3510 s571) +(trans s3510 s584) +(trans s3510 s597) +(trans s3511 s578) +(trans s3511 s591) +(trans s3511 s604) +(trans s3512 s585) +(trans s3512 s598) +(trans s3512 s611) +(trans s3513 s592) +(trans s3513 s605) +(trans s3513 s618) +(trans s3514 s599) +(trans s3514 s612) +(trans s3514 s625) +(trans s3515 s606) +(trans s3515 s619) +(trans s3515 s632) +(trans s3516 s613) +(trans s3516 s626) +(trans s3516 s639) +(trans s3517 s620) +(trans s3517 s633) +(trans s3517 s646) +(trans s3518 s627) +(trans s3518 s640) +(trans s3518 s653) +(trans s3519 s634) +(trans s3519 s647) +(trans s3519 s660) +(trans s3520 s641) +(trans s3520 s654) +(trans s3520 s667) +(trans s3521 s648) +(trans s3521 s661) +(trans s3521 s674) +(trans s3522 s655) +(trans s3522 s668) +(trans s3522 s681) +(trans s3523 s662) +(trans s3523 s675) +(trans s3523 s688) +(trans s3524 s669) +(trans s3524 s682) +(trans s3524 s695) +(trans s3525 s676) +(trans s3525 s689) +(trans s3525 s702) +(trans s3526 s683) +(trans s3526 s696) +(trans s3526 s709) +(trans s3527 s690) +(trans s3527 s703) +(trans s3527 s716) +(trans s3528 s697) +(trans s3528 s710) +(trans s3528 s723) +(trans s3529 s704) +(trans s3529 s717) +(trans s3529 s730) +(trans s3530 s711) +(trans s3530 s724) +(trans s3530 s737) +(trans s3531 s718) +(trans s3531 s731) +(trans s3531 s744) +(trans s3532 s725) +(trans s3532 s738) +(trans s3532 s751) +(trans s3533 s732) +(trans s3533 s745) +(trans s3533 s758) +(trans s3534 s739) +(trans s3534 s752) +(trans s3534 s765) +(trans s3535 s746) +(trans s3535 s759) +(trans s3535 s772) +(trans s3536 s753) +(trans s3536 s766) +(trans s3536 s779) +(trans s3537 s760) +(trans s3537 s773) +(trans s3537 s786) +(trans s3538 s767) +(trans s3538 s780) +(trans s3538 s793) +(trans s3539 s774) +(trans s3539 s787) +(trans s3539 s800) +(trans s3540 s781) +(trans s3540 s794) +(trans s3540 s807) +(trans s3541 s788) +(trans s3541 s801) +(trans s3541 s814) +(trans s3542 s795) +(trans s3542 s808) +(trans s3542 s821) +(trans s3543 s802) +(trans s3543 s815) +(trans s3543 s828) +(trans s3544 s809) +(trans s3544 s822) +(trans s3544 s835) +(trans s3545 s816) +(trans s3545 s829) +(trans s3545 s842) +(trans s3546 s823) +(trans s3546 s836) +(trans s3546 s849) +(trans s3547 s830) +(trans s3547 s843) +(trans s3547 s856) +(trans s3548 s837) +(trans s3548 s850) +(trans s3548 s863) +(trans s3549 s844) +(trans s3549 s857) +(trans s3549 s870) +(trans s3550 s851) +(trans s3550 s864) +(trans s3550 s877) +(trans s3551 s858) +(trans s3551 s871) +(trans s3551 s884) +(trans s3552 s865) +(trans s3552 s878) +(trans s3552 s891) +(trans s3553 s872) +(trans s3553 s885) +(trans s3553 s898) +(trans s3554 s879) +(trans s3554 s892) +(trans s3554 s905) +(trans s3555 s886) +(trans s3555 s899) +(trans s3555 s912) +(trans s3556 s893) +(trans s3556 s906) +(trans s3556 s919) +(trans s3557 s900) +(trans s3557 s913) +(trans s3557 s926) +(trans s3558 s907) +(trans s3558 s920) +(trans s3558 s933) +(trans s3559 s914) +(trans s3559 s927) +(trans s3559 s940) +(trans s3560 s921) +(trans s3560 s934) +(trans s3560 s947) +(trans s3561 s928) +(trans s3561 s941) +(trans s3561 s954) +(trans s3562 s935) +(trans s3562 s948) +(trans s3562 s961) +(trans s3563 s942) +(trans s3563 s955) +(trans s3563 s968) +(trans s3564 s949) +(trans s3564 s962) +(trans s3564 s975) +(trans s3565 s956) +(trans s3565 s969) +(trans s3565 s982) +(trans s3566 s963) +(trans s3566 s976) +(trans s3566 s989) +(trans s3567 s970) +(trans s3567 s983) +(trans s3567 s996) +(trans s3568 s977) +(trans s3568 s990) +(trans s3568 s1003) +(trans s3569 s984) +(trans s3569 s997) +(trans s3569 s1010) +(trans s3570 s991) +(trans s3570 s1004) +(trans s3570 s1017) +(trans s3571 s998) +(trans s3571 s1011) +(trans s3571 s1024) +(trans s3572 s1005) +(trans s3572 s1018) +(trans s3572 s1031) +(trans s3573 s1012) +(trans s3573 s1025) +(trans s3573 s1038) +(trans s3574 s1019) +(trans s3574 s1032) +(trans s3574 s1045) +(trans s3575 s1026) +(trans s3575 s1039) +(trans s3575 s1052) +(trans s3576 s1033) +(trans s3576 s1046) +(trans s3576 s1059) +(trans s3577 s1040) +(trans s3577 s1053) +(trans s3577 s1066) +(trans s3578 s1047) +(trans s3578 s1060) +(trans s3578 s1073) +(trans s3579 s1054) +(trans s3579 s1067) +(trans s3579 s1080) +(trans s3580 s1061) +(trans s3580 s1074) +(trans s3580 s1087) +(trans s3581 s1068) +(trans s3581 s1081) +(trans s3581 s1094) +(trans s3582 s1075) +(trans s3582 s1088) +(trans s3582 s1101) +(trans s3583 s1082) +(trans s3583 s1095) +(trans s3583 s1108) +(trans s3584 s1089) +(trans s3584 s1102) +(trans s3584 s1115) +(trans s3585 s1096) +(trans s3585 s1109) +(trans s3585 s1122) +(trans s3586 s1103) +(trans s3586 s1116) +(trans s3586 s1129) +(trans s3587 s1110) +(trans s3587 s1123) +(trans s3587 s1136) +(trans s3588 s1117) +(trans s3588 s1130) +(trans s3588 s1143) +(trans s3589 s1124) +(trans s3589 s1137) +(trans s3589 s1150) +(trans s3590 s1131) +(trans s3590 s1144) +(trans s3590 s1157) +(trans s3591 s1138) +(trans s3591 s1151) +(trans s3591 s1164) +(trans s3592 s1145) +(trans s3592 s1158) +(trans s3592 s1171) +(trans s3593 s1152) +(trans s3593 s1165) +(trans s3593 s1178) +(trans s3594 s1159) +(trans s3594 s1172) +(trans s3594 s1185) +(trans s3595 s1166) +(trans s3595 s1179) +(trans s3595 s1192) +(trans s3596 s1173) +(trans s3596 s1186) +(trans s3596 s1199) +(trans s3597 s1180) +(trans s3597 s1193) +(trans s3597 s1206) +(trans s3598 s1187) +(trans s3598 s1200) +(trans s3598 s1213) +(trans s3599 s1194) +(trans s3599 s1207) +(trans s3599 s1220) +(trans s3600 s1201) +(trans s3600 s1214) +(trans s3600 s1227) +(trans s3601 s1208) +(trans s3601 s1221) +(trans s3601 s1234) +(trans s3602 s1215) +(trans s3602 s1228) +(trans s3602 s1241) +(trans s3603 s1222) +(trans s3603 s1235) +(trans s3603 s1248) +(trans s3604 s1229) +(trans s3604 s1242) +(trans s3604 s1255) +(trans s3605 s1236) +(trans s3605 s1249) +(trans s3605 s1262) +(trans s3606 s1243) +(trans s3606 s1256) +(trans s3606 s1269) +(trans s3607 s1250) +(trans s3607 s1263) +(trans s3607 s1276) +(trans s3608 s1257) +(trans s3608 s1270) +(trans s3608 s1283) +(trans s3609 s1264) +(trans s3609 s1277) +(trans s3609 s1290) +(trans s3610 s1271) +(trans s3610 s1284) +(trans s3610 s1297) +(trans s3611 s1278) +(trans s3611 s1291) +(trans s3611 s1304) +(trans s3612 s1285) +(trans s3612 s1298) +(trans s3612 s1311) +(trans s3613 s1292) +(trans s3613 s1305) +(trans s3613 s1318) +(trans s3614 s1299) +(trans s3614 s1312) +(trans s3614 s1325) +(trans s3615 s1306) +(trans s3615 s1319) +(trans s3615 s1332) +(trans s3616 s1313) +(trans s3616 s1326) +(trans s3616 s1339) +(trans s3617 s1320) +(trans s3617 s1333) +(trans s3617 s1346) +(trans s3618 s1327) +(trans s3618 s1340) +(trans s3618 s1353) +(trans s3619 s1334) +(trans s3619 s1347) +(trans s3619 s1360) +(trans s3620 s1341) +(trans s3620 s1354) +(trans s3620 s1367) +(trans s3621 s1348) +(trans s3621 s1361) +(trans s3621 s1374) +(trans s3622 s1355) +(trans s3622 s1368) +(trans s3622 s1381) +(trans s3623 s1362) +(trans s3623 s1375) +(trans s3623 s1388) +(trans s3624 s1369) +(trans s3624 s1382) +(trans s3624 s1395) +(trans s3625 s1376) +(trans s3625 s1389) +(trans s3625 s1402) +(trans s3626 s1383) +(trans s3626 s1396) +(trans s3626 s1409) +(trans s3627 s1390) +(trans s3627 s1403) +(trans s3627 s1416) +(trans s3628 s1397) +(trans s3628 s1410) +(trans s3628 s1423) +(trans s3629 s1404) +(trans s3629 s1417) +(trans s3629 s1430) +(trans s3630 s1411) +(trans s3630 s1424) +(trans s3630 s1437) +(trans s3631 s1418) +(trans s3631 s1431) +(trans s3631 s1444) +(trans s3632 s1425) +(trans s3632 s1438) +(trans s3632 s1451) +(trans s3633 s1432) +(trans s3633 s1445) +(trans s3633 s1458) +(trans s3634 s1439) +(trans s3634 s1452) +(trans s3634 s1465) +(trans s3635 s1446) +(trans s3635 s1459) +(trans s3635 s1472) +(trans s3636 s1453) +(trans s3636 s1466) +(trans s3636 s1479) +(trans s3637 s1460) +(trans s3637 s1473) +(trans s3637 s1486) +(trans s3638 s1467) +(trans s3638 s1480) +(trans s3638 s1493) +(trans s3639 s1474) +(trans s3639 s1487) +(trans s3639 s1500) +(trans s3640 s1481) +(trans s3640 s1494) +(trans s3640 s1507) +(trans s3641 s1488) +(trans s3641 s1501) +(trans s3641 s1514) +(trans s3642 s1495) +(trans s3642 s1508) +(trans s3642 s1521) +(trans s3643 s1502) +(trans s3643 s1515) +(trans s3643 s1528) +(trans s3644 s1509) +(trans s3644 s1522) +(trans s3644 s1535) +(trans s3645 s1516) +(trans s3645 s1529) +(trans s3645 s1542) +(trans s3646 s1523) +(trans s3646 s1536) +(trans s3646 s1549) +(trans s3647 s1530) +(trans s3647 s1543) +(trans s3647 s1556) +(trans s3648 s1537) +(trans s3648 s1550) +(trans s3648 s1563) +(trans s3649 s1544) +(trans s3649 s1557) +(trans s3649 s1570) +(trans s3650 s1551) +(trans s3650 s1564) +(trans s3650 s1577) +(trans s3651 s1558) +(trans s3651 s1571) +(trans s3651 s1584) +(trans s3652 s1565) +(trans s3652 s1578) +(trans s3652 s1591) +(trans s3653 s1572) +(trans s3653 s1585) +(trans s3653 s1598) +(trans s3654 s1579) +(trans s3654 s1592) +(trans s3654 s1605) +(trans s3655 s1586) +(trans s3655 s1599) +(trans s3655 s1612) +(trans s3656 s1593) +(trans s3656 s1606) +(trans s3656 s1619) +(trans s3657 s1600) +(trans s3657 s1613) +(trans s3657 s1626) +(trans s3658 s1607) +(trans s3658 s1620) +(trans s3658 s1633) +(trans s3659 s1614) +(trans s3659 s1627) +(trans s3659 s1640) +(trans s3660 s1621) +(trans s3660 s1634) +(trans s3660 s1647) +(trans s3661 s1628) +(trans s3661 s1641) +(trans s3661 s1654) +(trans s3662 s1635) +(trans s3662 s1648) +(trans s3662 s1661) +(trans s3663 s1642) +(trans s3663 s1655) +(trans s3663 s1668) +(trans s3664 s1649) +(trans s3664 s1662) +(trans s3664 s1675) +(trans s3665 s1656) +(trans s3665 s1669) +(trans s3665 s1682) +(trans s3666 s1663) +(trans s3666 s1676) +(trans s3666 s1689) +(trans s3667 s1670) +(trans s3667 s1683) +(trans s3667 s1696) +(trans s3668 s1677) +(trans s3668 s1690) +(trans s3668 s1703) +(trans s3669 s1684) +(trans s3669 s1697) +(trans s3669 s1710) +(trans s3670 s1691) +(trans s3670 s1704) +(trans s3670 s1717) +(trans s3671 s1698) +(trans s3671 s1711) +(trans s3671 s1724) +(trans s3672 s1705) +(trans s3672 s1718) +(trans s3672 s1731) +(trans s3673 s1712) +(trans s3673 s1725) +(trans s3673 s1738) +(trans s3674 s1719) +(trans s3674 s1732) +(trans s3674 s1745) +(trans s3675 s1726) +(trans s3675 s1739) +(trans s3675 s1752) +(trans s3676 s1733) +(trans s3676 s1746) +(trans s3676 s1759) +(trans s3677 s1740) +(trans s3677 s1753) +(trans s3677 s1766) +(trans s3678 s1747) +(trans s3678 s1760) +(trans s3678 s1773) +(trans s3679 s1754) +(trans s3679 s1767) +(trans s3679 s1780) +(trans s3680 s1761) +(trans s3680 s1774) +(trans s3680 s1787) +(trans s3681 s1768) +(trans s3681 s1781) +(trans s3681 s1794) +(trans s3682 s1775) +(trans s3682 s1788) +(trans s3682 s1801) +(trans s3683 s1782) +(trans s3683 s1795) +(trans s3683 s1808) +(trans s3684 s1789) +(trans s3684 s1802) +(trans s3684 s1815) +(trans s3685 s1796) +(trans s3685 s1809) +(trans s3685 s1822) +(trans s3686 s1803) +(trans s3686 s1816) +(trans s3686 s1829) +(trans s3687 s1810) +(trans s3687 s1823) +(trans s3687 s1836) +(trans s3688 s1817) +(trans s3688 s1830) +(trans s3688 s1843) +(trans s3689 s1824) +(trans s3689 s1837) +(trans s3689 s1850) +(trans s3690 s1831) +(trans s3690 s1844) +(trans s3690 s1857) +(trans s3691 s1838) +(trans s3691 s1851) +(trans s3691 s1864) +(trans s3692 s1845) +(trans s3692 s1858) +(trans s3692 s1871) +(trans s3693 s1852) +(trans s3693 s1865) +(trans s3693 s1878) +(trans s3694 s1859) +(trans s3694 s1872) +(trans s3694 s1885) +(trans s3695 s1866) +(trans s3695 s1879) +(trans s3695 s1892) +(trans s3696 s1873) +(trans s3696 s1886) +(trans s3696 s1899) +(trans s3697 s1880) +(trans s3697 s1893) +(trans s3697 s1906) +(trans s3698 s1887) +(trans s3698 s1900) +(trans s3698 s1913) +(trans s3699 s1894) +(trans s3699 s1907) +(trans s3699 s1920) +(trans s3700 s1901) +(trans s3700 s1914) +(trans s3700 s1927) +(trans s3701 s1908) +(trans s3701 s1921) +(trans s3701 s1934) +(trans s3702 s1915) +(trans s3702 s1928) +(trans s3702 s1941) +(trans s3703 s1922) +(trans s3703 s1935) +(trans s3703 s1948) +(trans s3704 s1929) +(trans s3704 s1942) +(trans s3704 s1955) +(trans s3705 s1936) +(trans s3705 s1949) +(trans s3705 s1962) +(trans s3706 s1943) +(trans s3706 s1956) +(trans s3706 s1969) +(trans s3707 s1950) +(trans s3707 s1963) +(trans s3707 s1976) +(trans s3708 s1957) +(trans s3708 s1970) +(trans s3708 s1983) +(trans s3709 s1964) +(trans s3709 s1977) +(trans s3709 s1990) +(trans s3710 s1971) +(trans s3710 s1984) +(trans s3710 s1997) +(trans s3711 s1978) +(trans s3711 s1991) +(trans s3711 s2004) +(trans s3712 s1985) +(trans s3712 s1998) +(trans s3712 s2011) +(trans s3713 s1992) +(trans s3713 s2005) +(trans s3713 s2018) +(trans s3714 s1999) +(trans s3714 s2012) +(trans s3714 s2025) +(trans s3715 s2006) +(trans s3715 s2019) +(trans s3715 s2032) +(trans s3716 s2013) +(trans s3716 s2026) +(trans s3716 s2039) +(trans s3717 s2020) +(trans s3717 s2033) +(trans s3717 s2046) +(trans s3718 s2027) +(trans s3718 s2040) +(trans s3718 s2053) +(trans s3719 s2034) +(trans s3719 s2047) +(trans s3719 s2060) +(trans s3720 s2041) +(trans s3720 s2054) +(trans s3720 s2067) +(trans s3721 s2048) +(trans s3721 s2061) +(trans s3721 s2074) +(trans s3722 s2055) +(trans s3722 s2068) +(trans s3722 s2081) +(trans s3723 s2062) +(trans s3723 s2075) +(trans s3723 s2088) +(trans s3724 s2069) +(trans s3724 s2082) +(trans s3724 s2095) +(trans s3725 s2076) +(trans s3725 s2089) +(trans s3725 s2102) +(trans s3726 s2083) +(trans s3726 s2096) +(trans s3726 s2109) +(trans s3727 s2090) +(trans s3727 s2103) +(trans s3727 s2116) +(trans s3728 s2097) +(trans s3728 s2110) +(trans s3728 s2123) +(trans s3729 s2104) +(trans s3729 s2117) +(trans s3729 s2130) +(trans s3730 s2111) +(trans s3730 s2124) +(trans s3730 s2137) +(trans s3731 s2118) +(trans s3731 s2131) +(trans s3731 s2144) +(trans s3732 s2125) +(trans s3732 s2138) +(trans s3732 s2151) +(trans s3733 s2132) +(trans s3733 s2145) +(trans s3733 s2158) +(trans s3734 s2139) +(trans s3734 s2152) +(trans s3734 s2165) +(trans s3735 s2146) +(trans s3735 s2159) +(trans s3735 s2172) +(trans s3736 s2153) +(trans s3736 s2166) +(trans s3736 s2179) +(trans s3737 s2160) +(trans s3737 s2173) +(trans s3737 s2186) +(trans s3738 s2167) +(trans s3738 s2180) +(trans s3738 s2193) +(trans s3739 s2174) +(trans s3739 s2187) +(trans s3739 s2200) +(trans s3740 s2181) +(trans s3740 s2194) +(trans s3740 s2207) +(trans s3741 s2188) +(trans s3741 s2201) +(trans s3741 s2214) +(trans s3742 s2195) +(trans s3742 s2208) +(trans s3742 s2221) +(trans s3743 s2202) +(trans s3743 s2215) +(trans s3743 s2228) +(trans s3744 s2209) +(trans s3744 s2222) +(trans s3744 s2235) +(trans s3745 s2216) +(trans s3745 s2229) +(trans s3745 s2242) +(trans s3746 s2223) +(trans s3746 s2236) +(trans s3746 s2249) +(trans s3747 s2230) +(trans s3747 s2243) +(trans s3747 s2256) +(trans s3748 s2237) +(trans s3748 s2250) +(trans s3748 s2263) +(trans s3749 s2244) +(trans s3749 s2257) +(trans s3749 s2270) +(trans s3750 s2251) +(trans s3750 s2264) +(trans s3750 s2277) +(trans s3751 s2258) +(trans s3751 s2271) +(trans s3751 s2284) +(trans s3752 s2265) +(trans s3752 s2278) +(trans s3752 s2291) +(trans s3753 s2272) +(trans s3753 s2285) +(trans s3753 s2298) +(trans s3754 s2279) +(trans s3754 s2292) +(trans s3754 s2305) +(trans s3755 s2286) +(trans s3755 s2299) +(trans s3755 s2312) +(trans s3756 s2293) +(trans s3756 s2306) +(trans s3756 s2319) +(trans s3757 s2300) +(trans s3757 s2313) +(trans s3757 s2326) +(trans s3758 s2307) +(trans s3758 s2320) +(trans s3758 s2333) +(trans s3759 s2314) +(trans s3759 s2327) +(trans s3759 s2340) +(trans s3760 s2321) +(trans s3760 s2334) +(trans s3760 s2347) +(trans s3761 s2328) +(trans s3761 s2341) +(trans s3761 s2354) +(trans s3762 s2335) +(trans s3762 s2348) +(trans s3762 s2361) +(trans s3763 s2342) +(trans s3763 s2355) +(trans s3763 s2368) +(trans s3764 s2349) +(trans s3764 s2362) +(trans s3764 s2375) +(trans s3765 s2356) +(trans s3765 s2369) +(trans s3765 s2382) +(trans s3766 s2363) +(trans s3766 s2376) +(trans s3766 s2389) +(trans s3767 s2370) +(trans s3767 s2383) +(trans s3767 s2396) +(trans s3768 s2377) +(trans s3768 s2390) +(trans s3768 s2403) +(trans s3769 s2384) +(trans s3769 s2397) +(trans s3769 s2410) +(trans s3770 s2391) +(trans s3770 s2404) +(trans s3770 s2417) +(trans s3771 s2398) +(trans s3771 s2411) +(trans s3771 s2424) +(trans s3772 s2405) +(trans s3772 s2418) +(trans s3772 s2431) +(trans s3773 s2412) +(trans s3773 s2425) +(trans s3773 s2438) +(trans s3774 s2419) +(trans s3774 s2432) +(trans s3774 s2445) +(trans s3775 s2426) +(trans s3775 s2439) +(trans s3775 s2452) +(trans s3776 s2433) +(trans s3776 s2446) +(trans s3776 s2459) +(trans s3777 s2440) +(trans s3777 s2453) +(trans s3777 s2466) +(trans s3778 s2447) +(trans s3778 s2460) +(trans s3778 s2473) +(trans s3779 s2454) +(trans s3779 s2467) +(trans s3779 s2480) +(trans s3780 s2461) +(trans s3780 s2474) +(trans s3780 s2487) +(trans s3781 s2468) +(trans s3781 s2481) +(trans s3781 s2494) +(trans s3782 s2475) +(trans s3782 s2488) +(trans s3782 s2501) +(trans s3783 s2482) +(trans s3783 s2495) +(trans s3783 s2508) +(trans s3784 s2489) +(trans s3784 s2502) +(trans s3784 s2515) +(trans s3785 s2496) +(trans s3785 s2509) +(trans s3785 s2522) +(trans s3786 s2503) +(trans s3786 s2516) +(trans s3786 s2529) +(trans s3787 s2510) +(trans s3787 s2523) +(trans s3787 s2536) +(trans s3788 s2517) +(trans s3788 s2530) +(trans s3788 s2543) +(trans s3789 s2524) +(trans s3789 s2537) +(trans s3789 s2550) +(trans s3790 s2531) +(trans s3790 s2544) +(trans s3790 s2557) +(trans s3791 s2538) +(trans s3791 s2551) +(trans s3791 s2564) +(trans s3792 s2545) +(trans s3792 s2558) +(trans s3792 s2571) +(trans s3793 s2552) +(trans s3793 s2565) +(trans s3793 s2578) +(trans s3794 s2559) +(trans s3794 s2572) +(trans s3794 s2585) +(trans s3795 s2566) +(trans s3795 s2579) +(trans s3795 s2592) +(trans s3796 s2573) +(trans s3796 s2586) +(trans s3796 s2599) +(trans s3797 s2580) +(trans s3797 s2593) +(trans s3797 s2606) +(trans s3798 s2587) +(trans s3798 s2600) +(trans s3798 s2613) +(trans s3799 s2594) +(trans s3799 s2607) +(trans s3799 s2620) +(trans s3800 s2601) +(trans s3800 s2614) +(trans s3800 s2627) +(trans s3801 s2608) +(trans s3801 s2621) +(trans s3801 s2634) +(trans s3802 s2615) +(trans s3802 s2628) +(trans s3802 s2641) +(trans s3803 s2622) +(trans s3803 s2635) +(trans s3803 s2648) +(trans s3804 s2629) +(trans s3804 s2642) +(trans s3804 s2655) +(trans s3805 s2636) +(trans s3805 s2649) +(trans s3805 s2662) +(trans s3806 s2643) +(trans s3806 s2656) +(trans s3806 s2669) +(trans s3807 s2650) +(trans s3807 s2663) +(trans s3807 s2676) +(trans s3808 s2657) +(trans s3808 s2670) +(trans s3808 s2683) +(trans s3809 s2664) +(trans s3809 s2677) +(trans s3809 s2690) +(trans s3810 s2671) +(trans s3810 s2684) +(trans s3810 s2697) +(trans s3811 s2678) +(trans s3811 s2691) +(trans s3811 s2704) +(trans s3812 s2685) +(trans s3812 s2698) +(trans s3812 s2711) +(trans s3813 s2692) +(trans s3813 s2705) +(trans s3813 s2718) +(trans s3814 s2699) +(trans s3814 s2712) +(trans s3814 s2725) +(trans s3815 s2706) +(trans s3815 s2719) +(trans s3815 s2732) +(trans s3816 s2713) +(trans s3816 s2726) +(trans s3816 s2739) +(trans s3817 s2720) +(trans s3817 s2733) +(trans s3817 s2746) +(trans s3818 s2727) +(trans s3818 s2740) +(trans s3818 s2753) +(trans s3819 s2734) +(trans s3819 s2747) +(trans s3819 s2760) +(trans s3820 s2741) +(trans s3820 s2754) +(trans s3820 s2767) +(trans s3821 s2748) +(trans s3821 s2761) +(trans s3821 s2774) +(trans s3822 s2755) +(trans s3822 s2768) +(trans s3822 s2781) +(trans s3823 s2762) +(trans s3823 s2775) +(trans s3823 s2788) +(trans s3824 s2769) +(trans s3824 s2782) +(trans s3824 s2795) +(trans s3825 s2776) +(trans s3825 s2789) +(trans s3825 s2802) +(trans s3826 s2783) +(trans s3826 s2796) +(trans s3826 s2809) +(trans s3827 s2790) +(trans s3827 s2803) +(trans s3827 s2816) +(trans s3828 s2797) +(trans s3828 s2810) +(trans s3828 s2823) +(trans s3829 s2804) +(trans s3829 s2817) +(trans s3829 s2830) +(trans s3830 s2811) +(trans s3830 s2824) +(trans s3830 s2837) +(trans s3831 s2818) +(trans s3831 s2831) +(trans s3831 s2844) +(trans s3832 s2825) +(trans s3832 s2838) +(trans s3832 s2851) +(trans s3833 s2832) +(trans s3833 s2845) +(trans s3833 s2858) +(trans s3834 s2839) +(trans s3834 s2852) +(trans s3834 s2865) +(trans s3835 s2846) +(trans s3835 s2859) +(trans s3835 s2872) +(trans s3836 s2853) +(trans s3836 s2866) +(trans s3836 s2879) +(trans s3837 s2860) +(trans s3837 s2873) +(trans s3837 s2886) +(trans s3838 s2867) +(trans s3838 s2880) +(trans s3838 s2893) +(trans s3839 s2874) +(trans s3839 s2887) +(trans s3839 s2900) +(trans s3840 s2881) +(trans s3840 s2894) +(trans s3840 s2907) +(trans s3841 s2888) +(trans s3841 s2901) +(trans s3841 s2914) +(trans s3842 s2895) +(trans s3842 s2908) +(trans s3842 s2921) +(trans s3843 s2902) +(trans s3843 s2915) +(trans s3843 s2928) +(trans s3844 s2909) +(trans s3844 s2922) +(trans s3844 s2935) +(trans s3845 s2916) +(trans s3845 s2929) +(trans s3845 s2942) +(trans s3846 s2923) +(trans s3846 s2936) +(trans s3846 s2949) +(trans s3847 s2930) +(trans s3847 s2943) +(trans s3847 s2956) +(trans s3848 s2937) +(trans s3848 s2950) +(trans s3848 s2963) +(trans s3849 s2944) +(trans s3849 s2957) +(trans s3849 s2970) +(trans s3850 s2951) +(trans s3850 s2964) +(trans s3850 s2977) +(trans s3851 s2958) +(trans s3851 s2971) +(trans s3851 s2984) +(trans s3852 s2965) +(trans s3852 s2978) +(trans s3852 s2991) +(trans s3853 s2972) +(trans s3853 s2985) +(trans s3853 s2998) +(trans s3854 s2979) +(trans s3854 s2992) +(trans s3854 s3005) +(trans s3855 s2986) +(trans s3855 s2999) +(trans s3855 s3012) +(trans s3856 s2993) +(trans s3856 s3006) +(trans s3856 s3019) +(trans s3857 s3000) +(trans s3857 s3013) +(trans s3857 s3026) +(trans s3858 s3007) +(trans s3858 s3020) +(trans s3858 s3033) +(trans s3859 s3014) +(trans s3859 s3027) +(trans s3859 s3040) +(trans s3860 s3021) +(trans s3860 s3034) +(trans s3860 s3047) +(trans s3861 s3028) +(trans s3861 s3041) +(trans s3861 s3054) +(trans s3862 s3035) +(trans s3862 s3048) +(trans s3862 s3061) +(trans s3863 s3042) +(trans s3863 s3055) +(trans s3863 s3068) +(trans s3864 s3049) +(trans s3864 s3062) +(trans s3864 s3075) +(trans s3865 s3056) +(trans s3865 s3069) +(trans s3865 s3082) +(trans s3866 s3063) +(trans s3866 s3076) +(trans s3866 s3089) +(trans s3867 s3070) +(trans s3867 s3083) +(trans s3867 s3096) +(trans s3868 s3077) +(trans s3868 s3090) +(trans s3868 s3103) +(trans s3869 s3084) +(trans s3869 s3097) +(trans s3869 s3110) +(trans s3870 s3091) +(trans s3870 s3104) +(trans s3870 s3117) +(trans s3871 s3098) +(trans s3871 s3111) +(trans s3871 s3124) +(trans s3872 s3105) +(trans s3872 s3118) +(trans s3872 s3131) +(trans s3873 s3112) +(trans s3873 s3125) +(trans s3873 s3138) +(trans s3874 s3119) +(trans s3874 s3132) +(trans s3874 s3145) +(trans s3875 s3126) +(trans s3875 s3139) +(trans s3875 s3152) +(trans s3876 s3133) +(trans s3876 s3146) +(trans s3876 s3159) +(trans s3877 s3140) +(trans s3877 s3153) +(trans s3877 s3166) +(trans s3878 s3147) +(trans s3878 s3160) +(trans s3878 s3173) +(trans s3879 s3154) +(trans s3879 s3167) +(trans s3879 s3180) +(trans s3880 s3161) +(trans s3880 s3174) +(trans s3880 s3187) +(trans s3881 s3168) +(trans s3881 s3181) +(trans s3881 s3194) +(trans s3882 s3175) +(trans s3882 s3188) +(trans s3882 s3201) +(trans s3883 s3182) +(trans s3883 s3195) +(trans s3883 s3208) +(trans s3884 s3189) +(trans s3884 s3202) +(trans s3884 s3215) +(trans s3885 s3196) +(trans s3885 s3209) +(trans s3885 s3222) +(trans s3886 s3203) +(trans s3886 s3216) +(trans s3886 s3229) +(trans s3887 s3210) +(trans s3887 s3223) +(trans s3887 s3236) +(trans s3888 s3217) +(trans s3888 s3230) +(trans s3888 s3243) +(trans s3889 s3224) +(trans s3889 s3237) +(trans s3889 s3250) +(trans s3890 s3231) +(trans s3890 s3244) +(trans s3890 s3257) +(trans s3891 s3238) +(trans s3891 s3251) +(trans s3891 s3264) +(trans s3892 s3245) +(trans s3892 s3258) +(trans s3892 s3271) +(trans s3893 s3252) +(trans s3893 s3265) +(trans s3893 s3278) +(trans s3894 s3259) +(trans s3894 s3272) +(trans s3894 s3285) +(trans s3895 s3266) +(trans s3895 s3279) +(trans s3895 s3292) +(trans s3896 s3273) +(trans s3896 s3286) +(trans s3896 s3299) +(trans s3897 s3280) +(trans s3897 s3293) +(trans s3897 s3306) +(trans s3898 s3287) +(trans s3898 s3300) +(trans s3898 s3313) +(trans s3899 s3294) +(trans s3899 s3307) +(trans s3899 s3320) +(trans s3900 s3301) +(trans s3900 s3314) +(trans s3900 s3327) +(trans s3901 s3308) +(trans s3901 s3321) +(trans s3901 s3334) +(trans s3902 s3315) +(trans s3902 s3328) +(trans s3902 s3341) +(trans s3903 s3322) +(trans s3903 s3335) +(trans s3903 s3348) +(trans s3904 s3329) +(trans s3904 s3342) +(trans s3904 s3355) +(trans s3905 s3336) +(trans s3905 s3349) +(trans s3905 s3362) +(trans s3906 s3343) +(trans s3906 s3356) +(trans s3906 s3369) +(trans s3907 s3350) +(trans s3907 s3363) +(trans s3907 s3376) +(trans s3908 s3357) +(trans s3908 s3370) +(trans s3908 s3383) +(trans s3909 s3364) +(trans s3909 s3377) +(trans s3909 s3390) +(trans s3910 s3371) +(trans s3910 s3384) +(trans s3910 s3397) +(trans s3911 s3378) +(trans s3911 s3391) +(trans s3911 s3404) +(trans s3912 s3385) +(trans s3912 s3398) +(trans s3912 s3411) +(trans s3913 s3392) +(trans s3913 s3405) +(trans s3913 s3418) +(trans s3914 s3399) +(trans s3914 s3412) +(trans s3914 s3425) +(trans s3915 s3406) +(trans s3915 s3419) +(trans s3915 s3432) +(trans s3916 s3413) +(trans s3916 s3426) +(trans s3916 s3439) +(trans s3917 s3420) +(trans s3917 s3433) +(trans s3917 s3446) +(trans s3918 s3427) +(trans s3918 s3440) +(trans s3918 s3453) +(trans s3919 s3434) +(trans s3919 s3447) +(trans s3919 s3460) +(trans s3920 s3441) +(trans s3920 s3454) +(trans s3920 s3467) +(trans s3921 s3448) +(trans s3921 s3461) +(trans s3921 s3474) +(trans s3922 s3455) +(trans s3922 s3468) +(trans s3922 s3481) +(trans s3923 s3462) +(trans s3923 s3475) +(trans s3923 s3488) +(trans s3924 s3469) +(trans s3924 s3482) +(trans s3924 s3495) +(trans s3925 s3476) +(trans s3925 s3489) +(trans s3925 s3502) +(trans s3926 s3483) +(trans s3926 s3496) +(trans s3926 s3509) +(trans s3927 s3490) +(trans s3927 s3503) +(trans s3927 s3516) +(trans s3928 s3497) +(trans s3928 s3510) +(trans s3928 s3523) +(trans s3929 s3504) +(trans s3929 s3517) +(trans s3929 s3530) +(trans s3930 s3511) +(trans s3930 s3524) +(trans s3930 s3537) +(trans s3931 s3518) +(trans s3931 s3531) +(trans s3931 s3544) +(trans s3932 s3525) +(trans s3932 s3538) +(trans s3932 s3551) +(trans s3933 s3532) +(trans s3933 s3545) +(trans s3933 s3558) +(trans s3934 s3539) +(trans s3934 s3552) +(trans s3934 s3565) +(trans s3935 s3546) +(trans s3935 s3559) +(trans s3935 s3572) +(trans s3936 s3553) +(trans s3936 s3566) +(trans s3936 s3579) +(trans s3937 s3560) +(trans s3937 s3573) +(trans s3937 s3586) +(trans s3938 s3567) +(trans s3938 s3580) +(trans s3938 s3593) +(trans s3939 s3574) +(trans s3939 s3587) +(trans s3939 s3600) +(trans s3940 s3581) +(trans s3940 s3594) +(trans s3940 s3607) +(trans s3941 s3588) +(trans s3941 s3601) +(trans s3941 s3614) +(trans s3942 s3595) +(trans s3942 s3608) +(trans s3942 s3621) +(trans s3943 s3602) +(trans s3943 s3615) +(trans s3943 s3628) +(trans s3944 s3609) +(trans s3944 s3622) +(trans s3944 s3635) +(trans s3945 s3616) +(trans s3945 s3629) +(trans s3945 s3642) +(trans s3946 s3623) +(trans s3946 s3636) +(trans s3946 s3649) +(trans s3947 s3630) +(trans s3947 s3643) +(trans s3947 s3656) +(trans s3948 s3637) +(trans s3948 s3650) +(trans s3948 s3663) +(trans s3949 s3644) +(trans s3949 s3657) +(trans s3949 s3670) +(trans s3950 s3651) +(trans s3950 s3664) +(trans s3950 s3677) +(trans s3951 s3658) +(trans s3951 s3671) +(trans s3951 s3684) +(trans s3952 s3665) +(trans s3952 s3678) +(trans s3952 s3691) +(trans s3953 s3672) +(trans s3953 s3685) +(trans s3953 s3698) +(trans s3954 s3679) +(trans s3954 s3692) +(trans s3954 s3705) +(trans s3955 s3686) +(trans s3955 s3699) +(trans s3955 s3712) +(trans s3956 s3693) +(trans s3956 s3706) +(trans s3956 s3719) +(trans s3957 s3700) +(trans s3957 s3713) +(trans s3957 s3726) +(trans s3958 s3707) +(trans s3958 s3720) +(trans s3958 s3733) +(trans s3959 s3714) +(trans s3959 s3727) +(trans s3959 s3740) +(trans s3960 s3721) +(trans s3960 s3734) +(trans s3960 s3747) +(trans s3961 s3728) +(trans s3961 s3741) +(trans s3961 s3754) +(trans s3962 s3735) +(trans s3962 s3748) +(trans s3962 s3761) +(trans s3963 s3742) +(trans s3963 s3755) +(trans s3963 s3768) +(trans s3964 s3749) +(trans s3964 s3762) +(trans s3964 s3775) +(trans s3965 s3756) +(trans s3965 s3769) +(trans s3965 s3782) +(trans s3966 s3763) +(trans s3966 s3776) +(trans s3966 s3789) +(trans s3967 s3770) +(trans s3967 s3783) +(trans s3967 s3796) +(trans s3968 s3777) +(trans s3968 s3790) +(trans s3968 s3803) +(trans s3969 s3784) +(trans s3969 s3797) +(trans s3969 s3810) +(trans s3970 s3791) +(trans s3970 s3804) +(trans s3970 s3817) +(trans s3971 s3798) +(trans s3971 s3811) +(trans s3971 s3824) +(trans s3972 s3805) +(trans s3972 s3818) +(trans s3972 s3831) +(trans s3973 s3812) +(trans s3973 s3825) +(trans s3973 s3838) +(trans s3974 s3819) +(trans s3974 s3832) +(trans s3974 s3845) +(trans s3975 s3826) +(trans s3975 s3839) +(trans s3975 s3852) +(trans s3976 s3833) +(trans s3976 s3846) +(trans s3976 s3859) +(trans s3977 s3840) +(trans s3977 s3853) +(trans s3977 s3866) +(trans s3978 s3847) +(trans s3978 s3860) +(trans s3978 s3873) +(trans s3979 s3854) +(trans s3979 s3867) +(trans s3979 s3880) +(trans s3980 s3861) +(trans s3980 s3874) +(trans s3980 s3887) +(trans s3981 s3868) +(trans s3981 s3881) +(trans s3981 s3894) +(trans s3982 s3875) +(trans s3982 s3888) +(trans s3982 s3901) +(trans s3983 s3882) +(trans s3983 s3895) +(trans s3983 s3908) +(trans s3984 s3889) +(trans s3984 s3902) +(trans s3984 s3915) +(trans s3985 s3896) +(trans s3985 s3909) +(trans s3985 s3922) +(trans s3986 s3903) +(trans s3986 s3916) +(trans s3986 s3929) +(trans s3987 s3910) +(trans s3987 s3923) +(trans s3987 s3936) +(trans s3988 s3917) +(trans s3988 s3930) +(trans s3988 s3943) +(trans s3989 s3924) +(trans s3989 s3937) +(trans s3989 s3950) +(trans s3990 s3931) +(trans s3990 s3944) +(trans s3990 s3957) +(trans s3991 s3938) +(trans s3991 s3951) +(trans s3991 s3964) +(trans s3992 s3945) +(trans s3992 s3958) +(trans s3992 s3971) +(trans s3993 s3952) +(trans s3993 s3965) +(trans s3993 s3978) +(trans s3994 s3959) +(trans s3994 s3972) +(trans s3994 s3985) +(trans s3995 s3966) +(trans s3995 s3979) +(trans s3995 s3992) +(trans s3996 s3973) +(trans s3996 s3986) +(trans s3996 s3999) +(trans s3997 s3980) +(trans s3997 s3993) +(trans s3997 s4006) +(trans s3998 s3987) +(trans s3998 s4000) +(trans s3998 s4013) +(trans s3999 s3994) +(trans s3999 s4007) +(trans s3999 s4020) +(trans s4000 s4001) +(trans s4000 s4014) +(trans s4000 s4027) +(trans s4001 s4008) +(trans s4001 s4021) +(trans s4001 s4034) +(trans s4002 s4015) +(trans s4002 s4028) +(trans s4002 s4041) +(trans s4003 s4022) +(trans s4003 s4035) +(trans s4003 s4048) +(trans s4004 s4029) +(trans s4004 s4042) +(trans s4004 s4055) +(trans s4005 s4036) +(trans s4005 s4049) +(trans s4005 s4062) +(trans s4006 s4043) +(trans s4006 s4056) +(trans s4006 s4069) +(trans s4007 s4050) +(trans s4007 s4063) +(trans s4007 s4076) +(trans s4008 s4057) +(trans s4008 s4070) +(trans s4008 s4083) +(trans s4009 s4064) +(trans s4009 s4077) +(trans s4009 s4090) +(trans s4010 s4071) +(trans s4010 s4084) +(trans s4010 s4097) +(trans s4011 s4078) +(trans s4011 s4091) +(trans s4011 s4104) +(trans s4012 s4085) +(trans s4012 s4098) +(trans s4012 s4111) +(trans s4013 s4092) +(trans s4013 s4105) +(trans s4013 s4118) +(trans s4014 s4099) +(trans s4014 s4112) +(trans s4014 s4125) +(trans s4015 s4106) +(trans s4015 s4119) +(trans s4015 s4132) +(trans s4016 s4113) +(trans s4016 s4126) +(trans s4016 s4139) +(trans s4017 s4120) +(trans s4017 s4133) +(trans s4017 s4146) +(trans s4018 s4127) +(trans s4018 s4140) +(trans s4018 s4153) +(trans s4019 s4134) +(trans s4019 s4147) +(trans s4019 s4160) +(trans s4020 s4141) +(trans s4020 s4154) +(trans s4020 s4167) +(trans s4021 s4148) +(trans s4021 s4161) +(trans s4021 s4174) +(trans s4022 s4155) +(trans s4022 s4168) +(trans s4022 s4181) +(trans s4023 s4162) +(trans s4023 s4175) +(trans s4023 s4188) +(trans s4024 s4169) +(trans s4024 s4182) +(trans s4024 s4195) +(trans s4025 s4176) +(trans s4025 s4189) +(trans s4025 s4202) +(trans s4026 s4183) +(trans s4026 s4196) +(trans s4026 s4209) +(trans s4027 s4190) +(trans s4027 s4203) +(trans s4027 s4216) +(trans s4028 s4197) +(trans s4028 s4210) +(trans s4028 s4223) +(trans s4029 s4204) +(trans s4029 s4217) +(trans s4029 s4230) +(trans s4030 s4211) +(trans s4030 s4224) +(trans s4030 s4237) +(trans s4031 s4218) +(trans s4031 s4231) +(trans s4031 s4244) +(trans s4032 s4225) +(trans s4032 s4238) +(trans s4032 s4251) +(trans s4033 s4232) +(trans s4033 s4245) +(trans s4033 s4258) +(trans s4034 s4239) +(trans s4034 s4252) +(trans s4034 s4265) +(trans s4035 s4246) +(trans s4035 s4259) +(trans s4035 s4272) +(trans s4036 s4253) +(trans s4036 s4266) +(trans s4036 s4279) +(trans s4037 s4260) +(trans s4037 s4273) +(trans s4037 s4286) +(trans s4038 s4267) +(trans s4038 s4280) +(trans s4038 s4293) +(trans s4039 s4274) +(trans s4039 s4287) +(trans s4039 s4300) +(trans s4040 s4281) +(trans s4040 s4294) +(trans s4040 s4307) +(trans s4041 s4288) +(trans s4041 s4301) +(trans s4041 s4314) +(trans s4042 s4295) +(trans s4042 s4308) +(trans s4042 s4321) +(trans s4043 s4302) +(trans s4043 s4315) +(trans s4043 s4328) +(trans s4044 s4309) +(trans s4044 s4322) +(trans s4044 s4335) +(trans s4045 s4316) +(trans s4045 s4329) +(trans s4045 s4342) +(trans s4046 s4323) +(trans s4046 s4336) +(trans s4046 s4349) +(trans s4047 s4330) +(trans s4047 s4343) +(trans s4047 s4356) +(trans s4048 s4337) +(trans s4048 s4350) +(trans s4048 s4363) +(trans s4049 s4344) +(trans s4049 s4357) +(trans s4049 s4370) +(trans s4050 s4351) +(trans s4050 s4364) +(trans s4050 s4377) +(trans s4051 s4358) +(trans s4051 s4371) +(trans s4051 s4384) +(trans s4052 s4365) +(trans s4052 s4378) +(trans s4052 s4391) +(trans s4053 s4372) +(trans s4053 s4385) +(trans s4053 s4398) +(trans s4054 s4379) +(trans s4054 s4392) +(trans s4054 s4405) +(trans s4055 s4386) +(trans s4055 s4399) +(trans s4055 s4412) +(trans s4056 s4393) +(trans s4056 s4406) +(trans s4056 s4419) +(trans s4057 s4400) +(trans s4057 s4413) +(trans s4057 s4426) +(trans s4058 s4407) +(trans s4058 s4420) +(trans s4058 s4433) +(trans s4059 s4414) +(trans s4059 s4427) +(trans s4059 s4440) +(trans s4060 s4421) +(trans s4060 s4434) +(trans s4060 s4447) +(trans s4061 s4428) +(trans s4061 s4441) +(trans s4061 s4454) +(trans s4062 s4435) +(trans s4062 s4448) +(trans s4062 s4461) +(trans s4063 s4442) +(trans s4063 s4455) +(trans s4063 s4468) +(trans s4064 s4449) +(trans s4064 s4462) +(trans s4064 s4475) +(trans s4065 s4456) +(trans s4065 s4469) +(trans s4065 s4482) +(trans s4066 s4463) +(trans s4066 s4476) +(trans s4066 s4489) +(trans s4067 s4470) +(trans s4067 s4483) +(trans s4067 s4496) +(trans s4068 s4477) +(trans s4068 s4490) +(trans s4068 s4503) +(trans s4069 s4484) +(trans s4069 s4497) +(trans s4069 s4510) +(trans s4070 s4491) +(trans s4070 s4504) +(trans s4070 s4517) +(trans s4071 s4498) +(trans s4071 s4511) +(trans s4071 s4524) +(trans s4072 s4505) +(trans s4072 s4518) +(trans s4072 s4531) +(trans s4073 s4512) +(trans s4073 s4525) +(trans s4073 s4538) +(trans s4074 s4519) +(trans s4074 s4532) +(trans s4074 s4545) +(trans s4075 s4526) +(trans s4075 s4539) +(trans s4075 s4552) +(trans s4076 s4533) +(trans s4076 s4546) +(trans s4076 s4559) +(trans s4077 s4540) +(trans s4077 s4553) +(trans s4077 s4566) +(trans s4078 s4547) +(trans s4078 s4560) +(trans s4078 s4573) +(trans s4079 s4554) +(trans s4079 s4567) +(trans s4079 s4580) +(trans s4080 s4561) +(trans s4080 s4574) +(trans s4080 s4587) +(trans s4081 s4568) +(trans s4081 s4581) +(trans s4081 s4594) +(trans s4082 s4575) +(trans s4082 s4588) +(trans s4082 s4601) +(trans s4083 s4582) +(trans s4083 s4595) +(trans s4083 s4608) +(trans s4084 s4589) +(trans s4084 s4602) +(trans s4084 s4615) +(trans s4085 s4596) +(trans s4085 s4609) +(trans s4085 s4622) +(trans s4086 s4603) +(trans s4086 s4616) +(trans s4086 s4629) +(trans s4087 s4610) +(trans s4087 s4623) +(trans s4087 s4636) +(trans s4088 s4617) +(trans s4088 s4630) +(trans s4088 s4643) +(trans s4089 s4624) +(trans s4089 s4637) +(trans s4089 s4650) +(trans s4090 s4631) +(trans s4090 s4644) +(trans s4090 s4657) +(trans s4091 s4638) +(trans s4091 s4651) +(trans s4091 s4664) +(trans s4092 s4645) +(trans s4092 s4658) +(trans s4092 s4671) +(trans s4093 s4652) +(trans s4093 s4665) +(trans s4093 s4678) +(trans s4094 s4659) +(trans s4094 s4672) +(trans s4094 s4685) +(trans s4095 s4666) +(trans s4095 s4679) +(trans s4095 s4692) +(trans s4096 s4673) +(trans s4096 s4686) +(trans s4096 s4699) +(trans s4097 s4680) +(trans s4097 s4693) +(trans s4097 s4706) +(trans s4098 s4687) +(trans s4098 s4700) +(trans s4098 s4713) +(trans s4099 s4694) +(trans s4099 s4707) +(trans s4099 s4720) +(trans s4100 s4701) +(trans s4100 s4714) +(trans s4100 s4727) +(trans s4101 s4708) +(trans s4101 s4721) +(trans s4101 s4734) +(trans s4102 s4715) +(trans s4102 s4728) +(trans s4102 s4741) +(trans s4103 s4722) +(trans s4103 s4735) +(trans s4103 s4748) +(trans s4104 s4729) +(trans s4104 s4742) +(trans s4104 s4755) +(trans s4105 s4736) +(trans s4105 s4749) +(trans s4105 s4762) +(trans s4106 s4743) +(trans s4106 s4756) +(trans s4106 s4769) +(trans s4107 s4750) +(trans s4107 s4763) +(trans s4107 s4776) +(trans s4108 s4757) +(trans s4108 s4770) +(trans s4108 s4783) +(trans s4109 s4764) +(trans s4109 s4777) +(trans s4109 s4790) +(trans s4110 s4771) +(trans s4110 s4784) +(trans s4110 s4797) +(trans s4111 s4778) +(trans s4111 s4791) +(trans s4111 s4804) +(trans s4112 s4785) +(trans s4112 s4798) +(trans s4112 s4811) +(trans s4113 s4792) +(trans s4113 s4805) +(trans s4113 s4818) +(trans s4114 s4799) +(trans s4114 s4812) +(trans s4114 s4825) +(trans s4115 s4806) +(trans s4115 s4819) +(trans s4115 s4832) +(trans s4116 s4813) +(trans s4116 s4826) +(trans s4116 s4839) +(trans s4117 s4820) +(trans s4117 s4833) +(trans s4117 s4846) +(trans s4118 s4827) +(trans s4118 s4840) +(trans s4118 s4853) +(trans s4119 s4834) +(trans s4119 s4847) +(trans s4119 s4860) +(trans s4120 s4841) +(trans s4120 s4854) +(trans s4120 s4867) +(trans s4121 s4848) +(trans s4121 s4861) +(trans s4121 s4874) +(trans s4122 s4855) +(trans s4122 s4868) +(trans s4122 s4881) +(trans s4123 s4862) +(trans s4123 s4875) +(trans s4123 s4888) +(trans s4124 s4869) +(trans s4124 s4882) +(trans s4124 s4895) +(trans s4125 s4876) +(trans s4125 s4889) +(trans s4125 s4902) +(trans s4126 s4883) +(trans s4126 s4896) +(trans s4126 s4909) +(trans s4127 s4890) +(trans s4127 s4903) +(trans s4127 s4916) +(trans s4128 s4897) +(trans s4128 s4910) +(trans s4128 s4923) +(trans s4129 s4904) +(trans s4129 s4917) +(trans s4129 s4930) +(trans s4130 s4911) +(trans s4130 s4924) +(trans s4130 s4937) +(trans s4131 s4918) +(trans s4131 s4931) +(trans s4131 s4944) +(trans s4132 s4925) +(trans s4132 s4938) +(trans s4132 s4951) +(trans s4133 s4932) +(trans s4133 s4945) +(trans s4133 s4958) +(trans s4134 s4939) +(trans s4134 s4952) +(trans s4134 s4965) +(trans s4135 s4946) +(trans s4135 s4959) +(trans s4135 s4972) +(trans s4136 s4953) +(trans s4136 s4966) +(trans s4136 s4979) +(trans s4137 s4960) +(trans s4137 s4973) +(trans s4137 s4986) +(trans s4138 s4967) +(trans s4138 s4980) +(trans s4138 s4993) +(trans s4139 s4974) +(trans s4139 s4987) +(trans s4139 s5000) +(trans s4140 s4981) +(trans s4140 s4994) +(trans s4140 s5007) +(trans s4141 s4988) +(trans s4141 s5001) +(trans s4141 s5014) +(trans s4142 s4995) +(trans s4142 s5008) +(trans s4142 s5021) +(trans s4143 s5002) +(trans s4143 s5015) +(trans s4143 s5028) +(trans s4144 s5009) +(trans s4144 s5022) +(trans s4144 s5035) +(trans s4145 s5016) +(trans s4145 s5029) +(trans s4145 s5042) +(trans s4146 s5023) +(trans s4146 s5036) +(trans s4146 s5049) +(trans s4147 s5030) +(trans s4147 s5043) +(trans s4147 s5056) +(trans s4148 s5037) +(trans s4148 s5050) +(trans s4148 s5063) +(trans s4149 s5044) +(trans s4149 s5057) +(trans s4149 s5070) +(trans s4150 s5051) +(trans s4150 s5064) +(trans s4150 s5077) +(trans s4151 s5058) +(trans s4151 s5071) +(trans s4151 s5084) +(trans s4152 s5065) +(trans s4152 s5078) +(trans s4152 s5091) +(trans s4153 s5072) +(trans s4153 s5085) +(trans s4153 s5098) +(trans s4154 s5079) +(trans s4154 s5092) +(trans s4154 s5105) +(trans s4155 s5086) +(trans s4155 s5099) +(trans s4155 s5112) +(trans s4156 s5093) +(trans s4156 s5106) +(trans s4156 s5119) +(trans s4157 s5100) +(trans s4157 s5113) +(trans s4157 s5126) +(trans s4158 s5107) +(trans s4158 s5120) +(trans s4158 s5133) +(trans s4159 s5114) +(trans s4159 s5127) +(trans s4159 s5140) +(trans s4160 s5121) +(trans s4160 s5134) +(trans s4160 s5147) +(trans s4161 s5128) +(trans s4161 s5141) +(trans s4161 s5154) +(trans s4162 s5135) +(trans s4162 s5148) +(trans s4162 s5161) +(trans s4163 s5142) +(trans s4163 s5155) +(trans s4163 s5168) +(trans s4164 s5149) +(trans s4164 s5162) +(trans s4164 s5175) +(trans s4165 s5156) +(trans s4165 s5169) +(trans s4165 s5182) +(trans s4166 s5163) +(trans s4166 s5176) +(trans s4166 s5189) +(trans s4167 s5170) +(trans s4167 s5183) +(trans s4167 s5196) +(trans s4168 s5177) +(trans s4168 s5190) +(trans s4168 s5203) +(trans s4169 s5184) +(trans s4169 s5197) +(trans s4169 s5210) +(trans s4170 s5191) +(trans s4170 s5204) +(trans s4170 s5217) +(trans s4171 s5198) +(trans s4171 s5211) +(trans s4171 s5224) +(trans s4172 s5205) +(trans s4172 s5218) +(trans s4172 s5231) +(trans s4173 s5212) +(trans s4173 s5225) +(trans s4173 s5238) +(trans s4174 s5219) +(trans s4174 s5232) +(trans s4174 s5245) +(trans s4175 s5226) +(trans s4175 s5239) +(trans s4175 s5252) +(trans s4176 s5233) +(trans s4176 s5246) +(trans s4176 s5259) +(trans s4177 s5240) +(trans s4177 s5253) +(trans s4177 s5266) +(trans s4178 s5247) +(trans s4178 s5260) +(trans s4178 s5273) +(trans s4179 s5254) +(trans s4179 s5267) +(trans s4179 s5280) +(trans s4180 s5261) +(trans s4180 s5274) +(trans s4180 s5287) +(trans s4181 s5268) +(trans s4181 s5281) +(trans s4181 s5294) +(trans s4182 s5275) +(trans s4182 s5288) +(trans s4182 s5301) +(trans s4183 s5282) +(trans s4183 s5295) +(trans s4183 s5308) +(trans s4184 s5289) +(trans s4184 s5302) +(trans s4184 s5315) +(trans s4185 s5296) +(trans s4185 s5309) +(trans s4185 s5322) +(trans s4186 s5303) +(trans s4186 s5316) +(trans s4186 s5329) +(trans s4187 s5310) +(trans s4187 s5323) +(trans s4187 s5336) +(trans s4188 s5317) +(trans s4188 s5330) +(trans s4188 s5343) +(trans s4189 s5324) +(trans s4189 s5337) +(trans s4189 s5350) +(trans s4190 s5331) +(trans s4190 s5344) +(trans s4190 s5357) +(trans s4191 s5338) +(trans s4191 s5351) +(trans s4191 s5364) +(trans s4192 s5345) +(trans s4192 s5358) +(trans s4192 s5371) +(trans s4193 s5352) +(trans s4193 s5365) +(trans s4193 s5378) +(trans s4194 s5359) +(trans s4194 s5372) +(trans s4194 s5385) +(trans s4195 s5366) +(trans s4195 s5379) +(trans s4195 s5392) +(trans s4196 s5373) +(trans s4196 s5386) +(trans s4196 s5399) +(trans s4197 s5380) +(trans s4197 s5393) +(trans s4197 s5406) +(trans s4198 s5387) +(trans s4198 s5400) +(trans s4198 s5413) +(trans s4199 s5394) +(trans s4199 s5407) +(trans s4199 s5420) +(trans s4200 s5401) +(trans s4200 s5414) +(trans s4200 s5427) +(trans s4201 s5408) +(trans s4201 s5421) +(trans s4201 s5434) +(trans s4202 s5415) +(trans s4202 s5428) +(trans s4202 s5441) +(trans s4203 s5422) +(trans s4203 s5435) +(trans s4203 s5448) +(trans s4204 s5429) +(trans s4204 s5442) +(trans s4204 s5455) +(trans s4205 s5436) +(trans s4205 s5449) +(trans s4205 s5462) +(trans s4206 s5443) +(trans s4206 s5456) +(trans s4206 s5469) +(trans s4207 s5450) +(trans s4207 s5463) +(trans s4207 s5476) +(trans s4208 s5457) +(trans s4208 s5470) +(trans s4208 s5483) +(trans s4209 s5464) +(trans s4209 s5477) +(trans s4209 s5490) +(trans s4210 s5471) +(trans s4210 s5484) +(trans s4210 s5497) +(trans s4211 s5478) +(trans s4211 s5491) +(trans s4211 s5504) +(trans s4212 s5485) +(trans s4212 s5498) +(trans s4212 s5511) +(trans s4213 s5492) +(trans s4213 s5505) +(trans s4213 s5518) +(trans s4214 s5499) +(trans s4214 s5512) +(trans s4214 s5525) +(trans s4215 s5506) +(trans s4215 s5519) +(trans s4215 s5532) +(trans s4216 s5513) +(trans s4216 s5526) +(trans s4216 s5539) +(trans s4217 s5520) +(trans s4217 s5533) +(trans s4217 s5546) +(trans s4218 s5527) +(trans s4218 s5540) +(trans s4218 s5553) +(trans s4219 s5534) +(trans s4219 s5547) +(trans s4219 s5560) +(trans s4220 s5541) +(trans s4220 s5554) +(trans s4220 s5567) +(trans s4221 s5548) +(trans s4221 s5561) +(trans s4221 s5574) +(trans s4222 s5555) +(trans s4222 s5568) +(trans s4222 s5581) +(trans s4223 s5562) +(trans s4223 s5575) +(trans s4223 s5588) +(trans s4224 s5569) +(trans s4224 s5582) +(trans s4224 s5595) +(trans s4225 s5576) +(trans s4225 s5589) +(trans s4225 s5602) +(trans s4226 s5583) +(trans s4226 s5596) +(trans s4226 s5609) +(trans s4227 s5590) +(trans s4227 s5603) +(trans s4227 s5616) +(trans s4228 s5597) +(trans s4228 s5610) +(trans s4228 s5623) +(trans s4229 s5604) +(trans s4229 s5617) +(trans s4229 s5630) +(trans s4230 s5611) +(trans s4230 s5624) +(trans s4230 s5637) +(trans s4231 s5618) +(trans s4231 s5631) +(trans s4231 s5644) +(trans s4232 s5625) +(trans s4232 s5638) +(trans s4232 s5651) +(trans s4233 s5632) +(trans s4233 s5645) +(trans s4233 s5658) +(trans s4234 s5639) +(trans s4234 s5652) +(trans s4234 s5665) +(trans s4235 s5646) +(trans s4235 s5659) +(trans s4235 s5672) +(trans s4236 s5653) +(trans s4236 s5666) +(trans s4236 s5679) +(trans s4237 s5660) +(trans s4237 s5673) +(trans s4237 s5686) +(trans s4238 s5667) +(trans s4238 s5680) +(trans s4238 s5693) +(trans s4239 s5674) +(trans s4239 s5687) +(trans s4239 s5700) +(trans s4240 s5681) +(trans s4240 s5694) +(trans s4240 s5707) +(trans s4241 s5688) +(trans s4241 s5701) +(trans s4241 s5714) +(trans s4242 s5695) +(trans s4242 s5708) +(trans s4242 s5721) +(trans s4243 s5702) +(trans s4243 s5715) +(trans s4243 s5728) +(trans s4244 s5709) +(trans s4244 s5722) +(trans s4244 s5735) +(trans s4245 s5716) +(trans s4245 s5729) +(trans s4245 s5742) +(trans s4246 s5723) +(trans s4246 s5736) +(trans s4246 s5749) +(trans s4247 s5730) +(trans s4247 s5743) +(trans s4247 s5756) +(trans s4248 s5737) +(trans s4248 s5750) +(trans s4248 s5763) +(trans s4249 s5744) +(trans s4249 s5757) +(trans s4249 s5770) +(trans s4250 s5751) +(trans s4250 s5764) +(trans s4250 s5777) +(trans s4251 s5758) +(trans s4251 s5771) +(trans s4251 s5784) +(trans s4252 s5765) +(trans s4252 s5778) +(trans s4252 s5791) +(trans s4253 s5772) +(trans s4253 s5785) +(trans s4253 s5798) +(trans s4254 s5779) +(trans s4254 s5792) +(trans s4254 s5805) +(trans s4255 s5786) +(trans s4255 s5799) +(trans s4255 s5812) +(trans s4256 s5793) +(trans s4256 s5806) +(trans s4256 s5819) +(trans s4257 s5800) +(trans s4257 s5813) +(trans s4257 s5826) +(trans s4258 s5807) +(trans s4258 s5820) +(trans s4258 s5833) +(trans s4259 s5814) +(trans s4259 s5827) +(trans s4259 s5840) +(trans s4260 s5821) +(trans s4260 s5834) +(trans s4260 s5847) +(trans s4261 s5828) +(trans s4261 s5841) +(trans s4261 s5854) +(trans s4262 s5835) +(trans s4262 s5848) +(trans s4262 s5861) +(trans s4263 s5842) +(trans s4263 s5855) +(trans s4263 s5868) +(trans s4264 s5849) +(trans s4264 s5862) +(trans s4264 s5875) +(trans s4265 s5856) +(trans s4265 s5869) +(trans s4265 s5882) +(trans s4266 s5863) +(trans s4266 s5876) +(trans s4266 s5889) +(trans s4267 s5870) +(trans s4267 s5883) +(trans s4267 s5896) +(trans s4268 s5877) +(trans s4268 s5890) +(trans s4268 s5903) +(trans s4269 s5884) +(trans s4269 s5897) +(trans s4269 s5910) +(trans s4270 s5891) +(trans s4270 s5904) +(trans s4270 s5917) +(trans s4271 s5898) +(trans s4271 s5911) +(trans s4271 s5924) +(trans s4272 s5905) +(trans s4272 s5918) +(trans s4272 s5931) +(trans s4273 s5912) +(trans s4273 s5925) +(trans s4273 s5938) +(trans s4274 s5919) +(trans s4274 s5932) +(trans s4274 s5945) +(trans s4275 s5926) +(trans s4275 s5939) +(trans s4275 s5952) +(trans s4276 s5933) +(trans s4276 s5946) +(trans s4276 s5959) +(trans s4277 s5940) +(trans s4277 s5953) +(trans s4277 s5966) +(trans s4278 s5947) +(trans s4278 s5960) +(trans s4278 s5973) +(trans s4279 s5954) +(trans s4279 s5967) +(trans s4279 s5980) +(trans s4280 s5961) +(trans s4280 s5974) +(trans s4280 s5987) +(trans s4281 s5968) +(trans s4281 s5981) +(trans s4281 s5994) +(trans s4282 s5975) +(trans s4282 s5988) +(trans s4282 s1) +(trans s4283 s5982) +(trans s4283 s5995) +(trans s4283 s8) +(trans s4284 s5989) +(trans s4284 s2) +(trans s4284 s15) +(trans s4285 s5996) +(trans s4285 s9) +(trans s4285 s22) +(trans s4286 s3) +(trans s4286 s16) +(trans s4286 s29) +(trans s4287 s10) +(trans s4287 s23) +(trans s4287 s36) +(trans s4288 s17) +(trans s4288 s30) +(trans s4288 s43) +(trans s4289 s24) +(trans s4289 s37) +(trans s4289 s50) +(trans s4290 s31) +(trans s4290 s44) +(trans s4290 s57) +(trans s4291 s38) +(trans s4291 s51) +(trans s4291 s64) +(trans s4292 s45) +(trans s4292 s58) +(trans s4292 s71) +(trans s4293 s52) +(trans s4293 s65) +(trans s4293 s78) +(trans s4294 s59) +(trans s4294 s72) +(trans s4294 s85) +(trans s4295 s66) +(trans s4295 s79) +(trans s4295 s92) +(trans s4296 s73) +(trans s4296 s86) +(trans s4296 s99) +(trans s4297 s80) +(trans s4297 s93) +(trans s4297 s106) +(trans s4298 s87) +(trans s4298 s100) +(trans s4298 s113) +(trans s4299 s94) +(trans s4299 s107) +(trans s4299 s120) +(trans s4300 s101) +(trans s4300 s114) +(trans s4300 s127) +(trans s4301 s108) +(trans s4301 s121) +(trans s4301 s134) +(trans s4302 s115) +(trans s4302 s128) +(trans s4302 s141) +(trans s4303 s122) +(trans s4303 s135) +(trans s4303 s148) +(trans s4304 s129) +(trans s4304 s142) +(trans s4304 s155) +(trans s4305 s136) +(trans s4305 s149) +(trans s4305 s162) +(trans s4306 s143) +(trans s4306 s156) +(trans s4306 s169) +(trans s4307 s150) +(trans s4307 s163) +(trans s4307 s176) +(trans s4308 s157) +(trans s4308 s170) +(trans s4308 s183) +(trans s4309 s164) +(trans s4309 s177) +(trans s4309 s190) +(trans s4310 s171) +(trans s4310 s184) +(trans s4310 s197) +(trans s4311 s178) +(trans s4311 s191) +(trans s4311 s204) +(trans s4312 s185) +(trans s4312 s198) +(trans s4312 s211) +(trans s4313 s192) +(trans s4313 s205) +(trans s4313 s218) +(trans s4314 s199) +(trans s4314 s212) +(trans s4314 s225) +(trans s4315 s206) +(trans s4315 s219) +(trans s4315 s232) +(trans s4316 s213) +(trans s4316 s226) +(trans s4316 s239) +(trans s4317 s220) +(trans s4317 s233) +(trans s4317 s246) +(trans s4318 s227) +(trans s4318 s240) +(trans s4318 s253) +(trans s4319 s234) +(trans s4319 s247) +(trans s4319 s260) +(trans s4320 s241) +(trans s4320 s254) +(trans s4320 s267) +(trans s4321 s248) +(trans s4321 s261) +(trans s4321 s274) +(trans s4322 s255) +(trans s4322 s268) +(trans s4322 s281) +(trans s4323 s262) +(trans s4323 s275) +(trans s4323 s288) +(trans s4324 s269) +(trans s4324 s282) +(trans s4324 s295) +(trans s4325 s276) +(trans s4325 s289) +(trans s4325 s302) +(trans s4326 s283) +(trans s4326 s296) +(trans s4326 s309) +(trans s4327 s290) +(trans s4327 s303) +(trans s4327 s316) +(trans s4328 s297) +(trans s4328 s310) +(trans s4328 s323) +(trans s4329 s304) +(trans s4329 s317) +(trans s4329 s330) +(trans s4330 s311) +(trans s4330 s324) +(trans s4330 s337) +(trans s4331 s318) +(trans s4331 s331) +(trans s4331 s344) +(trans s4332 s325) +(trans s4332 s338) +(trans s4332 s351) +(trans s4333 s332) +(trans s4333 s345) +(trans s4333 s358) +(trans s4334 s339) +(trans s4334 s352) +(trans s4334 s365) +(trans s4335 s346) +(trans s4335 s359) +(trans s4335 s372) +(trans s4336 s353) +(trans s4336 s366) +(trans s4336 s379) +(trans s4337 s360) +(trans s4337 s373) +(trans s4337 s386) +(trans s4338 s367) +(trans s4338 s380) +(trans s4338 s393) +(trans s4339 s374) +(trans s4339 s387) +(trans s4339 s400) +(trans s4340 s381) +(trans s4340 s394) +(trans s4340 s407) +(trans s4341 s388) +(trans s4341 s401) +(trans s4341 s414) +(trans s4342 s395) +(trans s4342 s408) +(trans s4342 s421) +(trans s4343 s402) +(trans s4343 s415) +(trans s4343 s428) +(trans s4344 s409) +(trans s4344 s422) +(trans s4344 s435) +(trans s4345 s416) +(trans s4345 s429) +(trans s4345 s442) +(trans s4346 s423) +(trans s4346 s436) +(trans s4346 s449) +(trans s4347 s430) +(trans s4347 s443) +(trans s4347 s456) +(trans s4348 s437) +(trans s4348 s450) +(trans s4348 s463) +(trans s4349 s444) +(trans s4349 s457) +(trans s4349 s470) +(trans s4350 s451) +(trans s4350 s464) +(trans s4350 s477) +(trans s4351 s458) +(trans s4351 s471) +(trans s4351 s484) +(trans s4352 s465) +(trans s4352 s478) +(trans s4352 s491) +(trans s4353 s472) +(trans s4353 s485) +(trans s4353 s498) +(trans s4354 s479) +(trans s4354 s492) +(trans s4354 s505) +(trans s4355 s486) +(trans s4355 s499) +(trans s4355 s512) +(trans s4356 s493) +(trans s4356 s506) +(trans s4356 s519) +(trans s4357 s500) +(trans s4357 s513) +(trans s4357 s526) +(trans s4358 s507) +(trans s4358 s520) +(trans s4358 s533) +(trans s4359 s514) +(trans s4359 s527) +(trans s4359 s540) +(trans s4360 s521) +(trans s4360 s534) +(trans s4360 s547) +(trans s4361 s528) +(trans s4361 s541) +(trans s4361 s554) +(trans s4362 s535) +(trans s4362 s548) +(trans s4362 s561) +(trans s4363 s542) +(trans s4363 s555) +(trans s4363 s568) +(trans s4364 s549) +(trans s4364 s562) +(trans s4364 s575) +(trans s4365 s556) +(trans s4365 s569) +(trans s4365 s582) +(trans s4366 s563) +(trans s4366 s576) +(trans s4366 s589) +(trans s4367 s570) +(trans s4367 s583) +(trans s4367 s596) +(trans s4368 s577) +(trans s4368 s590) +(trans s4368 s603) +(trans s4369 s584) +(trans s4369 s597) +(trans s4369 s610) +(trans s4370 s591) +(trans s4370 s604) +(trans s4370 s617) +(trans s4371 s598) +(trans s4371 s611) +(trans s4371 s624) +(trans s4372 s605) +(trans s4372 s618) +(trans s4372 s631) +(trans s4373 s612) +(trans s4373 s625) +(trans s4373 s638) +(trans s4374 s619) +(trans s4374 s632) +(trans s4374 s645) +(trans s4375 s626) +(trans s4375 s639) +(trans s4375 s652) +(trans s4376 s633) +(trans s4376 s646) +(trans s4376 s659) +(trans s4377 s640) +(trans s4377 s653) +(trans s4377 s666) +(trans s4378 s647) +(trans s4378 s660) +(trans s4378 s673) +(trans s4379 s654) +(trans s4379 s667) +(trans s4379 s680) +(trans s4380 s661) +(trans s4380 s674) +(trans s4380 s687) +(trans s4381 s668) +(trans s4381 s681) +(trans s4381 s694) +(trans s4382 s675) +(trans s4382 s688) +(trans s4382 s701) +(trans s4383 s682) +(trans s4383 s695) +(trans s4383 s708) +(trans s4384 s689) +(trans s4384 s702) +(trans s4384 s715) +(trans s4385 s696) +(trans s4385 s709) +(trans s4385 s722) +(trans s4386 s703) +(trans s4386 s716) +(trans s4386 s729) +(trans s4387 s710) +(trans s4387 s723) +(trans s4387 s736) +(trans s4388 s717) +(trans s4388 s730) +(trans s4388 s743) +(trans s4389 s724) +(trans s4389 s737) +(trans s4389 s750) +(trans s4390 s731) +(trans s4390 s744) +(trans s4390 s757) +(trans s4391 s738) +(trans s4391 s751) +(trans s4391 s764) +(trans s4392 s745) +(trans s4392 s758) +(trans s4392 s771) +(trans s4393 s752) +(trans s4393 s765) +(trans s4393 s778) +(trans s4394 s759) +(trans s4394 s772) +(trans s4394 s785) +(trans s4395 s766) +(trans s4395 s779) +(trans s4395 s792) +(trans s4396 s773) +(trans s4396 s786) +(trans s4396 s799) +(trans s4397 s780) +(trans s4397 s793) +(trans s4397 s806) +(trans s4398 s787) +(trans s4398 s800) +(trans s4398 s813) +(trans s4399 s794) +(trans s4399 s807) +(trans s4399 s820) +(trans s4400 s801) +(trans s4400 s814) +(trans s4400 s827) +(trans s4401 s808) +(trans s4401 s821) +(trans s4401 s834) +(trans s4402 s815) +(trans s4402 s828) +(trans s4402 s841) +(trans s4403 s822) +(trans s4403 s835) +(trans s4403 s848) +(trans s4404 s829) +(trans s4404 s842) +(trans s4404 s855) +(trans s4405 s836) +(trans s4405 s849) +(trans s4405 s862) +(trans s4406 s843) +(trans s4406 s856) +(trans s4406 s869) +(trans s4407 s850) +(trans s4407 s863) +(trans s4407 s876) +(trans s4408 s857) +(trans s4408 s870) +(trans s4408 s883) +(trans s4409 s864) +(trans s4409 s877) +(trans s4409 s890) +(trans s4410 s871) +(trans s4410 s884) +(trans s4410 s897) +(trans s4411 s878) +(trans s4411 s891) +(trans s4411 s904) +(trans s4412 s885) +(trans s4412 s898) +(trans s4412 s911) +(trans s4413 s892) +(trans s4413 s905) +(trans s4413 s918) +(trans s4414 s899) +(trans s4414 s912) +(trans s4414 s925) +(trans s4415 s906) +(trans s4415 s919) +(trans s4415 s932) +(trans s4416 s913) +(trans s4416 s926) +(trans s4416 s939) +(trans s4417 s920) +(trans s4417 s933) +(trans s4417 s946) +(trans s4418 s927) +(trans s4418 s940) +(trans s4418 s953) +(trans s4419 s934) +(trans s4419 s947) +(trans s4419 s960) +(trans s4420 s941) +(trans s4420 s954) +(trans s4420 s967) +(trans s4421 s948) +(trans s4421 s961) +(trans s4421 s974) +(trans s4422 s955) +(trans s4422 s968) +(trans s4422 s981) +(trans s4423 s962) +(trans s4423 s975) +(trans s4423 s988) +(trans s4424 s969) +(trans s4424 s982) +(trans s4424 s995) +(trans s4425 s976) +(trans s4425 s989) +(trans s4425 s1002) +(trans s4426 s983) +(trans s4426 s996) +(trans s4426 s1009) +(trans s4427 s990) +(trans s4427 s1003) +(trans s4427 s1016) +(trans s4428 s997) +(trans s4428 s1010) +(trans s4428 s1023) +(trans s4429 s1004) +(trans s4429 s1017) +(trans s4429 s1030) +(trans s4430 s1011) +(trans s4430 s1024) +(trans s4430 s1037) +(trans s4431 s1018) +(trans s4431 s1031) +(trans s4431 s1044) +(trans s4432 s1025) +(trans s4432 s1038) +(trans s4432 s1051) +(trans s4433 s1032) +(trans s4433 s1045) +(trans s4433 s1058) +(trans s4434 s1039) +(trans s4434 s1052) +(trans s4434 s1065) +(trans s4435 s1046) +(trans s4435 s1059) +(trans s4435 s1072) +(trans s4436 s1053) +(trans s4436 s1066) +(trans s4436 s1079) +(trans s4437 s1060) +(trans s4437 s1073) +(trans s4437 s1086) +(trans s4438 s1067) +(trans s4438 s1080) +(trans s4438 s1093) +(trans s4439 s1074) +(trans s4439 s1087) +(trans s4439 s1100) +(trans s4440 s1081) +(trans s4440 s1094) +(trans s4440 s1107) +(trans s4441 s1088) +(trans s4441 s1101) +(trans s4441 s1114) +(trans s4442 s1095) +(trans s4442 s1108) +(trans s4442 s1121) +(trans s4443 s1102) +(trans s4443 s1115) +(trans s4443 s1128) +(trans s4444 s1109) +(trans s4444 s1122) +(trans s4444 s1135) +(trans s4445 s1116) +(trans s4445 s1129) +(trans s4445 s1142) +(trans s4446 s1123) +(trans s4446 s1136) +(trans s4446 s1149) +(trans s4447 s1130) +(trans s4447 s1143) +(trans s4447 s1156) +(trans s4448 s1137) +(trans s4448 s1150) +(trans s4448 s1163) +(trans s4449 s1144) +(trans s4449 s1157) +(trans s4449 s1170) +(trans s4450 s1151) +(trans s4450 s1164) +(trans s4450 s1177) +(trans s4451 s1158) +(trans s4451 s1171) +(trans s4451 s1184) +(trans s4452 s1165) +(trans s4452 s1178) +(trans s4452 s1191) +(trans s4453 s1172) +(trans s4453 s1185) +(trans s4453 s1198) +(trans s4454 s1179) +(trans s4454 s1192) +(trans s4454 s1205) +(trans s4455 s1186) +(trans s4455 s1199) +(trans s4455 s1212) +(trans s4456 s1193) +(trans s4456 s1206) +(trans s4456 s1219) +(trans s4457 s1200) +(trans s4457 s1213) +(trans s4457 s1226) +(trans s4458 s1207) +(trans s4458 s1220) +(trans s4458 s1233) +(trans s4459 s1214) +(trans s4459 s1227) +(trans s4459 s1240) +(trans s4460 s1221) +(trans s4460 s1234) +(trans s4460 s1247) +(trans s4461 s1228) +(trans s4461 s1241) +(trans s4461 s1254) +(trans s4462 s1235) +(trans s4462 s1248) +(trans s4462 s1261) +(trans s4463 s1242) +(trans s4463 s1255) +(trans s4463 s1268) +(trans s4464 s1249) +(trans s4464 s1262) +(trans s4464 s1275) +(trans s4465 s1256) +(trans s4465 s1269) +(trans s4465 s1282) +(trans s4466 s1263) +(trans s4466 s1276) +(trans s4466 s1289) +(trans s4467 s1270) +(trans s4467 s1283) +(trans s4467 s1296) +(trans s4468 s1277) +(trans s4468 s1290) +(trans s4468 s1303) +(trans s4469 s1284) +(trans s4469 s1297) +(trans s4469 s1310) +(trans s4470 s1291) +(trans s4470 s1304) +(trans s4470 s1317) +(trans s4471 s1298) +(trans s4471 s1311) +(trans s4471 s1324) +(trans s4472 s1305) +(trans s4472 s1318) +(trans s4472 s1331) +(trans s4473 s1312) +(trans s4473 s1325) +(trans s4473 s1338) +(trans s4474 s1319) +(trans s4474 s1332) +(trans s4474 s1345) +(trans s4475 s1326) +(trans s4475 s1339) +(trans s4475 s1352) +(trans s4476 s1333) +(trans s4476 s1346) +(trans s4476 s1359) +(trans s4477 s1340) +(trans s4477 s1353) +(trans s4477 s1366) +(trans s4478 s1347) +(trans s4478 s1360) +(trans s4478 s1373) +(trans s4479 s1354) +(trans s4479 s1367) +(trans s4479 s1380) +(trans s4480 s1361) +(trans s4480 s1374) +(trans s4480 s1387) +(trans s4481 s1368) +(trans s4481 s1381) +(trans s4481 s1394) +(trans s4482 s1375) +(trans s4482 s1388) +(trans s4482 s1401) +(trans s4483 s1382) +(trans s4483 s1395) +(trans s4483 s1408) +(trans s4484 s1389) +(trans s4484 s1402) +(trans s4484 s1415) +(trans s4485 s1396) +(trans s4485 s1409) +(trans s4485 s1422) +(trans s4486 s1403) +(trans s4486 s1416) +(trans s4486 s1429) +(trans s4487 s1410) +(trans s4487 s1423) +(trans s4487 s1436) +(trans s4488 s1417) +(trans s4488 s1430) +(trans s4488 s1443) +(trans s4489 s1424) +(trans s4489 s1437) +(trans s4489 s1450) +(trans s4490 s1431) +(trans s4490 s1444) +(trans s4490 s1457) +(trans s4491 s1438) +(trans s4491 s1451) +(trans s4491 s1464) +(trans s4492 s1445) +(trans s4492 s1458) +(trans s4492 s1471) +(trans s4493 s1452) +(trans s4493 s1465) +(trans s4493 s1478) +(trans s4494 s1459) +(trans s4494 s1472) +(trans s4494 s1485) +(trans s4495 s1466) +(trans s4495 s1479) +(trans s4495 s1492) +(trans s4496 s1473) +(trans s4496 s1486) +(trans s4496 s1499) +(trans s4497 s1480) +(trans s4497 s1493) +(trans s4497 s1506) +(trans s4498 s1487) +(trans s4498 s1500) +(trans s4498 s1513) +(trans s4499 s1494) +(trans s4499 s1507) +(trans s4499 s1520) +(trans s4500 s1501) +(trans s4500 s1514) +(trans s4500 s1527) +(trans s4501 s1508) +(trans s4501 s1521) +(trans s4501 s1534) +(trans s4502 s1515) +(trans s4502 s1528) +(trans s4502 s1541) +(trans s4503 s1522) +(trans s4503 s1535) +(trans s4503 s1548) +(trans s4504 s1529) +(trans s4504 s1542) +(trans s4504 s1555) +(trans s4505 s1536) +(trans s4505 s1549) +(trans s4505 s1562) +(trans s4506 s1543) +(trans s4506 s1556) +(trans s4506 s1569) +(trans s4507 s1550) +(trans s4507 s1563) +(trans s4507 s1576) +(trans s4508 s1557) +(trans s4508 s1570) +(trans s4508 s1583) +(trans s4509 s1564) +(trans s4509 s1577) +(trans s4509 s1590) +(trans s4510 s1571) +(trans s4510 s1584) +(trans s4510 s1597) +(trans s4511 s1578) +(trans s4511 s1591) +(trans s4511 s1604) +(trans s4512 s1585) +(trans s4512 s1598) +(trans s4512 s1611) +(trans s4513 s1592) +(trans s4513 s1605) +(trans s4513 s1618) +(trans s4514 s1599) +(trans s4514 s1612) +(trans s4514 s1625) +(trans s4515 s1606) +(trans s4515 s1619) +(trans s4515 s1632) +(trans s4516 s1613) +(trans s4516 s1626) +(trans s4516 s1639) +(trans s4517 s1620) +(trans s4517 s1633) +(trans s4517 s1646) +(trans s4518 s1627) +(trans s4518 s1640) +(trans s4518 s1653) +(trans s4519 s1634) +(trans s4519 s1647) +(trans s4519 s1660) +(trans s4520 s1641) +(trans s4520 s1654) +(trans s4520 s1667) +(trans s4521 s1648) +(trans s4521 s1661) +(trans s4521 s1674) +(trans s4522 s1655) +(trans s4522 s1668) +(trans s4522 s1681) +(trans s4523 s1662) +(trans s4523 s1675) +(trans s4523 s1688) +(trans s4524 s1669) +(trans s4524 s1682) +(trans s4524 s1695) +(trans s4525 s1676) +(trans s4525 s1689) +(trans s4525 s1702) +(trans s4526 s1683) +(trans s4526 s1696) +(trans s4526 s1709) +(trans s4527 s1690) +(trans s4527 s1703) +(trans s4527 s1716) +(trans s4528 s1697) +(trans s4528 s1710) +(trans s4528 s1723) +(trans s4529 s1704) +(trans s4529 s1717) +(trans s4529 s1730) +(trans s4530 s1711) +(trans s4530 s1724) +(trans s4530 s1737) +(trans s4531 s1718) +(trans s4531 s1731) +(trans s4531 s1744) +(trans s4532 s1725) +(trans s4532 s1738) +(trans s4532 s1751) +(trans s4533 s1732) +(trans s4533 s1745) +(trans s4533 s1758) +(trans s4534 s1739) +(trans s4534 s1752) +(trans s4534 s1765) +(trans s4535 s1746) +(trans s4535 s1759) +(trans s4535 s1772) +(trans s4536 s1753) +(trans s4536 s1766) +(trans s4536 s1779) +(trans s4537 s1760) +(trans s4537 s1773) +(trans s4537 s1786) +(trans s4538 s1767) +(trans s4538 s1780) +(trans s4538 s1793) +(trans s4539 s1774) +(trans s4539 s1787) +(trans s4539 s1800) +(trans s4540 s1781) +(trans s4540 s1794) +(trans s4540 s1807) +(trans s4541 s1788) +(trans s4541 s1801) +(trans s4541 s1814) +(trans s4542 s1795) +(trans s4542 s1808) +(trans s4542 s1821) +(trans s4543 s1802) +(trans s4543 s1815) +(trans s4543 s1828) +(trans s4544 s1809) +(trans s4544 s1822) +(trans s4544 s1835) +(trans s4545 s1816) +(trans s4545 s1829) +(trans s4545 s1842) +(trans s4546 s1823) +(trans s4546 s1836) +(trans s4546 s1849) +(trans s4547 s1830) +(trans s4547 s1843) +(trans s4547 s1856) +(trans s4548 s1837) +(trans s4548 s1850) +(trans s4548 s1863) +(trans s4549 s1844) +(trans s4549 s1857) +(trans s4549 s1870) +(trans s4550 s1851) +(trans s4550 s1864) +(trans s4550 s1877) +(trans s4551 s1858) +(trans s4551 s1871) +(trans s4551 s1884) +(trans s4552 s1865) +(trans s4552 s1878) +(trans s4552 s1891) +(trans s4553 s1872) +(trans s4553 s1885) +(trans s4553 s1898) +(trans s4554 s1879) +(trans s4554 s1892) +(trans s4554 s1905) +(trans s4555 s1886) +(trans s4555 s1899) +(trans s4555 s1912) +(trans s4556 s1893) +(trans s4556 s1906) +(trans s4556 s1919) +(trans s4557 s1900) +(trans s4557 s1913) +(trans s4557 s1926) +(trans s4558 s1907) +(trans s4558 s1920) +(trans s4558 s1933) +(trans s4559 s1914) +(trans s4559 s1927) +(trans s4559 s1940) +(trans s4560 s1921) +(trans s4560 s1934) +(trans s4560 s1947) +(trans s4561 s1928) +(trans s4561 s1941) +(trans s4561 s1954) +(trans s4562 s1935) +(trans s4562 s1948) +(trans s4562 s1961) +(trans s4563 s1942) +(trans s4563 s1955) +(trans s4563 s1968) +(trans s4564 s1949) +(trans s4564 s1962) +(trans s4564 s1975) +(trans s4565 s1956) +(trans s4565 s1969) +(trans s4565 s1982) +(trans s4566 s1963) +(trans s4566 s1976) +(trans s4566 s1989) +(trans s4567 s1970) +(trans s4567 s1983) +(trans s4567 s1996) +(trans s4568 s1977) +(trans s4568 s1990) +(trans s4568 s2003) +(trans s4569 s1984) +(trans s4569 s1997) +(trans s4569 s2010) +(trans s4570 s1991) +(trans s4570 s2004) +(trans s4570 s2017) +(trans s4571 s1998) +(trans s4571 s2011) +(trans s4571 s2024) +(trans s4572 s2005) +(trans s4572 s2018) +(trans s4572 s2031) +(trans s4573 s2012) +(trans s4573 s2025) +(trans s4573 s2038) +(trans s4574 s2019) +(trans s4574 s2032) +(trans s4574 s2045) +(trans s4575 s2026) +(trans s4575 s2039) +(trans s4575 s2052) +(trans s4576 s2033) +(trans s4576 s2046) +(trans s4576 s2059) +(trans s4577 s2040) +(trans s4577 s2053) +(trans s4577 s2066) +(trans s4578 s2047) +(trans s4578 s2060) +(trans s4578 s2073) +(trans s4579 s2054) +(trans s4579 s2067) +(trans s4579 s2080) +(trans s4580 s2061) +(trans s4580 s2074) +(trans s4580 s2087) +(trans s4581 s2068) +(trans s4581 s2081) +(trans s4581 s2094) +(trans s4582 s2075) +(trans s4582 s2088) +(trans s4582 s2101) +(trans s4583 s2082) +(trans s4583 s2095) +(trans s4583 s2108) +(trans s4584 s2089) +(trans s4584 s2102) +(trans s4584 s2115) +(trans s4585 s2096) +(trans s4585 s2109) +(trans s4585 s2122) +(trans s4586 s2103) +(trans s4586 s2116) +(trans s4586 s2129) +(trans s4587 s2110) +(trans s4587 s2123) +(trans s4587 s2136) +(trans s4588 s2117) +(trans s4588 s2130) +(trans s4588 s2143) +(trans s4589 s2124) +(trans s4589 s2137) +(trans s4589 s2150) +(trans s4590 s2131) +(trans s4590 s2144) +(trans s4590 s2157) +(trans s4591 s2138) +(trans s4591 s2151) +(trans s4591 s2164) +(trans s4592 s2145) +(trans s4592 s2158) +(trans s4592 s2171) +(trans s4593 s2152) +(trans s4593 s2165) +(trans s4593 s2178) +(trans s4594 s2159) +(trans s4594 s2172) +(trans s4594 s2185) +(trans s4595 s2166) +(trans s4595 s2179) +(trans s4595 s2192) +(trans s4596 s2173) +(trans s4596 s2186) +(trans s4596 s2199) +(trans s4597 s2180) +(trans s4597 s2193) +(trans s4597 s2206) +(trans s4598 s2187) +(trans s4598 s2200) +(trans s4598 s2213) +(trans s4599 s2194) +(trans s4599 s2207) +(trans s4599 s2220) +(trans s4600 s2201) +(trans s4600 s2214) +(trans s4600 s2227) +(trans s4601 s2208) +(trans s4601 s2221) +(trans s4601 s2234) +(trans s4602 s2215) +(trans s4602 s2228) +(trans s4602 s2241) +(trans s4603 s2222) +(trans s4603 s2235) +(trans s4603 s2248) +(trans s4604 s2229) +(trans s4604 s2242) +(trans s4604 s2255) +(trans s4605 s2236) +(trans s4605 s2249) +(trans s4605 s2262) +(trans s4606 s2243) +(trans s4606 s2256) +(trans s4606 s2269) +(trans s4607 s2250) +(trans s4607 s2263) +(trans s4607 s2276) +(trans s4608 s2257) +(trans s4608 s2270) +(trans s4608 s2283) +(trans s4609 s2264) +(trans s4609 s2277) +(trans s4609 s2290) +(trans s4610 s2271) +(trans s4610 s2284) +(trans s4610 s2297) +(trans s4611 s2278) +(trans s4611 s2291) +(trans s4611 s2304) +(trans s4612 s2285) +(trans s4612 s2298) +(trans s4612 s2311) +(trans s4613 s2292) +(trans s4613 s2305) +(trans s4613 s2318) +(trans s4614 s2299) +(trans s4614 s2312) +(trans s4614 s2325) +(trans s4615 s2306) +(trans s4615 s2319) +(trans s4615 s2332) +(trans s4616 s2313) +(trans s4616 s2326) +(trans s4616 s2339) +(trans s4617 s2320) +(trans s4617 s2333) +(trans s4617 s2346) +(trans s4618 s2327) +(trans s4618 s2340) +(trans s4618 s2353) +(trans s4619 s2334) +(trans s4619 s2347) +(trans s4619 s2360) +(trans s4620 s2341) +(trans s4620 s2354) +(trans s4620 s2367) +(trans s4621 s2348) +(trans s4621 s2361) +(trans s4621 s2374) +(trans s4622 s2355) +(trans s4622 s2368) +(trans s4622 s2381) +(trans s4623 s2362) +(trans s4623 s2375) +(trans s4623 s2388) +(trans s4624 s2369) +(trans s4624 s2382) +(trans s4624 s2395) +(trans s4625 s2376) +(trans s4625 s2389) +(trans s4625 s2402) +(trans s4626 s2383) +(trans s4626 s2396) +(trans s4626 s2409) +(trans s4627 s2390) +(trans s4627 s2403) +(trans s4627 s2416) +(trans s4628 s2397) +(trans s4628 s2410) +(trans s4628 s2423) +(trans s4629 s2404) +(trans s4629 s2417) +(trans s4629 s2430) +(trans s4630 s2411) +(trans s4630 s2424) +(trans s4630 s2437) +(trans s4631 s2418) +(trans s4631 s2431) +(trans s4631 s2444) +(trans s4632 s2425) +(trans s4632 s2438) +(trans s4632 s2451) +(trans s4633 s2432) +(trans s4633 s2445) +(trans s4633 s2458) +(trans s4634 s2439) +(trans s4634 s2452) +(trans s4634 s2465) +(trans s4635 s2446) +(trans s4635 s2459) +(trans s4635 s2472) +(trans s4636 s2453) +(trans s4636 s2466) +(trans s4636 s2479) +(trans s4637 s2460) +(trans s4637 s2473) +(trans s4637 s2486) +(trans s4638 s2467) +(trans s4638 s2480) +(trans s4638 s2493) +(trans s4639 s2474) +(trans s4639 s2487) +(trans s4639 s2500) +(trans s4640 s2481) +(trans s4640 s2494) +(trans s4640 s2507) +(trans s4641 s2488) +(trans s4641 s2501) +(trans s4641 s2514) +(trans s4642 s2495) +(trans s4642 s2508) +(trans s4642 s2521) +(trans s4643 s2502) +(trans s4643 s2515) +(trans s4643 s2528) +(trans s4644 s2509) +(trans s4644 s2522) +(trans s4644 s2535) +(trans s4645 s2516) +(trans s4645 s2529) +(trans s4645 s2542) +(trans s4646 s2523) +(trans s4646 s2536) +(trans s4646 s2549) +(trans s4647 s2530) +(trans s4647 s2543) +(trans s4647 s2556) +(trans s4648 s2537) +(trans s4648 s2550) +(trans s4648 s2563) +(trans s4649 s2544) +(trans s4649 s2557) +(trans s4649 s2570) +(trans s4650 s2551) +(trans s4650 s2564) +(trans s4650 s2577) +(trans s4651 s2558) +(trans s4651 s2571) +(trans s4651 s2584) +(trans s4652 s2565) +(trans s4652 s2578) +(trans s4652 s2591) +(trans s4653 s2572) +(trans s4653 s2585) +(trans s4653 s2598) +(trans s4654 s2579) +(trans s4654 s2592) +(trans s4654 s2605) +(trans s4655 s2586) +(trans s4655 s2599) +(trans s4655 s2612) +(trans s4656 s2593) +(trans s4656 s2606) +(trans s4656 s2619) +(trans s4657 s2600) +(trans s4657 s2613) +(trans s4657 s2626) +(trans s4658 s2607) +(trans s4658 s2620) +(trans s4658 s2633) +(trans s4659 s2614) +(trans s4659 s2627) +(trans s4659 s2640) +(trans s4660 s2621) +(trans s4660 s2634) +(trans s4660 s2647) +(trans s4661 s2628) +(trans s4661 s2641) +(trans s4661 s2654) +(trans s4662 s2635) +(trans s4662 s2648) +(trans s4662 s2661) +(trans s4663 s2642) +(trans s4663 s2655) +(trans s4663 s2668) +(trans s4664 s2649) +(trans s4664 s2662) +(trans s4664 s2675) +(trans s4665 s2656) +(trans s4665 s2669) +(trans s4665 s2682) +(trans s4666 s2663) +(trans s4666 s2676) +(trans s4666 s2689) +(trans s4667 s2670) +(trans s4667 s2683) +(trans s4667 s2696) +(trans s4668 s2677) +(trans s4668 s2690) +(trans s4668 s2703) +(trans s4669 s2684) +(trans s4669 s2697) +(trans s4669 s2710) +(trans s4670 s2691) +(trans s4670 s2704) +(trans s4670 s2717) +(trans s4671 s2698) +(trans s4671 s2711) +(trans s4671 s2724) +(trans s4672 s2705) +(trans s4672 s2718) +(trans s4672 s2731) +(trans s4673 s2712) +(trans s4673 s2725) +(trans s4673 s2738) +(trans s4674 s2719) +(trans s4674 s2732) +(trans s4674 s2745) +(trans s4675 s2726) +(trans s4675 s2739) +(trans s4675 s2752) +(trans s4676 s2733) +(trans s4676 s2746) +(trans s4676 s2759) +(trans s4677 s2740) +(trans s4677 s2753) +(trans s4677 s2766) +(trans s4678 s2747) +(trans s4678 s2760) +(trans s4678 s2773) +(trans s4679 s2754) +(trans s4679 s2767) +(trans s4679 s2780) +(trans s4680 s2761) +(trans s4680 s2774) +(trans s4680 s2787) +(trans s4681 s2768) +(trans s4681 s2781) +(trans s4681 s2794) +(trans s4682 s2775) +(trans s4682 s2788) +(trans s4682 s2801) +(trans s4683 s2782) +(trans s4683 s2795) +(trans s4683 s2808) +(trans s4684 s2789) +(trans s4684 s2802) +(trans s4684 s2815) +(trans s4685 s2796) +(trans s4685 s2809) +(trans s4685 s2822) +(trans s4686 s2803) +(trans s4686 s2816) +(trans s4686 s2829) +(trans s4687 s2810) +(trans s4687 s2823) +(trans s4687 s2836) +(trans s4688 s2817) +(trans s4688 s2830) +(trans s4688 s2843) +(trans s4689 s2824) +(trans s4689 s2837) +(trans s4689 s2850) +(trans s4690 s2831) +(trans s4690 s2844) +(trans s4690 s2857) +(trans s4691 s2838) +(trans s4691 s2851) +(trans s4691 s2864) +(trans s4692 s2845) +(trans s4692 s2858) +(trans s4692 s2871) +(trans s4693 s2852) +(trans s4693 s2865) +(trans s4693 s2878) +(trans s4694 s2859) +(trans s4694 s2872) +(trans s4694 s2885) +(trans s4695 s2866) +(trans s4695 s2879) +(trans s4695 s2892) +(trans s4696 s2873) +(trans s4696 s2886) +(trans s4696 s2899) +(trans s4697 s2880) +(trans s4697 s2893) +(trans s4697 s2906) +(trans s4698 s2887) +(trans s4698 s2900) +(trans s4698 s2913) +(trans s4699 s2894) +(trans s4699 s2907) +(trans s4699 s2920) +(trans s4700 s2901) +(trans s4700 s2914) +(trans s4700 s2927) +(trans s4701 s2908) +(trans s4701 s2921) +(trans s4701 s2934) +(trans s4702 s2915) +(trans s4702 s2928) +(trans s4702 s2941) +(trans s4703 s2922) +(trans s4703 s2935) +(trans s4703 s2948) +(trans s4704 s2929) +(trans s4704 s2942) +(trans s4704 s2955) +(trans s4705 s2936) +(trans s4705 s2949) +(trans s4705 s2962) +(trans s4706 s2943) +(trans s4706 s2956) +(trans s4706 s2969) +(trans s4707 s2950) +(trans s4707 s2963) +(trans s4707 s2976) +(trans s4708 s2957) +(trans s4708 s2970) +(trans s4708 s2983) +(trans s4709 s2964) +(trans s4709 s2977) +(trans s4709 s2990) +(trans s4710 s2971) +(trans s4710 s2984) +(trans s4710 s2997) +(trans s4711 s2978) +(trans s4711 s2991) +(trans s4711 s3004) +(trans s4712 s2985) +(trans s4712 s2998) +(trans s4712 s3011) +(trans s4713 s2992) +(trans s4713 s3005) +(trans s4713 s3018) +(trans s4714 s2999) +(trans s4714 s3012) +(trans s4714 s3025) +(trans s4715 s3006) +(trans s4715 s3019) +(trans s4715 s3032) +(trans s4716 s3013) +(trans s4716 s3026) +(trans s4716 s3039) +(trans s4717 s3020) +(trans s4717 s3033) +(trans s4717 s3046) +(trans s4718 s3027) +(trans s4718 s3040) +(trans s4718 s3053) +(trans s4719 s3034) +(trans s4719 s3047) +(trans s4719 s3060) +(trans s4720 s3041) +(trans s4720 s3054) +(trans s4720 s3067) +(trans s4721 s3048) +(trans s4721 s3061) +(trans s4721 s3074) +(trans s4722 s3055) +(trans s4722 s3068) +(trans s4722 s3081) +(trans s4723 s3062) +(trans s4723 s3075) +(trans s4723 s3088) +(trans s4724 s3069) +(trans s4724 s3082) +(trans s4724 s3095) +(trans s4725 s3076) +(trans s4725 s3089) +(trans s4725 s3102) +(trans s4726 s3083) +(trans s4726 s3096) +(trans s4726 s3109) +(trans s4727 s3090) +(trans s4727 s3103) +(trans s4727 s3116) +(trans s4728 s3097) +(trans s4728 s3110) +(trans s4728 s3123) +(trans s4729 s3104) +(trans s4729 s3117) +(trans s4729 s3130) +(trans s4730 s3111) +(trans s4730 s3124) +(trans s4730 s3137) +(trans s4731 s3118) +(trans s4731 s3131) +(trans s4731 s3144) +(trans s4732 s3125) +(trans s4732 s3138) +(trans s4732 s3151) +(trans s4733 s3132) +(trans s4733 s3145) +(trans s4733 s3158) +(trans s4734 s3139) +(trans s4734 s3152) +(trans s4734 s3165) +(trans s4735 s3146) +(trans s4735 s3159) +(trans s4735 s3172) +(trans s4736 s3153) +(trans s4736 s3166) +(trans s4736 s3179) +(trans s4737 s3160) +(trans s4737 s3173) +(trans s4737 s3186) +(trans s4738 s3167) +(trans s4738 s3180) +(trans s4738 s3193) +(trans s4739 s3174) +(trans s4739 s3187) +(trans s4739 s3200) +(trans s4740 s3181) +(trans s4740 s3194) +(trans s4740 s3207) +(trans s4741 s3188) +(trans s4741 s3201) +(trans s4741 s3214) +(trans s4742 s3195) +(trans s4742 s3208) +(trans s4742 s3221) +(trans s4743 s3202) +(trans s4743 s3215) +(trans s4743 s3228) +(trans s4744 s3209) +(trans s4744 s3222) +(trans s4744 s3235) +(trans s4745 s3216) +(trans s4745 s3229) +(trans s4745 s3242) +(trans s4746 s3223) +(trans s4746 s3236) +(trans s4746 s3249) +(trans s4747 s3230) +(trans s4747 s3243) +(trans s4747 s3256) +(trans s4748 s3237) +(trans s4748 s3250) +(trans s4748 s3263) +(trans s4749 s3244) +(trans s4749 s3257) +(trans s4749 s3270) +(trans s4750 s3251) +(trans s4750 s3264) +(trans s4750 s3277) +(trans s4751 s3258) +(trans s4751 s3271) +(trans s4751 s3284) +(trans s4752 s3265) +(trans s4752 s3278) +(trans s4752 s3291) +(trans s4753 s3272) +(trans s4753 s3285) +(trans s4753 s3298) +(trans s4754 s3279) +(trans s4754 s3292) +(trans s4754 s3305) +(trans s4755 s3286) +(trans s4755 s3299) +(trans s4755 s3312) +(trans s4756 s3293) +(trans s4756 s3306) +(trans s4756 s3319) +(trans s4757 s3300) +(trans s4757 s3313) +(trans s4757 s3326) +(trans s4758 s3307) +(trans s4758 s3320) +(trans s4758 s3333) +(trans s4759 s3314) +(trans s4759 s3327) +(trans s4759 s3340) +(trans s4760 s3321) +(trans s4760 s3334) +(trans s4760 s3347) +(trans s4761 s3328) +(trans s4761 s3341) +(trans s4761 s3354) +(trans s4762 s3335) +(trans s4762 s3348) +(trans s4762 s3361) +(trans s4763 s3342) +(trans s4763 s3355) +(trans s4763 s3368) +(trans s4764 s3349) +(trans s4764 s3362) +(trans s4764 s3375) +(trans s4765 s3356) +(trans s4765 s3369) +(trans s4765 s3382) +(trans s4766 s3363) +(trans s4766 s3376) +(trans s4766 s3389) +(trans s4767 s3370) +(trans s4767 s3383) +(trans s4767 s3396) +(trans s4768 s3377) +(trans s4768 s3390) +(trans s4768 s3403) +(trans s4769 s3384) +(trans s4769 s3397) +(trans s4769 s3410) +(trans s4770 s3391) +(trans s4770 s3404) +(trans s4770 s3417) +(trans s4771 s3398) +(trans s4771 s3411) +(trans s4771 s3424) +(trans s4772 s3405) +(trans s4772 s3418) +(trans s4772 s3431) +(trans s4773 s3412) +(trans s4773 s3425) +(trans s4773 s3438) +(trans s4774 s3419) +(trans s4774 s3432) +(trans s4774 s3445) +(trans s4775 s3426) +(trans s4775 s3439) +(trans s4775 s3452) +(trans s4776 s3433) +(trans s4776 s3446) +(trans s4776 s3459) +(trans s4777 s3440) +(trans s4777 s3453) +(trans s4777 s3466) +(trans s4778 s3447) +(trans s4778 s3460) +(trans s4778 s3473) +(trans s4779 s3454) +(trans s4779 s3467) +(trans s4779 s3480) +(trans s4780 s3461) +(trans s4780 s3474) +(trans s4780 s3487) +(trans s4781 s3468) +(trans s4781 s3481) +(trans s4781 s3494) +(trans s4782 s3475) +(trans s4782 s3488) +(trans s4782 s3501) +(trans s4783 s3482) +(trans s4783 s3495) +(trans s4783 s3508) +(trans s4784 s3489) +(trans s4784 s3502) +(trans s4784 s3515) +(trans s4785 s3496) +(trans s4785 s3509) +(trans s4785 s3522) +(trans s4786 s3503) +(trans s4786 s3516) +(trans s4786 s3529) +(trans s4787 s3510) +(trans s4787 s3523) +(trans s4787 s3536) +(trans s4788 s3517) +(trans s4788 s3530) +(trans s4788 s3543) +(trans s4789 s3524) +(trans s4789 s3537) +(trans s4789 s3550) +(trans s4790 s3531) +(trans s4790 s3544) +(trans s4790 s3557) +(trans s4791 s3538) +(trans s4791 s3551) +(trans s4791 s3564) +(trans s4792 s3545) +(trans s4792 s3558) +(trans s4792 s3571) +(trans s4793 s3552) +(trans s4793 s3565) +(trans s4793 s3578) +(trans s4794 s3559) +(trans s4794 s3572) +(trans s4794 s3585) +(trans s4795 s3566) +(trans s4795 s3579) +(trans s4795 s3592) +(trans s4796 s3573) +(trans s4796 s3586) +(trans s4796 s3599) +(trans s4797 s3580) +(trans s4797 s3593) +(trans s4797 s3606) +(trans s4798 s3587) +(trans s4798 s3600) +(trans s4798 s3613) +(trans s4799 s3594) +(trans s4799 s3607) +(trans s4799 s3620) +(trans s4800 s3601) +(trans s4800 s3614) +(trans s4800 s3627) +(trans s4801 s3608) +(trans s4801 s3621) +(trans s4801 s3634) +(trans s4802 s3615) +(trans s4802 s3628) +(trans s4802 s3641) +(trans s4803 s3622) +(trans s4803 s3635) +(trans s4803 s3648) +(trans s4804 s3629) +(trans s4804 s3642) +(trans s4804 s3655) +(trans s4805 s3636) +(trans s4805 s3649) +(trans s4805 s3662) +(trans s4806 s3643) +(trans s4806 s3656) +(trans s4806 s3669) +(trans s4807 s3650) +(trans s4807 s3663) +(trans s4807 s3676) +(trans s4808 s3657) +(trans s4808 s3670) +(trans s4808 s3683) +(trans s4809 s3664) +(trans s4809 s3677) +(trans s4809 s3690) +(trans s4810 s3671) +(trans s4810 s3684) +(trans s4810 s3697) +(trans s4811 s3678) +(trans s4811 s3691) +(trans s4811 s3704) +(trans s4812 s3685) +(trans s4812 s3698) +(trans s4812 s3711) +(trans s4813 s3692) +(trans s4813 s3705) +(trans s4813 s3718) +(trans s4814 s3699) +(trans s4814 s3712) +(trans s4814 s3725) +(trans s4815 s3706) +(trans s4815 s3719) +(trans s4815 s3732) +(trans s4816 s3713) +(trans s4816 s3726) +(trans s4816 s3739) +(trans s4817 s3720) +(trans s4817 s3733) +(trans s4817 s3746) +(trans s4818 s3727) +(trans s4818 s3740) +(trans s4818 s3753) +(trans s4819 s3734) +(trans s4819 s3747) +(trans s4819 s3760) +(trans s4820 s3741) +(trans s4820 s3754) +(trans s4820 s3767) +(trans s4821 s3748) +(trans s4821 s3761) +(trans s4821 s3774) +(trans s4822 s3755) +(trans s4822 s3768) +(trans s4822 s3781) +(trans s4823 s3762) +(trans s4823 s3775) +(trans s4823 s3788) +(trans s4824 s3769) +(trans s4824 s3782) +(trans s4824 s3795) +(trans s4825 s3776) +(trans s4825 s3789) +(trans s4825 s3802) +(trans s4826 s3783) +(trans s4826 s3796) +(trans s4826 s3809) +(trans s4827 s3790) +(trans s4827 s3803) +(trans s4827 s3816) +(trans s4828 s3797) +(trans s4828 s3810) +(trans s4828 s3823) +(trans s4829 s3804) +(trans s4829 s3817) +(trans s4829 s3830) +(trans s4830 s3811) +(trans s4830 s3824) +(trans s4830 s3837) +(trans s4831 s3818) +(trans s4831 s3831) +(trans s4831 s3844) +(trans s4832 s3825) +(trans s4832 s3838) +(trans s4832 s3851) +(trans s4833 s3832) +(trans s4833 s3845) +(trans s4833 s3858) +(trans s4834 s3839) +(trans s4834 s3852) +(trans s4834 s3865) +(trans s4835 s3846) +(trans s4835 s3859) +(trans s4835 s3872) +(trans s4836 s3853) +(trans s4836 s3866) +(trans s4836 s3879) +(trans s4837 s3860) +(trans s4837 s3873) +(trans s4837 s3886) +(trans s4838 s3867) +(trans s4838 s3880) +(trans s4838 s3893) +(trans s4839 s3874) +(trans s4839 s3887) +(trans s4839 s3900) +(trans s4840 s3881) +(trans s4840 s3894) +(trans s4840 s3907) +(trans s4841 s3888) +(trans s4841 s3901) +(trans s4841 s3914) +(trans s4842 s3895) +(trans s4842 s3908) +(trans s4842 s3921) +(trans s4843 s3902) +(trans s4843 s3915) +(trans s4843 s3928) +(trans s4844 s3909) +(trans s4844 s3922) +(trans s4844 s3935) +(trans s4845 s3916) +(trans s4845 s3929) +(trans s4845 s3942) +(trans s4846 s3923) +(trans s4846 s3936) +(trans s4846 s3949) +(trans s4847 s3930) +(trans s4847 s3943) +(trans s4847 s3956) +(trans s4848 s3937) +(trans s4848 s3950) +(trans s4848 s3963) +(trans s4849 s3944) +(trans s4849 s3957) +(trans s4849 s3970) +(trans s4850 s3951) +(trans s4850 s3964) +(trans s4850 s3977) +(trans s4851 s3958) +(trans s4851 s3971) +(trans s4851 s3984) +(trans s4852 s3965) +(trans s4852 s3978) +(trans s4852 s3991) +(trans s4853 s3972) +(trans s4853 s3985) +(trans s4853 s3998) +(trans s4854 s3979) +(trans s4854 s3992) +(trans s4854 s4005) +(trans s4855 s3986) +(trans s4855 s3999) +(trans s4855 s4012) +(trans s4856 s3993) +(trans s4856 s4006) +(trans s4856 s4019) +(trans s4857 s4000) +(trans s4857 s4013) +(trans s4857 s4026) +(trans s4858 s4007) +(trans s4858 s4020) +(trans s4858 s4033) +(trans s4859 s4014) +(trans s4859 s4027) +(trans s4859 s4040) +(trans s4860 s4021) +(trans s4860 s4034) +(trans s4860 s4047) +(trans s4861 s4028) +(trans s4861 s4041) +(trans s4861 s4054) +(trans s4862 s4035) +(trans s4862 s4048) +(trans s4862 s4061) +(trans s4863 s4042) +(trans s4863 s4055) +(trans s4863 s4068) +(trans s4864 s4049) +(trans s4864 s4062) +(trans s4864 s4075) +(trans s4865 s4056) +(trans s4865 s4069) +(trans s4865 s4082) +(trans s4866 s4063) +(trans s4866 s4076) +(trans s4866 s4089) +(trans s4867 s4070) +(trans s4867 s4083) +(trans s4867 s4096) +(trans s4868 s4077) +(trans s4868 s4090) +(trans s4868 s4103) +(trans s4869 s4084) +(trans s4869 s4097) +(trans s4869 s4110) +(trans s4870 s4091) +(trans s4870 s4104) +(trans s4870 s4117) +(trans s4871 s4098) +(trans s4871 s4111) +(trans s4871 s4124) +(trans s4872 s4105) +(trans s4872 s4118) +(trans s4872 s4131) +(trans s4873 s4112) +(trans s4873 s4125) +(trans s4873 s4138) +(trans s4874 s4119) +(trans s4874 s4132) +(trans s4874 s4145) +(trans s4875 s4126) +(trans s4875 s4139) +(trans s4875 s4152) +(trans s4876 s4133) +(trans s4876 s4146) +(trans s4876 s4159) +(trans s4877 s4140) +(trans s4877 s4153) +(trans s4877 s4166) +(trans s4878 s4147) +(trans s4878 s4160) +(trans s4878 s4173) +(trans s4879 s4154) +(trans s4879 s4167) +(trans s4879 s4180) +(trans s4880 s4161) +(trans s4880 s4174) +(trans s4880 s4187) +(trans s4881 s4168) +(trans s4881 s4181) +(trans s4881 s4194) +(trans s4882 s4175) +(trans s4882 s4188) +(trans s4882 s4201) +(trans s4883 s4182) +(trans s4883 s4195) +(trans s4883 s4208) +(trans s4884 s4189) +(trans s4884 s4202) +(trans s4884 s4215) +(trans s4885 s4196) +(trans s4885 s4209) +(trans s4885 s4222) +(trans s4886 s4203) +(trans s4886 s4216) +(trans s4886 s4229) +(trans s4887 s4210) +(trans s4887 s4223) +(trans s4887 s4236) +(trans s4888 s4217) +(trans s4888 s4230) +(trans s4888 s4243) +(trans s4889 s4224) +(trans s4889 s4237) +(trans s4889 s4250) +(trans s4890 s4231) +(trans s4890 s4244) +(trans s4890 s4257) +(trans s4891 s4238) +(trans s4891 s4251) +(trans s4891 s4264) +(trans s4892 s4245) +(trans s4892 s4258) +(trans s4892 s4271) +(trans s4893 s4252) +(trans s4893 s4265) +(trans s4893 s4278) +(trans s4894 s4259) +(trans s4894 s4272) +(trans s4894 s4285) +(trans s4895 s4266) +(trans s4895 s4279) +(trans s4895 s4292) +(trans s4896 s4273) +(trans s4896 s4286) +(trans s4896 s4299) +(trans s4897 s4280) +(trans s4897 s4293) +(trans s4897 s4306) +(trans s4898 s4287) +(trans s4898 s4300) +(trans s4898 s4313) +(trans s4899 s4294) +(trans s4899 s4307) +(trans s4899 s4320) +(trans s4900 s4301) +(trans s4900 s4314) +(trans s4900 s4327) +(trans s4901 s4308) +(trans s4901 s4321) +(trans s4901 s4334) +(trans s4902 s4315) +(trans s4902 s4328) +(trans s4902 s4341) +(trans s4903 s4322) +(trans s4903 s4335) +(trans s4903 s4348) +(trans s4904 s4329) +(trans s4904 s4342) +(trans s4904 s4355) +(trans s4905 s4336) +(trans s4905 s4349) +(trans s4905 s4362) +(trans s4906 s4343) +(trans s4906 s4356) +(trans s4906 s4369) +(trans s4907 s4350) +(trans s4907 s4363) +(trans s4907 s4376) +(trans s4908 s4357) +(trans s4908 s4370) +(trans s4908 s4383) +(trans s4909 s4364) +(trans s4909 s4377) +(trans s4909 s4390) +(trans s4910 s4371) +(trans s4910 s4384) +(trans s4910 s4397) +(trans s4911 s4378) +(trans s4911 s4391) +(trans s4911 s4404) +(trans s4912 s4385) +(trans s4912 s4398) +(trans s4912 s4411) +(trans s4913 s4392) +(trans s4913 s4405) +(trans s4913 s4418) +(trans s4914 s4399) +(trans s4914 s4412) +(trans s4914 s4425) +(trans s4915 s4406) +(trans s4915 s4419) +(trans s4915 s4432) +(trans s4916 s4413) +(trans s4916 s4426) +(trans s4916 s4439) +(trans s4917 s4420) +(trans s4917 s4433) +(trans s4917 s4446) +(trans s4918 s4427) +(trans s4918 s4440) +(trans s4918 s4453) +(trans s4919 s4434) +(trans s4919 s4447) +(trans s4919 s4460) +(trans s4920 s4441) +(trans s4920 s4454) +(trans s4920 s4467) +(trans s4921 s4448) +(trans s4921 s4461) +(trans s4921 s4474) +(trans s4922 s4455) +(trans s4922 s4468) +(trans s4922 s4481) +(trans s4923 s4462) +(trans s4923 s4475) +(trans s4923 s4488) +(trans s4924 s4469) +(trans s4924 s4482) +(trans s4924 s4495) +(trans s4925 s4476) +(trans s4925 s4489) +(trans s4925 s4502) +(trans s4926 s4483) +(trans s4926 s4496) +(trans s4926 s4509) +(trans s4927 s4490) +(trans s4927 s4503) +(trans s4927 s4516) +(trans s4928 s4497) +(trans s4928 s4510) +(trans s4928 s4523) +(trans s4929 s4504) +(trans s4929 s4517) +(trans s4929 s4530) +(trans s4930 s4511) +(trans s4930 s4524) +(trans s4930 s4537) +(trans s4931 s4518) +(trans s4931 s4531) +(trans s4931 s4544) +(trans s4932 s4525) +(trans s4932 s4538) +(trans s4932 s4551) +(trans s4933 s4532) +(trans s4933 s4545) +(trans s4933 s4558) +(trans s4934 s4539) +(trans s4934 s4552) +(trans s4934 s4565) +(trans s4935 s4546) +(trans s4935 s4559) +(trans s4935 s4572) +(trans s4936 s4553) +(trans s4936 s4566) +(trans s4936 s4579) +(trans s4937 s4560) +(trans s4937 s4573) +(trans s4937 s4586) +(trans s4938 s4567) +(trans s4938 s4580) +(trans s4938 s4593) +(trans s4939 s4574) +(trans s4939 s4587) +(trans s4939 s4600) +(trans s4940 s4581) +(trans s4940 s4594) +(trans s4940 s4607) +(trans s4941 s4588) +(trans s4941 s4601) +(trans s4941 s4614) +(trans s4942 s4595) +(trans s4942 s4608) +(trans s4942 s4621) +(trans s4943 s4602) +(trans s4943 s4615) +(trans s4943 s4628) +(trans s4944 s4609) +(trans s4944 s4622) +(trans s4944 s4635) +(trans s4945 s4616) +(trans s4945 s4629) +(trans s4945 s4642) +(trans s4946 s4623) +(trans s4946 s4636) +(trans s4946 s4649) +(trans s4947 s4630) +(trans s4947 s4643) +(trans s4947 s4656) +(trans s4948 s4637) +(trans s4948 s4650) +(trans s4948 s4663) +(trans s4949 s4644) +(trans s4949 s4657) +(trans s4949 s4670) +(trans s4950 s4651) +(trans s4950 s4664) +(trans s4950 s4677) +(trans s4951 s4658) +(trans s4951 s4671) +(trans s4951 s4684) +(trans s4952 s4665) +(trans s4952 s4678) +(trans s4952 s4691) +(trans s4953 s4672) +(trans s4953 s4685) +(trans s4953 s4698) +(trans s4954 s4679) +(trans s4954 s4692) +(trans s4954 s4705) +(trans s4955 s4686) +(trans s4955 s4699) +(trans s4955 s4712) +(trans s4956 s4693) +(trans s4956 s4706) +(trans s4956 s4719) +(trans s4957 s4700) +(trans s4957 s4713) +(trans s4957 s4726) +(trans s4958 s4707) +(trans s4958 s4720) +(trans s4958 s4733) +(trans s4959 s4714) +(trans s4959 s4727) +(trans s4959 s4740) +(trans s4960 s4721) +(trans s4960 s4734) +(trans s4960 s4747) +(trans s4961 s4728) +(trans s4961 s4741) +(trans s4961 s4754) +(trans s4962 s4735) +(trans s4962 s4748) +(trans s4962 s4761) +(trans s4963 s4742) +(trans s4963 s4755) +(trans s4963 s4768) +(trans s4964 s4749) +(trans s4964 s4762) +(trans s4964 s4775) +(trans s4965 s4756) +(trans s4965 s4769) +(trans s4965 s4782) +(trans s4966 s4763) +(trans s4966 s4776) +(trans s4966 s4789) +(trans s4967 s4770) +(trans s4967 s4783) +(trans s4967 s4796) +(trans s4968 s4777) +(trans s4968 s4790) +(trans s4968 s4803) +(trans s4969 s4784) +(trans s4969 s4797) +(trans s4969 s4810) +(trans s4970 s4791) +(trans s4970 s4804) +(trans s4970 s4817) +(trans s4971 s4798) +(trans s4971 s4811) +(trans s4971 s4824) +(trans s4972 s4805) +(trans s4972 s4818) +(trans s4972 s4831) +(trans s4973 s4812) +(trans s4973 s4825) +(trans s4973 s4838) +(trans s4974 s4819) +(trans s4974 s4832) +(trans s4974 s4845) +(trans s4975 s4826) +(trans s4975 s4839) +(trans s4975 s4852) +(trans s4976 s4833) +(trans s4976 s4846) +(trans s4976 s4859) +(trans s4977 s4840) +(trans s4977 s4853) +(trans s4977 s4866) +(trans s4978 s4847) +(trans s4978 s4860) +(trans s4978 s4873) +(trans s4979 s4854) +(trans s4979 s4867) +(trans s4979 s4880) +(trans s4980 s4861) +(trans s4980 s4874) +(trans s4980 s4887) +(trans s4981 s4868) +(trans s4981 s4881) +(trans s4981 s4894) +(trans s4982 s4875) +(trans s4982 s4888) +(trans s4982 s4901) +(trans s4983 s4882) +(trans s4983 s4895) +(trans s4983 s4908) +(trans s4984 s4889) +(trans s4984 s4902) +(trans s4984 s4915) +(trans s4985 s4896) +(trans s4985 s4909) +(trans s4985 s4922) +(trans s4986 s4903) +(trans s4986 s4916) +(trans s4986 s4929) +(trans s4987 s4910) +(trans s4987 s4923) +(trans s4987 s4936) +(trans s4988 s4917) +(trans s4988 s4930) +(trans s4988 s4943) +(trans s4989 s4924) +(trans s4989 s4937) +(trans s4989 s4950) +(trans s4990 s4931) +(trans s4990 s4944) +(trans s4990 s4957) +(trans s4991 s4938) +(trans s4991 s4951) +(trans s4991 s4964) +(trans s4992 s4945) +(trans s4992 s4958) +(trans s4992 s4971) +(trans s4993 s4952) +(trans s4993 s4965) +(trans s4993 s4978) +(trans s4994 s4959) +(trans s4994 s4972) +(trans s4994 s4985) +(trans s4995 s4966) +(trans s4995 s4979) +(trans s4995 s4992) +(trans s4996 s4973) +(trans s4996 s4986) +(trans s4996 s4999) +(trans s4997 s4980) +(trans s4997 s4993) +(trans s4997 s5006) +(trans s4998 s4987) +(trans s4998 s5000) +(trans s4998 s5013) +(trans s4999 s4994) +(trans s4999 s5007) +(trans s4999 s5020) +(trans s5000 s5001) +(trans s5000 s5014) +(trans s5000 s5027) +(trans s5001 s5008) +(trans s5001 s5021) +(trans s5001 s5034) +(trans s5002 s5015) +(trans s5002 s5028) +(trans s5002 s5041) +(trans s5003 s5022) +(trans s5003 s5035) +(trans s5003 s5048) +(trans s5004 s5029) +(trans s5004 s5042) +(trans s5004 s5055) +(trans s5005 s5036) +(trans s5005 s5049) +(trans s5005 s5062) +(trans s5006 s5043) +(trans s5006 s5056) +(trans s5006 s5069) +(trans s5007 s5050) +(trans s5007 s5063) +(trans s5007 s5076) +(trans s5008 s5057) +(trans s5008 s5070) +(trans s5008 s5083) +(trans s5009 s5064) +(trans s5009 s5077) +(trans s5009 s5090) +(trans s5010 s5071) +(trans s5010 s5084) +(trans s5010 s5097) +(trans s5011 s5078) +(trans s5011 s5091) +(trans s5011 s5104) +(trans s5012 s5085) +(trans s5012 s5098) +(trans s5012 s5111) +(trans s5013 s5092) +(trans s5013 s5105) +(trans s5013 s5118) +(trans s5014 s5099) +(trans s5014 s5112) +(trans s5014 s5125) +(trans s5015 s5106) +(trans s5015 s5119) +(trans s5015 s5132) +(trans s5016 s5113) +(trans s5016 s5126) +(trans s5016 s5139) +(trans s5017 s5120) +(trans s5017 s5133) +(trans s5017 s5146) +(trans s5018 s5127) +(trans s5018 s5140) +(trans s5018 s5153) +(trans s5019 s5134) +(trans s5019 s5147) +(trans s5019 s5160) +(trans s5020 s5141) +(trans s5020 s5154) +(trans s5020 s5167) +(trans s5021 s5148) +(trans s5021 s5161) +(trans s5021 s5174) +(trans s5022 s5155) +(trans s5022 s5168) +(trans s5022 s5181) +(trans s5023 s5162) +(trans s5023 s5175) +(trans s5023 s5188) +(trans s5024 s5169) +(trans s5024 s5182) +(trans s5024 s5195) +(trans s5025 s5176) +(trans s5025 s5189) +(trans s5025 s5202) +(trans s5026 s5183) +(trans s5026 s5196) +(trans s5026 s5209) +(trans s5027 s5190) +(trans s5027 s5203) +(trans s5027 s5216) +(trans s5028 s5197) +(trans s5028 s5210) +(trans s5028 s5223) +(trans s5029 s5204) +(trans s5029 s5217) +(trans s5029 s5230) +(trans s5030 s5211) +(trans s5030 s5224) +(trans s5030 s5237) +(trans s5031 s5218) +(trans s5031 s5231) +(trans s5031 s5244) +(trans s5032 s5225) +(trans s5032 s5238) +(trans s5032 s5251) +(trans s5033 s5232) +(trans s5033 s5245) +(trans s5033 s5258) +(trans s5034 s5239) +(trans s5034 s5252) +(trans s5034 s5265) +(trans s5035 s5246) +(trans s5035 s5259) +(trans s5035 s5272) +(trans s5036 s5253) +(trans s5036 s5266) +(trans s5036 s5279) +(trans s5037 s5260) +(trans s5037 s5273) +(trans s5037 s5286) +(trans s5038 s5267) +(trans s5038 s5280) +(trans s5038 s5293) +(trans s5039 s5274) +(trans s5039 s5287) +(trans s5039 s5300) +(trans s5040 s5281) +(trans s5040 s5294) +(trans s5040 s5307) +(trans s5041 s5288) +(trans s5041 s5301) +(trans s5041 s5314) +(trans s5042 s5295) +(trans s5042 s5308) +(trans s5042 s5321) +(trans s5043 s5302) +(trans s5043 s5315) +(trans s5043 s5328) +(trans s5044 s5309) +(trans s5044 s5322) +(trans s5044 s5335) +(trans s5045 s5316) +(trans s5045 s5329) +(trans s5045 s5342) +(trans s5046 s5323) +(trans s5046 s5336) +(trans s5046 s5349) +(trans s5047 s5330) +(trans s5047 s5343) +(trans s5047 s5356) +(trans s5048 s5337) +(trans s5048 s5350) +(trans s5048 s5363) +(trans s5049 s5344) +(trans s5049 s5357) +(trans s5049 s5370) +(trans s5050 s5351) +(trans s5050 s5364) +(trans s5050 s5377) +(trans s5051 s5358) +(trans s5051 s5371) +(trans s5051 s5384) +(trans s5052 s5365) +(trans s5052 s5378) +(trans s5052 s5391) +(trans s5053 s5372) +(trans s5053 s5385) +(trans s5053 s5398) +(trans s5054 s5379) +(trans s5054 s5392) +(trans s5054 s5405) +(trans s5055 s5386) +(trans s5055 s5399) +(trans s5055 s5412) +(trans s5056 s5393) +(trans s5056 s5406) +(trans s5056 s5419) +(trans s5057 s5400) +(trans s5057 s5413) +(trans s5057 s5426) +(trans s5058 s5407) +(trans s5058 s5420) +(trans s5058 s5433) +(trans s5059 s5414) +(trans s5059 s5427) +(trans s5059 s5440) +(trans s5060 s5421) +(trans s5060 s5434) +(trans s5060 s5447) +(trans s5061 s5428) +(trans s5061 s5441) +(trans s5061 s5454) +(trans s5062 s5435) +(trans s5062 s5448) +(trans s5062 s5461) +(trans s5063 s5442) +(trans s5063 s5455) +(trans s5063 s5468) +(trans s5064 s5449) +(trans s5064 s5462) +(trans s5064 s5475) +(trans s5065 s5456) +(trans s5065 s5469) +(trans s5065 s5482) +(trans s5066 s5463) +(trans s5066 s5476) +(trans s5066 s5489) +(trans s5067 s5470) +(trans s5067 s5483) +(trans s5067 s5496) +(trans s5068 s5477) +(trans s5068 s5490) +(trans s5068 s5503) +(trans s5069 s5484) +(trans s5069 s5497) +(trans s5069 s5510) +(trans s5070 s5491) +(trans s5070 s5504) +(trans s5070 s5517) +(trans s5071 s5498) +(trans s5071 s5511) +(trans s5071 s5524) +(trans s5072 s5505) +(trans s5072 s5518) +(trans s5072 s5531) +(trans s5073 s5512) +(trans s5073 s5525) +(trans s5073 s5538) +(trans s5074 s5519) +(trans s5074 s5532) +(trans s5074 s5545) +(trans s5075 s5526) +(trans s5075 s5539) +(trans s5075 s5552) +(trans s5076 s5533) +(trans s5076 s5546) +(trans s5076 s5559) +(trans s5077 s5540) +(trans s5077 s5553) +(trans s5077 s5566) +(trans s5078 s5547) +(trans s5078 s5560) +(trans s5078 s5573) +(trans s5079 s5554) +(trans s5079 s5567) +(trans s5079 s5580) +(trans s5080 s5561) +(trans s5080 s5574) +(trans s5080 s5587) +(trans s5081 s5568) +(trans s5081 s5581) +(trans s5081 s5594) +(trans s5082 s5575) +(trans s5082 s5588) +(trans s5082 s5601) +(trans s5083 s5582) +(trans s5083 s5595) +(trans s5083 s5608) +(trans s5084 s5589) +(trans s5084 s5602) +(trans s5084 s5615) +(trans s5085 s5596) +(trans s5085 s5609) +(trans s5085 s5622) +(trans s5086 s5603) +(trans s5086 s5616) +(trans s5086 s5629) +(trans s5087 s5610) +(trans s5087 s5623) +(trans s5087 s5636) +(trans s5088 s5617) +(trans s5088 s5630) +(trans s5088 s5643) +(trans s5089 s5624) +(trans s5089 s5637) +(trans s5089 s5650) +(trans s5090 s5631) +(trans s5090 s5644) +(trans s5090 s5657) +(trans s5091 s5638) +(trans s5091 s5651) +(trans s5091 s5664) +(trans s5092 s5645) +(trans s5092 s5658) +(trans s5092 s5671) +(trans s5093 s5652) +(trans s5093 s5665) +(trans s5093 s5678) +(trans s5094 s5659) +(trans s5094 s5672) +(trans s5094 s5685) +(trans s5095 s5666) +(trans s5095 s5679) +(trans s5095 s5692) +(trans s5096 s5673) +(trans s5096 s5686) +(trans s5096 s5699) +(trans s5097 s5680) +(trans s5097 s5693) +(trans s5097 s5706) +(trans s5098 s5687) +(trans s5098 s5700) +(trans s5098 s5713) +(trans s5099 s5694) +(trans s5099 s5707) +(trans s5099 s5720) +(trans s5100 s5701) +(trans s5100 s5714) +(trans s5100 s5727) +(trans s5101 s5708) +(trans s5101 s5721) +(trans s5101 s5734) +(trans s5102 s5715) +(trans s5102 s5728) +(trans s5102 s5741) +(trans s5103 s5722) +(trans s5103 s5735) +(trans s5103 s5748) +(trans s5104 s5729) +(trans s5104 s5742) +(trans s5104 s5755) +(trans s5105 s5736) +(trans s5105 s5749) +(trans s5105 s5762) +(trans s5106 s5743) +(trans s5106 s5756) +(trans s5106 s5769) +(trans s5107 s5750) +(trans s5107 s5763) +(trans s5107 s5776) +(trans s5108 s5757) +(trans s5108 s5770) +(trans s5108 s5783) +(trans s5109 s5764) +(trans s5109 s5777) +(trans s5109 s5790) +(trans s5110 s5771) +(trans s5110 s5784) +(trans s5110 s5797) +(trans s5111 s5778) +(trans s5111 s5791) +(trans s5111 s5804) +(trans s5112 s5785) +(trans s5112 s5798) +(trans s5112 s5811) +(trans s5113 s5792) +(trans s5113 s5805) +(trans s5113 s5818) +(trans s5114 s5799) +(trans s5114 s5812) +(trans s5114 s5825) +(trans s5115 s5806) +(trans s5115 s5819) +(trans s5115 s5832) +(trans s5116 s5813) +(trans s5116 s5826) +(trans s5116 s5839) +(trans s5117 s5820) +(trans s5117 s5833) +(trans s5117 s5846) +(trans s5118 s5827) +(trans s5118 s5840) +(trans s5118 s5853) +(trans s5119 s5834) +(trans s5119 s5847) +(trans s5119 s5860) +(trans s5120 s5841) +(trans s5120 s5854) +(trans s5120 s5867) +(trans s5121 s5848) +(trans s5121 s5861) +(trans s5121 s5874) +(trans s5122 s5855) +(trans s5122 s5868) +(trans s5122 s5881) +(trans s5123 s5862) +(trans s5123 s5875) +(trans s5123 s5888) +(trans s5124 s5869) +(trans s5124 s5882) +(trans s5124 s5895) +(trans s5125 s5876) +(trans s5125 s5889) +(trans s5125 s5902) +(trans s5126 s5883) +(trans s5126 s5896) +(trans s5126 s5909) +(trans s5127 s5890) +(trans s5127 s5903) +(trans s5127 s5916) +(trans s5128 s5897) +(trans s5128 s5910) +(trans s5128 s5923) +(trans s5129 s5904) +(trans s5129 s5917) +(trans s5129 s5930) +(trans s5130 s5911) +(trans s5130 s5924) +(trans s5130 s5937) +(trans s5131 s5918) +(trans s5131 s5931) +(trans s5131 s5944) +(trans s5132 s5925) +(trans s5132 s5938) +(trans s5132 s5951) +(trans s5133 s5932) +(trans s5133 s5945) +(trans s5133 s5958) +(trans s5134 s5939) +(trans s5134 s5952) +(trans s5134 s5965) +(trans s5135 s5946) +(trans s5135 s5959) +(trans s5135 s5972) +(trans s5136 s5953) +(trans s5136 s5966) +(trans s5136 s5979) +(trans s5137 s5960) +(trans s5137 s5973) +(trans s5137 s5986) +(trans s5138 s5967) +(trans s5138 s5980) +(trans s5138 s5993) +(trans s5139 s5974) +(trans s5139 s5987) +(trans s5139 s0) +(trans s5140 s5981) +(trans s5140 s5994) +(trans s5140 s7) +(trans s5141 s5988) +(trans s5141 s1) +(trans s5141 s14) +(trans s5142 s5995) +(trans s5142 s8) +(trans s5142 s21) +(trans s5143 s2) +(trans s5143 s15) +(trans s5143 s28) +(trans s5144 s9) +(trans s5144 s22) +(trans s5144 s35) +(trans s5145 s16) +(trans s5145 s29) +(trans s5145 s42) +(trans s5146 s23) +(trans s5146 s36) +(trans s5146 s49) +(trans s5147 s30) +(trans s5147 s43) +(trans s5147 s56) +(trans s5148 s37) +(trans s5148 s50) +(trans s5148 s63) +(trans s5149 s44) +(trans s5149 s57) +(trans s5149 s70) +(trans s5150 s51) +(trans s5150 s64) +(trans s5150 s77) +(trans s5151 s58) +(trans s5151 s71) +(trans s5151 s84) +(trans s5152 s65) +(trans s5152 s78) +(trans s5152 s91) +(trans s5153 s72) +(trans s5153 s85) +(trans s5153 s98) +(trans s5154 s79) +(trans s5154 s92) +(trans s5154 s105) +(trans s5155 s86) +(trans s5155 s99) +(trans s5155 s112) +(trans s5156 s93) +(trans s5156 s106) +(trans s5156 s119) +(trans s5157 s100) +(trans s5157 s113) +(trans s5157 s126) +(trans s5158 s107) +(trans s5158 s120) +(trans s5158 s133) +(trans s5159 s114) +(trans s5159 s127) +(trans s5159 s140) +(trans s5160 s121) +(trans s5160 s134) +(trans s5160 s147) +(trans s5161 s128) +(trans s5161 s141) +(trans s5161 s154) +(trans s5162 s135) +(trans s5162 s148) +(trans s5162 s161) +(trans s5163 s142) +(trans s5163 s155) +(trans s5163 s168) +(trans s5164 s149) +(trans s5164 s162) +(trans s5164 s175) +(trans s5165 s156) +(trans s5165 s169) +(trans s5165 s182) +(trans s5166 s163) +(trans s5166 s176) +(trans s5166 s189) +(trans s5167 s170) +(trans s5167 s183) +(trans s5167 s196) +(trans s5168 s177) +(trans s5168 s190) +(trans s5168 s203) +(trans s5169 s184) +(trans s5169 s197) +(trans s5169 s210) +(trans s5170 s191) +(trans s5170 s204) +(trans s5170 s217) +(trans s5171 s198) +(trans s5171 s211) +(trans s5171 s224) +(trans s5172 s205) +(trans s5172 s218) +(trans s5172 s231) +(trans s5173 s212) +(trans s5173 s225) +(trans s5173 s238) +(trans s5174 s219) +(trans s5174 s232) +(trans s5174 s245) +(trans s5175 s226) +(trans s5175 s239) +(trans s5175 s252) +(trans s5176 s233) +(trans s5176 s246) +(trans s5176 s259) +(trans s5177 s240) +(trans s5177 s253) +(trans s5177 s266) +(trans s5178 s247) +(trans s5178 s260) +(trans s5178 s273) +(trans s5179 s254) +(trans s5179 s267) +(trans s5179 s280) +(trans s5180 s261) +(trans s5180 s274) +(trans s5180 s287) +(trans s5181 s268) +(trans s5181 s281) +(trans s5181 s294) +(trans s5182 s275) +(trans s5182 s288) +(trans s5182 s301) +(trans s5183 s282) +(trans s5183 s295) +(trans s5183 s308) +(trans s5184 s289) +(trans s5184 s302) +(trans s5184 s315) +(trans s5185 s296) +(trans s5185 s309) +(trans s5185 s322) +(trans s5186 s303) +(trans s5186 s316) +(trans s5186 s329) +(trans s5187 s310) +(trans s5187 s323) +(trans s5187 s336) +(trans s5188 s317) +(trans s5188 s330) +(trans s5188 s343) +(trans s5189 s324) +(trans s5189 s337) +(trans s5189 s350) +(trans s5190 s331) +(trans s5190 s344) +(trans s5190 s357) +(trans s5191 s338) +(trans s5191 s351) +(trans s5191 s364) +(trans s5192 s345) +(trans s5192 s358) +(trans s5192 s371) +(trans s5193 s352) +(trans s5193 s365) +(trans s5193 s378) +(trans s5194 s359) +(trans s5194 s372) +(trans s5194 s385) +(trans s5195 s366) +(trans s5195 s379) +(trans s5195 s392) +(trans s5196 s373) +(trans s5196 s386) +(trans s5196 s399) +(trans s5197 s380) +(trans s5197 s393) +(trans s5197 s406) +(trans s5198 s387) +(trans s5198 s400) +(trans s5198 s413) +(trans s5199 s394) +(trans s5199 s407) +(trans s5199 s420) +(trans s5200 s401) +(trans s5200 s414) +(trans s5200 s427) +(trans s5201 s408) +(trans s5201 s421) +(trans s5201 s434) +(trans s5202 s415) +(trans s5202 s428) +(trans s5202 s441) +(trans s5203 s422) +(trans s5203 s435) +(trans s5203 s448) +(trans s5204 s429) +(trans s5204 s442) +(trans s5204 s455) +(trans s5205 s436) +(trans s5205 s449) +(trans s5205 s462) +(trans s5206 s443) +(trans s5206 s456) +(trans s5206 s469) +(trans s5207 s450) +(trans s5207 s463) +(trans s5207 s476) +(trans s5208 s457) +(trans s5208 s470) +(trans s5208 s483) +(trans s5209 s464) +(trans s5209 s477) +(trans s5209 s490) +(trans s5210 s471) +(trans s5210 s484) +(trans s5210 s497) +(trans s5211 s478) +(trans s5211 s491) +(trans s5211 s504) +(trans s5212 s485) +(trans s5212 s498) +(trans s5212 s511) +(trans s5213 s492) +(trans s5213 s505) +(trans s5213 s518) +(trans s5214 s499) +(trans s5214 s512) +(trans s5214 s525) +(trans s5215 s506) +(trans s5215 s519) +(trans s5215 s532) +(trans s5216 s513) +(trans s5216 s526) +(trans s5216 s539) +(trans s5217 s520) +(trans s5217 s533) +(trans s5217 s546) +(trans s5218 s527) +(trans s5218 s540) +(trans s5218 s553) +(trans s5219 s534) +(trans s5219 s547) +(trans s5219 s560) +(trans s5220 s541) +(trans s5220 s554) +(trans s5220 s567) +(trans s5221 s548) +(trans s5221 s561) +(trans s5221 s574) +(trans s5222 s555) +(trans s5222 s568) +(trans s5222 s581) +(trans s5223 s562) +(trans s5223 s575) +(trans s5223 s588) +(trans s5224 s569) +(trans s5224 s582) +(trans s5224 s595) +(trans s5225 s576) +(trans s5225 s589) +(trans s5225 s602) +(trans s5226 s583) +(trans s5226 s596) +(trans s5226 s609) +(trans s5227 s590) +(trans s5227 s603) +(trans s5227 s616) +(trans s5228 s597) +(trans s5228 s610) +(trans s5228 s623) +(trans s5229 s604) +(trans s5229 s617) +(trans s5229 s630) +(trans s5230 s611) +(trans s5230 s624) +(trans s5230 s637) +(trans s5231 s618) +(trans s5231 s631) +(trans s5231 s644) +(trans s5232 s625) +(trans s5232 s638) +(trans s5232 s651) +(trans s5233 s632) +(trans s5233 s645) +(trans s5233 s658) +(trans s5234 s639) +(trans s5234 s652) +(trans s5234 s665) +(trans s5235 s646) +(trans s5235 s659) +(trans s5235 s672) +(trans s5236 s653) +(trans s5236 s666) +(trans s5236 s679) +(trans s5237 s660) +(trans s5237 s673) +(trans s5237 s686) +(trans s5238 s667) +(trans s5238 s680) +(trans s5238 s693) +(trans s5239 s674) +(trans s5239 s687) +(trans s5239 s700) +(trans s5240 s681) +(trans s5240 s694) +(trans s5240 s707) +(trans s5241 s688) +(trans s5241 s701) +(trans s5241 s714) +(trans s5242 s695) +(trans s5242 s708) +(trans s5242 s721) +(trans s5243 s702) +(trans s5243 s715) +(trans s5243 s728) +(trans s5244 s709) +(trans s5244 s722) +(trans s5244 s735) +(trans s5245 s716) +(trans s5245 s729) +(trans s5245 s742) +(trans s5246 s723) +(trans s5246 s736) +(trans s5246 s749) +(trans s5247 s730) +(trans s5247 s743) +(trans s5247 s756) +(trans s5248 s737) +(trans s5248 s750) +(trans s5248 s763) +(trans s5249 s744) +(trans s5249 s757) +(trans s5249 s770) +(trans s5250 s751) +(trans s5250 s764) +(trans s5250 s777) +(trans s5251 s758) +(trans s5251 s771) +(trans s5251 s784) +(trans s5252 s765) +(trans s5252 s778) +(trans s5252 s791) +(trans s5253 s772) +(trans s5253 s785) +(trans s5253 s798) +(trans s5254 s779) +(trans s5254 s792) +(trans s5254 s805) +(trans s5255 s786) +(trans s5255 s799) +(trans s5255 s812) +(trans s5256 s793) +(trans s5256 s806) +(trans s5256 s819) +(trans s5257 s800) +(trans s5257 s813) +(trans s5257 s826) +(trans s5258 s807) +(trans s5258 s820) +(trans s5258 s833) +(trans s5259 s814) +(trans s5259 s827) +(trans s5259 s840) +(trans s5260 s821) +(trans s5260 s834) +(trans s5260 s847) +(trans s5261 s828) +(trans s5261 s841) +(trans s5261 s854) +(trans s5262 s835) +(trans s5262 s848) +(trans s5262 s861) +(trans s5263 s842) +(trans s5263 s855) +(trans s5263 s868) +(trans s5264 s849) +(trans s5264 s862) +(trans s5264 s875) +(trans s5265 s856) +(trans s5265 s869) +(trans s5265 s882) +(trans s5266 s863) +(trans s5266 s876) +(trans s5266 s889) +(trans s5267 s870) +(trans s5267 s883) +(trans s5267 s896) +(trans s5268 s877) +(trans s5268 s890) +(trans s5268 s903) +(trans s5269 s884) +(trans s5269 s897) +(trans s5269 s910) +(trans s5270 s891) +(trans s5270 s904) +(trans s5270 s917) +(trans s5271 s898) +(trans s5271 s911) +(trans s5271 s924) +(trans s5272 s905) +(trans s5272 s918) +(trans s5272 s931) +(trans s5273 s912) +(trans s5273 s925) +(trans s5273 s938) +(trans s5274 s919) +(trans s5274 s932) +(trans s5274 s945) +(trans s5275 s926) +(trans s5275 s939) +(trans s5275 s952) +(trans s5276 s933) +(trans s5276 s946) +(trans s5276 s959) +(trans s5277 s940) +(trans s5277 s953) +(trans s5277 s966) +(trans s5278 s947) +(trans s5278 s960) +(trans s5278 s973) +(trans s5279 s954) +(trans s5279 s967) +(trans s5279 s980) +(trans s5280 s961) +(trans s5280 s974) +(trans s5280 s987) +(trans s5281 s968) +(trans s5281 s981) +(trans s5281 s994) +(trans s5282 s975) +(trans s5282 s988) +(trans s5282 s1001) +(trans s5283 s982) +(trans s5283 s995) +(trans s5283 s1008) +(trans s5284 s989) +(trans s5284 s1002) +(trans s5284 s1015) +(trans s5285 s996) +(trans s5285 s1009) +(trans s5285 s1022) +(trans s5286 s1003) +(trans s5286 s1016) +(trans s5286 s1029) +(trans s5287 s1010) +(trans s5287 s1023) +(trans s5287 s1036) +(trans s5288 s1017) +(trans s5288 s1030) +(trans s5288 s1043) +(trans s5289 s1024) +(trans s5289 s1037) +(trans s5289 s1050) +(trans s5290 s1031) +(trans s5290 s1044) +(trans s5290 s1057) +(trans s5291 s1038) +(trans s5291 s1051) +(trans s5291 s1064) +(trans s5292 s1045) +(trans s5292 s1058) +(trans s5292 s1071) +(trans s5293 s1052) +(trans s5293 s1065) +(trans s5293 s1078) +(trans s5294 s1059) +(trans s5294 s1072) +(trans s5294 s1085) +(trans s5295 s1066) +(trans s5295 s1079) +(trans s5295 s1092) +(trans s5296 s1073) +(trans s5296 s1086) +(trans s5296 s1099) +(trans s5297 s1080) +(trans s5297 s1093) +(trans s5297 s1106) +(trans s5298 s1087) +(trans s5298 s1100) +(trans s5298 s1113) +(trans s5299 s1094) +(trans s5299 s1107) +(trans s5299 s1120) +(trans s5300 s1101) +(trans s5300 s1114) +(trans s5300 s1127) +(trans s5301 s1108) +(trans s5301 s1121) +(trans s5301 s1134) +(trans s5302 s1115) +(trans s5302 s1128) +(trans s5302 s1141) +(trans s5303 s1122) +(trans s5303 s1135) +(trans s5303 s1148) +(trans s5304 s1129) +(trans s5304 s1142) +(trans s5304 s1155) +(trans s5305 s1136) +(trans s5305 s1149) +(trans s5305 s1162) +(trans s5306 s1143) +(trans s5306 s1156) +(trans s5306 s1169) +(trans s5307 s1150) +(trans s5307 s1163) +(trans s5307 s1176) +(trans s5308 s1157) +(trans s5308 s1170) +(trans s5308 s1183) +(trans s5309 s1164) +(trans s5309 s1177) +(trans s5309 s1190) +(trans s5310 s1171) +(trans s5310 s1184) +(trans s5310 s1197) +(trans s5311 s1178) +(trans s5311 s1191) +(trans s5311 s1204) +(trans s5312 s1185) +(trans s5312 s1198) +(trans s5312 s1211) +(trans s5313 s1192) +(trans s5313 s1205) +(trans s5313 s1218) +(trans s5314 s1199) +(trans s5314 s1212) +(trans s5314 s1225) +(trans s5315 s1206) +(trans s5315 s1219) +(trans s5315 s1232) +(trans s5316 s1213) +(trans s5316 s1226) +(trans s5316 s1239) +(trans s5317 s1220) +(trans s5317 s1233) +(trans s5317 s1246) +(trans s5318 s1227) +(trans s5318 s1240) +(trans s5318 s1253) +(trans s5319 s1234) +(trans s5319 s1247) +(trans s5319 s1260) +(trans s5320 s1241) +(trans s5320 s1254) +(trans s5320 s1267) +(trans s5321 s1248) +(trans s5321 s1261) +(trans s5321 s1274) +(trans s5322 s1255) +(trans s5322 s1268) +(trans s5322 s1281) +(trans s5323 s1262) +(trans s5323 s1275) +(trans s5323 s1288) +(trans s5324 s1269) +(trans s5324 s1282) +(trans s5324 s1295) +(trans s5325 s1276) +(trans s5325 s1289) +(trans s5325 s1302) +(trans s5326 s1283) +(trans s5326 s1296) +(trans s5326 s1309) +(trans s5327 s1290) +(trans s5327 s1303) +(trans s5327 s1316) +(trans s5328 s1297) +(trans s5328 s1310) +(trans s5328 s1323) +(trans s5329 s1304) +(trans s5329 s1317) +(trans s5329 s1330) +(trans s5330 s1311) +(trans s5330 s1324) +(trans s5330 s1337) +(trans s5331 s1318) +(trans s5331 s1331) +(trans s5331 s1344) +(trans s5332 s1325) +(trans s5332 s1338) +(trans s5332 s1351) +(trans s5333 s1332) +(trans s5333 s1345) +(trans s5333 s1358) +(trans s5334 s1339) +(trans s5334 s1352) +(trans s5334 s1365) +(trans s5335 s1346) +(trans s5335 s1359) +(trans s5335 s1372) +(trans s5336 s1353) +(trans s5336 s1366) +(trans s5336 s1379) +(trans s5337 s1360) +(trans s5337 s1373) +(trans s5337 s1386) +(trans s5338 s1367) +(trans s5338 s1380) +(trans s5338 s1393) +(trans s5339 s1374) +(trans s5339 s1387) +(trans s5339 s1400) +(trans s5340 s1381) +(trans s5340 s1394) +(trans s5340 s1407) +(trans s5341 s1388) +(trans s5341 s1401) +(trans s5341 s1414) +(trans s5342 s1395) +(trans s5342 s1408) +(trans s5342 s1421) +(trans s5343 s1402) +(trans s5343 s1415) +(trans s5343 s1428) +(trans s5344 s1409) +(trans s5344 s1422) +(trans s5344 s1435) +(trans s5345 s1416) +(trans s5345 s1429) +(trans s5345 s1442) +(trans s5346 s1423) +(trans s5346 s1436) +(trans s5346 s1449) +(trans s5347 s1430) +(trans s5347 s1443) +(trans s5347 s1456) +(trans s5348 s1437) +(trans s5348 s1450) +(trans s5348 s1463) +(trans s5349 s1444) +(trans s5349 s1457) +(trans s5349 s1470) +(trans s5350 s1451) +(trans s5350 s1464) +(trans s5350 s1477) +(trans s5351 s1458) +(trans s5351 s1471) +(trans s5351 s1484) +(trans s5352 s1465) +(trans s5352 s1478) +(trans s5352 s1491) +(trans s5353 s1472) +(trans s5353 s1485) +(trans s5353 s1498) +(trans s5354 s1479) +(trans s5354 s1492) +(trans s5354 s1505) +(trans s5355 s1486) +(trans s5355 s1499) +(trans s5355 s1512) +(trans s5356 s1493) +(trans s5356 s1506) +(trans s5356 s1519) +(trans s5357 s1500) +(trans s5357 s1513) +(trans s5357 s1526) +(trans s5358 s1507) +(trans s5358 s1520) +(trans s5358 s1533) +(trans s5359 s1514) +(trans s5359 s1527) +(trans s5359 s1540) +(trans s5360 s1521) +(trans s5360 s1534) +(trans s5360 s1547) +(trans s5361 s1528) +(trans s5361 s1541) +(trans s5361 s1554) +(trans s5362 s1535) +(trans s5362 s1548) +(trans s5362 s1561) +(trans s5363 s1542) +(trans s5363 s1555) +(trans s5363 s1568) +(trans s5364 s1549) +(trans s5364 s1562) +(trans s5364 s1575) +(trans s5365 s1556) +(trans s5365 s1569) +(trans s5365 s1582) +(trans s5366 s1563) +(trans s5366 s1576) +(trans s5366 s1589) +(trans s5367 s1570) +(trans s5367 s1583) +(trans s5367 s1596) +(trans s5368 s1577) +(trans s5368 s1590) +(trans s5368 s1603) +(trans s5369 s1584) +(trans s5369 s1597) +(trans s5369 s1610) +(trans s5370 s1591) +(trans s5370 s1604) +(trans s5370 s1617) +(trans s5371 s1598) +(trans s5371 s1611) +(trans s5371 s1624) +(trans s5372 s1605) +(trans s5372 s1618) +(trans s5372 s1631) +(trans s5373 s1612) +(trans s5373 s1625) +(trans s5373 s1638) +(trans s5374 s1619) +(trans s5374 s1632) +(trans s5374 s1645) +(trans s5375 s1626) +(trans s5375 s1639) +(trans s5375 s1652) +(trans s5376 s1633) +(trans s5376 s1646) +(trans s5376 s1659) +(trans s5377 s1640) +(trans s5377 s1653) +(trans s5377 s1666) +(trans s5378 s1647) +(trans s5378 s1660) +(trans s5378 s1673) +(trans s5379 s1654) +(trans s5379 s1667) +(trans s5379 s1680) +(trans s5380 s1661) +(trans s5380 s1674) +(trans s5380 s1687) +(trans s5381 s1668) +(trans s5381 s1681) +(trans s5381 s1694) +(trans s5382 s1675) +(trans s5382 s1688) +(trans s5382 s1701) +(trans s5383 s1682) +(trans s5383 s1695) +(trans s5383 s1708) +(trans s5384 s1689) +(trans s5384 s1702) +(trans s5384 s1715) +(trans s5385 s1696) +(trans s5385 s1709) +(trans s5385 s1722) +(trans s5386 s1703) +(trans s5386 s1716) +(trans s5386 s1729) +(trans s5387 s1710) +(trans s5387 s1723) +(trans s5387 s1736) +(trans s5388 s1717) +(trans s5388 s1730) +(trans s5388 s1743) +(trans s5389 s1724) +(trans s5389 s1737) +(trans s5389 s1750) +(trans s5390 s1731) +(trans s5390 s1744) +(trans s5390 s1757) +(trans s5391 s1738) +(trans s5391 s1751) +(trans s5391 s1764) +(trans s5392 s1745) +(trans s5392 s1758) +(trans s5392 s1771) +(trans s5393 s1752) +(trans s5393 s1765) +(trans s5393 s1778) +(trans s5394 s1759) +(trans s5394 s1772) +(trans s5394 s1785) +(trans s5395 s1766) +(trans s5395 s1779) +(trans s5395 s1792) +(trans s5396 s1773) +(trans s5396 s1786) +(trans s5396 s1799) +(trans s5397 s1780) +(trans s5397 s1793) +(trans s5397 s1806) +(trans s5398 s1787) +(trans s5398 s1800) +(trans s5398 s1813) +(trans s5399 s1794) +(trans s5399 s1807) +(trans s5399 s1820) +(trans s5400 s1801) +(trans s5400 s1814) +(trans s5400 s1827) +(trans s5401 s1808) +(trans s5401 s1821) +(trans s5401 s1834) +(trans s5402 s1815) +(trans s5402 s1828) +(trans s5402 s1841) +(trans s5403 s1822) +(trans s5403 s1835) +(trans s5403 s1848) +(trans s5404 s1829) +(trans s5404 s1842) +(trans s5404 s1855) +(trans s5405 s1836) +(trans s5405 s1849) +(trans s5405 s1862) +(trans s5406 s1843) +(trans s5406 s1856) +(trans s5406 s1869) +(trans s5407 s1850) +(trans s5407 s1863) +(trans s5407 s1876) +(trans s5408 s1857) +(trans s5408 s1870) +(trans s5408 s1883) +(trans s5409 s1864) +(trans s5409 s1877) +(trans s5409 s1890) +(trans s5410 s1871) +(trans s5410 s1884) +(trans s5410 s1897) +(trans s5411 s1878) +(trans s5411 s1891) +(trans s5411 s1904) +(trans s5412 s1885) +(trans s5412 s1898) +(trans s5412 s1911) +(trans s5413 s1892) +(trans s5413 s1905) +(trans s5413 s1918) +(trans s5414 s1899) +(trans s5414 s1912) +(trans s5414 s1925) +(trans s5415 s1906) +(trans s5415 s1919) +(trans s5415 s1932) +(trans s5416 s1913) +(trans s5416 s1926) +(trans s5416 s1939) +(trans s5417 s1920) +(trans s5417 s1933) +(trans s5417 s1946) +(trans s5418 s1927) +(trans s5418 s1940) +(trans s5418 s1953) +(trans s5419 s1934) +(trans s5419 s1947) +(trans s5419 s1960) +(trans s5420 s1941) +(trans s5420 s1954) +(trans s5420 s1967) +(trans s5421 s1948) +(trans s5421 s1961) +(trans s5421 s1974) +(trans s5422 s1955) +(trans s5422 s1968) +(trans s5422 s1981) +(trans s5423 s1962) +(trans s5423 s1975) +(trans s5423 s1988) +(trans s5424 s1969) +(trans s5424 s1982) +(trans s5424 s1995) +(trans s5425 s1976) +(trans s5425 s1989) +(trans s5425 s2002) +(trans s5426 s1983) +(trans s5426 s1996) +(trans s5426 s2009) +(trans s5427 s1990) +(trans s5427 s2003) +(trans s5427 s2016) +(trans s5428 s1997) +(trans s5428 s2010) +(trans s5428 s2023) +(trans s5429 s2004) +(trans s5429 s2017) +(trans s5429 s2030) +(trans s5430 s2011) +(trans s5430 s2024) +(trans s5430 s2037) +(trans s5431 s2018) +(trans s5431 s2031) +(trans s5431 s2044) +(trans s5432 s2025) +(trans s5432 s2038) +(trans s5432 s2051) +(trans s5433 s2032) +(trans s5433 s2045) +(trans s5433 s2058) +(trans s5434 s2039) +(trans s5434 s2052) +(trans s5434 s2065) +(trans s5435 s2046) +(trans s5435 s2059) +(trans s5435 s2072) +(trans s5436 s2053) +(trans s5436 s2066) +(trans s5436 s2079) +(trans s5437 s2060) +(trans s5437 s2073) +(trans s5437 s2086) +(trans s5438 s2067) +(trans s5438 s2080) +(trans s5438 s2093) +(trans s5439 s2074) +(trans s5439 s2087) +(trans s5439 s2100) +(trans s5440 s2081) +(trans s5440 s2094) +(trans s5440 s2107) +(trans s5441 s2088) +(trans s5441 s2101) +(trans s5441 s2114) +(trans s5442 s2095) +(trans s5442 s2108) +(trans s5442 s2121) +(trans s5443 s2102) +(trans s5443 s2115) +(trans s5443 s2128) +(trans s5444 s2109) +(trans s5444 s2122) +(trans s5444 s2135) +(trans s5445 s2116) +(trans s5445 s2129) +(trans s5445 s2142) +(trans s5446 s2123) +(trans s5446 s2136) +(trans s5446 s2149) +(trans s5447 s2130) +(trans s5447 s2143) +(trans s5447 s2156) +(trans s5448 s2137) +(trans s5448 s2150) +(trans s5448 s2163) +(trans s5449 s2144) +(trans s5449 s2157) +(trans s5449 s2170) +(trans s5450 s2151) +(trans s5450 s2164) +(trans s5450 s2177) +(trans s5451 s2158) +(trans s5451 s2171) +(trans s5451 s2184) +(trans s5452 s2165) +(trans s5452 s2178) +(trans s5452 s2191) +(trans s5453 s2172) +(trans s5453 s2185) +(trans s5453 s2198) +(trans s5454 s2179) +(trans s5454 s2192) +(trans s5454 s2205) +(trans s5455 s2186) +(trans s5455 s2199) +(trans s5455 s2212) +(trans s5456 s2193) +(trans s5456 s2206) +(trans s5456 s2219) +(trans s5457 s2200) +(trans s5457 s2213) +(trans s5457 s2226) +(trans s5458 s2207) +(trans s5458 s2220) +(trans s5458 s2233) +(trans s5459 s2214) +(trans s5459 s2227) +(trans s5459 s2240) +(trans s5460 s2221) +(trans s5460 s2234) +(trans s5460 s2247) +(trans s5461 s2228) +(trans s5461 s2241) +(trans s5461 s2254) +(trans s5462 s2235) +(trans s5462 s2248) +(trans s5462 s2261) +(trans s5463 s2242) +(trans s5463 s2255) +(trans s5463 s2268) +(trans s5464 s2249) +(trans s5464 s2262) +(trans s5464 s2275) +(trans s5465 s2256) +(trans s5465 s2269) +(trans s5465 s2282) +(trans s5466 s2263) +(trans s5466 s2276) +(trans s5466 s2289) +(trans s5467 s2270) +(trans s5467 s2283) +(trans s5467 s2296) +(trans s5468 s2277) +(trans s5468 s2290) +(trans s5468 s2303) +(trans s5469 s2284) +(trans s5469 s2297) +(trans s5469 s2310) +(trans s5470 s2291) +(trans s5470 s2304) +(trans s5470 s2317) +(trans s5471 s2298) +(trans s5471 s2311) +(trans s5471 s2324) +(trans s5472 s2305) +(trans s5472 s2318) +(trans s5472 s2331) +(trans s5473 s2312) +(trans s5473 s2325) +(trans s5473 s2338) +(trans s5474 s2319) +(trans s5474 s2332) +(trans s5474 s2345) +(trans s5475 s2326) +(trans s5475 s2339) +(trans s5475 s2352) +(trans s5476 s2333) +(trans s5476 s2346) +(trans s5476 s2359) +(trans s5477 s2340) +(trans s5477 s2353) +(trans s5477 s2366) +(trans s5478 s2347) +(trans s5478 s2360) +(trans s5478 s2373) +(trans s5479 s2354) +(trans s5479 s2367) +(trans s5479 s2380) +(trans s5480 s2361) +(trans s5480 s2374) +(trans s5480 s2387) +(trans s5481 s2368) +(trans s5481 s2381) +(trans s5481 s2394) +(trans s5482 s2375) +(trans s5482 s2388) +(trans s5482 s2401) +(trans s5483 s2382) +(trans s5483 s2395) +(trans s5483 s2408) +(trans s5484 s2389) +(trans s5484 s2402) +(trans s5484 s2415) +(trans s5485 s2396) +(trans s5485 s2409) +(trans s5485 s2422) +(trans s5486 s2403) +(trans s5486 s2416) +(trans s5486 s2429) +(trans s5487 s2410) +(trans s5487 s2423) +(trans s5487 s2436) +(trans s5488 s2417) +(trans s5488 s2430) +(trans s5488 s2443) +(trans s5489 s2424) +(trans s5489 s2437) +(trans s5489 s2450) +(trans s5490 s2431) +(trans s5490 s2444) +(trans s5490 s2457) +(trans s5491 s2438) +(trans s5491 s2451) +(trans s5491 s2464) +(trans s5492 s2445) +(trans s5492 s2458) +(trans s5492 s2471) +(trans s5493 s2452) +(trans s5493 s2465) +(trans s5493 s2478) +(trans s5494 s2459) +(trans s5494 s2472) +(trans s5494 s2485) +(trans s5495 s2466) +(trans s5495 s2479) +(trans s5495 s2492) +(trans s5496 s2473) +(trans s5496 s2486) +(trans s5496 s2499) +(trans s5497 s2480) +(trans s5497 s2493) +(trans s5497 s2506) +(trans s5498 s2487) +(trans s5498 s2500) +(trans s5498 s2513) +(trans s5499 s2494) +(trans s5499 s2507) +(trans s5499 s2520) +(trans s5500 s2501) +(trans s5500 s2514) +(trans s5500 s2527) +(trans s5501 s2508) +(trans s5501 s2521) +(trans s5501 s2534) +(trans s5502 s2515) +(trans s5502 s2528) +(trans s5502 s2541) +(trans s5503 s2522) +(trans s5503 s2535) +(trans s5503 s2548) +(trans s5504 s2529) +(trans s5504 s2542) +(trans s5504 s2555) +(trans s5505 s2536) +(trans s5505 s2549) +(trans s5505 s2562) +(trans s5506 s2543) +(trans s5506 s2556) +(trans s5506 s2569) +(trans s5507 s2550) +(trans s5507 s2563) +(trans s5507 s2576) +(trans s5508 s2557) +(trans s5508 s2570) +(trans s5508 s2583) +(trans s5509 s2564) +(trans s5509 s2577) +(trans s5509 s2590) +(trans s5510 s2571) +(trans s5510 s2584) +(trans s5510 s2597) +(trans s5511 s2578) +(trans s5511 s2591) +(trans s5511 s2604) +(trans s5512 s2585) +(trans s5512 s2598) +(trans s5512 s2611) +(trans s5513 s2592) +(trans s5513 s2605) +(trans s5513 s2618) +(trans s5514 s2599) +(trans s5514 s2612) +(trans s5514 s2625) +(trans s5515 s2606) +(trans s5515 s2619) +(trans s5515 s2632) +(trans s5516 s2613) +(trans s5516 s2626) +(trans s5516 s2639) +(trans s5517 s2620) +(trans s5517 s2633) +(trans s5517 s2646) +(trans s5518 s2627) +(trans s5518 s2640) +(trans s5518 s2653) +(trans s5519 s2634) +(trans s5519 s2647) +(trans s5519 s2660) +(trans s5520 s2641) +(trans s5520 s2654) +(trans s5520 s2667) +(trans s5521 s2648) +(trans s5521 s2661) +(trans s5521 s2674) +(trans s5522 s2655) +(trans s5522 s2668) +(trans s5522 s2681) +(trans s5523 s2662) +(trans s5523 s2675) +(trans s5523 s2688) +(trans s5524 s2669) +(trans s5524 s2682) +(trans s5524 s2695) +(trans s5525 s2676) +(trans s5525 s2689) +(trans s5525 s2702) +(trans s5526 s2683) +(trans s5526 s2696) +(trans s5526 s2709) +(trans s5527 s2690) +(trans s5527 s2703) +(trans s5527 s2716) +(trans s5528 s2697) +(trans s5528 s2710) +(trans s5528 s2723) +(trans s5529 s2704) +(trans s5529 s2717) +(trans s5529 s2730) +(trans s5530 s2711) +(trans s5530 s2724) +(trans s5530 s2737) +(trans s5531 s2718) +(trans s5531 s2731) +(trans s5531 s2744) +(trans s5532 s2725) +(trans s5532 s2738) +(trans s5532 s2751) +(trans s5533 s2732) +(trans s5533 s2745) +(trans s5533 s2758) +(trans s5534 s2739) +(trans s5534 s2752) +(trans s5534 s2765) +(trans s5535 s2746) +(trans s5535 s2759) +(trans s5535 s2772) +(trans s5536 s2753) +(trans s5536 s2766) +(trans s5536 s2779) +(trans s5537 s2760) +(trans s5537 s2773) +(trans s5537 s2786) +(trans s5538 s2767) +(trans s5538 s2780) +(trans s5538 s2793) +(trans s5539 s2774) +(trans s5539 s2787) +(trans s5539 s2800) +(trans s5540 s2781) +(trans s5540 s2794) +(trans s5540 s2807) +(trans s5541 s2788) +(trans s5541 s2801) +(trans s5541 s2814) +(trans s5542 s2795) +(trans s5542 s2808) +(trans s5542 s2821) +(trans s5543 s2802) +(trans s5543 s2815) +(trans s5543 s2828) +(trans s5544 s2809) +(trans s5544 s2822) +(trans s5544 s2835) +(trans s5545 s2816) +(trans s5545 s2829) +(trans s5545 s2842) +(trans s5546 s2823) +(trans s5546 s2836) +(trans s5546 s2849) +(trans s5547 s2830) +(trans s5547 s2843) +(trans s5547 s2856) +(trans s5548 s2837) +(trans s5548 s2850) +(trans s5548 s2863) +(trans s5549 s2844) +(trans s5549 s2857) +(trans s5549 s2870) +(trans s5550 s2851) +(trans s5550 s2864) +(trans s5550 s2877) +(trans s5551 s2858) +(trans s5551 s2871) +(trans s5551 s2884) +(trans s5552 s2865) +(trans s5552 s2878) +(trans s5552 s2891) +(trans s5553 s2872) +(trans s5553 s2885) +(trans s5553 s2898) +(trans s5554 s2879) +(trans s5554 s2892) +(trans s5554 s2905) +(trans s5555 s2886) +(trans s5555 s2899) +(trans s5555 s2912) +(trans s5556 s2893) +(trans s5556 s2906) +(trans s5556 s2919) +(trans s5557 s2900) +(trans s5557 s2913) +(trans s5557 s2926) +(trans s5558 s2907) +(trans s5558 s2920) +(trans s5558 s2933) +(trans s5559 s2914) +(trans s5559 s2927) +(trans s5559 s2940) +(trans s5560 s2921) +(trans s5560 s2934) +(trans s5560 s2947) +(trans s5561 s2928) +(trans s5561 s2941) +(trans s5561 s2954) +(trans s5562 s2935) +(trans s5562 s2948) +(trans s5562 s2961) +(trans s5563 s2942) +(trans s5563 s2955) +(trans s5563 s2968) +(trans s5564 s2949) +(trans s5564 s2962) +(trans s5564 s2975) +(trans s5565 s2956) +(trans s5565 s2969) +(trans s5565 s2982) +(trans s5566 s2963) +(trans s5566 s2976) +(trans s5566 s2989) +(trans s5567 s2970) +(trans s5567 s2983) +(trans s5567 s2996) +(trans s5568 s2977) +(trans s5568 s2990) +(trans s5568 s3003) +(trans s5569 s2984) +(trans s5569 s2997) +(trans s5569 s3010) +(trans s5570 s2991) +(trans s5570 s3004) +(trans s5570 s3017) +(trans s5571 s2998) +(trans s5571 s3011) +(trans s5571 s3024) +(trans s5572 s3005) +(trans s5572 s3018) +(trans s5572 s3031) +(trans s5573 s3012) +(trans s5573 s3025) +(trans s5573 s3038) +(trans s5574 s3019) +(trans s5574 s3032) +(trans s5574 s3045) +(trans s5575 s3026) +(trans s5575 s3039) +(trans s5575 s3052) +(trans s5576 s3033) +(trans s5576 s3046) +(trans s5576 s3059) +(trans s5577 s3040) +(trans s5577 s3053) +(trans s5577 s3066) +(trans s5578 s3047) +(trans s5578 s3060) +(trans s5578 s3073) +(trans s5579 s3054) +(trans s5579 s3067) +(trans s5579 s3080) +(trans s5580 s3061) +(trans s5580 s3074) +(trans s5580 s3087) +(trans s5581 s3068) +(trans s5581 s3081) +(trans s5581 s3094) +(trans s5582 s3075) +(trans s5582 s3088) +(trans s5582 s3101) +(trans s5583 s3082) +(trans s5583 s3095) +(trans s5583 s3108) +(trans s5584 s3089) +(trans s5584 s3102) +(trans s5584 s3115) +(trans s5585 s3096) +(trans s5585 s3109) +(trans s5585 s3122) +(trans s5586 s3103) +(trans s5586 s3116) +(trans s5586 s3129) +(trans s5587 s3110) +(trans s5587 s3123) +(trans s5587 s3136) +(trans s5588 s3117) +(trans s5588 s3130) +(trans s5588 s3143) +(trans s5589 s3124) +(trans s5589 s3137) +(trans s5589 s3150) +(trans s5590 s3131) +(trans s5590 s3144) +(trans s5590 s3157) +(trans s5591 s3138) +(trans s5591 s3151) +(trans s5591 s3164) +(trans s5592 s3145) +(trans s5592 s3158) +(trans s5592 s3171) +(trans s5593 s3152) +(trans s5593 s3165) +(trans s5593 s3178) +(trans s5594 s3159) +(trans s5594 s3172) +(trans s5594 s3185) +(trans s5595 s3166) +(trans s5595 s3179) +(trans s5595 s3192) +(trans s5596 s3173) +(trans s5596 s3186) +(trans s5596 s3199) +(trans s5597 s3180) +(trans s5597 s3193) +(trans s5597 s3206) +(trans s5598 s3187) +(trans s5598 s3200) +(trans s5598 s3213) +(trans s5599 s3194) +(trans s5599 s3207) +(trans s5599 s3220) +(trans s5600 s3201) +(trans s5600 s3214) +(trans s5600 s3227) +(trans s5601 s3208) +(trans s5601 s3221) +(trans s5601 s3234) +(trans s5602 s3215) +(trans s5602 s3228) +(trans s5602 s3241) +(trans s5603 s3222) +(trans s5603 s3235) +(trans s5603 s3248) +(trans s5604 s3229) +(trans s5604 s3242) +(trans s5604 s3255) +(trans s5605 s3236) +(trans s5605 s3249) +(trans s5605 s3262) +(trans s5606 s3243) +(trans s5606 s3256) +(trans s5606 s3269) +(trans s5607 s3250) +(trans s5607 s3263) +(trans s5607 s3276) +(trans s5608 s3257) +(trans s5608 s3270) +(trans s5608 s3283) +(trans s5609 s3264) +(trans s5609 s3277) +(trans s5609 s3290) +(trans s5610 s3271) +(trans s5610 s3284) +(trans s5610 s3297) +(trans s5611 s3278) +(trans s5611 s3291) +(trans s5611 s3304) +(trans s5612 s3285) +(trans s5612 s3298) +(trans s5612 s3311) +(trans s5613 s3292) +(trans s5613 s3305) +(trans s5613 s3318) +(trans s5614 s3299) +(trans s5614 s3312) +(trans s5614 s3325) +(trans s5615 s3306) +(trans s5615 s3319) +(trans s5615 s3332) +(trans s5616 s3313) +(trans s5616 s3326) +(trans s5616 s3339) +(trans s5617 s3320) +(trans s5617 s3333) +(trans s5617 s3346) +(trans s5618 s3327) +(trans s5618 s3340) +(trans s5618 s3353) +(trans s5619 s3334) +(trans s5619 s3347) +(trans s5619 s3360) +(trans s5620 s3341) +(trans s5620 s3354) +(trans s5620 s3367) +(trans s5621 s3348) +(trans s5621 s3361) +(trans s5621 s3374) +(trans s5622 s3355) +(trans s5622 s3368) +(trans s5622 s3381) +(trans s5623 s3362) +(trans s5623 s3375) +(trans s5623 s3388) +(trans s5624 s3369) +(trans s5624 s3382) +(trans s5624 s3395) +(trans s5625 s3376) +(trans s5625 s3389) +(trans s5625 s3402) +(trans s5626 s3383) +(trans s5626 s3396) +(trans s5626 s3409) +(trans s5627 s3390) +(trans s5627 s3403) +(trans s5627 s3416) +(trans s5628 s3397) +(trans s5628 s3410) +(trans s5628 s3423) +(trans s5629 s3404) +(trans s5629 s3417) +(trans s5629 s3430) +(trans s5630 s3411) +(trans s5630 s3424) +(trans s5630 s3437) +(trans s5631 s3418) +(trans s5631 s3431) +(trans s5631 s3444) +(trans s5632 s3425) +(trans s5632 s3438) +(trans s5632 s3451) +(trans s5633 s3432) +(trans s5633 s3445) +(trans s5633 s3458) +(trans s5634 s3439) +(trans s5634 s3452) +(trans s5634 s3465) +(trans s5635 s3446) +(trans s5635 s3459) +(trans s5635 s3472) +(trans s5636 s3453) +(trans s5636 s3466) +(trans s5636 s3479) +(trans s5637 s3460) +(trans s5637 s3473) +(trans s5637 s3486) +(trans s5638 s3467) +(trans s5638 s3480) +(trans s5638 s3493) +(trans s5639 s3474) +(trans s5639 s3487) +(trans s5639 s3500) +(trans s5640 s3481) +(trans s5640 s3494) +(trans s5640 s3507) +(trans s5641 s3488) +(trans s5641 s3501) +(trans s5641 s3514) +(trans s5642 s3495) +(trans s5642 s3508) +(trans s5642 s3521) +(trans s5643 s3502) +(trans s5643 s3515) +(trans s5643 s3528) +(trans s5644 s3509) +(trans s5644 s3522) +(trans s5644 s3535) +(trans s5645 s3516) +(trans s5645 s3529) +(trans s5645 s3542) +(trans s5646 s3523) +(trans s5646 s3536) +(trans s5646 s3549) +(trans s5647 s3530) +(trans s5647 s3543) +(trans s5647 s3556) +(trans s5648 s3537) +(trans s5648 s3550) +(trans s5648 s3563) +(trans s5649 s3544) +(trans s5649 s3557) +(trans s5649 s3570) +(trans s5650 s3551) +(trans s5650 s3564) +(trans s5650 s3577) +(trans s5651 s3558) +(trans s5651 s3571) +(trans s5651 s3584) +(trans s5652 s3565) +(trans s5652 s3578) +(trans s5652 s3591) +(trans s5653 s3572) +(trans s5653 s3585) +(trans s5653 s3598) +(trans s5654 s3579) +(trans s5654 s3592) +(trans s5654 s3605) +(trans s5655 s3586) +(trans s5655 s3599) +(trans s5655 s3612) +(trans s5656 s3593) +(trans s5656 s3606) +(trans s5656 s3619) +(trans s5657 s3600) +(trans s5657 s3613) +(trans s5657 s3626) +(trans s5658 s3607) +(trans s5658 s3620) +(trans s5658 s3633) +(trans s5659 s3614) +(trans s5659 s3627) +(trans s5659 s3640) +(trans s5660 s3621) +(trans s5660 s3634) +(trans s5660 s3647) +(trans s5661 s3628) +(trans s5661 s3641) +(trans s5661 s3654) +(trans s5662 s3635) +(trans s5662 s3648) +(trans s5662 s3661) +(trans s5663 s3642) +(trans s5663 s3655) +(trans s5663 s3668) +(trans s5664 s3649) +(trans s5664 s3662) +(trans s5664 s3675) +(trans s5665 s3656) +(trans s5665 s3669) +(trans s5665 s3682) +(trans s5666 s3663) +(trans s5666 s3676) +(trans s5666 s3689) +(trans s5667 s3670) +(trans s5667 s3683) +(trans s5667 s3696) +(trans s5668 s3677) +(trans s5668 s3690) +(trans s5668 s3703) +(trans s5669 s3684) +(trans s5669 s3697) +(trans s5669 s3710) +(trans s5670 s3691) +(trans s5670 s3704) +(trans s5670 s3717) +(trans s5671 s3698) +(trans s5671 s3711) +(trans s5671 s3724) +(trans s5672 s3705) +(trans s5672 s3718) +(trans s5672 s3731) +(trans s5673 s3712) +(trans s5673 s3725) +(trans s5673 s3738) +(trans s5674 s3719) +(trans s5674 s3732) +(trans s5674 s3745) +(trans s5675 s3726) +(trans s5675 s3739) +(trans s5675 s3752) +(trans s5676 s3733) +(trans s5676 s3746) +(trans s5676 s3759) +(trans s5677 s3740) +(trans s5677 s3753) +(trans s5677 s3766) +(trans s5678 s3747) +(trans s5678 s3760) +(trans s5678 s3773) +(trans s5679 s3754) +(trans s5679 s3767) +(trans s5679 s3780) +(trans s5680 s3761) +(trans s5680 s3774) +(trans s5680 s3787) +(trans s5681 s3768) +(trans s5681 s3781) +(trans s5681 s3794) +(trans s5682 s3775) +(trans s5682 s3788) +(trans s5682 s3801) +(trans s5683 s3782) +(trans s5683 s3795) +(trans s5683 s3808) +(trans s5684 s3789) +(trans s5684 s3802) +(trans s5684 s3815) +(trans s5685 s3796) +(trans s5685 s3809) +(trans s5685 s3822) +(trans s5686 s3803) +(trans s5686 s3816) +(trans s5686 s3829) +(trans s5687 s3810) +(trans s5687 s3823) +(trans s5687 s3836) +(trans s5688 s3817) +(trans s5688 s3830) +(trans s5688 s3843) +(trans s5689 s3824) +(trans s5689 s3837) +(trans s5689 s3850) +(trans s5690 s3831) +(trans s5690 s3844) +(trans s5690 s3857) +(trans s5691 s3838) +(trans s5691 s3851) +(trans s5691 s3864) +(trans s5692 s3845) +(trans s5692 s3858) +(trans s5692 s3871) +(trans s5693 s3852) +(trans s5693 s3865) +(trans s5693 s3878) +(trans s5694 s3859) +(trans s5694 s3872) +(trans s5694 s3885) +(trans s5695 s3866) +(trans s5695 s3879) +(trans s5695 s3892) +(trans s5696 s3873) +(trans s5696 s3886) +(trans s5696 s3899) +(trans s5697 s3880) +(trans s5697 s3893) +(trans s5697 s3906) +(trans s5698 s3887) +(trans s5698 s3900) +(trans s5698 s3913) +(trans s5699 s3894) +(trans s5699 s3907) +(trans s5699 s3920) +(trans s5700 s3901) +(trans s5700 s3914) +(trans s5700 s3927) +(trans s5701 s3908) +(trans s5701 s3921) +(trans s5701 s3934) +(trans s5702 s3915) +(trans s5702 s3928) +(trans s5702 s3941) +(trans s5703 s3922) +(trans s5703 s3935) +(trans s5703 s3948) +(trans s5704 s3929) +(trans s5704 s3942) +(trans s5704 s3955) +(trans s5705 s3936) +(trans s5705 s3949) +(trans s5705 s3962) +(trans s5706 s3943) +(trans s5706 s3956) +(trans s5706 s3969) +(trans s5707 s3950) +(trans s5707 s3963) +(trans s5707 s3976) +(trans s5708 s3957) +(trans s5708 s3970) +(trans s5708 s3983) +(trans s5709 s3964) +(trans s5709 s3977) +(trans s5709 s3990) +(trans s5710 s3971) +(trans s5710 s3984) +(trans s5710 s3997) +(trans s5711 s3978) +(trans s5711 s3991) +(trans s5711 s4004) +(trans s5712 s3985) +(trans s5712 s3998) +(trans s5712 s4011) +(trans s5713 s3992) +(trans s5713 s4005) +(trans s5713 s4018) +(trans s5714 s3999) +(trans s5714 s4012) +(trans s5714 s4025) +(trans s5715 s4006) +(trans s5715 s4019) +(trans s5715 s4032) +(trans s5716 s4013) +(trans s5716 s4026) +(trans s5716 s4039) +(trans s5717 s4020) +(trans s5717 s4033) +(trans s5717 s4046) +(trans s5718 s4027) +(trans s5718 s4040) +(trans s5718 s4053) +(trans s5719 s4034) +(trans s5719 s4047) +(trans s5719 s4060) +(trans s5720 s4041) +(trans s5720 s4054) +(trans s5720 s4067) +(trans s5721 s4048) +(trans s5721 s4061) +(trans s5721 s4074) +(trans s5722 s4055) +(trans s5722 s4068) +(trans s5722 s4081) +(trans s5723 s4062) +(trans s5723 s4075) +(trans s5723 s4088) +(trans s5724 s4069) +(trans s5724 s4082) +(trans s5724 s4095) +(trans s5725 s4076) +(trans s5725 s4089) +(trans s5725 s4102) +(trans s5726 s4083) +(trans s5726 s4096) +(trans s5726 s4109) +(trans s5727 s4090) +(trans s5727 s4103) +(trans s5727 s4116) +(trans s5728 s4097) +(trans s5728 s4110) +(trans s5728 s4123) +(trans s5729 s4104) +(trans s5729 s4117) +(trans s5729 s4130) +(trans s5730 s4111) +(trans s5730 s4124) +(trans s5730 s4137) +(trans s5731 s4118) +(trans s5731 s4131) +(trans s5731 s4144) +(trans s5732 s4125) +(trans s5732 s4138) +(trans s5732 s4151) +(trans s5733 s4132) +(trans s5733 s4145) +(trans s5733 s4158) +(trans s5734 s4139) +(trans s5734 s4152) +(trans s5734 s4165) +(trans s5735 s4146) +(trans s5735 s4159) +(trans s5735 s4172) +(trans s5736 s4153) +(trans s5736 s4166) +(trans s5736 s4179) +(trans s5737 s4160) +(trans s5737 s4173) +(trans s5737 s4186) +(trans s5738 s4167) +(trans s5738 s4180) +(trans s5738 s4193) +(trans s5739 s4174) +(trans s5739 s4187) +(trans s5739 s4200) +(trans s5740 s4181) +(trans s5740 s4194) +(trans s5740 s4207) +(trans s5741 s4188) +(trans s5741 s4201) +(trans s5741 s4214) +(trans s5742 s4195) +(trans s5742 s4208) +(trans s5742 s4221) +(trans s5743 s4202) +(trans s5743 s4215) +(trans s5743 s4228) +(trans s5744 s4209) +(trans s5744 s4222) +(trans s5744 s4235) +(trans s5745 s4216) +(trans s5745 s4229) +(trans s5745 s4242) +(trans s5746 s4223) +(trans s5746 s4236) +(trans s5746 s4249) +(trans s5747 s4230) +(trans s5747 s4243) +(trans s5747 s4256) +(trans s5748 s4237) +(trans s5748 s4250) +(trans s5748 s4263) +(trans s5749 s4244) +(trans s5749 s4257) +(trans s5749 s4270) +(trans s5750 s4251) +(trans s5750 s4264) +(trans s5750 s4277) +(trans s5751 s4258) +(trans s5751 s4271) +(trans s5751 s4284) +(trans s5752 s4265) +(trans s5752 s4278) +(trans s5752 s4291) +(trans s5753 s4272) +(trans s5753 s4285) +(trans s5753 s4298) +(trans s5754 s4279) +(trans s5754 s4292) +(trans s5754 s4305) +(trans s5755 s4286) +(trans s5755 s4299) +(trans s5755 s4312) +(trans s5756 s4293) +(trans s5756 s4306) +(trans s5756 s4319) +(trans s5757 s4300) +(trans s5757 s4313) +(trans s5757 s4326) +(trans s5758 s4307) +(trans s5758 s4320) +(trans s5758 s4333) +(trans s5759 s4314) +(trans s5759 s4327) +(trans s5759 s4340) +(trans s5760 s4321) +(trans s5760 s4334) +(trans s5760 s4347) +(trans s5761 s4328) +(trans s5761 s4341) +(trans s5761 s4354) +(trans s5762 s4335) +(trans s5762 s4348) +(trans s5762 s4361) +(trans s5763 s4342) +(trans s5763 s4355) +(trans s5763 s4368) +(trans s5764 s4349) +(trans s5764 s4362) +(trans s5764 s4375) +(trans s5765 s4356) +(trans s5765 s4369) +(trans s5765 s4382) +(trans s5766 s4363) +(trans s5766 s4376) +(trans s5766 s4389) +(trans s5767 s4370) +(trans s5767 s4383) +(trans s5767 s4396) +(trans s5768 s4377) +(trans s5768 s4390) +(trans s5768 s4403) +(trans s5769 s4384) +(trans s5769 s4397) +(trans s5769 s4410) +(trans s5770 s4391) +(trans s5770 s4404) +(trans s5770 s4417) +(trans s5771 s4398) +(trans s5771 s4411) +(trans s5771 s4424) +(trans s5772 s4405) +(trans s5772 s4418) +(trans s5772 s4431) +(trans s5773 s4412) +(trans s5773 s4425) +(trans s5773 s4438) +(trans s5774 s4419) +(trans s5774 s4432) +(trans s5774 s4445) +(trans s5775 s4426) +(trans s5775 s4439) +(trans s5775 s4452) +(trans s5776 s4433) +(trans s5776 s4446) +(trans s5776 s4459) +(trans s5777 s4440) +(trans s5777 s4453) +(trans s5777 s4466) +(trans s5778 s4447) +(trans s5778 s4460) +(trans s5778 s4473) +(trans s5779 s4454) +(trans s5779 s4467) +(trans s5779 s4480) +(trans s5780 s4461) +(trans s5780 s4474) +(trans s5780 s4487) +(trans s5781 s4468) +(trans s5781 s4481) +(trans s5781 s4494) +(trans s5782 s4475) +(trans s5782 s4488) +(trans s5782 s4501) +(trans s5783 s4482) +(trans s5783 s4495) +(trans s5783 s4508) +(trans s5784 s4489) +(trans s5784 s4502) +(trans s5784 s4515) +(trans s5785 s4496) +(trans s5785 s4509) +(trans s5785 s4522) +(trans s5786 s4503) +(trans s5786 s4516) +(trans s5786 s4529) +(trans s5787 s4510) +(trans s5787 s4523) +(trans s5787 s4536) +(trans s5788 s4517) +(trans s5788 s4530) +(trans s5788 s4543) +(trans s5789 s4524) +(trans s5789 s4537) +(trans s5789 s4550) +(trans s5790 s4531) +(trans s5790 s4544) +(trans s5790 s4557) +(trans s5791 s4538) +(trans s5791 s4551) +(trans s5791 s4564) +(trans s5792 s4545) +(trans s5792 s4558) +(trans s5792 s4571) +(trans s5793 s4552) +(trans s5793 s4565) +(trans s5793 s4578) +(trans s5794 s4559) +(trans s5794 s4572) +(trans s5794 s4585) +(trans s5795 s4566) +(trans s5795 s4579) +(trans s5795 s4592) +(trans s5796 s4573) +(trans s5796 s4586) +(trans s5796 s4599) +(trans s5797 s4580) +(trans s5797 s4593) +(trans s5797 s4606) +(trans s5798 s4587) +(trans s5798 s4600) +(trans s5798 s4613) +(trans s5799 s4594) +(trans s5799 s4607) +(trans s5799 s4620) +(trans s5800 s4601) +(trans s5800 s4614) +(trans s5800 s4627) +(trans s5801 s4608) +(trans s5801 s4621) +(trans s5801 s4634) +(trans s5802 s4615) +(trans s5802 s4628) +(trans s5802 s4641) +(trans s5803 s4622) +(trans s5803 s4635) +(trans s5803 s4648) +(trans s5804 s4629) +(trans s5804 s4642) +(trans s5804 s4655) +(trans s5805 s4636) +(trans s5805 s4649) +(trans s5805 s4662) +(trans s5806 s4643) +(trans s5806 s4656) +(trans s5806 s4669) +(trans s5807 s4650) +(trans s5807 s4663) +(trans s5807 s4676) +(trans s5808 s4657) +(trans s5808 s4670) +(trans s5808 s4683) +(trans s5809 s4664) +(trans s5809 s4677) +(trans s5809 s4690) +(trans s5810 s4671) +(trans s5810 s4684) +(trans s5810 s4697) +(trans s5811 s4678) +(trans s5811 s4691) +(trans s5811 s4704) +(trans s5812 s4685) +(trans s5812 s4698) +(trans s5812 s4711) +(trans s5813 s4692) +(trans s5813 s4705) +(trans s5813 s4718) +(trans s5814 s4699) +(trans s5814 s4712) +(trans s5814 s4725) +(trans s5815 s4706) +(trans s5815 s4719) +(trans s5815 s4732) +(trans s5816 s4713) +(trans s5816 s4726) +(trans s5816 s4739) +(trans s5817 s4720) +(trans s5817 s4733) +(trans s5817 s4746) +(trans s5818 s4727) +(trans s5818 s4740) +(trans s5818 s4753) +(trans s5819 s4734) +(trans s5819 s4747) +(trans s5819 s4760) +(trans s5820 s4741) +(trans s5820 s4754) +(trans s5820 s4767) +(trans s5821 s4748) +(trans s5821 s4761) +(trans s5821 s4774) +(trans s5822 s4755) +(trans s5822 s4768) +(trans s5822 s4781) +(trans s5823 s4762) +(trans s5823 s4775) +(trans s5823 s4788) +(trans s5824 s4769) +(trans s5824 s4782) +(trans s5824 s4795) +(trans s5825 s4776) +(trans s5825 s4789) +(trans s5825 s4802) +(trans s5826 s4783) +(trans s5826 s4796) +(trans s5826 s4809) +(trans s5827 s4790) +(trans s5827 s4803) +(trans s5827 s4816) +(trans s5828 s4797) +(trans s5828 s4810) +(trans s5828 s4823) +(trans s5829 s4804) +(trans s5829 s4817) +(trans s5829 s4830) +(trans s5830 s4811) +(trans s5830 s4824) +(trans s5830 s4837) +(trans s5831 s4818) +(trans s5831 s4831) +(trans s5831 s4844) +(trans s5832 s4825) +(trans s5832 s4838) +(trans s5832 s4851) +(trans s5833 s4832) +(trans s5833 s4845) +(trans s5833 s4858) +(trans s5834 s4839) +(trans s5834 s4852) +(trans s5834 s4865) +(trans s5835 s4846) +(trans s5835 s4859) +(trans s5835 s4872) +(trans s5836 s4853) +(trans s5836 s4866) +(trans s5836 s4879) +(trans s5837 s4860) +(trans s5837 s4873) +(trans s5837 s4886) +(trans s5838 s4867) +(trans s5838 s4880) +(trans s5838 s4893) +(trans s5839 s4874) +(trans s5839 s4887) +(trans s5839 s4900) +(trans s5840 s4881) +(trans s5840 s4894) +(trans s5840 s4907) +(trans s5841 s4888) +(trans s5841 s4901) +(trans s5841 s4914) +(trans s5842 s4895) +(trans s5842 s4908) +(trans s5842 s4921) +(trans s5843 s4902) +(trans s5843 s4915) +(trans s5843 s4928) +(trans s5844 s4909) +(trans s5844 s4922) +(trans s5844 s4935) +(trans s5845 s4916) +(trans s5845 s4929) +(trans s5845 s4942) +(trans s5846 s4923) +(trans s5846 s4936) +(trans s5846 s4949) +(trans s5847 s4930) +(trans s5847 s4943) +(trans s5847 s4956) +(trans s5848 s4937) +(trans s5848 s4950) +(trans s5848 s4963) +(trans s5849 s4944) +(trans s5849 s4957) +(trans s5849 s4970) +(trans s5850 s4951) +(trans s5850 s4964) +(trans s5850 s4977) +(trans s5851 s4958) +(trans s5851 s4971) +(trans s5851 s4984) +(trans s5852 s4965) +(trans s5852 s4978) +(trans s5852 s4991) +(trans s5853 s4972) +(trans s5853 s4985) +(trans s5853 s4998) +(trans s5854 s4979) +(trans s5854 s4992) +(trans s5854 s5005) +(trans s5855 s4986) +(trans s5855 s4999) +(trans s5855 s5012) +(trans s5856 s4993) +(trans s5856 s5006) +(trans s5856 s5019) +(trans s5857 s5000) +(trans s5857 s5013) +(trans s5857 s5026) +(trans s5858 s5007) +(trans s5858 s5020) +(trans s5858 s5033) +(trans s5859 s5014) +(trans s5859 s5027) +(trans s5859 s5040) +(trans s5860 s5021) +(trans s5860 s5034) +(trans s5860 s5047) +(trans s5861 s5028) +(trans s5861 s5041) +(trans s5861 s5054) +(trans s5862 s5035) +(trans s5862 s5048) +(trans s5862 s5061) +(trans s5863 s5042) +(trans s5863 s5055) +(trans s5863 s5068) +(trans s5864 s5049) +(trans s5864 s5062) +(trans s5864 s5075) +(trans s5865 s5056) +(trans s5865 s5069) +(trans s5865 s5082) +(trans s5866 s5063) +(trans s5866 s5076) +(trans s5866 s5089) +(trans s5867 s5070) +(trans s5867 s5083) +(trans s5867 s5096) +(trans s5868 s5077) +(trans s5868 s5090) +(trans s5868 s5103) +(trans s5869 s5084) +(trans s5869 s5097) +(trans s5869 s5110) +(trans s5870 s5091) +(trans s5870 s5104) +(trans s5870 s5117) +(trans s5871 s5098) +(trans s5871 s5111) +(trans s5871 s5124) +(trans s5872 s5105) +(trans s5872 s5118) +(trans s5872 s5131) +(trans s5873 s5112) +(trans s5873 s5125) +(trans s5873 s5138) +(trans s5874 s5119) +(trans s5874 s5132) +(trans s5874 s5145) +(trans s5875 s5126) +(trans s5875 s5139) +(trans s5875 s5152) +(trans s5876 s5133) +(trans s5876 s5146) +(trans s5876 s5159) +(trans s5877 s5140) +(trans s5877 s5153) +(trans s5877 s5166) +(trans s5878 s5147) +(trans s5878 s5160) +(trans s5878 s5173) +(trans s5879 s5154) +(trans s5879 s5167) +(trans s5879 s5180) +(trans s5880 s5161) +(trans s5880 s5174) +(trans s5880 s5187) +(trans s5881 s5168) +(trans s5881 s5181) +(trans s5881 s5194) +(trans s5882 s5175) +(trans s5882 s5188) +(trans s5882 s5201) +(trans s5883 s5182) +(trans s5883 s5195) +(trans s5883 s5208) +(trans s5884 s5189) +(trans s5884 s5202) +(trans s5884 s5215) +(trans s5885 s5196) +(trans s5885 s5209) +(trans s5885 s5222) +(trans s5886 s5203) +(trans s5886 s5216) +(trans s5886 s5229) +(trans s5887 s5210) +(trans s5887 s5223) +(trans s5887 s5236) +(trans s5888 s5217) +(trans s5888 s5230) +(trans s5888 s5243) +(trans s5889 s5224) +(trans s5889 s5237) +(trans s5889 s5250) +(trans s5890 s5231) +(trans s5890 s5244) +(trans s5890 s5257) +(trans s5891 s5238) +(trans s5891 s5251) +(trans s5891 s5264) +(trans s5892 s5245) +(trans s5892 s5258) +(trans s5892 s5271) +(trans s5893 s5252) +(trans s5893 s5265) +(trans s5893 s5278) +(trans s5894 s5259) +(trans s5894 s5272) +(trans s5894 s5285) +(trans s5895 s5266) +(trans s5895 s5279) +(trans s5895 s5292) +(trans s5896 s5273) +(trans s5896 s5286) +(trans s5896 s5299) +(trans s5897 s5280) +(trans s5897 s5293) +(trans s5897 s5306) +(trans s5898 s5287) +(trans s5898 s5300) +(trans s5898 s5313) +(trans s5899 s5294) +(trans s5899 s5307) +(trans s5899 s5320) +(trans s5900 s5301) +(trans s5900 s5314) +(trans s5900 s5327) +(trans s5901 s5308) +(trans s5901 s5321) +(trans s5901 s5334) +(trans s5902 s5315) +(trans s5902 s5328) +(trans s5902 s5341) +(trans s5903 s5322) +(trans s5903 s5335) +(trans s5903 s5348) +(trans s5904 s5329) +(trans s5904 s5342) +(trans s5904 s5355) +(trans s5905 s5336) +(trans s5905 s5349) +(trans s5905 s5362) +(trans s5906 s5343) +(trans s5906 s5356) +(trans s5906 s5369) +(trans s5907 s5350) +(trans s5907 s5363) +(trans s5907 s5376) +(trans s5908 s5357) +(trans s5908 s5370) +(trans s5908 s5383) +(trans s5909 s5364) +(trans s5909 s5377) +(trans s5909 s5390) +(trans s5910 s5371) +(trans s5910 s5384) +(trans s5910 s5397) +(trans s5911 s5378) +(trans s5911 s5391) +(trans s5911 s5404) +(trans s5912 s5385) +(trans s5912 s5398) +(trans s5912 s5411) +(trans s5913 s5392) +(trans s5913 s5405) +(trans s5913 s5418) +(trans s5914 s5399) +(trans s5914 s5412) +(trans s5914 s5425) +(trans s5915 s5406) +(trans s5915 s5419) +(trans s5915 s5432) +(trans s5916 s5413) +(trans s5916 s5426) +(trans s5916 s5439) +(trans s5917 s5420) +(trans s5917 s5433) +(trans s5917 s5446) +(trans s5918 s5427) +(trans s5918 s5440) +(trans s5918 s5453) +(trans s5919 s5434) +(trans s5919 s5447) +(trans s5919 s5460) +(trans s5920 s5441) +(trans s5920 s5454) +(trans s5920 s5467) +(trans s5921 s5448) +(trans s5921 s5461) +(trans s5921 s5474) +(trans s5922 s5455) +(trans s5922 s5468) +(trans s5922 s5481) +(trans s5923 s5462) +(trans s5923 s5475) +(trans s5923 s5488) +(trans s5924 s5469) +(trans s5924 s5482) +(trans s5924 s5495) +(trans s5925 s5476) +(trans s5925 s5489) +(trans s5925 s5502) +(trans s5926 s5483) +(trans s5926 s5496) +(trans s5926 s5509) +(trans s5927 s5490) +(trans s5927 s5503) +(trans s5927 s5516) +(trans s5928 s5497) +(trans s5928 s5510) +(trans s5928 s5523) +(trans s5929 s5504) +(trans s5929 s5517) +(trans s5929 s5530) +(trans s5930 s5511) +(trans s5930 s5524) +(trans s5930 s5537) +(trans s5931 s5518) +(trans s5931 s5531) +(trans s5931 s5544) +(trans s5932 s5525) +(trans s5932 s5538) +(trans s5932 s5551) +(trans s5933 s5532) +(trans s5933 s5545) +(trans s5933 s5558) +(trans s5934 s5539) +(trans s5934 s5552) +(trans s5934 s5565) +(trans s5935 s5546) +(trans s5935 s5559) +(trans s5935 s5572) +(trans s5936 s5553) +(trans s5936 s5566) +(trans s5936 s5579) +(trans s5937 s5560) +(trans s5937 s5573) +(trans s5937 s5586) +(trans s5938 s5567) +(trans s5938 s5580) +(trans s5938 s5593) +(trans s5939 s5574) +(trans s5939 s5587) +(trans s5939 s5600) +(trans s5940 s5581) +(trans s5940 s5594) +(trans s5940 s5607) +(trans s5941 s5588) +(trans s5941 s5601) +(trans s5941 s5614) +(trans s5942 s5595) +(trans s5942 s5608) +(trans s5942 s5621) +(trans s5943 s5602) +(trans s5943 s5615) +(trans s5943 s5628) +(trans s5944 s5609) +(trans s5944 s5622) +(trans s5944 s5635) +(trans s5945 s5616) +(trans s5945 s5629) +(trans s5945 s5642) +(trans s5946 s5623) +(trans s5946 s5636) +(trans s5946 s5649) +(trans s5947 s5630) +(trans s5947 s5643) +(trans s5947 s5656) +(trans s5948 s5637) +(trans s5948 s5650) +(trans s5948 s5663) +(trans s5949 s5644) +(trans s5949 s5657) +(trans s5949 s5670) +(trans s5950 s5651) +(trans s5950 s5664) +(trans s5950 s5677) +(trans s5951 s5658) +(trans s5951 s5671) +(trans s5951 s5684) +(trans s5952 s5665) +(trans s5952 s5678) +(trans s5952 s5691) +(trans s5953 s5672) +(trans s5953 s5685) +(trans s5953 s5698) +(trans s5954 s5679) +(trans s5954 s5692) +(trans s5954 s5705) +(trans s5955 s5686) +(trans s5955 s5699) +(trans s5955 s5712) +(trans s5956 s5693) +(trans s5956 s5706) +(trans s5956 s5719) +(trans s5957 s5700) +(trans s5957 s5713) +(trans s5957 s5726) +(trans s5958 s5707) +(trans s5958 s5720) +(trans s5958 s5733) +(trans s5959 s5714) +(trans s5959 s5727) +(trans s5959 s5740) +(trans s5960 s5721) +(trans s5960 s5734) +(trans s5960 s5747) +(trans s5961 s5728) +(trans s5961 s5741) +(trans s5961 s5754) +(trans s5962 s5735) +(trans s5962 s5748) +(trans s5962 s5761) +(trans s5963 s5742) +(trans s5963 s5755) +(trans s5963 s5768) +(trans s5964 s5749) +(trans s5964 s5762) +(trans s5964 s5775) +(trans s5965 s5756) +(trans s5965 s5769) +(trans s5965 s5782) +(trans s5966 s5763) +(trans s5966 s5776) +(trans s5966 s5789) +(trans s5967 s5770) +(trans s5967 s5783) +(trans s5967 s5796) +(trans s5968 s5777) +(trans s5968 s5790) +(trans s5968 s5803) +(trans s5969 s5784) +(trans s5969 s5797) +(trans s5969 s5810) +(trans s5970 s5791) +(trans s5970 s5804) +(trans s5970 s5817) +(trans s5971 s5798) +(trans s5971 s5811) +(trans s5971 s5824) +(trans s5972 s5805) +(trans s5972 s5818) +(trans s5972 s5831) +(trans s5973 s5812) +(trans s5973 s5825) +(trans s5973 s5838) +(trans s5974 s5819) +(trans s5974 s5832) +(trans s5974 s5845) +(trans s5975 s5826) +(trans s5975 s5839) +(trans s5975 s5852) +(trans s5976 s5833) +(trans s5976 s5846) +(trans s5976 s5859) +(trans s5977 s5840) +(trans s5977 s5853) +(trans s5977 s5866) +(trans s5978 s5847) +(trans s5978 s5860) +(trans s5978 s5873) +(trans s5979 s5854) +(trans s5979 s5867) +(trans s5979 s5880) +(trans s5980 s5861) +(trans s5980 s5874) +(trans s5980 s5887) +(trans s5981 s5868) +(trans s5981 s5881) +(trans s5981 s5894) +(trans s5982 s5875) +(trans s5982 s5888) +(trans s5982 s5901) +(trans s5983 s5882) +(trans s5983 s5895) +(trans s5983 s5908) +(trans s5984 s5889) +(trans s5984 s5902) +(trans s5984 s5915) +(trans s5985 s5896) +(trans s5985 s5909) +(trans s5985 s5922) +(trans s5986 s5903) +(trans s5986 s5916) +(trans s5986 s5929) +(trans s5987 s5910) +(trans s5987 s5923) +(trans s5987 s5936) +(trans s5988 s5917) +(trans s5988 s5930) +(trans s5988 s5943) +(trans s5989 s5924) +(trans s5989 s5937) +(trans s5989 s5950) +(trans s5990 s5931) +(trans s5990 s5944) +(trans s5990 s5957) +(trans s5991 s5938) +(trans s5991 s5951) +(trans s5991 s5964) +(trans s5992 s5945) +(trans s5992 s5958) +(trans s5992 s5971) +(trans s5993 s5952) +(trans s5993 s5965) +(trans s5993 s5978) +(trans s5994 s5959) +(trans s5994 s5972) +(trans s5994 s5985) +(trans s5995 s5966) +(trans s5995 s5979) +(trans s5995 s5992) +(trans s5996 s5973) +(trans s5996 s5986) +(trans s5996 s5999) +(trans s5997 s5980) +(trans s5997 s5993) +(trans s5997 s6) +(trans s5998 s5987) +(trans s5998 s0) +(trans s5998 s13) +(trans s5999 s5994) +(trans s5999 s7) +(trans s5999 s20) +(state s0) +(dstate s0) +(fuelD (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))))))))))))) + + +;; One exec: take the worklist, publish successors into both the state set and the worklist, +;; retire what was taken. A separate promotion exec would be starved -- this family re-adds +;; itself and sorts first, so it consumes all the fuel before the promoter ever runs. +(exec (1 Z) (, (exec (1 $l) $p $t) (fuelD (S $k)) (dstate $s) (trans $s $u)) + (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (dstate $u)) + (- (dstate $s)) (+ (fuelD $k)) (- (fuelD (S $k))))) diff --git a/examples/transforms/lts_naive.mm2 b/examples/transforms/lts_naive.mm2 new file mode 100644 index 00000000..fc76dd74 --- /dev/null +++ b/examples/transforms/lts_naive.mm2 @@ -0,0 +1,18005 @@ +(trans s0 s1) +(trans s0 s14) +(trans s0 s27) +(trans s1 s8) +(trans s1 s21) +(trans s1 s34) +(trans s2 s15) +(trans s2 s28) +(trans s2 s41) +(trans s3 s22) +(trans s3 s35) +(trans s3 s48) +(trans s4 s29) +(trans s4 s42) +(trans s4 s55) +(trans s5 s36) +(trans s5 s49) +(trans s5 s62) +(trans s6 s43) +(trans s6 s56) +(trans s6 s69) +(trans s7 s50) +(trans s7 s63) +(trans s7 s76) +(trans s8 s57) +(trans s8 s70) +(trans s8 s83) +(trans s9 s64) +(trans s9 s77) +(trans s9 s90) +(trans s10 s71) +(trans s10 s84) +(trans s10 s97) +(trans s11 s78) +(trans s11 s91) +(trans s11 s104) +(trans s12 s85) +(trans s12 s98) +(trans s12 s111) +(trans s13 s92) +(trans s13 s105) +(trans s13 s118) +(trans s14 s99) +(trans s14 s112) +(trans s14 s125) +(trans s15 s106) +(trans s15 s119) +(trans s15 s132) +(trans s16 s113) +(trans s16 s126) +(trans s16 s139) +(trans s17 s120) +(trans s17 s133) +(trans s17 s146) +(trans s18 s127) +(trans s18 s140) +(trans s18 s153) +(trans s19 s134) +(trans s19 s147) +(trans s19 s160) +(trans s20 s141) +(trans s20 s154) +(trans s20 s167) +(trans s21 s148) +(trans s21 s161) +(trans s21 s174) +(trans s22 s155) +(trans s22 s168) +(trans s22 s181) +(trans s23 s162) +(trans s23 s175) +(trans s23 s188) +(trans s24 s169) +(trans s24 s182) +(trans s24 s195) +(trans s25 s176) +(trans s25 s189) +(trans s25 s202) +(trans s26 s183) +(trans s26 s196) +(trans s26 s209) +(trans s27 s190) +(trans s27 s203) +(trans s27 s216) +(trans s28 s197) +(trans s28 s210) +(trans s28 s223) +(trans s29 s204) +(trans s29 s217) +(trans s29 s230) +(trans s30 s211) +(trans s30 s224) +(trans s30 s237) +(trans s31 s218) +(trans s31 s231) +(trans s31 s244) +(trans s32 s225) +(trans s32 s238) +(trans s32 s251) +(trans s33 s232) +(trans s33 s245) +(trans s33 s258) +(trans s34 s239) +(trans s34 s252) +(trans s34 s265) +(trans s35 s246) +(trans s35 s259) +(trans s35 s272) +(trans s36 s253) +(trans s36 s266) +(trans s36 s279) +(trans s37 s260) +(trans s37 s273) +(trans s37 s286) +(trans s38 s267) +(trans s38 s280) +(trans s38 s293) +(trans s39 s274) +(trans s39 s287) +(trans s39 s300) +(trans s40 s281) +(trans s40 s294) +(trans s40 s307) +(trans s41 s288) +(trans s41 s301) +(trans s41 s314) +(trans s42 s295) +(trans s42 s308) +(trans s42 s321) +(trans s43 s302) +(trans s43 s315) +(trans s43 s328) +(trans s44 s309) +(trans s44 s322) +(trans s44 s335) +(trans s45 s316) +(trans s45 s329) +(trans s45 s342) +(trans s46 s323) +(trans s46 s336) +(trans s46 s349) +(trans s47 s330) +(trans s47 s343) +(trans s47 s356) +(trans s48 s337) +(trans s48 s350) +(trans s48 s363) +(trans s49 s344) +(trans s49 s357) +(trans s49 s370) +(trans s50 s351) +(trans s50 s364) +(trans s50 s377) +(trans s51 s358) +(trans s51 s371) +(trans s51 s384) +(trans s52 s365) +(trans s52 s378) +(trans s52 s391) +(trans s53 s372) +(trans s53 s385) +(trans s53 s398) +(trans s54 s379) +(trans s54 s392) +(trans s54 s405) +(trans s55 s386) +(trans s55 s399) +(trans s55 s412) +(trans s56 s393) +(trans s56 s406) +(trans s56 s419) +(trans s57 s400) +(trans s57 s413) +(trans s57 s426) +(trans s58 s407) +(trans s58 s420) +(trans s58 s433) +(trans s59 s414) +(trans s59 s427) +(trans s59 s440) +(trans s60 s421) +(trans s60 s434) +(trans s60 s447) +(trans s61 s428) +(trans s61 s441) +(trans s61 s454) +(trans s62 s435) +(trans s62 s448) +(trans s62 s461) +(trans s63 s442) +(trans s63 s455) +(trans s63 s468) +(trans s64 s449) +(trans s64 s462) +(trans s64 s475) +(trans s65 s456) +(trans s65 s469) +(trans s65 s482) +(trans s66 s463) +(trans s66 s476) +(trans s66 s489) +(trans s67 s470) +(trans s67 s483) +(trans s67 s496) +(trans s68 s477) +(trans s68 s490) +(trans s68 s503) +(trans s69 s484) +(trans s69 s497) +(trans s69 s510) +(trans s70 s491) +(trans s70 s504) +(trans s70 s517) +(trans s71 s498) +(trans s71 s511) +(trans s71 s524) +(trans s72 s505) +(trans s72 s518) +(trans s72 s531) +(trans s73 s512) +(trans s73 s525) +(trans s73 s538) +(trans s74 s519) +(trans s74 s532) +(trans s74 s545) +(trans s75 s526) +(trans s75 s539) +(trans s75 s552) +(trans s76 s533) +(trans s76 s546) +(trans s76 s559) +(trans s77 s540) +(trans s77 s553) +(trans s77 s566) +(trans s78 s547) +(trans s78 s560) +(trans s78 s573) +(trans s79 s554) +(trans s79 s567) +(trans s79 s580) +(trans s80 s561) +(trans s80 s574) +(trans s80 s587) +(trans s81 s568) +(trans s81 s581) +(trans s81 s594) +(trans s82 s575) +(trans s82 s588) +(trans s82 s601) +(trans s83 s582) +(trans s83 s595) +(trans s83 s608) +(trans s84 s589) +(trans s84 s602) +(trans s84 s615) +(trans s85 s596) +(trans s85 s609) +(trans s85 s622) +(trans s86 s603) +(trans s86 s616) +(trans s86 s629) +(trans s87 s610) +(trans s87 s623) +(trans s87 s636) +(trans s88 s617) +(trans s88 s630) +(trans s88 s643) +(trans s89 s624) +(trans s89 s637) +(trans s89 s650) +(trans s90 s631) +(trans s90 s644) +(trans s90 s657) +(trans s91 s638) +(trans s91 s651) +(trans s91 s664) +(trans s92 s645) +(trans s92 s658) +(trans s92 s671) +(trans s93 s652) +(trans s93 s665) +(trans s93 s678) +(trans s94 s659) +(trans s94 s672) +(trans s94 s685) +(trans s95 s666) +(trans s95 s679) +(trans s95 s692) +(trans s96 s673) +(trans s96 s686) +(trans s96 s699) +(trans s97 s680) +(trans s97 s693) +(trans s97 s706) +(trans s98 s687) +(trans s98 s700) +(trans s98 s713) +(trans s99 s694) +(trans s99 s707) +(trans s99 s720) +(trans s100 s701) +(trans s100 s714) +(trans s100 s727) +(trans s101 s708) +(trans s101 s721) +(trans s101 s734) +(trans s102 s715) +(trans s102 s728) +(trans s102 s741) +(trans s103 s722) +(trans s103 s735) +(trans s103 s748) +(trans s104 s729) +(trans s104 s742) +(trans s104 s755) +(trans s105 s736) +(trans s105 s749) +(trans s105 s762) +(trans s106 s743) +(trans s106 s756) +(trans s106 s769) +(trans s107 s750) +(trans s107 s763) +(trans s107 s776) +(trans s108 s757) +(trans s108 s770) +(trans s108 s783) +(trans s109 s764) +(trans s109 s777) +(trans s109 s790) +(trans s110 s771) +(trans s110 s784) +(trans s110 s797) +(trans s111 s778) +(trans s111 s791) +(trans s111 s804) +(trans s112 s785) +(trans s112 s798) +(trans s112 s811) +(trans s113 s792) +(trans s113 s805) +(trans s113 s818) +(trans s114 s799) +(trans s114 s812) +(trans s114 s825) +(trans s115 s806) +(trans s115 s819) +(trans s115 s832) +(trans s116 s813) +(trans s116 s826) +(trans s116 s839) +(trans s117 s820) +(trans s117 s833) +(trans s117 s846) +(trans s118 s827) +(trans s118 s840) +(trans s118 s853) +(trans s119 s834) +(trans s119 s847) +(trans s119 s860) +(trans s120 s841) +(trans s120 s854) +(trans s120 s867) +(trans s121 s848) +(trans s121 s861) +(trans s121 s874) +(trans s122 s855) +(trans s122 s868) +(trans s122 s881) +(trans s123 s862) +(trans s123 s875) +(trans s123 s888) +(trans s124 s869) +(trans s124 s882) +(trans s124 s895) +(trans s125 s876) +(trans s125 s889) +(trans s125 s902) +(trans s126 s883) +(trans s126 s896) +(trans s126 s909) +(trans s127 s890) +(trans s127 s903) +(trans s127 s916) +(trans s128 s897) +(trans s128 s910) +(trans s128 s923) +(trans s129 s904) +(trans s129 s917) +(trans s129 s930) +(trans s130 s911) +(trans s130 s924) +(trans s130 s937) +(trans s131 s918) +(trans s131 s931) +(trans s131 s944) +(trans s132 s925) +(trans s132 s938) +(trans s132 s951) +(trans s133 s932) +(trans s133 s945) +(trans s133 s958) +(trans s134 s939) +(trans s134 s952) +(trans s134 s965) +(trans s135 s946) +(trans s135 s959) +(trans s135 s972) +(trans s136 s953) +(trans s136 s966) +(trans s136 s979) +(trans s137 s960) +(trans s137 s973) +(trans s137 s986) +(trans s138 s967) +(trans s138 s980) +(trans s138 s993) +(trans s139 s974) +(trans s139 s987) +(trans s139 s1000) +(trans s140 s981) +(trans s140 s994) +(trans s140 s1007) +(trans s141 s988) +(trans s141 s1001) +(trans s141 s1014) +(trans s142 s995) +(trans s142 s1008) +(trans s142 s1021) +(trans s143 s1002) +(trans s143 s1015) +(trans s143 s1028) +(trans s144 s1009) +(trans s144 s1022) +(trans s144 s1035) +(trans s145 s1016) +(trans s145 s1029) +(trans s145 s1042) +(trans s146 s1023) +(trans s146 s1036) +(trans s146 s1049) +(trans s147 s1030) +(trans s147 s1043) +(trans s147 s1056) +(trans s148 s1037) +(trans s148 s1050) +(trans s148 s1063) +(trans s149 s1044) +(trans s149 s1057) +(trans s149 s1070) +(trans s150 s1051) +(trans s150 s1064) +(trans s150 s1077) +(trans s151 s1058) +(trans s151 s1071) +(trans s151 s1084) +(trans s152 s1065) +(trans s152 s1078) +(trans s152 s1091) +(trans s153 s1072) +(trans s153 s1085) +(trans s153 s1098) +(trans s154 s1079) +(trans s154 s1092) +(trans s154 s1105) +(trans s155 s1086) +(trans s155 s1099) +(trans s155 s1112) +(trans s156 s1093) +(trans s156 s1106) +(trans s156 s1119) +(trans s157 s1100) +(trans s157 s1113) +(trans s157 s1126) +(trans s158 s1107) +(trans s158 s1120) +(trans s158 s1133) +(trans s159 s1114) +(trans s159 s1127) +(trans s159 s1140) +(trans s160 s1121) +(trans s160 s1134) +(trans s160 s1147) +(trans s161 s1128) +(trans s161 s1141) +(trans s161 s1154) +(trans s162 s1135) +(trans s162 s1148) +(trans s162 s1161) +(trans s163 s1142) +(trans s163 s1155) +(trans s163 s1168) +(trans s164 s1149) +(trans s164 s1162) +(trans s164 s1175) +(trans s165 s1156) +(trans s165 s1169) +(trans s165 s1182) +(trans s166 s1163) +(trans s166 s1176) +(trans s166 s1189) +(trans s167 s1170) +(trans s167 s1183) +(trans s167 s1196) +(trans s168 s1177) +(trans s168 s1190) +(trans s168 s1203) +(trans s169 s1184) +(trans s169 s1197) +(trans s169 s1210) +(trans s170 s1191) +(trans s170 s1204) +(trans s170 s1217) +(trans s171 s1198) +(trans s171 s1211) +(trans s171 s1224) +(trans s172 s1205) +(trans s172 s1218) +(trans s172 s1231) +(trans s173 s1212) +(trans s173 s1225) +(trans s173 s1238) +(trans s174 s1219) +(trans s174 s1232) +(trans s174 s1245) +(trans s175 s1226) +(trans s175 s1239) +(trans s175 s1252) +(trans s176 s1233) +(trans s176 s1246) +(trans s176 s1259) +(trans s177 s1240) +(trans s177 s1253) +(trans s177 s1266) +(trans s178 s1247) +(trans s178 s1260) +(trans s178 s1273) +(trans s179 s1254) +(trans s179 s1267) +(trans s179 s1280) +(trans s180 s1261) +(trans s180 s1274) +(trans s180 s1287) +(trans s181 s1268) +(trans s181 s1281) +(trans s181 s1294) +(trans s182 s1275) +(trans s182 s1288) +(trans s182 s1301) +(trans s183 s1282) +(trans s183 s1295) +(trans s183 s1308) +(trans s184 s1289) +(trans s184 s1302) +(trans s184 s1315) +(trans s185 s1296) +(trans s185 s1309) +(trans s185 s1322) +(trans s186 s1303) +(trans s186 s1316) +(trans s186 s1329) +(trans s187 s1310) +(trans s187 s1323) +(trans s187 s1336) +(trans s188 s1317) +(trans s188 s1330) +(trans s188 s1343) +(trans s189 s1324) +(trans s189 s1337) +(trans s189 s1350) +(trans s190 s1331) +(trans s190 s1344) +(trans s190 s1357) +(trans s191 s1338) +(trans s191 s1351) +(trans s191 s1364) +(trans s192 s1345) +(trans s192 s1358) +(trans s192 s1371) +(trans s193 s1352) +(trans s193 s1365) +(trans s193 s1378) +(trans s194 s1359) +(trans s194 s1372) +(trans s194 s1385) +(trans s195 s1366) +(trans s195 s1379) +(trans s195 s1392) +(trans s196 s1373) +(trans s196 s1386) +(trans s196 s1399) +(trans s197 s1380) +(trans s197 s1393) +(trans s197 s1406) +(trans s198 s1387) +(trans s198 s1400) +(trans s198 s1413) +(trans s199 s1394) +(trans s199 s1407) +(trans s199 s1420) +(trans s200 s1401) +(trans s200 s1414) +(trans s200 s1427) +(trans s201 s1408) +(trans s201 s1421) +(trans s201 s1434) +(trans s202 s1415) +(trans s202 s1428) +(trans s202 s1441) +(trans s203 s1422) +(trans s203 s1435) +(trans s203 s1448) +(trans s204 s1429) +(trans s204 s1442) +(trans s204 s1455) +(trans s205 s1436) +(trans s205 s1449) +(trans s205 s1462) +(trans s206 s1443) +(trans s206 s1456) +(trans s206 s1469) +(trans s207 s1450) +(trans s207 s1463) +(trans s207 s1476) +(trans s208 s1457) +(trans s208 s1470) +(trans s208 s1483) +(trans s209 s1464) +(trans s209 s1477) +(trans s209 s1490) +(trans s210 s1471) +(trans s210 s1484) +(trans s210 s1497) +(trans s211 s1478) +(trans s211 s1491) +(trans s211 s1504) +(trans s212 s1485) +(trans s212 s1498) +(trans s212 s1511) +(trans s213 s1492) +(trans s213 s1505) +(trans s213 s1518) +(trans s214 s1499) +(trans s214 s1512) +(trans s214 s1525) +(trans s215 s1506) +(trans s215 s1519) +(trans s215 s1532) +(trans s216 s1513) +(trans s216 s1526) +(trans s216 s1539) +(trans s217 s1520) +(trans s217 s1533) +(trans s217 s1546) +(trans s218 s1527) +(trans s218 s1540) +(trans s218 s1553) +(trans s219 s1534) +(trans s219 s1547) +(trans s219 s1560) +(trans s220 s1541) +(trans s220 s1554) +(trans s220 s1567) +(trans s221 s1548) +(trans s221 s1561) +(trans s221 s1574) +(trans s222 s1555) +(trans s222 s1568) +(trans s222 s1581) +(trans s223 s1562) +(trans s223 s1575) +(trans s223 s1588) +(trans s224 s1569) +(trans s224 s1582) +(trans s224 s1595) +(trans s225 s1576) +(trans s225 s1589) +(trans s225 s1602) +(trans s226 s1583) +(trans s226 s1596) +(trans s226 s1609) +(trans s227 s1590) +(trans s227 s1603) +(trans s227 s1616) +(trans s228 s1597) +(trans s228 s1610) +(trans s228 s1623) +(trans s229 s1604) +(trans s229 s1617) +(trans s229 s1630) +(trans s230 s1611) +(trans s230 s1624) +(trans s230 s1637) +(trans s231 s1618) +(trans s231 s1631) +(trans s231 s1644) +(trans s232 s1625) +(trans s232 s1638) +(trans s232 s1651) +(trans s233 s1632) +(trans s233 s1645) +(trans s233 s1658) +(trans s234 s1639) +(trans s234 s1652) +(trans s234 s1665) +(trans s235 s1646) +(trans s235 s1659) +(trans s235 s1672) +(trans s236 s1653) +(trans s236 s1666) +(trans s236 s1679) +(trans s237 s1660) +(trans s237 s1673) +(trans s237 s1686) +(trans s238 s1667) +(trans s238 s1680) +(trans s238 s1693) +(trans s239 s1674) +(trans s239 s1687) +(trans s239 s1700) +(trans s240 s1681) +(trans s240 s1694) +(trans s240 s1707) +(trans s241 s1688) +(trans s241 s1701) +(trans s241 s1714) +(trans s242 s1695) +(trans s242 s1708) +(trans s242 s1721) +(trans s243 s1702) +(trans s243 s1715) +(trans s243 s1728) +(trans s244 s1709) +(trans s244 s1722) +(trans s244 s1735) +(trans s245 s1716) +(trans s245 s1729) +(trans s245 s1742) +(trans s246 s1723) +(trans s246 s1736) +(trans s246 s1749) +(trans s247 s1730) +(trans s247 s1743) +(trans s247 s1756) +(trans s248 s1737) +(trans s248 s1750) +(trans s248 s1763) +(trans s249 s1744) +(trans s249 s1757) +(trans s249 s1770) +(trans s250 s1751) +(trans s250 s1764) +(trans s250 s1777) +(trans s251 s1758) +(trans s251 s1771) +(trans s251 s1784) +(trans s252 s1765) +(trans s252 s1778) +(trans s252 s1791) +(trans s253 s1772) +(trans s253 s1785) +(trans s253 s1798) +(trans s254 s1779) +(trans s254 s1792) +(trans s254 s1805) +(trans s255 s1786) +(trans s255 s1799) +(trans s255 s1812) +(trans s256 s1793) +(trans s256 s1806) +(trans s256 s1819) +(trans s257 s1800) +(trans s257 s1813) +(trans s257 s1826) +(trans s258 s1807) +(trans s258 s1820) +(trans s258 s1833) +(trans s259 s1814) +(trans s259 s1827) +(trans s259 s1840) +(trans s260 s1821) +(trans s260 s1834) +(trans s260 s1847) +(trans s261 s1828) +(trans s261 s1841) +(trans s261 s1854) +(trans s262 s1835) +(trans s262 s1848) +(trans s262 s1861) +(trans s263 s1842) +(trans s263 s1855) +(trans s263 s1868) +(trans s264 s1849) +(trans s264 s1862) +(trans s264 s1875) +(trans s265 s1856) +(trans s265 s1869) +(trans s265 s1882) +(trans s266 s1863) +(trans s266 s1876) +(trans s266 s1889) +(trans s267 s1870) +(trans s267 s1883) +(trans s267 s1896) +(trans s268 s1877) +(trans s268 s1890) +(trans s268 s1903) +(trans s269 s1884) +(trans s269 s1897) +(trans s269 s1910) +(trans s270 s1891) +(trans s270 s1904) +(trans s270 s1917) +(trans s271 s1898) +(trans s271 s1911) +(trans s271 s1924) +(trans s272 s1905) +(trans s272 s1918) +(trans s272 s1931) +(trans s273 s1912) +(trans s273 s1925) +(trans s273 s1938) +(trans s274 s1919) +(trans s274 s1932) +(trans s274 s1945) +(trans s275 s1926) +(trans s275 s1939) +(trans s275 s1952) +(trans s276 s1933) +(trans s276 s1946) +(trans s276 s1959) +(trans s277 s1940) +(trans s277 s1953) +(trans s277 s1966) +(trans s278 s1947) +(trans s278 s1960) +(trans s278 s1973) +(trans s279 s1954) +(trans s279 s1967) +(trans s279 s1980) +(trans s280 s1961) +(trans s280 s1974) +(trans s280 s1987) +(trans s281 s1968) +(trans s281 s1981) +(trans s281 s1994) +(trans s282 s1975) +(trans s282 s1988) +(trans s282 s2001) +(trans s283 s1982) +(trans s283 s1995) +(trans s283 s2008) +(trans s284 s1989) +(trans s284 s2002) +(trans s284 s2015) +(trans s285 s1996) +(trans s285 s2009) +(trans s285 s2022) +(trans s286 s2003) +(trans s286 s2016) +(trans s286 s2029) +(trans s287 s2010) +(trans s287 s2023) +(trans s287 s2036) +(trans s288 s2017) +(trans s288 s2030) +(trans s288 s2043) +(trans s289 s2024) +(trans s289 s2037) +(trans s289 s2050) +(trans s290 s2031) +(trans s290 s2044) +(trans s290 s2057) +(trans s291 s2038) +(trans s291 s2051) +(trans s291 s2064) +(trans s292 s2045) +(trans s292 s2058) +(trans s292 s2071) +(trans s293 s2052) +(trans s293 s2065) +(trans s293 s2078) +(trans s294 s2059) +(trans s294 s2072) +(trans s294 s2085) +(trans s295 s2066) +(trans s295 s2079) +(trans s295 s2092) +(trans s296 s2073) +(trans s296 s2086) +(trans s296 s2099) +(trans s297 s2080) +(trans s297 s2093) +(trans s297 s2106) +(trans s298 s2087) +(trans s298 s2100) +(trans s298 s2113) +(trans s299 s2094) +(trans s299 s2107) +(trans s299 s2120) +(trans s300 s2101) +(trans s300 s2114) +(trans s300 s2127) +(trans s301 s2108) +(trans s301 s2121) +(trans s301 s2134) +(trans s302 s2115) +(trans s302 s2128) +(trans s302 s2141) +(trans s303 s2122) +(trans s303 s2135) +(trans s303 s2148) +(trans s304 s2129) +(trans s304 s2142) +(trans s304 s2155) +(trans s305 s2136) +(trans s305 s2149) +(trans s305 s2162) +(trans s306 s2143) +(trans s306 s2156) +(trans s306 s2169) +(trans s307 s2150) +(trans s307 s2163) +(trans s307 s2176) +(trans s308 s2157) +(trans s308 s2170) +(trans s308 s2183) +(trans s309 s2164) +(trans s309 s2177) +(trans s309 s2190) +(trans s310 s2171) +(trans s310 s2184) +(trans s310 s2197) +(trans s311 s2178) +(trans s311 s2191) +(trans s311 s2204) +(trans s312 s2185) +(trans s312 s2198) +(trans s312 s2211) +(trans s313 s2192) +(trans s313 s2205) +(trans s313 s2218) +(trans s314 s2199) +(trans s314 s2212) +(trans s314 s2225) +(trans s315 s2206) +(trans s315 s2219) +(trans s315 s2232) +(trans s316 s2213) +(trans s316 s2226) +(trans s316 s2239) +(trans s317 s2220) +(trans s317 s2233) +(trans s317 s2246) +(trans s318 s2227) +(trans s318 s2240) +(trans s318 s2253) +(trans s319 s2234) +(trans s319 s2247) +(trans s319 s2260) +(trans s320 s2241) +(trans s320 s2254) +(trans s320 s2267) +(trans s321 s2248) +(trans s321 s2261) +(trans s321 s2274) +(trans s322 s2255) +(trans s322 s2268) +(trans s322 s2281) +(trans s323 s2262) +(trans s323 s2275) +(trans s323 s2288) +(trans s324 s2269) +(trans s324 s2282) +(trans s324 s2295) +(trans s325 s2276) +(trans s325 s2289) +(trans s325 s2302) +(trans s326 s2283) +(trans s326 s2296) +(trans s326 s2309) +(trans s327 s2290) +(trans s327 s2303) +(trans s327 s2316) +(trans s328 s2297) +(trans s328 s2310) +(trans s328 s2323) +(trans s329 s2304) +(trans s329 s2317) +(trans s329 s2330) +(trans s330 s2311) +(trans s330 s2324) +(trans s330 s2337) +(trans s331 s2318) +(trans s331 s2331) +(trans s331 s2344) +(trans s332 s2325) +(trans s332 s2338) +(trans s332 s2351) +(trans s333 s2332) +(trans s333 s2345) +(trans s333 s2358) +(trans s334 s2339) +(trans s334 s2352) +(trans s334 s2365) +(trans s335 s2346) +(trans s335 s2359) +(trans s335 s2372) +(trans s336 s2353) +(trans s336 s2366) +(trans s336 s2379) +(trans s337 s2360) +(trans s337 s2373) +(trans s337 s2386) +(trans s338 s2367) +(trans s338 s2380) +(trans s338 s2393) +(trans s339 s2374) +(trans s339 s2387) +(trans s339 s2400) +(trans s340 s2381) +(trans s340 s2394) +(trans s340 s2407) +(trans s341 s2388) +(trans s341 s2401) +(trans s341 s2414) +(trans s342 s2395) +(trans s342 s2408) +(trans s342 s2421) +(trans s343 s2402) +(trans s343 s2415) +(trans s343 s2428) +(trans s344 s2409) +(trans s344 s2422) +(trans s344 s2435) +(trans s345 s2416) +(trans s345 s2429) +(trans s345 s2442) +(trans s346 s2423) +(trans s346 s2436) +(trans s346 s2449) +(trans s347 s2430) +(trans s347 s2443) +(trans s347 s2456) +(trans s348 s2437) +(trans s348 s2450) +(trans s348 s2463) +(trans s349 s2444) +(trans s349 s2457) +(trans s349 s2470) +(trans s350 s2451) +(trans s350 s2464) +(trans s350 s2477) +(trans s351 s2458) +(trans s351 s2471) +(trans s351 s2484) +(trans s352 s2465) +(trans s352 s2478) +(trans s352 s2491) +(trans s353 s2472) +(trans s353 s2485) +(trans s353 s2498) +(trans s354 s2479) +(trans s354 s2492) +(trans s354 s2505) +(trans s355 s2486) +(trans s355 s2499) +(trans s355 s2512) +(trans s356 s2493) +(trans s356 s2506) +(trans s356 s2519) +(trans s357 s2500) +(trans s357 s2513) +(trans s357 s2526) +(trans s358 s2507) +(trans s358 s2520) +(trans s358 s2533) +(trans s359 s2514) +(trans s359 s2527) +(trans s359 s2540) +(trans s360 s2521) +(trans s360 s2534) +(trans s360 s2547) +(trans s361 s2528) +(trans s361 s2541) +(trans s361 s2554) +(trans s362 s2535) +(trans s362 s2548) +(trans s362 s2561) +(trans s363 s2542) +(trans s363 s2555) +(trans s363 s2568) +(trans s364 s2549) +(trans s364 s2562) +(trans s364 s2575) +(trans s365 s2556) +(trans s365 s2569) +(trans s365 s2582) +(trans s366 s2563) +(trans s366 s2576) +(trans s366 s2589) +(trans s367 s2570) +(trans s367 s2583) +(trans s367 s2596) +(trans s368 s2577) +(trans s368 s2590) +(trans s368 s2603) +(trans s369 s2584) +(trans s369 s2597) +(trans s369 s2610) +(trans s370 s2591) +(trans s370 s2604) +(trans s370 s2617) +(trans s371 s2598) +(trans s371 s2611) +(trans s371 s2624) +(trans s372 s2605) +(trans s372 s2618) +(trans s372 s2631) +(trans s373 s2612) +(trans s373 s2625) +(trans s373 s2638) +(trans s374 s2619) +(trans s374 s2632) +(trans s374 s2645) +(trans s375 s2626) +(trans s375 s2639) +(trans s375 s2652) +(trans s376 s2633) +(trans s376 s2646) +(trans s376 s2659) +(trans s377 s2640) +(trans s377 s2653) +(trans s377 s2666) +(trans s378 s2647) +(trans s378 s2660) +(trans s378 s2673) +(trans s379 s2654) +(trans s379 s2667) +(trans s379 s2680) +(trans s380 s2661) +(trans s380 s2674) +(trans s380 s2687) +(trans s381 s2668) +(trans s381 s2681) +(trans s381 s2694) +(trans s382 s2675) +(trans s382 s2688) +(trans s382 s2701) +(trans s383 s2682) +(trans s383 s2695) +(trans s383 s2708) +(trans s384 s2689) +(trans s384 s2702) +(trans s384 s2715) +(trans s385 s2696) +(trans s385 s2709) +(trans s385 s2722) +(trans s386 s2703) +(trans s386 s2716) +(trans s386 s2729) +(trans s387 s2710) +(trans s387 s2723) +(trans s387 s2736) +(trans s388 s2717) +(trans s388 s2730) +(trans s388 s2743) +(trans s389 s2724) +(trans s389 s2737) +(trans s389 s2750) +(trans s390 s2731) +(trans s390 s2744) +(trans s390 s2757) +(trans s391 s2738) +(trans s391 s2751) +(trans s391 s2764) +(trans s392 s2745) +(trans s392 s2758) +(trans s392 s2771) +(trans s393 s2752) +(trans s393 s2765) +(trans s393 s2778) +(trans s394 s2759) +(trans s394 s2772) +(trans s394 s2785) +(trans s395 s2766) +(trans s395 s2779) +(trans s395 s2792) +(trans s396 s2773) +(trans s396 s2786) +(trans s396 s2799) +(trans s397 s2780) +(trans s397 s2793) +(trans s397 s2806) +(trans s398 s2787) +(trans s398 s2800) +(trans s398 s2813) +(trans s399 s2794) +(trans s399 s2807) +(trans s399 s2820) +(trans s400 s2801) +(trans s400 s2814) +(trans s400 s2827) +(trans s401 s2808) +(trans s401 s2821) +(trans s401 s2834) +(trans s402 s2815) +(trans s402 s2828) +(trans s402 s2841) +(trans s403 s2822) +(trans s403 s2835) +(trans s403 s2848) +(trans s404 s2829) +(trans s404 s2842) +(trans s404 s2855) +(trans s405 s2836) +(trans s405 s2849) +(trans s405 s2862) +(trans s406 s2843) +(trans s406 s2856) +(trans s406 s2869) +(trans s407 s2850) +(trans s407 s2863) +(trans s407 s2876) +(trans s408 s2857) +(trans s408 s2870) +(trans s408 s2883) +(trans s409 s2864) +(trans s409 s2877) +(trans s409 s2890) +(trans s410 s2871) +(trans s410 s2884) +(trans s410 s2897) +(trans s411 s2878) +(trans s411 s2891) +(trans s411 s2904) +(trans s412 s2885) +(trans s412 s2898) +(trans s412 s2911) +(trans s413 s2892) +(trans s413 s2905) +(trans s413 s2918) +(trans s414 s2899) +(trans s414 s2912) +(trans s414 s2925) +(trans s415 s2906) +(trans s415 s2919) +(trans s415 s2932) +(trans s416 s2913) +(trans s416 s2926) +(trans s416 s2939) +(trans s417 s2920) +(trans s417 s2933) +(trans s417 s2946) +(trans s418 s2927) +(trans s418 s2940) +(trans s418 s2953) +(trans s419 s2934) +(trans s419 s2947) +(trans s419 s2960) +(trans s420 s2941) +(trans s420 s2954) +(trans s420 s2967) +(trans s421 s2948) +(trans s421 s2961) +(trans s421 s2974) +(trans s422 s2955) +(trans s422 s2968) +(trans s422 s2981) +(trans s423 s2962) +(trans s423 s2975) +(trans s423 s2988) +(trans s424 s2969) +(trans s424 s2982) +(trans s424 s2995) +(trans s425 s2976) +(trans s425 s2989) +(trans s425 s3002) +(trans s426 s2983) +(trans s426 s2996) +(trans s426 s3009) +(trans s427 s2990) +(trans s427 s3003) +(trans s427 s3016) +(trans s428 s2997) +(trans s428 s3010) +(trans s428 s3023) +(trans s429 s3004) +(trans s429 s3017) +(trans s429 s3030) +(trans s430 s3011) +(trans s430 s3024) +(trans s430 s3037) +(trans s431 s3018) +(trans s431 s3031) +(trans s431 s3044) +(trans s432 s3025) +(trans s432 s3038) +(trans s432 s3051) +(trans s433 s3032) +(trans s433 s3045) +(trans s433 s3058) +(trans s434 s3039) +(trans s434 s3052) +(trans s434 s3065) +(trans s435 s3046) +(trans s435 s3059) +(trans s435 s3072) +(trans s436 s3053) +(trans s436 s3066) +(trans s436 s3079) +(trans s437 s3060) +(trans s437 s3073) +(trans s437 s3086) +(trans s438 s3067) +(trans s438 s3080) +(trans s438 s3093) +(trans s439 s3074) +(trans s439 s3087) +(trans s439 s3100) +(trans s440 s3081) +(trans s440 s3094) +(trans s440 s3107) +(trans s441 s3088) +(trans s441 s3101) +(trans s441 s3114) +(trans s442 s3095) +(trans s442 s3108) +(trans s442 s3121) +(trans s443 s3102) +(trans s443 s3115) +(trans s443 s3128) +(trans s444 s3109) +(trans s444 s3122) +(trans s444 s3135) +(trans s445 s3116) +(trans s445 s3129) +(trans s445 s3142) +(trans s446 s3123) +(trans s446 s3136) +(trans s446 s3149) +(trans s447 s3130) +(trans s447 s3143) +(trans s447 s3156) +(trans s448 s3137) +(trans s448 s3150) +(trans s448 s3163) +(trans s449 s3144) +(trans s449 s3157) +(trans s449 s3170) +(trans s450 s3151) +(trans s450 s3164) +(trans s450 s3177) +(trans s451 s3158) +(trans s451 s3171) +(trans s451 s3184) +(trans s452 s3165) +(trans s452 s3178) +(trans s452 s3191) +(trans s453 s3172) +(trans s453 s3185) +(trans s453 s3198) +(trans s454 s3179) +(trans s454 s3192) +(trans s454 s3205) +(trans s455 s3186) +(trans s455 s3199) +(trans s455 s3212) +(trans s456 s3193) +(trans s456 s3206) +(trans s456 s3219) +(trans s457 s3200) +(trans s457 s3213) +(trans s457 s3226) +(trans s458 s3207) +(trans s458 s3220) +(trans s458 s3233) +(trans s459 s3214) +(trans s459 s3227) +(trans s459 s3240) +(trans s460 s3221) +(trans s460 s3234) +(trans s460 s3247) +(trans s461 s3228) +(trans s461 s3241) +(trans s461 s3254) +(trans s462 s3235) +(trans s462 s3248) +(trans s462 s3261) +(trans s463 s3242) +(trans s463 s3255) +(trans s463 s3268) +(trans s464 s3249) +(trans s464 s3262) +(trans s464 s3275) +(trans s465 s3256) +(trans s465 s3269) +(trans s465 s3282) +(trans s466 s3263) +(trans s466 s3276) +(trans s466 s3289) +(trans s467 s3270) +(trans s467 s3283) +(trans s467 s3296) +(trans s468 s3277) +(trans s468 s3290) +(trans s468 s3303) +(trans s469 s3284) +(trans s469 s3297) +(trans s469 s3310) +(trans s470 s3291) +(trans s470 s3304) +(trans s470 s3317) +(trans s471 s3298) +(trans s471 s3311) +(trans s471 s3324) +(trans s472 s3305) +(trans s472 s3318) +(trans s472 s3331) +(trans s473 s3312) +(trans s473 s3325) +(trans s473 s3338) +(trans s474 s3319) +(trans s474 s3332) +(trans s474 s3345) +(trans s475 s3326) +(trans s475 s3339) +(trans s475 s3352) +(trans s476 s3333) +(trans s476 s3346) +(trans s476 s3359) +(trans s477 s3340) +(trans s477 s3353) +(trans s477 s3366) +(trans s478 s3347) +(trans s478 s3360) +(trans s478 s3373) +(trans s479 s3354) +(trans s479 s3367) +(trans s479 s3380) +(trans s480 s3361) +(trans s480 s3374) +(trans s480 s3387) +(trans s481 s3368) +(trans s481 s3381) +(trans s481 s3394) +(trans s482 s3375) +(trans s482 s3388) +(trans s482 s3401) +(trans s483 s3382) +(trans s483 s3395) +(trans s483 s3408) +(trans s484 s3389) +(trans s484 s3402) +(trans s484 s3415) +(trans s485 s3396) +(trans s485 s3409) +(trans s485 s3422) +(trans s486 s3403) +(trans s486 s3416) +(trans s486 s3429) +(trans s487 s3410) +(trans s487 s3423) +(trans s487 s3436) +(trans s488 s3417) +(trans s488 s3430) +(trans s488 s3443) +(trans s489 s3424) +(trans s489 s3437) +(trans s489 s3450) +(trans s490 s3431) +(trans s490 s3444) +(trans s490 s3457) +(trans s491 s3438) +(trans s491 s3451) +(trans s491 s3464) +(trans s492 s3445) +(trans s492 s3458) +(trans s492 s3471) +(trans s493 s3452) +(trans s493 s3465) +(trans s493 s3478) +(trans s494 s3459) +(trans s494 s3472) +(trans s494 s3485) +(trans s495 s3466) +(trans s495 s3479) +(trans s495 s3492) +(trans s496 s3473) +(trans s496 s3486) +(trans s496 s3499) +(trans s497 s3480) +(trans s497 s3493) +(trans s497 s3506) +(trans s498 s3487) +(trans s498 s3500) +(trans s498 s3513) +(trans s499 s3494) +(trans s499 s3507) +(trans s499 s3520) +(trans s500 s3501) +(trans s500 s3514) +(trans s500 s3527) +(trans s501 s3508) +(trans s501 s3521) +(trans s501 s3534) +(trans s502 s3515) +(trans s502 s3528) +(trans s502 s3541) +(trans s503 s3522) +(trans s503 s3535) +(trans s503 s3548) +(trans s504 s3529) +(trans s504 s3542) +(trans s504 s3555) +(trans s505 s3536) +(trans s505 s3549) +(trans s505 s3562) +(trans s506 s3543) +(trans s506 s3556) +(trans s506 s3569) +(trans s507 s3550) +(trans s507 s3563) +(trans s507 s3576) +(trans s508 s3557) +(trans s508 s3570) +(trans s508 s3583) +(trans s509 s3564) +(trans s509 s3577) +(trans s509 s3590) +(trans s510 s3571) +(trans s510 s3584) +(trans s510 s3597) +(trans s511 s3578) +(trans s511 s3591) +(trans s511 s3604) +(trans s512 s3585) +(trans s512 s3598) +(trans s512 s3611) +(trans s513 s3592) +(trans s513 s3605) +(trans s513 s3618) +(trans s514 s3599) +(trans s514 s3612) +(trans s514 s3625) +(trans s515 s3606) +(trans s515 s3619) +(trans s515 s3632) +(trans s516 s3613) +(trans s516 s3626) +(trans s516 s3639) +(trans s517 s3620) +(trans s517 s3633) +(trans s517 s3646) +(trans s518 s3627) +(trans s518 s3640) +(trans s518 s3653) +(trans s519 s3634) +(trans s519 s3647) +(trans s519 s3660) +(trans s520 s3641) +(trans s520 s3654) +(trans s520 s3667) +(trans s521 s3648) +(trans s521 s3661) +(trans s521 s3674) +(trans s522 s3655) +(trans s522 s3668) +(trans s522 s3681) +(trans s523 s3662) +(trans s523 s3675) +(trans s523 s3688) +(trans s524 s3669) +(trans s524 s3682) +(trans s524 s3695) +(trans s525 s3676) +(trans s525 s3689) +(trans s525 s3702) +(trans s526 s3683) +(trans s526 s3696) +(trans s526 s3709) +(trans s527 s3690) +(trans s527 s3703) +(trans s527 s3716) +(trans s528 s3697) +(trans s528 s3710) +(trans s528 s3723) +(trans s529 s3704) +(trans s529 s3717) +(trans s529 s3730) +(trans s530 s3711) +(trans s530 s3724) +(trans s530 s3737) +(trans s531 s3718) +(trans s531 s3731) +(trans s531 s3744) +(trans s532 s3725) +(trans s532 s3738) +(trans s532 s3751) +(trans s533 s3732) +(trans s533 s3745) +(trans s533 s3758) +(trans s534 s3739) +(trans s534 s3752) +(trans s534 s3765) +(trans s535 s3746) +(trans s535 s3759) +(trans s535 s3772) +(trans s536 s3753) +(trans s536 s3766) +(trans s536 s3779) +(trans s537 s3760) +(trans s537 s3773) +(trans s537 s3786) +(trans s538 s3767) +(trans s538 s3780) +(trans s538 s3793) +(trans s539 s3774) +(trans s539 s3787) +(trans s539 s3800) +(trans s540 s3781) +(trans s540 s3794) +(trans s540 s3807) +(trans s541 s3788) +(trans s541 s3801) +(trans s541 s3814) +(trans s542 s3795) +(trans s542 s3808) +(trans s542 s3821) +(trans s543 s3802) +(trans s543 s3815) +(trans s543 s3828) +(trans s544 s3809) +(trans s544 s3822) +(trans s544 s3835) +(trans s545 s3816) +(trans s545 s3829) +(trans s545 s3842) +(trans s546 s3823) +(trans s546 s3836) +(trans s546 s3849) +(trans s547 s3830) +(trans s547 s3843) +(trans s547 s3856) +(trans s548 s3837) +(trans s548 s3850) +(trans s548 s3863) +(trans s549 s3844) +(trans s549 s3857) +(trans s549 s3870) +(trans s550 s3851) +(trans s550 s3864) +(trans s550 s3877) +(trans s551 s3858) +(trans s551 s3871) +(trans s551 s3884) +(trans s552 s3865) +(trans s552 s3878) +(trans s552 s3891) +(trans s553 s3872) +(trans s553 s3885) +(trans s553 s3898) +(trans s554 s3879) +(trans s554 s3892) +(trans s554 s3905) +(trans s555 s3886) +(trans s555 s3899) +(trans s555 s3912) +(trans s556 s3893) +(trans s556 s3906) +(trans s556 s3919) +(trans s557 s3900) +(trans s557 s3913) +(trans s557 s3926) +(trans s558 s3907) +(trans s558 s3920) +(trans s558 s3933) +(trans s559 s3914) +(trans s559 s3927) +(trans s559 s3940) +(trans s560 s3921) +(trans s560 s3934) +(trans s560 s3947) +(trans s561 s3928) +(trans s561 s3941) +(trans s561 s3954) +(trans s562 s3935) +(trans s562 s3948) +(trans s562 s3961) +(trans s563 s3942) +(trans s563 s3955) +(trans s563 s3968) +(trans s564 s3949) +(trans s564 s3962) +(trans s564 s3975) +(trans s565 s3956) +(trans s565 s3969) +(trans s565 s3982) +(trans s566 s3963) +(trans s566 s3976) +(trans s566 s3989) +(trans s567 s3970) +(trans s567 s3983) +(trans s567 s3996) +(trans s568 s3977) +(trans s568 s3990) +(trans s568 s4003) +(trans s569 s3984) +(trans s569 s3997) +(trans s569 s4010) +(trans s570 s3991) +(trans s570 s4004) +(trans s570 s4017) +(trans s571 s3998) +(trans s571 s4011) +(trans s571 s4024) +(trans s572 s4005) +(trans s572 s4018) +(trans s572 s4031) +(trans s573 s4012) +(trans s573 s4025) +(trans s573 s4038) +(trans s574 s4019) +(trans s574 s4032) +(trans s574 s4045) +(trans s575 s4026) +(trans s575 s4039) +(trans s575 s4052) +(trans s576 s4033) +(trans s576 s4046) +(trans s576 s4059) +(trans s577 s4040) +(trans s577 s4053) +(trans s577 s4066) +(trans s578 s4047) +(trans s578 s4060) +(trans s578 s4073) +(trans s579 s4054) +(trans s579 s4067) +(trans s579 s4080) +(trans s580 s4061) +(trans s580 s4074) +(trans s580 s4087) +(trans s581 s4068) +(trans s581 s4081) +(trans s581 s4094) +(trans s582 s4075) +(trans s582 s4088) +(trans s582 s4101) +(trans s583 s4082) +(trans s583 s4095) +(trans s583 s4108) +(trans s584 s4089) +(trans s584 s4102) +(trans s584 s4115) +(trans s585 s4096) +(trans s585 s4109) +(trans s585 s4122) +(trans s586 s4103) +(trans s586 s4116) +(trans s586 s4129) +(trans s587 s4110) +(trans s587 s4123) +(trans s587 s4136) +(trans s588 s4117) +(trans s588 s4130) +(trans s588 s4143) +(trans s589 s4124) +(trans s589 s4137) +(trans s589 s4150) +(trans s590 s4131) +(trans s590 s4144) +(trans s590 s4157) +(trans s591 s4138) +(trans s591 s4151) +(trans s591 s4164) +(trans s592 s4145) +(trans s592 s4158) +(trans s592 s4171) +(trans s593 s4152) +(trans s593 s4165) +(trans s593 s4178) +(trans s594 s4159) +(trans s594 s4172) +(trans s594 s4185) +(trans s595 s4166) +(trans s595 s4179) +(trans s595 s4192) +(trans s596 s4173) +(trans s596 s4186) +(trans s596 s4199) +(trans s597 s4180) +(trans s597 s4193) +(trans s597 s4206) +(trans s598 s4187) +(trans s598 s4200) +(trans s598 s4213) +(trans s599 s4194) +(trans s599 s4207) +(trans s599 s4220) +(trans s600 s4201) +(trans s600 s4214) +(trans s600 s4227) +(trans s601 s4208) +(trans s601 s4221) +(trans s601 s4234) +(trans s602 s4215) +(trans s602 s4228) +(trans s602 s4241) +(trans s603 s4222) +(trans s603 s4235) +(trans s603 s4248) +(trans s604 s4229) +(trans s604 s4242) +(trans s604 s4255) +(trans s605 s4236) +(trans s605 s4249) +(trans s605 s4262) +(trans s606 s4243) +(trans s606 s4256) +(trans s606 s4269) +(trans s607 s4250) +(trans s607 s4263) +(trans s607 s4276) +(trans s608 s4257) +(trans s608 s4270) +(trans s608 s4283) +(trans s609 s4264) +(trans s609 s4277) +(trans s609 s4290) +(trans s610 s4271) +(trans s610 s4284) +(trans s610 s4297) +(trans s611 s4278) +(trans s611 s4291) +(trans s611 s4304) +(trans s612 s4285) +(trans s612 s4298) +(trans s612 s4311) +(trans s613 s4292) +(trans s613 s4305) +(trans s613 s4318) +(trans s614 s4299) +(trans s614 s4312) +(trans s614 s4325) +(trans s615 s4306) +(trans s615 s4319) +(trans s615 s4332) +(trans s616 s4313) +(trans s616 s4326) +(trans s616 s4339) +(trans s617 s4320) +(trans s617 s4333) +(trans s617 s4346) +(trans s618 s4327) +(trans s618 s4340) +(trans s618 s4353) +(trans s619 s4334) +(trans s619 s4347) +(trans s619 s4360) +(trans s620 s4341) +(trans s620 s4354) +(trans s620 s4367) +(trans s621 s4348) +(trans s621 s4361) +(trans s621 s4374) +(trans s622 s4355) +(trans s622 s4368) +(trans s622 s4381) +(trans s623 s4362) +(trans s623 s4375) +(trans s623 s4388) +(trans s624 s4369) +(trans s624 s4382) +(trans s624 s4395) +(trans s625 s4376) +(trans s625 s4389) +(trans s625 s4402) +(trans s626 s4383) +(trans s626 s4396) +(trans s626 s4409) +(trans s627 s4390) +(trans s627 s4403) +(trans s627 s4416) +(trans s628 s4397) +(trans s628 s4410) +(trans s628 s4423) +(trans s629 s4404) +(trans s629 s4417) +(trans s629 s4430) +(trans s630 s4411) +(trans s630 s4424) +(trans s630 s4437) +(trans s631 s4418) +(trans s631 s4431) +(trans s631 s4444) +(trans s632 s4425) +(trans s632 s4438) +(trans s632 s4451) +(trans s633 s4432) +(trans s633 s4445) +(trans s633 s4458) +(trans s634 s4439) +(trans s634 s4452) +(trans s634 s4465) +(trans s635 s4446) +(trans s635 s4459) +(trans s635 s4472) +(trans s636 s4453) +(trans s636 s4466) +(trans s636 s4479) +(trans s637 s4460) +(trans s637 s4473) +(trans s637 s4486) +(trans s638 s4467) +(trans s638 s4480) +(trans s638 s4493) +(trans s639 s4474) +(trans s639 s4487) +(trans s639 s4500) +(trans s640 s4481) +(trans s640 s4494) +(trans s640 s4507) +(trans s641 s4488) +(trans s641 s4501) +(trans s641 s4514) +(trans s642 s4495) +(trans s642 s4508) +(trans s642 s4521) +(trans s643 s4502) +(trans s643 s4515) +(trans s643 s4528) +(trans s644 s4509) +(trans s644 s4522) +(trans s644 s4535) +(trans s645 s4516) +(trans s645 s4529) +(trans s645 s4542) +(trans s646 s4523) +(trans s646 s4536) +(trans s646 s4549) +(trans s647 s4530) +(trans s647 s4543) +(trans s647 s4556) +(trans s648 s4537) +(trans s648 s4550) +(trans s648 s4563) +(trans s649 s4544) +(trans s649 s4557) +(trans s649 s4570) +(trans s650 s4551) +(trans s650 s4564) +(trans s650 s4577) +(trans s651 s4558) +(trans s651 s4571) +(trans s651 s4584) +(trans s652 s4565) +(trans s652 s4578) +(trans s652 s4591) +(trans s653 s4572) +(trans s653 s4585) +(trans s653 s4598) +(trans s654 s4579) +(trans s654 s4592) +(trans s654 s4605) +(trans s655 s4586) +(trans s655 s4599) +(trans s655 s4612) +(trans s656 s4593) +(trans s656 s4606) +(trans s656 s4619) +(trans s657 s4600) +(trans s657 s4613) +(trans s657 s4626) +(trans s658 s4607) +(trans s658 s4620) +(trans s658 s4633) +(trans s659 s4614) +(trans s659 s4627) +(trans s659 s4640) +(trans s660 s4621) +(trans s660 s4634) +(trans s660 s4647) +(trans s661 s4628) +(trans s661 s4641) +(trans s661 s4654) +(trans s662 s4635) +(trans s662 s4648) +(trans s662 s4661) +(trans s663 s4642) +(trans s663 s4655) +(trans s663 s4668) +(trans s664 s4649) +(trans s664 s4662) +(trans s664 s4675) +(trans s665 s4656) +(trans s665 s4669) +(trans s665 s4682) +(trans s666 s4663) +(trans s666 s4676) +(trans s666 s4689) +(trans s667 s4670) +(trans s667 s4683) +(trans s667 s4696) +(trans s668 s4677) +(trans s668 s4690) +(trans s668 s4703) +(trans s669 s4684) +(trans s669 s4697) +(trans s669 s4710) +(trans s670 s4691) +(trans s670 s4704) +(trans s670 s4717) +(trans s671 s4698) +(trans s671 s4711) +(trans s671 s4724) +(trans s672 s4705) +(trans s672 s4718) +(trans s672 s4731) +(trans s673 s4712) +(trans s673 s4725) +(trans s673 s4738) +(trans s674 s4719) +(trans s674 s4732) +(trans s674 s4745) +(trans s675 s4726) +(trans s675 s4739) +(trans s675 s4752) +(trans s676 s4733) +(trans s676 s4746) +(trans s676 s4759) +(trans s677 s4740) +(trans s677 s4753) +(trans s677 s4766) +(trans s678 s4747) +(trans s678 s4760) +(trans s678 s4773) +(trans s679 s4754) +(trans s679 s4767) +(trans s679 s4780) +(trans s680 s4761) +(trans s680 s4774) +(trans s680 s4787) +(trans s681 s4768) +(trans s681 s4781) +(trans s681 s4794) +(trans s682 s4775) +(trans s682 s4788) +(trans s682 s4801) +(trans s683 s4782) +(trans s683 s4795) +(trans s683 s4808) +(trans s684 s4789) +(trans s684 s4802) +(trans s684 s4815) +(trans s685 s4796) +(trans s685 s4809) +(trans s685 s4822) +(trans s686 s4803) +(trans s686 s4816) +(trans s686 s4829) +(trans s687 s4810) +(trans s687 s4823) +(trans s687 s4836) +(trans s688 s4817) +(trans s688 s4830) +(trans s688 s4843) +(trans s689 s4824) +(trans s689 s4837) +(trans s689 s4850) +(trans s690 s4831) +(trans s690 s4844) +(trans s690 s4857) +(trans s691 s4838) +(trans s691 s4851) +(trans s691 s4864) +(trans s692 s4845) +(trans s692 s4858) +(trans s692 s4871) +(trans s693 s4852) +(trans s693 s4865) +(trans s693 s4878) +(trans s694 s4859) +(trans s694 s4872) +(trans s694 s4885) +(trans s695 s4866) +(trans s695 s4879) +(trans s695 s4892) +(trans s696 s4873) +(trans s696 s4886) +(trans s696 s4899) +(trans s697 s4880) +(trans s697 s4893) +(trans s697 s4906) +(trans s698 s4887) +(trans s698 s4900) +(trans s698 s4913) +(trans s699 s4894) +(trans s699 s4907) +(trans s699 s4920) +(trans s700 s4901) +(trans s700 s4914) +(trans s700 s4927) +(trans s701 s4908) +(trans s701 s4921) +(trans s701 s4934) +(trans s702 s4915) +(trans s702 s4928) +(trans s702 s4941) +(trans s703 s4922) +(trans s703 s4935) +(trans s703 s4948) +(trans s704 s4929) +(trans s704 s4942) +(trans s704 s4955) +(trans s705 s4936) +(trans s705 s4949) +(trans s705 s4962) +(trans s706 s4943) +(trans s706 s4956) +(trans s706 s4969) +(trans s707 s4950) +(trans s707 s4963) +(trans s707 s4976) +(trans s708 s4957) +(trans s708 s4970) +(trans s708 s4983) +(trans s709 s4964) +(trans s709 s4977) +(trans s709 s4990) +(trans s710 s4971) +(trans s710 s4984) +(trans s710 s4997) +(trans s711 s4978) +(trans s711 s4991) +(trans s711 s5004) +(trans s712 s4985) +(trans s712 s4998) +(trans s712 s5011) +(trans s713 s4992) +(trans s713 s5005) +(trans s713 s5018) +(trans s714 s4999) +(trans s714 s5012) +(trans s714 s5025) +(trans s715 s5006) +(trans s715 s5019) +(trans s715 s5032) +(trans s716 s5013) +(trans s716 s5026) +(trans s716 s5039) +(trans s717 s5020) +(trans s717 s5033) +(trans s717 s5046) +(trans s718 s5027) +(trans s718 s5040) +(trans s718 s5053) +(trans s719 s5034) +(trans s719 s5047) +(trans s719 s5060) +(trans s720 s5041) +(trans s720 s5054) +(trans s720 s5067) +(trans s721 s5048) +(trans s721 s5061) +(trans s721 s5074) +(trans s722 s5055) +(trans s722 s5068) +(trans s722 s5081) +(trans s723 s5062) +(trans s723 s5075) +(trans s723 s5088) +(trans s724 s5069) +(trans s724 s5082) +(trans s724 s5095) +(trans s725 s5076) +(trans s725 s5089) +(trans s725 s5102) +(trans s726 s5083) +(trans s726 s5096) +(trans s726 s5109) +(trans s727 s5090) +(trans s727 s5103) +(trans s727 s5116) +(trans s728 s5097) +(trans s728 s5110) +(trans s728 s5123) +(trans s729 s5104) +(trans s729 s5117) +(trans s729 s5130) +(trans s730 s5111) +(trans s730 s5124) +(trans s730 s5137) +(trans s731 s5118) +(trans s731 s5131) +(trans s731 s5144) +(trans s732 s5125) +(trans s732 s5138) +(trans s732 s5151) +(trans s733 s5132) +(trans s733 s5145) +(trans s733 s5158) +(trans s734 s5139) +(trans s734 s5152) +(trans s734 s5165) +(trans s735 s5146) +(trans s735 s5159) +(trans s735 s5172) +(trans s736 s5153) +(trans s736 s5166) +(trans s736 s5179) +(trans s737 s5160) +(trans s737 s5173) +(trans s737 s5186) +(trans s738 s5167) +(trans s738 s5180) +(trans s738 s5193) +(trans s739 s5174) +(trans s739 s5187) +(trans s739 s5200) +(trans s740 s5181) +(trans s740 s5194) +(trans s740 s5207) +(trans s741 s5188) +(trans s741 s5201) +(trans s741 s5214) +(trans s742 s5195) +(trans s742 s5208) +(trans s742 s5221) +(trans s743 s5202) +(trans s743 s5215) +(trans s743 s5228) +(trans s744 s5209) +(trans s744 s5222) +(trans s744 s5235) +(trans s745 s5216) +(trans s745 s5229) +(trans s745 s5242) +(trans s746 s5223) +(trans s746 s5236) +(trans s746 s5249) +(trans s747 s5230) +(trans s747 s5243) +(trans s747 s5256) +(trans s748 s5237) +(trans s748 s5250) +(trans s748 s5263) +(trans s749 s5244) +(trans s749 s5257) +(trans s749 s5270) +(trans s750 s5251) +(trans s750 s5264) +(trans s750 s5277) +(trans s751 s5258) +(trans s751 s5271) +(trans s751 s5284) +(trans s752 s5265) +(trans s752 s5278) +(trans s752 s5291) +(trans s753 s5272) +(trans s753 s5285) +(trans s753 s5298) +(trans s754 s5279) +(trans s754 s5292) +(trans s754 s5305) +(trans s755 s5286) +(trans s755 s5299) +(trans s755 s5312) +(trans s756 s5293) +(trans s756 s5306) +(trans s756 s5319) +(trans s757 s5300) +(trans s757 s5313) +(trans s757 s5326) +(trans s758 s5307) +(trans s758 s5320) +(trans s758 s5333) +(trans s759 s5314) +(trans s759 s5327) +(trans s759 s5340) +(trans s760 s5321) +(trans s760 s5334) +(trans s760 s5347) +(trans s761 s5328) +(trans s761 s5341) +(trans s761 s5354) +(trans s762 s5335) +(trans s762 s5348) +(trans s762 s5361) +(trans s763 s5342) +(trans s763 s5355) +(trans s763 s5368) +(trans s764 s5349) +(trans s764 s5362) +(trans s764 s5375) +(trans s765 s5356) +(trans s765 s5369) +(trans s765 s5382) +(trans s766 s5363) +(trans s766 s5376) +(trans s766 s5389) +(trans s767 s5370) +(trans s767 s5383) +(trans s767 s5396) +(trans s768 s5377) +(trans s768 s5390) +(trans s768 s5403) +(trans s769 s5384) +(trans s769 s5397) +(trans s769 s5410) +(trans s770 s5391) +(trans s770 s5404) +(trans s770 s5417) +(trans s771 s5398) +(trans s771 s5411) +(trans s771 s5424) +(trans s772 s5405) +(trans s772 s5418) +(trans s772 s5431) +(trans s773 s5412) +(trans s773 s5425) +(trans s773 s5438) +(trans s774 s5419) +(trans s774 s5432) +(trans s774 s5445) +(trans s775 s5426) +(trans s775 s5439) +(trans s775 s5452) +(trans s776 s5433) +(trans s776 s5446) +(trans s776 s5459) +(trans s777 s5440) +(trans s777 s5453) +(trans s777 s5466) +(trans s778 s5447) +(trans s778 s5460) +(trans s778 s5473) +(trans s779 s5454) +(trans s779 s5467) +(trans s779 s5480) +(trans s780 s5461) +(trans s780 s5474) +(trans s780 s5487) +(trans s781 s5468) +(trans s781 s5481) +(trans s781 s5494) +(trans s782 s5475) +(trans s782 s5488) +(trans s782 s5501) +(trans s783 s5482) +(trans s783 s5495) +(trans s783 s5508) +(trans s784 s5489) +(trans s784 s5502) +(trans s784 s5515) +(trans s785 s5496) +(trans s785 s5509) +(trans s785 s5522) +(trans s786 s5503) +(trans s786 s5516) +(trans s786 s5529) +(trans s787 s5510) +(trans s787 s5523) +(trans s787 s5536) +(trans s788 s5517) +(trans s788 s5530) +(trans s788 s5543) +(trans s789 s5524) +(trans s789 s5537) +(trans s789 s5550) +(trans s790 s5531) +(trans s790 s5544) +(trans s790 s5557) +(trans s791 s5538) +(trans s791 s5551) +(trans s791 s5564) +(trans s792 s5545) +(trans s792 s5558) +(trans s792 s5571) +(trans s793 s5552) +(trans s793 s5565) +(trans s793 s5578) +(trans s794 s5559) +(trans s794 s5572) +(trans s794 s5585) +(trans s795 s5566) +(trans s795 s5579) +(trans s795 s5592) +(trans s796 s5573) +(trans s796 s5586) +(trans s796 s5599) +(trans s797 s5580) +(trans s797 s5593) +(trans s797 s5606) +(trans s798 s5587) +(trans s798 s5600) +(trans s798 s5613) +(trans s799 s5594) +(trans s799 s5607) +(trans s799 s5620) +(trans s800 s5601) +(trans s800 s5614) +(trans s800 s5627) +(trans s801 s5608) +(trans s801 s5621) +(trans s801 s5634) +(trans s802 s5615) +(trans s802 s5628) +(trans s802 s5641) +(trans s803 s5622) +(trans s803 s5635) +(trans s803 s5648) +(trans s804 s5629) +(trans s804 s5642) +(trans s804 s5655) +(trans s805 s5636) +(trans s805 s5649) +(trans s805 s5662) +(trans s806 s5643) +(trans s806 s5656) +(trans s806 s5669) +(trans s807 s5650) +(trans s807 s5663) +(trans s807 s5676) +(trans s808 s5657) +(trans s808 s5670) +(trans s808 s5683) +(trans s809 s5664) +(trans s809 s5677) +(trans s809 s5690) +(trans s810 s5671) +(trans s810 s5684) +(trans s810 s5697) +(trans s811 s5678) +(trans s811 s5691) +(trans s811 s5704) +(trans s812 s5685) +(trans s812 s5698) +(trans s812 s5711) +(trans s813 s5692) +(trans s813 s5705) +(trans s813 s5718) +(trans s814 s5699) +(trans s814 s5712) +(trans s814 s5725) +(trans s815 s5706) +(trans s815 s5719) +(trans s815 s5732) +(trans s816 s5713) +(trans s816 s5726) +(trans s816 s5739) +(trans s817 s5720) +(trans s817 s5733) +(trans s817 s5746) +(trans s818 s5727) +(trans s818 s5740) +(trans s818 s5753) +(trans s819 s5734) +(trans s819 s5747) +(trans s819 s5760) +(trans s820 s5741) +(trans s820 s5754) +(trans s820 s5767) +(trans s821 s5748) +(trans s821 s5761) +(trans s821 s5774) +(trans s822 s5755) +(trans s822 s5768) +(trans s822 s5781) +(trans s823 s5762) +(trans s823 s5775) +(trans s823 s5788) +(trans s824 s5769) +(trans s824 s5782) +(trans s824 s5795) +(trans s825 s5776) +(trans s825 s5789) +(trans s825 s5802) +(trans s826 s5783) +(trans s826 s5796) +(trans s826 s5809) +(trans s827 s5790) +(trans s827 s5803) +(trans s827 s5816) +(trans s828 s5797) +(trans s828 s5810) +(trans s828 s5823) +(trans s829 s5804) +(trans s829 s5817) +(trans s829 s5830) +(trans s830 s5811) +(trans s830 s5824) +(trans s830 s5837) +(trans s831 s5818) +(trans s831 s5831) +(trans s831 s5844) +(trans s832 s5825) +(trans s832 s5838) +(trans s832 s5851) +(trans s833 s5832) +(trans s833 s5845) +(trans s833 s5858) +(trans s834 s5839) +(trans s834 s5852) +(trans s834 s5865) +(trans s835 s5846) +(trans s835 s5859) +(trans s835 s5872) +(trans s836 s5853) +(trans s836 s5866) +(trans s836 s5879) +(trans s837 s5860) +(trans s837 s5873) +(trans s837 s5886) +(trans s838 s5867) +(trans s838 s5880) +(trans s838 s5893) +(trans s839 s5874) +(trans s839 s5887) +(trans s839 s5900) +(trans s840 s5881) +(trans s840 s5894) +(trans s840 s5907) +(trans s841 s5888) +(trans s841 s5901) +(trans s841 s5914) +(trans s842 s5895) +(trans s842 s5908) +(trans s842 s5921) +(trans s843 s5902) +(trans s843 s5915) +(trans s843 s5928) +(trans s844 s5909) +(trans s844 s5922) +(trans s844 s5935) +(trans s845 s5916) +(trans s845 s5929) +(trans s845 s5942) +(trans s846 s5923) +(trans s846 s5936) +(trans s846 s5949) +(trans s847 s5930) +(trans s847 s5943) +(trans s847 s5956) +(trans s848 s5937) +(trans s848 s5950) +(trans s848 s5963) +(trans s849 s5944) +(trans s849 s5957) +(trans s849 s5970) +(trans s850 s5951) +(trans s850 s5964) +(trans s850 s5977) +(trans s851 s5958) +(trans s851 s5971) +(trans s851 s5984) +(trans s852 s5965) +(trans s852 s5978) +(trans s852 s5991) +(trans s853 s5972) +(trans s853 s5985) +(trans s853 s5998) +(trans s854 s5979) +(trans s854 s5992) +(trans s854 s5) +(trans s855 s5986) +(trans s855 s5999) +(trans s855 s12) +(trans s856 s5993) +(trans s856 s6) +(trans s856 s19) +(trans s857 s0) +(trans s857 s13) +(trans s857 s26) +(trans s858 s7) +(trans s858 s20) +(trans s858 s33) +(trans s859 s14) +(trans s859 s27) +(trans s859 s40) +(trans s860 s21) +(trans s860 s34) +(trans s860 s47) +(trans s861 s28) +(trans s861 s41) +(trans s861 s54) +(trans s862 s35) +(trans s862 s48) +(trans s862 s61) +(trans s863 s42) +(trans s863 s55) +(trans s863 s68) +(trans s864 s49) +(trans s864 s62) +(trans s864 s75) +(trans s865 s56) +(trans s865 s69) +(trans s865 s82) +(trans s866 s63) +(trans s866 s76) +(trans s866 s89) +(trans s867 s70) +(trans s867 s83) +(trans s867 s96) +(trans s868 s77) +(trans s868 s90) +(trans s868 s103) +(trans s869 s84) +(trans s869 s97) +(trans s869 s110) +(trans s870 s91) +(trans s870 s104) +(trans s870 s117) +(trans s871 s98) +(trans s871 s111) +(trans s871 s124) +(trans s872 s105) +(trans s872 s118) +(trans s872 s131) +(trans s873 s112) +(trans s873 s125) +(trans s873 s138) +(trans s874 s119) +(trans s874 s132) +(trans s874 s145) +(trans s875 s126) +(trans s875 s139) +(trans s875 s152) +(trans s876 s133) +(trans s876 s146) +(trans s876 s159) +(trans s877 s140) +(trans s877 s153) +(trans s877 s166) +(trans s878 s147) +(trans s878 s160) +(trans s878 s173) +(trans s879 s154) +(trans s879 s167) +(trans s879 s180) +(trans s880 s161) +(trans s880 s174) +(trans s880 s187) +(trans s881 s168) +(trans s881 s181) +(trans s881 s194) +(trans s882 s175) +(trans s882 s188) +(trans s882 s201) +(trans s883 s182) +(trans s883 s195) +(trans s883 s208) +(trans s884 s189) +(trans s884 s202) +(trans s884 s215) +(trans s885 s196) +(trans s885 s209) +(trans s885 s222) +(trans s886 s203) +(trans s886 s216) +(trans s886 s229) +(trans s887 s210) +(trans s887 s223) +(trans s887 s236) +(trans s888 s217) +(trans s888 s230) +(trans s888 s243) +(trans s889 s224) +(trans s889 s237) +(trans s889 s250) +(trans s890 s231) +(trans s890 s244) +(trans s890 s257) +(trans s891 s238) +(trans s891 s251) +(trans s891 s264) +(trans s892 s245) +(trans s892 s258) +(trans s892 s271) +(trans s893 s252) +(trans s893 s265) +(trans s893 s278) +(trans s894 s259) +(trans s894 s272) +(trans s894 s285) +(trans s895 s266) +(trans s895 s279) +(trans s895 s292) +(trans s896 s273) +(trans s896 s286) +(trans s896 s299) +(trans s897 s280) +(trans s897 s293) +(trans s897 s306) +(trans s898 s287) +(trans s898 s300) +(trans s898 s313) +(trans s899 s294) +(trans s899 s307) +(trans s899 s320) +(trans s900 s301) +(trans s900 s314) +(trans s900 s327) +(trans s901 s308) +(trans s901 s321) +(trans s901 s334) +(trans s902 s315) +(trans s902 s328) +(trans s902 s341) +(trans s903 s322) +(trans s903 s335) +(trans s903 s348) +(trans s904 s329) +(trans s904 s342) +(trans s904 s355) +(trans s905 s336) +(trans s905 s349) +(trans s905 s362) +(trans s906 s343) +(trans s906 s356) +(trans s906 s369) +(trans s907 s350) +(trans s907 s363) +(trans s907 s376) +(trans s908 s357) +(trans s908 s370) +(trans s908 s383) +(trans s909 s364) +(trans s909 s377) +(trans s909 s390) +(trans s910 s371) +(trans s910 s384) +(trans s910 s397) +(trans s911 s378) +(trans s911 s391) +(trans s911 s404) +(trans s912 s385) +(trans s912 s398) +(trans s912 s411) +(trans s913 s392) +(trans s913 s405) +(trans s913 s418) +(trans s914 s399) +(trans s914 s412) +(trans s914 s425) +(trans s915 s406) +(trans s915 s419) +(trans s915 s432) +(trans s916 s413) +(trans s916 s426) +(trans s916 s439) +(trans s917 s420) +(trans s917 s433) +(trans s917 s446) +(trans s918 s427) +(trans s918 s440) +(trans s918 s453) +(trans s919 s434) +(trans s919 s447) +(trans s919 s460) +(trans s920 s441) +(trans s920 s454) +(trans s920 s467) +(trans s921 s448) +(trans s921 s461) +(trans s921 s474) +(trans s922 s455) +(trans s922 s468) +(trans s922 s481) +(trans s923 s462) +(trans s923 s475) +(trans s923 s488) +(trans s924 s469) +(trans s924 s482) +(trans s924 s495) +(trans s925 s476) +(trans s925 s489) +(trans s925 s502) +(trans s926 s483) +(trans s926 s496) +(trans s926 s509) +(trans s927 s490) +(trans s927 s503) +(trans s927 s516) +(trans s928 s497) +(trans s928 s510) +(trans s928 s523) +(trans s929 s504) +(trans s929 s517) +(trans s929 s530) +(trans s930 s511) +(trans s930 s524) +(trans s930 s537) +(trans s931 s518) +(trans s931 s531) +(trans s931 s544) +(trans s932 s525) +(trans s932 s538) +(trans s932 s551) +(trans s933 s532) +(trans s933 s545) +(trans s933 s558) +(trans s934 s539) +(trans s934 s552) +(trans s934 s565) +(trans s935 s546) +(trans s935 s559) +(trans s935 s572) +(trans s936 s553) +(trans s936 s566) +(trans s936 s579) +(trans s937 s560) +(trans s937 s573) +(trans s937 s586) +(trans s938 s567) +(trans s938 s580) +(trans s938 s593) +(trans s939 s574) +(trans s939 s587) +(trans s939 s600) +(trans s940 s581) +(trans s940 s594) +(trans s940 s607) +(trans s941 s588) +(trans s941 s601) +(trans s941 s614) +(trans s942 s595) +(trans s942 s608) +(trans s942 s621) +(trans s943 s602) +(trans s943 s615) +(trans s943 s628) +(trans s944 s609) +(trans s944 s622) +(trans s944 s635) +(trans s945 s616) +(trans s945 s629) +(trans s945 s642) +(trans s946 s623) +(trans s946 s636) +(trans s946 s649) +(trans s947 s630) +(trans s947 s643) +(trans s947 s656) +(trans s948 s637) +(trans s948 s650) +(trans s948 s663) +(trans s949 s644) +(trans s949 s657) +(trans s949 s670) +(trans s950 s651) +(trans s950 s664) +(trans s950 s677) +(trans s951 s658) +(trans s951 s671) +(trans s951 s684) +(trans s952 s665) +(trans s952 s678) +(trans s952 s691) +(trans s953 s672) +(trans s953 s685) +(trans s953 s698) +(trans s954 s679) +(trans s954 s692) +(trans s954 s705) +(trans s955 s686) +(trans s955 s699) +(trans s955 s712) +(trans s956 s693) +(trans s956 s706) +(trans s956 s719) +(trans s957 s700) +(trans s957 s713) +(trans s957 s726) +(trans s958 s707) +(trans s958 s720) +(trans s958 s733) +(trans s959 s714) +(trans s959 s727) +(trans s959 s740) +(trans s960 s721) +(trans s960 s734) +(trans s960 s747) +(trans s961 s728) +(trans s961 s741) +(trans s961 s754) +(trans s962 s735) +(trans s962 s748) +(trans s962 s761) +(trans s963 s742) +(trans s963 s755) +(trans s963 s768) +(trans s964 s749) +(trans s964 s762) +(trans s964 s775) +(trans s965 s756) +(trans s965 s769) +(trans s965 s782) +(trans s966 s763) +(trans s966 s776) +(trans s966 s789) +(trans s967 s770) +(trans s967 s783) +(trans s967 s796) +(trans s968 s777) +(trans s968 s790) +(trans s968 s803) +(trans s969 s784) +(trans s969 s797) +(trans s969 s810) +(trans s970 s791) +(trans s970 s804) +(trans s970 s817) +(trans s971 s798) +(trans s971 s811) +(trans s971 s824) +(trans s972 s805) +(trans s972 s818) +(trans s972 s831) +(trans s973 s812) +(trans s973 s825) +(trans s973 s838) +(trans s974 s819) +(trans s974 s832) +(trans s974 s845) +(trans s975 s826) +(trans s975 s839) +(trans s975 s852) +(trans s976 s833) +(trans s976 s846) +(trans s976 s859) +(trans s977 s840) +(trans s977 s853) +(trans s977 s866) +(trans s978 s847) +(trans s978 s860) +(trans s978 s873) +(trans s979 s854) +(trans s979 s867) +(trans s979 s880) +(trans s980 s861) +(trans s980 s874) +(trans s980 s887) +(trans s981 s868) +(trans s981 s881) +(trans s981 s894) +(trans s982 s875) +(trans s982 s888) +(trans s982 s901) +(trans s983 s882) +(trans s983 s895) +(trans s983 s908) +(trans s984 s889) +(trans s984 s902) +(trans s984 s915) +(trans s985 s896) +(trans s985 s909) +(trans s985 s922) +(trans s986 s903) +(trans s986 s916) +(trans s986 s929) +(trans s987 s910) +(trans s987 s923) +(trans s987 s936) +(trans s988 s917) +(trans s988 s930) +(trans s988 s943) +(trans s989 s924) +(trans s989 s937) +(trans s989 s950) +(trans s990 s931) +(trans s990 s944) +(trans s990 s957) +(trans s991 s938) +(trans s991 s951) +(trans s991 s964) +(trans s992 s945) +(trans s992 s958) +(trans s992 s971) +(trans s993 s952) +(trans s993 s965) +(trans s993 s978) +(trans s994 s959) +(trans s994 s972) +(trans s994 s985) +(trans s995 s966) +(trans s995 s979) +(trans s995 s992) +(trans s996 s973) +(trans s996 s986) +(trans s996 s999) +(trans s997 s980) +(trans s997 s993) +(trans s997 s1006) +(trans s998 s987) +(trans s998 s1000) +(trans s998 s1013) +(trans s999 s994) +(trans s999 s1007) +(trans s999 s1020) +(trans s1000 s1001) +(trans s1000 s1014) +(trans s1000 s1027) +(trans s1001 s1008) +(trans s1001 s1021) +(trans s1001 s1034) +(trans s1002 s1015) +(trans s1002 s1028) +(trans s1002 s1041) +(trans s1003 s1022) +(trans s1003 s1035) +(trans s1003 s1048) +(trans s1004 s1029) +(trans s1004 s1042) +(trans s1004 s1055) +(trans s1005 s1036) +(trans s1005 s1049) +(trans s1005 s1062) +(trans s1006 s1043) +(trans s1006 s1056) +(trans s1006 s1069) +(trans s1007 s1050) +(trans s1007 s1063) +(trans s1007 s1076) +(trans s1008 s1057) +(trans s1008 s1070) +(trans s1008 s1083) +(trans s1009 s1064) +(trans s1009 s1077) +(trans s1009 s1090) +(trans s1010 s1071) +(trans s1010 s1084) +(trans s1010 s1097) +(trans s1011 s1078) +(trans s1011 s1091) +(trans s1011 s1104) +(trans s1012 s1085) +(trans s1012 s1098) +(trans s1012 s1111) +(trans s1013 s1092) +(trans s1013 s1105) +(trans s1013 s1118) +(trans s1014 s1099) +(trans s1014 s1112) +(trans s1014 s1125) +(trans s1015 s1106) +(trans s1015 s1119) +(trans s1015 s1132) +(trans s1016 s1113) +(trans s1016 s1126) +(trans s1016 s1139) +(trans s1017 s1120) +(trans s1017 s1133) +(trans s1017 s1146) +(trans s1018 s1127) +(trans s1018 s1140) +(trans s1018 s1153) +(trans s1019 s1134) +(trans s1019 s1147) +(trans s1019 s1160) +(trans s1020 s1141) +(trans s1020 s1154) +(trans s1020 s1167) +(trans s1021 s1148) +(trans s1021 s1161) +(trans s1021 s1174) +(trans s1022 s1155) +(trans s1022 s1168) +(trans s1022 s1181) +(trans s1023 s1162) +(trans s1023 s1175) +(trans s1023 s1188) +(trans s1024 s1169) +(trans s1024 s1182) +(trans s1024 s1195) +(trans s1025 s1176) +(trans s1025 s1189) +(trans s1025 s1202) +(trans s1026 s1183) +(trans s1026 s1196) +(trans s1026 s1209) +(trans s1027 s1190) +(trans s1027 s1203) +(trans s1027 s1216) +(trans s1028 s1197) +(trans s1028 s1210) +(trans s1028 s1223) +(trans s1029 s1204) +(trans s1029 s1217) +(trans s1029 s1230) +(trans s1030 s1211) +(trans s1030 s1224) +(trans s1030 s1237) +(trans s1031 s1218) +(trans s1031 s1231) +(trans s1031 s1244) +(trans s1032 s1225) +(trans s1032 s1238) +(trans s1032 s1251) +(trans s1033 s1232) +(trans s1033 s1245) +(trans s1033 s1258) +(trans s1034 s1239) +(trans s1034 s1252) +(trans s1034 s1265) +(trans s1035 s1246) +(trans s1035 s1259) +(trans s1035 s1272) +(trans s1036 s1253) +(trans s1036 s1266) +(trans s1036 s1279) +(trans s1037 s1260) +(trans s1037 s1273) +(trans s1037 s1286) +(trans s1038 s1267) +(trans s1038 s1280) +(trans s1038 s1293) +(trans s1039 s1274) +(trans s1039 s1287) +(trans s1039 s1300) +(trans s1040 s1281) +(trans s1040 s1294) +(trans s1040 s1307) +(trans s1041 s1288) +(trans s1041 s1301) +(trans s1041 s1314) +(trans s1042 s1295) +(trans s1042 s1308) +(trans s1042 s1321) +(trans s1043 s1302) +(trans s1043 s1315) +(trans s1043 s1328) +(trans s1044 s1309) +(trans s1044 s1322) +(trans s1044 s1335) +(trans s1045 s1316) +(trans s1045 s1329) +(trans s1045 s1342) +(trans s1046 s1323) +(trans s1046 s1336) +(trans s1046 s1349) +(trans s1047 s1330) +(trans s1047 s1343) +(trans s1047 s1356) +(trans s1048 s1337) +(trans s1048 s1350) +(trans s1048 s1363) +(trans s1049 s1344) +(trans s1049 s1357) +(trans s1049 s1370) +(trans s1050 s1351) +(trans s1050 s1364) +(trans s1050 s1377) +(trans s1051 s1358) +(trans s1051 s1371) +(trans s1051 s1384) +(trans s1052 s1365) +(trans s1052 s1378) +(trans s1052 s1391) +(trans s1053 s1372) +(trans s1053 s1385) +(trans s1053 s1398) +(trans s1054 s1379) +(trans s1054 s1392) +(trans s1054 s1405) +(trans s1055 s1386) +(trans s1055 s1399) +(trans s1055 s1412) +(trans s1056 s1393) +(trans s1056 s1406) +(trans s1056 s1419) +(trans s1057 s1400) +(trans s1057 s1413) +(trans s1057 s1426) +(trans s1058 s1407) +(trans s1058 s1420) +(trans s1058 s1433) +(trans s1059 s1414) +(trans s1059 s1427) +(trans s1059 s1440) +(trans s1060 s1421) +(trans s1060 s1434) +(trans s1060 s1447) +(trans s1061 s1428) +(trans s1061 s1441) +(trans s1061 s1454) +(trans s1062 s1435) +(trans s1062 s1448) +(trans s1062 s1461) +(trans s1063 s1442) +(trans s1063 s1455) +(trans s1063 s1468) +(trans s1064 s1449) +(trans s1064 s1462) +(trans s1064 s1475) +(trans s1065 s1456) +(trans s1065 s1469) +(trans s1065 s1482) +(trans s1066 s1463) +(trans s1066 s1476) +(trans s1066 s1489) +(trans s1067 s1470) +(trans s1067 s1483) +(trans s1067 s1496) +(trans s1068 s1477) +(trans s1068 s1490) +(trans s1068 s1503) +(trans s1069 s1484) +(trans s1069 s1497) +(trans s1069 s1510) +(trans s1070 s1491) +(trans s1070 s1504) +(trans s1070 s1517) +(trans s1071 s1498) +(trans s1071 s1511) +(trans s1071 s1524) +(trans s1072 s1505) +(trans s1072 s1518) +(trans s1072 s1531) +(trans s1073 s1512) +(trans s1073 s1525) +(trans s1073 s1538) +(trans s1074 s1519) +(trans s1074 s1532) +(trans s1074 s1545) +(trans s1075 s1526) +(trans s1075 s1539) +(trans s1075 s1552) +(trans s1076 s1533) +(trans s1076 s1546) +(trans s1076 s1559) +(trans s1077 s1540) +(trans s1077 s1553) +(trans s1077 s1566) +(trans s1078 s1547) +(trans s1078 s1560) +(trans s1078 s1573) +(trans s1079 s1554) +(trans s1079 s1567) +(trans s1079 s1580) +(trans s1080 s1561) +(trans s1080 s1574) +(trans s1080 s1587) +(trans s1081 s1568) +(trans s1081 s1581) +(trans s1081 s1594) +(trans s1082 s1575) +(trans s1082 s1588) +(trans s1082 s1601) +(trans s1083 s1582) +(trans s1083 s1595) +(trans s1083 s1608) +(trans s1084 s1589) +(trans s1084 s1602) +(trans s1084 s1615) +(trans s1085 s1596) +(trans s1085 s1609) +(trans s1085 s1622) +(trans s1086 s1603) +(trans s1086 s1616) +(trans s1086 s1629) +(trans s1087 s1610) +(trans s1087 s1623) +(trans s1087 s1636) +(trans s1088 s1617) +(trans s1088 s1630) +(trans s1088 s1643) +(trans s1089 s1624) +(trans s1089 s1637) +(trans s1089 s1650) +(trans s1090 s1631) +(trans s1090 s1644) +(trans s1090 s1657) +(trans s1091 s1638) +(trans s1091 s1651) +(trans s1091 s1664) +(trans s1092 s1645) +(trans s1092 s1658) +(trans s1092 s1671) +(trans s1093 s1652) +(trans s1093 s1665) +(trans s1093 s1678) +(trans s1094 s1659) +(trans s1094 s1672) +(trans s1094 s1685) +(trans s1095 s1666) +(trans s1095 s1679) +(trans s1095 s1692) +(trans s1096 s1673) +(trans s1096 s1686) +(trans s1096 s1699) +(trans s1097 s1680) +(trans s1097 s1693) +(trans s1097 s1706) +(trans s1098 s1687) +(trans s1098 s1700) +(trans s1098 s1713) +(trans s1099 s1694) +(trans s1099 s1707) +(trans s1099 s1720) +(trans s1100 s1701) +(trans s1100 s1714) +(trans s1100 s1727) +(trans s1101 s1708) +(trans s1101 s1721) +(trans s1101 s1734) +(trans s1102 s1715) +(trans s1102 s1728) +(trans s1102 s1741) +(trans s1103 s1722) +(trans s1103 s1735) +(trans s1103 s1748) +(trans s1104 s1729) +(trans s1104 s1742) +(trans s1104 s1755) +(trans s1105 s1736) +(trans s1105 s1749) +(trans s1105 s1762) +(trans s1106 s1743) +(trans s1106 s1756) +(trans s1106 s1769) +(trans s1107 s1750) +(trans s1107 s1763) +(trans s1107 s1776) +(trans s1108 s1757) +(trans s1108 s1770) +(trans s1108 s1783) +(trans s1109 s1764) +(trans s1109 s1777) +(trans s1109 s1790) +(trans s1110 s1771) +(trans s1110 s1784) +(trans s1110 s1797) +(trans s1111 s1778) +(trans s1111 s1791) +(trans s1111 s1804) +(trans s1112 s1785) +(trans s1112 s1798) +(trans s1112 s1811) +(trans s1113 s1792) +(trans s1113 s1805) +(trans s1113 s1818) +(trans s1114 s1799) +(trans s1114 s1812) +(trans s1114 s1825) +(trans s1115 s1806) +(trans s1115 s1819) +(trans s1115 s1832) +(trans s1116 s1813) +(trans s1116 s1826) +(trans s1116 s1839) +(trans s1117 s1820) +(trans s1117 s1833) +(trans s1117 s1846) +(trans s1118 s1827) +(trans s1118 s1840) +(trans s1118 s1853) +(trans s1119 s1834) +(trans s1119 s1847) +(trans s1119 s1860) +(trans s1120 s1841) +(trans s1120 s1854) +(trans s1120 s1867) +(trans s1121 s1848) +(trans s1121 s1861) +(trans s1121 s1874) +(trans s1122 s1855) +(trans s1122 s1868) +(trans s1122 s1881) +(trans s1123 s1862) +(trans s1123 s1875) +(trans s1123 s1888) +(trans s1124 s1869) +(trans s1124 s1882) +(trans s1124 s1895) +(trans s1125 s1876) +(trans s1125 s1889) +(trans s1125 s1902) +(trans s1126 s1883) +(trans s1126 s1896) +(trans s1126 s1909) +(trans s1127 s1890) +(trans s1127 s1903) +(trans s1127 s1916) +(trans s1128 s1897) +(trans s1128 s1910) +(trans s1128 s1923) +(trans s1129 s1904) +(trans s1129 s1917) +(trans s1129 s1930) +(trans s1130 s1911) +(trans s1130 s1924) +(trans s1130 s1937) +(trans s1131 s1918) +(trans s1131 s1931) +(trans s1131 s1944) +(trans s1132 s1925) +(trans s1132 s1938) +(trans s1132 s1951) +(trans s1133 s1932) +(trans s1133 s1945) +(trans s1133 s1958) +(trans s1134 s1939) +(trans s1134 s1952) +(trans s1134 s1965) +(trans s1135 s1946) +(trans s1135 s1959) +(trans s1135 s1972) +(trans s1136 s1953) +(trans s1136 s1966) +(trans s1136 s1979) +(trans s1137 s1960) +(trans s1137 s1973) +(trans s1137 s1986) +(trans s1138 s1967) +(trans s1138 s1980) +(trans s1138 s1993) +(trans s1139 s1974) +(trans s1139 s1987) +(trans s1139 s2000) +(trans s1140 s1981) +(trans s1140 s1994) +(trans s1140 s2007) +(trans s1141 s1988) +(trans s1141 s2001) +(trans s1141 s2014) +(trans s1142 s1995) +(trans s1142 s2008) +(trans s1142 s2021) +(trans s1143 s2002) +(trans s1143 s2015) +(trans s1143 s2028) +(trans s1144 s2009) +(trans s1144 s2022) +(trans s1144 s2035) +(trans s1145 s2016) +(trans s1145 s2029) +(trans s1145 s2042) +(trans s1146 s2023) +(trans s1146 s2036) +(trans s1146 s2049) +(trans s1147 s2030) +(trans s1147 s2043) +(trans s1147 s2056) +(trans s1148 s2037) +(trans s1148 s2050) +(trans s1148 s2063) +(trans s1149 s2044) +(trans s1149 s2057) +(trans s1149 s2070) +(trans s1150 s2051) +(trans s1150 s2064) +(trans s1150 s2077) +(trans s1151 s2058) +(trans s1151 s2071) +(trans s1151 s2084) +(trans s1152 s2065) +(trans s1152 s2078) +(trans s1152 s2091) +(trans s1153 s2072) +(trans s1153 s2085) +(trans s1153 s2098) +(trans s1154 s2079) +(trans s1154 s2092) +(trans s1154 s2105) +(trans s1155 s2086) +(trans s1155 s2099) +(trans s1155 s2112) +(trans s1156 s2093) +(trans s1156 s2106) +(trans s1156 s2119) +(trans s1157 s2100) +(trans s1157 s2113) +(trans s1157 s2126) +(trans s1158 s2107) +(trans s1158 s2120) +(trans s1158 s2133) +(trans s1159 s2114) +(trans s1159 s2127) +(trans s1159 s2140) +(trans s1160 s2121) +(trans s1160 s2134) +(trans s1160 s2147) +(trans s1161 s2128) +(trans s1161 s2141) +(trans s1161 s2154) +(trans s1162 s2135) +(trans s1162 s2148) +(trans s1162 s2161) +(trans s1163 s2142) +(trans s1163 s2155) +(trans s1163 s2168) +(trans s1164 s2149) +(trans s1164 s2162) +(trans s1164 s2175) +(trans s1165 s2156) +(trans s1165 s2169) +(trans s1165 s2182) +(trans s1166 s2163) +(trans s1166 s2176) +(trans s1166 s2189) +(trans s1167 s2170) +(trans s1167 s2183) +(trans s1167 s2196) +(trans s1168 s2177) +(trans s1168 s2190) +(trans s1168 s2203) +(trans s1169 s2184) +(trans s1169 s2197) +(trans s1169 s2210) +(trans s1170 s2191) +(trans s1170 s2204) +(trans s1170 s2217) +(trans s1171 s2198) +(trans s1171 s2211) +(trans s1171 s2224) +(trans s1172 s2205) +(trans s1172 s2218) +(trans s1172 s2231) +(trans s1173 s2212) +(trans s1173 s2225) +(trans s1173 s2238) +(trans s1174 s2219) +(trans s1174 s2232) +(trans s1174 s2245) +(trans s1175 s2226) +(trans s1175 s2239) +(trans s1175 s2252) +(trans s1176 s2233) +(trans s1176 s2246) +(trans s1176 s2259) +(trans s1177 s2240) +(trans s1177 s2253) +(trans s1177 s2266) +(trans s1178 s2247) +(trans s1178 s2260) +(trans s1178 s2273) +(trans s1179 s2254) +(trans s1179 s2267) +(trans s1179 s2280) +(trans s1180 s2261) +(trans s1180 s2274) +(trans s1180 s2287) +(trans s1181 s2268) +(trans s1181 s2281) +(trans s1181 s2294) +(trans s1182 s2275) +(trans s1182 s2288) +(trans s1182 s2301) +(trans s1183 s2282) +(trans s1183 s2295) +(trans s1183 s2308) +(trans s1184 s2289) +(trans s1184 s2302) +(trans s1184 s2315) +(trans s1185 s2296) +(trans s1185 s2309) +(trans s1185 s2322) +(trans s1186 s2303) +(trans s1186 s2316) +(trans s1186 s2329) +(trans s1187 s2310) +(trans s1187 s2323) +(trans s1187 s2336) +(trans s1188 s2317) +(trans s1188 s2330) +(trans s1188 s2343) +(trans s1189 s2324) +(trans s1189 s2337) +(trans s1189 s2350) +(trans s1190 s2331) +(trans s1190 s2344) +(trans s1190 s2357) +(trans s1191 s2338) +(trans s1191 s2351) +(trans s1191 s2364) +(trans s1192 s2345) +(trans s1192 s2358) +(trans s1192 s2371) +(trans s1193 s2352) +(trans s1193 s2365) +(trans s1193 s2378) +(trans s1194 s2359) +(trans s1194 s2372) +(trans s1194 s2385) +(trans s1195 s2366) +(trans s1195 s2379) +(trans s1195 s2392) +(trans s1196 s2373) +(trans s1196 s2386) +(trans s1196 s2399) +(trans s1197 s2380) +(trans s1197 s2393) +(trans s1197 s2406) +(trans s1198 s2387) +(trans s1198 s2400) +(trans s1198 s2413) +(trans s1199 s2394) +(trans s1199 s2407) +(trans s1199 s2420) +(trans s1200 s2401) +(trans s1200 s2414) +(trans s1200 s2427) +(trans s1201 s2408) +(trans s1201 s2421) +(trans s1201 s2434) +(trans s1202 s2415) +(trans s1202 s2428) +(trans s1202 s2441) +(trans s1203 s2422) +(trans s1203 s2435) +(trans s1203 s2448) +(trans s1204 s2429) +(trans s1204 s2442) +(trans s1204 s2455) +(trans s1205 s2436) +(trans s1205 s2449) +(trans s1205 s2462) +(trans s1206 s2443) +(trans s1206 s2456) +(trans s1206 s2469) +(trans s1207 s2450) +(trans s1207 s2463) +(trans s1207 s2476) +(trans s1208 s2457) +(trans s1208 s2470) +(trans s1208 s2483) +(trans s1209 s2464) +(trans s1209 s2477) +(trans s1209 s2490) +(trans s1210 s2471) +(trans s1210 s2484) +(trans s1210 s2497) +(trans s1211 s2478) +(trans s1211 s2491) +(trans s1211 s2504) +(trans s1212 s2485) +(trans s1212 s2498) +(trans s1212 s2511) +(trans s1213 s2492) +(trans s1213 s2505) +(trans s1213 s2518) +(trans s1214 s2499) +(trans s1214 s2512) +(trans s1214 s2525) +(trans s1215 s2506) +(trans s1215 s2519) +(trans s1215 s2532) +(trans s1216 s2513) +(trans s1216 s2526) +(trans s1216 s2539) +(trans s1217 s2520) +(trans s1217 s2533) +(trans s1217 s2546) +(trans s1218 s2527) +(trans s1218 s2540) +(trans s1218 s2553) +(trans s1219 s2534) +(trans s1219 s2547) +(trans s1219 s2560) +(trans s1220 s2541) +(trans s1220 s2554) +(trans s1220 s2567) +(trans s1221 s2548) +(trans s1221 s2561) +(trans s1221 s2574) +(trans s1222 s2555) +(trans s1222 s2568) +(trans s1222 s2581) +(trans s1223 s2562) +(trans s1223 s2575) +(trans s1223 s2588) +(trans s1224 s2569) +(trans s1224 s2582) +(trans s1224 s2595) +(trans s1225 s2576) +(trans s1225 s2589) +(trans s1225 s2602) +(trans s1226 s2583) +(trans s1226 s2596) +(trans s1226 s2609) +(trans s1227 s2590) +(trans s1227 s2603) +(trans s1227 s2616) +(trans s1228 s2597) +(trans s1228 s2610) +(trans s1228 s2623) +(trans s1229 s2604) +(trans s1229 s2617) +(trans s1229 s2630) +(trans s1230 s2611) +(trans s1230 s2624) +(trans s1230 s2637) +(trans s1231 s2618) +(trans s1231 s2631) +(trans s1231 s2644) +(trans s1232 s2625) +(trans s1232 s2638) +(trans s1232 s2651) +(trans s1233 s2632) +(trans s1233 s2645) +(trans s1233 s2658) +(trans s1234 s2639) +(trans s1234 s2652) +(trans s1234 s2665) +(trans s1235 s2646) +(trans s1235 s2659) +(trans s1235 s2672) +(trans s1236 s2653) +(trans s1236 s2666) +(trans s1236 s2679) +(trans s1237 s2660) +(trans s1237 s2673) +(trans s1237 s2686) +(trans s1238 s2667) +(trans s1238 s2680) +(trans s1238 s2693) +(trans s1239 s2674) +(trans s1239 s2687) +(trans s1239 s2700) +(trans s1240 s2681) +(trans s1240 s2694) +(trans s1240 s2707) +(trans s1241 s2688) +(trans s1241 s2701) +(trans s1241 s2714) +(trans s1242 s2695) +(trans s1242 s2708) +(trans s1242 s2721) +(trans s1243 s2702) +(trans s1243 s2715) +(trans s1243 s2728) +(trans s1244 s2709) +(trans s1244 s2722) +(trans s1244 s2735) +(trans s1245 s2716) +(trans s1245 s2729) +(trans s1245 s2742) +(trans s1246 s2723) +(trans s1246 s2736) +(trans s1246 s2749) +(trans s1247 s2730) +(trans s1247 s2743) +(trans s1247 s2756) +(trans s1248 s2737) +(trans s1248 s2750) +(trans s1248 s2763) +(trans s1249 s2744) +(trans s1249 s2757) +(trans s1249 s2770) +(trans s1250 s2751) +(trans s1250 s2764) +(trans s1250 s2777) +(trans s1251 s2758) +(trans s1251 s2771) +(trans s1251 s2784) +(trans s1252 s2765) +(trans s1252 s2778) +(trans s1252 s2791) +(trans s1253 s2772) +(trans s1253 s2785) +(trans s1253 s2798) +(trans s1254 s2779) +(trans s1254 s2792) +(trans s1254 s2805) +(trans s1255 s2786) +(trans s1255 s2799) +(trans s1255 s2812) +(trans s1256 s2793) +(trans s1256 s2806) +(trans s1256 s2819) +(trans s1257 s2800) +(trans s1257 s2813) +(trans s1257 s2826) +(trans s1258 s2807) +(trans s1258 s2820) +(trans s1258 s2833) +(trans s1259 s2814) +(trans s1259 s2827) +(trans s1259 s2840) +(trans s1260 s2821) +(trans s1260 s2834) +(trans s1260 s2847) +(trans s1261 s2828) +(trans s1261 s2841) +(trans s1261 s2854) +(trans s1262 s2835) +(trans s1262 s2848) +(trans s1262 s2861) +(trans s1263 s2842) +(trans s1263 s2855) +(trans s1263 s2868) +(trans s1264 s2849) +(trans s1264 s2862) +(trans s1264 s2875) +(trans s1265 s2856) +(trans s1265 s2869) +(trans s1265 s2882) +(trans s1266 s2863) +(trans s1266 s2876) +(trans s1266 s2889) +(trans s1267 s2870) +(trans s1267 s2883) +(trans s1267 s2896) +(trans s1268 s2877) +(trans s1268 s2890) +(trans s1268 s2903) +(trans s1269 s2884) +(trans s1269 s2897) +(trans s1269 s2910) +(trans s1270 s2891) +(trans s1270 s2904) +(trans s1270 s2917) +(trans s1271 s2898) +(trans s1271 s2911) +(trans s1271 s2924) +(trans s1272 s2905) +(trans s1272 s2918) +(trans s1272 s2931) +(trans s1273 s2912) +(trans s1273 s2925) +(trans s1273 s2938) +(trans s1274 s2919) +(trans s1274 s2932) +(trans s1274 s2945) +(trans s1275 s2926) +(trans s1275 s2939) +(trans s1275 s2952) +(trans s1276 s2933) +(trans s1276 s2946) +(trans s1276 s2959) +(trans s1277 s2940) +(trans s1277 s2953) +(trans s1277 s2966) +(trans s1278 s2947) +(trans s1278 s2960) +(trans s1278 s2973) +(trans s1279 s2954) +(trans s1279 s2967) +(trans s1279 s2980) +(trans s1280 s2961) +(trans s1280 s2974) +(trans s1280 s2987) +(trans s1281 s2968) +(trans s1281 s2981) +(trans s1281 s2994) +(trans s1282 s2975) +(trans s1282 s2988) +(trans s1282 s3001) +(trans s1283 s2982) +(trans s1283 s2995) +(trans s1283 s3008) +(trans s1284 s2989) +(trans s1284 s3002) +(trans s1284 s3015) +(trans s1285 s2996) +(trans s1285 s3009) +(trans s1285 s3022) +(trans s1286 s3003) +(trans s1286 s3016) +(trans s1286 s3029) +(trans s1287 s3010) +(trans s1287 s3023) +(trans s1287 s3036) +(trans s1288 s3017) +(trans s1288 s3030) +(trans s1288 s3043) +(trans s1289 s3024) +(trans s1289 s3037) +(trans s1289 s3050) +(trans s1290 s3031) +(trans s1290 s3044) +(trans s1290 s3057) +(trans s1291 s3038) +(trans s1291 s3051) +(trans s1291 s3064) +(trans s1292 s3045) +(trans s1292 s3058) +(trans s1292 s3071) +(trans s1293 s3052) +(trans s1293 s3065) +(trans s1293 s3078) +(trans s1294 s3059) +(trans s1294 s3072) +(trans s1294 s3085) +(trans s1295 s3066) +(trans s1295 s3079) +(trans s1295 s3092) +(trans s1296 s3073) +(trans s1296 s3086) +(trans s1296 s3099) +(trans s1297 s3080) +(trans s1297 s3093) +(trans s1297 s3106) +(trans s1298 s3087) +(trans s1298 s3100) +(trans s1298 s3113) +(trans s1299 s3094) +(trans s1299 s3107) +(trans s1299 s3120) +(trans s1300 s3101) +(trans s1300 s3114) +(trans s1300 s3127) +(trans s1301 s3108) +(trans s1301 s3121) +(trans s1301 s3134) +(trans s1302 s3115) +(trans s1302 s3128) +(trans s1302 s3141) +(trans s1303 s3122) +(trans s1303 s3135) +(trans s1303 s3148) +(trans s1304 s3129) +(trans s1304 s3142) +(trans s1304 s3155) +(trans s1305 s3136) +(trans s1305 s3149) +(trans s1305 s3162) +(trans s1306 s3143) +(trans s1306 s3156) +(trans s1306 s3169) +(trans s1307 s3150) +(trans s1307 s3163) +(trans s1307 s3176) +(trans s1308 s3157) +(trans s1308 s3170) +(trans s1308 s3183) +(trans s1309 s3164) +(trans s1309 s3177) +(trans s1309 s3190) +(trans s1310 s3171) +(trans s1310 s3184) +(trans s1310 s3197) +(trans s1311 s3178) +(trans s1311 s3191) +(trans s1311 s3204) +(trans s1312 s3185) +(trans s1312 s3198) +(trans s1312 s3211) +(trans s1313 s3192) +(trans s1313 s3205) +(trans s1313 s3218) +(trans s1314 s3199) +(trans s1314 s3212) +(trans s1314 s3225) +(trans s1315 s3206) +(trans s1315 s3219) +(trans s1315 s3232) +(trans s1316 s3213) +(trans s1316 s3226) +(trans s1316 s3239) +(trans s1317 s3220) +(trans s1317 s3233) +(trans s1317 s3246) +(trans s1318 s3227) +(trans s1318 s3240) +(trans s1318 s3253) +(trans s1319 s3234) +(trans s1319 s3247) +(trans s1319 s3260) +(trans s1320 s3241) +(trans s1320 s3254) +(trans s1320 s3267) +(trans s1321 s3248) +(trans s1321 s3261) +(trans s1321 s3274) +(trans s1322 s3255) +(trans s1322 s3268) +(trans s1322 s3281) +(trans s1323 s3262) +(trans s1323 s3275) +(trans s1323 s3288) +(trans s1324 s3269) +(trans s1324 s3282) +(trans s1324 s3295) +(trans s1325 s3276) +(trans s1325 s3289) +(trans s1325 s3302) +(trans s1326 s3283) +(trans s1326 s3296) +(trans s1326 s3309) +(trans s1327 s3290) +(trans s1327 s3303) +(trans s1327 s3316) +(trans s1328 s3297) +(trans s1328 s3310) +(trans s1328 s3323) +(trans s1329 s3304) +(trans s1329 s3317) +(trans s1329 s3330) +(trans s1330 s3311) +(trans s1330 s3324) +(trans s1330 s3337) +(trans s1331 s3318) +(trans s1331 s3331) +(trans s1331 s3344) +(trans s1332 s3325) +(trans s1332 s3338) +(trans s1332 s3351) +(trans s1333 s3332) +(trans s1333 s3345) +(trans s1333 s3358) +(trans s1334 s3339) +(trans s1334 s3352) +(trans s1334 s3365) +(trans s1335 s3346) +(trans s1335 s3359) +(trans s1335 s3372) +(trans s1336 s3353) +(trans s1336 s3366) +(trans s1336 s3379) +(trans s1337 s3360) +(trans s1337 s3373) +(trans s1337 s3386) +(trans s1338 s3367) +(trans s1338 s3380) +(trans s1338 s3393) +(trans s1339 s3374) +(trans s1339 s3387) +(trans s1339 s3400) +(trans s1340 s3381) +(trans s1340 s3394) +(trans s1340 s3407) +(trans s1341 s3388) +(trans s1341 s3401) +(trans s1341 s3414) +(trans s1342 s3395) +(trans s1342 s3408) +(trans s1342 s3421) +(trans s1343 s3402) +(trans s1343 s3415) +(trans s1343 s3428) +(trans s1344 s3409) +(trans s1344 s3422) +(trans s1344 s3435) +(trans s1345 s3416) +(trans s1345 s3429) +(trans s1345 s3442) +(trans s1346 s3423) +(trans s1346 s3436) +(trans s1346 s3449) +(trans s1347 s3430) +(trans s1347 s3443) +(trans s1347 s3456) +(trans s1348 s3437) +(trans s1348 s3450) +(trans s1348 s3463) +(trans s1349 s3444) +(trans s1349 s3457) +(trans s1349 s3470) +(trans s1350 s3451) +(trans s1350 s3464) +(trans s1350 s3477) +(trans s1351 s3458) +(trans s1351 s3471) +(trans s1351 s3484) +(trans s1352 s3465) +(trans s1352 s3478) +(trans s1352 s3491) +(trans s1353 s3472) +(trans s1353 s3485) +(trans s1353 s3498) +(trans s1354 s3479) +(trans s1354 s3492) +(trans s1354 s3505) +(trans s1355 s3486) +(trans s1355 s3499) +(trans s1355 s3512) +(trans s1356 s3493) +(trans s1356 s3506) +(trans s1356 s3519) +(trans s1357 s3500) +(trans s1357 s3513) +(trans s1357 s3526) +(trans s1358 s3507) +(trans s1358 s3520) +(trans s1358 s3533) +(trans s1359 s3514) +(trans s1359 s3527) +(trans s1359 s3540) +(trans s1360 s3521) +(trans s1360 s3534) +(trans s1360 s3547) +(trans s1361 s3528) +(trans s1361 s3541) +(trans s1361 s3554) +(trans s1362 s3535) +(trans s1362 s3548) +(trans s1362 s3561) +(trans s1363 s3542) +(trans s1363 s3555) +(trans s1363 s3568) +(trans s1364 s3549) +(trans s1364 s3562) +(trans s1364 s3575) +(trans s1365 s3556) +(trans s1365 s3569) +(trans s1365 s3582) +(trans s1366 s3563) +(trans s1366 s3576) +(trans s1366 s3589) +(trans s1367 s3570) +(trans s1367 s3583) +(trans s1367 s3596) +(trans s1368 s3577) +(trans s1368 s3590) +(trans s1368 s3603) +(trans s1369 s3584) +(trans s1369 s3597) +(trans s1369 s3610) +(trans s1370 s3591) +(trans s1370 s3604) +(trans s1370 s3617) +(trans s1371 s3598) +(trans s1371 s3611) +(trans s1371 s3624) +(trans s1372 s3605) +(trans s1372 s3618) +(trans s1372 s3631) +(trans s1373 s3612) +(trans s1373 s3625) +(trans s1373 s3638) +(trans s1374 s3619) +(trans s1374 s3632) +(trans s1374 s3645) +(trans s1375 s3626) +(trans s1375 s3639) +(trans s1375 s3652) +(trans s1376 s3633) +(trans s1376 s3646) +(trans s1376 s3659) +(trans s1377 s3640) +(trans s1377 s3653) +(trans s1377 s3666) +(trans s1378 s3647) +(trans s1378 s3660) +(trans s1378 s3673) +(trans s1379 s3654) +(trans s1379 s3667) +(trans s1379 s3680) +(trans s1380 s3661) +(trans s1380 s3674) +(trans s1380 s3687) +(trans s1381 s3668) +(trans s1381 s3681) +(trans s1381 s3694) +(trans s1382 s3675) +(trans s1382 s3688) +(trans s1382 s3701) +(trans s1383 s3682) +(trans s1383 s3695) +(trans s1383 s3708) +(trans s1384 s3689) +(trans s1384 s3702) +(trans s1384 s3715) +(trans s1385 s3696) +(trans s1385 s3709) +(trans s1385 s3722) +(trans s1386 s3703) +(trans s1386 s3716) +(trans s1386 s3729) +(trans s1387 s3710) +(trans s1387 s3723) +(trans s1387 s3736) +(trans s1388 s3717) +(trans s1388 s3730) +(trans s1388 s3743) +(trans s1389 s3724) +(trans s1389 s3737) +(trans s1389 s3750) +(trans s1390 s3731) +(trans s1390 s3744) +(trans s1390 s3757) +(trans s1391 s3738) +(trans s1391 s3751) +(trans s1391 s3764) +(trans s1392 s3745) +(trans s1392 s3758) +(trans s1392 s3771) +(trans s1393 s3752) +(trans s1393 s3765) +(trans s1393 s3778) +(trans s1394 s3759) +(trans s1394 s3772) +(trans s1394 s3785) +(trans s1395 s3766) +(trans s1395 s3779) +(trans s1395 s3792) +(trans s1396 s3773) +(trans s1396 s3786) +(trans s1396 s3799) +(trans s1397 s3780) +(trans s1397 s3793) +(trans s1397 s3806) +(trans s1398 s3787) +(trans s1398 s3800) +(trans s1398 s3813) +(trans s1399 s3794) +(trans s1399 s3807) +(trans s1399 s3820) +(trans s1400 s3801) +(trans s1400 s3814) +(trans s1400 s3827) +(trans s1401 s3808) +(trans s1401 s3821) +(trans s1401 s3834) +(trans s1402 s3815) +(trans s1402 s3828) +(trans s1402 s3841) +(trans s1403 s3822) +(trans s1403 s3835) +(trans s1403 s3848) +(trans s1404 s3829) +(trans s1404 s3842) +(trans s1404 s3855) +(trans s1405 s3836) +(trans s1405 s3849) +(trans s1405 s3862) +(trans s1406 s3843) +(trans s1406 s3856) +(trans s1406 s3869) +(trans s1407 s3850) +(trans s1407 s3863) +(trans s1407 s3876) +(trans s1408 s3857) +(trans s1408 s3870) +(trans s1408 s3883) +(trans s1409 s3864) +(trans s1409 s3877) +(trans s1409 s3890) +(trans s1410 s3871) +(trans s1410 s3884) +(trans s1410 s3897) +(trans s1411 s3878) +(trans s1411 s3891) +(trans s1411 s3904) +(trans s1412 s3885) +(trans s1412 s3898) +(trans s1412 s3911) +(trans s1413 s3892) +(trans s1413 s3905) +(trans s1413 s3918) +(trans s1414 s3899) +(trans s1414 s3912) +(trans s1414 s3925) +(trans s1415 s3906) +(trans s1415 s3919) +(trans s1415 s3932) +(trans s1416 s3913) +(trans s1416 s3926) +(trans s1416 s3939) +(trans s1417 s3920) +(trans s1417 s3933) +(trans s1417 s3946) +(trans s1418 s3927) +(trans s1418 s3940) +(trans s1418 s3953) +(trans s1419 s3934) +(trans s1419 s3947) +(trans s1419 s3960) +(trans s1420 s3941) +(trans s1420 s3954) +(trans s1420 s3967) +(trans s1421 s3948) +(trans s1421 s3961) +(trans s1421 s3974) +(trans s1422 s3955) +(trans s1422 s3968) +(trans s1422 s3981) +(trans s1423 s3962) +(trans s1423 s3975) +(trans s1423 s3988) +(trans s1424 s3969) +(trans s1424 s3982) +(trans s1424 s3995) +(trans s1425 s3976) +(trans s1425 s3989) +(trans s1425 s4002) +(trans s1426 s3983) +(trans s1426 s3996) +(trans s1426 s4009) +(trans s1427 s3990) +(trans s1427 s4003) +(trans s1427 s4016) +(trans s1428 s3997) +(trans s1428 s4010) +(trans s1428 s4023) +(trans s1429 s4004) +(trans s1429 s4017) +(trans s1429 s4030) +(trans s1430 s4011) +(trans s1430 s4024) +(trans s1430 s4037) +(trans s1431 s4018) +(trans s1431 s4031) +(trans s1431 s4044) +(trans s1432 s4025) +(trans s1432 s4038) +(trans s1432 s4051) +(trans s1433 s4032) +(trans s1433 s4045) +(trans s1433 s4058) +(trans s1434 s4039) +(trans s1434 s4052) +(trans s1434 s4065) +(trans s1435 s4046) +(trans s1435 s4059) +(trans s1435 s4072) +(trans s1436 s4053) +(trans s1436 s4066) +(trans s1436 s4079) +(trans s1437 s4060) +(trans s1437 s4073) +(trans s1437 s4086) +(trans s1438 s4067) +(trans s1438 s4080) +(trans s1438 s4093) +(trans s1439 s4074) +(trans s1439 s4087) +(trans s1439 s4100) +(trans s1440 s4081) +(trans s1440 s4094) +(trans s1440 s4107) +(trans s1441 s4088) +(trans s1441 s4101) +(trans s1441 s4114) +(trans s1442 s4095) +(trans s1442 s4108) +(trans s1442 s4121) +(trans s1443 s4102) +(trans s1443 s4115) +(trans s1443 s4128) +(trans s1444 s4109) +(trans s1444 s4122) +(trans s1444 s4135) +(trans s1445 s4116) +(trans s1445 s4129) +(trans s1445 s4142) +(trans s1446 s4123) +(trans s1446 s4136) +(trans s1446 s4149) +(trans s1447 s4130) +(trans s1447 s4143) +(trans s1447 s4156) +(trans s1448 s4137) +(trans s1448 s4150) +(trans s1448 s4163) +(trans s1449 s4144) +(trans s1449 s4157) +(trans s1449 s4170) +(trans s1450 s4151) +(trans s1450 s4164) +(trans s1450 s4177) +(trans s1451 s4158) +(trans s1451 s4171) +(trans s1451 s4184) +(trans s1452 s4165) +(trans s1452 s4178) +(trans s1452 s4191) +(trans s1453 s4172) +(trans s1453 s4185) +(trans s1453 s4198) +(trans s1454 s4179) +(trans s1454 s4192) +(trans s1454 s4205) +(trans s1455 s4186) +(trans s1455 s4199) +(trans s1455 s4212) +(trans s1456 s4193) +(trans s1456 s4206) +(trans s1456 s4219) +(trans s1457 s4200) +(trans s1457 s4213) +(trans s1457 s4226) +(trans s1458 s4207) +(trans s1458 s4220) +(trans s1458 s4233) +(trans s1459 s4214) +(trans s1459 s4227) +(trans s1459 s4240) +(trans s1460 s4221) +(trans s1460 s4234) +(trans s1460 s4247) +(trans s1461 s4228) +(trans s1461 s4241) +(trans s1461 s4254) +(trans s1462 s4235) +(trans s1462 s4248) +(trans s1462 s4261) +(trans s1463 s4242) +(trans s1463 s4255) +(trans s1463 s4268) +(trans s1464 s4249) +(trans s1464 s4262) +(trans s1464 s4275) +(trans s1465 s4256) +(trans s1465 s4269) +(trans s1465 s4282) +(trans s1466 s4263) +(trans s1466 s4276) +(trans s1466 s4289) +(trans s1467 s4270) +(trans s1467 s4283) +(trans s1467 s4296) +(trans s1468 s4277) +(trans s1468 s4290) +(trans s1468 s4303) +(trans s1469 s4284) +(trans s1469 s4297) +(trans s1469 s4310) +(trans s1470 s4291) +(trans s1470 s4304) +(trans s1470 s4317) +(trans s1471 s4298) +(trans s1471 s4311) +(trans s1471 s4324) +(trans s1472 s4305) +(trans s1472 s4318) +(trans s1472 s4331) +(trans s1473 s4312) +(trans s1473 s4325) +(trans s1473 s4338) +(trans s1474 s4319) +(trans s1474 s4332) +(trans s1474 s4345) +(trans s1475 s4326) +(trans s1475 s4339) +(trans s1475 s4352) +(trans s1476 s4333) +(trans s1476 s4346) +(trans s1476 s4359) +(trans s1477 s4340) +(trans s1477 s4353) +(trans s1477 s4366) +(trans s1478 s4347) +(trans s1478 s4360) +(trans s1478 s4373) +(trans s1479 s4354) +(trans s1479 s4367) +(trans s1479 s4380) +(trans s1480 s4361) +(trans s1480 s4374) +(trans s1480 s4387) +(trans s1481 s4368) +(trans s1481 s4381) +(trans s1481 s4394) +(trans s1482 s4375) +(trans s1482 s4388) +(trans s1482 s4401) +(trans s1483 s4382) +(trans s1483 s4395) +(trans s1483 s4408) +(trans s1484 s4389) +(trans s1484 s4402) +(trans s1484 s4415) +(trans s1485 s4396) +(trans s1485 s4409) +(trans s1485 s4422) +(trans s1486 s4403) +(trans s1486 s4416) +(trans s1486 s4429) +(trans s1487 s4410) +(trans s1487 s4423) +(trans s1487 s4436) +(trans s1488 s4417) +(trans s1488 s4430) +(trans s1488 s4443) +(trans s1489 s4424) +(trans s1489 s4437) +(trans s1489 s4450) +(trans s1490 s4431) +(trans s1490 s4444) +(trans s1490 s4457) +(trans s1491 s4438) +(trans s1491 s4451) +(trans s1491 s4464) +(trans s1492 s4445) +(trans s1492 s4458) +(trans s1492 s4471) +(trans s1493 s4452) +(trans s1493 s4465) +(trans s1493 s4478) +(trans s1494 s4459) +(trans s1494 s4472) +(trans s1494 s4485) +(trans s1495 s4466) +(trans s1495 s4479) +(trans s1495 s4492) +(trans s1496 s4473) +(trans s1496 s4486) +(trans s1496 s4499) +(trans s1497 s4480) +(trans s1497 s4493) +(trans s1497 s4506) +(trans s1498 s4487) +(trans s1498 s4500) +(trans s1498 s4513) +(trans s1499 s4494) +(trans s1499 s4507) +(trans s1499 s4520) +(trans s1500 s4501) +(trans s1500 s4514) +(trans s1500 s4527) +(trans s1501 s4508) +(trans s1501 s4521) +(trans s1501 s4534) +(trans s1502 s4515) +(trans s1502 s4528) +(trans s1502 s4541) +(trans s1503 s4522) +(trans s1503 s4535) +(trans s1503 s4548) +(trans s1504 s4529) +(trans s1504 s4542) +(trans s1504 s4555) +(trans s1505 s4536) +(trans s1505 s4549) +(trans s1505 s4562) +(trans s1506 s4543) +(trans s1506 s4556) +(trans s1506 s4569) +(trans s1507 s4550) +(trans s1507 s4563) +(trans s1507 s4576) +(trans s1508 s4557) +(trans s1508 s4570) +(trans s1508 s4583) +(trans s1509 s4564) +(trans s1509 s4577) +(trans s1509 s4590) +(trans s1510 s4571) +(trans s1510 s4584) +(trans s1510 s4597) +(trans s1511 s4578) +(trans s1511 s4591) +(trans s1511 s4604) +(trans s1512 s4585) +(trans s1512 s4598) +(trans s1512 s4611) +(trans s1513 s4592) +(trans s1513 s4605) +(trans s1513 s4618) +(trans s1514 s4599) +(trans s1514 s4612) +(trans s1514 s4625) +(trans s1515 s4606) +(trans s1515 s4619) +(trans s1515 s4632) +(trans s1516 s4613) +(trans s1516 s4626) +(trans s1516 s4639) +(trans s1517 s4620) +(trans s1517 s4633) +(trans s1517 s4646) +(trans s1518 s4627) +(trans s1518 s4640) +(trans s1518 s4653) +(trans s1519 s4634) +(trans s1519 s4647) +(trans s1519 s4660) +(trans s1520 s4641) +(trans s1520 s4654) +(trans s1520 s4667) +(trans s1521 s4648) +(trans s1521 s4661) +(trans s1521 s4674) +(trans s1522 s4655) +(trans s1522 s4668) +(trans s1522 s4681) +(trans s1523 s4662) +(trans s1523 s4675) +(trans s1523 s4688) +(trans s1524 s4669) +(trans s1524 s4682) +(trans s1524 s4695) +(trans s1525 s4676) +(trans s1525 s4689) +(trans s1525 s4702) +(trans s1526 s4683) +(trans s1526 s4696) +(trans s1526 s4709) +(trans s1527 s4690) +(trans s1527 s4703) +(trans s1527 s4716) +(trans s1528 s4697) +(trans s1528 s4710) +(trans s1528 s4723) +(trans s1529 s4704) +(trans s1529 s4717) +(trans s1529 s4730) +(trans s1530 s4711) +(trans s1530 s4724) +(trans s1530 s4737) +(trans s1531 s4718) +(trans s1531 s4731) +(trans s1531 s4744) +(trans s1532 s4725) +(trans s1532 s4738) +(trans s1532 s4751) +(trans s1533 s4732) +(trans s1533 s4745) +(trans s1533 s4758) +(trans s1534 s4739) +(trans s1534 s4752) +(trans s1534 s4765) +(trans s1535 s4746) +(trans s1535 s4759) +(trans s1535 s4772) +(trans s1536 s4753) +(trans s1536 s4766) +(trans s1536 s4779) +(trans s1537 s4760) +(trans s1537 s4773) +(trans s1537 s4786) +(trans s1538 s4767) +(trans s1538 s4780) +(trans s1538 s4793) +(trans s1539 s4774) +(trans s1539 s4787) +(trans s1539 s4800) +(trans s1540 s4781) +(trans s1540 s4794) +(trans s1540 s4807) +(trans s1541 s4788) +(trans s1541 s4801) +(trans s1541 s4814) +(trans s1542 s4795) +(trans s1542 s4808) +(trans s1542 s4821) +(trans s1543 s4802) +(trans s1543 s4815) +(trans s1543 s4828) +(trans s1544 s4809) +(trans s1544 s4822) +(trans s1544 s4835) +(trans s1545 s4816) +(trans s1545 s4829) +(trans s1545 s4842) +(trans s1546 s4823) +(trans s1546 s4836) +(trans s1546 s4849) +(trans s1547 s4830) +(trans s1547 s4843) +(trans s1547 s4856) +(trans s1548 s4837) +(trans s1548 s4850) +(trans s1548 s4863) +(trans s1549 s4844) +(trans s1549 s4857) +(trans s1549 s4870) +(trans s1550 s4851) +(trans s1550 s4864) +(trans s1550 s4877) +(trans s1551 s4858) +(trans s1551 s4871) +(trans s1551 s4884) +(trans s1552 s4865) +(trans s1552 s4878) +(trans s1552 s4891) +(trans s1553 s4872) +(trans s1553 s4885) +(trans s1553 s4898) +(trans s1554 s4879) +(trans s1554 s4892) +(trans s1554 s4905) +(trans s1555 s4886) +(trans s1555 s4899) +(trans s1555 s4912) +(trans s1556 s4893) +(trans s1556 s4906) +(trans s1556 s4919) +(trans s1557 s4900) +(trans s1557 s4913) +(trans s1557 s4926) +(trans s1558 s4907) +(trans s1558 s4920) +(trans s1558 s4933) +(trans s1559 s4914) +(trans s1559 s4927) +(trans s1559 s4940) +(trans s1560 s4921) +(trans s1560 s4934) +(trans s1560 s4947) +(trans s1561 s4928) +(trans s1561 s4941) +(trans s1561 s4954) +(trans s1562 s4935) +(trans s1562 s4948) +(trans s1562 s4961) +(trans s1563 s4942) +(trans s1563 s4955) +(trans s1563 s4968) +(trans s1564 s4949) +(trans s1564 s4962) +(trans s1564 s4975) +(trans s1565 s4956) +(trans s1565 s4969) +(trans s1565 s4982) +(trans s1566 s4963) +(trans s1566 s4976) +(trans s1566 s4989) +(trans s1567 s4970) +(trans s1567 s4983) +(trans s1567 s4996) +(trans s1568 s4977) +(trans s1568 s4990) +(trans s1568 s5003) +(trans s1569 s4984) +(trans s1569 s4997) +(trans s1569 s5010) +(trans s1570 s4991) +(trans s1570 s5004) +(trans s1570 s5017) +(trans s1571 s4998) +(trans s1571 s5011) +(trans s1571 s5024) +(trans s1572 s5005) +(trans s1572 s5018) +(trans s1572 s5031) +(trans s1573 s5012) +(trans s1573 s5025) +(trans s1573 s5038) +(trans s1574 s5019) +(trans s1574 s5032) +(trans s1574 s5045) +(trans s1575 s5026) +(trans s1575 s5039) +(trans s1575 s5052) +(trans s1576 s5033) +(trans s1576 s5046) +(trans s1576 s5059) +(trans s1577 s5040) +(trans s1577 s5053) +(trans s1577 s5066) +(trans s1578 s5047) +(trans s1578 s5060) +(trans s1578 s5073) +(trans s1579 s5054) +(trans s1579 s5067) +(trans s1579 s5080) +(trans s1580 s5061) +(trans s1580 s5074) +(trans s1580 s5087) +(trans s1581 s5068) +(trans s1581 s5081) +(trans s1581 s5094) +(trans s1582 s5075) +(trans s1582 s5088) +(trans s1582 s5101) +(trans s1583 s5082) +(trans s1583 s5095) +(trans s1583 s5108) +(trans s1584 s5089) +(trans s1584 s5102) +(trans s1584 s5115) +(trans s1585 s5096) +(trans s1585 s5109) +(trans s1585 s5122) +(trans s1586 s5103) +(trans s1586 s5116) +(trans s1586 s5129) +(trans s1587 s5110) +(trans s1587 s5123) +(trans s1587 s5136) +(trans s1588 s5117) +(trans s1588 s5130) +(trans s1588 s5143) +(trans s1589 s5124) +(trans s1589 s5137) +(trans s1589 s5150) +(trans s1590 s5131) +(trans s1590 s5144) +(trans s1590 s5157) +(trans s1591 s5138) +(trans s1591 s5151) +(trans s1591 s5164) +(trans s1592 s5145) +(trans s1592 s5158) +(trans s1592 s5171) +(trans s1593 s5152) +(trans s1593 s5165) +(trans s1593 s5178) +(trans s1594 s5159) +(trans s1594 s5172) +(trans s1594 s5185) +(trans s1595 s5166) +(trans s1595 s5179) +(trans s1595 s5192) +(trans s1596 s5173) +(trans s1596 s5186) +(trans s1596 s5199) +(trans s1597 s5180) +(trans s1597 s5193) +(trans s1597 s5206) +(trans s1598 s5187) +(trans s1598 s5200) +(trans s1598 s5213) +(trans s1599 s5194) +(trans s1599 s5207) +(trans s1599 s5220) +(trans s1600 s5201) +(trans s1600 s5214) +(trans s1600 s5227) +(trans s1601 s5208) +(trans s1601 s5221) +(trans s1601 s5234) +(trans s1602 s5215) +(trans s1602 s5228) +(trans s1602 s5241) +(trans s1603 s5222) +(trans s1603 s5235) +(trans s1603 s5248) +(trans s1604 s5229) +(trans s1604 s5242) +(trans s1604 s5255) +(trans s1605 s5236) +(trans s1605 s5249) +(trans s1605 s5262) +(trans s1606 s5243) +(trans s1606 s5256) +(trans s1606 s5269) +(trans s1607 s5250) +(trans s1607 s5263) +(trans s1607 s5276) +(trans s1608 s5257) +(trans s1608 s5270) +(trans s1608 s5283) +(trans s1609 s5264) +(trans s1609 s5277) +(trans s1609 s5290) +(trans s1610 s5271) +(trans s1610 s5284) +(trans s1610 s5297) +(trans s1611 s5278) +(trans s1611 s5291) +(trans s1611 s5304) +(trans s1612 s5285) +(trans s1612 s5298) +(trans s1612 s5311) +(trans s1613 s5292) +(trans s1613 s5305) +(trans s1613 s5318) +(trans s1614 s5299) +(trans s1614 s5312) +(trans s1614 s5325) +(trans s1615 s5306) +(trans s1615 s5319) +(trans s1615 s5332) +(trans s1616 s5313) +(trans s1616 s5326) +(trans s1616 s5339) +(trans s1617 s5320) +(trans s1617 s5333) +(trans s1617 s5346) +(trans s1618 s5327) +(trans s1618 s5340) +(trans s1618 s5353) +(trans s1619 s5334) +(trans s1619 s5347) +(trans s1619 s5360) +(trans s1620 s5341) +(trans s1620 s5354) +(trans s1620 s5367) +(trans s1621 s5348) +(trans s1621 s5361) +(trans s1621 s5374) +(trans s1622 s5355) +(trans s1622 s5368) +(trans s1622 s5381) +(trans s1623 s5362) +(trans s1623 s5375) +(trans s1623 s5388) +(trans s1624 s5369) +(trans s1624 s5382) +(trans s1624 s5395) +(trans s1625 s5376) +(trans s1625 s5389) +(trans s1625 s5402) +(trans s1626 s5383) +(trans s1626 s5396) +(trans s1626 s5409) +(trans s1627 s5390) +(trans s1627 s5403) +(trans s1627 s5416) +(trans s1628 s5397) +(trans s1628 s5410) +(trans s1628 s5423) +(trans s1629 s5404) +(trans s1629 s5417) +(trans s1629 s5430) +(trans s1630 s5411) +(trans s1630 s5424) +(trans s1630 s5437) +(trans s1631 s5418) +(trans s1631 s5431) +(trans s1631 s5444) +(trans s1632 s5425) +(trans s1632 s5438) +(trans s1632 s5451) +(trans s1633 s5432) +(trans s1633 s5445) +(trans s1633 s5458) +(trans s1634 s5439) +(trans s1634 s5452) +(trans s1634 s5465) +(trans s1635 s5446) +(trans s1635 s5459) +(trans s1635 s5472) +(trans s1636 s5453) +(trans s1636 s5466) +(trans s1636 s5479) +(trans s1637 s5460) +(trans s1637 s5473) +(trans s1637 s5486) +(trans s1638 s5467) +(trans s1638 s5480) +(trans s1638 s5493) +(trans s1639 s5474) +(trans s1639 s5487) +(trans s1639 s5500) +(trans s1640 s5481) +(trans s1640 s5494) +(trans s1640 s5507) +(trans s1641 s5488) +(trans s1641 s5501) +(trans s1641 s5514) +(trans s1642 s5495) +(trans s1642 s5508) +(trans s1642 s5521) +(trans s1643 s5502) +(trans s1643 s5515) +(trans s1643 s5528) +(trans s1644 s5509) +(trans s1644 s5522) +(trans s1644 s5535) +(trans s1645 s5516) +(trans s1645 s5529) +(trans s1645 s5542) +(trans s1646 s5523) +(trans s1646 s5536) +(trans s1646 s5549) +(trans s1647 s5530) +(trans s1647 s5543) +(trans s1647 s5556) +(trans s1648 s5537) +(trans s1648 s5550) +(trans s1648 s5563) +(trans s1649 s5544) +(trans s1649 s5557) +(trans s1649 s5570) +(trans s1650 s5551) +(trans s1650 s5564) +(trans s1650 s5577) +(trans s1651 s5558) +(trans s1651 s5571) +(trans s1651 s5584) +(trans s1652 s5565) +(trans s1652 s5578) +(trans s1652 s5591) +(trans s1653 s5572) +(trans s1653 s5585) +(trans s1653 s5598) +(trans s1654 s5579) +(trans s1654 s5592) +(trans s1654 s5605) +(trans s1655 s5586) +(trans s1655 s5599) +(trans s1655 s5612) +(trans s1656 s5593) +(trans s1656 s5606) +(trans s1656 s5619) +(trans s1657 s5600) +(trans s1657 s5613) +(trans s1657 s5626) +(trans s1658 s5607) +(trans s1658 s5620) +(trans s1658 s5633) +(trans s1659 s5614) +(trans s1659 s5627) +(trans s1659 s5640) +(trans s1660 s5621) +(trans s1660 s5634) +(trans s1660 s5647) +(trans s1661 s5628) +(trans s1661 s5641) +(trans s1661 s5654) +(trans s1662 s5635) +(trans s1662 s5648) +(trans s1662 s5661) +(trans s1663 s5642) +(trans s1663 s5655) +(trans s1663 s5668) +(trans s1664 s5649) +(trans s1664 s5662) +(trans s1664 s5675) +(trans s1665 s5656) +(trans s1665 s5669) +(trans s1665 s5682) +(trans s1666 s5663) +(trans s1666 s5676) +(trans s1666 s5689) +(trans s1667 s5670) +(trans s1667 s5683) +(trans s1667 s5696) +(trans s1668 s5677) +(trans s1668 s5690) +(trans s1668 s5703) +(trans s1669 s5684) +(trans s1669 s5697) +(trans s1669 s5710) +(trans s1670 s5691) +(trans s1670 s5704) +(trans s1670 s5717) +(trans s1671 s5698) +(trans s1671 s5711) +(trans s1671 s5724) +(trans s1672 s5705) +(trans s1672 s5718) +(trans s1672 s5731) +(trans s1673 s5712) +(trans s1673 s5725) +(trans s1673 s5738) +(trans s1674 s5719) +(trans s1674 s5732) +(trans s1674 s5745) +(trans s1675 s5726) +(trans s1675 s5739) +(trans s1675 s5752) +(trans s1676 s5733) +(trans s1676 s5746) +(trans s1676 s5759) +(trans s1677 s5740) +(trans s1677 s5753) +(trans s1677 s5766) +(trans s1678 s5747) +(trans s1678 s5760) +(trans s1678 s5773) +(trans s1679 s5754) +(trans s1679 s5767) +(trans s1679 s5780) +(trans s1680 s5761) +(trans s1680 s5774) +(trans s1680 s5787) +(trans s1681 s5768) +(trans s1681 s5781) +(trans s1681 s5794) +(trans s1682 s5775) +(trans s1682 s5788) +(trans s1682 s5801) +(trans s1683 s5782) +(trans s1683 s5795) +(trans s1683 s5808) +(trans s1684 s5789) +(trans s1684 s5802) +(trans s1684 s5815) +(trans s1685 s5796) +(trans s1685 s5809) +(trans s1685 s5822) +(trans s1686 s5803) +(trans s1686 s5816) +(trans s1686 s5829) +(trans s1687 s5810) +(trans s1687 s5823) +(trans s1687 s5836) +(trans s1688 s5817) +(trans s1688 s5830) +(trans s1688 s5843) +(trans s1689 s5824) +(trans s1689 s5837) +(trans s1689 s5850) +(trans s1690 s5831) +(trans s1690 s5844) +(trans s1690 s5857) +(trans s1691 s5838) +(trans s1691 s5851) +(trans s1691 s5864) +(trans s1692 s5845) +(trans s1692 s5858) +(trans s1692 s5871) +(trans s1693 s5852) +(trans s1693 s5865) +(trans s1693 s5878) +(trans s1694 s5859) +(trans s1694 s5872) +(trans s1694 s5885) +(trans s1695 s5866) +(trans s1695 s5879) +(trans s1695 s5892) +(trans s1696 s5873) +(trans s1696 s5886) +(trans s1696 s5899) +(trans s1697 s5880) +(trans s1697 s5893) +(trans s1697 s5906) +(trans s1698 s5887) +(trans s1698 s5900) +(trans s1698 s5913) +(trans s1699 s5894) +(trans s1699 s5907) +(trans s1699 s5920) +(trans s1700 s5901) +(trans s1700 s5914) +(trans s1700 s5927) +(trans s1701 s5908) +(trans s1701 s5921) +(trans s1701 s5934) +(trans s1702 s5915) +(trans s1702 s5928) +(trans s1702 s5941) +(trans s1703 s5922) +(trans s1703 s5935) +(trans s1703 s5948) +(trans s1704 s5929) +(trans s1704 s5942) +(trans s1704 s5955) +(trans s1705 s5936) +(trans s1705 s5949) +(trans s1705 s5962) +(trans s1706 s5943) +(trans s1706 s5956) +(trans s1706 s5969) +(trans s1707 s5950) +(trans s1707 s5963) +(trans s1707 s5976) +(trans s1708 s5957) +(trans s1708 s5970) +(trans s1708 s5983) +(trans s1709 s5964) +(trans s1709 s5977) +(trans s1709 s5990) +(trans s1710 s5971) +(trans s1710 s5984) +(trans s1710 s5997) +(trans s1711 s5978) +(trans s1711 s5991) +(trans s1711 s4) +(trans s1712 s5985) +(trans s1712 s5998) +(trans s1712 s11) +(trans s1713 s5992) +(trans s1713 s5) +(trans s1713 s18) +(trans s1714 s5999) +(trans s1714 s12) +(trans s1714 s25) +(trans s1715 s6) +(trans s1715 s19) +(trans s1715 s32) +(trans s1716 s13) +(trans s1716 s26) +(trans s1716 s39) +(trans s1717 s20) +(trans s1717 s33) +(trans s1717 s46) +(trans s1718 s27) +(trans s1718 s40) +(trans s1718 s53) +(trans s1719 s34) +(trans s1719 s47) +(trans s1719 s60) +(trans s1720 s41) +(trans s1720 s54) +(trans s1720 s67) +(trans s1721 s48) +(trans s1721 s61) +(trans s1721 s74) +(trans s1722 s55) +(trans s1722 s68) +(trans s1722 s81) +(trans s1723 s62) +(trans s1723 s75) +(trans s1723 s88) +(trans s1724 s69) +(trans s1724 s82) +(trans s1724 s95) +(trans s1725 s76) +(trans s1725 s89) +(trans s1725 s102) +(trans s1726 s83) +(trans s1726 s96) +(trans s1726 s109) +(trans s1727 s90) +(trans s1727 s103) +(trans s1727 s116) +(trans s1728 s97) +(trans s1728 s110) +(trans s1728 s123) +(trans s1729 s104) +(trans s1729 s117) +(trans s1729 s130) +(trans s1730 s111) +(trans s1730 s124) +(trans s1730 s137) +(trans s1731 s118) +(trans s1731 s131) +(trans s1731 s144) +(trans s1732 s125) +(trans s1732 s138) +(trans s1732 s151) +(trans s1733 s132) +(trans s1733 s145) +(trans s1733 s158) +(trans s1734 s139) +(trans s1734 s152) +(trans s1734 s165) +(trans s1735 s146) +(trans s1735 s159) +(trans s1735 s172) +(trans s1736 s153) +(trans s1736 s166) +(trans s1736 s179) +(trans s1737 s160) +(trans s1737 s173) +(trans s1737 s186) +(trans s1738 s167) +(trans s1738 s180) +(trans s1738 s193) +(trans s1739 s174) +(trans s1739 s187) +(trans s1739 s200) +(trans s1740 s181) +(trans s1740 s194) +(trans s1740 s207) +(trans s1741 s188) +(trans s1741 s201) +(trans s1741 s214) +(trans s1742 s195) +(trans s1742 s208) +(trans s1742 s221) +(trans s1743 s202) +(trans s1743 s215) +(trans s1743 s228) +(trans s1744 s209) +(trans s1744 s222) +(trans s1744 s235) +(trans s1745 s216) +(trans s1745 s229) +(trans s1745 s242) +(trans s1746 s223) +(trans s1746 s236) +(trans s1746 s249) +(trans s1747 s230) +(trans s1747 s243) +(trans s1747 s256) +(trans s1748 s237) +(trans s1748 s250) +(trans s1748 s263) +(trans s1749 s244) +(trans s1749 s257) +(trans s1749 s270) +(trans s1750 s251) +(trans s1750 s264) +(trans s1750 s277) +(trans s1751 s258) +(trans s1751 s271) +(trans s1751 s284) +(trans s1752 s265) +(trans s1752 s278) +(trans s1752 s291) +(trans s1753 s272) +(trans s1753 s285) +(trans s1753 s298) +(trans s1754 s279) +(trans s1754 s292) +(trans s1754 s305) +(trans s1755 s286) +(trans s1755 s299) +(trans s1755 s312) +(trans s1756 s293) +(trans s1756 s306) +(trans s1756 s319) +(trans s1757 s300) +(trans s1757 s313) +(trans s1757 s326) +(trans s1758 s307) +(trans s1758 s320) +(trans s1758 s333) +(trans s1759 s314) +(trans s1759 s327) +(trans s1759 s340) +(trans s1760 s321) +(trans s1760 s334) +(trans s1760 s347) +(trans s1761 s328) +(trans s1761 s341) +(trans s1761 s354) +(trans s1762 s335) +(trans s1762 s348) +(trans s1762 s361) +(trans s1763 s342) +(trans s1763 s355) +(trans s1763 s368) +(trans s1764 s349) +(trans s1764 s362) +(trans s1764 s375) +(trans s1765 s356) +(trans s1765 s369) +(trans s1765 s382) +(trans s1766 s363) +(trans s1766 s376) +(trans s1766 s389) +(trans s1767 s370) +(trans s1767 s383) +(trans s1767 s396) +(trans s1768 s377) +(trans s1768 s390) +(trans s1768 s403) +(trans s1769 s384) +(trans s1769 s397) +(trans s1769 s410) +(trans s1770 s391) +(trans s1770 s404) +(trans s1770 s417) +(trans s1771 s398) +(trans s1771 s411) +(trans s1771 s424) +(trans s1772 s405) +(trans s1772 s418) +(trans s1772 s431) +(trans s1773 s412) +(trans s1773 s425) +(trans s1773 s438) +(trans s1774 s419) +(trans s1774 s432) +(trans s1774 s445) +(trans s1775 s426) +(trans s1775 s439) +(trans s1775 s452) +(trans s1776 s433) +(trans s1776 s446) +(trans s1776 s459) +(trans s1777 s440) +(trans s1777 s453) +(trans s1777 s466) +(trans s1778 s447) +(trans s1778 s460) +(trans s1778 s473) +(trans s1779 s454) +(trans s1779 s467) +(trans s1779 s480) +(trans s1780 s461) +(trans s1780 s474) +(trans s1780 s487) +(trans s1781 s468) +(trans s1781 s481) +(trans s1781 s494) +(trans s1782 s475) +(trans s1782 s488) +(trans s1782 s501) +(trans s1783 s482) +(trans s1783 s495) +(trans s1783 s508) +(trans s1784 s489) +(trans s1784 s502) +(trans s1784 s515) +(trans s1785 s496) +(trans s1785 s509) +(trans s1785 s522) +(trans s1786 s503) +(trans s1786 s516) +(trans s1786 s529) +(trans s1787 s510) +(trans s1787 s523) +(trans s1787 s536) +(trans s1788 s517) +(trans s1788 s530) +(trans s1788 s543) +(trans s1789 s524) +(trans s1789 s537) +(trans s1789 s550) +(trans s1790 s531) +(trans s1790 s544) +(trans s1790 s557) +(trans s1791 s538) +(trans s1791 s551) +(trans s1791 s564) +(trans s1792 s545) +(trans s1792 s558) +(trans s1792 s571) +(trans s1793 s552) +(trans s1793 s565) +(trans s1793 s578) +(trans s1794 s559) +(trans s1794 s572) +(trans s1794 s585) +(trans s1795 s566) +(trans s1795 s579) +(trans s1795 s592) +(trans s1796 s573) +(trans s1796 s586) +(trans s1796 s599) +(trans s1797 s580) +(trans s1797 s593) +(trans s1797 s606) +(trans s1798 s587) +(trans s1798 s600) +(trans s1798 s613) +(trans s1799 s594) +(trans s1799 s607) +(trans s1799 s620) +(trans s1800 s601) +(trans s1800 s614) +(trans s1800 s627) +(trans s1801 s608) +(trans s1801 s621) +(trans s1801 s634) +(trans s1802 s615) +(trans s1802 s628) +(trans s1802 s641) +(trans s1803 s622) +(trans s1803 s635) +(trans s1803 s648) +(trans s1804 s629) +(trans s1804 s642) +(trans s1804 s655) +(trans s1805 s636) +(trans s1805 s649) +(trans s1805 s662) +(trans s1806 s643) +(trans s1806 s656) +(trans s1806 s669) +(trans s1807 s650) +(trans s1807 s663) +(trans s1807 s676) +(trans s1808 s657) +(trans s1808 s670) +(trans s1808 s683) +(trans s1809 s664) +(trans s1809 s677) +(trans s1809 s690) +(trans s1810 s671) +(trans s1810 s684) +(trans s1810 s697) +(trans s1811 s678) +(trans s1811 s691) +(trans s1811 s704) +(trans s1812 s685) +(trans s1812 s698) +(trans s1812 s711) +(trans s1813 s692) +(trans s1813 s705) +(trans s1813 s718) +(trans s1814 s699) +(trans s1814 s712) +(trans s1814 s725) +(trans s1815 s706) +(trans s1815 s719) +(trans s1815 s732) +(trans s1816 s713) +(trans s1816 s726) +(trans s1816 s739) +(trans s1817 s720) +(trans s1817 s733) +(trans s1817 s746) +(trans s1818 s727) +(trans s1818 s740) +(trans s1818 s753) +(trans s1819 s734) +(trans s1819 s747) +(trans s1819 s760) +(trans s1820 s741) +(trans s1820 s754) +(trans s1820 s767) +(trans s1821 s748) +(trans s1821 s761) +(trans s1821 s774) +(trans s1822 s755) +(trans s1822 s768) +(trans s1822 s781) +(trans s1823 s762) +(trans s1823 s775) +(trans s1823 s788) +(trans s1824 s769) +(trans s1824 s782) +(trans s1824 s795) +(trans s1825 s776) +(trans s1825 s789) +(trans s1825 s802) +(trans s1826 s783) +(trans s1826 s796) +(trans s1826 s809) +(trans s1827 s790) +(trans s1827 s803) +(trans s1827 s816) +(trans s1828 s797) +(trans s1828 s810) +(trans s1828 s823) +(trans s1829 s804) +(trans s1829 s817) +(trans s1829 s830) +(trans s1830 s811) +(trans s1830 s824) +(trans s1830 s837) +(trans s1831 s818) +(trans s1831 s831) +(trans s1831 s844) +(trans s1832 s825) +(trans s1832 s838) +(trans s1832 s851) +(trans s1833 s832) +(trans s1833 s845) +(trans s1833 s858) +(trans s1834 s839) +(trans s1834 s852) +(trans s1834 s865) +(trans s1835 s846) +(trans s1835 s859) +(trans s1835 s872) +(trans s1836 s853) +(trans s1836 s866) +(trans s1836 s879) +(trans s1837 s860) +(trans s1837 s873) +(trans s1837 s886) +(trans s1838 s867) +(trans s1838 s880) +(trans s1838 s893) +(trans s1839 s874) +(trans s1839 s887) +(trans s1839 s900) +(trans s1840 s881) +(trans s1840 s894) +(trans s1840 s907) +(trans s1841 s888) +(trans s1841 s901) +(trans s1841 s914) +(trans s1842 s895) +(trans s1842 s908) +(trans s1842 s921) +(trans s1843 s902) +(trans s1843 s915) +(trans s1843 s928) +(trans s1844 s909) +(trans s1844 s922) +(trans s1844 s935) +(trans s1845 s916) +(trans s1845 s929) +(trans s1845 s942) +(trans s1846 s923) +(trans s1846 s936) +(trans s1846 s949) +(trans s1847 s930) +(trans s1847 s943) +(trans s1847 s956) +(trans s1848 s937) +(trans s1848 s950) +(trans s1848 s963) +(trans s1849 s944) +(trans s1849 s957) +(trans s1849 s970) +(trans s1850 s951) +(trans s1850 s964) +(trans s1850 s977) +(trans s1851 s958) +(trans s1851 s971) +(trans s1851 s984) +(trans s1852 s965) +(trans s1852 s978) +(trans s1852 s991) +(trans s1853 s972) +(trans s1853 s985) +(trans s1853 s998) +(trans s1854 s979) +(trans s1854 s992) +(trans s1854 s1005) +(trans s1855 s986) +(trans s1855 s999) +(trans s1855 s1012) +(trans s1856 s993) +(trans s1856 s1006) +(trans s1856 s1019) +(trans s1857 s1000) +(trans s1857 s1013) +(trans s1857 s1026) +(trans s1858 s1007) +(trans s1858 s1020) +(trans s1858 s1033) +(trans s1859 s1014) +(trans s1859 s1027) +(trans s1859 s1040) +(trans s1860 s1021) +(trans s1860 s1034) +(trans s1860 s1047) +(trans s1861 s1028) +(trans s1861 s1041) +(trans s1861 s1054) +(trans s1862 s1035) +(trans s1862 s1048) +(trans s1862 s1061) +(trans s1863 s1042) +(trans s1863 s1055) +(trans s1863 s1068) +(trans s1864 s1049) +(trans s1864 s1062) +(trans s1864 s1075) +(trans s1865 s1056) +(trans s1865 s1069) +(trans s1865 s1082) +(trans s1866 s1063) +(trans s1866 s1076) +(trans s1866 s1089) +(trans s1867 s1070) +(trans s1867 s1083) +(trans s1867 s1096) +(trans s1868 s1077) +(trans s1868 s1090) +(trans s1868 s1103) +(trans s1869 s1084) +(trans s1869 s1097) +(trans s1869 s1110) +(trans s1870 s1091) +(trans s1870 s1104) +(trans s1870 s1117) +(trans s1871 s1098) +(trans s1871 s1111) +(trans s1871 s1124) +(trans s1872 s1105) +(trans s1872 s1118) +(trans s1872 s1131) +(trans s1873 s1112) +(trans s1873 s1125) +(trans s1873 s1138) +(trans s1874 s1119) +(trans s1874 s1132) +(trans s1874 s1145) +(trans s1875 s1126) +(trans s1875 s1139) +(trans s1875 s1152) +(trans s1876 s1133) +(trans s1876 s1146) +(trans s1876 s1159) +(trans s1877 s1140) +(trans s1877 s1153) +(trans s1877 s1166) +(trans s1878 s1147) +(trans s1878 s1160) +(trans s1878 s1173) +(trans s1879 s1154) +(trans s1879 s1167) +(trans s1879 s1180) +(trans s1880 s1161) +(trans s1880 s1174) +(trans s1880 s1187) +(trans s1881 s1168) +(trans s1881 s1181) +(trans s1881 s1194) +(trans s1882 s1175) +(trans s1882 s1188) +(trans s1882 s1201) +(trans s1883 s1182) +(trans s1883 s1195) +(trans s1883 s1208) +(trans s1884 s1189) +(trans s1884 s1202) +(trans s1884 s1215) +(trans s1885 s1196) +(trans s1885 s1209) +(trans s1885 s1222) +(trans s1886 s1203) +(trans s1886 s1216) +(trans s1886 s1229) +(trans s1887 s1210) +(trans s1887 s1223) +(trans s1887 s1236) +(trans s1888 s1217) +(trans s1888 s1230) +(trans s1888 s1243) +(trans s1889 s1224) +(trans s1889 s1237) +(trans s1889 s1250) +(trans s1890 s1231) +(trans s1890 s1244) +(trans s1890 s1257) +(trans s1891 s1238) +(trans s1891 s1251) +(trans s1891 s1264) +(trans s1892 s1245) +(trans s1892 s1258) +(trans s1892 s1271) +(trans s1893 s1252) +(trans s1893 s1265) +(trans s1893 s1278) +(trans s1894 s1259) +(trans s1894 s1272) +(trans s1894 s1285) +(trans s1895 s1266) +(trans s1895 s1279) +(trans s1895 s1292) +(trans s1896 s1273) +(trans s1896 s1286) +(trans s1896 s1299) +(trans s1897 s1280) +(trans s1897 s1293) +(trans s1897 s1306) +(trans s1898 s1287) +(trans s1898 s1300) +(trans s1898 s1313) +(trans s1899 s1294) +(trans s1899 s1307) +(trans s1899 s1320) +(trans s1900 s1301) +(trans s1900 s1314) +(trans s1900 s1327) +(trans s1901 s1308) +(trans s1901 s1321) +(trans s1901 s1334) +(trans s1902 s1315) +(trans s1902 s1328) +(trans s1902 s1341) +(trans s1903 s1322) +(trans s1903 s1335) +(trans s1903 s1348) +(trans s1904 s1329) +(trans s1904 s1342) +(trans s1904 s1355) +(trans s1905 s1336) +(trans s1905 s1349) +(trans s1905 s1362) +(trans s1906 s1343) +(trans s1906 s1356) +(trans s1906 s1369) +(trans s1907 s1350) +(trans s1907 s1363) +(trans s1907 s1376) +(trans s1908 s1357) +(trans s1908 s1370) +(trans s1908 s1383) +(trans s1909 s1364) +(trans s1909 s1377) +(trans s1909 s1390) +(trans s1910 s1371) +(trans s1910 s1384) +(trans s1910 s1397) +(trans s1911 s1378) +(trans s1911 s1391) +(trans s1911 s1404) +(trans s1912 s1385) +(trans s1912 s1398) +(trans s1912 s1411) +(trans s1913 s1392) +(trans s1913 s1405) +(trans s1913 s1418) +(trans s1914 s1399) +(trans s1914 s1412) +(trans s1914 s1425) +(trans s1915 s1406) +(trans s1915 s1419) +(trans s1915 s1432) +(trans s1916 s1413) +(trans s1916 s1426) +(trans s1916 s1439) +(trans s1917 s1420) +(trans s1917 s1433) +(trans s1917 s1446) +(trans s1918 s1427) +(trans s1918 s1440) +(trans s1918 s1453) +(trans s1919 s1434) +(trans s1919 s1447) +(trans s1919 s1460) +(trans s1920 s1441) +(trans s1920 s1454) +(trans s1920 s1467) +(trans s1921 s1448) +(trans s1921 s1461) +(trans s1921 s1474) +(trans s1922 s1455) +(trans s1922 s1468) +(trans s1922 s1481) +(trans s1923 s1462) +(trans s1923 s1475) +(trans s1923 s1488) +(trans s1924 s1469) +(trans s1924 s1482) +(trans s1924 s1495) +(trans s1925 s1476) +(trans s1925 s1489) +(trans s1925 s1502) +(trans s1926 s1483) +(trans s1926 s1496) +(trans s1926 s1509) +(trans s1927 s1490) +(trans s1927 s1503) +(trans s1927 s1516) +(trans s1928 s1497) +(trans s1928 s1510) +(trans s1928 s1523) +(trans s1929 s1504) +(trans s1929 s1517) +(trans s1929 s1530) +(trans s1930 s1511) +(trans s1930 s1524) +(trans s1930 s1537) +(trans s1931 s1518) +(trans s1931 s1531) +(trans s1931 s1544) +(trans s1932 s1525) +(trans s1932 s1538) +(trans s1932 s1551) +(trans s1933 s1532) +(trans s1933 s1545) +(trans s1933 s1558) +(trans s1934 s1539) +(trans s1934 s1552) +(trans s1934 s1565) +(trans s1935 s1546) +(trans s1935 s1559) +(trans s1935 s1572) +(trans s1936 s1553) +(trans s1936 s1566) +(trans s1936 s1579) +(trans s1937 s1560) +(trans s1937 s1573) +(trans s1937 s1586) +(trans s1938 s1567) +(trans s1938 s1580) +(trans s1938 s1593) +(trans s1939 s1574) +(trans s1939 s1587) +(trans s1939 s1600) +(trans s1940 s1581) +(trans s1940 s1594) +(trans s1940 s1607) +(trans s1941 s1588) +(trans s1941 s1601) +(trans s1941 s1614) +(trans s1942 s1595) +(trans s1942 s1608) +(trans s1942 s1621) +(trans s1943 s1602) +(trans s1943 s1615) +(trans s1943 s1628) +(trans s1944 s1609) +(trans s1944 s1622) +(trans s1944 s1635) +(trans s1945 s1616) +(trans s1945 s1629) +(trans s1945 s1642) +(trans s1946 s1623) +(trans s1946 s1636) +(trans s1946 s1649) +(trans s1947 s1630) +(trans s1947 s1643) +(trans s1947 s1656) +(trans s1948 s1637) +(trans s1948 s1650) +(trans s1948 s1663) +(trans s1949 s1644) +(trans s1949 s1657) +(trans s1949 s1670) +(trans s1950 s1651) +(trans s1950 s1664) +(trans s1950 s1677) +(trans s1951 s1658) +(trans s1951 s1671) +(trans s1951 s1684) +(trans s1952 s1665) +(trans s1952 s1678) +(trans s1952 s1691) +(trans s1953 s1672) +(trans s1953 s1685) +(trans s1953 s1698) +(trans s1954 s1679) +(trans s1954 s1692) +(trans s1954 s1705) +(trans s1955 s1686) +(trans s1955 s1699) +(trans s1955 s1712) +(trans s1956 s1693) +(trans s1956 s1706) +(trans s1956 s1719) +(trans s1957 s1700) +(trans s1957 s1713) +(trans s1957 s1726) +(trans s1958 s1707) +(trans s1958 s1720) +(trans s1958 s1733) +(trans s1959 s1714) +(trans s1959 s1727) +(trans s1959 s1740) +(trans s1960 s1721) +(trans s1960 s1734) +(trans s1960 s1747) +(trans s1961 s1728) +(trans s1961 s1741) +(trans s1961 s1754) +(trans s1962 s1735) +(trans s1962 s1748) +(trans s1962 s1761) +(trans s1963 s1742) +(trans s1963 s1755) +(trans s1963 s1768) +(trans s1964 s1749) +(trans s1964 s1762) +(trans s1964 s1775) +(trans s1965 s1756) +(trans s1965 s1769) +(trans s1965 s1782) +(trans s1966 s1763) +(trans s1966 s1776) +(trans s1966 s1789) +(trans s1967 s1770) +(trans s1967 s1783) +(trans s1967 s1796) +(trans s1968 s1777) +(trans s1968 s1790) +(trans s1968 s1803) +(trans s1969 s1784) +(trans s1969 s1797) +(trans s1969 s1810) +(trans s1970 s1791) +(trans s1970 s1804) +(trans s1970 s1817) +(trans s1971 s1798) +(trans s1971 s1811) +(trans s1971 s1824) +(trans s1972 s1805) +(trans s1972 s1818) +(trans s1972 s1831) +(trans s1973 s1812) +(trans s1973 s1825) +(trans s1973 s1838) +(trans s1974 s1819) +(trans s1974 s1832) +(trans s1974 s1845) +(trans s1975 s1826) +(trans s1975 s1839) +(trans s1975 s1852) +(trans s1976 s1833) +(trans s1976 s1846) +(trans s1976 s1859) +(trans s1977 s1840) +(trans s1977 s1853) +(trans s1977 s1866) +(trans s1978 s1847) +(trans s1978 s1860) +(trans s1978 s1873) +(trans s1979 s1854) +(trans s1979 s1867) +(trans s1979 s1880) +(trans s1980 s1861) +(trans s1980 s1874) +(trans s1980 s1887) +(trans s1981 s1868) +(trans s1981 s1881) +(trans s1981 s1894) +(trans s1982 s1875) +(trans s1982 s1888) +(trans s1982 s1901) +(trans s1983 s1882) +(trans s1983 s1895) +(trans s1983 s1908) +(trans s1984 s1889) +(trans s1984 s1902) +(trans s1984 s1915) +(trans s1985 s1896) +(trans s1985 s1909) +(trans s1985 s1922) +(trans s1986 s1903) +(trans s1986 s1916) +(trans s1986 s1929) +(trans s1987 s1910) +(trans s1987 s1923) +(trans s1987 s1936) +(trans s1988 s1917) +(trans s1988 s1930) +(trans s1988 s1943) +(trans s1989 s1924) +(trans s1989 s1937) +(trans s1989 s1950) +(trans s1990 s1931) +(trans s1990 s1944) +(trans s1990 s1957) +(trans s1991 s1938) +(trans s1991 s1951) +(trans s1991 s1964) +(trans s1992 s1945) +(trans s1992 s1958) +(trans s1992 s1971) +(trans s1993 s1952) +(trans s1993 s1965) +(trans s1993 s1978) +(trans s1994 s1959) +(trans s1994 s1972) +(trans s1994 s1985) +(trans s1995 s1966) +(trans s1995 s1979) +(trans s1995 s1992) +(trans s1996 s1973) +(trans s1996 s1986) +(trans s1996 s1999) +(trans s1997 s1980) +(trans s1997 s1993) +(trans s1997 s2006) +(trans s1998 s1987) +(trans s1998 s2000) +(trans s1998 s2013) +(trans s1999 s1994) +(trans s1999 s2007) +(trans s1999 s2020) +(trans s2000 s2001) +(trans s2000 s2014) +(trans s2000 s2027) +(trans s2001 s2008) +(trans s2001 s2021) +(trans s2001 s2034) +(trans s2002 s2015) +(trans s2002 s2028) +(trans s2002 s2041) +(trans s2003 s2022) +(trans s2003 s2035) +(trans s2003 s2048) +(trans s2004 s2029) +(trans s2004 s2042) +(trans s2004 s2055) +(trans s2005 s2036) +(trans s2005 s2049) +(trans s2005 s2062) +(trans s2006 s2043) +(trans s2006 s2056) +(trans s2006 s2069) +(trans s2007 s2050) +(trans s2007 s2063) +(trans s2007 s2076) +(trans s2008 s2057) +(trans s2008 s2070) +(trans s2008 s2083) +(trans s2009 s2064) +(trans s2009 s2077) +(trans s2009 s2090) +(trans s2010 s2071) +(trans s2010 s2084) +(trans s2010 s2097) +(trans s2011 s2078) +(trans s2011 s2091) +(trans s2011 s2104) +(trans s2012 s2085) +(trans s2012 s2098) +(trans s2012 s2111) +(trans s2013 s2092) +(trans s2013 s2105) +(trans s2013 s2118) +(trans s2014 s2099) +(trans s2014 s2112) +(trans s2014 s2125) +(trans s2015 s2106) +(trans s2015 s2119) +(trans s2015 s2132) +(trans s2016 s2113) +(trans s2016 s2126) +(trans s2016 s2139) +(trans s2017 s2120) +(trans s2017 s2133) +(trans s2017 s2146) +(trans s2018 s2127) +(trans s2018 s2140) +(trans s2018 s2153) +(trans s2019 s2134) +(trans s2019 s2147) +(trans s2019 s2160) +(trans s2020 s2141) +(trans s2020 s2154) +(trans s2020 s2167) +(trans s2021 s2148) +(trans s2021 s2161) +(trans s2021 s2174) +(trans s2022 s2155) +(trans s2022 s2168) +(trans s2022 s2181) +(trans s2023 s2162) +(trans s2023 s2175) +(trans s2023 s2188) +(trans s2024 s2169) +(trans s2024 s2182) +(trans s2024 s2195) +(trans s2025 s2176) +(trans s2025 s2189) +(trans s2025 s2202) +(trans s2026 s2183) +(trans s2026 s2196) +(trans s2026 s2209) +(trans s2027 s2190) +(trans s2027 s2203) +(trans s2027 s2216) +(trans s2028 s2197) +(trans s2028 s2210) +(trans s2028 s2223) +(trans s2029 s2204) +(trans s2029 s2217) +(trans s2029 s2230) +(trans s2030 s2211) +(trans s2030 s2224) +(trans s2030 s2237) +(trans s2031 s2218) +(trans s2031 s2231) +(trans s2031 s2244) +(trans s2032 s2225) +(trans s2032 s2238) +(trans s2032 s2251) +(trans s2033 s2232) +(trans s2033 s2245) +(trans s2033 s2258) +(trans s2034 s2239) +(trans s2034 s2252) +(trans s2034 s2265) +(trans s2035 s2246) +(trans s2035 s2259) +(trans s2035 s2272) +(trans s2036 s2253) +(trans s2036 s2266) +(trans s2036 s2279) +(trans s2037 s2260) +(trans s2037 s2273) +(trans s2037 s2286) +(trans s2038 s2267) +(trans s2038 s2280) +(trans s2038 s2293) +(trans s2039 s2274) +(trans s2039 s2287) +(trans s2039 s2300) +(trans s2040 s2281) +(trans s2040 s2294) +(trans s2040 s2307) +(trans s2041 s2288) +(trans s2041 s2301) +(trans s2041 s2314) +(trans s2042 s2295) +(trans s2042 s2308) +(trans s2042 s2321) +(trans s2043 s2302) +(trans s2043 s2315) +(trans s2043 s2328) +(trans s2044 s2309) +(trans s2044 s2322) +(trans s2044 s2335) +(trans s2045 s2316) +(trans s2045 s2329) +(trans s2045 s2342) +(trans s2046 s2323) +(trans s2046 s2336) +(trans s2046 s2349) +(trans s2047 s2330) +(trans s2047 s2343) +(trans s2047 s2356) +(trans s2048 s2337) +(trans s2048 s2350) +(trans s2048 s2363) +(trans s2049 s2344) +(trans s2049 s2357) +(trans s2049 s2370) +(trans s2050 s2351) +(trans s2050 s2364) +(trans s2050 s2377) +(trans s2051 s2358) +(trans s2051 s2371) +(trans s2051 s2384) +(trans s2052 s2365) +(trans s2052 s2378) +(trans s2052 s2391) +(trans s2053 s2372) +(trans s2053 s2385) +(trans s2053 s2398) +(trans s2054 s2379) +(trans s2054 s2392) +(trans s2054 s2405) +(trans s2055 s2386) +(trans s2055 s2399) +(trans s2055 s2412) +(trans s2056 s2393) +(trans s2056 s2406) +(trans s2056 s2419) +(trans s2057 s2400) +(trans s2057 s2413) +(trans s2057 s2426) +(trans s2058 s2407) +(trans s2058 s2420) +(trans s2058 s2433) +(trans s2059 s2414) +(trans s2059 s2427) +(trans s2059 s2440) +(trans s2060 s2421) +(trans s2060 s2434) +(trans s2060 s2447) +(trans s2061 s2428) +(trans s2061 s2441) +(trans s2061 s2454) +(trans s2062 s2435) +(trans s2062 s2448) +(trans s2062 s2461) +(trans s2063 s2442) +(trans s2063 s2455) +(trans s2063 s2468) +(trans s2064 s2449) +(trans s2064 s2462) +(trans s2064 s2475) +(trans s2065 s2456) +(trans s2065 s2469) +(trans s2065 s2482) +(trans s2066 s2463) +(trans s2066 s2476) +(trans s2066 s2489) +(trans s2067 s2470) +(trans s2067 s2483) +(trans s2067 s2496) +(trans s2068 s2477) +(trans s2068 s2490) +(trans s2068 s2503) +(trans s2069 s2484) +(trans s2069 s2497) +(trans s2069 s2510) +(trans s2070 s2491) +(trans s2070 s2504) +(trans s2070 s2517) +(trans s2071 s2498) +(trans s2071 s2511) +(trans s2071 s2524) +(trans s2072 s2505) +(trans s2072 s2518) +(trans s2072 s2531) +(trans s2073 s2512) +(trans s2073 s2525) +(trans s2073 s2538) +(trans s2074 s2519) +(trans s2074 s2532) +(trans s2074 s2545) +(trans s2075 s2526) +(trans s2075 s2539) +(trans s2075 s2552) +(trans s2076 s2533) +(trans s2076 s2546) +(trans s2076 s2559) +(trans s2077 s2540) +(trans s2077 s2553) +(trans s2077 s2566) +(trans s2078 s2547) +(trans s2078 s2560) +(trans s2078 s2573) +(trans s2079 s2554) +(trans s2079 s2567) +(trans s2079 s2580) +(trans s2080 s2561) +(trans s2080 s2574) +(trans s2080 s2587) +(trans s2081 s2568) +(trans s2081 s2581) +(trans s2081 s2594) +(trans s2082 s2575) +(trans s2082 s2588) +(trans s2082 s2601) +(trans s2083 s2582) +(trans s2083 s2595) +(trans s2083 s2608) +(trans s2084 s2589) +(trans s2084 s2602) +(trans s2084 s2615) +(trans s2085 s2596) +(trans s2085 s2609) +(trans s2085 s2622) +(trans s2086 s2603) +(trans s2086 s2616) +(trans s2086 s2629) +(trans s2087 s2610) +(trans s2087 s2623) +(trans s2087 s2636) +(trans s2088 s2617) +(trans s2088 s2630) +(trans s2088 s2643) +(trans s2089 s2624) +(trans s2089 s2637) +(trans s2089 s2650) +(trans s2090 s2631) +(trans s2090 s2644) +(trans s2090 s2657) +(trans s2091 s2638) +(trans s2091 s2651) +(trans s2091 s2664) +(trans s2092 s2645) +(trans s2092 s2658) +(trans s2092 s2671) +(trans s2093 s2652) +(trans s2093 s2665) +(trans s2093 s2678) +(trans s2094 s2659) +(trans s2094 s2672) +(trans s2094 s2685) +(trans s2095 s2666) +(trans s2095 s2679) +(trans s2095 s2692) +(trans s2096 s2673) +(trans s2096 s2686) +(trans s2096 s2699) +(trans s2097 s2680) +(trans s2097 s2693) +(trans s2097 s2706) +(trans s2098 s2687) +(trans s2098 s2700) +(trans s2098 s2713) +(trans s2099 s2694) +(trans s2099 s2707) +(trans s2099 s2720) +(trans s2100 s2701) +(trans s2100 s2714) +(trans s2100 s2727) +(trans s2101 s2708) +(trans s2101 s2721) +(trans s2101 s2734) +(trans s2102 s2715) +(trans s2102 s2728) +(trans s2102 s2741) +(trans s2103 s2722) +(trans s2103 s2735) +(trans s2103 s2748) +(trans s2104 s2729) +(trans s2104 s2742) +(trans s2104 s2755) +(trans s2105 s2736) +(trans s2105 s2749) +(trans s2105 s2762) +(trans s2106 s2743) +(trans s2106 s2756) +(trans s2106 s2769) +(trans s2107 s2750) +(trans s2107 s2763) +(trans s2107 s2776) +(trans s2108 s2757) +(trans s2108 s2770) +(trans s2108 s2783) +(trans s2109 s2764) +(trans s2109 s2777) +(trans s2109 s2790) +(trans s2110 s2771) +(trans s2110 s2784) +(trans s2110 s2797) +(trans s2111 s2778) +(trans s2111 s2791) +(trans s2111 s2804) +(trans s2112 s2785) +(trans s2112 s2798) +(trans s2112 s2811) +(trans s2113 s2792) +(trans s2113 s2805) +(trans s2113 s2818) +(trans s2114 s2799) +(trans s2114 s2812) +(trans s2114 s2825) +(trans s2115 s2806) +(trans s2115 s2819) +(trans s2115 s2832) +(trans s2116 s2813) +(trans s2116 s2826) +(trans s2116 s2839) +(trans s2117 s2820) +(trans s2117 s2833) +(trans s2117 s2846) +(trans s2118 s2827) +(trans s2118 s2840) +(trans s2118 s2853) +(trans s2119 s2834) +(trans s2119 s2847) +(trans s2119 s2860) +(trans s2120 s2841) +(trans s2120 s2854) +(trans s2120 s2867) +(trans s2121 s2848) +(trans s2121 s2861) +(trans s2121 s2874) +(trans s2122 s2855) +(trans s2122 s2868) +(trans s2122 s2881) +(trans s2123 s2862) +(trans s2123 s2875) +(trans s2123 s2888) +(trans s2124 s2869) +(trans s2124 s2882) +(trans s2124 s2895) +(trans s2125 s2876) +(trans s2125 s2889) +(trans s2125 s2902) +(trans s2126 s2883) +(trans s2126 s2896) +(trans s2126 s2909) +(trans s2127 s2890) +(trans s2127 s2903) +(trans s2127 s2916) +(trans s2128 s2897) +(trans s2128 s2910) +(trans s2128 s2923) +(trans s2129 s2904) +(trans s2129 s2917) +(trans s2129 s2930) +(trans s2130 s2911) +(trans s2130 s2924) +(trans s2130 s2937) +(trans s2131 s2918) +(trans s2131 s2931) +(trans s2131 s2944) +(trans s2132 s2925) +(trans s2132 s2938) +(trans s2132 s2951) +(trans s2133 s2932) +(trans s2133 s2945) +(trans s2133 s2958) +(trans s2134 s2939) +(trans s2134 s2952) +(trans s2134 s2965) +(trans s2135 s2946) +(trans s2135 s2959) +(trans s2135 s2972) +(trans s2136 s2953) +(trans s2136 s2966) +(trans s2136 s2979) +(trans s2137 s2960) +(trans s2137 s2973) +(trans s2137 s2986) +(trans s2138 s2967) +(trans s2138 s2980) +(trans s2138 s2993) +(trans s2139 s2974) +(trans s2139 s2987) +(trans s2139 s3000) +(trans s2140 s2981) +(trans s2140 s2994) +(trans s2140 s3007) +(trans s2141 s2988) +(trans s2141 s3001) +(trans s2141 s3014) +(trans s2142 s2995) +(trans s2142 s3008) +(trans s2142 s3021) +(trans s2143 s3002) +(trans s2143 s3015) +(trans s2143 s3028) +(trans s2144 s3009) +(trans s2144 s3022) +(trans s2144 s3035) +(trans s2145 s3016) +(trans s2145 s3029) +(trans s2145 s3042) +(trans s2146 s3023) +(trans s2146 s3036) +(trans s2146 s3049) +(trans s2147 s3030) +(trans s2147 s3043) +(trans s2147 s3056) +(trans s2148 s3037) +(trans s2148 s3050) +(trans s2148 s3063) +(trans s2149 s3044) +(trans s2149 s3057) +(trans s2149 s3070) +(trans s2150 s3051) +(trans s2150 s3064) +(trans s2150 s3077) +(trans s2151 s3058) +(trans s2151 s3071) +(trans s2151 s3084) +(trans s2152 s3065) +(trans s2152 s3078) +(trans s2152 s3091) +(trans s2153 s3072) +(trans s2153 s3085) +(trans s2153 s3098) +(trans s2154 s3079) +(trans s2154 s3092) +(trans s2154 s3105) +(trans s2155 s3086) +(trans s2155 s3099) +(trans s2155 s3112) +(trans s2156 s3093) +(trans s2156 s3106) +(trans s2156 s3119) +(trans s2157 s3100) +(trans s2157 s3113) +(trans s2157 s3126) +(trans s2158 s3107) +(trans s2158 s3120) +(trans s2158 s3133) +(trans s2159 s3114) +(trans s2159 s3127) +(trans s2159 s3140) +(trans s2160 s3121) +(trans s2160 s3134) +(trans s2160 s3147) +(trans s2161 s3128) +(trans s2161 s3141) +(trans s2161 s3154) +(trans s2162 s3135) +(trans s2162 s3148) +(trans s2162 s3161) +(trans s2163 s3142) +(trans s2163 s3155) +(trans s2163 s3168) +(trans s2164 s3149) +(trans s2164 s3162) +(trans s2164 s3175) +(trans s2165 s3156) +(trans s2165 s3169) +(trans s2165 s3182) +(trans s2166 s3163) +(trans s2166 s3176) +(trans s2166 s3189) +(trans s2167 s3170) +(trans s2167 s3183) +(trans s2167 s3196) +(trans s2168 s3177) +(trans s2168 s3190) +(trans s2168 s3203) +(trans s2169 s3184) +(trans s2169 s3197) +(trans s2169 s3210) +(trans s2170 s3191) +(trans s2170 s3204) +(trans s2170 s3217) +(trans s2171 s3198) +(trans s2171 s3211) +(trans s2171 s3224) +(trans s2172 s3205) +(trans s2172 s3218) +(trans s2172 s3231) +(trans s2173 s3212) +(trans s2173 s3225) +(trans s2173 s3238) +(trans s2174 s3219) +(trans s2174 s3232) +(trans s2174 s3245) +(trans s2175 s3226) +(trans s2175 s3239) +(trans s2175 s3252) +(trans s2176 s3233) +(trans s2176 s3246) +(trans s2176 s3259) +(trans s2177 s3240) +(trans s2177 s3253) +(trans s2177 s3266) +(trans s2178 s3247) +(trans s2178 s3260) +(trans s2178 s3273) +(trans s2179 s3254) +(trans s2179 s3267) +(trans s2179 s3280) +(trans s2180 s3261) +(trans s2180 s3274) +(trans s2180 s3287) +(trans s2181 s3268) +(trans s2181 s3281) +(trans s2181 s3294) +(trans s2182 s3275) +(trans s2182 s3288) +(trans s2182 s3301) +(trans s2183 s3282) +(trans s2183 s3295) +(trans s2183 s3308) +(trans s2184 s3289) +(trans s2184 s3302) +(trans s2184 s3315) +(trans s2185 s3296) +(trans s2185 s3309) +(trans s2185 s3322) +(trans s2186 s3303) +(trans s2186 s3316) +(trans s2186 s3329) +(trans s2187 s3310) +(trans s2187 s3323) +(trans s2187 s3336) +(trans s2188 s3317) +(trans s2188 s3330) +(trans s2188 s3343) +(trans s2189 s3324) +(trans s2189 s3337) +(trans s2189 s3350) +(trans s2190 s3331) +(trans s2190 s3344) +(trans s2190 s3357) +(trans s2191 s3338) +(trans s2191 s3351) +(trans s2191 s3364) +(trans s2192 s3345) +(trans s2192 s3358) +(trans s2192 s3371) +(trans s2193 s3352) +(trans s2193 s3365) +(trans s2193 s3378) +(trans s2194 s3359) +(trans s2194 s3372) +(trans s2194 s3385) +(trans s2195 s3366) +(trans s2195 s3379) +(trans s2195 s3392) +(trans s2196 s3373) +(trans s2196 s3386) +(trans s2196 s3399) +(trans s2197 s3380) +(trans s2197 s3393) +(trans s2197 s3406) +(trans s2198 s3387) +(trans s2198 s3400) +(trans s2198 s3413) +(trans s2199 s3394) +(trans s2199 s3407) +(trans s2199 s3420) +(trans s2200 s3401) +(trans s2200 s3414) +(trans s2200 s3427) +(trans s2201 s3408) +(trans s2201 s3421) +(trans s2201 s3434) +(trans s2202 s3415) +(trans s2202 s3428) +(trans s2202 s3441) +(trans s2203 s3422) +(trans s2203 s3435) +(trans s2203 s3448) +(trans s2204 s3429) +(trans s2204 s3442) +(trans s2204 s3455) +(trans s2205 s3436) +(trans s2205 s3449) +(trans s2205 s3462) +(trans s2206 s3443) +(trans s2206 s3456) +(trans s2206 s3469) +(trans s2207 s3450) +(trans s2207 s3463) +(trans s2207 s3476) +(trans s2208 s3457) +(trans s2208 s3470) +(trans s2208 s3483) +(trans s2209 s3464) +(trans s2209 s3477) +(trans s2209 s3490) +(trans s2210 s3471) +(trans s2210 s3484) +(trans s2210 s3497) +(trans s2211 s3478) +(trans s2211 s3491) +(trans s2211 s3504) +(trans s2212 s3485) +(trans s2212 s3498) +(trans s2212 s3511) +(trans s2213 s3492) +(trans s2213 s3505) +(trans s2213 s3518) +(trans s2214 s3499) +(trans s2214 s3512) +(trans s2214 s3525) +(trans s2215 s3506) +(trans s2215 s3519) +(trans s2215 s3532) +(trans s2216 s3513) +(trans s2216 s3526) +(trans s2216 s3539) +(trans s2217 s3520) +(trans s2217 s3533) +(trans s2217 s3546) +(trans s2218 s3527) +(trans s2218 s3540) +(trans s2218 s3553) +(trans s2219 s3534) +(trans s2219 s3547) +(trans s2219 s3560) +(trans s2220 s3541) +(trans s2220 s3554) +(trans s2220 s3567) +(trans s2221 s3548) +(trans s2221 s3561) +(trans s2221 s3574) +(trans s2222 s3555) +(trans s2222 s3568) +(trans s2222 s3581) +(trans s2223 s3562) +(trans s2223 s3575) +(trans s2223 s3588) +(trans s2224 s3569) +(trans s2224 s3582) +(trans s2224 s3595) +(trans s2225 s3576) +(trans s2225 s3589) +(trans s2225 s3602) +(trans s2226 s3583) +(trans s2226 s3596) +(trans s2226 s3609) +(trans s2227 s3590) +(trans s2227 s3603) +(trans s2227 s3616) +(trans s2228 s3597) +(trans s2228 s3610) +(trans s2228 s3623) +(trans s2229 s3604) +(trans s2229 s3617) +(trans s2229 s3630) +(trans s2230 s3611) +(trans s2230 s3624) +(trans s2230 s3637) +(trans s2231 s3618) +(trans s2231 s3631) +(trans s2231 s3644) +(trans s2232 s3625) +(trans s2232 s3638) +(trans s2232 s3651) +(trans s2233 s3632) +(trans s2233 s3645) +(trans s2233 s3658) +(trans s2234 s3639) +(trans s2234 s3652) +(trans s2234 s3665) +(trans s2235 s3646) +(trans s2235 s3659) +(trans s2235 s3672) +(trans s2236 s3653) +(trans s2236 s3666) +(trans s2236 s3679) +(trans s2237 s3660) +(trans s2237 s3673) +(trans s2237 s3686) +(trans s2238 s3667) +(trans s2238 s3680) +(trans s2238 s3693) +(trans s2239 s3674) +(trans s2239 s3687) +(trans s2239 s3700) +(trans s2240 s3681) +(trans s2240 s3694) +(trans s2240 s3707) +(trans s2241 s3688) +(trans s2241 s3701) +(trans s2241 s3714) +(trans s2242 s3695) +(trans s2242 s3708) +(trans s2242 s3721) +(trans s2243 s3702) +(trans s2243 s3715) +(trans s2243 s3728) +(trans s2244 s3709) +(trans s2244 s3722) +(trans s2244 s3735) +(trans s2245 s3716) +(trans s2245 s3729) +(trans s2245 s3742) +(trans s2246 s3723) +(trans s2246 s3736) +(trans s2246 s3749) +(trans s2247 s3730) +(trans s2247 s3743) +(trans s2247 s3756) +(trans s2248 s3737) +(trans s2248 s3750) +(trans s2248 s3763) +(trans s2249 s3744) +(trans s2249 s3757) +(trans s2249 s3770) +(trans s2250 s3751) +(trans s2250 s3764) +(trans s2250 s3777) +(trans s2251 s3758) +(trans s2251 s3771) +(trans s2251 s3784) +(trans s2252 s3765) +(trans s2252 s3778) +(trans s2252 s3791) +(trans s2253 s3772) +(trans s2253 s3785) +(trans s2253 s3798) +(trans s2254 s3779) +(trans s2254 s3792) +(trans s2254 s3805) +(trans s2255 s3786) +(trans s2255 s3799) +(trans s2255 s3812) +(trans s2256 s3793) +(trans s2256 s3806) +(trans s2256 s3819) +(trans s2257 s3800) +(trans s2257 s3813) +(trans s2257 s3826) +(trans s2258 s3807) +(trans s2258 s3820) +(trans s2258 s3833) +(trans s2259 s3814) +(trans s2259 s3827) +(trans s2259 s3840) +(trans s2260 s3821) +(trans s2260 s3834) +(trans s2260 s3847) +(trans s2261 s3828) +(trans s2261 s3841) +(trans s2261 s3854) +(trans s2262 s3835) +(trans s2262 s3848) +(trans s2262 s3861) +(trans s2263 s3842) +(trans s2263 s3855) +(trans s2263 s3868) +(trans s2264 s3849) +(trans s2264 s3862) +(trans s2264 s3875) +(trans s2265 s3856) +(trans s2265 s3869) +(trans s2265 s3882) +(trans s2266 s3863) +(trans s2266 s3876) +(trans s2266 s3889) +(trans s2267 s3870) +(trans s2267 s3883) +(trans s2267 s3896) +(trans s2268 s3877) +(trans s2268 s3890) +(trans s2268 s3903) +(trans s2269 s3884) +(trans s2269 s3897) +(trans s2269 s3910) +(trans s2270 s3891) +(trans s2270 s3904) +(trans s2270 s3917) +(trans s2271 s3898) +(trans s2271 s3911) +(trans s2271 s3924) +(trans s2272 s3905) +(trans s2272 s3918) +(trans s2272 s3931) +(trans s2273 s3912) +(trans s2273 s3925) +(trans s2273 s3938) +(trans s2274 s3919) +(trans s2274 s3932) +(trans s2274 s3945) +(trans s2275 s3926) +(trans s2275 s3939) +(trans s2275 s3952) +(trans s2276 s3933) +(trans s2276 s3946) +(trans s2276 s3959) +(trans s2277 s3940) +(trans s2277 s3953) +(trans s2277 s3966) +(trans s2278 s3947) +(trans s2278 s3960) +(trans s2278 s3973) +(trans s2279 s3954) +(trans s2279 s3967) +(trans s2279 s3980) +(trans s2280 s3961) +(trans s2280 s3974) +(trans s2280 s3987) +(trans s2281 s3968) +(trans s2281 s3981) +(trans s2281 s3994) +(trans s2282 s3975) +(trans s2282 s3988) +(trans s2282 s4001) +(trans s2283 s3982) +(trans s2283 s3995) +(trans s2283 s4008) +(trans s2284 s3989) +(trans s2284 s4002) +(trans s2284 s4015) +(trans s2285 s3996) +(trans s2285 s4009) +(trans s2285 s4022) +(trans s2286 s4003) +(trans s2286 s4016) +(trans s2286 s4029) +(trans s2287 s4010) +(trans s2287 s4023) +(trans s2287 s4036) +(trans s2288 s4017) +(trans s2288 s4030) +(trans s2288 s4043) +(trans s2289 s4024) +(trans s2289 s4037) +(trans s2289 s4050) +(trans s2290 s4031) +(trans s2290 s4044) +(trans s2290 s4057) +(trans s2291 s4038) +(trans s2291 s4051) +(trans s2291 s4064) +(trans s2292 s4045) +(trans s2292 s4058) +(trans s2292 s4071) +(trans s2293 s4052) +(trans s2293 s4065) +(trans s2293 s4078) +(trans s2294 s4059) +(trans s2294 s4072) +(trans s2294 s4085) +(trans s2295 s4066) +(trans s2295 s4079) +(trans s2295 s4092) +(trans s2296 s4073) +(trans s2296 s4086) +(trans s2296 s4099) +(trans s2297 s4080) +(trans s2297 s4093) +(trans s2297 s4106) +(trans s2298 s4087) +(trans s2298 s4100) +(trans s2298 s4113) +(trans s2299 s4094) +(trans s2299 s4107) +(trans s2299 s4120) +(trans s2300 s4101) +(trans s2300 s4114) +(trans s2300 s4127) +(trans s2301 s4108) +(trans s2301 s4121) +(trans s2301 s4134) +(trans s2302 s4115) +(trans s2302 s4128) +(trans s2302 s4141) +(trans s2303 s4122) +(trans s2303 s4135) +(trans s2303 s4148) +(trans s2304 s4129) +(trans s2304 s4142) +(trans s2304 s4155) +(trans s2305 s4136) +(trans s2305 s4149) +(trans s2305 s4162) +(trans s2306 s4143) +(trans s2306 s4156) +(trans s2306 s4169) +(trans s2307 s4150) +(trans s2307 s4163) +(trans s2307 s4176) +(trans s2308 s4157) +(trans s2308 s4170) +(trans s2308 s4183) +(trans s2309 s4164) +(trans s2309 s4177) +(trans s2309 s4190) +(trans s2310 s4171) +(trans s2310 s4184) +(trans s2310 s4197) +(trans s2311 s4178) +(trans s2311 s4191) +(trans s2311 s4204) +(trans s2312 s4185) +(trans s2312 s4198) +(trans s2312 s4211) +(trans s2313 s4192) +(trans s2313 s4205) +(trans s2313 s4218) +(trans s2314 s4199) +(trans s2314 s4212) +(trans s2314 s4225) +(trans s2315 s4206) +(trans s2315 s4219) +(trans s2315 s4232) +(trans s2316 s4213) +(trans s2316 s4226) +(trans s2316 s4239) +(trans s2317 s4220) +(trans s2317 s4233) +(trans s2317 s4246) +(trans s2318 s4227) +(trans s2318 s4240) +(trans s2318 s4253) +(trans s2319 s4234) +(trans s2319 s4247) +(trans s2319 s4260) +(trans s2320 s4241) +(trans s2320 s4254) +(trans s2320 s4267) +(trans s2321 s4248) +(trans s2321 s4261) +(trans s2321 s4274) +(trans s2322 s4255) +(trans s2322 s4268) +(trans s2322 s4281) +(trans s2323 s4262) +(trans s2323 s4275) +(trans s2323 s4288) +(trans s2324 s4269) +(trans s2324 s4282) +(trans s2324 s4295) +(trans s2325 s4276) +(trans s2325 s4289) +(trans s2325 s4302) +(trans s2326 s4283) +(trans s2326 s4296) +(trans s2326 s4309) +(trans s2327 s4290) +(trans s2327 s4303) +(trans s2327 s4316) +(trans s2328 s4297) +(trans s2328 s4310) +(trans s2328 s4323) +(trans s2329 s4304) +(trans s2329 s4317) +(trans s2329 s4330) +(trans s2330 s4311) +(trans s2330 s4324) +(trans s2330 s4337) +(trans s2331 s4318) +(trans s2331 s4331) +(trans s2331 s4344) +(trans s2332 s4325) +(trans s2332 s4338) +(trans s2332 s4351) +(trans s2333 s4332) +(trans s2333 s4345) +(trans s2333 s4358) +(trans s2334 s4339) +(trans s2334 s4352) +(trans s2334 s4365) +(trans s2335 s4346) +(trans s2335 s4359) +(trans s2335 s4372) +(trans s2336 s4353) +(trans s2336 s4366) +(trans s2336 s4379) +(trans s2337 s4360) +(trans s2337 s4373) +(trans s2337 s4386) +(trans s2338 s4367) +(trans s2338 s4380) +(trans s2338 s4393) +(trans s2339 s4374) +(trans s2339 s4387) +(trans s2339 s4400) +(trans s2340 s4381) +(trans s2340 s4394) +(trans s2340 s4407) +(trans s2341 s4388) +(trans s2341 s4401) +(trans s2341 s4414) +(trans s2342 s4395) +(trans s2342 s4408) +(trans s2342 s4421) +(trans s2343 s4402) +(trans s2343 s4415) +(trans s2343 s4428) +(trans s2344 s4409) +(trans s2344 s4422) +(trans s2344 s4435) +(trans s2345 s4416) +(trans s2345 s4429) +(trans s2345 s4442) +(trans s2346 s4423) +(trans s2346 s4436) +(trans s2346 s4449) +(trans s2347 s4430) +(trans s2347 s4443) +(trans s2347 s4456) +(trans s2348 s4437) +(trans s2348 s4450) +(trans s2348 s4463) +(trans s2349 s4444) +(trans s2349 s4457) +(trans s2349 s4470) +(trans s2350 s4451) +(trans s2350 s4464) +(trans s2350 s4477) +(trans s2351 s4458) +(trans s2351 s4471) +(trans s2351 s4484) +(trans s2352 s4465) +(trans s2352 s4478) +(trans s2352 s4491) +(trans s2353 s4472) +(trans s2353 s4485) +(trans s2353 s4498) +(trans s2354 s4479) +(trans s2354 s4492) +(trans s2354 s4505) +(trans s2355 s4486) +(trans s2355 s4499) +(trans s2355 s4512) +(trans s2356 s4493) +(trans s2356 s4506) +(trans s2356 s4519) +(trans s2357 s4500) +(trans s2357 s4513) +(trans s2357 s4526) +(trans s2358 s4507) +(trans s2358 s4520) +(trans s2358 s4533) +(trans s2359 s4514) +(trans s2359 s4527) +(trans s2359 s4540) +(trans s2360 s4521) +(trans s2360 s4534) +(trans s2360 s4547) +(trans s2361 s4528) +(trans s2361 s4541) +(trans s2361 s4554) +(trans s2362 s4535) +(trans s2362 s4548) +(trans s2362 s4561) +(trans s2363 s4542) +(trans s2363 s4555) +(trans s2363 s4568) +(trans s2364 s4549) +(trans s2364 s4562) +(trans s2364 s4575) +(trans s2365 s4556) +(trans s2365 s4569) +(trans s2365 s4582) +(trans s2366 s4563) +(trans s2366 s4576) +(trans s2366 s4589) +(trans s2367 s4570) +(trans s2367 s4583) +(trans s2367 s4596) +(trans s2368 s4577) +(trans s2368 s4590) +(trans s2368 s4603) +(trans s2369 s4584) +(trans s2369 s4597) +(trans s2369 s4610) +(trans s2370 s4591) +(trans s2370 s4604) +(trans s2370 s4617) +(trans s2371 s4598) +(trans s2371 s4611) +(trans s2371 s4624) +(trans s2372 s4605) +(trans s2372 s4618) +(trans s2372 s4631) +(trans s2373 s4612) +(trans s2373 s4625) +(trans s2373 s4638) +(trans s2374 s4619) +(trans s2374 s4632) +(trans s2374 s4645) +(trans s2375 s4626) +(trans s2375 s4639) +(trans s2375 s4652) +(trans s2376 s4633) +(trans s2376 s4646) +(trans s2376 s4659) +(trans s2377 s4640) +(trans s2377 s4653) +(trans s2377 s4666) +(trans s2378 s4647) +(trans s2378 s4660) +(trans s2378 s4673) +(trans s2379 s4654) +(trans s2379 s4667) +(trans s2379 s4680) +(trans s2380 s4661) +(trans s2380 s4674) +(trans s2380 s4687) +(trans s2381 s4668) +(trans s2381 s4681) +(trans s2381 s4694) +(trans s2382 s4675) +(trans s2382 s4688) +(trans s2382 s4701) +(trans s2383 s4682) +(trans s2383 s4695) +(trans s2383 s4708) +(trans s2384 s4689) +(trans s2384 s4702) +(trans s2384 s4715) +(trans s2385 s4696) +(trans s2385 s4709) +(trans s2385 s4722) +(trans s2386 s4703) +(trans s2386 s4716) +(trans s2386 s4729) +(trans s2387 s4710) +(trans s2387 s4723) +(trans s2387 s4736) +(trans s2388 s4717) +(trans s2388 s4730) +(trans s2388 s4743) +(trans s2389 s4724) +(trans s2389 s4737) +(trans s2389 s4750) +(trans s2390 s4731) +(trans s2390 s4744) +(trans s2390 s4757) +(trans s2391 s4738) +(trans s2391 s4751) +(trans s2391 s4764) +(trans s2392 s4745) +(trans s2392 s4758) +(trans s2392 s4771) +(trans s2393 s4752) +(trans s2393 s4765) +(trans s2393 s4778) +(trans s2394 s4759) +(trans s2394 s4772) +(trans s2394 s4785) +(trans s2395 s4766) +(trans s2395 s4779) +(trans s2395 s4792) +(trans s2396 s4773) +(trans s2396 s4786) +(trans s2396 s4799) +(trans s2397 s4780) +(trans s2397 s4793) +(trans s2397 s4806) +(trans s2398 s4787) +(trans s2398 s4800) +(trans s2398 s4813) +(trans s2399 s4794) +(trans s2399 s4807) +(trans s2399 s4820) +(trans s2400 s4801) +(trans s2400 s4814) +(trans s2400 s4827) +(trans s2401 s4808) +(trans s2401 s4821) +(trans s2401 s4834) +(trans s2402 s4815) +(trans s2402 s4828) +(trans s2402 s4841) +(trans s2403 s4822) +(trans s2403 s4835) +(trans s2403 s4848) +(trans s2404 s4829) +(trans s2404 s4842) +(trans s2404 s4855) +(trans s2405 s4836) +(trans s2405 s4849) +(trans s2405 s4862) +(trans s2406 s4843) +(trans s2406 s4856) +(trans s2406 s4869) +(trans s2407 s4850) +(trans s2407 s4863) +(trans s2407 s4876) +(trans s2408 s4857) +(trans s2408 s4870) +(trans s2408 s4883) +(trans s2409 s4864) +(trans s2409 s4877) +(trans s2409 s4890) +(trans s2410 s4871) +(trans s2410 s4884) +(trans s2410 s4897) +(trans s2411 s4878) +(trans s2411 s4891) +(trans s2411 s4904) +(trans s2412 s4885) +(trans s2412 s4898) +(trans s2412 s4911) +(trans s2413 s4892) +(trans s2413 s4905) +(trans s2413 s4918) +(trans s2414 s4899) +(trans s2414 s4912) +(trans s2414 s4925) +(trans s2415 s4906) +(trans s2415 s4919) +(trans s2415 s4932) +(trans s2416 s4913) +(trans s2416 s4926) +(trans s2416 s4939) +(trans s2417 s4920) +(trans s2417 s4933) +(trans s2417 s4946) +(trans s2418 s4927) +(trans s2418 s4940) +(trans s2418 s4953) +(trans s2419 s4934) +(trans s2419 s4947) +(trans s2419 s4960) +(trans s2420 s4941) +(trans s2420 s4954) +(trans s2420 s4967) +(trans s2421 s4948) +(trans s2421 s4961) +(trans s2421 s4974) +(trans s2422 s4955) +(trans s2422 s4968) +(trans s2422 s4981) +(trans s2423 s4962) +(trans s2423 s4975) +(trans s2423 s4988) +(trans s2424 s4969) +(trans s2424 s4982) +(trans s2424 s4995) +(trans s2425 s4976) +(trans s2425 s4989) +(trans s2425 s5002) +(trans s2426 s4983) +(trans s2426 s4996) +(trans s2426 s5009) +(trans s2427 s4990) +(trans s2427 s5003) +(trans s2427 s5016) +(trans s2428 s4997) +(trans s2428 s5010) +(trans s2428 s5023) +(trans s2429 s5004) +(trans s2429 s5017) +(trans s2429 s5030) +(trans s2430 s5011) +(trans s2430 s5024) +(trans s2430 s5037) +(trans s2431 s5018) +(trans s2431 s5031) +(trans s2431 s5044) +(trans s2432 s5025) +(trans s2432 s5038) +(trans s2432 s5051) +(trans s2433 s5032) +(trans s2433 s5045) +(trans s2433 s5058) +(trans s2434 s5039) +(trans s2434 s5052) +(trans s2434 s5065) +(trans s2435 s5046) +(trans s2435 s5059) +(trans s2435 s5072) +(trans s2436 s5053) +(trans s2436 s5066) +(trans s2436 s5079) +(trans s2437 s5060) +(trans s2437 s5073) +(trans s2437 s5086) +(trans s2438 s5067) +(trans s2438 s5080) +(trans s2438 s5093) +(trans s2439 s5074) +(trans s2439 s5087) +(trans s2439 s5100) +(trans s2440 s5081) +(trans s2440 s5094) +(trans s2440 s5107) +(trans s2441 s5088) +(trans s2441 s5101) +(trans s2441 s5114) +(trans s2442 s5095) +(trans s2442 s5108) +(trans s2442 s5121) +(trans s2443 s5102) +(trans s2443 s5115) +(trans s2443 s5128) +(trans s2444 s5109) +(trans s2444 s5122) +(trans s2444 s5135) +(trans s2445 s5116) +(trans s2445 s5129) +(trans s2445 s5142) +(trans s2446 s5123) +(trans s2446 s5136) +(trans s2446 s5149) +(trans s2447 s5130) +(trans s2447 s5143) +(trans s2447 s5156) +(trans s2448 s5137) +(trans s2448 s5150) +(trans s2448 s5163) +(trans s2449 s5144) +(trans s2449 s5157) +(trans s2449 s5170) +(trans s2450 s5151) +(trans s2450 s5164) +(trans s2450 s5177) +(trans s2451 s5158) +(trans s2451 s5171) +(trans s2451 s5184) +(trans s2452 s5165) +(trans s2452 s5178) +(trans s2452 s5191) +(trans s2453 s5172) +(trans s2453 s5185) +(trans s2453 s5198) +(trans s2454 s5179) +(trans s2454 s5192) +(trans s2454 s5205) +(trans s2455 s5186) +(trans s2455 s5199) +(trans s2455 s5212) +(trans s2456 s5193) +(trans s2456 s5206) +(trans s2456 s5219) +(trans s2457 s5200) +(trans s2457 s5213) +(trans s2457 s5226) +(trans s2458 s5207) +(trans s2458 s5220) +(trans s2458 s5233) +(trans s2459 s5214) +(trans s2459 s5227) +(trans s2459 s5240) +(trans s2460 s5221) +(trans s2460 s5234) +(trans s2460 s5247) +(trans s2461 s5228) +(trans s2461 s5241) +(trans s2461 s5254) +(trans s2462 s5235) +(trans s2462 s5248) +(trans s2462 s5261) +(trans s2463 s5242) +(trans s2463 s5255) +(trans s2463 s5268) +(trans s2464 s5249) +(trans s2464 s5262) +(trans s2464 s5275) +(trans s2465 s5256) +(trans s2465 s5269) +(trans s2465 s5282) +(trans s2466 s5263) +(trans s2466 s5276) +(trans s2466 s5289) +(trans s2467 s5270) +(trans s2467 s5283) +(trans s2467 s5296) +(trans s2468 s5277) +(trans s2468 s5290) +(trans s2468 s5303) +(trans s2469 s5284) +(trans s2469 s5297) +(trans s2469 s5310) +(trans s2470 s5291) +(trans s2470 s5304) +(trans s2470 s5317) +(trans s2471 s5298) +(trans s2471 s5311) +(trans s2471 s5324) +(trans s2472 s5305) +(trans s2472 s5318) +(trans s2472 s5331) +(trans s2473 s5312) +(trans s2473 s5325) +(trans s2473 s5338) +(trans s2474 s5319) +(trans s2474 s5332) +(trans s2474 s5345) +(trans s2475 s5326) +(trans s2475 s5339) +(trans s2475 s5352) +(trans s2476 s5333) +(trans s2476 s5346) +(trans s2476 s5359) +(trans s2477 s5340) +(trans s2477 s5353) +(trans s2477 s5366) +(trans s2478 s5347) +(trans s2478 s5360) +(trans s2478 s5373) +(trans s2479 s5354) +(trans s2479 s5367) +(trans s2479 s5380) +(trans s2480 s5361) +(trans s2480 s5374) +(trans s2480 s5387) +(trans s2481 s5368) +(trans s2481 s5381) +(trans s2481 s5394) +(trans s2482 s5375) +(trans s2482 s5388) +(trans s2482 s5401) +(trans s2483 s5382) +(trans s2483 s5395) +(trans s2483 s5408) +(trans s2484 s5389) +(trans s2484 s5402) +(trans s2484 s5415) +(trans s2485 s5396) +(trans s2485 s5409) +(trans s2485 s5422) +(trans s2486 s5403) +(trans s2486 s5416) +(trans s2486 s5429) +(trans s2487 s5410) +(trans s2487 s5423) +(trans s2487 s5436) +(trans s2488 s5417) +(trans s2488 s5430) +(trans s2488 s5443) +(trans s2489 s5424) +(trans s2489 s5437) +(trans s2489 s5450) +(trans s2490 s5431) +(trans s2490 s5444) +(trans s2490 s5457) +(trans s2491 s5438) +(trans s2491 s5451) +(trans s2491 s5464) +(trans s2492 s5445) +(trans s2492 s5458) +(trans s2492 s5471) +(trans s2493 s5452) +(trans s2493 s5465) +(trans s2493 s5478) +(trans s2494 s5459) +(trans s2494 s5472) +(trans s2494 s5485) +(trans s2495 s5466) +(trans s2495 s5479) +(trans s2495 s5492) +(trans s2496 s5473) +(trans s2496 s5486) +(trans s2496 s5499) +(trans s2497 s5480) +(trans s2497 s5493) +(trans s2497 s5506) +(trans s2498 s5487) +(trans s2498 s5500) +(trans s2498 s5513) +(trans s2499 s5494) +(trans s2499 s5507) +(trans s2499 s5520) +(trans s2500 s5501) +(trans s2500 s5514) +(trans s2500 s5527) +(trans s2501 s5508) +(trans s2501 s5521) +(trans s2501 s5534) +(trans s2502 s5515) +(trans s2502 s5528) +(trans s2502 s5541) +(trans s2503 s5522) +(trans s2503 s5535) +(trans s2503 s5548) +(trans s2504 s5529) +(trans s2504 s5542) +(trans s2504 s5555) +(trans s2505 s5536) +(trans s2505 s5549) +(trans s2505 s5562) +(trans s2506 s5543) +(trans s2506 s5556) +(trans s2506 s5569) +(trans s2507 s5550) +(trans s2507 s5563) +(trans s2507 s5576) +(trans s2508 s5557) +(trans s2508 s5570) +(trans s2508 s5583) +(trans s2509 s5564) +(trans s2509 s5577) +(trans s2509 s5590) +(trans s2510 s5571) +(trans s2510 s5584) +(trans s2510 s5597) +(trans s2511 s5578) +(trans s2511 s5591) +(trans s2511 s5604) +(trans s2512 s5585) +(trans s2512 s5598) +(trans s2512 s5611) +(trans s2513 s5592) +(trans s2513 s5605) +(trans s2513 s5618) +(trans s2514 s5599) +(trans s2514 s5612) +(trans s2514 s5625) +(trans s2515 s5606) +(trans s2515 s5619) +(trans s2515 s5632) +(trans s2516 s5613) +(trans s2516 s5626) +(trans s2516 s5639) +(trans s2517 s5620) +(trans s2517 s5633) +(trans s2517 s5646) +(trans s2518 s5627) +(trans s2518 s5640) +(trans s2518 s5653) +(trans s2519 s5634) +(trans s2519 s5647) +(trans s2519 s5660) +(trans s2520 s5641) +(trans s2520 s5654) +(trans s2520 s5667) +(trans s2521 s5648) +(trans s2521 s5661) +(trans s2521 s5674) +(trans s2522 s5655) +(trans s2522 s5668) +(trans s2522 s5681) +(trans s2523 s5662) +(trans s2523 s5675) +(trans s2523 s5688) +(trans s2524 s5669) +(trans s2524 s5682) +(trans s2524 s5695) +(trans s2525 s5676) +(trans s2525 s5689) +(trans s2525 s5702) +(trans s2526 s5683) +(trans s2526 s5696) +(trans s2526 s5709) +(trans s2527 s5690) +(trans s2527 s5703) +(trans s2527 s5716) +(trans s2528 s5697) +(trans s2528 s5710) +(trans s2528 s5723) +(trans s2529 s5704) +(trans s2529 s5717) +(trans s2529 s5730) +(trans s2530 s5711) +(trans s2530 s5724) +(trans s2530 s5737) +(trans s2531 s5718) +(trans s2531 s5731) +(trans s2531 s5744) +(trans s2532 s5725) +(trans s2532 s5738) +(trans s2532 s5751) +(trans s2533 s5732) +(trans s2533 s5745) +(trans s2533 s5758) +(trans s2534 s5739) +(trans s2534 s5752) +(trans s2534 s5765) +(trans s2535 s5746) +(trans s2535 s5759) +(trans s2535 s5772) +(trans s2536 s5753) +(trans s2536 s5766) +(trans s2536 s5779) +(trans s2537 s5760) +(trans s2537 s5773) +(trans s2537 s5786) +(trans s2538 s5767) +(trans s2538 s5780) +(trans s2538 s5793) +(trans s2539 s5774) +(trans s2539 s5787) +(trans s2539 s5800) +(trans s2540 s5781) +(trans s2540 s5794) +(trans s2540 s5807) +(trans s2541 s5788) +(trans s2541 s5801) +(trans s2541 s5814) +(trans s2542 s5795) +(trans s2542 s5808) +(trans s2542 s5821) +(trans s2543 s5802) +(trans s2543 s5815) +(trans s2543 s5828) +(trans s2544 s5809) +(trans s2544 s5822) +(trans s2544 s5835) +(trans s2545 s5816) +(trans s2545 s5829) +(trans s2545 s5842) +(trans s2546 s5823) +(trans s2546 s5836) +(trans s2546 s5849) +(trans s2547 s5830) +(trans s2547 s5843) +(trans s2547 s5856) +(trans s2548 s5837) +(trans s2548 s5850) +(trans s2548 s5863) +(trans s2549 s5844) +(trans s2549 s5857) +(trans s2549 s5870) +(trans s2550 s5851) +(trans s2550 s5864) +(trans s2550 s5877) +(trans s2551 s5858) +(trans s2551 s5871) +(trans s2551 s5884) +(trans s2552 s5865) +(trans s2552 s5878) +(trans s2552 s5891) +(trans s2553 s5872) +(trans s2553 s5885) +(trans s2553 s5898) +(trans s2554 s5879) +(trans s2554 s5892) +(trans s2554 s5905) +(trans s2555 s5886) +(trans s2555 s5899) +(trans s2555 s5912) +(trans s2556 s5893) +(trans s2556 s5906) +(trans s2556 s5919) +(trans s2557 s5900) +(trans s2557 s5913) +(trans s2557 s5926) +(trans s2558 s5907) +(trans s2558 s5920) +(trans s2558 s5933) +(trans s2559 s5914) +(trans s2559 s5927) +(trans s2559 s5940) +(trans s2560 s5921) +(trans s2560 s5934) +(trans s2560 s5947) +(trans s2561 s5928) +(trans s2561 s5941) +(trans s2561 s5954) +(trans s2562 s5935) +(trans s2562 s5948) +(trans s2562 s5961) +(trans s2563 s5942) +(trans s2563 s5955) +(trans s2563 s5968) +(trans s2564 s5949) +(trans s2564 s5962) +(trans s2564 s5975) +(trans s2565 s5956) +(trans s2565 s5969) +(trans s2565 s5982) +(trans s2566 s5963) +(trans s2566 s5976) +(trans s2566 s5989) +(trans s2567 s5970) +(trans s2567 s5983) +(trans s2567 s5996) +(trans s2568 s5977) +(trans s2568 s5990) +(trans s2568 s3) +(trans s2569 s5984) +(trans s2569 s5997) +(trans s2569 s10) +(trans s2570 s5991) +(trans s2570 s4) +(trans s2570 s17) +(trans s2571 s5998) +(trans s2571 s11) +(trans s2571 s24) +(trans s2572 s5) +(trans s2572 s18) +(trans s2572 s31) +(trans s2573 s12) +(trans s2573 s25) +(trans s2573 s38) +(trans s2574 s19) +(trans s2574 s32) +(trans s2574 s45) +(trans s2575 s26) +(trans s2575 s39) +(trans s2575 s52) +(trans s2576 s33) +(trans s2576 s46) +(trans s2576 s59) +(trans s2577 s40) +(trans s2577 s53) +(trans s2577 s66) +(trans s2578 s47) +(trans s2578 s60) +(trans s2578 s73) +(trans s2579 s54) +(trans s2579 s67) +(trans s2579 s80) +(trans s2580 s61) +(trans s2580 s74) +(trans s2580 s87) +(trans s2581 s68) +(trans s2581 s81) +(trans s2581 s94) +(trans s2582 s75) +(trans s2582 s88) +(trans s2582 s101) +(trans s2583 s82) +(trans s2583 s95) +(trans s2583 s108) +(trans s2584 s89) +(trans s2584 s102) +(trans s2584 s115) +(trans s2585 s96) +(trans s2585 s109) +(trans s2585 s122) +(trans s2586 s103) +(trans s2586 s116) +(trans s2586 s129) +(trans s2587 s110) +(trans s2587 s123) +(trans s2587 s136) +(trans s2588 s117) +(trans s2588 s130) +(trans s2588 s143) +(trans s2589 s124) +(trans s2589 s137) +(trans s2589 s150) +(trans s2590 s131) +(trans s2590 s144) +(trans s2590 s157) +(trans s2591 s138) +(trans s2591 s151) +(trans s2591 s164) +(trans s2592 s145) +(trans s2592 s158) +(trans s2592 s171) +(trans s2593 s152) +(trans s2593 s165) +(trans s2593 s178) +(trans s2594 s159) +(trans s2594 s172) +(trans s2594 s185) +(trans s2595 s166) +(trans s2595 s179) +(trans s2595 s192) +(trans s2596 s173) +(trans s2596 s186) +(trans s2596 s199) +(trans s2597 s180) +(trans s2597 s193) +(trans s2597 s206) +(trans s2598 s187) +(trans s2598 s200) +(trans s2598 s213) +(trans s2599 s194) +(trans s2599 s207) +(trans s2599 s220) +(trans s2600 s201) +(trans s2600 s214) +(trans s2600 s227) +(trans s2601 s208) +(trans s2601 s221) +(trans s2601 s234) +(trans s2602 s215) +(trans s2602 s228) +(trans s2602 s241) +(trans s2603 s222) +(trans s2603 s235) +(trans s2603 s248) +(trans s2604 s229) +(trans s2604 s242) +(trans s2604 s255) +(trans s2605 s236) +(trans s2605 s249) +(trans s2605 s262) +(trans s2606 s243) +(trans s2606 s256) +(trans s2606 s269) +(trans s2607 s250) +(trans s2607 s263) +(trans s2607 s276) +(trans s2608 s257) +(trans s2608 s270) +(trans s2608 s283) +(trans s2609 s264) +(trans s2609 s277) +(trans s2609 s290) +(trans s2610 s271) +(trans s2610 s284) +(trans s2610 s297) +(trans s2611 s278) +(trans s2611 s291) +(trans s2611 s304) +(trans s2612 s285) +(trans s2612 s298) +(trans s2612 s311) +(trans s2613 s292) +(trans s2613 s305) +(trans s2613 s318) +(trans s2614 s299) +(trans s2614 s312) +(trans s2614 s325) +(trans s2615 s306) +(trans s2615 s319) +(trans s2615 s332) +(trans s2616 s313) +(trans s2616 s326) +(trans s2616 s339) +(trans s2617 s320) +(trans s2617 s333) +(trans s2617 s346) +(trans s2618 s327) +(trans s2618 s340) +(trans s2618 s353) +(trans s2619 s334) +(trans s2619 s347) +(trans s2619 s360) +(trans s2620 s341) +(trans s2620 s354) +(trans s2620 s367) +(trans s2621 s348) +(trans s2621 s361) +(trans s2621 s374) +(trans s2622 s355) +(trans s2622 s368) +(trans s2622 s381) +(trans s2623 s362) +(trans s2623 s375) +(trans s2623 s388) +(trans s2624 s369) +(trans s2624 s382) +(trans s2624 s395) +(trans s2625 s376) +(trans s2625 s389) +(trans s2625 s402) +(trans s2626 s383) +(trans s2626 s396) +(trans s2626 s409) +(trans s2627 s390) +(trans s2627 s403) +(trans s2627 s416) +(trans s2628 s397) +(trans s2628 s410) +(trans s2628 s423) +(trans s2629 s404) +(trans s2629 s417) +(trans s2629 s430) +(trans s2630 s411) +(trans s2630 s424) +(trans s2630 s437) +(trans s2631 s418) +(trans s2631 s431) +(trans s2631 s444) +(trans s2632 s425) +(trans s2632 s438) +(trans s2632 s451) +(trans s2633 s432) +(trans s2633 s445) +(trans s2633 s458) +(trans s2634 s439) +(trans s2634 s452) +(trans s2634 s465) +(trans s2635 s446) +(trans s2635 s459) +(trans s2635 s472) +(trans s2636 s453) +(trans s2636 s466) +(trans s2636 s479) +(trans s2637 s460) +(trans s2637 s473) +(trans s2637 s486) +(trans s2638 s467) +(trans s2638 s480) +(trans s2638 s493) +(trans s2639 s474) +(trans s2639 s487) +(trans s2639 s500) +(trans s2640 s481) +(trans s2640 s494) +(trans s2640 s507) +(trans s2641 s488) +(trans s2641 s501) +(trans s2641 s514) +(trans s2642 s495) +(trans s2642 s508) +(trans s2642 s521) +(trans s2643 s502) +(trans s2643 s515) +(trans s2643 s528) +(trans s2644 s509) +(trans s2644 s522) +(trans s2644 s535) +(trans s2645 s516) +(trans s2645 s529) +(trans s2645 s542) +(trans s2646 s523) +(trans s2646 s536) +(trans s2646 s549) +(trans s2647 s530) +(trans s2647 s543) +(trans s2647 s556) +(trans s2648 s537) +(trans s2648 s550) +(trans s2648 s563) +(trans s2649 s544) +(trans s2649 s557) +(trans s2649 s570) +(trans s2650 s551) +(trans s2650 s564) +(trans s2650 s577) +(trans s2651 s558) +(trans s2651 s571) +(trans s2651 s584) +(trans s2652 s565) +(trans s2652 s578) +(trans s2652 s591) +(trans s2653 s572) +(trans s2653 s585) +(trans s2653 s598) +(trans s2654 s579) +(trans s2654 s592) +(trans s2654 s605) +(trans s2655 s586) +(trans s2655 s599) +(trans s2655 s612) +(trans s2656 s593) +(trans s2656 s606) +(trans s2656 s619) +(trans s2657 s600) +(trans s2657 s613) +(trans s2657 s626) +(trans s2658 s607) +(trans s2658 s620) +(trans s2658 s633) +(trans s2659 s614) +(trans s2659 s627) +(trans s2659 s640) +(trans s2660 s621) +(trans s2660 s634) +(trans s2660 s647) +(trans s2661 s628) +(trans s2661 s641) +(trans s2661 s654) +(trans s2662 s635) +(trans s2662 s648) +(trans s2662 s661) +(trans s2663 s642) +(trans s2663 s655) +(trans s2663 s668) +(trans s2664 s649) +(trans s2664 s662) +(trans s2664 s675) +(trans s2665 s656) +(trans s2665 s669) +(trans s2665 s682) +(trans s2666 s663) +(trans s2666 s676) +(trans s2666 s689) +(trans s2667 s670) +(trans s2667 s683) +(trans s2667 s696) +(trans s2668 s677) +(trans s2668 s690) +(trans s2668 s703) +(trans s2669 s684) +(trans s2669 s697) +(trans s2669 s710) +(trans s2670 s691) +(trans s2670 s704) +(trans s2670 s717) +(trans s2671 s698) +(trans s2671 s711) +(trans s2671 s724) +(trans s2672 s705) +(trans s2672 s718) +(trans s2672 s731) +(trans s2673 s712) +(trans s2673 s725) +(trans s2673 s738) +(trans s2674 s719) +(trans s2674 s732) +(trans s2674 s745) +(trans s2675 s726) +(trans s2675 s739) +(trans s2675 s752) +(trans s2676 s733) +(trans s2676 s746) +(trans s2676 s759) +(trans s2677 s740) +(trans s2677 s753) +(trans s2677 s766) +(trans s2678 s747) +(trans s2678 s760) +(trans s2678 s773) +(trans s2679 s754) +(trans s2679 s767) +(trans s2679 s780) +(trans s2680 s761) +(trans s2680 s774) +(trans s2680 s787) +(trans s2681 s768) +(trans s2681 s781) +(trans s2681 s794) +(trans s2682 s775) +(trans s2682 s788) +(trans s2682 s801) +(trans s2683 s782) +(trans s2683 s795) +(trans s2683 s808) +(trans s2684 s789) +(trans s2684 s802) +(trans s2684 s815) +(trans s2685 s796) +(trans s2685 s809) +(trans s2685 s822) +(trans s2686 s803) +(trans s2686 s816) +(trans s2686 s829) +(trans s2687 s810) +(trans s2687 s823) +(trans s2687 s836) +(trans s2688 s817) +(trans s2688 s830) +(trans s2688 s843) +(trans s2689 s824) +(trans s2689 s837) +(trans s2689 s850) +(trans s2690 s831) +(trans s2690 s844) +(trans s2690 s857) +(trans s2691 s838) +(trans s2691 s851) +(trans s2691 s864) +(trans s2692 s845) +(trans s2692 s858) +(trans s2692 s871) +(trans s2693 s852) +(trans s2693 s865) +(trans s2693 s878) +(trans s2694 s859) +(trans s2694 s872) +(trans s2694 s885) +(trans s2695 s866) +(trans s2695 s879) +(trans s2695 s892) +(trans s2696 s873) +(trans s2696 s886) +(trans s2696 s899) +(trans s2697 s880) +(trans s2697 s893) +(trans s2697 s906) +(trans s2698 s887) +(trans s2698 s900) +(trans s2698 s913) +(trans s2699 s894) +(trans s2699 s907) +(trans s2699 s920) +(trans s2700 s901) +(trans s2700 s914) +(trans s2700 s927) +(trans s2701 s908) +(trans s2701 s921) +(trans s2701 s934) +(trans s2702 s915) +(trans s2702 s928) +(trans s2702 s941) +(trans s2703 s922) +(trans s2703 s935) +(trans s2703 s948) +(trans s2704 s929) +(trans s2704 s942) +(trans s2704 s955) +(trans s2705 s936) +(trans s2705 s949) +(trans s2705 s962) +(trans s2706 s943) +(trans s2706 s956) +(trans s2706 s969) +(trans s2707 s950) +(trans s2707 s963) +(trans s2707 s976) +(trans s2708 s957) +(trans s2708 s970) +(trans s2708 s983) +(trans s2709 s964) +(trans s2709 s977) +(trans s2709 s990) +(trans s2710 s971) +(trans s2710 s984) +(trans s2710 s997) +(trans s2711 s978) +(trans s2711 s991) +(trans s2711 s1004) +(trans s2712 s985) +(trans s2712 s998) +(trans s2712 s1011) +(trans s2713 s992) +(trans s2713 s1005) +(trans s2713 s1018) +(trans s2714 s999) +(trans s2714 s1012) +(trans s2714 s1025) +(trans s2715 s1006) +(trans s2715 s1019) +(trans s2715 s1032) +(trans s2716 s1013) +(trans s2716 s1026) +(trans s2716 s1039) +(trans s2717 s1020) +(trans s2717 s1033) +(trans s2717 s1046) +(trans s2718 s1027) +(trans s2718 s1040) +(trans s2718 s1053) +(trans s2719 s1034) +(trans s2719 s1047) +(trans s2719 s1060) +(trans s2720 s1041) +(trans s2720 s1054) +(trans s2720 s1067) +(trans s2721 s1048) +(trans s2721 s1061) +(trans s2721 s1074) +(trans s2722 s1055) +(trans s2722 s1068) +(trans s2722 s1081) +(trans s2723 s1062) +(trans s2723 s1075) +(trans s2723 s1088) +(trans s2724 s1069) +(trans s2724 s1082) +(trans s2724 s1095) +(trans s2725 s1076) +(trans s2725 s1089) +(trans s2725 s1102) +(trans s2726 s1083) +(trans s2726 s1096) +(trans s2726 s1109) +(trans s2727 s1090) +(trans s2727 s1103) +(trans s2727 s1116) +(trans s2728 s1097) +(trans s2728 s1110) +(trans s2728 s1123) +(trans s2729 s1104) +(trans s2729 s1117) +(trans s2729 s1130) +(trans s2730 s1111) +(trans s2730 s1124) +(trans s2730 s1137) +(trans s2731 s1118) +(trans s2731 s1131) +(trans s2731 s1144) +(trans s2732 s1125) +(trans s2732 s1138) +(trans s2732 s1151) +(trans s2733 s1132) +(trans s2733 s1145) +(trans s2733 s1158) +(trans s2734 s1139) +(trans s2734 s1152) +(trans s2734 s1165) +(trans s2735 s1146) +(trans s2735 s1159) +(trans s2735 s1172) +(trans s2736 s1153) +(trans s2736 s1166) +(trans s2736 s1179) +(trans s2737 s1160) +(trans s2737 s1173) +(trans s2737 s1186) +(trans s2738 s1167) +(trans s2738 s1180) +(trans s2738 s1193) +(trans s2739 s1174) +(trans s2739 s1187) +(trans s2739 s1200) +(trans s2740 s1181) +(trans s2740 s1194) +(trans s2740 s1207) +(trans s2741 s1188) +(trans s2741 s1201) +(trans s2741 s1214) +(trans s2742 s1195) +(trans s2742 s1208) +(trans s2742 s1221) +(trans s2743 s1202) +(trans s2743 s1215) +(trans s2743 s1228) +(trans s2744 s1209) +(trans s2744 s1222) +(trans s2744 s1235) +(trans s2745 s1216) +(trans s2745 s1229) +(trans s2745 s1242) +(trans s2746 s1223) +(trans s2746 s1236) +(trans s2746 s1249) +(trans s2747 s1230) +(trans s2747 s1243) +(trans s2747 s1256) +(trans s2748 s1237) +(trans s2748 s1250) +(trans s2748 s1263) +(trans s2749 s1244) +(trans s2749 s1257) +(trans s2749 s1270) +(trans s2750 s1251) +(trans s2750 s1264) +(trans s2750 s1277) +(trans s2751 s1258) +(trans s2751 s1271) +(trans s2751 s1284) +(trans s2752 s1265) +(trans s2752 s1278) +(trans s2752 s1291) +(trans s2753 s1272) +(trans s2753 s1285) +(trans s2753 s1298) +(trans s2754 s1279) +(trans s2754 s1292) +(trans s2754 s1305) +(trans s2755 s1286) +(trans s2755 s1299) +(trans s2755 s1312) +(trans s2756 s1293) +(trans s2756 s1306) +(trans s2756 s1319) +(trans s2757 s1300) +(trans s2757 s1313) +(trans s2757 s1326) +(trans s2758 s1307) +(trans s2758 s1320) +(trans s2758 s1333) +(trans s2759 s1314) +(trans s2759 s1327) +(trans s2759 s1340) +(trans s2760 s1321) +(trans s2760 s1334) +(trans s2760 s1347) +(trans s2761 s1328) +(trans s2761 s1341) +(trans s2761 s1354) +(trans s2762 s1335) +(trans s2762 s1348) +(trans s2762 s1361) +(trans s2763 s1342) +(trans s2763 s1355) +(trans s2763 s1368) +(trans s2764 s1349) +(trans s2764 s1362) +(trans s2764 s1375) +(trans s2765 s1356) +(trans s2765 s1369) +(trans s2765 s1382) +(trans s2766 s1363) +(trans s2766 s1376) +(trans s2766 s1389) +(trans s2767 s1370) +(trans s2767 s1383) +(trans s2767 s1396) +(trans s2768 s1377) +(trans s2768 s1390) +(trans s2768 s1403) +(trans s2769 s1384) +(trans s2769 s1397) +(trans s2769 s1410) +(trans s2770 s1391) +(trans s2770 s1404) +(trans s2770 s1417) +(trans s2771 s1398) +(trans s2771 s1411) +(trans s2771 s1424) +(trans s2772 s1405) +(trans s2772 s1418) +(trans s2772 s1431) +(trans s2773 s1412) +(trans s2773 s1425) +(trans s2773 s1438) +(trans s2774 s1419) +(trans s2774 s1432) +(trans s2774 s1445) +(trans s2775 s1426) +(trans s2775 s1439) +(trans s2775 s1452) +(trans s2776 s1433) +(trans s2776 s1446) +(trans s2776 s1459) +(trans s2777 s1440) +(trans s2777 s1453) +(trans s2777 s1466) +(trans s2778 s1447) +(trans s2778 s1460) +(trans s2778 s1473) +(trans s2779 s1454) +(trans s2779 s1467) +(trans s2779 s1480) +(trans s2780 s1461) +(trans s2780 s1474) +(trans s2780 s1487) +(trans s2781 s1468) +(trans s2781 s1481) +(trans s2781 s1494) +(trans s2782 s1475) +(trans s2782 s1488) +(trans s2782 s1501) +(trans s2783 s1482) +(trans s2783 s1495) +(trans s2783 s1508) +(trans s2784 s1489) +(trans s2784 s1502) +(trans s2784 s1515) +(trans s2785 s1496) +(trans s2785 s1509) +(trans s2785 s1522) +(trans s2786 s1503) +(trans s2786 s1516) +(trans s2786 s1529) +(trans s2787 s1510) +(trans s2787 s1523) +(trans s2787 s1536) +(trans s2788 s1517) +(trans s2788 s1530) +(trans s2788 s1543) +(trans s2789 s1524) +(trans s2789 s1537) +(trans s2789 s1550) +(trans s2790 s1531) +(trans s2790 s1544) +(trans s2790 s1557) +(trans s2791 s1538) +(trans s2791 s1551) +(trans s2791 s1564) +(trans s2792 s1545) +(trans s2792 s1558) +(trans s2792 s1571) +(trans s2793 s1552) +(trans s2793 s1565) +(trans s2793 s1578) +(trans s2794 s1559) +(trans s2794 s1572) +(trans s2794 s1585) +(trans s2795 s1566) +(trans s2795 s1579) +(trans s2795 s1592) +(trans s2796 s1573) +(trans s2796 s1586) +(trans s2796 s1599) +(trans s2797 s1580) +(trans s2797 s1593) +(trans s2797 s1606) +(trans s2798 s1587) +(trans s2798 s1600) +(trans s2798 s1613) +(trans s2799 s1594) +(trans s2799 s1607) +(trans s2799 s1620) +(trans s2800 s1601) +(trans s2800 s1614) +(trans s2800 s1627) +(trans s2801 s1608) +(trans s2801 s1621) +(trans s2801 s1634) +(trans s2802 s1615) +(trans s2802 s1628) +(trans s2802 s1641) +(trans s2803 s1622) +(trans s2803 s1635) +(trans s2803 s1648) +(trans s2804 s1629) +(trans s2804 s1642) +(trans s2804 s1655) +(trans s2805 s1636) +(trans s2805 s1649) +(trans s2805 s1662) +(trans s2806 s1643) +(trans s2806 s1656) +(trans s2806 s1669) +(trans s2807 s1650) +(trans s2807 s1663) +(trans s2807 s1676) +(trans s2808 s1657) +(trans s2808 s1670) +(trans s2808 s1683) +(trans s2809 s1664) +(trans s2809 s1677) +(trans s2809 s1690) +(trans s2810 s1671) +(trans s2810 s1684) +(trans s2810 s1697) +(trans s2811 s1678) +(trans s2811 s1691) +(trans s2811 s1704) +(trans s2812 s1685) +(trans s2812 s1698) +(trans s2812 s1711) +(trans s2813 s1692) +(trans s2813 s1705) +(trans s2813 s1718) +(trans s2814 s1699) +(trans s2814 s1712) +(trans s2814 s1725) +(trans s2815 s1706) +(trans s2815 s1719) +(trans s2815 s1732) +(trans s2816 s1713) +(trans s2816 s1726) +(trans s2816 s1739) +(trans s2817 s1720) +(trans s2817 s1733) +(trans s2817 s1746) +(trans s2818 s1727) +(trans s2818 s1740) +(trans s2818 s1753) +(trans s2819 s1734) +(trans s2819 s1747) +(trans s2819 s1760) +(trans s2820 s1741) +(trans s2820 s1754) +(trans s2820 s1767) +(trans s2821 s1748) +(trans s2821 s1761) +(trans s2821 s1774) +(trans s2822 s1755) +(trans s2822 s1768) +(trans s2822 s1781) +(trans s2823 s1762) +(trans s2823 s1775) +(trans s2823 s1788) +(trans s2824 s1769) +(trans s2824 s1782) +(trans s2824 s1795) +(trans s2825 s1776) +(trans s2825 s1789) +(trans s2825 s1802) +(trans s2826 s1783) +(trans s2826 s1796) +(trans s2826 s1809) +(trans s2827 s1790) +(trans s2827 s1803) +(trans s2827 s1816) +(trans s2828 s1797) +(trans s2828 s1810) +(trans s2828 s1823) +(trans s2829 s1804) +(trans s2829 s1817) +(trans s2829 s1830) +(trans s2830 s1811) +(trans s2830 s1824) +(trans s2830 s1837) +(trans s2831 s1818) +(trans s2831 s1831) +(trans s2831 s1844) +(trans s2832 s1825) +(trans s2832 s1838) +(trans s2832 s1851) +(trans s2833 s1832) +(trans s2833 s1845) +(trans s2833 s1858) +(trans s2834 s1839) +(trans s2834 s1852) +(trans s2834 s1865) +(trans s2835 s1846) +(trans s2835 s1859) +(trans s2835 s1872) +(trans s2836 s1853) +(trans s2836 s1866) +(trans s2836 s1879) +(trans s2837 s1860) +(trans s2837 s1873) +(trans s2837 s1886) +(trans s2838 s1867) +(trans s2838 s1880) +(trans s2838 s1893) +(trans s2839 s1874) +(trans s2839 s1887) +(trans s2839 s1900) +(trans s2840 s1881) +(trans s2840 s1894) +(trans s2840 s1907) +(trans s2841 s1888) +(trans s2841 s1901) +(trans s2841 s1914) +(trans s2842 s1895) +(trans s2842 s1908) +(trans s2842 s1921) +(trans s2843 s1902) +(trans s2843 s1915) +(trans s2843 s1928) +(trans s2844 s1909) +(trans s2844 s1922) +(trans s2844 s1935) +(trans s2845 s1916) +(trans s2845 s1929) +(trans s2845 s1942) +(trans s2846 s1923) +(trans s2846 s1936) +(trans s2846 s1949) +(trans s2847 s1930) +(trans s2847 s1943) +(trans s2847 s1956) +(trans s2848 s1937) +(trans s2848 s1950) +(trans s2848 s1963) +(trans s2849 s1944) +(trans s2849 s1957) +(trans s2849 s1970) +(trans s2850 s1951) +(trans s2850 s1964) +(trans s2850 s1977) +(trans s2851 s1958) +(trans s2851 s1971) +(trans s2851 s1984) +(trans s2852 s1965) +(trans s2852 s1978) +(trans s2852 s1991) +(trans s2853 s1972) +(trans s2853 s1985) +(trans s2853 s1998) +(trans s2854 s1979) +(trans s2854 s1992) +(trans s2854 s2005) +(trans s2855 s1986) +(trans s2855 s1999) +(trans s2855 s2012) +(trans s2856 s1993) +(trans s2856 s2006) +(trans s2856 s2019) +(trans s2857 s2000) +(trans s2857 s2013) +(trans s2857 s2026) +(trans s2858 s2007) +(trans s2858 s2020) +(trans s2858 s2033) +(trans s2859 s2014) +(trans s2859 s2027) +(trans s2859 s2040) +(trans s2860 s2021) +(trans s2860 s2034) +(trans s2860 s2047) +(trans s2861 s2028) +(trans s2861 s2041) +(trans s2861 s2054) +(trans s2862 s2035) +(trans s2862 s2048) +(trans s2862 s2061) +(trans s2863 s2042) +(trans s2863 s2055) +(trans s2863 s2068) +(trans s2864 s2049) +(trans s2864 s2062) +(trans s2864 s2075) +(trans s2865 s2056) +(trans s2865 s2069) +(trans s2865 s2082) +(trans s2866 s2063) +(trans s2866 s2076) +(trans s2866 s2089) +(trans s2867 s2070) +(trans s2867 s2083) +(trans s2867 s2096) +(trans s2868 s2077) +(trans s2868 s2090) +(trans s2868 s2103) +(trans s2869 s2084) +(trans s2869 s2097) +(trans s2869 s2110) +(trans s2870 s2091) +(trans s2870 s2104) +(trans s2870 s2117) +(trans s2871 s2098) +(trans s2871 s2111) +(trans s2871 s2124) +(trans s2872 s2105) +(trans s2872 s2118) +(trans s2872 s2131) +(trans s2873 s2112) +(trans s2873 s2125) +(trans s2873 s2138) +(trans s2874 s2119) +(trans s2874 s2132) +(trans s2874 s2145) +(trans s2875 s2126) +(trans s2875 s2139) +(trans s2875 s2152) +(trans s2876 s2133) +(trans s2876 s2146) +(trans s2876 s2159) +(trans s2877 s2140) +(trans s2877 s2153) +(trans s2877 s2166) +(trans s2878 s2147) +(trans s2878 s2160) +(trans s2878 s2173) +(trans s2879 s2154) +(trans s2879 s2167) +(trans s2879 s2180) +(trans s2880 s2161) +(trans s2880 s2174) +(trans s2880 s2187) +(trans s2881 s2168) +(trans s2881 s2181) +(trans s2881 s2194) +(trans s2882 s2175) +(trans s2882 s2188) +(trans s2882 s2201) +(trans s2883 s2182) +(trans s2883 s2195) +(trans s2883 s2208) +(trans s2884 s2189) +(trans s2884 s2202) +(trans s2884 s2215) +(trans s2885 s2196) +(trans s2885 s2209) +(trans s2885 s2222) +(trans s2886 s2203) +(trans s2886 s2216) +(trans s2886 s2229) +(trans s2887 s2210) +(trans s2887 s2223) +(trans s2887 s2236) +(trans s2888 s2217) +(trans s2888 s2230) +(trans s2888 s2243) +(trans s2889 s2224) +(trans s2889 s2237) +(trans s2889 s2250) +(trans s2890 s2231) +(trans s2890 s2244) +(trans s2890 s2257) +(trans s2891 s2238) +(trans s2891 s2251) +(trans s2891 s2264) +(trans s2892 s2245) +(trans s2892 s2258) +(trans s2892 s2271) +(trans s2893 s2252) +(trans s2893 s2265) +(trans s2893 s2278) +(trans s2894 s2259) +(trans s2894 s2272) +(trans s2894 s2285) +(trans s2895 s2266) +(trans s2895 s2279) +(trans s2895 s2292) +(trans s2896 s2273) +(trans s2896 s2286) +(trans s2896 s2299) +(trans s2897 s2280) +(trans s2897 s2293) +(trans s2897 s2306) +(trans s2898 s2287) +(trans s2898 s2300) +(trans s2898 s2313) +(trans s2899 s2294) +(trans s2899 s2307) +(trans s2899 s2320) +(trans s2900 s2301) +(trans s2900 s2314) +(trans s2900 s2327) +(trans s2901 s2308) +(trans s2901 s2321) +(trans s2901 s2334) +(trans s2902 s2315) +(trans s2902 s2328) +(trans s2902 s2341) +(trans s2903 s2322) +(trans s2903 s2335) +(trans s2903 s2348) +(trans s2904 s2329) +(trans s2904 s2342) +(trans s2904 s2355) +(trans s2905 s2336) +(trans s2905 s2349) +(trans s2905 s2362) +(trans s2906 s2343) +(trans s2906 s2356) +(trans s2906 s2369) +(trans s2907 s2350) +(trans s2907 s2363) +(trans s2907 s2376) +(trans s2908 s2357) +(trans s2908 s2370) +(trans s2908 s2383) +(trans s2909 s2364) +(trans s2909 s2377) +(trans s2909 s2390) +(trans s2910 s2371) +(trans s2910 s2384) +(trans s2910 s2397) +(trans s2911 s2378) +(trans s2911 s2391) +(trans s2911 s2404) +(trans s2912 s2385) +(trans s2912 s2398) +(trans s2912 s2411) +(trans s2913 s2392) +(trans s2913 s2405) +(trans s2913 s2418) +(trans s2914 s2399) +(trans s2914 s2412) +(trans s2914 s2425) +(trans s2915 s2406) +(trans s2915 s2419) +(trans s2915 s2432) +(trans s2916 s2413) +(trans s2916 s2426) +(trans s2916 s2439) +(trans s2917 s2420) +(trans s2917 s2433) +(trans s2917 s2446) +(trans s2918 s2427) +(trans s2918 s2440) +(trans s2918 s2453) +(trans s2919 s2434) +(trans s2919 s2447) +(trans s2919 s2460) +(trans s2920 s2441) +(trans s2920 s2454) +(trans s2920 s2467) +(trans s2921 s2448) +(trans s2921 s2461) +(trans s2921 s2474) +(trans s2922 s2455) +(trans s2922 s2468) +(trans s2922 s2481) +(trans s2923 s2462) +(trans s2923 s2475) +(trans s2923 s2488) +(trans s2924 s2469) +(trans s2924 s2482) +(trans s2924 s2495) +(trans s2925 s2476) +(trans s2925 s2489) +(trans s2925 s2502) +(trans s2926 s2483) +(trans s2926 s2496) +(trans s2926 s2509) +(trans s2927 s2490) +(trans s2927 s2503) +(trans s2927 s2516) +(trans s2928 s2497) +(trans s2928 s2510) +(trans s2928 s2523) +(trans s2929 s2504) +(trans s2929 s2517) +(trans s2929 s2530) +(trans s2930 s2511) +(trans s2930 s2524) +(trans s2930 s2537) +(trans s2931 s2518) +(trans s2931 s2531) +(trans s2931 s2544) +(trans s2932 s2525) +(trans s2932 s2538) +(trans s2932 s2551) +(trans s2933 s2532) +(trans s2933 s2545) +(trans s2933 s2558) +(trans s2934 s2539) +(trans s2934 s2552) +(trans s2934 s2565) +(trans s2935 s2546) +(trans s2935 s2559) +(trans s2935 s2572) +(trans s2936 s2553) +(trans s2936 s2566) +(trans s2936 s2579) +(trans s2937 s2560) +(trans s2937 s2573) +(trans s2937 s2586) +(trans s2938 s2567) +(trans s2938 s2580) +(trans s2938 s2593) +(trans s2939 s2574) +(trans s2939 s2587) +(trans s2939 s2600) +(trans s2940 s2581) +(trans s2940 s2594) +(trans s2940 s2607) +(trans s2941 s2588) +(trans s2941 s2601) +(trans s2941 s2614) +(trans s2942 s2595) +(trans s2942 s2608) +(trans s2942 s2621) +(trans s2943 s2602) +(trans s2943 s2615) +(trans s2943 s2628) +(trans s2944 s2609) +(trans s2944 s2622) +(trans s2944 s2635) +(trans s2945 s2616) +(trans s2945 s2629) +(trans s2945 s2642) +(trans s2946 s2623) +(trans s2946 s2636) +(trans s2946 s2649) +(trans s2947 s2630) +(trans s2947 s2643) +(trans s2947 s2656) +(trans s2948 s2637) +(trans s2948 s2650) +(trans s2948 s2663) +(trans s2949 s2644) +(trans s2949 s2657) +(trans s2949 s2670) +(trans s2950 s2651) +(trans s2950 s2664) +(trans s2950 s2677) +(trans s2951 s2658) +(trans s2951 s2671) +(trans s2951 s2684) +(trans s2952 s2665) +(trans s2952 s2678) +(trans s2952 s2691) +(trans s2953 s2672) +(trans s2953 s2685) +(trans s2953 s2698) +(trans s2954 s2679) +(trans s2954 s2692) +(trans s2954 s2705) +(trans s2955 s2686) +(trans s2955 s2699) +(trans s2955 s2712) +(trans s2956 s2693) +(trans s2956 s2706) +(trans s2956 s2719) +(trans s2957 s2700) +(trans s2957 s2713) +(trans s2957 s2726) +(trans s2958 s2707) +(trans s2958 s2720) +(trans s2958 s2733) +(trans s2959 s2714) +(trans s2959 s2727) +(trans s2959 s2740) +(trans s2960 s2721) +(trans s2960 s2734) +(trans s2960 s2747) +(trans s2961 s2728) +(trans s2961 s2741) +(trans s2961 s2754) +(trans s2962 s2735) +(trans s2962 s2748) +(trans s2962 s2761) +(trans s2963 s2742) +(trans s2963 s2755) +(trans s2963 s2768) +(trans s2964 s2749) +(trans s2964 s2762) +(trans s2964 s2775) +(trans s2965 s2756) +(trans s2965 s2769) +(trans s2965 s2782) +(trans s2966 s2763) +(trans s2966 s2776) +(trans s2966 s2789) +(trans s2967 s2770) +(trans s2967 s2783) +(trans s2967 s2796) +(trans s2968 s2777) +(trans s2968 s2790) +(trans s2968 s2803) +(trans s2969 s2784) +(trans s2969 s2797) +(trans s2969 s2810) +(trans s2970 s2791) +(trans s2970 s2804) +(trans s2970 s2817) +(trans s2971 s2798) +(trans s2971 s2811) +(trans s2971 s2824) +(trans s2972 s2805) +(trans s2972 s2818) +(trans s2972 s2831) +(trans s2973 s2812) +(trans s2973 s2825) +(trans s2973 s2838) +(trans s2974 s2819) +(trans s2974 s2832) +(trans s2974 s2845) +(trans s2975 s2826) +(trans s2975 s2839) +(trans s2975 s2852) +(trans s2976 s2833) +(trans s2976 s2846) +(trans s2976 s2859) +(trans s2977 s2840) +(trans s2977 s2853) +(trans s2977 s2866) +(trans s2978 s2847) +(trans s2978 s2860) +(trans s2978 s2873) +(trans s2979 s2854) +(trans s2979 s2867) +(trans s2979 s2880) +(trans s2980 s2861) +(trans s2980 s2874) +(trans s2980 s2887) +(trans s2981 s2868) +(trans s2981 s2881) +(trans s2981 s2894) +(trans s2982 s2875) +(trans s2982 s2888) +(trans s2982 s2901) +(trans s2983 s2882) +(trans s2983 s2895) +(trans s2983 s2908) +(trans s2984 s2889) +(trans s2984 s2902) +(trans s2984 s2915) +(trans s2985 s2896) +(trans s2985 s2909) +(trans s2985 s2922) +(trans s2986 s2903) +(trans s2986 s2916) +(trans s2986 s2929) +(trans s2987 s2910) +(trans s2987 s2923) +(trans s2987 s2936) +(trans s2988 s2917) +(trans s2988 s2930) +(trans s2988 s2943) +(trans s2989 s2924) +(trans s2989 s2937) +(trans s2989 s2950) +(trans s2990 s2931) +(trans s2990 s2944) +(trans s2990 s2957) +(trans s2991 s2938) +(trans s2991 s2951) +(trans s2991 s2964) +(trans s2992 s2945) +(trans s2992 s2958) +(trans s2992 s2971) +(trans s2993 s2952) +(trans s2993 s2965) +(trans s2993 s2978) +(trans s2994 s2959) +(trans s2994 s2972) +(trans s2994 s2985) +(trans s2995 s2966) +(trans s2995 s2979) +(trans s2995 s2992) +(trans s2996 s2973) +(trans s2996 s2986) +(trans s2996 s2999) +(trans s2997 s2980) +(trans s2997 s2993) +(trans s2997 s3006) +(trans s2998 s2987) +(trans s2998 s3000) +(trans s2998 s3013) +(trans s2999 s2994) +(trans s2999 s3007) +(trans s2999 s3020) +(trans s3000 s3001) +(trans s3000 s3014) +(trans s3000 s3027) +(trans s3001 s3008) +(trans s3001 s3021) +(trans s3001 s3034) +(trans s3002 s3015) +(trans s3002 s3028) +(trans s3002 s3041) +(trans s3003 s3022) +(trans s3003 s3035) +(trans s3003 s3048) +(trans s3004 s3029) +(trans s3004 s3042) +(trans s3004 s3055) +(trans s3005 s3036) +(trans s3005 s3049) +(trans s3005 s3062) +(trans s3006 s3043) +(trans s3006 s3056) +(trans s3006 s3069) +(trans s3007 s3050) +(trans s3007 s3063) +(trans s3007 s3076) +(trans s3008 s3057) +(trans s3008 s3070) +(trans s3008 s3083) +(trans s3009 s3064) +(trans s3009 s3077) +(trans s3009 s3090) +(trans s3010 s3071) +(trans s3010 s3084) +(trans s3010 s3097) +(trans s3011 s3078) +(trans s3011 s3091) +(trans s3011 s3104) +(trans s3012 s3085) +(trans s3012 s3098) +(trans s3012 s3111) +(trans s3013 s3092) +(trans s3013 s3105) +(trans s3013 s3118) +(trans s3014 s3099) +(trans s3014 s3112) +(trans s3014 s3125) +(trans s3015 s3106) +(trans s3015 s3119) +(trans s3015 s3132) +(trans s3016 s3113) +(trans s3016 s3126) +(trans s3016 s3139) +(trans s3017 s3120) +(trans s3017 s3133) +(trans s3017 s3146) +(trans s3018 s3127) +(trans s3018 s3140) +(trans s3018 s3153) +(trans s3019 s3134) +(trans s3019 s3147) +(trans s3019 s3160) +(trans s3020 s3141) +(trans s3020 s3154) +(trans s3020 s3167) +(trans s3021 s3148) +(trans s3021 s3161) +(trans s3021 s3174) +(trans s3022 s3155) +(trans s3022 s3168) +(trans s3022 s3181) +(trans s3023 s3162) +(trans s3023 s3175) +(trans s3023 s3188) +(trans s3024 s3169) +(trans s3024 s3182) +(trans s3024 s3195) +(trans s3025 s3176) +(trans s3025 s3189) +(trans s3025 s3202) +(trans s3026 s3183) +(trans s3026 s3196) +(trans s3026 s3209) +(trans s3027 s3190) +(trans s3027 s3203) +(trans s3027 s3216) +(trans s3028 s3197) +(trans s3028 s3210) +(trans s3028 s3223) +(trans s3029 s3204) +(trans s3029 s3217) +(trans s3029 s3230) +(trans s3030 s3211) +(trans s3030 s3224) +(trans s3030 s3237) +(trans s3031 s3218) +(trans s3031 s3231) +(trans s3031 s3244) +(trans s3032 s3225) +(trans s3032 s3238) +(trans s3032 s3251) +(trans s3033 s3232) +(trans s3033 s3245) +(trans s3033 s3258) +(trans s3034 s3239) +(trans s3034 s3252) +(trans s3034 s3265) +(trans s3035 s3246) +(trans s3035 s3259) +(trans s3035 s3272) +(trans s3036 s3253) +(trans s3036 s3266) +(trans s3036 s3279) +(trans s3037 s3260) +(trans s3037 s3273) +(trans s3037 s3286) +(trans s3038 s3267) +(trans s3038 s3280) +(trans s3038 s3293) +(trans s3039 s3274) +(trans s3039 s3287) +(trans s3039 s3300) +(trans s3040 s3281) +(trans s3040 s3294) +(trans s3040 s3307) +(trans s3041 s3288) +(trans s3041 s3301) +(trans s3041 s3314) +(trans s3042 s3295) +(trans s3042 s3308) +(trans s3042 s3321) +(trans s3043 s3302) +(trans s3043 s3315) +(trans s3043 s3328) +(trans s3044 s3309) +(trans s3044 s3322) +(trans s3044 s3335) +(trans s3045 s3316) +(trans s3045 s3329) +(trans s3045 s3342) +(trans s3046 s3323) +(trans s3046 s3336) +(trans s3046 s3349) +(trans s3047 s3330) +(trans s3047 s3343) +(trans s3047 s3356) +(trans s3048 s3337) +(trans s3048 s3350) +(trans s3048 s3363) +(trans s3049 s3344) +(trans s3049 s3357) +(trans s3049 s3370) +(trans s3050 s3351) +(trans s3050 s3364) +(trans s3050 s3377) +(trans s3051 s3358) +(trans s3051 s3371) +(trans s3051 s3384) +(trans s3052 s3365) +(trans s3052 s3378) +(trans s3052 s3391) +(trans s3053 s3372) +(trans s3053 s3385) +(trans s3053 s3398) +(trans s3054 s3379) +(trans s3054 s3392) +(trans s3054 s3405) +(trans s3055 s3386) +(trans s3055 s3399) +(trans s3055 s3412) +(trans s3056 s3393) +(trans s3056 s3406) +(trans s3056 s3419) +(trans s3057 s3400) +(trans s3057 s3413) +(trans s3057 s3426) +(trans s3058 s3407) +(trans s3058 s3420) +(trans s3058 s3433) +(trans s3059 s3414) +(trans s3059 s3427) +(trans s3059 s3440) +(trans s3060 s3421) +(trans s3060 s3434) +(trans s3060 s3447) +(trans s3061 s3428) +(trans s3061 s3441) +(trans s3061 s3454) +(trans s3062 s3435) +(trans s3062 s3448) +(trans s3062 s3461) +(trans s3063 s3442) +(trans s3063 s3455) +(trans s3063 s3468) +(trans s3064 s3449) +(trans s3064 s3462) +(trans s3064 s3475) +(trans s3065 s3456) +(trans s3065 s3469) +(trans s3065 s3482) +(trans s3066 s3463) +(trans s3066 s3476) +(trans s3066 s3489) +(trans s3067 s3470) +(trans s3067 s3483) +(trans s3067 s3496) +(trans s3068 s3477) +(trans s3068 s3490) +(trans s3068 s3503) +(trans s3069 s3484) +(trans s3069 s3497) +(trans s3069 s3510) +(trans s3070 s3491) +(trans s3070 s3504) +(trans s3070 s3517) +(trans s3071 s3498) +(trans s3071 s3511) +(trans s3071 s3524) +(trans s3072 s3505) +(trans s3072 s3518) +(trans s3072 s3531) +(trans s3073 s3512) +(trans s3073 s3525) +(trans s3073 s3538) +(trans s3074 s3519) +(trans s3074 s3532) +(trans s3074 s3545) +(trans s3075 s3526) +(trans s3075 s3539) +(trans s3075 s3552) +(trans s3076 s3533) +(trans s3076 s3546) +(trans s3076 s3559) +(trans s3077 s3540) +(trans s3077 s3553) +(trans s3077 s3566) +(trans s3078 s3547) +(trans s3078 s3560) +(trans s3078 s3573) +(trans s3079 s3554) +(trans s3079 s3567) +(trans s3079 s3580) +(trans s3080 s3561) +(trans s3080 s3574) +(trans s3080 s3587) +(trans s3081 s3568) +(trans s3081 s3581) +(trans s3081 s3594) +(trans s3082 s3575) +(trans s3082 s3588) +(trans s3082 s3601) +(trans s3083 s3582) +(trans s3083 s3595) +(trans s3083 s3608) +(trans s3084 s3589) +(trans s3084 s3602) +(trans s3084 s3615) +(trans s3085 s3596) +(trans s3085 s3609) +(trans s3085 s3622) +(trans s3086 s3603) +(trans s3086 s3616) +(trans s3086 s3629) +(trans s3087 s3610) +(trans s3087 s3623) +(trans s3087 s3636) +(trans s3088 s3617) +(trans s3088 s3630) +(trans s3088 s3643) +(trans s3089 s3624) +(trans s3089 s3637) +(trans s3089 s3650) +(trans s3090 s3631) +(trans s3090 s3644) +(trans s3090 s3657) +(trans s3091 s3638) +(trans s3091 s3651) +(trans s3091 s3664) +(trans s3092 s3645) +(trans s3092 s3658) +(trans s3092 s3671) +(trans s3093 s3652) +(trans s3093 s3665) +(trans s3093 s3678) +(trans s3094 s3659) +(trans s3094 s3672) +(trans s3094 s3685) +(trans s3095 s3666) +(trans s3095 s3679) +(trans s3095 s3692) +(trans s3096 s3673) +(trans s3096 s3686) +(trans s3096 s3699) +(trans s3097 s3680) +(trans s3097 s3693) +(trans s3097 s3706) +(trans s3098 s3687) +(trans s3098 s3700) +(trans s3098 s3713) +(trans s3099 s3694) +(trans s3099 s3707) +(trans s3099 s3720) +(trans s3100 s3701) +(trans s3100 s3714) +(trans s3100 s3727) +(trans s3101 s3708) +(trans s3101 s3721) +(trans s3101 s3734) +(trans s3102 s3715) +(trans s3102 s3728) +(trans s3102 s3741) +(trans s3103 s3722) +(trans s3103 s3735) +(trans s3103 s3748) +(trans s3104 s3729) +(trans s3104 s3742) +(trans s3104 s3755) +(trans s3105 s3736) +(trans s3105 s3749) +(trans s3105 s3762) +(trans s3106 s3743) +(trans s3106 s3756) +(trans s3106 s3769) +(trans s3107 s3750) +(trans s3107 s3763) +(trans s3107 s3776) +(trans s3108 s3757) +(trans s3108 s3770) +(trans s3108 s3783) +(trans s3109 s3764) +(trans s3109 s3777) +(trans s3109 s3790) +(trans s3110 s3771) +(trans s3110 s3784) +(trans s3110 s3797) +(trans s3111 s3778) +(trans s3111 s3791) +(trans s3111 s3804) +(trans s3112 s3785) +(trans s3112 s3798) +(trans s3112 s3811) +(trans s3113 s3792) +(trans s3113 s3805) +(trans s3113 s3818) +(trans s3114 s3799) +(trans s3114 s3812) +(trans s3114 s3825) +(trans s3115 s3806) +(trans s3115 s3819) +(trans s3115 s3832) +(trans s3116 s3813) +(trans s3116 s3826) +(trans s3116 s3839) +(trans s3117 s3820) +(trans s3117 s3833) +(trans s3117 s3846) +(trans s3118 s3827) +(trans s3118 s3840) +(trans s3118 s3853) +(trans s3119 s3834) +(trans s3119 s3847) +(trans s3119 s3860) +(trans s3120 s3841) +(trans s3120 s3854) +(trans s3120 s3867) +(trans s3121 s3848) +(trans s3121 s3861) +(trans s3121 s3874) +(trans s3122 s3855) +(trans s3122 s3868) +(trans s3122 s3881) +(trans s3123 s3862) +(trans s3123 s3875) +(trans s3123 s3888) +(trans s3124 s3869) +(trans s3124 s3882) +(trans s3124 s3895) +(trans s3125 s3876) +(trans s3125 s3889) +(trans s3125 s3902) +(trans s3126 s3883) +(trans s3126 s3896) +(trans s3126 s3909) +(trans s3127 s3890) +(trans s3127 s3903) +(trans s3127 s3916) +(trans s3128 s3897) +(trans s3128 s3910) +(trans s3128 s3923) +(trans s3129 s3904) +(trans s3129 s3917) +(trans s3129 s3930) +(trans s3130 s3911) +(trans s3130 s3924) +(trans s3130 s3937) +(trans s3131 s3918) +(trans s3131 s3931) +(trans s3131 s3944) +(trans s3132 s3925) +(trans s3132 s3938) +(trans s3132 s3951) +(trans s3133 s3932) +(trans s3133 s3945) +(trans s3133 s3958) +(trans s3134 s3939) +(trans s3134 s3952) +(trans s3134 s3965) +(trans s3135 s3946) +(trans s3135 s3959) +(trans s3135 s3972) +(trans s3136 s3953) +(trans s3136 s3966) +(trans s3136 s3979) +(trans s3137 s3960) +(trans s3137 s3973) +(trans s3137 s3986) +(trans s3138 s3967) +(trans s3138 s3980) +(trans s3138 s3993) +(trans s3139 s3974) +(trans s3139 s3987) +(trans s3139 s4000) +(trans s3140 s3981) +(trans s3140 s3994) +(trans s3140 s4007) +(trans s3141 s3988) +(trans s3141 s4001) +(trans s3141 s4014) +(trans s3142 s3995) +(trans s3142 s4008) +(trans s3142 s4021) +(trans s3143 s4002) +(trans s3143 s4015) +(trans s3143 s4028) +(trans s3144 s4009) +(trans s3144 s4022) +(trans s3144 s4035) +(trans s3145 s4016) +(trans s3145 s4029) +(trans s3145 s4042) +(trans s3146 s4023) +(trans s3146 s4036) +(trans s3146 s4049) +(trans s3147 s4030) +(trans s3147 s4043) +(trans s3147 s4056) +(trans s3148 s4037) +(trans s3148 s4050) +(trans s3148 s4063) +(trans s3149 s4044) +(trans s3149 s4057) +(trans s3149 s4070) +(trans s3150 s4051) +(trans s3150 s4064) +(trans s3150 s4077) +(trans s3151 s4058) +(trans s3151 s4071) +(trans s3151 s4084) +(trans s3152 s4065) +(trans s3152 s4078) +(trans s3152 s4091) +(trans s3153 s4072) +(trans s3153 s4085) +(trans s3153 s4098) +(trans s3154 s4079) +(trans s3154 s4092) +(trans s3154 s4105) +(trans s3155 s4086) +(trans s3155 s4099) +(trans s3155 s4112) +(trans s3156 s4093) +(trans s3156 s4106) +(trans s3156 s4119) +(trans s3157 s4100) +(trans s3157 s4113) +(trans s3157 s4126) +(trans s3158 s4107) +(trans s3158 s4120) +(trans s3158 s4133) +(trans s3159 s4114) +(trans s3159 s4127) +(trans s3159 s4140) +(trans s3160 s4121) +(trans s3160 s4134) +(trans s3160 s4147) +(trans s3161 s4128) +(trans s3161 s4141) +(trans s3161 s4154) +(trans s3162 s4135) +(trans s3162 s4148) +(trans s3162 s4161) +(trans s3163 s4142) +(trans s3163 s4155) +(trans s3163 s4168) +(trans s3164 s4149) +(trans s3164 s4162) +(trans s3164 s4175) +(trans s3165 s4156) +(trans s3165 s4169) +(trans s3165 s4182) +(trans s3166 s4163) +(trans s3166 s4176) +(trans s3166 s4189) +(trans s3167 s4170) +(trans s3167 s4183) +(trans s3167 s4196) +(trans s3168 s4177) +(trans s3168 s4190) +(trans s3168 s4203) +(trans s3169 s4184) +(trans s3169 s4197) +(trans s3169 s4210) +(trans s3170 s4191) +(trans s3170 s4204) +(trans s3170 s4217) +(trans s3171 s4198) +(trans s3171 s4211) +(trans s3171 s4224) +(trans s3172 s4205) +(trans s3172 s4218) +(trans s3172 s4231) +(trans s3173 s4212) +(trans s3173 s4225) +(trans s3173 s4238) +(trans s3174 s4219) +(trans s3174 s4232) +(trans s3174 s4245) +(trans s3175 s4226) +(trans s3175 s4239) +(trans s3175 s4252) +(trans s3176 s4233) +(trans s3176 s4246) +(trans s3176 s4259) +(trans s3177 s4240) +(trans s3177 s4253) +(trans s3177 s4266) +(trans s3178 s4247) +(trans s3178 s4260) +(trans s3178 s4273) +(trans s3179 s4254) +(trans s3179 s4267) +(trans s3179 s4280) +(trans s3180 s4261) +(trans s3180 s4274) +(trans s3180 s4287) +(trans s3181 s4268) +(trans s3181 s4281) +(trans s3181 s4294) +(trans s3182 s4275) +(trans s3182 s4288) +(trans s3182 s4301) +(trans s3183 s4282) +(trans s3183 s4295) +(trans s3183 s4308) +(trans s3184 s4289) +(trans s3184 s4302) +(trans s3184 s4315) +(trans s3185 s4296) +(trans s3185 s4309) +(trans s3185 s4322) +(trans s3186 s4303) +(trans s3186 s4316) +(trans s3186 s4329) +(trans s3187 s4310) +(trans s3187 s4323) +(trans s3187 s4336) +(trans s3188 s4317) +(trans s3188 s4330) +(trans s3188 s4343) +(trans s3189 s4324) +(trans s3189 s4337) +(trans s3189 s4350) +(trans s3190 s4331) +(trans s3190 s4344) +(trans s3190 s4357) +(trans s3191 s4338) +(trans s3191 s4351) +(trans s3191 s4364) +(trans s3192 s4345) +(trans s3192 s4358) +(trans s3192 s4371) +(trans s3193 s4352) +(trans s3193 s4365) +(trans s3193 s4378) +(trans s3194 s4359) +(trans s3194 s4372) +(trans s3194 s4385) +(trans s3195 s4366) +(trans s3195 s4379) +(trans s3195 s4392) +(trans s3196 s4373) +(trans s3196 s4386) +(trans s3196 s4399) +(trans s3197 s4380) +(trans s3197 s4393) +(trans s3197 s4406) +(trans s3198 s4387) +(trans s3198 s4400) +(trans s3198 s4413) +(trans s3199 s4394) +(trans s3199 s4407) +(trans s3199 s4420) +(trans s3200 s4401) +(trans s3200 s4414) +(trans s3200 s4427) +(trans s3201 s4408) +(trans s3201 s4421) +(trans s3201 s4434) +(trans s3202 s4415) +(trans s3202 s4428) +(trans s3202 s4441) +(trans s3203 s4422) +(trans s3203 s4435) +(trans s3203 s4448) +(trans s3204 s4429) +(trans s3204 s4442) +(trans s3204 s4455) +(trans s3205 s4436) +(trans s3205 s4449) +(trans s3205 s4462) +(trans s3206 s4443) +(trans s3206 s4456) +(trans s3206 s4469) +(trans s3207 s4450) +(trans s3207 s4463) +(trans s3207 s4476) +(trans s3208 s4457) +(trans s3208 s4470) +(trans s3208 s4483) +(trans s3209 s4464) +(trans s3209 s4477) +(trans s3209 s4490) +(trans s3210 s4471) +(trans s3210 s4484) +(trans s3210 s4497) +(trans s3211 s4478) +(trans s3211 s4491) +(trans s3211 s4504) +(trans s3212 s4485) +(trans s3212 s4498) +(trans s3212 s4511) +(trans s3213 s4492) +(trans s3213 s4505) +(trans s3213 s4518) +(trans s3214 s4499) +(trans s3214 s4512) +(trans s3214 s4525) +(trans s3215 s4506) +(trans s3215 s4519) +(trans s3215 s4532) +(trans s3216 s4513) +(trans s3216 s4526) +(trans s3216 s4539) +(trans s3217 s4520) +(trans s3217 s4533) +(trans s3217 s4546) +(trans s3218 s4527) +(trans s3218 s4540) +(trans s3218 s4553) +(trans s3219 s4534) +(trans s3219 s4547) +(trans s3219 s4560) +(trans s3220 s4541) +(trans s3220 s4554) +(trans s3220 s4567) +(trans s3221 s4548) +(trans s3221 s4561) +(trans s3221 s4574) +(trans s3222 s4555) +(trans s3222 s4568) +(trans s3222 s4581) +(trans s3223 s4562) +(trans s3223 s4575) +(trans s3223 s4588) +(trans s3224 s4569) +(trans s3224 s4582) +(trans s3224 s4595) +(trans s3225 s4576) +(trans s3225 s4589) +(trans s3225 s4602) +(trans s3226 s4583) +(trans s3226 s4596) +(trans s3226 s4609) +(trans s3227 s4590) +(trans s3227 s4603) +(trans s3227 s4616) +(trans s3228 s4597) +(trans s3228 s4610) +(trans s3228 s4623) +(trans s3229 s4604) +(trans s3229 s4617) +(trans s3229 s4630) +(trans s3230 s4611) +(trans s3230 s4624) +(trans s3230 s4637) +(trans s3231 s4618) +(trans s3231 s4631) +(trans s3231 s4644) +(trans s3232 s4625) +(trans s3232 s4638) +(trans s3232 s4651) +(trans s3233 s4632) +(trans s3233 s4645) +(trans s3233 s4658) +(trans s3234 s4639) +(trans s3234 s4652) +(trans s3234 s4665) +(trans s3235 s4646) +(trans s3235 s4659) +(trans s3235 s4672) +(trans s3236 s4653) +(trans s3236 s4666) +(trans s3236 s4679) +(trans s3237 s4660) +(trans s3237 s4673) +(trans s3237 s4686) +(trans s3238 s4667) +(trans s3238 s4680) +(trans s3238 s4693) +(trans s3239 s4674) +(trans s3239 s4687) +(trans s3239 s4700) +(trans s3240 s4681) +(trans s3240 s4694) +(trans s3240 s4707) +(trans s3241 s4688) +(trans s3241 s4701) +(trans s3241 s4714) +(trans s3242 s4695) +(trans s3242 s4708) +(trans s3242 s4721) +(trans s3243 s4702) +(trans s3243 s4715) +(trans s3243 s4728) +(trans s3244 s4709) +(trans s3244 s4722) +(trans s3244 s4735) +(trans s3245 s4716) +(trans s3245 s4729) +(trans s3245 s4742) +(trans s3246 s4723) +(trans s3246 s4736) +(trans s3246 s4749) +(trans s3247 s4730) +(trans s3247 s4743) +(trans s3247 s4756) +(trans s3248 s4737) +(trans s3248 s4750) +(trans s3248 s4763) +(trans s3249 s4744) +(trans s3249 s4757) +(trans s3249 s4770) +(trans s3250 s4751) +(trans s3250 s4764) +(trans s3250 s4777) +(trans s3251 s4758) +(trans s3251 s4771) +(trans s3251 s4784) +(trans s3252 s4765) +(trans s3252 s4778) +(trans s3252 s4791) +(trans s3253 s4772) +(trans s3253 s4785) +(trans s3253 s4798) +(trans s3254 s4779) +(trans s3254 s4792) +(trans s3254 s4805) +(trans s3255 s4786) +(trans s3255 s4799) +(trans s3255 s4812) +(trans s3256 s4793) +(trans s3256 s4806) +(trans s3256 s4819) +(trans s3257 s4800) +(trans s3257 s4813) +(trans s3257 s4826) +(trans s3258 s4807) +(trans s3258 s4820) +(trans s3258 s4833) +(trans s3259 s4814) +(trans s3259 s4827) +(trans s3259 s4840) +(trans s3260 s4821) +(trans s3260 s4834) +(trans s3260 s4847) +(trans s3261 s4828) +(trans s3261 s4841) +(trans s3261 s4854) +(trans s3262 s4835) +(trans s3262 s4848) +(trans s3262 s4861) +(trans s3263 s4842) +(trans s3263 s4855) +(trans s3263 s4868) +(trans s3264 s4849) +(trans s3264 s4862) +(trans s3264 s4875) +(trans s3265 s4856) +(trans s3265 s4869) +(trans s3265 s4882) +(trans s3266 s4863) +(trans s3266 s4876) +(trans s3266 s4889) +(trans s3267 s4870) +(trans s3267 s4883) +(trans s3267 s4896) +(trans s3268 s4877) +(trans s3268 s4890) +(trans s3268 s4903) +(trans s3269 s4884) +(trans s3269 s4897) +(trans s3269 s4910) +(trans s3270 s4891) +(trans s3270 s4904) +(trans s3270 s4917) +(trans s3271 s4898) +(trans s3271 s4911) +(trans s3271 s4924) +(trans s3272 s4905) +(trans s3272 s4918) +(trans s3272 s4931) +(trans s3273 s4912) +(trans s3273 s4925) +(trans s3273 s4938) +(trans s3274 s4919) +(trans s3274 s4932) +(trans s3274 s4945) +(trans s3275 s4926) +(trans s3275 s4939) +(trans s3275 s4952) +(trans s3276 s4933) +(trans s3276 s4946) +(trans s3276 s4959) +(trans s3277 s4940) +(trans s3277 s4953) +(trans s3277 s4966) +(trans s3278 s4947) +(trans s3278 s4960) +(trans s3278 s4973) +(trans s3279 s4954) +(trans s3279 s4967) +(trans s3279 s4980) +(trans s3280 s4961) +(trans s3280 s4974) +(trans s3280 s4987) +(trans s3281 s4968) +(trans s3281 s4981) +(trans s3281 s4994) +(trans s3282 s4975) +(trans s3282 s4988) +(trans s3282 s5001) +(trans s3283 s4982) +(trans s3283 s4995) +(trans s3283 s5008) +(trans s3284 s4989) +(trans s3284 s5002) +(trans s3284 s5015) +(trans s3285 s4996) +(trans s3285 s5009) +(trans s3285 s5022) +(trans s3286 s5003) +(trans s3286 s5016) +(trans s3286 s5029) +(trans s3287 s5010) +(trans s3287 s5023) +(trans s3287 s5036) +(trans s3288 s5017) +(trans s3288 s5030) +(trans s3288 s5043) +(trans s3289 s5024) +(trans s3289 s5037) +(trans s3289 s5050) +(trans s3290 s5031) +(trans s3290 s5044) +(trans s3290 s5057) +(trans s3291 s5038) +(trans s3291 s5051) +(trans s3291 s5064) +(trans s3292 s5045) +(trans s3292 s5058) +(trans s3292 s5071) +(trans s3293 s5052) +(trans s3293 s5065) +(trans s3293 s5078) +(trans s3294 s5059) +(trans s3294 s5072) +(trans s3294 s5085) +(trans s3295 s5066) +(trans s3295 s5079) +(trans s3295 s5092) +(trans s3296 s5073) +(trans s3296 s5086) +(trans s3296 s5099) +(trans s3297 s5080) +(trans s3297 s5093) +(trans s3297 s5106) +(trans s3298 s5087) +(trans s3298 s5100) +(trans s3298 s5113) +(trans s3299 s5094) +(trans s3299 s5107) +(trans s3299 s5120) +(trans s3300 s5101) +(trans s3300 s5114) +(trans s3300 s5127) +(trans s3301 s5108) +(trans s3301 s5121) +(trans s3301 s5134) +(trans s3302 s5115) +(trans s3302 s5128) +(trans s3302 s5141) +(trans s3303 s5122) +(trans s3303 s5135) +(trans s3303 s5148) +(trans s3304 s5129) +(trans s3304 s5142) +(trans s3304 s5155) +(trans s3305 s5136) +(trans s3305 s5149) +(trans s3305 s5162) +(trans s3306 s5143) +(trans s3306 s5156) +(trans s3306 s5169) +(trans s3307 s5150) +(trans s3307 s5163) +(trans s3307 s5176) +(trans s3308 s5157) +(trans s3308 s5170) +(trans s3308 s5183) +(trans s3309 s5164) +(trans s3309 s5177) +(trans s3309 s5190) +(trans s3310 s5171) +(trans s3310 s5184) +(trans s3310 s5197) +(trans s3311 s5178) +(trans s3311 s5191) +(trans s3311 s5204) +(trans s3312 s5185) +(trans s3312 s5198) +(trans s3312 s5211) +(trans s3313 s5192) +(trans s3313 s5205) +(trans s3313 s5218) +(trans s3314 s5199) +(trans s3314 s5212) +(trans s3314 s5225) +(trans s3315 s5206) +(trans s3315 s5219) +(trans s3315 s5232) +(trans s3316 s5213) +(trans s3316 s5226) +(trans s3316 s5239) +(trans s3317 s5220) +(trans s3317 s5233) +(trans s3317 s5246) +(trans s3318 s5227) +(trans s3318 s5240) +(trans s3318 s5253) +(trans s3319 s5234) +(trans s3319 s5247) +(trans s3319 s5260) +(trans s3320 s5241) +(trans s3320 s5254) +(trans s3320 s5267) +(trans s3321 s5248) +(trans s3321 s5261) +(trans s3321 s5274) +(trans s3322 s5255) +(trans s3322 s5268) +(trans s3322 s5281) +(trans s3323 s5262) +(trans s3323 s5275) +(trans s3323 s5288) +(trans s3324 s5269) +(trans s3324 s5282) +(trans s3324 s5295) +(trans s3325 s5276) +(trans s3325 s5289) +(trans s3325 s5302) +(trans s3326 s5283) +(trans s3326 s5296) +(trans s3326 s5309) +(trans s3327 s5290) +(trans s3327 s5303) +(trans s3327 s5316) +(trans s3328 s5297) +(trans s3328 s5310) +(trans s3328 s5323) +(trans s3329 s5304) +(trans s3329 s5317) +(trans s3329 s5330) +(trans s3330 s5311) +(trans s3330 s5324) +(trans s3330 s5337) +(trans s3331 s5318) +(trans s3331 s5331) +(trans s3331 s5344) +(trans s3332 s5325) +(trans s3332 s5338) +(trans s3332 s5351) +(trans s3333 s5332) +(trans s3333 s5345) +(trans s3333 s5358) +(trans s3334 s5339) +(trans s3334 s5352) +(trans s3334 s5365) +(trans s3335 s5346) +(trans s3335 s5359) +(trans s3335 s5372) +(trans s3336 s5353) +(trans s3336 s5366) +(trans s3336 s5379) +(trans s3337 s5360) +(trans s3337 s5373) +(trans s3337 s5386) +(trans s3338 s5367) +(trans s3338 s5380) +(trans s3338 s5393) +(trans s3339 s5374) +(trans s3339 s5387) +(trans s3339 s5400) +(trans s3340 s5381) +(trans s3340 s5394) +(trans s3340 s5407) +(trans s3341 s5388) +(trans s3341 s5401) +(trans s3341 s5414) +(trans s3342 s5395) +(trans s3342 s5408) +(trans s3342 s5421) +(trans s3343 s5402) +(trans s3343 s5415) +(trans s3343 s5428) +(trans s3344 s5409) +(trans s3344 s5422) +(trans s3344 s5435) +(trans s3345 s5416) +(trans s3345 s5429) +(trans s3345 s5442) +(trans s3346 s5423) +(trans s3346 s5436) +(trans s3346 s5449) +(trans s3347 s5430) +(trans s3347 s5443) +(trans s3347 s5456) +(trans s3348 s5437) +(trans s3348 s5450) +(trans s3348 s5463) +(trans s3349 s5444) +(trans s3349 s5457) +(trans s3349 s5470) +(trans s3350 s5451) +(trans s3350 s5464) +(trans s3350 s5477) +(trans s3351 s5458) +(trans s3351 s5471) +(trans s3351 s5484) +(trans s3352 s5465) +(trans s3352 s5478) +(trans s3352 s5491) +(trans s3353 s5472) +(trans s3353 s5485) +(trans s3353 s5498) +(trans s3354 s5479) +(trans s3354 s5492) +(trans s3354 s5505) +(trans s3355 s5486) +(trans s3355 s5499) +(trans s3355 s5512) +(trans s3356 s5493) +(trans s3356 s5506) +(trans s3356 s5519) +(trans s3357 s5500) +(trans s3357 s5513) +(trans s3357 s5526) +(trans s3358 s5507) +(trans s3358 s5520) +(trans s3358 s5533) +(trans s3359 s5514) +(trans s3359 s5527) +(trans s3359 s5540) +(trans s3360 s5521) +(trans s3360 s5534) +(trans s3360 s5547) +(trans s3361 s5528) +(trans s3361 s5541) +(trans s3361 s5554) +(trans s3362 s5535) +(trans s3362 s5548) +(trans s3362 s5561) +(trans s3363 s5542) +(trans s3363 s5555) +(trans s3363 s5568) +(trans s3364 s5549) +(trans s3364 s5562) +(trans s3364 s5575) +(trans s3365 s5556) +(trans s3365 s5569) +(trans s3365 s5582) +(trans s3366 s5563) +(trans s3366 s5576) +(trans s3366 s5589) +(trans s3367 s5570) +(trans s3367 s5583) +(trans s3367 s5596) +(trans s3368 s5577) +(trans s3368 s5590) +(trans s3368 s5603) +(trans s3369 s5584) +(trans s3369 s5597) +(trans s3369 s5610) +(trans s3370 s5591) +(trans s3370 s5604) +(trans s3370 s5617) +(trans s3371 s5598) +(trans s3371 s5611) +(trans s3371 s5624) +(trans s3372 s5605) +(trans s3372 s5618) +(trans s3372 s5631) +(trans s3373 s5612) +(trans s3373 s5625) +(trans s3373 s5638) +(trans s3374 s5619) +(trans s3374 s5632) +(trans s3374 s5645) +(trans s3375 s5626) +(trans s3375 s5639) +(trans s3375 s5652) +(trans s3376 s5633) +(trans s3376 s5646) +(trans s3376 s5659) +(trans s3377 s5640) +(trans s3377 s5653) +(trans s3377 s5666) +(trans s3378 s5647) +(trans s3378 s5660) +(trans s3378 s5673) +(trans s3379 s5654) +(trans s3379 s5667) +(trans s3379 s5680) +(trans s3380 s5661) +(trans s3380 s5674) +(trans s3380 s5687) +(trans s3381 s5668) +(trans s3381 s5681) +(trans s3381 s5694) +(trans s3382 s5675) +(trans s3382 s5688) +(trans s3382 s5701) +(trans s3383 s5682) +(trans s3383 s5695) +(trans s3383 s5708) +(trans s3384 s5689) +(trans s3384 s5702) +(trans s3384 s5715) +(trans s3385 s5696) +(trans s3385 s5709) +(trans s3385 s5722) +(trans s3386 s5703) +(trans s3386 s5716) +(trans s3386 s5729) +(trans s3387 s5710) +(trans s3387 s5723) +(trans s3387 s5736) +(trans s3388 s5717) +(trans s3388 s5730) +(trans s3388 s5743) +(trans s3389 s5724) +(trans s3389 s5737) +(trans s3389 s5750) +(trans s3390 s5731) +(trans s3390 s5744) +(trans s3390 s5757) +(trans s3391 s5738) +(trans s3391 s5751) +(trans s3391 s5764) +(trans s3392 s5745) +(trans s3392 s5758) +(trans s3392 s5771) +(trans s3393 s5752) +(trans s3393 s5765) +(trans s3393 s5778) +(trans s3394 s5759) +(trans s3394 s5772) +(trans s3394 s5785) +(trans s3395 s5766) +(trans s3395 s5779) +(trans s3395 s5792) +(trans s3396 s5773) +(trans s3396 s5786) +(trans s3396 s5799) +(trans s3397 s5780) +(trans s3397 s5793) +(trans s3397 s5806) +(trans s3398 s5787) +(trans s3398 s5800) +(trans s3398 s5813) +(trans s3399 s5794) +(trans s3399 s5807) +(trans s3399 s5820) +(trans s3400 s5801) +(trans s3400 s5814) +(trans s3400 s5827) +(trans s3401 s5808) +(trans s3401 s5821) +(trans s3401 s5834) +(trans s3402 s5815) +(trans s3402 s5828) +(trans s3402 s5841) +(trans s3403 s5822) +(trans s3403 s5835) +(trans s3403 s5848) +(trans s3404 s5829) +(trans s3404 s5842) +(trans s3404 s5855) +(trans s3405 s5836) +(trans s3405 s5849) +(trans s3405 s5862) +(trans s3406 s5843) +(trans s3406 s5856) +(trans s3406 s5869) +(trans s3407 s5850) +(trans s3407 s5863) +(trans s3407 s5876) +(trans s3408 s5857) +(trans s3408 s5870) +(trans s3408 s5883) +(trans s3409 s5864) +(trans s3409 s5877) +(trans s3409 s5890) +(trans s3410 s5871) +(trans s3410 s5884) +(trans s3410 s5897) +(trans s3411 s5878) +(trans s3411 s5891) +(trans s3411 s5904) +(trans s3412 s5885) +(trans s3412 s5898) +(trans s3412 s5911) +(trans s3413 s5892) +(trans s3413 s5905) +(trans s3413 s5918) +(trans s3414 s5899) +(trans s3414 s5912) +(trans s3414 s5925) +(trans s3415 s5906) +(trans s3415 s5919) +(trans s3415 s5932) +(trans s3416 s5913) +(trans s3416 s5926) +(trans s3416 s5939) +(trans s3417 s5920) +(trans s3417 s5933) +(trans s3417 s5946) +(trans s3418 s5927) +(trans s3418 s5940) +(trans s3418 s5953) +(trans s3419 s5934) +(trans s3419 s5947) +(trans s3419 s5960) +(trans s3420 s5941) +(trans s3420 s5954) +(trans s3420 s5967) +(trans s3421 s5948) +(trans s3421 s5961) +(trans s3421 s5974) +(trans s3422 s5955) +(trans s3422 s5968) +(trans s3422 s5981) +(trans s3423 s5962) +(trans s3423 s5975) +(trans s3423 s5988) +(trans s3424 s5969) +(trans s3424 s5982) +(trans s3424 s5995) +(trans s3425 s5976) +(trans s3425 s5989) +(trans s3425 s2) +(trans s3426 s5983) +(trans s3426 s5996) +(trans s3426 s9) +(trans s3427 s5990) +(trans s3427 s3) +(trans s3427 s16) +(trans s3428 s5997) +(trans s3428 s10) +(trans s3428 s23) +(trans s3429 s4) +(trans s3429 s17) +(trans s3429 s30) +(trans s3430 s11) +(trans s3430 s24) +(trans s3430 s37) +(trans s3431 s18) +(trans s3431 s31) +(trans s3431 s44) +(trans s3432 s25) +(trans s3432 s38) +(trans s3432 s51) +(trans s3433 s32) +(trans s3433 s45) +(trans s3433 s58) +(trans s3434 s39) +(trans s3434 s52) +(trans s3434 s65) +(trans s3435 s46) +(trans s3435 s59) +(trans s3435 s72) +(trans s3436 s53) +(trans s3436 s66) +(trans s3436 s79) +(trans s3437 s60) +(trans s3437 s73) +(trans s3437 s86) +(trans s3438 s67) +(trans s3438 s80) +(trans s3438 s93) +(trans s3439 s74) +(trans s3439 s87) +(trans s3439 s100) +(trans s3440 s81) +(trans s3440 s94) +(trans s3440 s107) +(trans s3441 s88) +(trans s3441 s101) +(trans s3441 s114) +(trans s3442 s95) +(trans s3442 s108) +(trans s3442 s121) +(trans s3443 s102) +(trans s3443 s115) +(trans s3443 s128) +(trans s3444 s109) +(trans s3444 s122) +(trans s3444 s135) +(trans s3445 s116) +(trans s3445 s129) +(trans s3445 s142) +(trans s3446 s123) +(trans s3446 s136) +(trans s3446 s149) +(trans s3447 s130) +(trans s3447 s143) +(trans s3447 s156) +(trans s3448 s137) +(trans s3448 s150) +(trans s3448 s163) +(trans s3449 s144) +(trans s3449 s157) +(trans s3449 s170) +(trans s3450 s151) +(trans s3450 s164) +(trans s3450 s177) +(trans s3451 s158) +(trans s3451 s171) +(trans s3451 s184) +(trans s3452 s165) +(trans s3452 s178) +(trans s3452 s191) +(trans s3453 s172) +(trans s3453 s185) +(trans s3453 s198) +(trans s3454 s179) +(trans s3454 s192) +(trans s3454 s205) +(trans s3455 s186) +(trans s3455 s199) +(trans s3455 s212) +(trans s3456 s193) +(trans s3456 s206) +(trans s3456 s219) +(trans s3457 s200) +(trans s3457 s213) +(trans s3457 s226) +(trans s3458 s207) +(trans s3458 s220) +(trans s3458 s233) +(trans s3459 s214) +(trans s3459 s227) +(trans s3459 s240) +(trans s3460 s221) +(trans s3460 s234) +(trans s3460 s247) +(trans s3461 s228) +(trans s3461 s241) +(trans s3461 s254) +(trans s3462 s235) +(trans s3462 s248) +(trans s3462 s261) +(trans s3463 s242) +(trans s3463 s255) +(trans s3463 s268) +(trans s3464 s249) +(trans s3464 s262) +(trans s3464 s275) +(trans s3465 s256) +(trans s3465 s269) +(trans s3465 s282) +(trans s3466 s263) +(trans s3466 s276) +(trans s3466 s289) +(trans s3467 s270) +(trans s3467 s283) +(trans s3467 s296) +(trans s3468 s277) +(trans s3468 s290) +(trans s3468 s303) +(trans s3469 s284) +(trans s3469 s297) +(trans s3469 s310) +(trans s3470 s291) +(trans s3470 s304) +(trans s3470 s317) +(trans s3471 s298) +(trans s3471 s311) +(trans s3471 s324) +(trans s3472 s305) +(trans s3472 s318) +(trans s3472 s331) +(trans s3473 s312) +(trans s3473 s325) +(trans s3473 s338) +(trans s3474 s319) +(trans s3474 s332) +(trans s3474 s345) +(trans s3475 s326) +(trans s3475 s339) +(trans s3475 s352) +(trans s3476 s333) +(trans s3476 s346) +(trans s3476 s359) +(trans s3477 s340) +(trans s3477 s353) +(trans s3477 s366) +(trans s3478 s347) +(trans s3478 s360) +(trans s3478 s373) +(trans s3479 s354) +(trans s3479 s367) +(trans s3479 s380) +(trans s3480 s361) +(trans s3480 s374) +(trans s3480 s387) +(trans s3481 s368) +(trans s3481 s381) +(trans s3481 s394) +(trans s3482 s375) +(trans s3482 s388) +(trans s3482 s401) +(trans s3483 s382) +(trans s3483 s395) +(trans s3483 s408) +(trans s3484 s389) +(trans s3484 s402) +(trans s3484 s415) +(trans s3485 s396) +(trans s3485 s409) +(trans s3485 s422) +(trans s3486 s403) +(trans s3486 s416) +(trans s3486 s429) +(trans s3487 s410) +(trans s3487 s423) +(trans s3487 s436) +(trans s3488 s417) +(trans s3488 s430) +(trans s3488 s443) +(trans s3489 s424) +(trans s3489 s437) +(trans s3489 s450) +(trans s3490 s431) +(trans s3490 s444) +(trans s3490 s457) +(trans s3491 s438) +(trans s3491 s451) +(trans s3491 s464) +(trans s3492 s445) +(trans s3492 s458) +(trans s3492 s471) +(trans s3493 s452) +(trans s3493 s465) +(trans s3493 s478) +(trans s3494 s459) +(trans s3494 s472) +(trans s3494 s485) +(trans s3495 s466) +(trans s3495 s479) +(trans s3495 s492) +(trans s3496 s473) +(trans s3496 s486) +(trans s3496 s499) +(trans s3497 s480) +(trans s3497 s493) +(trans s3497 s506) +(trans s3498 s487) +(trans s3498 s500) +(trans s3498 s513) +(trans s3499 s494) +(trans s3499 s507) +(trans s3499 s520) +(trans s3500 s501) +(trans s3500 s514) +(trans s3500 s527) +(trans s3501 s508) +(trans s3501 s521) +(trans s3501 s534) +(trans s3502 s515) +(trans s3502 s528) +(trans s3502 s541) +(trans s3503 s522) +(trans s3503 s535) +(trans s3503 s548) +(trans s3504 s529) +(trans s3504 s542) +(trans s3504 s555) +(trans s3505 s536) +(trans s3505 s549) +(trans s3505 s562) +(trans s3506 s543) +(trans s3506 s556) +(trans s3506 s569) +(trans s3507 s550) +(trans s3507 s563) +(trans s3507 s576) +(trans s3508 s557) +(trans s3508 s570) +(trans s3508 s583) +(trans s3509 s564) +(trans s3509 s577) +(trans s3509 s590) +(trans s3510 s571) +(trans s3510 s584) +(trans s3510 s597) +(trans s3511 s578) +(trans s3511 s591) +(trans s3511 s604) +(trans s3512 s585) +(trans s3512 s598) +(trans s3512 s611) +(trans s3513 s592) +(trans s3513 s605) +(trans s3513 s618) +(trans s3514 s599) +(trans s3514 s612) +(trans s3514 s625) +(trans s3515 s606) +(trans s3515 s619) +(trans s3515 s632) +(trans s3516 s613) +(trans s3516 s626) +(trans s3516 s639) +(trans s3517 s620) +(trans s3517 s633) +(trans s3517 s646) +(trans s3518 s627) +(trans s3518 s640) +(trans s3518 s653) +(trans s3519 s634) +(trans s3519 s647) +(trans s3519 s660) +(trans s3520 s641) +(trans s3520 s654) +(trans s3520 s667) +(trans s3521 s648) +(trans s3521 s661) +(trans s3521 s674) +(trans s3522 s655) +(trans s3522 s668) +(trans s3522 s681) +(trans s3523 s662) +(trans s3523 s675) +(trans s3523 s688) +(trans s3524 s669) +(trans s3524 s682) +(trans s3524 s695) +(trans s3525 s676) +(trans s3525 s689) +(trans s3525 s702) +(trans s3526 s683) +(trans s3526 s696) +(trans s3526 s709) +(trans s3527 s690) +(trans s3527 s703) +(trans s3527 s716) +(trans s3528 s697) +(trans s3528 s710) +(trans s3528 s723) +(trans s3529 s704) +(trans s3529 s717) +(trans s3529 s730) +(trans s3530 s711) +(trans s3530 s724) +(trans s3530 s737) +(trans s3531 s718) +(trans s3531 s731) +(trans s3531 s744) +(trans s3532 s725) +(trans s3532 s738) +(trans s3532 s751) +(trans s3533 s732) +(trans s3533 s745) +(trans s3533 s758) +(trans s3534 s739) +(trans s3534 s752) +(trans s3534 s765) +(trans s3535 s746) +(trans s3535 s759) +(trans s3535 s772) +(trans s3536 s753) +(trans s3536 s766) +(trans s3536 s779) +(trans s3537 s760) +(trans s3537 s773) +(trans s3537 s786) +(trans s3538 s767) +(trans s3538 s780) +(trans s3538 s793) +(trans s3539 s774) +(trans s3539 s787) +(trans s3539 s800) +(trans s3540 s781) +(trans s3540 s794) +(trans s3540 s807) +(trans s3541 s788) +(trans s3541 s801) +(trans s3541 s814) +(trans s3542 s795) +(trans s3542 s808) +(trans s3542 s821) +(trans s3543 s802) +(trans s3543 s815) +(trans s3543 s828) +(trans s3544 s809) +(trans s3544 s822) +(trans s3544 s835) +(trans s3545 s816) +(trans s3545 s829) +(trans s3545 s842) +(trans s3546 s823) +(trans s3546 s836) +(trans s3546 s849) +(trans s3547 s830) +(trans s3547 s843) +(trans s3547 s856) +(trans s3548 s837) +(trans s3548 s850) +(trans s3548 s863) +(trans s3549 s844) +(trans s3549 s857) +(trans s3549 s870) +(trans s3550 s851) +(trans s3550 s864) +(trans s3550 s877) +(trans s3551 s858) +(trans s3551 s871) +(trans s3551 s884) +(trans s3552 s865) +(trans s3552 s878) +(trans s3552 s891) +(trans s3553 s872) +(trans s3553 s885) +(trans s3553 s898) +(trans s3554 s879) +(trans s3554 s892) +(trans s3554 s905) +(trans s3555 s886) +(trans s3555 s899) +(trans s3555 s912) +(trans s3556 s893) +(trans s3556 s906) +(trans s3556 s919) +(trans s3557 s900) +(trans s3557 s913) +(trans s3557 s926) +(trans s3558 s907) +(trans s3558 s920) +(trans s3558 s933) +(trans s3559 s914) +(trans s3559 s927) +(trans s3559 s940) +(trans s3560 s921) +(trans s3560 s934) +(trans s3560 s947) +(trans s3561 s928) +(trans s3561 s941) +(trans s3561 s954) +(trans s3562 s935) +(trans s3562 s948) +(trans s3562 s961) +(trans s3563 s942) +(trans s3563 s955) +(trans s3563 s968) +(trans s3564 s949) +(trans s3564 s962) +(trans s3564 s975) +(trans s3565 s956) +(trans s3565 s969) +(trans s3565 s982) +(trans s3566 s963) +(trans s3566 s976) +(trans s3566 s989) +(trans s3567 s970) +(trans s3567 s983) +(trans s3567 s996) +(trans s3568 s977) +(trans s3568 s990) +(trans s3568 s1003) +(trans s3569 s984) +(trans s3569 s997) +(trans s3569 s1010) +(trans s3570 s991) +(trans s3570 s1004) +(trans s3570 s1017) +(trans s3571 s998) +(trans s3571 s1011) +(trans s3571 s1024) +(trans s3572 s1005) +(trans s3572 s1018) +(trans s3572 s1031) +(trans s3573 s1012) +(trans s3573 s1025) +(trans s3573 s1038) +(trans s3574 s1019) +(trans s3574 s1032) +(trans s3574 s1045) +(trans s3575 s1026) +(trans s3575 s1039) +(trans s3575 s1052) +(trans s3576 s1033) +(trans s3576 s1046) +(trans s3576 s1059) +(trans s3577 s1040) +(trans s3577 s1053) +(trans s3577 s1066) +(trans s3578 s1047) +(trans s3578 s1060) +(trans s3578 s1073) +(trans s3579 s1054) +(trans s3579 s1067) +(trans s3579 s1080) +(trans s3580 s1061) +(trans s3580 s1074) +(trans s3580 s1087) +(trans s3581 s1068) +(trans s3581 s1081) +(trans s3581 s1094) +(trans s3582 s1075) +(trans s3582 s1088) +(trans s3582 s1101) +(trans s3583 s1082) +(trans s3583 s1095) +(trans s3583 s1108) +(trans s3584 s1089) +(trans s3584 s1102) +(trans s3584 s1115) +(trans s3585 s1096) +(trans s3585 s1109) +(trans s3585 s1122) +(trans s3586 s1103) +(trans s3586 s1116) +(trans s3586 s1129) +(trans s3587 s1110) +(trans s3587 s1123) +(trans s3587 s1136) +(trans s3588 s1117) +(trans s3588 s1130) +(trans s3588 s1143) +(trans s3589 s1124) +(trans s3589 s1137) +(trans s3589 s1150) +(trans s3590 s1131) +(trans s3590 s1144) +(trans s3590 s1157) +(trans s3591 s1138) +(trans s3591 s1151) +(trans s3591 s1164) +(trans s3592 s1145) +(trans s3592 s1158) +(trans s3592 s1171) +(trans s3593 s1152) +(trans s3593 s1165) +(trans s3593 s1178) +(trans s3594 s1159) +(trans s3594 s1172) +(trans s3594 s1185) +(trans s3595 s1166) +(trans s3595 s1179) +(trans s3595 s1192) +(trans s3596 s1173) +(trans s3596 s1186) +(trans s3596 s1199) +(trans s3597 s1180) +(trans s3597 s1193) +(trans s3597 s1206) +(trans s3598 s1187) +(trans s3598 s1200) +(trans s3598 s1213) +(trans s3599 s1194) +(trans s3599 s1207) +(trans s3599 s1220) +(trans s3600 s1201) +(trans s3600 s1214) +(trans s3600 s1227) +(trans s3601 s1208) +(trans s3601 s1221) +(trans s3601 s1234) +(trans s3602 s1215) +(trans s3602 s1228) +(trans s3602 s1241) +(trans s3603 s1222) +(trans s3603 s1235) +(trans s3603 s1248) +(trans s3604 s1229) +(trans s3604 s1242) +(trans s3604 s1255) +(trans s3605 s1236) +(trans s3605 s1249) +(trans s3605 s1262) +(trans s3606 s1243) +(trans s3606 s1256) +(trans s3606 s1269) +(trans s3607 s1250) +(trans s3607 s1263) +(trans s3607 s1276) +(trans s3608 s1257) +(trans s3608 s1270) +(trans s3608 s1283) +(trans s3609 s1264) +(trans s3609 s1277) +(trans s3609 s1290) +(trans s3610 s1271) +(trans s3610 s1284) +(trans s3610 s1297) +(trans s3611 s1278) +(trans s3611 s1291) +(trans s3611 s1304) +(trans s3612 s1285) +(trans s3612 s1298) +(trans s3612 s1311) +(trans s3613 s1292) +(trans s3613 s1305) +(trans s3613 s1318) +(trans s3614 s1299) +(trans s3614 s1312) +(trans s3614 s1325) +(trans s3615 s1306) +(trans s3615 s1319) +(trans s3615 s1332) +(trans s3616 s1313) +(trans s3616 s1326) +(trans s3616 s1339) +(trans s3617 s1320) +(trans s3617 s1333) +(trans s3617 s1346) +(trans s3618 s1327) +(trans s3618 s1340) +(trans s3618 s1353) +(trans s3619 s1334) +(trans s3619 s1347) +(trans s3619 s1360) +(trans s3620 s1341) +(trans s3620 s1354) +(trans s3620 s1367) +(trans s3621 s1348) +(trans s3621 s1361) +(trans s3621 s1374) +(trans s3622 s1355) +(trans s3622 s1368) +(trans s3622 s1381) +(trans s3623 s1362) +(trans s3623 s1375) +(trans s3623 s1388) +(trans s3624 s1369) +(trans s3624 s1382) +(trans s3624 s1395) +(trans s3625 s1376) +(trans s3625 s1389) +(trans s3625 s1402) +(trans s3626 s1383) +(trans s3626 s1396) +(trans s3626 s1409) +(trans s3627 s1390) +(trans s3627 s1403) +(trans s3627 s1416) +(trans s3628 s1397) +(trans s3628 s1410) +(trans s3628 s1423) +(trans s3629 s1404) +(trans s3629 s1417) +(trans s3629 s1430) +(trans s3630 s1411) +(trans s3630 s1424) +(trans s3630 s1437) +(trans s3631 s1418) +(trans s3631 s1431) +(trans s3631 s1444) +(trans s3632 s1425) +(trans s3632 s1438) +(trans s3632 s1451) +(trans s3633 s1432) +(trans s3633 s1445) +(trans s3633 s1458) +(trans s3634 s1439) +(trans s3634 s1452) +(trans s3634 s1465) +(trans s3635 s1446) +(trans s3635 s1459) +(trans s3635 s1472) +(trans s3636 s1453) +(trans s3636 s1466) +(trans s3636 s1479) +(trans s3637 s1460) +(trans s3637 s1473) +(trans s3637 s1486) +(trans s3638 s1467) +(trans s3638 s1480) +(trans s3638 s1493) +(trans s3639 s1474) +(trans s3639 s1487) +(trans s3639 s1500) +(trans s3640 s1481) +(trans s3640 s1494) +(trans s3640 s1507) +(trans s3641 s1488) +(trans s3641 s1501) +(trans s3641 s1514) +(trans s3642 s1495) +(trans s3642 s1508) +(trans s3642 s1521) +(trans s3643 s1502) +(trans s3643 s1515) +(trans s3643 s1528) +(trans s3644 s1509) +(trans s3644 s1522) +(trans s3644 s1535) +(trans s3645 s1516) +(trans s3645 s1529) +(trans s3645 s1542) +(trans s3646 s1523) +(trans s3646 s1536) +(trans s3646 s1549) +(trans s3647 s1530) +(trans s3647 s1543) +(trans s3647 s1556) +(trans s3648 s1537) +(trans s3648 s1550) +(trans s3648 s1563) +(trans s3649 s1544) +(trans s3649 s1557) +(trans s3649 s1570) +(trans s3650 s1551) +(trans s3650 s1564) +(trans s3650 s1577) +(trans s3651 s1558) +(trans s3651 s1571) +(trans s3651 s1584) +(trans s3652 s1565) +(trans s3652 s1578) +(trans s3652 s1591) +(trans s3653 s1572) +(trans s3653 s1585) +(trans s3653 s1598) +(trans s3654 s1579) +(trans s3654 s1592) +(trans s3654 s1605) +(trans s3655 s1586) +(trans s3655 s1599) +(trans s3655 s1612) +(trans s3656 s1593) +(trans s3656 s1606) +(trans s3656 s1619) +(trans s3657 s1600) +(trans s3657 s1613) +(trans s3657 s1626) +(trans s3658 s1607) +(trans s3658 s1620) +(trans s3658 s1633) +(trans s3659 s1614) +(trans s3659 s1627) +(trans s3659 s1640) +(trans s3660 s1621) +(trans s3660 s1634) +(trans s3660 s1647) +(trans s3661 s1628) +(trans s3661 s1641) +(trans s3661 s1654) +(trans s3662 s1635) +(trans s3662 s1648) +(trans s3662 s1661) +(trans s3663 s1642) +(trans s3663 s1655) +(trans s3663 s1668) +(trans s3664 s1649) +(trans s3664 s1662) +(trans s3664 s1675) +(trans s3665 s1656) +(trans s3665 s1669) +(trans s3665 s1682) +(trans s3666 s1663) +(trans s3666 s1676) +(trans s3666 s1689) +(trans s3667 s1670) +(trans s3667 s1683) +(trans s3667 s1696) +(trans s3668 s1677) +(trans s3668 s1690) +(trans s3668 s1703) +(trans s3669 s1684) +(trans s3669 s1697) +(trans s3669 s1710) +(trans s3670 s1691) +(trans s3670 s1704) +(trans s3670 s1717) +(trans s3671 s1698) +(trans s3671 s1711) +(trans s3671 s1724) +(trans s3672 s1705) +(trans s3672 s1718) +(trans s3672 s1731) +(trans s3673 s1712) +(trans s3673 s1725) +(trans s3673 s1738) +(trans s3674 s1719) +(trans s3674 s1732) +(trans s3674 s1745) +(trans s3675 s1726) +(trans s3675 s1739) +(trans s3675 s1752) +(trans s3676 s1733) +(trans s3676 s1746) +(trans s3676 s1759) +(trans s3677 s1740) +(trans s3677 s1753) +(trans s3677 s1766) +(trans s3678 s1747) +(trans s3678 s1760) +(trans s3678 s1773) +(trans s3679 s1754) +(trans s3679 s1767) +(trans s3679 s1780) +(trans s3680 s1761) +(trans s3680 s1774) +(trans s3680 s1787) +(trans s3681 s1768) +(trans s3681 s1781) +(trans s3681 s1794) +(trans s3682 s1775) +(trans s3682 s1788) +(trans s3682 s1801) +(trans s3683 s1782) +(trans s3683 s1795) +(trans s3683 s1808) +(trans s3684 s1789) +(trans s3684 s1802) +(trans s3684 s1815) +(trans s3685 s1796) +(trans s3685 s1809) +(trans s3685 s1822) +(trans s3686 s1803) +(trans s3686 s1816) +(trans s3686 s1829) +(trans s3687 s1810) +(trans s3687 s1823) +(trans s3687 s1836) +(trans s3688 s1817) +(trans s3688 s1830) +(trans s3688 s1843) +(trans s3689 s1824) +(trans s3689 s1837) +(trans s3689 s1850) +(trans s3690 s1831) +(trans s3690 s1844) +(trans s3690 s1857) +(trans s3691 s1838) +(trans s3691 s1851) +(trans s3691 s1864) +(trans s3692 s1845) +(trans s3692 s1858) +(trans s3692 s1871) +(trans s3693 s1852) +(trans s3693 s1865) +(trans s3693 s1878) +(trans s3694 s1859) +(trans s3694 s1872) +(trans s3694 s1885) +(trans s3695 s1866) +(trans s3695 s1879) +(trans s3695 s1892) +(trans s3696 s1873) +(trans s3696 s1886) +(trans s3696 s1899) +(trans s3697 s1880) +(trans s3697 s1893) +(trans s3697 s1906) +(trans s3698 s1887) +(trans s3698 s1900) +(trans s3698 s1913) +(trans s3699 s1894) +(trans s3699 s1907) +(trans s3699 s1920) +(trans s3700 s1901) +(trans s3700 s1914) +(trans s3700 s1927) +(trans s3701 s1908) +(trans s3701 s1921) +(trans s3701 s1934) +(trans s3702 s1915) +(trans s3702 s1928) +(trans s3702 s1941) +(trans s3703 s1922) +(trans s3703 s1935) +(trans s3703 s1948) +(trans s3704 s1929) +(trans s3704 s1942) +(trans s3704 s1955) +(trans s3705 s1936) +(trans s3705 s1949) +(trans s3705 s1962) +(trans s3706 s1943) +(trans s3706 s1956) +(trans s3706 s1969) +(trans s3707 s1950) +(trans s3707 s1963) +(trans s3707 s1976) +(trans s3708 s1957) +(trans s3708 s1970) +(trans s3708 s1983) +(trans s3709 s1964) +(trans s3709 s1977) +(trans s3709 s1990) +(trans s3710 s1971) +(trans s3710 s1984) +(trans s3710 s1997) +(trans s3711 s1978) +(trans s3711 s1991) +(trans s3711 s2004) +(trans s3712 s1985) +(trans s3712 s1998) +(trans s3712 s2011) +(trans s3713 s1992) +(trans s3713 s2005) +(trans s3713 s2018) +(trans s3714 s1999) +(trans s3714 s2012) +(trans s3714 s2025) +(trans s3715 s2006) +(trans s3715 s2019) +(trans s3715 s2032) +(trans s3716 s2013) +(trans s3716 s2026) +(trans s3716 s2039) +(trans s3717 s2020) +(trans s3717 s2033) +(trans s3717 s2046) +(trans s3718 s2027) +(trans s3718 s2040) +(trans s3718 s2053) +(trans s3719 s2034) +(trans s3719 s2047) +(trans s3719 s2060) +(trans s3720 s2041) +(trans s3720 s2054) +(trans s3720 s2067) +(trans s3721 s2048) +(trans s3721 s2061) +(trans s3721 s2074) +(trans s3722 s2055) +(trans s3722 s2068) +(trans s3722 s2081) +(trans s3723 s2062) +(trans s3723 s2075) +(trans s3723 s2088) +(trans s3724 s2069) +(trans s3724 s2082) +(trans s3724 s2095) +(trans s3725 s2076) +(trans s3725 s2089) +(trans s3725 s2102) +(trans s3726 s2083) +(trans s3726 s2096) +(trans s3726 s2109) +(trans s3727 s2090) +(trans s3727 s2103) +(trans s3727 s2116) +(trans s3728 s2097) +(trans s3728 s2110) +(trans s3728 s2123) +(trans s3729 s2104) +(trans s3729 s2117) +(trans s3729 s2130) +(trans s3730 s2111) +(trans s3730 s2124) +(trans s3730 s2137) +(trans s3731 s2118) +(trans s3731 s2131) +(trans s3731 s2144) +(trans s3732 s2125) +(trans s3732 s2138) +(trans s3732 s2151) +(trans s3733 s2132) +(trans s3733 s2145) +(trans s3733 s2158) +(trans s3734 s2139) +(trans s3734 s2152) +(trans s3734 s2165) +(trans s3735 s2146) +(trans s3735 s2159) +(trans s3735 s2172) +(trans s3736 s2153) +(trans s3736 s2166) +(trans s3736 s2179) +(trans s3737 s2160) +(trans s3737 s2173) +(trans s3737 s2186) +(trans s3738 s2167) +(trans s3738 s2180) +(trans s3738 s2193) +(trans s3739 s2174) +(trans s3739 s2187) +(trans s3739 s2200) +(trans s3740 s2181) +(trans s3740 s2194) +(trans s3740 s2207) +(trans s3741 s2188) +(trans s3741 s2201) +(trans s3741 s2214) +(trans s3742 s2195) +(trans s3742 s2208) +(trans s3742 s2221) +(trans s3743 s2202) +(trans s3743 s2215) +(trans s3743 s2228) +(trans s3744 s2209) +(trans s3744 s2222) +(trans s3744 s2235) +(trans s3745 s2216) +(trans s3745 s2229) +(trans s3745 s2242) +(trans s3746 s2223) +(trans s3746 s2236) +(trans s3746 s2249) +(trans s3747 s2230) +(trans s3747 s2243) +(trans s3747 s2256) +(trans s3748 s2237) +(trans s3748 s2250) +(trans s3748 s2263) +(trans s3749 s2244) +(trans s3749 s2257) +(trans s3749 s2270) +(trans s3750 s2251) +(trans s3750 s2264) +(trans s3750 s2277) +(trans s3751 s2258) +(trans s3751 s2271) +(trans s3751 s2284) +(trans s3752 s2265) +(trans s3752 s2278) +(trans s3752 s2291) +(trans s3753 s2272) +(trans s3753 s2285) +(trans s3753 s2298) +(trans s3754 s2279) +(trans s3754 s2292) +(trans s3754 s2305) +(trans s3755 s2286) +(trans s3755 s2299) +(trans s3755 s2312) +(trans s3756 s2293) +(trans s3756 s2306) +(trans s3756 s2319) +(trans s3757 s2300) +(trans s3757 s2313) +(trans s3757 s2326) +(trans s3758 s2307) +(trans s3758 s2320) +(trans s3758 s2333) +(trans s3759 s2314) +(trans s3759 s2327) +(trans s3759 s2340) +(trans s3760 s2321) +(trans s3760 s2334) +(trans s3760 s2347) +(trans s3761 s2328) +(trans s3761 s2341) +(trans s3761 s2354) +(trans s3762 s2335) +(trans s3762 s2348) +(trans s3762 s2361) +(trans s3763 s2342) +(trans s3763 s2355) +(trans s3763 s2368) +(trans s3764 s2349) +(trans s3764 s2362) +(trans s3764 s2375) +(trans s3765 s2356) +(trans s3765 s2369) +(trans s3765 s2382) +(trans s3766 s2363) +(trans s3766 s2376) +(trans s3766 s2389) +(trans s3767 s2370) +(trans s3767 s2383) +(trans s3767 s2396) +(trans s3768 s2377) +(trans s3768 s2390) +(trans s3768 s2403) +(trans s3769 s2384) +(trans s3769 s2397) +(trans s3769 s2410) +(trans s3770 s2391) +(trans s3770 s2404) +(trans s3770 s2417) +(trans s3771 s2398) +(trans s3771 s2411) +(trans s3771 s2424) +(trans s3772 s2405) +(trans s3772 s2418) +(trans s3772 s2431) +(trans s3773 s2412) +(trans s3773 s2425) +(trans s3773 s2438) +(trans s3774 s2419) +(trans s3774 s2432) +(trans s3774 s2445) +(trans s3775 s2426) +(trans s3775 s2439) +(trans s3775 s2452) +(trans s3776 s2433) +(trans s3776 s2446) +(trans s3776 s2459) +(trans s3777 s2440) +(trans s3777 s2453) +(trans s3777 s2466) +(trans s3778 s2447) +(trans s3778 s2460) +(trans s3778 s2473) +(trans s3779 s2454) +(trans s3779 s2467) +(trans s3779 s2480) +(trans s3780 s2461) +(trans s3780 s2474) +(trans s3780 s2487) +(trans s3781 s2468) +(trans s3781 s2481) +(trans s3781 s2494) +(trans s3782 s2475) +(trans s3782 s2488) +(trans s3782 s2501) +(trans s3783 s2482) +(trans s3783 s2495) +(trans s3783 s2508) +(trans s3784 s2489) +(trans s3784 s2502) +(trans s3784 s2515) +(trans s3785 s2496) +(trans s3785 s2509) +(trans s3785 s2522) +(trans s3786 s2503) +(trans s3786 s2516) +(trans s3786 s2529) +(trans s3787 s2510) +(trans s3787 s2523) +(trans s3787 s2536) +(trans s3788 s2517) +(trans s3788 s2530) +(trans s3788 s2543) +(trans s3789 s2524) +(trans s3789 s2537) +(trans s3789 s2550) +(trans s3790 s2531) +(trans s3790 s2544) +(trans s3790 s2557) +(trans s3791 s2538) +(trans s3791 s2551) +(trans s3791 s2564) +(trans s3792 s2545) +(trans s3792 s2558) +(trans s3792 s2571) +(trans s3793 s2552) +(trans s3793 s2565) +(trans s3793 s2578) +(trans s3794 s2559) +(trans s3794 s2572) +(trans s3794 s2585) +(trans s3795 s2566) +(trans s3795 s2579) +(trans s3795 s2592) +(trans s3796 s2573) +(trans s3796 s2586) +(trans s3796 s2599) +(trans s3797 s2580) +(trans s3797 s2593) +(trans s3797 s2606) +(trans s3798 s2587) +(trans s3798 s2600) +(trans s3798 s2613) +(trans s3799 s2594) +(trans s3799 s2607) +(trans s3799 s2620) +(trans s3800 s2601) +(trans s3800 s2614) +(trans s3800 s2627) +(trans s3801 s2608) +(trans s3801 s2621) +(trans s3801 s2634) +(trans s3802 s2615) +(trans s3802 s2628) +(trans s3802 s2641) +(trans s3803 s2622) +(trans s3803 s2635) +(trans s3803 s2648) +(trans s3804 s2629) +(trans s3804 s2642) +(trans s3804 s2655) +(trans s3805 s2636) +(trans s3805 s2649) +(trans s3805 s2662) +(trans s3806 s2643) +(trans s3806 s2656) +(trans s3806 s2669) +(trans s3807 s2650) +(trans s3807 s2663) +(trans s3807 s2676) +(trans s3808 s2657) +(trans s3808 s2670) +(trans s3808 s2683) +(trans s3809 s2664) +(trans s3809 s2677) +(trans s3809 s2690) +(trans s3810 s2671) +(trans s3810 s2684) +(trans s3810 s2697) +(trans s3811 s2678) +(trans s3811 s2691) +(trans s3811 s2704) +(trans s3812 s2685) +(trans s3812 s2698) +(trans s3812 s2711) +(trans s3813 s2692) +(trans s3813 s2705) +(trans s3813 s2718) +(trans s3814 s2699) +(trans s3814 s2712) +(trans s3814 s2725) +(trans s3815 s2706) +(trans s3815 s2719) +(trans s3815 s2732) +(trans s3816 s2713) +(trans s3816 s2726) +(trans s3816 s2739) +(trans s3817 s2720) +(trans s3817 s2733) +(trans s3817 s2746) +(trans s3818 s2727) +(trans s3818 s2740) +(trans s3818 s2753) +(trans s3819 s2734) +(trans s3819 s2747) +(trans s3819 s2760) +(trans s3820 s2741) +(trans s3820 s2754) +(trans s3820 s2767) +(trans s3821 s2748) +(trans s3821 s2761) +(trans s3821 s2774) +(trans s3822 s2755) +(trans s3822 s2768) +(trans s3822 s2781) +(trans s3823 s2762) +(trans s3823 s2775) +(trans s3823 s2788) +(trans s3824 s2769) +(trans s3824 s2782) +(trans s3824 s2795) +(trans s3825 s2776) +(trans s3825 s2789) +(trans s3825 s2802) +(trans s3826 s2783) +(trans s3826 s2796) +(trans s3826 s2809) +(trans s3827 s2790) +(trans s3827 s2803) +(trans s3827 s2816) +(trans s3828 s2797) +(trans s3828 s2810) +(trans s3828 s2823) +(trans s3829 s2804) +(trans s3829 s2817) +(trans s3829 s2830) +(trans s3830 s2811) +(trans s3830 s2824) +(trans s3830 s2837) +(trans s3831 s2818) +(trans s3831 s2831) +(trans s3831 s2844) +(trans s3832 s2825) +(trans s3832 s2838) +(trans s3832 s2851) +(trans s3833 s2832) +(trans s3833 s2845) +(trans s3833 s2858) +(trans s3834 s2839) +(trans s3834 s2852) +(trans s3834 s2865) +(trans s3835 s2846) +(trans s3835 s2859) +(trans s3835 s2872) +(trans s3836 s2853) +(trans s3836 s2866) +(trans s3836 s2879) +(trans s3837 s2860) +(trans s3837 s2873) +(trans s3837 s2886) +(trans s3838 s2867) +(trans s3838 s2880) +(trans s3838 s2893) +(trans s3839 s2874) +(trans s3839 s2887) +(trans s3839 s2900) +(trans s3840 s2881) +(trans s3840 s2894) +(trans s3840 s2907) +(trans s3841 s2888) +(trans s3841 s2901) +(trans s3841 s2914) +(trans s3842 s2895) +(trans s3842 s2908) +(trans s3842 s2921) +(trans s3843 s2902) +(trans s3843 s2915) +(trans s3843 s2928) +(trans s3844 s2909) +(trans s3844 s2922) +(trans s3844 s2935) +(trans s3845 s2916) +(trans s3845 s2929) +(trans s3845 s2942) +(trans s3846 s2923) +(trans s3846 s2936) +(trans s3846 s2949) +(trans s3847 s2930) +(trans s3847 s2943) +(trans s3847 s2956) +(trans s3848 s2937) +(trans s3848 s2950) +(trans s3848 s2963) +(trans s3849 s2944) +(trans s3849 s2957) +(trans s3849 s2970) +(trans s3850 s2951) +(trans s3850 s2964) +(trans s3850 s2977) +(trans s3851 s2958) +(trans s3851 s2971) +(trans s3851 s2984) +(trans s3852 s2965) +(trans s3852 s2978) +(trans s3852 s2991) +(trans s3853 s2972) +(trans s3853 s2985) +(trans s3853 s2998) +(trans s3854 s2979) +(trans s3854 s2992) +(trans s3854 s3005) +(trans s3855 s2986) +(trans s3855 s2999) +(trans s3855 s3012) +(trans s3856 s2993) +(trans s3856 s3006) +(trans s3856 s3019) +(trans s3857 s3000) +(trans s3857 s3013) +(trans s3857 s3026) +(trans s3858 s3007) +(trans s3858 s3020) +(trans s3858 s3033) +(trans s3859 s3014) +(trans s3859 s3027) +(trans s3859 s3040) +(trans s3860 s3021) +(trans s3860 s3034) +(trans s3860 s3047) +(trans s3861 s3028) +(trans s3861 s3041) +(trans s3861 s3054) +(trans s3862 s3035) +(trans s3862 s3048) +(trans s3862 s3061) +(trans s3863 s3042) +(trans s3863 s3055) +(trans s3863 s3068) +(trans s3864 s3049) +(trans s3864 s3062) +(trans s3864 s3075) +(trans s3865 s3056) +(trans s3865 s3069) +(trans s3865 s3082) +(trans s3866 s3063) +(trans s3866 s3076) +(trans s3866 s3089) +(trans s3867 s3070) +(trans s3867 s3083) +(trans s3867 s3096) +(trans s3868 s3077) +(trans s3868 s3090) +(trans s3868 s3103) +(trans s3869 s3084) +(trans s3869 s3097) +(trans s3869 s3110) +(trans s3870 s3091) +(trans s3870 s3104) +(trans s3870 s3117) +(trans s3871 s3098) +(trans s3871 s3111) +(trans s3871 s3124) +(trans s3872 s3105) +(trans s3872 s3118) +(trans s3872 s3131) +(trans s3873 s3112) +(trans s3873 s3125) +(trans s3873 s3138) +(trans s3874 s3119) +(trans s3874 s3132) +(trans s3874 s3145) +(trans s3875 s3126) +(trans s3875 s3139) +(trans s3875 s3152) +(trans s3876 s3133) +(trans s3876 s3146) +(trans s3876 s3159) +(trans s3877 s3140) +(trans s3877 s3153) +(trans s3877 s3166) +(trans s3878 s3147) +(trans s3878 s3160) +(trans s3878 s3173) +(trans s3879 s3154) +(trans s3879 s3167) +(trans s3879 s3180) +(trans s3880 s3161) +(trans s3880 s3174) +(trans s3880 s3187) +(trans s3881 s3168) +(trans s3881 s3181) +(trans s3881 s3194) +(trans s3882 s3175) +(trans s3882 s3188) +(trans s3882 s3201) +(trans s3883 s3182) +(trans s3883 s3195) +(trans s3883 s3208) +(trans s3884 s3189) +(trans s3884 s3202) +(trans s3884 s3215) +(trans s3885 s3196) +(trans s3885 s3209) +(trans s3885 s3222) +(trans s3886 s3203) +(trans s3886 s3216) +(trans s3886 s3229) +(trans s3887 s3210) +(trans s3887 s3223) +(trans s3887 s3236) +(trans s3888 s3217) +(trans s3888 s3230) +(trans s3888 s3243) +(trans s3889 s3224) +(trans s3889 s3237) +(trans s3889 s3250) +(trans s3890 s3231) +(trans s3890 s3244) +(trans s3890 s3257) +(trans s3891 s3238) +(trans s3891 s3251) +(trans s3891 s3264) +(trans s3892 s3245) +(trans s3892 s3258) +(trans s3892 s3271) +(trans s3893 s3252) +(trans s3893 s3265) +(trans s3893 s3278) +(trans s3894 s3259) +(trans s3894 s3272) +(trans s3894 s3285) +(trans s3895 s3266) +(trans s3895 s3279) +(trans s3895 s3292) +(trans s3896 s3273) +(trans s3896 s3286) +(trans s3896 s3299) +(trans s3897 s3280) +(trans s3897 s3293) +(trans s3897 s3306) +(trans s3898 s3287) +(trans s3898 s3300) +(trans s3898 s3313) +(trans s3899 s3294) +(trans s3899 s3307) +(trans s3899 s3320) +(trans s3900 s3301) +(trans s3900 s3314) +(trans s3900 s3327) +(trans s3901 s3308) +(trans s3901 s3321) +(trans s3901 s3334) +(trans s3902 s3315) +(trans s3902 s3328) +(trans s3902 s3341) +(trans s3903 s3322) +(trans s3903 s3335) +(trans s3903 s3348) +(trans s3904 s3329) +(trans s3904 s3342) +(trans s3904 s3355) +(trans s3905 s3336) +(trans s3905 s3349) +(trans s3905 s3362) +(trans s3906 s3343) +(trans s3906 s3356) +(trans s3906 s3369) +(trans s3907 s3350) +(trans s3907 s3363) +(trans s3907 s3376) +(trans s3908 s3357) +(trans s3908 s3370) +(trans s3908 s3383) +(trans s3909 s3364) +(trans s3909 s3377) +(trans s3909 s3390) +(trans s3910 s3371) +(trans s3910 s3384) +(trans s3910 s3397) +(trans s3911 s3378) +(trans s3911 s3391) +(trans s3911 s3404) +(trans s3912 s3385) +(trans s3912 s3398) +(trans s3912 s3411) +(trans s3913 s3392) +(trans s3913 s3405) +(trans s3913 s3418) +(trans s3914 s3399) +(trans s3914 s3412) +(trans s3914 s3425) +(trans s3915 s3406) +(trans s3915 s3419) +(trans s3915 s3432) +(trans s3916 s3413) +(trans s3916 s3426) +(trans s3916 s3439) +(trans s3917 s3420) +(trans s3917 s3433) +(trans s3917 s3446) +(trans s3918 s3427) +(trans s3918 s3440) +(trans s3918 s3453) +(trans s3919 s3434) +(trans s3919 s3447) +(trans s3919 s3460) +(trans s3920 s3441) +(trans s3920 s3454) +(trans s3920 s3467) +(trans s3921 s3448) +(trans s3921 s3461) +(trans s3921 s3474) +(trans s3922 s3455) +(trans s3922 s3468) +(trans s3922 s3481) +(trans s3923 s3462) +(trans s3923 s3475) +(trans s3923 s3488) +(trans s3924 s3469) +(trans s3924 s3482) +(trans s3924 s3495) +(trans s3925 s3476) +(trans s3925 s3489) +(trans s3925 s3502) +(trans s3926 s3483) +(trans s3926 s3496) +(trans s3926 s3509) +(trans s3927 s3490) +(trans s3927 s3503) +(trans s3927 s3516) +(trans s3928 s3497) +(trans s3928 s3510) +(trans s3928 s3523) +(trans s3929 s3504) +(trans s3929 s3517) +(trans s3929 s3530) +(trans s3930 s3511) +(trans s3930 s3524) +(trans s3930 s3537) +(trans s3931 s3518) +(trans s3931 s3531) +(trans s3931 s3544) +(trans s3932 s3525) +(trans s3932 s3538) +(trans s3932 s3551) +(trans s3933 s3532) +(trans s3933 s3545) +(trans s3933 s3558) +(trans s3934 s3539) +(trans s3934 s3552) +(trans s3934 s3565) +(trans s3935 s3546) +(trans s3935 s3559) +(trans s3935 s3572) +(trans s3936 s3553) +(trans s3936 s3566) +(trans s3936 s3579) +(trans s3937 s3560) +(trans s3937 s3573) +(trans s3937 s3586) +(trans s3938 s3567) +(trans s3938 s3580) +(trans s3938 s3593) +(trans s3939 s3574) +(trans s3939 s3587) +(trans s3939 s3600) +(trans s3940 s3581) +(trans s3940 s3594) +(trans s3940 s3607) +(trans s3941 s3588) +(trans s3941 s3601) +(trans s3941 s3614) +(trans s3942 s3595) +(trans s3942 s3608) +(trans s3942 s3621) +(trans s3943 s3602) +(trans s3943 s3615) +(trans s3943 s3628) +(trans s3944 s3609) +(trans s3944 s3622) +(trans s3944 s3635) +(trans s3945 s3616) +(trans s3945 s3629) +(trans s3945 s3642) +(trans s3946 s3623) +(trans s3946 s3636) +(trans s3946 s3649) +(trans s3947 s3630) +(trans s3947 s3643) +(trans s3947 s3656) +(trans s3948 s3637) +(trans s3948 s3650) +(trans s3948 s3663) +(trans s3949 s3644) +(trans s3949 s3657) +(trans s3949 s3670) +(trans s3950 s3651) +(trans s3950 s3664) +(trans s3950 s3677) +(trans s3951 s3658) +(trans s3951 s3671) +(trans s3951 s3684) +(trans s3952 s3665) +(trans s3952 s3678) +(trans s3952 s3691) +(trans s3953 s3672) +(trans s3953 s3685) +(trans s3953 s3698) +(trans s3954 s3679) +(trans s3954 s3692) +(trans s3954 s3705) +(trans s3955 s3686) +(trans s3955 s3699) +(trans s3955 s3712) +(trans s3956 s3693) +(trans s3956 s3706) +(trans s3956 s3719) +(trans s3957 s3700) +(trans s3957 s3713) +(trans s3957 s3726) +(trans s3958 s3707) +(trans s3958 s3720) +(trans s3958 s3733) +(trans s3959 s3714) +(trans s3959 s3727) +(trans s3959 s3740) +(trans s3960 s3721) +(trans s3960 s3734) +(trans s3960 s3747) +(trans s3961 s3728) +(trans s3961 s3741) +(trans s3961 s3754) +(trans s3962 s3735) +(trans s3962 s3748) +(trans s3962 s3761) +(trans s3963 s3742) +(trans s3963 s3755) +(trans s3963 s3768) +(trans s3964 s3749) +(trans s3964 s3762) +(trans s3964 s3775) +(trans s3965 s3756) +(trans s3965 s3769) +(trans s3965 s3782) +(trans s3966 s3763) +(trans s3966 s3776) +(trans s3966 s3789) +(trans s3967 s3770) +(trans s3967 s3783) +(trans s3967 s3796) +(trans s3968 s3777) +(trans s3968 s3790) +(trans s3968 s3803) +(trans s3969 s3784) +(trans s3969 s3797) +(trans s3969 s3810) +(trans s3970 s3791) +(trans s3970 s3804) +(trans s3970 s3817) +(trans s3971 s3798) +(trans s3971 s3811) +(trans s3971 s3824) +(trans s3972 s3805) +(trans s3972 s3818) +(trans s3972 s3831) +(trans s3973 s3812) +(trans s3973 s3825) +(trans s3973 s3838) +(trans s3974 s3819) +(trans s3974 s3832) +(trans s3974 s3845) +(trans s3975 s3826) +(trans s3975 s3839) +(trans s3975 s3852) +(trans s3976 s3833) +(trans s3976 s3846) +(trans s3976 s3859) +(trans s3977 s3840) +(trans s3977 s3853) +(trans s3977 s3866) +(trans s3978 s3847) +(trans s3978 s3860) +(trans s3978 s3873) +(trans s3979 s3854) +(trans s3979 s3867) +(trans s3979 s3880) +(trans s3980 s3861) +(trans s3980 s3874) +(trans s3980 s3887) +(trans s3981 s3868) +(trans s3981 s3881) +(trans s3981 s3894) +(trans s3982 s3875) +(trans s3982 s3888) +(trans s3982 s3901) +(trans s3983 s3882) +(trans s3983 s3895) +(trans s3983 s3908) +(trans s3984 s3889) +(trans s3984 s3902) +(trans s3984 s3915) +(trans s3985 s3896) +(trans s3985 s3909) +(trans s3985 s3922) +(trans s3986 s3903) +(trans s3986 s3916) +(trans s3986 s3929) +(trans s3987 s3910) +(trans s3987 s3923) +(trans s3987 s3936) +(trans s3988 s3917) +(trans s3988 s3930) +(trans s3988 s3943) +(trans s3989 s3924) +(trans s3989 s3937) +(trans s3989 s3950) +(trans s3990 s3931) +(trans s3990 s3944) +(trans s3990 s3957) +(trans s3991 s3938) +(trans s3991 s3951) +(trans s3991 s3964) +(trans s3992 s3945) +(trans s3992 s3958) +(trans s3992 s3971) +(trans s3993 s3952) +(trans s3993 s3965) +(trans s3993 s3978) +(trans s3994 s3959) +(trans s3994 s3972) +(trans s3994 s3985) +(trans s3995 s3966) +(trans s3995 s3979) +(trans s3995 s3992) +(trans s3996 s3973) +(trans s3996 s3986) +(trans s3996 s3999) +(trans s3997 s3980) +(trans s3997 s3993) +(trans s3997 s4006) +(trans s3998 s3987) +(trans s3998 s4000) +(trans s3998 s4013) +(trans s3999 s3994) +(trans s3999 s4007) +(trans s3999 s4020) +(trans s4000 s4001) +(trans s4000 s4014) +(trans s4000 s4027) +(trans s4001 s4008) +(trans s4001 s4021) +(trans s4001 s4034) +(trans s4002 s4015) +(trans s4002 s4028) +(trans s4002 s4041) +(trans s4003 s4022) +(trans s4003 s4035) +(trans s4003 s4048) +(trans s4004 s4029) +(trans s4004 s4042) +(trans s4004 s4055) +(trans s4005 s4036) +(trans s4005 s4049) +(trans s4005 s4062) +(trans s4006 s4043) +(trans s4006 s4056) +(trans s4006 s4069) +(trans s4007 s4050) +(trans s4007 s4063) +(trans s4007 s4076) +(trans s4008 s4057) +(trans s4008 s4070) +(trans s4008 s4083) +(trans s4009 s4064) +(trans s4009 s4077) +(trans s4009 s4090) +(trans s4010 s4071) +(trans s4010 s4084) +(trans s4010 s4097) +(trans s4011 s4078) +(trans s4011 s4091) +(trans s4011 s4104) +(trans s4012 s4085) +(trans s4012 s4098) +(trans s4012 s4111) +(trans s4013 s4092) +(trans s4013 s4105) +(trans s4013 s4118) +(trans s4014 s4099) +(trans s4014 s4112) +(trans s4014 s4125) +(trans s4015 s4106) +(trans s4015 s4119) +(trans s4015 s4132) +(trans s4016 s4113) +(trans s4016 s4126) +(trans s4016 s4139) +(trans s4017 s4120) +(trans s4017 s4133) +(trans s4017 s4146) +(trans s4018 s4127) +(trans s4018 s4140) +(trans s4018 s4153) +(trans s4019 s4134) +(trans s4019 s4147) +(trans s4019 s4160) +(trans s4020 s4141) +(trans s4020 s4154) +(trans s4020 s4167) +(trans s4021 s4148) +(trans s4021 s4161) +(trans s4021 s4174) +(trans s4022 s4155) +(trans s4022 s4168) +(trans s4022 s4181) +(trans s4023 s4162) +(trans s4023 s4175) +(trans s4023 s4188) +(trans s4024 s4169) +(trans s4024 s4182) +(trans s4024 s4195) +(trans s4025 s4176) +(trans s4025 s4189) +(trans s4025 s4202) +(trans s4026 s4183) +(trans s4026 s4196) +(trans s4026 s4209) +(trans s4027 s4190) +(trans s4027 s4203) +(trans s4027 s4216) +(trans s4028 s4197) +(trans s4028 s4210) +(trans s4028 s4223) +(trans s4029 s4204) +(trans s4029 s4217) +(trans s4029 s4230) +(trans s4030 s4211) +(trans s4030 s4224) +(trans s4030 s4237) +(trans s4031 s4218) +(trans s4031 s4231) +(trans s4031 s4244) +(trans s4032 s4225) +(trans s4032 s4238) +(trans s4032 s4251) +(trans s4033 s4232) +(trans s4033 s4245) +(trans s4033 s4258) +(trans s4034 s4239) +(trans s4034 s4252) +(trans s4034 s4265) +(trans s4035 s4246) +(trans s4035 s4259) +(trans s4035 s4272) +(trans s4036 s4253) +(trans s4036 s4266) +(trans s4036 s4279) +(trans s4037 s4260) +(trans s4037 s4273) +(trans s4037 s4286) +(trans s4038 s4267) +(trans s4038 s4280) +(trans s4038 s4293) +(trans s4039 s4274) +(trans s4039 s4287) +(trans s4039 s4300) +(trans s4040 s4281) +(trans s4040 s4294) +(trans s4040 s4307) +(trans s4041 s4288) +(trans s4041 s4301) +(trans s4041 s4314) +(trans s4042 s4295) +(trans s4042 s4308) +(trans s4042 s4321) +(trans s4043 s4302) +(trans s4043 s4315) +(trans s4043 s4328) +(trans s4044 s4309) +(trans s4044 s4322) +(trans s4044 s4335) +(trans s4045 s4316) +(trans s4045 s4329) +(trans s4045 s4342) +(trans s4046 s4323) +(trans s4046 s4336) +(trans s4046 s4349) +(trans s4047 s4330) +(trans s4047 s4343) +(trans s4047 s4356) +(trans s4048 s4337) +(trans s4048 s4350) +(trans s4048 s4363) +(trans s4049 s4344) +(trans s4049 s4357) +(trans s4049 s4370) +(trans s4050 s4351) +(trans s4050 s4364) +(trans s4050 s4377) +(trans s4051 s4358) +(trans s4051 s4371) +(trans s4051 s4384) +(trans s4052 s4365) +(trans s4052 s4378) +(trans s4052 s4391) +(trans s4053 s4372) +(trans s4053 s4385) +(trans s4053 s4398) +(trans s4054 s4379) +(trans s4054 s4392) +(trans s4054 s4405) +(trans s4055 s4386) +(trans s4055 s4399) +(trans s4055 s4412) +(trans s4056 s4393) +(trans s4056 s4406) +(trans s4056 s4419) +(trans s4057 s4400) +(trans s4057 s4413) +(trans s4057 s4426) +(trans s4058 s4407) +(trans s4058 s4420) +(trans s4058 s4433) +(trans s4059 s4414) +(trans s4059 s4427) +(trans s4059 s4440) +(trans s4060 s4421) +(trans s4060 s4434) +(trans s4060 s4447) +(trans s4061 s4428) +(trans s4061 s4441) +(trans s4061 s4454) +(trans s4062 s4435) +(trans s4062 s4448) +(trans s4062 s4461) +(trans s4063 s4442) +(trans s4063 s4455) +(trans s4063 s4468) +(trans s4064 s4449) +(trans s4064 s4462) +(trans s4064 s4475) +(trans s4065 s4456) +(trans s4065 s4469) +(trans s4065 s4482) +(trans s4066 s4463) +(trans s4066 s4476) +(trans s4066 s4489) +(trans s4067 s4470) +(trans s4067 s4483) +(trans s4067 s4496) +(trans s4068 s4477) +(trans s4068 s4490) +(trans s4068 s4503) +(trans s4069 s4484) +(trans s4069 s4497) +(trans s4069 s4510) +(trans s4070 s4491) +(trans s4070 s4504) +(trans s4070 s4517) +(trans s4071 s4498) +(trans s4071 s4511) +(trans s4071 s4524) +(trans s4072 s4505) +(trans s4072 s4518) +(trans s4072 s4531) +(trans s4073 s4512) +(trans s4073 s4525) +(trans s4073 s4538) +(trans s4074 s4519) +(trans s4074 s4532) +(trans s4074 s4545) +(trans s4075 s4526) +(trans s4075 s4539) +(trans s4075 s4552) +(trans s4076 s4533) +(trans s4076 s4546) +(trans s4076 s4559) +(trans s4077 s4540) +(trans s4077 s4553) +(trans s4077 s4566) +(trans s4078 s4547) +(trans s4078 s4560) +(trans s4078 s4573) +(trans s4079 s4554) +(trans s4079 s4567) +(trans s4079 s4580) +(trans s4080 s4561) +(trans s4080 s4574) +(trans s4080 s4587) +(trans s4081 s4568) +(trans s4081 s4581) +(trans s4081 s4594) +(trans s4082 s4575) +(trans s4082 s4588) +(trans s4082 s4601) +(trans s4083 s4582) +(trans s4083 s4595) +(trans s4083 s4608) +(trans s4084 s4589) +(trans s4084 s4602) +(trans s4084 s4615) +(trans s4085 s4596) +(trans s4085 s4609) +(trans s4085 s4622) +(trans s4086 s4603) +(trans s4086 s4616) +(trans s4086 s4629) +(trans s4087 s4610) +(trans s4087 s4623) +(trans s4087 s4636) +(trans s4088 s4617) +(trans s4088 s4630) +(trans s4088 s4643) +(trans s4089 s4624) +(trans s4089 s4637) +(trans s4089 s4650) +(trans s4090 s4631) +(trans s4090 s4644) +(trans s4090 s4657) +(trans s4091 s4638) +(trans s4091 s4651) +(trans s4091 s4664) +(trans s4092 s4645) +(trans s4092 s4658) +(trans s4092 s4671) +(trans s4093 s4652) +(trans s4093 s4665) +(trans s4093 s4678) +(trans s4094 s4659) +(trans s4094 s4672) +(trans s4094 s4685) +(trans s4095 s4666) +(trans s4095 s4679) +(trans s4095 s4692) +(trans s4096 s4673) +(trans s4096 s4686) +(trans s4096 s4699) +(trans s4097 s4680) +(trans s4097 s4693) +(trans s4097 s4706) +(trans s4098 s4687) +(trans s4098 s4700) +(trans s4098 s4713) +(trans s4099 s4694) +(trans s4099 s4707) +(trans s4099 s4720) +(trans s4100 s4701) +(trans s4100 s4714) +(trans s4100 s4727) +(trans s4101 s4708) +(trans s4101 s4721) +(trans s4101 s4734) +(trans s4102 s4715) +(trans s4102 s4728) +(trans s4102 s4741) +(trans s4103 s4722) +(trans s4103 s4735) +(trans s4103 s4748) +(trans s4104 s4729) +(trans s4104 s4742) +(trans s4104 s4755) +(trans s4105 s4736) +(trans s4105 s4749) +(trans s4105 s4762) +(trans s4106 s4743) +(trans s4106 s4756) +(trans s4106 s4769) +(trans s4107 s4750) +(trans s4107 s4763) +(trans s4107 s4776) +(trans s4108 s4757) +(trans s4108 s4770) +(trans s4108 s4783) +(trans s4109 s4764) +(trans s4109 s4777) +(trans s4109 s4790) +(trans s4110 s4771) +(trans s4110 s4784) +(trans s4110 s4797) +(trans s4111 s4778) +(trans s4111 s4791) +(trans s4111 s4804) +(trans s4112 s4785) +(trans s4112 s4798) +(trans s4112 s4811) +(trans s4113 s4792) +(trans s4113 s4805) +(trans s4113 s4818) +(trans s4114 s4799) +(trans s4114 s4812) +(trans s4114 s4825) +(trans s4115 s4806) +(trans s4115 s4819) +(trans s4115 s4832) +(trans s4116 s4813) +(trans s4116 s4826) +(trans s4116 s4839) +(trans s4117 s4820) +(trans s4117 s4833) +(trans s4117 s4846) +(trans s4118 s4827) +(trans s4118 s4840) +(trans s4118 s4853) +(trans s4119 s4834) +(trans s4119 s4847) +(trans s4119 s4860) +(trans s4120 s4841) +(trans s4120 s4854) +(trans s4120 s4867) +(trans s4121 s4848) +(trans s4121 s4861) +(trans s4121 s4874) +(trans s4122 s4855) +(trans s4122 s4868) +(trans s4122 s4881) +(trans s4123 s4862) +(trans s4123 s4875) +(trans s4123 s4888) +(trans s4124 s4869) +(trans s4124 s4882) +(trans s4124 s4895) +(trans s4125 s4876) +(trans s4125 s4889) +(trans s4125 s4902) +(trans s4126 s4883) +(trans s4126 s4896) +(trans s4126 s4909) +(trans s4127 s4890) +(trans s4127 s4903) +(trans s4127 s4916) +(trans s4128 s4897) +(trans s4128 s4910) +(trans s4128 s4923) +(trans s4129 s4904) +(trans s4129 s4917) +(trans s4129 s4930) +(trans s4130 s4911) +(trans s4130 s4924) +(trans s4130 s4937) +(trans s4131 s4918) +(trans s4131 s4931) +(trans s4131 s4944) +(trans s4132 s4925) +(trans s4132 s4938) +(trans s4132 s4951) +(trans s4133 s4932) +(trans s4133 s4945) +(trans s4133 s4958) +(trans s4134 s4939) +(trans s4134 s4952) +(trans s4134 s4965) +(trans s4135 s4946) +(trans s4135 s4959) +(trans s4135 s4972) +(trans s4136 s4953) +(trans s4136 s4966) +(trans s4136 s4979) +(trans s4137 s4960) +(trans s4137 s4973) +(trans s4137 s4986) +(trans s4138 s4967) +(trans s4138 s4980) +(trans s4138 s4993) +(trans s4139 s4974) +(trans s4139 s4987) +(trans s4139 s5000) +(trans s4140 s4981) +(trans s4140 s4994) +(trans s4140 s5007) +(trans s4141 s4988) +(trans s4141 s5001) +(trans s4141 s5014) +(trans s4142 s4995) +(trans s4142 s5008) +(trans s4142 s5021) +(trans s4143 s5002) +(trans s4143 s5015) +(trans s4143 s5028) +(trans s4144 s5009) +(trans s4144 s5022) +(trans s4144 s5035) +(trans s4145 s5016) +(trans s4145 s5029) +(trans s4145 s5042) +(trans s4146 s5023) +(trans s4146 s5036) +(trans s4146 s5049) +(trans s4147 s5030) +(trans s4147 s5043) +(trans s4147 s5056) +(trans s4148 s5037) +(trans s4148 s5050) +(trans s4148 s5063) +(trans s4149 s5044) +(trans s4149 s5057) +(trans s4149 s5070) +(trans s4150 s5051) +(trans s4150 s5064) +(trans s4150 s5077) +(trans s4151 s5058) +(trans s4151 s5071) +(trans s4151 s5084) +(trans s4152 s5065) +(trans s4152 s5078) +(trans s4152 s5091) +(trans s4153 s5072) +(trans s4153 s5085) +(trans s4153 s5098) +(trans s4154 s5079) +(trans s4154 s5092) +(trans s4154 s5105) +(trans s4155 s5086) +(trans s4155 s5099) +(trans s4155 s5112) +(trans s4156 s5093) +(trans s4156 s5106) +(trans s4156 s5119) +(trans s4157 s5100) +(trans s4157 s5113) +(trans s4157 s5126) +(trans s4158 s5107) +(trans s4158 s5120) +(trans s4158 s5133) +(trans s4159 s5114) +(trans s4159 s5127) +(trans s4159 s5140) +(trans s4160 s5121) +(trans s4160 s5134) +(trans s4160 s5147) +(trans s4161 s5128) +(trans s4161 s5141) +(trans s4161 s5154) +(trans s4162 s5135) +(trans s4162 s5148) +(trans s4162 s5161) +(trans s4163 s5142) +(trans s4163 s5155) +(trans s4163 s5168) +(trans s4164 s5149) +(trans s4164 s5162) +(trans s4164 s5175) +(trans s4165 s5156) +(trans s4165 s5169) +(trans s4165 s5182) +(trans s4166 s5163) +(trans s4166 s5176) +(trans s4166 s5189) +(trans s4167 s5170) +(trans s4167 s5183) +(trans s4167 s5196) +(trans s4168 s5177) +(trans s4168 s5190) +(trans s4168 s5203) +(trans s4169 s5184) +(trans s4169 s5197) +(trans s4169 s5210) +(trans s4170 s5191) +(trans s4170 s5204) +(trans s4170 s5217) +(trans s4171 s5198) +(trans s4171 s5211) +(trans s4171 s5224) +(trans s4172 s5205) +(trans s4172 s5218) +(trans s4172 s5231) +(trans s4173 s5212) +(trans s4173 s5225) +(trans s4173 s5238) +(trans s4174 s5219) +(trans s4174 s5232) +(trans s4174 s5245) +(trans s4175 s5226) +(trans s4175 s5239) +(trans s4175 s5252) +(trans s4176 s5233) +(trans s4176 s5246) +(trans s4176 s5259) +(trans s4177 s5240) +(trans s4177 s5253) +(trans s4177 s5266) +(trans s4178 s5247) +(trans s4178 s5260) +(trans s4178 s5273) +(trans s4179 s5254) +(trans s4179 s5267) +(trans s4179 s5280) +(trans s4180 s5261) +(trans s4180 s5274) +(trans s4180 s5287) +(trans s4181 s5268) +(trans s4181 s5281) +(trans s4181 s5294) +(trans s4182 s5275) +(trans s4182 s5288) +(trans s4182 s5301) +(trans s4183 s5282) +(trans s4183 s5295) +(trans s4183 s5308) +(trans s4184 s5289) +(trans s4184 s5302) +(trans s4184 s5315) +(trans s4185 s5296) +(trans s4185 s5309) +(trans s4185 s5322) +(trans s4186 s5303) +(trans s4186 s5316) +(trans s4186 s5329) +(trans s4187 s5310) +(trans s4187 s5323) +(trans s4187 s5336) +(trans s4188 s5317) +(trans s4188 s5330) +(trans s4188 s5343) +(trans s4189 s5324) +(trans s4189 s5337) +(trans s4189 s5350) +(trans s4190 s5331) +(trans s4190 s5344) +(trans s4190 s5357) +(trans s4191 s5338) +(trans s4191 s5351) +(trans s4191 s5364) +(trans s4192 s5345) +(trans s4192 s5358) +(trans s4192 s5371) +(trans s4193 s5352) +(trans s4193 s5365) +(trans s4193 s5378) +(trans s4194 s5359) +(trans s4194 s5372) +(trans s4194 s5385) +(trans s4195 s5366) +(trans s4195 s5379) +(trans s4195 s5392) +(trans s4196 s5373) +(trans s4196 s5386) +(trans s4196 s5399) +(trans s4197 s5380) +(trans s4197 s5393) +(trans s4197 s5406) +(trans s4198 s5387) +(trans s4198 s5400) +(trans s4198 s5413) +(trans s4199 s5394) +(trans s4199 s5407) +(trans s4199 s5420) +(trans s4200 s5401) +(trans s4200 s5414) +(trans s4200 s5427) +(trans s4201 s5408) +(trans s4201 s5421) +(trans s4201 s5434) +(trans s4202 s5415) +(trans s4202 s5428) +(trans s4202 s5441) +(trans s4203 s5422) +(trans s4203 s5435) +(trans s4203 s5448) +(trans s4204 s5429) +(trans s4204 s5442) +(trans s4204 s5455) +(trans s4205 s5436) +(trans s4205 s5449) +(trans s4205 s5462) +(trans s4206 s5443) +(trans s4206 s5456) +(trans s4206 s5469) +(trans s4207 s5450) +(trans s4207 s5463) +(trans s4207 s5476) +(trans s4208 s5457) +(trans s4208 s5470) +(trans s4208 s5483) +(trans s4209 s5464) +(trans s4209 s5477) +(trans s4209 s5490) +(trans s4210 s5471) +(trans s4210 s5484) +(trans s4210 s5497) +(trans s4211 s5478) +(trans s4211 s5491) +(trans s4211 s5504) +(trans s4212 s5485) +(trans s4212 s5498) +(trans s4212 s5511) +(trans s4213 s5492) +(trans s4213 s5505) +(trans s4213 s5518) +(trans s4214 s5499) +(trans s4214 s5512) +(trans s4214 s5525) +(trans s4215 s5506) +(trans s4215 s5519) +(trans s4215 s5532) +(trans s4216 s5513) +(trans s4216 s5526) +(trans s4216 s5539) +(trans s4217 s5520) +(trans s4217 s5533) +(trans s4217 s5546) +(trans s4218 s5527) +(trans s4218 s5540) +(trans s4218 s5553) +(trans s4219 s5534) +(trans s4219 s5547) +(trans s4219 s5560) +(trans s4220 s5541) +(trans s4220 s5554) +(trans s4220 s5567) +(trans s4221 s5548) +(trans s4221 s5561) +(trans s4221 s5574) +(trans s4222 s5555) +(trans s4222 s5568) +(trans s4222 s5581) +(trans s4223 s5562) +(trans s4223 s5575) +(trans s4223 s5588) +(trans s4224 s5569) +(trans s4224 s5582) +(trans s4224 s5595) +(trans s4225 s5576) +(trans s4225 s5589) +(trans s4225 s5602) +(trans s4226 s5583) +(trans s4226 s5596) +(trans s4226 s5609) +(trans s4227 s5590) +(trans s4227 s5603) +(trans s4227 s5616) +(trans s4228 s5597) +(trans s4228 s5610) +(trans s4228 s5623) +(trans s4229 s5604) +(trans s4229 s5617) +(trans s4229 s5630) +(trans s4230 s5611) +(trans s4230 s5624) +(trans s4230 s5637) +(trans s4231 s5618) +(trans s4231 s5631) +(trans s4231 s5644) +(trans s4232 s5625) +(trans s4232 s5638) +(trans s4232 s5651) +(trans s4233 s5632) +(trans s4233 s5645) +(trans s4233 s5658) +(trans s4234 s5639) +(trans s4234 s5652) +(trans s4234 s5665) +(trans s4235 s5646) +(trans s4235 s5659) +(trans s4235 s5672) +(trans s4236 s5653) +(trans s4236 s5666) +(trans s4236 s5679) +(trans s4237 s5660) +(trans s4237 s5673) +(trans s4237 s5686) +(trans s4238 s5667) +(trans s4238 s5680) +(trans s4238 s5693) +(trans s4239 s5674) +(trans s4239 s5687) +(trans s4239 s5700) +(trans s4240 s5681) +(trans s4240 s5694) +(trans s4240 s5707) +(trans s4241 s5688) +(trans s4241 s5701) +(trans s4241 s5714) +(trans s4242 s5695) +(trans s4242 s5708) +(trans s4242 s5721) +(trans s4243 s5702) +(trans s4243 s5715) +(trans s4243 s5728) +(trans s4244 s5709) +(trans s4244 s5722) +(trans s4244 s5735) +(trans s4245 s5716) +(trans s4245 s5729) +(trans s4245 s5742) +(trans s4246 s5723) +(trans s4246 s5736) +(trans s4246 s5749) +(trans s4247 s5730) +(trans s4247 s5743) +(trans s4247 s5756) +(trans s4248 s5737) +(trans s4248 s5750) +(trans s4248 s5763) +(trans s4249 s5744) +(trans s4249 s5757) +(trans s4249 s5770) +(trans s4250 s5751) +(trans s4250 s5764) +(trans s4250 s5777) +(trans s4251 s5758) +(trans s4251 s5771) +(trans s4251 s5784) +(trans s4252 s5765) +(trans s4252 s5778) +(trans s4252 s5791) +(trans s4253 s5772) +(trans s4253 s5785) +(trans s4253 s5798) +(trans s4254 s5779) +(trans s4254 s5792) +(trans s4254 s5805) +(trans s4255 s5786) +(trans s4255 s5799) +(trans s4255 s5812) +(trans s4256 s5793) +(trans s4256 s5806) +(trans s4256 s5819) +(trans s4257 s5800) +(trans s4257 s5813) +(trans s4257 s5826) +(trans s4258 s5807) +(trans s4258 s5820) +(trans s4258 s5833) +(trans s4259 s5814) +(trans s4259 s5827) +(trans s4259 s5840) +(trans s4260 s5821) +(trans s4260 s5834) +(trans s4260 s5847) +(trans s4261 s5828) +(trans s4261 s5841) +(trans s4261 s5854) +(trans s4262 s5835) +(trans s4262 s5848) +(trans s4262 s5861) +(trans s4263 s5842) +(trans s4263 s5855) +(trans s4263 s5868) +(trans s4264 s5849) +(trans s4264 s5862) +(trans s4264 s5875) +(trans s4265 s5856) +(trans s4265 s5869) +(trans s4265 s5882) +(trans s4266 s5863) +(trans s4266 s5876) +(trans s4266 s5889) +(trans s4267 s5870) +(trans s4267 s5883) +(trans s4267 s5896) +(trans s4268 s5877) +(trans s4268 s5890) +(trans s4268 s5903) +(trans s4269 s5884) +(trans s4269 s5897) +(trans s4269 s5910) +(trans s4270 s5891) +(trans s4270 s5904) +(trans s4270 s5917) +(trans s4271 s5898) +(trans s4271 s5911) +(trans s4271 s5924) +(trans s4272 s5905) +(trans s4272 s5918) +(trans s4272 s5931) +(trans s4273 s5912) +(trans s4273 s5925) +(trans s4273 s5938) +(trans s4274 s5919) +(trans s4274 s5932) +(trans s4274 s5945) +(trans s4275 s5926) +(trans s4275 s5939) +(trans s4275 s5952) +(trans s4276 s5933) +(trans s4276 s5946) +(trans s4276 s5959) +(trans s4277 s5940) +(trans s4277 s5953) +(trans s4277 s5966) +(trans s4278 s5947) +(trans s4278 s5960) +(trans s4278 s5973) +(trans s4279 s5954) +(trans s4279 s5967) +(trans s4279 s5980) +(trans s4280 s5961) +(trans s4280 s5974) +(trans s4280 s5987) +(trans s4281 s5968) +(trans s4281 s5981) +(trans s4281 s5994) +(trans s4282 s5975) +(trans s4282 s5988) +(trans s4282 s1) +(trans s4283 s5982) +(trans s4283 s5995) +(trans s4283 s8) +(trans s4284 s5989) +(trans s4284 s2) +(trans s4284 s15) +(trans s4285 s5996) +(trans s4285 s9) +(trans s4285 s22) +(trans s4286 s3) +(trans s4286 s16) +(trans s4286 s29) +(trans s4287 s10) +(trans s4287 s23) +(trans s4287 s36) +(trans s4288 s17) +(trans s4288 s30) +(trans s4288 s43) +(trans s4289 s24) +(trans s4289 s37) +(trans s4289 s50) +(trans s4290 s31) +(trans s4290 s44) +(trans s4290 s57) +(trans s4291 s38) +(trans s4291 s51) +(trans s4291 s64) +(trans s4292 s45) +(trans s4292 s58) +(trans s4292 s71) +(trans s4293 s52) +(trans s4293 s65) +(trans s4293 s78) +(trans s4294 s59) +(trans s4294 s72) +(trans s4294 s85) +(trans s4295 s66) +(trans s4295 s79) +(trans s4295 s92) +(trans s4296 s73) +(trans s4296 s86) +(trans s4296 s99) +(trans s4297 s80) +(trans s4297 s93) +(trans s4297 s106) +(trans s4298 s87) +(trans s4298 s100) +(trans s4298 s113) +(trans s4299 s94) +(trans s4299 s107) +(trans s4299 s120) +(trans s4300 s101) +(trans s4300 s114) +(trans s4300 s127) +(trans s4301 s108) +(trans s4301 s121) +(trans s4301 s134) +(trans s4302 s115) +(trans s4302 s128) +(trans s4302 s141) +(trans s4303 s122) +(trans s4303 s135) +(trans s4303 s148) +(trans s4304 s129) +(trans s4304 s142) +(trans s4304 s155) +(trans s4305 s136) +(trans s4305 s149) +(trans s4305 s162) +(trans s4306 s143) +(trans s4306 s156) +(trans s4306 s169) +(trans s4307 s150) +(trans s4307 s163) +(trans s4307 s176) +(trans s4308 s157) +(trans s4308 s170) +(trans s4308 s183) +(trans s4309 s164) +(trans s4309 s177) +(trans s4309 s190) +(trans s4310 s171) +(trans s4310 s184) +(trans s4310 s197) +(trans s4311 s178) +(trans s4311 s191) +(trans s4311 s204) +(trans s4312 s185) +(trans s4312 s198) +(trans s4312 s211) +(trans s4313 s192) +(trans s4313 s205) +(trans s4313 s218) +(trans s4314 s199) +(trans s4314 s212) +(trans s4314 s225) +(trans s4315 s206) +(trans s4315 s219) +(trans s4315 s232) +(trans s4316 s213) +(trans s4316 s226) +(trans s4316 s239) +(trans s4317 s220) +(trans s4317 s233) +(trans s4317 s246) +(trans s4318 s227) +(trans s4318 s240) +(trans s4318 s253) +(trans s4319 s234) +(trans s4319 s247) +(trans s4319 s260) +(trans s4320 s241) +(trans s4320 s254) +(trans s4320 s267) +(trans s4321 s248) +(trans s4321 s261) +(trans s4321 s274) +(trans s4322 s255) +(trans s4322 s268) +(trans s4322 s281) +(trans s4323 s262) +(trans s4323 s275) +(trans s4323 s288) +(trans s4324 s269) +(trans s4324 s282) +(trans s4324 s295) +(trans s4325 s276) +(trans s4325 s289) +(trans s4325 s302) +(trans s4326 s283) +(trans s4326 s296) +(trans s4326 s309) +(trans s4327 s290) +(trans s4327 s303) +(trans s4327 s316) +(trans s4328 s297) +(trans s4328 s310) +(trans s4328 s323) +(trans s4329 s304) +(trans s4329 s317) +(trans s4329 s330) +(trans s4330 s311) +(trans s4330 s324) +(trans s4330 s337) +(trans s4331 s318) +(trans s4331 s331) +(trans s4331 s344) +(trans s4332 s325) +(trans s4332 s338) +(trans s4332 s351) +(trans s4333 s332) +(trans s4333 s345) +(trans s4333 s358) +(trans s4334 s339) +(trans s4334 s352) +(trans s4334 s365) +(trans s4335 s346) +(trans s4335 s359) +(trans s4335 s372) +(trans s4336 s353) +(trans s4336 s366) +(trans s4336 s379) +(trans s4337 s360) +(trans s4337 s373) +(trans s4337 s386) +(trans s4338 s367) +(trans s4338 s380) +(trans s4338 s393) +(trans s4339 s374) +(trans s4339 s387) +(trans s4339 s400) +(trans s4340 s381) +(trans s4340 s394) +(trans s4340 s407) +(trans s4341 s388) +(trans s4341 s401) +(trans s4341 s414) +(trans s4342 s395) +(trans s4342 s408) +(trans s4342 s421) +(trans s4343 s402) +(trans s4343 s415) +(trans s4343 s428) +(trans s4344 s409) +(trans s4344 s422) +(trans s4344 s435) +(trans s4345 s416) +(trans s4345 s429) +(trans s4345 s442) +(trans s4346 s423) +(trans s4346 s436) +(trans s4346 s449) +(trans s4347 s430) +(trans s4347 s443) +(trans s4347 s456) +(trans s4348 s437) +(trans s4348 s450) +(trans s4348 s463) +(trans s4349 s444) +(trans s4349 s457) +(trans s4349 s470) +(trans s4350 s451) +(trans s4350 s464) +(trans s4350 s477) +(trans s4351 s458) +(trans s4351 s471) +(trans s4351 s484) +(trans s4352 s465) +(trans s4352 s478) +(trans s4352 s491) +(trans s4353 s472) +(trans s4353 s485) +(trans s4353 s498) +(trans s4354 s479) +(trans s4354 s492) +(trans s4354 s505) +(trans s4355 s486) +(trans s4355 s499) +(trans s4355 s512) +(trans s4356 s493) +(trans s4356 s506) +(trans s4356 s519) +(trans s4357 s500) +(trans s4357 s513) +(trans s4357 s526) +(trans s4358 s507) +(trans s4358 s520) +(trans s4358 s533) +(trans s4359 s514) +(trans s4359 s527) +(trans s4359 s540) +(trans s4360 s521) +(trans s4360 s534) +(trans s4360 s547) +(trans s4361 s528) +(trans s4361 s541) +(trans s4361 s554) +(trans s4362 s535) +(trans s4362 s548) +(trans s4362 s561) +(trans s4363 s542) +(trans s4363 s555) +(trans s4363 s568) +(trans s4364 s549) +(trans s4364 s562) +(trans s4364 s575) +(trans s4365 s556) +(trans s4365 s569) +(trans s4365 s582) +(trans s4366 s563) +(trans s4366 s576) +(trans s4366 s589) +(trans s4367 s570) +(trans s4367 s583) +(trans s4367 s596) +(trans s4368 s577) +(trans s4368 s590) +(trans s4368 s603) +(trans s4369 s584) +(trans s4369 s597) +(trans s4369 s610) +(trans s4370 s591) +(trans s4370 s604) +(trans s4370 s617) +(trans s4371 s598) +(trans s4371 s611) +(trans s4371 s624) +(trans s4372 s605) +(trans s4372 s618) +(trans s4372 s631) +(trans s4373 s612) +(trans s4373 s625) +(trans s4373 s638) +(trans s4374 s619) +(trans s4374 s632) +(trans s4374 s645) +(trans s4375 s626) +(trans s4375 s639) +(trans s4375 s652) +(trans s4376 s633) +(trans s4376 s646) +(trans s4376 s659) +(trans s4377 s640) +(trans s4377 s653) +(trans s4377 s666) +(trans s4378 s647) +(trans s4378 s660) +(trans s4378 s673) +(trans s4379 s654) +(trans s4379 s667) +(trans s4379 s680) +(trans s4380 s661) +(trans s4380 s674) +(trans s4380 s687) +(trans s4381 s668) +(trans s4381 s681) +(trans s4381 s694) +(trans s4382 s675) +(trans s4382 s688) +(trans s4382 s701) +(trans s4383 s682) +(trans s4383 s695) +(trans s4383 s708) +(trans s4384 s689) +(trans s4384 s702) +(trans s4384 s715) +(trans s4385 s696) +(trans s4385 s709) +(trans s4385 s722) +(trans s4386 s703) +(trans s4386 s716) +(trans s4386 s729) +(trans s4387 s710) +(trans s4387 s723) +(trans s4387 s736) +(trans s4388 s717) +(trans s4388 s730) +(trans s4388 s743) +(trans s4389 s724) +(trans s4389 s737) +(trans s4389 s750) +(trans s4390 s731) +(trans s4390 s744) +(trans s4390 s757) +(trans s4391 s738) +(trans s4391 s751) +(trans s4391 s764) +(trans s4392 s745) +(trans s4392 s758) +(trans s4392 s771) +(trans s4393 s752) +(trans s4393 s765) +(trans s4393 s778) +(trans s4394 s759) +(trans s4394 s772) +(trans s4394 s785) +(trans s4395 s766) +(trans s4395 s779) +(trans s4395 s792) +(trans s4396 s773) +(trans s4396 s786) +(trans s4396 s799) +(trans s4397 s780) +(trans s4397 s793) +(trans s4397 s806) +(trans s4398 s787) +(trans s4398 s800) +(trans s4398 s813) +(trans s4399 s794) +(trans s4399 s807) +(trans s4399 s820) +(trans s4400 s801) +(trans s4400 s814) +(trans s4400 s827) +(trans s4401 s808) +(trans s4401 s821) +(trans s4401 s834) +(trans s4402 s815) +(trans s4402 s828) +(trans s4402 s841) +(trans s4403 s822) +(trans s4403 s835) +(trans s4403 s848) +(trans s4404 s829) +(trans s4404 s842) +(trans s4404 s855) +(trans s4405 s836) +(trans s4405 s849) +(trans s4405 s862) +(trans s4406 s843) +(trans s4406 s856) +(trans s4406 s869) +(trans s4407 s850) +(trans s4407 s863) +(trans s4407 s876) +(trans s4408 s857) +(trans s4408 s870) +(trans s4408 s883) +(trans s4409 s864) +(trans s4409 s877) +(trans s4409 s890) +(trans s4410 s871) +(trans s4410 s884) +(trans s4410 s897) +(trans s4411 s878) +(trans s4411 s891) +(trans s4411 s904) +(trans s4412 s885) +(trans s4412 s898) +(trans s4412 s911) +(trans s4413 s892) +(trans s4413 s905) +(trans s4413 s918) +(trans s4414 s899) +(trans s4414 s912) +(trans s4414 s925) +(trans s4415 s906) +(trans s4415 s919) +(trans s4415 s932) +(trans s4416 s913) +(trans s4416 s926) +(trans s4416 s939) +(trans s4417 s920) +(trans s4417 s933) +(trans s4417 s946) +(trans s4418 s927) +(trans s4418 s940) +(trans s4418 s953) +(trans s4419 s934) +(trans s4419 s947) +(trans s4419 s960) +(trans s4420 s941) +(trans s4420 s954) +(trans s4420 s967) +(trans s4421 s948) +(trans s4421 s961) +(trans s4421 s974) +(trans s4422 s955) +(trans s4422 s968) +(trans s4422 s981) +(trans s4423 s962) +(trans s4423 s975) +(trans s4423 s988) +(trans s4424 s969) +(trans s4424 s982) +(trans s4424 s995) +(trans s4425 s976) +(trans s4425 s989) +(trans s4425 s1002) +(trans s4426 s983) +(trans s4426 s996) +(trans s4426 s1009) +(trans s4427 s990) +(trans s4427 s1003) +(trans s4427 s1016) +(trans s4428 s997) +(trans s4428 s1010) +(trans s4428 s1023) +(trans s4429 s1004) +(trans s4429 s1017) +(trans s4429 s1030) +(trans s4430 s1011) +(trans s4430 s1024) +(trans s4430 s1037) +(trans s4431 s1018) +(trans s4431 s1031) +(trans s4431 s1044) +(trans s4432 s1025) +(trans s4432 s1038) +(trans s4432 s1051) +(trans s4433 s1032) +(trans s4433 s1045) +(trans s4433 s1058) +(trans s4434 s1039) +(trans s4434 s1052) +(trans s4434 s1065) +(trans s4435 s1046) +(trans s4435 s1059) +(trans s4435 s1072) +(trans s4436 s1053) +(trans s4436 s1066) +(trans s4436 s1079) +(trans s4437 s1060) +(trans s4437 s1073) +(trans s4437 s1086) +(trans s4438 s1067) +(trans s4438 s1080) +(trans s4438 s1093) +(trans s4439 s1074) +(trans s4439 s1087) +(trans s4439 s1100) +(trans s4440 s1081) +(trans s4440 s1094) +(trans s4440 s1107) +(trans s4441 s1088) +(trans s4441 s1101) +(trans s4441 s1114) +(trans s4442 s1095) +(trans s4442 s1108) +(trans s4442 s1121) +(trans s4443 s1102) +(trans s4443 s1115) +(trans s4443 s1128) +(trans s4444 s1109) +(trans s4444 s1122) +(trans s4444 s1135) +(trans s4445 s1116) +(trans s4445 s1129) +(trans s4445 s1142) +(trans s4446 s1123) +(trans s4446 s1136) +(trans s4446 s1149) +(trans s4447 s1130) +(trans s4447 s1143) +(trans s4447 s1156) +(trans s4448 s1137) +(trans s4448 s1150) +(trans s4448 s1163) +(trans s4449 s1144) +(trans s4449 s1157) +(trans s4449 s1170) +(trans s4450 s1151) +(trans s4450 s1164) +(trans s4450 s1177) +(trans s4451 s1158) +(trans s4451 s1171) +(trans s4451 s1184) +(trans s4452 s1165) +(trans s4452 s1178) +(trans s4452 s1191) +(trans s4453 s1172) +(trans s4453 s1185) +(trans s4453 s1198) +(trans s4454 s1179) +(trans s4454 s1192) +(trans s4454 s1205) +(trans s4455 s1186) +(trans s4455 s1199) +(trans s4455 s1212) +(trans s4456 s1193) +(trans s4456 s1206) +(trans s4456 s1219) +(trans s4457 s1200) +(trans s4457 s1213) +(trans s4457 s1226) +(trans s4458 s1207) +(trans s4458 s1220) +(trans s4458 s1233) +(trans s4459 s1214) +(trans s4459 s1227) +(trans s4459 s1240) +(trans s4460 s1221) +(trans s4460 s1234) +(trans s4460 s1247) +(trans s4461 s1228) +(trans s4461 s1241) +(trans s4461 s1254) +(trans s4462 s1235) +(trans s4462 s1248) +(trans s4462 s1261) +(trans s4463 s1242) +(trans s4463 s1255) +(trans s4463 s1268) +(trans s4464 s1249) +(trans s4464 s1262) +(trans s4464 s1275) +(trans s4465 s1256) +(trans s4465 s1269) +(trans s4465 s1282) +(trans s4466 s1263) +(trans s4466 s1276) +(trans s4466 s1289) +(trans s4467 s1270) +(trans s4467 s1283) +(trans s4467 s1296) +(trans s4468 s1277) +(trans s4468 s1290) +(trans s4468 s1303) +(trans s4469 s1284) +(trans s4469 s1297) +(trans s4469 s1310) +(trans s4470 s1291) +(trans s4470 s1304) +(trans s4470 s1317) +(trans s4471 s1298) +(trans s4471 s1311) +(trans s4471 s1324) +(trans s4472 s1305) +(trans s4472 s1318) +(trans s4472 s1331) +(trans s4473 s1312) +(trans s4473 s1325) +(trans s4473 s1338) +(trans s4474 s1319) +(trans s4474 s1332) +(trans s4474 s1345) +(trans s4475 s1326) +(trans s4475 s1339) +(trans s4475 s1352) +(trans s4476 s1333) +(trans s4476 s1346) +(trans s4476 s1359) +(trans s4477 s1340) +(trans s4477 s1353) +(trans s4477 s1366) +(trans s4478 s1347) +(trans s4478 s1360) +(trans s4478 s1373) +(trans s4479 s1354) +(trans s4479 s1367) +(trans s4479 s1380) +(trans s4480 s1361) +(trans s4480 s1374) +(trans s4480 s1387) +(trans s4481 s1368) +(trans s4481 s1381) +(trans s4481 s1394) +(trans s4482 s1375) +(trans s4482 s1388) +(trans s4482 s1401) +(trans s4483 s1382) +(trans s4483 s1395) +(trans s4483 s1408) +(trans s4484 s1389) +(trans s4484 s1402) +(trans s4484 s1415) +(trans s4485 s1396) +(trans s4485 s1409) +(trans s4485 s1422) +(trans s4486 s1403) +(trans s4486 s1416) +(trans s4486 s1429) +(trans s4487 s1410) +(trans s4487 s1423) +(trans s4487 s1436) +(trans s4488 s1417) +(trans s4488 s1430) +(trans s4488 s1443) +(trans s4489 s1424) +(trans s4489 s1437) +(trans s4489 s1450) +(trans s4490 s1431) +(trans s4490 s1444) +(trans s4490 s1457) +(trans s4491 s1438) +(trans s4491 s1451) +(trans s4491 s1464) +(trans s4492 s1445) +(trans s4492 s1458) +(trans s4492 s1471) +(trans s4493 s1452) +(trans s4493 s1465) +(trans s4493 s1478) +(trans s4494 s1459) +(trans s4494 s1472) +(trans s4494 s1485) +(trans s4495 s1466) +(trans s4495 s1479) +(trans s4495 s1492) +(trans s4496 s1473) +(trans s4496 s1486) +(trans s4496 s1499) +(trans s4497 s1480) +(trans s4497 s1493) +(trans s4497 s1506) +(trans s4498 s1487) +(trans s4498 s1500) +(trans s4498 s1513) +(trans s4499 s1494) +(trans s4499 s1507) +(trans s4499 s1520) +(trans s4500 s1501) +(trans s4500 s1514) +(trans s4500 s1527) +(trans s4501 s1508) +(trans s4501 s1521) +(trans s4501 s1534) +(trans s4502 s1515) +(trans s4502 s1528) +(trans s4502 s1541) +(trans s4503 s1522) +(trans s4503 s1535) +(trans s4503 s1548) +(trans s4504 s1529) +(trans s4504 s1542) +(trans s4504 s1555) +(trans s4505 s1536) +(trans s4505 s1549) +(trans s4505 s1562) +(trans s4506 s1543) +(trans s4506 s1556) +(trans s4506 s1569) +(trans s4507 s1550) +(trans s4507 s1563) +(trans s4507 s1576) +(trans s4508 s1557) +(trans s4508 s1570) +(trans s4508 s1583) +(trans s4509 s1564) +(trans s4509 s1577) +(trans s4509 s1590) +(trans s4510 s1571) +(trans s4510 s1584) +(trans s4510 s1597) +(trans s4511 s1578) +(trans s4511 s1591) +(trans s4511 s1604) +(trans s4512 s1585) +(trans s4512 s1598) +(trans s4512 s1611) +(trans s4513 s1592) +(trans s4513 s1605) +(trans s4513 s1618) +(trans s4514 s1599) +(trans s4514 s1612) +(trans s4514 s1625) +(trans s4515 s1606) +(trans s4515 s1619) +(trans s4515 s1632) +(trans s4516 s1613) +(trans s4516 s1626) +(trans s4516 s1639) +(trans s4517 s1620) +(trans s4517 s1633) +(trans s4517 s1646) +(trans s4518 s1627) +(trans s4518 s1640) +(trans s4518 s1653) +(trans s4519 s1634) +(trans s4519 s1647) +(trans s4519 s1660) +(trans s4520 s1641) +(trans s4520 s1654) +(trans s4520 s1667) +(trans s4521 s1648) +(trans s4521 s1661) +(trans s4521 s1674) +(trans s4522 s1655) +(trans s4522 s1668) +(trans s4522 s1681) +(trans s4523 s1662) +(trans s4523 s1675) +(trans s4523 s1688) +(trans s4524 s1669) +(trans s4524 s1682) +(trans s4524 s1695) +(trans s4525 s1676) +(trans s4525 s1689) +(trans s4525 s1702) +(trans s4526 s1683) +(trans s4526 s1696) +(trans s4526 s1709) +(trans s4527 s1690) +(trans s4527 s1703) +(trans s4527 s1716) +(trans s4528 s1697) +(trans s4528 s1710) +(trans s4528 s1723) +(trans s4529 s1704) +(trans s4529 s1717) +(trans s4529 s1730) +(trans s4530 s1711) +(trans s4530 s1724) +(trans s4530 s1737) +(trans s4531 s1718) +(trans s4531 s1731) +(trans s4531 s1744) +(trans s4532 s1725) +(trans s4532 s1738) +(trans s4532 s1751) +(trans s4533 s1732) +(trans s4533 s1745) +(trans s4533 s1758) +(trans s4534 s1739) +(trans s4534 s1752) +(trans s4534 s1765) +(trans s4535 s1746) +(trans s4535 s1759) +(trans s4535 s1772) +(trans s4536 s1753) +(trans s4536 s1766) +(trans s4536 s1779) +(trans s4537 s1760) +(trans s4537 s1773) +(trans s4537 s1786) +(trans s4538 s1767) +(trans s4538 s1780) +(trans s4538 s1793) +(trans s4539 s1774) +(trans s4539 s1787) +(trans s4539 s1800) +(trans s4540 s1781) +(trans s4540 s1794) +(trans s4540 s1807) +(trans s4541 s1788) +(trans s4541 s1801) +(trans s4541 s1814) +(trans s4542 s1795) +(trans s4542 s1808) +(trans s4542 s1821) +(trans s4543 s1802) +(trans s4543 s1815) +(trans s4543 s1828) +(trans s4544 s1809) +(trans s4544 s1822) +(trans s4544 s1835) +(trans s4545 s1816) +(trans s4545 s1829) +(trans s4545 s1842) +(trans s4546 s1823) +(trans s4546 s1836) +(trans s4546 s1849) +(trans s4547 s1830) +(trans s4547 s1843) +(trans s4547 s1856) +(trans s4548 s1837) +(trans s4548 s1850) +(trans s4548 s1863) +(trans s4549 s1844) +(trans s4549 s1857) +(trans s4549 s1870) +(trans s4550 s1851) +(trans s4550 s1864) +(trans s4550 s1877) +(trans s4551 s1858) +(trans s4551 s1871) +(trans s4551 s1884) +(trans s4552 s1865) +(trans s4552 s1878) +(trans s4552 s1891) +(trans s4553 s1872) +(trans s4553 s1885) +(trans s4553 s1898) +(trans s4554 s1879) +(trans s4554 s1892) +(trans s4554 s1905) +(trans s4555 s1886) +(trans s4555 s1899) +(trans s4555 s1912) +(trans s4556 s1893) +(trans s4556 s1906) +(trans s4556 s1919) +(trans s4557 s1900) +(trans s4557 s1913) +(trans s4557 s1926) +(trans s4558 s1907) +(trans s4558 s1920) +(trans s4558 s1933) +(trans s4559 s1914) +(trans s4559 s1927) +(trans s4559 s1940) +(trans s4560 s1921) +(trans s4560 s1934) +(trans s4560 s1947) +(trans s4561 s1928) +(trans s4561 s1941) +(trans s4561 s1954) +(trans s4562 s1935) +(trans s4562 s1948) +(trans s4562 s1961) +(trans s4563 s1942) +(trans s4563 s1955) +(trans s4563 s1968) +(trans s4564 s1949) +(trans s4564 s1962) +(trans s4564 s1975) +(trans s4565 s1956) +(trans s4565 s1969) +(trans s4565 s1982) +(trans s4566 s1963) +(trans s4566 s1976) +(trans s4566 s1989) +(trans s4567 s1970) +(trans s4567 s1983) +(trans s4567 s1996) +(trans s4568 s1977) +(trans s4568 s1990) +(trans s4568 s2003) +(trans s4569 s1984) +(trans s4569 s1997) +(trans s4569 s2010) +(trans s4570 s1991) +(trans s4570 s2004) +(trans s4570 s2017) +(trans s4571 s1998) +(trans s4571 s2011) +(trans s4571 s2024) +(trans s4572 s2005) +(trans s4572 s2018) +(trans s4572 s2031) +(trans s4573 s2012) +(trans s4573 s2025) +(trans s4573 s2038) +(trans s4574 s2019) +(trans s4574 s2032) +(trans s4574 s2045) +(trans s4575 s2026) +(trans s4575 s2039) +(trans s4575 s2052) +(trans s4576 s2033) +(trans s4576 s2046) +(trans s4576 s2059) +(trans s4577 s2040) +(trans s4577 s2053) +(trans s4577 s2066) +(trans s4578 s2047) +(trans s4578 s2060) +(trans s4578 s2073) +(trans s4579 s2054) +(trans s4579 s2067) +(trans s4579 s2080) +(trans s4580 s2061) +(trans s4580 s2074) +(trans s4580 s2087) +(trans s4581 s2068) +(trans s4581 s2081) +(trans s4581 s2094) +(trans s4582 s2075) +(trans s4582 s2088) +(trans s4582 s2101) +(trans s4583 s2082) +(trans s4583 s2095) +(trans s4583 s2108) +(trans s4584 s2089) +(trans s4584 s2102) +(trans s4584 s2115) +(trans s4585 s2096) +(trans s4585 s2109) +(trans s4585 s2122) +(trans s4586 s2103) +(trans s4586 s2116) +(trans s4586 s2129) +(trans s4587 s2110) +(trans s4587 s2123) +(trans s4587 s2136) +(trans s4588 s2117) +(trans s4588 s2130) +(trans s4588 s2143) +(trans s4589 s2124) +(trans s4589 s2137) +(trans s4589 s2150) +(trans s4590 s2131) +(trans s4590 s2144) +(trans s4590 s2157) +(trans s4591 s2138) +(trans s4591 s2151) +(trans s4591 s2164) +(trans s4592 s2145) +(trans s4592 s2158) +(trans s4592 s2171) +(trans s4593 s2152) +(trans s4593 s2165) +(trans s4593 s2178) +(trans s4594 s2159) +(trans s4594 s2172) +(trans s4594 s2185) +(trans s4595 s2166) +(trans s4595 s2179) +(trans s4595 s2192) +(trans s4596 s2173) +(trans s4596 s2186) +(trans s4596 s2199) +(trans s4597 s2180) +(trans s4597 s2193) +(trans s4597 s2206) +(trans s4598 s2187) +(trans s4598 s2200) +(trans s4598 s2213) +(trans s4599 s2194) +(trans s4599 s2207) +(trans s4599 s2220) +(trans s4600 s2201) +(trans s4600 s2214) +(trans s4600 s2227) +(trans s4601 s2208) +(trans s4601 s2221) +(trans s4601 s2234) +(trans s4602 s2215) +(trans s4602 s2228) +(trans s4602 s2241) +(trans s4603 s2222) +(trans s4603 s2235) +(trans s4603 s2248) +(trans s4604 s2229) +(trans s4604 s2242) +(trans s4604 s2255) +(trans s4605 s2236) +(trans s4605 s2249) +(trans s4605 s2262) +(trans s4606 s2243) +(trans s4606 s2256) +(trans s4606 s2269) +(trans s4607 s2250) +(trans s4607 s2263) +(trans s4607 s2276) +(trans s4608 s2257) +(trans s4608 s2270) +(trans s4608 s2283) +(trans s4609 s2264) +(trans s4609 s2277) +(trans s4609 s2290) +(trans s4610 s2271) +(trans s4610 s2284) +(trans s4610 s2297) +(trans s4611 s2278) +(trans s4611 s2291) +(trans s4611 s2304) +(trans s4612 s2285) +(trans s4612 s2298) +(trans s4612 s2311) +(trans s4613 s2292) +(trans s4613 s2305) +(trans s4613 s2318) +(trans s4614 s2299) +(trans s4614 s2312) +(trans s4614 s2325) +(trans s4615 s2306) +(trans s4615 s2319) +(trans s4615 s2332) +(trans s4616 s2313) +(trans s4616 s2326) +(trans s4616 s2339) +(trans s4617 s2320) +(trans s4617 s2333) +(trans s4617 s2346) +(trans s4618 s2327) +(trans s4618 s2340) +(trans s4618 s2353) +(trans s4619 s2334) +(trans s4619 s2347) +(trans s4619 s2360) +(trans s4620 s2341) +(trans s4620 s2354) +(trans s4620 s2367) +(trans s4621 s2348) +(trans s4621 s2361) +(trans s4621 s2374) +(trans s4622 s2355) +(trans s4622 s2368) +(trans s4622 s2381) +(trans s4623 s2362) +(trans s4623 s2375) +(trans s4623 s2388) +(trans s4624 s2369) +(trans s4624 s2382) +(trans s4624 s2395) +(trans s4625 s2376) +(trans s4625 s2389) +(trans s4625 s2402) +(trans s4626 s2383) +(trans s4626 s2396) +(trans s4626 s2409) +(trans s4627 s2390) +(trans s4627 s2403) +(trans s4627 s2416) +(trans s4628 s2397) +(trans s4628 s2410) +(trans s4628 s2423) +(trans s4629 s2404) +(trans s4629 s2417) +(trans s4629 s2430) +(trans s4630 s2411) +(trans s4630 s2424) +(trans s4630 s2437) +(trans s4631 s2418) +(trans s4631 s2431) +(trans s4631 s2444) +(trans s4632 s2425) +(trans s4632 s2438) +(trans s4632 s2451) +(trans s4633 s2432) +(trans s4633 s2445) +(trans s4633 s2458) +(trans s4634 s2439) +(trans s4634 s2452) +(trans s4634 s2465) +(trans s4635 s2446) +(trans s4635 s2459) +(trans s4635 s2472) +(trans s4636 s2453) +(trans s4636 s2466) +(trans s4636 s2479) +(trans s4637 s2460) +(trans s4637 s2473) +(trans s4637 s2486) +(trans s4638 s2467) +(trans s4638 s2480) +(trans s4638 s2493) +(trans s4639 s2474) +(trans s4639 s2487) +(trans s4639 s2500) +(trans s4640 s2481) +(trans s4640 s2494) +(trans s4640 s2507) +(trans s4641 s2488) +(trans s4641 s2501) +(trans s4641 s2514) +(trans s4642 s2495) +(trans s4642 s2508) +(trans s4642 s2521) +(trans s4643 s2502) +(trans s4643 s2515) +(trans s4643 s2528) +(trans s4644 s2509) +(trans s4644 s2522) +(trans s4644 s2535) +(trans s4645 s2516) +(trans s4645 s2529) +(trans s4645 s2542) +(trans s4646 s2523) +(trans s4646 s2536) +(trans s4646 s2549) +(trans s4647 s2530) +(trans s4647 s2543) +(trans s4647 s2556) +(trans s4648 s2537) +(trans s4648 s2550) +(trans s4648 s2563) +(trans s4649 s2544) +(trans s4649 s2557) +(trans s4649 s2570) +(trans s4650 s2551) +(trans s4650 s2564) +(trans s4650 s2577) +(trans s4651 s2558) +(trans s4651 s2571) +(trans s4651 s2584) +(trans s4652 s2565) +(trans s4652 s2578) +(trans s4652 s2591) +(trans s4653 s2572) +(trans s4653 s2585) +(trans s4653 s2598) +(trans s4654 s2579) +(trans s4654 s2592) +(trans s4654 s2605) +(trans s4655 s2586) +(trans s4655 s2599) +(trans s4655 s2612) +(trans s4656 s2593) +(trans s4656 s2606) +(trans s4656 s2619) +(trans s4657 s2600) +(trans s4657 s2613) +(trans s4657 s2626) +(trans s4658 s2607) +(trans s4658 s2620) +(trans s4658 s2633) +(trans s4659 s2614) +(trans s4659 s2627) +(trans s4659 s2640) +(trans s4660 s2621) +(trans s4660 s2634) +(trans s4660 s2647) +(trans s4661 s2628) +(trans s4661 s2641) +(trans s4661 s2654) +(trans s4662 s2635) +(trans s4662 s2648) +(trans s4662 s2661) +(trans s4663 s2642) +(trans s4663 s2655) +(trans s4663 s2668) +(trans s4664 s2649) +(trans s4664 s2662) +(trans s4664 s2675) +(trans s4665 s2656) +(trans s4665 s2669) +(trans s4665 s2682) +(trans s4666 s2663) +(trans s4666 s2676) +(trans s4666 s2689) +(trans s4667 s2670) +(trans s4667 s2683) +(trans s4667 s2696) +(trans s4668 s2677) +(trans s4668 s2690) +(trans s4668 s2703) +(trans s4669 s2684) +(trans s4669 s2697) +(trans s4669 s2710) +(trans s4670 s2691) +(trans s4670 s2704) +(trans s4670 s2717) +(trans s4671 s2698) +(trans s4671 s2711) +(trans s4671 s2724) +(trans s4672 s2705) +(trans s4672 s2718) +(trans s4672 s2731) +(trans s4673 s2712) +(trans s4673 s2725) +(trans s4673 s2738) +(trans s4674 s2719) +(trans s4674 s2732) +(trans s4674 s2745) +(trans s4675 s2726) +(trans s4675 s2739) +(trans s4675 s2752) +(trans s4676 s2733) +(trans s4676 s2746) +(trans s4676 s2759) +(trans s4677 s2740) +(trans s4677 s2753) +(trans s4677 s2766) +(trans s4678 s2747) +(trans s4678 s2760) +(trans s4678 s2773) +(trans s4679 s2754) +(trans s4679 s2767) +(trans s4679 s2780) +(trans s4680 s2761) +(trans s4680 s2774) +(trans s4680 s2787) +(trans s4681 s2768) +(trans s4681 s2781) +(trans s4681 s2794) +(trans s4682 s2775) +(trans s4682 s2788) +(trans s4682 s2801) +(trans s4683 s2782) +(trans s4683 s2795) +(trans s4683 s2808) +(trans s4684 s2789) +(trans s4684 s2802) +(trans s4684 s2815) +(trans s4685 s2796) +(trans s4685 s2809) +(trans s4685 s2822) +(trans s4686 s2803) +(trans s4686 s2816) +(trans s4686 s2829) +(trans s4687 s2810) +(trans s4687 s2823) +(trans s4687 s2836) +(trans s4688 s2817) +(trans s4688 s2830) +(trans s4688 s2843) +(trans s4689 s2824) +(trans s4689 s2837) +(trans s4689 s2850) +(trans s4690 s2831) +(trans s4690 s2844) +(trans s4690 s2857) +(trans s4691 s2838) +(trans s4691 s2851) +(trans s4691 s2864) +(trans s4692 s2845) +(trans s4692 s2858) +(trans s4692 s2871) +(trans s4693 s2852) +(trans s4693 s2865) +(trans s4693 s2878) +(trans s4694 s2859) +(trans s4694 s2872) +(trans s4694 s2885) +(trans s4695 s2866) +(trans s4695 s2879) +(trans s4695 s2892) +(trans s4696 s2873) +(trans s4696 s2886) +(trans s4696 s2899) +(trans s4697 s2880) +(trans s4697 s2893) +(trans s4697 s2906) +(trans s4698 s2887) +(trans s4698 s2900) +(trans s4698 s2913) +(trans s4699 s2894) +(trans s4699 s2907) +(trans s4699 s2920) +(trans s4700 s2901) +(trans s4700 s2914) +(trans s4700 s2927) +(trans s4701 s2908) +(trans s4701 s2921) +(trans s4701 s2934) +(trans s4702 s2915) +(trans s4702 s2928) +(trans s4702 s2941) +(trans s4703 s2922) +(trans s4703 s2935) +(trans s4703 s2948) +(trans s4704 s2929) +(trans s4704 s2942) +(trans s4704 s2955) +(trans s4705 s2936) +(trans s4705 s2949) +(trans s4705 s2962) +(trans s4706 s2943) +(trans s4706 s2956) +(trans s4706 s2969) +(trans s4707 s2950) +(trans s4707 s2963) +(trans s4707 s2976) +(trans s4708 s2957) +(trans s4708 s2970) +(trans s4708 s2983) +(trans s4709 s2964) +(trans s4709 s2977) +(trans s4709 s2990) +(trans s4710 s2971) +(trans s4710 s2984) +(trans s4710 s2997) +(trans s4711 s2978) +(trans s4711 s2991) +(trans s4711 s3004) +(trans s4712 s2985) +(trans s4712 s2998) +(trans s4712 s3011) +(trans s4713 s2992) +(trans s4713 s3005) +(trans s4713 s3018) +(trans s4714 s2999) +(trans s4714 s3012) +(trans s4714 s3025) +(trans s4715 s3006) +(trans s4715 s3019) +(trans s4715 s3032) +(trans s4716 s3013) +(trans s4716 s3026) +(trans s4716 s3039) +(trans s4717 s3020) +(trans s4717 s3033) +(trans s4717 s3046) +(trans s4718 s3027) +(trans s4718 s3040) +(trans s4718 s3053) +(trans s4719 s3034) +(trans s4719 s3047) +(trans s4719 s3060) +(trans s4720 s3041) +(trans s4720 s3054) +(trans s4720 s3067) +(trans s4721 s3048) +(trans s4721 s3061) +(trans s4721 s3074) +(trans s4722 s3055) +(trans s4722 s3068) +(trans s4722 s3081) +(trans s4723 s3062) +(trans s4723 s3075) +(trans s4723 s3088) +(trans s4724 s3069) +(trans s4724 s3082) +(trans s4724 s3095) +(trans s4725 s3076) +(trans s4725 s3089) +(trans s4725 s3102) +(trans s4726 s3083) +(trans s4726 s3096) +(trans s4726 s3109) +(trans s4727 s3090) +(trans s4727 s3103) +(trans s4727 s3116) +(trans s4728 s3097) +(trans s4728 s3110) +(trans s4728 s3123) +(trans s4729 s3104) +(trans s4729 s3117) +(trans s4729 s3130) +(trans s4730 s3111) +(trans s4730 s3124) +(trans s4730 s3137) +(trans s4731 s3118) +(trans s4731 s3131) +(trans s4731 s3144) +(trans s4732 s3125) +(trans s4732 s3138) +(trans s4732 s3151) +(trans s4733 s3132) +(trans s4733 s3145) +(trans s4733 s3158) +(trans s4734 s3139) +(trans s4734 s3152) +(trans s4734 s3165) +(trans s4735 s3146) +(trans s4735 s3159) +(trans s4735 s3172) +(trans s4736 s3153) +(trans s4736 s3166) +(trans s4736 s3179) +(trans s4737 s3160) +(trans s4737 s3173) +(trans s4737 s3186) +(trans s4738 s3167) +(trans s4738 s3180) +(trans s4738 s3193) +(trans s4739 s3174) +(trans s4739 s3187) +(trans s4739 s3200) +(trans s4740 s3181) +(trans s4740 s3194) +(trans s4740 s3207) +(trans s4741 s3188) +(trans s4741 s3201) +(trans s4741 s3214) +(trans s4742 s3195) +(trans s4742 s3208) +(trans s4742 s3221) +(trans s4743 s3202) +(trans s4743 s3215) +(trans s4743 s3228) +(trans s4744 s3209) +(trans s4744 s3222) +(trans s4744 s3235) +(trans s4745 s3216) +(trans s4745 s3229) +(trans s4745 s3242) +(trans s4746 s3223) +(trans s4746 s3236) +(trans s4746 s3249) +(trans s4747 s3230) +(trans s4747 s3243) +(trans s4747 s3256) +(trans s4748 s3237) +(trans s4748 s3250) +(trans s4748 s3263) +(trans s4749 s3244) +(trans s4749 s3257) +(trans s4749 s3270) +(trans s4750 s3251) +(trans s4750 s3264) +(trans s4750 s3277) +(trans s4751 s3258) +(trans s4751 s3271) +(trans s4751 s3284) +(trans s4752 s3265) +(trans s4752 s3278) +(trans s4752 s3291) +(trans s4753 s3272) +(trans s4753 s3285) +(trans s4753 s3298) +(trans s4754 s3279) +(trans s4754 s3292) +(trans s4754 s3305) +(trans s4755 s3286) +(trans s4755 s3299) +(trans s4755 s3312) +(trans s4756 s3293) +(trans s4756 s3306) +(trans s4756 s3319) +(trans s4757 s3300) +(trans s4757 s3313) +(trans s4757 s3326) +(trans s4758 s3307) +(trans s4758 s3320) +(trans s4758 s3333) +(trans s4759 s3314) +(trans s4759 s3327) +(trans s4759 s3340) +(trans s4760 s3321) +(trans s4760 s3334) +(trans s4760 s3347) +(trans s4761 s3328) +(trans s4761 s3341) +(trans s4761 s3354) +(trans s4762 s3335) +(trans s4762 s3348) +(trans s4762 s3361) +(trans s4763 s3342) +(trans s4763 s3355) +(trans s4763 s3368) +(trans s4764 s3349) +(trans s4764 s3362) +(trans s4764 s3375) +(trans s4765 s3356) +(trans s4765 s3369) +(trans s4765 s3382) +(trans s4766 s3363) +(trans s4766 s3376) +(trans s4766 s3389) +(trans s4767 s3370) +(trans s4767 s3383) +(trans s4767 s3396) +(trans s4768 s3377) +(trans s4768 s3390) +(trans s4768 s3403) +(trans s4769 s3384) +(trans s4769 s3397) +(trans s4769 s3410) +(trans s4770 s3391) +(trans s4770 s3404) +(trans s4770 s3417) +(trans s4771 s3398) +(trans s4771 s3411) +(trans s4771 s3424) +(trans s4772 s3405) +(trans s4772 s3418) +(trans s4772 s3431) +(trans s4773 s3412) +(trans s4773 s3425) +(trans s4773 s3438) +(trans s4774 s3419) +(trans s4774 s3432) +(trans s4774 s3445) +(trans s4775 s3426) +(trans s4775 s3439) +(trans s4775 s3452) +(trans s4776 s3433) +(trans s4776 s3446) +(trans s4776 s3459) +(trans s4777 s3440) +(trans s4777 s3453) +(trans s4777 s3466) +(trans s4778 s3447) +(trans s4778 s3460) +(trans s4778 s3473) +(trans s4779 s3454) +(trans s4779 s3467) +(trans s4779 s3480) +(trans s4780 s3461) +(trans s4780 s3474) +(trans s4780 s3487) +(trans s4781 s3468) +(trans s4781 s3481) +(trans s4781 s3494) +(trans s4782 s3475) +(trans s4782 s3488) +(trans s4782 s3501) +(trans s4783 s3482) +(trans s4783 s3495) +(trans s4783 s3508) +(trans s4784 s3489) +(trans s4784 s3502) +(trans s4784 s3515) +(trans s4785 s3496) +(trans s4785 s3509) +(trans s4785 s3522) +(trans s4786 s3503) +(trans s4786 s3516) +(trans s4786 s3529) +(trans s4787 s3510) +(trans s4787 s3523) +(trans s4787 s3536) +(trans s4788 s3517) +(trans s4788 s3530) +(trans s4788 s3543) +(trans s4789 s3524) +(trans s4789 s3537) +(trans s4789 s3550) +(trans s4790 s3531) +(trans s4790 s3544) +(trans s4790 s3557) +(trans s4791 s3538) +(trans s4791 s3551) +(trans s4791 s3564) +(trans s4792 s3545) +(trans s4792 s3558) +(trans s4792 s3571) +(trans s4793 s3552) +(trans s4793 s3565) +(trans s4793 s3578) +(trans s4794 s3559) +(trans s4794 s3572) +(trans s4794 s3585) +(trans s4795 s3566) +(trans s4795 s3579) +(trans s4795 s3592) +(trans s4796 s3573) +(trans s4796 s3586) +(trans s4796 s3599) +(trans s4797 s3580) +(trans s4797 s3593) +(trans s4797 s3606) +(trans s4798 s3587) +(trans s4798 s3600) +(trans s4798 s3613) +(trans s4799 s3594) +(trans s4799 s3607) +(trans s4799 s3620) +(trans s4800 s3601) +(trans s4800 s3614) +(trans s4800 s3627) +(trans s4801 s3608) +(trans s4801 s3621) +(trans s4801 s3634) +(trans s4802 s3615) +(trans s4802 s3628) +(trans s4802 s3641) +(trans s4803 s3622) +(trans s4803 s3635) +(trans s4803 s3648) +(trans s4804 s3629) +(trans s4804 s3642) +(trans s4804 s3655) +(trans s4805 s3636) +(trans s4805 s3649) +(trans s4805 s3662) +(trans s4806 s3643) +(trans s4806 s3656) +(trans s4806 s3669) +(trans s4807 s3650) +(trans s4807 s3663) +(trans s4807 s3676) +(trans s4808 s3657) +(trans s4808 s3670) +(trans s4808 s3683) +(trans s4809 s3664) +(trans s4809 s3677) +(trans s4809 s3690) +(trans s4810 s3671) +(trans s4810 s3684) +(trans s4810 s3697) +(trans s4811 s3678) +(trans s4811 s3691) +(trans s4811 s3704) +(trans s4812 s3685) +(trans s4812 s3698) +(trans s4812 s3711) +(trans s4813 s3692) +(trans s4813 s3705) +(trans s4813 s3718) +(trans s4814 s3699) +(trans s4814 s3712) +(trans s4814 s3725) +(trans s4815 s3706) +(trans s4815 s3719) +(trans s4815 s3732) +(trans s4816 s3713) +(trans s4816 s3726) +(trans s4816 s3739) +(trans s4817 s3720) +(trans s4817 s3733) +(trans s4817 s3746) +(trans s4818 s3727) +(trans s4818 s3740) +(trans s4818 s3753) +(trans s4819 s3734) +(trans s4819 s3747) +(trans s4819 s3760) +(trans s4820 s3741) +(trans s4820 s3754) +(trans s4820 s3767) +(trans s4821 s3748) +(trans s4821 s3761) +(trans s4821 s3774) +(trans s4822 s3755) +(trans s4822 s3768) +(trans s4822 s3781) +(trans s4823 s3762) +(trans s4823 s3775) +(trans s4823 s3788) +(trans s4824 s3769) +(trans s4824 s3782) +(trans s4824 s3795) +(trans s4825 s3776) +(trans s4825 s3789) +(trans s4825 s3802) +(trans s4826 s3783) +(trans s4826 s3796) +(trans s4826 s3809) +(trans s4827 s3790) +(trans s4827 s3803) +(trans s4827 s3816) +(trans s4828 s3797) +(trans s4828 s3810) +(trans s4828 s3823) +(trans s4829 s3804) +(trans s4829 s3817) +(trans s4829 s3830) +(trans s4830 s3811) +(trans s4830 s3824) +(trans s4830 s3837) +(trans s4831 s3818) +(trans s4831 s3831) +(trans s4831 s3844) +(trans s4832 s3825) +(trans s4832 s3838) +(trans s4832 s3851) +(trans s4833 s3832) +(trans s4833 s3845) +(trans s4833 s3858) +(trans s4834 s3839) +(trans s4834 s3852) +(trans s4834 s3865) +(trans s4835 s3846) +(trans s4835 s3859) +(trans s4835 s3872) +(trans s4836 s3853) +(trans s4836 s3866) +(trans s4836 s3879) +(trans s4837 s3860) +(trans s4837 s3873) +(trans s4837 s3886) +(trans s4838 s3867) +(trans s4838 s3880) +(trans s4838 s3893) +(trans s4839 s3874) +(trans s4839 s3887) +(trans s4839 s3900) +(trans s4840 s3881) +(trans s4840 s3894) +(trans s4840 s3907) +(trans s4841 s3888) +(trans s4841 s3901) +(trans s4841 s3914) +(trans s4842 s3895) +(trans s4842 s3908) +(trans s4842 s3921) +(trans s4843 s3902) +(trans s4843 s3915) +(trans s4843 s3928) +(trans s4844 s3909) +(trans s4844 s3922) +(trans s4844 s3935) +(trans s4845 s3916) +(trans s4845 s3929) +(trans s4845 s3942) +(trans s4846 s3923) +(trans s4846 s3936) +(trans s4846 s3949) +(trans s4847 s3930) +(trans s4847 s3943) +(trans s4847 s3956) +(trans s4848 s3937) +(trans s4848 s3950) +(trans s4848 s3963) +(trans s4849 s3944) +(trans s4849 s3957) +(trans s4849 s3970) +(trans s4850 s3951) +(trans s4850 s3964) +(trans s4850 s3977) +(trans s4851 s3958) +(trans s4851 s3971) +(trans s4851 s3984) +(trans s4852 s3965) +(trans s4852 s3978) +(trans s4852 s3991) +(trans s4853 s3972) +(trans s4853 s3985) +(trans s4853 s3998) +(trans s4854 s3979) +(trans s4854 s3992) +(trans s4854 s4005) +(trans s4855 s3986) +(trans s4855 s3999) +(trans s4855 s4012) +(trans s4856 s3993) +(trans s4856 s4006) +(trans s4856 s4019) +(trans s4857 s4000) +(trans s4857 s4013) +(trans s4857 s4026) +(trans s4858 s4007) +(trans s4858 s4020) +(trans s4858 s4033) +(trans s4859 s4014) +(trans s4859 s4027) +(trans s4859 s4040) +(trans s4860 s4021) +(trans s4860 s4034) +(trans s4860 s4047) +(trans s4861 s4028) +(trans s4861 s4041) +(trans s4861 s4054) +(trans s4862 s4035) +(trans s4862 s4048) +(trans s4862 s4061) +(trans s4863 s4042) +(trans s4863 s4055) +(trans s4863 s4068) +(trans s4864 s4049) +(trans s4864 s4062) +(trans s4864 s4075) +(trans s4865 s4056) +(trans s4865 s4069) +(trans s4865 s4082) +(trans s4866 s4063) +(trans s4866 s4076) +(trans s4866 s4089) +(trans s4867 s4070) +(trans s4867 s4083) +(trans s4867 s4096) +(trans s4868 s4077) +(trans s4868 s4090) +(trans s4868 s4103) +(trans s4869 s4084) +(trans s4869 s4097) +(trans s4869 s4110) +(trans s4870 s4091) +(trans s4870 s4104) +(trans s4870 s4117) +(trans s4871 s4098) +(trans s4871 s4111) +(trans s4871 s4124) +(trans s4872 s4105) +(trans s4872 s4118) +(trans s4872 s4131) +(trans s4873 s4112) +(trans s4873 s4125) +(trans s4873 s4138) +(trans s4874 s4119) +(trans s4874 s4132) +(trans s4874 s4145) +(trans s4875 s4126) +(trans s4875 s4139) +(trans s4875 s4152) +(trans s4876 s4133) +(trans s4876 s4146) +(trans s4876 s4159) +(trans s4877 s4140) +(trans s4877 s4153) +(trans s4877 s4166) +(trans s4878 s4147) +(trans s4878 s4160) +(trans s4878 s4173) +(trans s4879 s4154) +(trans s4879 s4167) +(trans s4879 s4180) +(trans s4880 s4161) +(trans s4880 s4174) +(trans s4880 s4187) +(trans s4881 s4168) +(trans s4881 s4181) +(trans s4881 s4194) +(trans s4882 s4175) +(trans s4882 s4188) +(trans s4882 s4201) +(trans s4883 s4182) +(trans s4883 s4195) +(trans s4883 s4208) +(trans s4884 s4189) +(trans s4884 s4202) +(trans s4884 s4215) +(trans s4885 s4196) +(trans s4885 s4209) +(trans s4885 s4222) +(trans s4886 s4203) +(trans s4886 s4216) +(trans s4886 s4229) +(trans s4887 s4210) +(trans s4887 s4223) +(trans s4887 s4236) +(trans s4888 s4217) +(trans s4888 s4230) +(trans s4888 s4243) +(trans s4889 s4224) +(trans s4889 s4237) +(trans s4889 s4250) +(trans s4890 s4231) +(trans s4890 s4244) +(trans s4890 s4257) +(trans s4891 s4238) +(trans s4891 s4251) +(trans s4891 s4264) +(trans s4892 s4245) +(trans s4892 s4258) +(trans s4892 s4271) +(trans s4893 s4252) +(trans s4893 s4265) +(trans s4893 s4278) +(trans s4894 s4259) +(trans s4894 s4272) +(trans s4894 s4285) +(trans s4895 s4266) +(trans s4895 s4279) +(trans s4895 s4292) +(trans s4896 s4273) +(trans s4896 s4286) +(trans s4896 s4299) +(trans s4897 s4280) +(trans s4897 s4293) +(trans s4897 s4306) +(trans s4898 s4287) +(trans s4898 s4300) +(trans s4898 s4313) +(trans s4899 s4294) +(trans s4899 s4307) +(trans s4899 s4320) +(trans s4900 s4301) +(trans s4900 s4314) +(trans s4900 s4327) +(trans s4901 s4308) +(trans s4901 s4321) +(trans s4901 s4334) +(trans s4902 s4315) +(trans s4902 s4328) +(trans s4902 s4341) +(trans s4903 s4322) +(trans s4903 s4335) +(trans s4903 s4348) +(trans s4904 s4329) +(trans s4904 s4342) +(trans s4904 s4355) +(trans s4905 s4336) +(trans s4905 s4349) +(trans s4905 s4362) +(trans s4906 s4343) +(trans s4906 s4356) +(trans s4906 s4369) +(trans s4907 s4350) +(trans s4907 s4363) +(trans s4907 s4376) +(trans s4908 s4357) +(trans s4908 s4370) +(trans s4908 s4383) +(trans s4909 s4364) +(trans s4909 s4377) +(trans s4909 s4390) +(trans s4910 s4371) +(trans s4910 s4384) +(trans s4910 s4397) +(trans s4911 s4378) +(trans s4911 s4391) +(trans s4911 s4404) +(trans s4912 s4385) +(trans s4912 s4398) +(trans s4912 s4411) +(trans s4913 s4392) +(trans s4913 s4405) +(trans s4913 s4418) +(trans s4914 s4399) +(trans s4914 s4412) +(trans s4914 s4425) +(trans s4915 s4406) +(trans s4915 s4419) +(trans s4915 s4432) +(trans s4916 s4413) +(trans s4916 s4426) +(trans s4916 s4439) +(trans s4917 s4420) +(trans s4917 s4433) +(trans s4917 s4446) +(trans s4918 s4427) +(trans s4918 s4440) +(trans s4918 s4453) +(trans s4919 s4434) +(trans s4919 s4447) +(trans s4919 s4460) +(trans s4920 s4441) +(trans s4920 s4454) +(trans s4920 s4467) +(trans s4921 s4448) +(trans s4921 s4461) +(trans s4921 s4474) +(trans s4922 s4455) +(trans s4922 s4468) +(trans s4922 s4481) +(trans s4923 s4462) +(trans s4923 s4475) +(trans s4923 s4488) +(trans s4924 s4469) +(trans s4924 s4482) +(trans s4924 s4495) +(trans s4925 s4476) +(trans s4925 s4489) +(trans s4925 s4502) +(trans s4926 s4483) +(trans s4926 s4496) +(trans s4926 s4509) +(trans s4927 s4490) +(trans s4927 s4503) +(trans s4927 s4516) +(trans s4928 s4497) +(trans s4928 s4510) +(trans s4928 s4523) +(trans s4929 s4504) +(trans s4929 s4517) +(trans s4929 s4530) +(trans s4930 s4511) +(trans s4930 s4524) +(trans s4930 s4537) +(trans s4931 s4518) +(trans s4931 s4531) +(trans s4931 s4544) +(trans s4932 s4525) +(trans s4932 s4538) +(trans s4932 s4551) +(trans s4933 s4532) +(trans s4933 s4545) +(trans s4933 s4558) +(trans s4934 s4539) +(trans s4934 s4552) +(trans s4934 s4565) +(trans s4935 s4546) +(trans s4935 s4559) +(trans s4935 s4572) +(trans s4936 s4553) +(trans s4936 s4566) +(trans s4936 s4579) +(trans s4937 s4560) +(trans s4937 s4573) +(trans s4937 s4586) +(trans s4938 s4567) +(trans s4938 s4580) +(trans s4938 s4593) +(trans s4939 s4574) +(trans s4939 s4587) +(trans s4939 s4600) +(trans s4940 s4581) +(trans s4940 s4594) +(trans s4940 s4607) +(trans s4941 s4588) +(trans s4941 s4601) +(trans s4941 s4614) +(trans s4942 s4595) +(trans s4942 s4608) +(trans s4942 s4621) +(trans s4943 s4602) +(trans s4943 s4615) +(trans s4943 s4628) +(trans s4944 s4609) +(trans s4944 s4622) +(trans s4944 s4635) +(trans s4945 s4616) +(trans s4945 s4629) +(trans s4945 s4642) +(trans s4946 s4623) +(trans s4946 s4636) +(trans s4946 s4649) +(trans s4947 s4630) +(trans s4947 s4643) +(trans s4947 s4656) +(trans s4948 s4637) +(trans s4948 s4650) +(trans s4948 s4663) +(trans s4949 s4644) +(trans s4949 s4657) +(trans s4949 s4670) +(trans s4950 s4651) +(trans s4950 s4664) +(trans s4950 s4677) +(trans s4951 s4658) +(trans s4951 s4671) +(trans s4951 s4684) +(trans s4952 s4665) +(trans s4952 s4678) +(trans s4952 s4691) +(trans s4953 s4672) +(trans s4953 s4685) +(trans s4953 s4698) +(trans s4954 s4679) +(trans s4954 s4692) +(trans s4954 s4705) +(trans s4955 s4686) +(trans s4955 s4699) +(trans s4955 s4712) +(trans s4956 s4693) +(trans s4956 s4706) +(trans s4956 s4719) +(trans s4957 s4700) +(trans s4957 s4713) +(trans s4957 s4726) +(trans s4958 s4707) +(trans s4958 s4720) +(trans s4958 s4733) +(trans s4959 s4714) +(trans s4959 s4727) +(trans s4959 s4740) +(trans s4960 s4721) +(trans s4960 s4734) +(trans s4960 s4747) +(trans s4961 s4728) +(trans s4961 s4741) +(trans s4961 s4754) +(trans s4962 s4735) +(trans s4962 s4748) +(trans s4962 s4761) +(trans s4963 s4742) +(trans s4963 s4755) +(trans s4963 s4768) +(trans s4964 s4749) +(trans s4964 s4762) +(trans s4964 s4775) +(trans s4965 s4756) +(trans s4965 s4769) +(trans s4965 s4782) +(trans s4966 s4763) +(trans s4966 s4776) +(trans s4966 s4789) +(trans s4967 s4770) +(trans s4967 s4783) +(trans s4967 s4796) +(trans s4968 s4777) +(trans s4968 s4790) +(trans s4968 s4803) +(trans s4969 s4784) +(trans s4969 s4797) +(trans s4969 s4810) +(trans s4970 s4791) +(trans s4970 s4804) +(trans s4970 s4817) +(trans s4971 s4798) +(trans s4971 s4811) +(trans s4971 s4824) +(trans s4972 s4805) +(trans s4972 s4818) +(trans s4972 s4831) +(trans s4973 s4812) +(trans s4973 s4825) +(trans s4973 s4838) +(trans s4974 s4819) +(trans s4974 s4832) +(trans s4974 s4845) +(trans s4975 s4826) +(trans s4975 s4839) +(trans s4975 s4852) +(trans s4976 s4833) +(trans s4976 s4846) +(trans s4976 s4859) +(trans s4977 s4840) +(trans s4977 s4853) +(trans s4977 s4866) +(trans s4978 s4847) +(trans s4978 s4860) +(trans s4978 s4873) +(trans s4979 s4854) +(trans s4979 s4867) +(trans s4979 s4880) +(trans s4980 s4861) +(trans s4980 s4874) +(trans s4980 s4887) +(trans s4981 s4868) +(trans s4981 s4881) +(trans s4981 s4894) +(trans s4982 s4875) +(trans s4982 s4888) +(trans s4982 s4901) +(trans s4983 s4882) +(trans s4983 s4895) +(trans s4983 s4908) +(trans s4984 s4889) +(trans s4984 s4902) +(trans s4984 s4915) +(trans s4985 s4896) +(trans s4985 s4909) +(trans s4985 s4922) +(trans s4986 s4903) +(trans s4986 s4916) +(trans s4986 s4929) +(trans s4987 s4910) +(trans s4987 s4923) +(trans s4987 s4936) +(trans s4988 s4917) +(trans s4988 s4930) +(trans s4988 s4943) +(trans s4989 s4924) +(trans s4989 s4937) +(trans s4989 s4950) +(trans s4990 s4931) +(trans s4990 s4944) +(trans s4990 s4957) +(trans s4991 s4938) +(trans s4991 s4951) +(trans s4991 s4964) +(trans s4992 s4945) +(trans s4992 s4958) +(trans s4992 s4971) +(trans s4993 s4952) +(trans s4993 s4965) +(trans s4993 s4978) +(trans s4994 s4959) +(trans s4994 s4972) +(trans s4994 s4985) +(trans s4995 s4966) +(trans s4995 s4979) +(trans s4995 s4992) +(trans s4996 s4973) +(trans s4996 s4986) +(trans s4996 s4999) +(trans s4997 s4980) +(trans s4997 s4993) +(trans s4997 s5006) +(trans s4998 s4987) +(trans s4998 s5000) +(trans s4998 s5013) +(trans s4999 s4994) +(trans s4999 s5007) +(trans s4999 s5020) +(trans s5000 s5001) +(trans s5000 s5014) +(trans s5000 s5027) +(trans s5001 s5008) +(trans s5001 s5021) +(trans s5001 s5034) +(trans s5002 s5015) +(trans s5002 s5028) +(trans s5002 s5041) +(trans s5003 s5022) +(trans s5003 s5035) +(trans s5003 s5048) +(trans s5004 s5029) +(trans s5004 s5042) +(trans s5004 s5055) +(trans s5005 s5036) +(trans s5005 s5049) +(trans s5005 s5062) +(trans s5006 s5043) +(trans s5006 s5056) +(trans s5006 s5069) +(trans s5007 s5050) +(trans s5007 s5063) +(trans s5007 s5076) +(trans s5008 s5057) +(trans s5008 s5070) +(trans s5008 s5083) +(trans s5009 s5064) +(trans s5009 s5077) +(trans s5009 s5090) +(trans s5010 s5071) +(trans s5010 s5084) +(trans s5010 s5097) +(trans s5011 s5078) +(trans s5011 s5091) +(trans s5011 s5104) +(trans s5012 s5085) +(trans s5012 s5098) +(trans s5012 s5111) +(trans s5013 s5092) +(trans s5013 s5105) +(trans s5013 s5118) +(trans s5014 s5099) +(trans s5014 s5112) +(trans s5014 s5125) +(trans s5015 s5106) +(trans s5015 s5119) +(trans s5015 s5132) +(trans s5016 s5113) +(trans s5016 s5126) +(trans s5016 s5139) +(trans s5017 s5120) +(trans s5017 s5133) +(trans s5017 s5146) +(trans s5018 s5127) +(trans s5018 s5140) +(trans s5018 s5153) +(trans s5019 s5134) +(trans s5019 s5147) +(trans s5019 s5160) +(trans s5020 s5141) +(trans s5020 s5154) +(trans s5020 s5167) +(trans s5021 s5148) +(trans s5021 s5161) +(trans s5021 s5174) +(trans s5022 s5155) +(trans s5022 s5168) +(trans s5022 s5181) +(trans s5023 s5162) +(trans s5023 s5175) +(trans s5023 s5188) +(trans s5024 s5169) +(trans s5024 s5182) +(trans s5024 s5195) +(trans s5025 s5176) +(trans s5025 s5189) +(trans s5025 s5202) +(trans s5026 s5183) +(trans s5026 s5196) +(trans s5026 s5209) +(trans s5027 s5190) +(trans s5027 s5203) +(trans s5027 s5216) +(trans s5028 s5197) +(trans s5028 s5210) +(trans s5028 s5223) +(trans s5029 s5204) +(trans s5029 s5217) +(trans s5029 s5230) +(trans s5030 s5211) +(trans s5030 s5224) +(trans s5030 s5237) +(trans s5031 s5218) +(trans s5031 s5231) +(trans s5031 s5244) +(trans s5032 s5225) +(trans s5032 s5238) +(trans s5032 s5251) +(trans s5033 s5232) +(trans s5033 s5245) +(trans s5033 s5258) +(trans s5034 s5239) +(trans s5034 s5252) +(trans s5034 s5265) +(trans s5035 s5246) +(trans s5035 s5259) +(trans s5035 s5272) +(trans s5036 s5253) +(trans s5036 s5266) +(trans s5036 s5279) +(trans s5037 s5260) +(trans s5037 s5273) +(trans s5037 s5286) +(trans s5038 s5267) +(trans s5038 s5280) +(trans s5038 s5293) +(trans s5039 s5274) +(trans s5039 s5287) +(trans s5039 s5300) +(trans s5040 s5281) +(trans s5040 s5294) +(trans s5040 s5307) +(trans s5041 s5288) +(trans s5041 s5301) +(trans s5041 s5314) +(trans s5042 s5295) +(trans s5042 s5308) +(trans s5042 s5321) +(trans s5043 s5302) +(trans s5043 s5315) +(trans s5043 s5328) +(trans s5044 s5309) +(trans s5044 s5322) +(trans s5044 s5335) +(trans s5045 s5316) +(trans s5045 s5329) +(trans s5045 s5342) +(trans s5046 s5323) +(trans s5046 s5336) +(trans s5046 s5349) +(trans s5047 s5330) +(trans s5047 s5343) +(trans s5047 s5356) +(trans s5048 s5337) +(trans s5048 s5350) +(trans s5048 s5363) +(trans s5049 s5344) +(trans s5049 s5357) +(trans s5049 s5370) +(trans s5050 s5351) +(trans s5050 s5364) +(trans s5050 s5377) +(trans s5051 s5358) +(trans s5051 s5371) +(trans s5051 s5384) +(trans s5052 s5365) +(trans s5052 s5378) +(trans s5052 s5391) +(trans s5053 s5372) +(trans s5053 s5385) +(trans s5053 s5398) +(trans s5054 s5379) +(trans s5054 s5392) +(trans s5054 s5405) +(trans s5055 s5386) +(trans s5055 s5399) +(trans s5055 s5412) +(trans s5056 s5393) +(trans s5056 s5406) +(trans s5056 s5419) +(trans s5057 s5400) +(trans s5057 s5413) +(trans s5057 s5426) +(trans s5058 s5407) +(trans s5058 s5420) +(trans s5058 s5433) +(trans s5059 s5414) +(trans s5059 s5427) +(trans s5059 s5440) +(trans s5060 s5421) +(trans s5060 s5434) +(trans s5060 s5447) +(trans s5061 s5428) +(trans s5061 s5441) +(trans s5061 s5454) +(trans s5062 s5435) +(trans s5062 s5448) +(trans s5062 s5461) +(trans s5063 s5442) +(trans s5063 s5455) +(trans s5063 s5468) +(trans s5064 s5449) +(trans s5064 s5462) +(trans s5064 s5475) +(trans s5065 s5456) +(trans s5065 s5469) +(trans s5065 s5482) +(trans s5066 s5463) +(trans s5066 s5476) +(trans s5066 s5489) +(trans s5067 s5470) +(trans s5067 s5483) +(trans s5067 s5496) +(trans s5068 s5477) +(trans s5068 s5490) +(trans s5068 s5503) +(trans s5069 s5484) +(trans s5069 s5497) +(trans s5069 s5510) +(trans s5070 s5491) +(trans s5070 s5504) +(trans s5070 s5517) +(trans s5071 s5498) +(trans s5071 s5511) +(trans s5071 s5524) +(trans s5072 s5505) +(trans s5072 s5518) +(trans s5072 s5531) +(trans s5073 s5512) +(trans s5073 s5525) +(trans s5073 s5538) +(trans s5074 s5519) +(trans s5074 s5532) +(trans s5074 s5545) +(trans s5075 s5526) +(trans s5075 s5539) +(trans s5075 s5552) +(trans s5076 s5533) +(trans s5076 s5546) +(trans s5076 s5559) +(trans s5077 s5540) +(trans s5077 s5553) +(trans s5077 s5566) +(trans s5078 s5547) +(trans s5078 s5560) +(trans s5078 s5573) +(trans s5079 s5554) +(trans s5079 s5567) +(trans s5079 s5580) +(trans s5080 s5561) +(trans s5080 s5574) +(trans s5080 s5587) +(trans s5081 s5568) +(trans s5081 s5581) +(trans s5081 s5594) +(trans s5082 s5575) +(trans s5082 s5588) +(trans s5082 s5601) +(trans s5083 s5582) +(trans s5083 s5595) +(trans s5083 s5608) +(trans s5084 s5589) +(trans s5084 s5602) +(trans s5084 s5615) +(trans s5085 s5596) +(trans s5085 s5609) +(trans s5085 s5622) +(trans s5086 s5603) +(trans s5086 s5616) +(trans s5086 s5629) +(trans s5087 s5610) +(trans s5087 s5623) +(trans s5087 s5636) +(trans s5088 s5617) +(trans s5088 s5630) +(trans s5088 s5643) +(trans s5089 s5624) +(trans s5089 s5637) +(trans s5089 s5650) +(trans s5090 s5631) +(trans s5090 s5644) +(trans s5090 s5657) +(trans s5091 s5638) +(trans s5091 s5651) +(trans s5091 s5664) +(trans s5092 s5645) +(trans s5092 s5658) +(trans s5092 s5671) +(trans s5093 s5652) +(trans s5093 s5665) +(trans s5093 s5678) +(trans s5094 s5659) +(trans s5094 s5672) +(trans s5094 s5685) +(trans s5095 s5666) +(trans s5095 s5679) +(trans s5095 s5692) +(trans s5096 s5673) +(trans s5096 s5686) +(trans s5096 s5699) +(trans s5097 s5680) +(trans s5097 s5693) +(trans s5097 s5706) +(trans s5098 s5687) +(trans s5098 s5700) +(trans s5098 s5713) +(trans s5099 s5694) +(trans s5099 s5707) +(trans s5099 s5720) +(trans s5100 s5701) +(trans s5100 s5714) +(trans s5100 s5727) +(trans s5101 s5708) +(trans s5101 s5721) +(trans s5101 s5734) +(trans s5102 s5715) +(trans s5102 s5728) +(trans s5102 s5741) +(trans s5103 s5722) +(trans s5103 s5735) +(trans s5103 s5748) +(trans s5104 s5729) +(trans s5104 s5742) +(trans s5104 s5755) +(trans s5105 s5736) +(trans s5105 s5749) +(trans s5105 s5762) +(trans s5106 s5743) +(trans s5106 s5756) +(trans s5106 s5769) +(trans s5107 s5750) +(trans s5107 s5763) +(trans s5107 s5776) +(trans s5108 s5757) +(trans s5108 s5770) +(trans s5108 s5783) +(trans s5109 s5764) +(trans s5109 s5777) +(trans s5109 s5790) +(trans s5110 s5771) +(trans s5110 s5784) +(trans s5110 s5797) +(trans s5111 s5778) +(trans s5111 s5791) +(trans s5111 s5804) +(trans s5112 s5785) +(trans s5112 s5798) +(trans s5112 s5811) +(trans s5113 s5792) +(trans s5113 s5805) +(trans s5113 s5818) +(trans s5114 s5799) +(trans s5114 s5812) +(trans s5114 s5825) +(trans s5115 s5806) +(trans s5115 s5819) +(trans s5115 s5832) +(trans s5116 s5813) +(trans s5116 s5826) +(trans s5116 s5839) +(trans s5117 s5820) +(trans s5117 s5833) +(trans s5117 s5846) +(trans s5118 s5827) +(trans s5118 s5840) +(trans s5118 s5853) +(trans s5119 s5834) +(trans s5119 s5847) +(trans s5119 s5860) +(trans s5120 s5841) +(trans s5120 s5854) +(trans s5120 s5867) +(trans s5121 s5848) +(trans s5121 s5861) +(trans s5121 s5874) +(trans s5122 s5855) +(trans s5122 s5868) +(trans s5122 s5881) +(trans s5123 s5862) +(trans s5123 s5875) +(trans s5123 s5888) +(trans s5124 s5869) +(trans s5124 s5882) +(trans s5124 s5895) +(trans s5125 s5876) +(trans s5125 s5889) +(trans s5125 s5902) +(trans s5126 s5883) +(trans s5126 s5896) +(trans s5126 s5909) +(trans s5127 s5890) +(trans s5127 s5903) +(trans s5127 s5916) +(trans s5128 s5897) +(trans s5128 s5910) +(trans s5128 s5923) +(trans s5129 s5904) +(trans s5129 s5917) +(trans s5129 s5930) +(trans s5130 s5911) +(trans s5130 s5924) +(trans s5130 s5937) +(trans s5131 s5918) +(trans s5131 s5931) +(trans s5131 s5944) +(trans s5132 s5925) +(trans s5132 s5938) +(trans s5132 s5951) +(trans s5133 s5932) +(trans s5133 s5945) +(trans s5133 s5958) +(trans s5134 s5939) +(trans s5134 s5952) +(trans s5134 s5965) +(trans s5135 s5946) +(trans s5135 s5959) +(trans s5135 s5972) +(trans s5136 s5953) +(trans s5136 s5966) +(trans s5136 s5979) +(trans s5137 s5960) +(trans s5137 s5973) +(trans s5137 s5986) +(trans s5138 s5967) +(trans s5138 s5980) +(trans s5138 s5993) +(trans s5139 s5974) +(trans s5139 s5987) +(trans s5139 s0) +(trans s5140 s5981) +(trans s5140 s5994) +(trans s5140 s7) +(trans s5141 s5988) +(trans s5141 s1) +(trans s5141 s14) +(trans s5142 s5995) +(trans s5142 s8) +(trans s5142 s21) +(trans s5143 s2) +(trans s5143 s15) +(trans s5143 s28) +(trans s5144 s9) +(trans s5144 s22) +(trans s5144 s35) +(trans s5145 s16) +(trans s5145 s29) +(trans s5145 s42) +(trans s5146 s23) +(trans s5146 s36) +(trans s5146 s49) +(trans s5147 s30) +(trans s5147 s43) +(trans s5147 s56) +(trans s5148 s37) +(trans s5148 s50) +(trans s5148 s63) +(trans s5149 s44) +(trans s5149 s57) +(trans s5149 s70) +(trans s5150 s51) +(trans s5150 s64) +(trans s5150 s77) +(trans s5151 s58) +(trans s5151 s71) +(trans s5151 s84) +(trans s5152 s65) +(trans s5152 s78) +(trans s5152 s91) +(trans s5153 s72) +(trans s5153 s85) +(trans s5153 s98) +(trans s5154 s79) +(trans s5154 s92) +(trans s5154 s105) +(trans s5155 s86) +(trans s5155 s99) +(trans s5155 s112) +(trans s5156 s93) +(trans s5156 s106) +(trans s5156 s119) +(trans s5157 s100) +(trans s5157 s113) +(trans s5157 s126) +(trans s5158 s107) +(trans s5158 s120) +(trans s5158 s133) +(trans s5159 s114) +(trans s5159 s127) +(trans s5159 s140) +(trans s5160 s121) +(trans s5160 s134) +(trans s5160 s147) +(trans s5161 s128) +(trans s5161 s141) +(trans s5161 s154) +(trans s5162 s135) +(trans s5162 s148) +(trans s5162 s161) +(trans s5163 s142) +(trans s5163 s155) +(trans s5163 s168) +(trans s5164 s149) +(trans s5164 s162) +(trans s5164 s175) +(trans s5165 s156) +(trans s5165 s169) +(trans s5165 s182) +(trans s5166 s163) +(trans s5166 s176) +(trans s5166 s189) +(trans s5167 s170) +(trans s5167 s183) +(trans s5167 s196) +(trans s5168 s177) +(trans s5168 s190) +(trans s5168 s203) +(trans s5169 s184) +(trans s5169 s197) +(trans s5169 s210) +(trans s5170 s191) +(trans s5170 s204) +(trans s5170 s217) +(trans s5171 s198) +(trans s5171 s211) +(trans s5171 s224) +(trans s5172 s205) +(trans s5172 s218) +(trans s5172 s231) +(trans s5173 s212) +(trans s5173 s225) +(trans s5173 s238) +(trans s5174 s219) +(trans s5174 s232) +(trans s5174 s245) +(trans s5175 s226) +(trans s5175 s239) +(trans s5175 s252) +(trans s5176 s233) +(trans s5176 s246) +(trans s5176 s259) +(trans s5177 s240) +(trans s5177 s253) +(trans s5177 s266) +(trans s5178 s247) +(trans s5178 s260) +(trans s5178 s273) +(trans s5179 s254) +(trans s5179 s267) +(trans s5179 s280) +(trans s5180 s261) +(trans s5180 s274) +(trans s5180 s287) +(trans s5181 s268) +(trans s5181 s281) +(trans s5181 s294) +(trans s5182 s275) +(trans s5182 s288) +(trans s5182 s301) +(trans s5183 s282) +(trans s5183 s295) +(trans s5183 s308) +(trans s5184 s289) +(trans s5184 s302) +(trans s5184 s315) +(trans s5185 s296) +(trans s5185 s309) +(trans s5185 s322) +(trans s5186 s303) +(trans s5186 s316) +(trans s5186 s329) +(trans s5187 s310) +(trans s5187 s323) +(trans s5187 s336) +(trans s5188 s317) +(trans s5188 s330) +(trans s5188 s343) +(trans s5189 s324) +(trans s5189 s337) +(trans s5189 s350) +(trans s5190 s331) +(trans s5190 s344) +(trans s5190 s357) +(trans s5191 s338) +(trans s5191 s351) +(trans s5191 s364) +(trans s5192 s345) +(trans s5192 s358) +(trans s5192 s371) +(trans s5193 s352) +(trans s5193 s365) +(trans s5193 s378) +(trans s5194 s359) +(trans s5194 s372) +(trans s5194 s385) +(trans s5195 s366) +(trans s5195 s379) +(trans s5195 s392) +(trans s5196 s373) +(trans s5196 s386) +(trans s5196 s399) +(trans s5197 s380) +(trans s5197 s393) +(trans s5197 s406) +(trans s5198 s387) +(trans s5198 s400) +(trans s5198 s413) +(trans s5199 s394) +(trans s5199 s407) +(trans s5199 s420) +(trans s5200 s401) +(trans s5200 s414) +(trans s5200 s427) +(trans s5201 s408) +(trans s5201 s421) +(trans s5201 s434) +(trans s5202 s415) +(trans s5202 s428) +(trans s5202 s441) +(trans s5203 s422) +(trans s5203 s435) +(trans s5203 s448) +(trans s5204 s429) +(trans s5204 s442) +(trans s5204 s455) +(trans s5205 s436) +(trans s5205 s449) +(trans s5205 s462) +(trans s5206 s443) +(trans s5206 s456) +(trans s5206 s469) +(trans s5207 s450) +(trans s5207 s463) +(trans s5207 s476) +(trans s5208 s457) +(trans s5208 s470) +(trans s5208 s483) +(trans s5209 s464) +(trans s5209 s477) +(trans s5209 s490) +(trans s5210 s471) +(trans s5210 s484) +(trans s5210 s497) +(trans s5211 s478) +(trans s5211 s491) +(trans s5211 s504) +(trans s5212 s485) +(trans s5212 s498) +(trans s5212 s511) +(trans s5213 s492) +(trans s5213 s505) +(trans s5213 s518) +(trans s5214 s499) +(trans s5214 s512) +(trans s5214 s525) +(trans s5215 s506) +(trans s5215 s519) +(trans s5215 s532) +(trans s5216 s513) +(trans s5216 s526) +(trans s5216 s539) +(trans s5217 s520) +(trans s5217 s533) +(trans s5217 s546) +(trans s5218 s527) +(trans s5218 s540) +(trans s5218 s553) +(trans s5219 s534) +(trans s5219 s547) +(trans s5219 s560) +(trans s5220 s541) +(trans s5220 s554) +(trans s5220 s567) +(trans s5221 s548) +(trans s5221 s561) +(trans s5221 s574) +(trans s5222 s555) +(trans s5222 s568) +(trans s5222 s581) +(trans s5223 s562) +(trans s5223 s575) +(trans s5223 s588) +(trans s5224 s569) +(trans s5224 s582) +(trans s5224 s595) +(trans s5225 s576) +(trans s5225 s589) +(trans s5225 s602) +(trans s5226 s583) +(trans s5226 s596) +(trans s5226 s609) +(trans s5227 s590) +(trans s5227 s603) +(trans s5227 s616) +(trans s5228 s597) +(trans s5228 s610) +(trans s5228 s623) +(trans s5229 s604) +(trans s5229 s617) +(trans s5229 s630) +(trans s5230 s611) +(trans s5230 s624) +(trans s5230 s637) +(trans s5231 s618) +(trans s5231 s631) +(trans s5231 s644) +(trans s5232 s625) +(trans s5232 s638) +(trans s5232 s651) +(trans s5233 s632) +(trans s5233 s645) +(trans s5233 s658) +(trans s5234 s639) +(trans s5234 s652) +(trans s5234 s665) +(trans s5235 s646) +(trans s5235 s659) +(trans s5235 s672) +(trans s5236 s653) +(trans s5236 s666) +(trans s5236 s679) +(trans s5237 s660) +(trans s5237 s673) +(trans s5237 s686) +(trans s5238 s667) +(trans s5238 s680) +(trans s5238 s693) +(trans s5239 s674) +(trans s5239 s687) +(trans s5239 s700) +(trans s5240 s681) +(trans s5240 s694) +(trans s5240 s707) +(trans s5241 s688) +(trans s5241 s701) +(trans s5241 s714) +(trans s5242 s695) +(trans s5242 s708) +(trans s5242 s721) +(trans s5243 s702) +(trans s5243 s715) +(trans s5243 s728) +(trans s5244 s709) +(trans s5244 s722) +(trans s5244 s735) +(trans s5245 s716) +(trans s5245 s729) +(trans s5245 s742) +(trans s5246 s723) +(trans s5246 s736) +(trans s5246 s749) +(trans s5247 s730) +(trans s5247 s743) +(trans s5247 s756) +(trans s5248 s737) +(trans s5248 s750) +(trans s5248 s763) +(trans s5249 s744) +(trans s5249 s757) +(trans s5249 s770) +(trans s5250 s751) +(trans s5250 s764) +(trans s5250 s777) +(trans s5251 s758) +(trans s5251 s771) +(trans s5251 s784) +(trans s5252 s765) +(trans s5252 s778) +(trans s5252 s791) +(trans s5253 s772) +(trans s5253 s785) +(trans s5253 s798) +(trans s5254 s779) +(trans s5254 s792) +(trans s5254 s805) +(trans s5255 s786) +(trans s5255 s799) +(trans s5255 s812) +(trans s5256 s793) +(trans s5256 s806) +(trans s5256 s819) +(trans s5257 s800) +(trans s5257 s813) +(trans s5257 s826) +(trans s5258 s807) +(trans s5258 s820) +(trans s5258 s833) +(trans s5259 s814) +(trans s5259 s827) +(trans s5259 s840) +(trans s5260 s821) +(trans s5260 s834) +(trans s5260 s847) +(trans s5261 s828) +(trans s5261 s841) +(trans s5261 s854) +(trans s5262 s835) +(trans s5262 s848) +(trans s5262 s861) +(trans s5263 s842) +(trans s5263 s855) +(trans s5263 s868) +(trans s5264 s849) +(trans s5264 s862) +(trans s5264 s875) +(trans s5265 s856) +(trans s5265 s869) +(trans s5265 s882) +(trans s5266 s863) +(trans s5266 s876) +(trans s5266 s889) +(trans s5267 s870) +(trans s5267 s883) +(trans s5267 s896) +(trans s5268 s877) +(trans s5268 s890) +(trans s5268 s903) +(trans s5269 s884) +(trans s5269 s897) +(trans s5269 s910) +(trans s5270 s891) +(trans s5270 s904) +(trans s5270 s917) +(trans s5271 s898) +(trans s5271 s911) +(trans s5271 s924) +(trans s5272 s905) +(trans s5272 s918) +(trans s5272 s931) +(trans s5273 s912) +(trans s5273 s925) +(trans s5273 s938) +(trans s5274 s919) +(trans s5274 s932) +(trans s5274 s945) +(trans s5275 s926) +(trans s5275 s939) +(trans s5275 s952) +(trans s5276 s933) +(trans s5276 s946) +(trans s5276 s959) +(trans s5277 s940) +(trans s5277 s953) +(trans s5277 s966) +(trans s5278 s947) +(trans s5278 s960) +(trans s5278 s973) +(trans s5279 s954) +(trans s5279 s967) +(trans s5279 s980) +(trans s5280 s961) +(trans s5280 s974) +(trans s5280 s987) +(trans s5281 s968) +(trans s5281 s981) +(trans s5281 s994) +(trans s5282 s975) +(trans s5282 s988) +(trans s5282 s1001) +(trans s5283 s982) +(trans s5283 s995) +(trans s5283 s1008) +(trans s5284 s989) +(trans s5284 s1002) +(trans s5284 s1015) +(trans s5285 s996) +(trans s5285 s1009) +(trans s5285 s1022) +(trans s5286 s1003) +(trans s5286 s1016) +(trans s5286 s1029) +(trans s5287 s1010) +(trans s5287 s1023) +(trans s5287 s1036) +(trans s5288 s1017) +(trans s5288 s1030) +(trans s5288 s1043) +(trans s5289 s1024) +(trans s5289 s1037) +(trans s5289 s1050) +(trans s5290 s1031) +(trans s5290 s1044) +(trans s5290 s1057) +(trans s5291 s1038) +(trans s5291 s1051) +(trans s5291 s1064) +(trans s5292 s1045) +(trans s5292 s1058) +(trans s5292 s1071) +(trans s5293 s1052) +(trans s5293 s1065) +(trans s5293 s1078) +(trans s5294 s1059) +(trans s5294 s1072) +(trans s5294 s1085) +(trans s5295 s1066) +(trans s5295 s1079) +(trans s5295 s1092) +(trans s5296 s1073) +(trans s5296 s1086) +(trans s5296 s1099) +(trans s5297 s1080) +(trans s5297 s1093) +(trans s5297 s1106) +(trans s5298 s1087) +(trans s5298 s1100) +(trans s5298 s1113) +(trans s5299 s1094) +(trans s5299 s1107) +(trans s5299 s1120) +(trans s5300 s1101) +(trans s5300 s1114) +(trans s5300 s1127) +(trans s5301 s1108) +(trans s5301 s1121) +(trans s5301 s1134) +(trans s5302 s1115) +(trans s5302 s1128) +(trans s5302 s1141) +(trans s5303 s1122) +(trans s5303 s1135) +(trans s5303 s1148) +(trans s5304 s1129) +(trans s5304 s1142) +(trans s5304 s1155) +(trans s5305 s1136) +(trans s5305 s1149) +(trans s5305 s1162) +(trans s5306 s1143) +(trans s5306 s1156) +(trans s5306 s1169) +(trans s5307 s1150) +(trans s5307 s1163) +(trans s5307 s1176) +(trans s5308 s1157) +(trans s5308 s1170) +(trans s5308 s1183) +(trans s5309 s1164) +(trans s5309 s1177) +(trans s5309 s1190) +(trans s5310 s1171) +(trans s5310 s1184) +(trans s5310 s1197) +(trans s5311 s1178) +(trans s5311 s1191) +(trans s5311 s1204) +(trans s5312 s1185) +(trans s5312 s1198) +(trans s5312 s1211) +(trans s5313 s1192) +(trans s5313 s1205) +(trans s5313 s1218) +(trans s5314 s1199) +(trans s5314 s1212) +(trans s5314 s1225) +(trans s5315 s1206) +(trans s5315 s1219) +(trans s5315 s1232) +(trans s5316 s1213) +(trans s5316 s1226) +(trans s5316 s1239) +(trans s5317 s1220) +(trans s5317 s1233) +(trans s5317 s1246) +(trans s5318 s1227) +(trans s5318 s1240) +(trans s5318 s1253) +(trans s5319 s1234) +(trans s5319 s1247) +(trans s5319 s1260) +(trans s5320 s1241) +(trans s5320 s1254) +(trans s5320 s1267) +(trans s5321 s1248) +(trans s5321 s1261) +(trans s5321 s1274) +(trans s5322 s1255) +(trans s5322 s1268) +(trans s5322 s1281) +(trans s5323 s1262) +(trans s5323 s1275) +(trans s5323 s1288) +(trans s5324 s1269) +(trans s5324 s1282) +(trans s5324 s1295) +(trans s5325 s1276) +(trans s5325 s1289) +(trans s5325 s1302) +(trans s5326 s1283) +(trans s5326 s1296) +(trans s5326 s1309) +(trans s5327 s1290) +(trans s5327 s1303) +(trans s5327 s1316) +(trans s5328 s1297) +(trans s5328 s1310) +(trans s5328 s1323) +(trans s5329 s1304) +(trans s5329 s1317) +(trans s5329 s1330) +(trans s5330 s1311) +(trans s5330 s1324) +(trans s5330 s1337) +(trans s5331 s1318) +(trans s5331 s1331) +(trans s5331 s1344) +(trans s5332 s1325) +(trans s5332 s1338) +(trans s5332 s1351) +(trans s5333 s1332) +(trans s5333 s1345) +(trans s5333 s1358) +(trans s5334 s1339) +(trans s5334 s1352) +(trans s5334 s1365) +(trans s5335 s1346) +(trans s5335 s1359) +(trans s5335 s1372) +(trans s5336 s1353) +(trans s5336 s1366) +(trans s5336 s1379) +(trans s5337 s1360) +(trans s5337 s1373) +(trans s5337 s1386) +(trans s5338 s1367) +(trans s5338 s1380) +(trans s5338 s1393) +(trans s5339 s1374) +(trans s5339 s1387) +(trans s5339 s1400) +(trans s5340 s1381) +(trans s5340 s1394) +(trans s5340 s1407) +(trans s5341 s1388) +(trans s5341 s1401) +(trans s5341 s1414) +(trans s5342 s1395) +(trans s5342 s1408) +(trans s5342 s1421) +(trans s5343 s1402) +(trans s5343 s1415) +(trans s5343 s1428) +(trans s5344 s1409) +(trans s5344 s1422) +(trans s5344 s1435) +(trans s5345 s1416) +(trans s5345 s1429) +(trans s5345 s1442) +(trans s5346 s1423) +(trans s5346 s1436) +(trans s5346 s1449) +(trans s5347 s1430) +(trans s5347 s1443) +(trans s5347 s1456) +(trans s5348 s1437) +(trans s5348 s1450) +(trans s5348 s1463) +(trans s5349 s1444) +(trans s5349 s1457) +(trans s5349 s1470) +(trans s5350 s1451) +(trans s5350 s1464) +(trans s5350 s1477) +(trans s5351 s1458) +(trans s5351 s1471) +(trans s5351 s1484) +(trans s5352 s1465) +(trans s5352 s1478) +(trans s5352 s1491) +(trans s5353 s1472) +(trans s5353 s1485) +(trans s5353 s1498) +(trans s5354 s1479) +(trans s5354 s1492) +(trans s5354 s1505) +(trans s5355 s1486) +(trans s5355 s1499) +(trans s5355 s1512) +(trans s5356 s1493) +(trans s5356 s1506) +(trans s5356 s1519) +(trans s5357 s1500) +(trans s5357 s1513) +(trans s5357 s1526) +(trans s5358 s1507) +(trans s5358 s1520) +(trans s5358 s1533) +(trans s5359 s1514) +(trans s5359 s1527) +(trans s5359 s1540) +(trans s5360 s1521) +(trans s5360 s1534) +(trans s5360 s1547) +(trans s5361 s1528) +(trans s5361 s1541) +(trans s5361 s1554) +(trans s5362 s1535) +(trans s5362 s1548) +(trans s5362 s1561) +(trans s5363 s1542) +(trans s5363 s1555) +(trans s5363 s1568) +(trans s5364 s1549) +(trans s5364 s1562) +(trans s5364 s1575) +(trans s5365 s1556) +(trans s5365 s1569) +(trans s5365 s1582) +(trans s5366 s1563) +(trans s5366 s1576) +(trans s5366 s1589) +(trans s5367 s1570) +(trans s5367 s1583) +(trans s5367 s1596) +(trans s5368 s1577) +(trans s5368 s1590) +(trans s5368 s1603) +(trans s5369 s1584) +(trans s5369 s1597) +(trans s5369 s1610) +(trans s5370 s1591) +(trans s5370 s1604) +(trans s5370 s1617) +(trans s5371 s1598) +(trans s5371 s1611) +(trans s5371 s1624) +(trans s5372 s1605) +(trans s5372 s1618) +(trans s5372 s1631) +(trans s5373 s1612) +(trans s5373 s1625) +(trans s5373 s1638) +(trans s5374 s1619) +(trans s5374 s1632) +(trans s5374 s1645) +(trans s5375 s1626) +(trans s5375 s1639) +(trans s5375 s1652) +(trans s5376 s1633) +(trans s5376 s1646) +(trans s5376 s1659) +(trans s5377 s1640) +(trans s5377 s1653) +(trans s5377 s1666) +(trans s5378 s1647) +(trans s5378 s1660) +(trans s5378 s1673) +(trans s5379 s1654) +(trans s5379 s1667) +(trans s5379 s1680) +(trans s5380 s1661) +(trans s5380 s1674) +(trans s5380 s1687) +(trans s5381 s1668) +(trans s5381 s1681) +(trans s5381 s1694) +(trans s5382 s1675) +(trans s5382 s1688) +(trans s5382 s1701) +(trans s5383 s1682) +(trans s5383 s1695) +(trans s5383 s1708) +(trans s5384 s1689) +(trans s5384 s1702) +(trans s5384 s1715) +(trans s5385 s1696) +(trans s5385 s1709) +(trans s5385 s1722) +(trans s5386 s1703) +(trans s5386 s1716) +(trans s5386 s1729) +(trans s5387 s1710) +(trans s5387 s1723) +(trans s5387 s1736) +(trans s5388 s1717) +(trans s5388 s1730) +(trans s5388 s1743) +(trans s5389 s1724) +(trans s5389 s1737) +(trans s5389 s1750) +(trans s5390 s1731) +(trans s5390 s1744) +(trans s5390 s1757) +(trans s5391 s1738) +(trans s5391 s1751) +(trans s5391 s1764) +(trans s5392 s1745) +(trans s5392 s1758) +(trans s5392 s1771) +(trans s5393 s1752) +(trans s5393 s1765) +(trans s5393 s1778) +(trans s5394 s1759) +(trans s5394 s1772) +(trans s5394 s1785) +(trans s5395 s1766) +(trans s5395 s1779) +(trans s5395 s1792) +(trans s5396 s1773) +(trans s5396 s1786) +(trans s5396 s1799) +(trans s5397 s1780) +(trans s5397 s1793) +(trans s5397 s1806) +(trans s5398 s1787) +(trans s5398 s1800) +(trans s5398 s1813) +(trans s5399 s1794) +(trans s5399 s1807) +(trans s5399 s1820) +(trans s5400 s1801) +(trans s5400 s1814) +(trans s5400 s1827) +(trans s5401 s1808) +(trans s5401 s1821) +(trans s5401 s1834) +(trans s5402 s1815) +(trans s5402 s1828) +(trans s5402 s1841) +(trans s5403 s1822) +(trans s5403 s1835) +(trans s5403 s1848) +(trans s5404 s1829) +(trans s5404 s1842) +(trans s5404 s1855) +(trans s5405 s1836) +(trans s5405 s1849) +(trans s5405 s1862) +(trans s5406 s1843) +(trans s5406 s1856) +(trans s5406 s1869) +(trans s5407 s1850) +(trans s5407 s1863) +(trans s5407 s1876) +(trans s5408 s1857) +(trans s5408 s1870) +(trans s5408 s1883) +(trans s5409 s1864) +(trans s5409 s1877) +(trans s5409 s1890) +(trans s5410 s1871) +(trans s5410 s1884) +(trans s5410 s1897) +(trans s5411 s1878) +(trans s5411 s1891) +(trans s5411 s1904) +(trans s5412 s1885) +(trans s5412 s1898) +(trans s5412 s1911) +(trans s5413 s1892) +(trans s5413 s1905) +(trans s5413 s1918) +(trans s5414 s1899) +(trans s5414 s1912) +(trans s5414 s1925) +(trans s5415 s1906) +(trans s5415 s1919) +(trans s5415 s1932) +(trans s5416 s1913) +(trans s5416 s1926) +(trans s5416 s1939) +(trans s5417 s1920) +(trans s5417 s1933) +(trans s5417 s1946) +(trans s5418 s1927) +(trans s5418 s1940) +(trans s5418 s1953) +(trans s5419 s1934) +(trans s5419 s1947) +(trans s5419 s1960) +(trans s5420 s1941) +(trans s5420 s1954) +(trans s5420 s1967) +(trans s5421 s1948) +(trans s5421 s1961) +(trans s5421 s1974) +(trans s5422 s1955) +(trans s5422 s1968) +(trans s5422 s1981) +(trans s5423 s1962) +(trans s5423 s1975) +(trans s5423 s1988) +(trans s5424 s1969) +(trans s5424 s1982) +(trans s5424 s1995) +(trans s5425 s1976) +(trans s5425 s1989) +(trans s5425 s2002) +(trans s5426 s1983) +(trans s5426 s1996) +(trans s5426 s2009) +(trans s5427 s1990) +(trans s5427 s2003) +(trans s5427 s2016) +(trans s5428 s1997) +(trans s5428 s2010) +(trans s5428 s2023) +(trans s5429 s2004) +(trans s5429 s2017) +(trans s5429 s2030) +(trans s5430 s2011) +(trans s5430 s2024) +(trans s5430 s2037) +(trans s5431 s2018) +(trans s5431 s2031) +(trans s5431 s2044) +(trans s5432 s2025) +(trans s5432 s2038) +(trans s5432 s2051) +(trans s5433 s2032) +(trans s5433 s2045) +(trans s5433 s2058) +(trans s5434 s2039) +(trans s5434 s2052) +(trans s5434 s2065) +(trans s5435 s2046) +(trans s5435 s2059) +(trans s5435 s2072) +(trans s5436 s2053) +(trans s5436 s2066) +(trans s5436 s2079) +(trans s5437 s2060) +(trans s5437 s2073) +(trans s5437 s2086) +(trans s5438 s2067) +(trans s5438 s2080) +(trans s5438 s2093) +(trans s5439 s2074) +(trans s5439 s2087) +(trans s5439 s2100) +(trans s5440 s2081) +(trans s5440 s2094) +(trans s5440 s2107) +(trans s5441 s2088) +(trans s5441 s2101) +(trans s5441 s2114) +(trans s5442 s2095) +(trans s5442 s2108) +(trans s5442 s2121) +(trans s5443 s2102) +(trans s5443 s2115) +(trans s5443 s2128) +(trans s5444 s2109) +(trans s5444 s2122) +(trans s5444 s2135) +(trans s5445 s2116) +(trans s5445 s2129) +(trans s5445 s2142) +(trans s5446 s2123) +(trans s5446 s2136) +(trans s5446 s2149) +(trans s5447 s2130) +(trans s5447 s2143) +(trans s5447 s2156) +(trans s5448 s2137) +(trans s5448 s2150) +(trans s5448 s2163) +(trans s5449 s2144) +(trans s5449 s2157) +(trans s5449 s2170) +(trans s5450 s2151) +(trans s5450 s2164) +(trans s5450 s2177) +(trans s5451 s2158) +(trans s5451 s2171) +(trans s5451 s2184) +(trans s5452 s2165) +(trans s5452 s2178) +(trans s5452 s2191) +(trans s5453 s2172) +(trans s5453 s2185) +(trans s5453 s2198) +(trans s5454 s2179) +(trans s5454 s2192) +(trans s5454 s2205) +(trans s5455 s2186) +(trans s5455 s2199) +(trans s5455 s2212) +(trans s5456 s2193) +(trans s5456 s2206) +(trans s5456 s2219) +(trans s5457 s2200) +(trans s5457 s2213) +(trans s5457 s2226) +(trans s5458 s2207) +(trans s5458 s2220) +(trans s5458 s2233) +(trans s5459 s2214) +(trans s5459 s2227) +(trans s5459 s2240) +(trans s5460 s2221) +(trans s5460 s2234) +(trans s5460 s2247) +(trans s5461 s2228) +(trans s5461 s2241) +(trans s5461 s2254) +(trans s5462 s2235) +(trans s5462 s2248) +(trans s5462 s2261) +(trans s5463 s2242) +(trans s5463 s2255) +(trans s5463 s2268) +(trans s5464 s2249) +(trans s5464 s2262) +(trans s5464 s2275) +(trans s5465 s2256) +(trans s5465 s2269) +(trans s5465 s2282) +(trans s5466 s2263) +(trans s5466 s2276) +(trans s5466 s2289) +(trans s5467 s2270) +(trans s5467 s2283) +(trans s5467 s2296) +(trans s5468 s2277) +(trans s5468 s2290) +(trans s5468 s2303) +(trans s5469 s2284) +(trans s5469 s2297) +(trans s5469 s2310) +(trans s5470 s2291) +(trans s5470 s2304) +(trans s5470 s2317) +(trans s5471 s2298) +(trans s5471 s2311) +(trans s5471 s2324) +(trans s5472 s2305) +(trans s5472 s2318) +(trans s5472 s2331) +(trans s5473 s2312) +(trans s5473 s2325) +(trans s5473 s2338) +(trans s5474 s2319) +(trans s5474 s2332) +(trans s5474 s2345) +(trans s5475 s2326) +(trans s5475 s2339) +(trans s5475 s2352) +(trans s5476 s2333) +(trans s5476 s2346) +(trans s5476 s2359) +(trans s5477 s2340) +(trans s5477 s2353) +(trans s5477 s2366) +(trans s5478 s2347) +(trans s5478 s2360) +(trans s5478 s2373) +(trans s5479 s2354) +(trans s5479 s2367) +(trans s5479 s2380) +(trans s5480 s2361) +(trans s5480 s2374) +(trans s5480 s2387) +(trans s5481 s2368) +(trans s5481 s2381) +(trans s5481 s2394) +(trans s5482 s2375) +(trans s5482 s2388) +(trans s5482 s2401) +(trans s5483 s2382) +(trans s5483 s2395) +(trans s5483 s2408) +(trans s5484 s2389) +(trans s5484 s2402) +(trans s5484 s2415) +(trans s5485 s2396) +(trans s5485 s2409) +(trans s5485 s2422) +(trans s5486 s2403) +(trans s5486 s2416) +(trans s5486 s2429) +(trans s5487 s2410) +(trans s5487 s2423) +(trans s5487 s2436) +(trans s5488 s2417) +(trans s5488 s2430) +(trans s5488 s2443) +(trans s5489 s2424) +(trans s5489 s2437) +(trans s5489 s2450) +(trans s5490 s2431) +(trans s5490 s2444) +(trans s5490 s2457) +(trans s5491 s2438) +(trans s5491 s2451) +(trans s5491 s2464) +(trans s5492 s2445) +(trans s5492 s2458) +(trans s5492 s2471) +(trans s5493 s2452) +(trans s5493 s2465) +(trans s5493 s2478) +(trans s5494 s2459) +(trans s5494 s2472) +(trans s5494 s2485) +(trans s5495 s2466) +(trans s5495 s2479) +(trans s5495 s2492) +(trans s5496 s2473) +(trans s5496 s2486) +(trans s5496 s2499) +(trans s5497 s2480) +(trans s5497 s2493) +(trans s5497 s2506) +(trans s5498 s2487) +(trans s5498 s2500) +(trans s5498 s2513) +(trans s5499 s2494) +(trans s5499 s2507) +(trans s5499 s2520) +(trans s5500 s2501) +(trans s5500 s2514) +(trans s5500 s2527) +(trans s5501 s2508) +(trans s5501 s2521) +(trans s5501 s2534) +(trans s5502 s2515) +(trans s5502 s2528) +(trans s5502 s2541) +(trans s5503 s2522) +(trans s5503 s2535) +(trans s5503 s2548) +(trans s5504 s2529) +(trans s5504 s2542) +(trans s5504 s2555) +(trans s5505 s2536) +(trans s5505 s2549) +(trans s5505 s2562) +(trans s5506 s2543) +(trans s5506 s2556) +(trans s5506 s2569) +(trans s5507 s2550) +(trans s5507 s2563) +(trans s5507 s2576) +(trans s5508 s2557) +(trans s5508 s2570) +(trans s5508 s2583) +(trans s5509 s2564) +(trans s5509 s2577) +(trans s5509 s2590) +(trans s5510 s2571) +(trans s5510 s2584) +(trans s5510 s2597) +(trans s5511 s2578) +(trans s5511 s2591) +(trans s5511 s2604) +(trans s5512 s2585) +(trans s5512 s2598) +(trans s5512 s2611) +(trans s5513 s2592) +(trans s5513 s2605) +(trans s5513 s2618) +(trans s5514 s2599) +(trans s5514 s2612) +(trans s5514 s2625) +(trans s5515 s2606) +(trans s5515 s2619) +(trans s5515 s2632) +(trans s5516 s2613) +(trans s5516 s2626) +(trans s5516 s2639) +(trans s5517 s2620) +(trans s5517 s2633) +(trans s5517 s2646) +(trans s5518 s2627) +(trans s5518 s2640) +(trans s5518 s2653) +(trans s5519 s2634) +(trans s5519 s2647) +(trans s5519 s2660) +(trans s5520 s2641) +(trans s5520 s2654) +(trans s5520 s2667) +(trans s5521 s2648) +(trans s5521 s2661) +(trans s5521 s2674) +(trans s5522 s2655) +(trans s5522 s2668) +(trans s5522 s2681) +(trans s5523 s2662) +(trans s5523 s2675) +(trans s5523 s2688) +(trans s5524 s2669) +(trans s5524 s2682) +(trans s5524 s2695) +(trans s5525 s2676) +(trans s5525 s2689) +(trans s5525 s2702) +(trans s5526 s2683) +(trans s5526 s2696) +(trans s5526 s2709) +(trans s5527 s2690) +(trans s5527 s2703) +(trans s5527 s2716) +(trans s5528 s2697) +(trans s5528 s2710) +(trans s5528 s2723) +(trans s5529 s2704) +(trans s5529 s2717) +(trans s5529 s2730) +(trans s5530 s2711) +(trans s5530 s2724) +(trans s5530 s2737) +(trans s5531 s2718) +(trans s5531 s2731) +(trans s5531 s2744) +(trans s5532 s2725) +(trans s5532 s2738) +(trans s5532 s2751) +(trans s5533 s2732) +(trans s5533 s2745) +(trans s5533 s2758) +(trans s5534 s2739) +(trans s5534 s2752) +(trans s5534 s2765) +(trans s5535 s2746) +(trans s5535 s2759) +(trans s5535 s2772) +(trans s5536 s2753) +(trans s5536 s2766) +(trans s5536 s2779) +(trans s5537 s2760) +(trans s5537 s2773) +(trans s5537 s2786) +(trans s5538 s2767) +(trans s5538 s2780) +(trans s5538 s2793) +(trans s5539 s2774) +(trans s5539 s2787) +(trans s5539 s2800) +(trans s5540 s2781) +(trans s5540 s2794) +(trans s5540 s2807) +(trans s5541 s2788) +(trans s5541 s2801) +(trans s5541 s2814) +(trans s5542 s2795) +(trans s5542 s2808) +(trans s5542 s2821) +(trans s5543 s2802) +(trans s5543 s2815) +(trans s5543 s2828) +(trans s5544 s2809) +(trans s5544 s2822) +(trans s5544 s2835) +(trans s5545 s2816) +(trans s5545 s2829) +(trans s5545 s2842) +(trans s5546 s2823) +(trans s5546 s2836) +(trans s5546 s2849) +(trans s5547 s2830) +(trans s5547 s2843) +(trans s5547 s2856) +(trans s5548 s2837) +(trans s5548 s2850) +(trans s5548 s2863) +(trans s5549 s2844) +(trans s5549 s2857) +(trans s5549 s2870) +(trans s5550 s2851) +(trans s5550 s2864) +(trans s5550 s2877) +(trans s5551 s2858) +(trans s5551 s2871) +(trans s5551 s2884) +(trans s5552 s2865) +(trans s5552 s2878) +(trans s5552 s2891) +(trans s5553 s2872) +(trans s5553 s2885) +(trans s5553 s2898) +(trans s5554 s2879) +(trans s5554 s2892) +(trans s5554 s2905) +(trans s5555 s2886) +(trans s5555 s2899) +(trans s5555 s2912) +(trans s5556 s2893) +(trans s5556 s2906) +(trans s5556 s2919) +(trans s5557 s2900) +(trans s5557 s2913) +(trans s5557 s2926) +(trans s5558 s2907) +(trans s5558 s2920) +(trans s5558 s2933) +(trans s5559 s2914) +(trans s5559 s2927) +(trans s5559 s2940) +(trans s5560 s2921) +(trans s5560 s2934) +(trans s5560 s2947) +(trans s5561 s2928) +(trans s5561 s2941) +(trans s5561 s2954) +(trans s5562 s2935) +(trans s5562 s2948) +(trans s5562 s2961) +(trans s5563 s2942) +(trans s5563 s2955) +(trans s5563 s2968) +(trans s5564 s2949) +(trans s5564 s2962) +(trans s5564 s2975) +(trans s5565 s2956) +(trans s5565 s2969) +(trans s5565 s2982) +(trans s5566 s2963) +(trans s5566 s2976) +(trans s5566 s2989) +(trans s5567 s2970) +(trans s5567 s2983) +(trans s5567 s2996) +(trans s5568 s2977) +(trans s5568 s2990) +(trans s5568 s3003) +(trans s5569 s2984) +(trans s5569 s2997) +(trans s5569 s3010) +(trans s5570 s2991) +(trans s5570 s3004) +(trans s5570 s3017) +(trans s5571 s2998) +(trans s5571 s3011) +(trans s5571 s3024) +(trans s5572 s3005) +(trans s5572 s3018) +(trans s5572 s3031) +(trans s5573 s3012) +(trans s5573 s3025) +(trans s5573 s3038) +(trans s5574 s3019) +(trans s5574 s3032) +(trans s5574 s3045) +(trans s5575 s3026) +(trans s5575 s3039) +(trans s5575 s3052) +(trans s5576 s3033) +(trans s5576 s3046) +(trans s5576 s3059) +(trans s5577 s3040) +(trans s5577 s3053) +(trans s5577 s3066) +(trans s5578 s3047) +(trans s5578 s3060) +(trans s5578 s3073) +(trans s5579 s3054) +(trans s5579 s3067) +(trans s5579 s3080) +(trans s5580 s3061) +(trans s5580 s3074) +(trans s5580 s3087) +(trans s5581 s3068) +(trans s5581 s3081) +(trans s5581 s3094) +(trans s5582 s3075) +(trans s5582 s3088) +(trans s5582 s3101) +(trans s5583 s3082) +(trans s5583 s3095) +(trans s5583 s3108) +(trans s5584 s3089) +(trans s5584 s3102) +(trans s5584 s3115) +(trans s5585 s3096) +(trans s5585 s3109) +(trans s5585 s3122) +(trans s5586 s3103) +(trans s5586 s3116) +(trans s5586 s3129) +(trans s5587 s3110) +(trans s5587 s3123) +(trans s5587 s3136) +(trans s5588 s3117) +(trans s5588 s3130) +(trans s5588 s3143) +(trans s5589 s3124) +(trans s5589 s3137) +(trans s5589 s3150) +(trans s5590 s3131) +(trans s5590 s3144) +(trans s5590 s3157) +(trans s5591 s3138) +(trans s5591 s3151) +(trans s5591 s3164) +(trans s5592 s3145) +(trans s5592 s3158) +(trans s5592 s3171) +(trans s5593 s3152) +(trans s5593 s3165) +(trans s5593 s3178) +(trans s5594 s3159) +(trans s5594 s3172) +(trans s5594 s3185) +(trans s5595 s3166) +(trans s5595 s3179) +(trans s5595 s3192) +(trans s5596 s3173) +(trans s5596 s3186) +(trans s5596 s3199) +(trans s5597 s3180) +(trans s5597 s3193) +(trans s5597 s3206) +(trans s5598 s3187) +(trans s5598 s3200) +(trans s5598 s3213) +(trans s5599 s3194) +(trans s5599 s3207) +(trans s5599 s3220) +(trans s5600 s3201) +(trans s5600 s3214) +(trans s5600 s3227) +(trans s5601 s3208) +(trans s5601 s3221) +(trans s5601 s3234) +(trans s5602 s3215) +(trans s5602 s3228) +(trans s5602 s3241) +(trans s5603 s3222) +(trans s5603 s3235) +(trans s5603 s3248) +(trans s5604 s3229) +(trans s5604 s3242) +(trans s5604 s3255) +(trans s5605 s3236) +(trans s5605 s3249) +(trans s5605 s3262) +(trans s5606 s3243) +(trans s5606 s3256) +(trans s5606 s3269) +(trans s5607 s3250) +(trans s5607 s3263) +(trans s5607 s3276) +(trans s5608 s3257) +(trans s5608 s3270) +(trans s5608 s3283) +(trans s5609 s3264) +(trans s5609 s3277) +(trans s5609 s3290) +(trans s5610 s3271) +(trans s5610 s3284) +(trans s5610 s3297) +(trans s5611 s3278) +(trans s5611 s3291) +(trans s5611 s3304) +(trans s5612 s3285) +(trans s5612 s3298) +(trans s5612 s3311) +(trans s5613 s3292) +(trans s5613 s3305) +(trans s5613 s3318) +(trans s5614 s3299) +(trans s5614 s3312) +(trans s5614 s3325) +(trans s5615 s3306) +(trans s5615 s3319) +(trans s5615 s3332) +(trans s5616 s3313) +(trans s5616 s3326) +(trans s5616 s3339) +(trans s5617 s3320) +(trans s5617 s3333) +(trans s5617 s3346) +(trans s5618 s3327) +(trans s5618 s3340) +(trans s5618 s3353) +(trans s5619 s3334) +(trans s5619 s3347) +(trans s5619 s3360) +(trans s5620 s3341) +(trans s5620 s3354) +(trans s5620 s3367) +(trans s5621 s3348) +(trans s5621 s3361) +(trans s5621 s3374) +(trans s5622 s3355) +(trans s5622 s3368) +(trans s5622 s3381) +(trans s5623 s3362) +(trans s5623 s3375) +(trans s5623 s3388) +(trans s5624 s3369) +(trans s5624 s3382) +(trans s5624 s3395) +(trans s5625 s3376) +(trans s5625 s3389) +(trans s5625 s3402) +(trans s5626 s3383) +(trans s5626 s3396) +(trans s5626 s3409) +(trans s5627 s3390) +(trans s5627 s3403) +(trans s5627 s3416) +(trans s5628 s3397) +(trans s5628 s3410) +(trans s5628 s3423) +(trans s5629 s3404) +(trans s5629 s3417) +(trans s5629 s3430) +(trans s5630 s3411) +(trans s5630 s3424) +(trans s5630 s3437) +(trans s5631 s3418) +(trans s5631 s3431) +(trans s5631 s3444) +(trans s5632 s3425) +(trans s5632 s3438) +(trans s5632 s3451) +(trans s5633 s3432) +(trans s5633 s3445) +(trans s5633 s3458) +(trans s5634 s3439) +(trans s5634 s3452) +(trans s5634 s3465) +(trans s5635 s3446) +(trans s5635 s3459) +(trans s5635 s3472) +(trans s5636 s3453) +(trans s5636 s3466) +(trans s5636 s3479) +(trans s5637 s3460) +(trans s5637 s3473) +(trans s5637 s3486) +(trans s5638 s3467) +(trans s5638 s3480) +(trans s5638 s3493) +(trans s5639 s3474) +(trans s5639 s3487) +(trans s5639 s3500) +(trans s5640 s3481) +(trans s5640 s3494) +(trans s5640 s3507) +(trans s5641 s3488) +(trans s5641 s3501) +(trans s5641 s3514) +(trans s5642 s3495) +(trans s5642 s3508) +(trans s5642 s3521) +(trans s5643 s3502) +(trans s5643 s3515) +(trans s5643 s3528) +(trans s5644 s3509) +(trans s5644 s3522) +(trans s5644 s3535) +(trans s5645 s3516) +(trans s5645 s3529) +(trans s5645 s3542) +(trans s5646 s3523) +(trans s5646 s3536) +(trans s5646 s3549) +(trans s5647 s3530) +(trans s5647 s3543) +(trans s5647 s3556) +(trans s5648 s3537) +(trans s5648 s3550) +(trans s5648 s3563) +(trans s5649 s3544) +(trans s5649 s3557) +(trans s5649 s3570) +(trans s5650 s3551) +(trans s5650 s3564) +(trans s5650 s3577) +(trans s5651 s3558) +(trans s5651 s3571) +(trans s5651 s3584) +(trans s5652 s3565) +(trans s5652 s3578) +(trans s5652 s3591) +(trans s5653 s3572) +(trans s5653 s3585) +(trans s5653 s3598) +(trans s5654 s3579) +(trans s5654 s3592) +(trans s5654 s3605) +(trans s5655 s3586) +(trans s5655 s3599) +(trans s5655 s3612) +(trans s5656 s3593) +(trans s5656 s3606) +(trans s5656 s3619) +(trans s5657 s3600) +(trans s5657 s3613) +(trans s5657 s3626) +(trans s5658 s3607) +(trans s5658 s3620) +(trans s5658 s3633) +(trans s5659 s3614) +(trans s5659 s3627) +(trans s5659 s3640) +(trans s5660 s3621) +(trans s5660 s3634) +(trans s5660 s3647) +(trans s5661 s3628) +(trans s5661 s3641) +(trans s5661 s3654) +(trans s5662 s3635) +(trans s5662 s3648) +(trans s5662 s3661) +(trans s5663 s3642) +(trans s5663 s3655) +(trans s5663 s3668) +(trans s5664 s3649) +(trans s5664 s3662) +(trans s5664 s3675) +(trans s5665 s3656) +(trans s5665 s3669) +(trans s5665 s3682) +(trans s5666 s3663) +(trans s5666 s3676) +(trans s5666 s3689) +(trans s5667 s3670) +(trans s5667 s3683) +(trans s5667 s3696) +(trans s5668 s3677) +(trans s5668 s3690) +(trans s5668 s3703) +(trans s5669 s3684) +(trans s5669 s3697) +(trans s5669 s3710) +(trans s5670 s3691) +(trans s5670 s3704) +(trans s5670 s3717) +(trans s5671 s3698) +(trans s5671 s3711) +(trans s5671 s3724) +(trans s5672 s3705) +(trans s5672 s3718) +(trans s5672 s3731) +(trans s5673 s3712) +(trans s5673 s3725) +(trans s5673 s3738) +(trans s5674 s3719) +(trans s5674 s3732) +(trans s5674 s3745) +(trans s5675 s3726) +(trans s5675 s3739) +(trans s5675 s3752) +(trans s5676 s3733) +(trans s5676 s3746) +(trans s5676 s3759) +(trans s5677 s3740) +(trans s5677 s3753) +(trans s5677 s3766) +(trans s5678 s3747) +(trans s5678 s3760) +(trans s5678 s3773) +(trans s5679 s3754) +(trans s5679 s3767) +(trans s5679 s3780) +(trans s5680 s3761) +(trans s5680 s3774) +(trans s5680 s3787) +(trans s5681 s3768) +(trans s5681 s3781) +(trans s5681 s3794) +(trans s5682 s3775) +(trans s5682 s3788) +(trans s5682 s3801) +(trans s5683 s3782) +(trans s5683 s3795) +(trans s5683 s3808) +(trans s5684 s3789) +(trans s5684 s3802) +(trans s5684 s3815) +(trans s5685 s3796) +(trans s5685 s3809) +(trans s5685 s3822) +(trans s5686 s3803) +(trans s5686 s3816) +(trans s5686 s3829) +(trans s5687 s3810) +(trans s5687 s3823) +(trans s5687 s3836) +(trans s5688 s3817) +(trans s5688 s3830) +(trans s5688 s3843) +(trans s5689 s3824) +(trans s5689 s3837) +(trans s5689 s3850) +(trans s5690 s3831) +(trans s5690 s3844) +(trans s5690 s3857) +(trans s5691 s3838) +(trans s5691 s3851) +(trans s5691 s3864) +(trans s5692 s3845) +(trans s5692 s3858) +(trans s5692 s3871) +(trans s5693 s3852) +(trans s5693 s3865) +(trans s5693 s3878) +(trans s5694 s3859) +(trans s5694 s3872) +(trans s5694 s3885) +(trans s5695 s3866) +(trans s5695 s3879) +(trans s5695 s3892) +(trans s5696 s3873) +(trans s5696 s3886) +(trans s5696 s3899) +(trans s5697 s3880) +(trans s5697 s3893) +(trans s5697 s3906) +(trans s5698 s3887) +(trans s5698 s3900) +(trans s5698 s3913) +(trans s5699 s3894) +(trans s5699 s3907) +(trans s5699 s3920) +(trans s5700 s3901) +(trans s5700 s3914) +(trans s5700 s3927) +(trans s5701 s3908) +(trans s5701 s3921) +(trans s5701 s3934) +(trans s5702 s3915) +(trans s5702 s3928) +(trans s5702 s3941) +(trans s5703 s3922) +(trans s5703 s3935) +(trans s5703 s3948) +(trans s5704 s3929) +(trans s5704 s3942) +(trans s5704 s3955) +(trans s5705 s3936) +(trans s5705 s3949) +(trans s5705 s3962) +(trans s5706 s3943) +(trans s5706 s3956) +(trans s5706 s3969) +(trans s5707 s3950) +(trans s5707 s3963) +(trans s5707 s3976) +(trans s5708 s3957) +(trans s5708 s3970) +(trans s5708 s3983) +(trans s5709 s3964) +(trans s5709 s3977) +(trans s5709 s3990) +(trans s5710 s3971) +(trans s5710 s3984) +(trans s5710 s3997) +(trans s5711 s3978) +(trans s5711 s3991) +(trans s5711 s4004) +(trans s5712 s3985) +(trans s5712 s3998) +(trans s5712 s4011) +(trans s5713 s3992) +(trans s5713 s4005) +(trans s5713 s4018) +(trans s5714 s3999) +(trans s5714 s4012) +(trans s5714 s4025) +(trans s5715 s4006) +(trans s5715 s4019) +(trans s5715 s4032) +(trans s5716 s4013) +(trans s5716 s4026) +(trans s5716 s4039) +(trans s5717 s4020) +(trans s5717 s4033) +(trans s5717 s4046) +(trans s5718 s4027) +(trans s5718 s4040) +(trans s5718 s4053) +(trans s5719 s4034) +(trans s5719 s4047) +(trans s5719 s4060) +(trans s5720 s4041) +(trans s5720 s4054) +(trans s5720 s4067) +(trans s5721 s4048) +(trans s5721 s4061) +(trans s5721 s4074) +(trans s5722 s4055) +(trans s5722 s4068) +(trans s5722 s4081) +(trans s5723 s4062) +(trans s5723 s4075) +(trans s5723 s4088) +(trans s5724 s4069) +(trans s5724 s4082) +(trans s5724 s4095) +(trans s5725 s4076) +(trans s5725 s4089) +(trans s5725 s4102) +(trans s5726 s4083) +(trans s5726 s4096) +(trans s5726 s4109) +(trans s5727 s4090) +(trans s5727 s4103) +(trans s5727 s4116) +(trans s5728 s4097) +(trans s5728 s4110) +(trans s5728 s4123) +(trans s5729 s4104) +(trans s5729 s4117) +(trans s5729 s4130) +(trans s5730 s4111) +(trans s5730 s4124) +(trans s5730 s4137) +(trans s5731 s4118) +(trans s5731 s4131) +(trans s5731 s4144) +(trans s5732 s4125) +(trans s5732 s4138) +(trans s5732 s4151) +(trans s5733 s4132) +(trans s5733 s4145) +(trans s5733 s4158) +(trans s5734 s4139) +(trans s5734 s4152) +(trans s5734 s4165) +(trans s5735 s4146) +(trans s5735 s4159) +(trans s5735 s4172) +(trans s5736 s4153) +(trans s5736 s4166) +(trans s5736 s4179) +(trans s5737 s4160) +(trans s5737 s4173) +(trans s5737 s4186) +(trans s5738 s4167) +(trans s5738 s4180) +(trans s5738 s4193) +(trans s5739 s4174) +(trans s5739 s4187) +(trans s5739 s4200) +(trans s5740 s4181) +(trans s5740 s4194) +(trans s5740 s4207) +(trans s5741 s4188) +(trans s5741 s4201) +(trans s5741 s4214) +(trans s5742 s4195) +(trans s5742 s4208) +(trans s5742 s4221) +(trans s5743 s4202) +(trans s5743 s4215) +(trans s5743 s4228) +(trans s5744 s4209) +(trans s5744 s4222) +(trans s5744 s4235) +(trans s5745 s4216) +(trans s5745 s4229) +(trans s5745 s4242) +(trans s5746 s4223) +(trans s5746 s4236) +(trans s5746 s4249) +(trans s5747 s4230) +(trans s5747 s4243) +(trans s5747 s4256) +(trans s5748 s4237) +(trans s5748 s4250) +(trans s5748 s4263) +(trans s5749 s4244) +(trans s5749 s4257) +(trans s5749 s4270) +(trans s5750 s4251) +(trans s5750 s4264) +(trans s5750 s4277) +(trans s5751 s4258) +(trans s5751 s4271) +(trans s5751 s4284) +(trans s5752 s4265) +(trans s5752 s4278) +(trans s5752 s4291) +(trans s5753 s4272) +(trans s5753 s4285) +(trans s5753 s4298) +(trans s5754 s4279) +(trans s5754 s4292) +(trans s5754 s4305) +(trans s5755 s4286) +(trans s5755 s4299) +(trans s5755 s4312) +(trans s5756 s4293) +(trans s5756 s4306) +(trans s5756 s4319) +(trans s5757 s4300) +(trans s5757 s4313) +(trans s5757 s4326) +(trans s5758 s4307) +(trans s5758 s4320) +(trans s5758 s4333) +(trans s5759 s4314) +(trans s5759 s4327) +(trans s5759 s4340) +(trans s5760 s4321) +(trans s5760 s4334) +(trans s5760 s4347) +(trans s5761 s4328) +(trans s5761 s4341) +(trans s5761 s4354) +(trans s5762 s4335) +(trans s5762 s4348) +(trans s5762 s4361) +(trans s5763 s4342) +(trans s5763 s4355) +(trans s5763 s4368) +(trans s5764 s4349) +(trans s5764 s4362) +(trans s5764 s4375) +(trans s5765 s4356) +(trans s5765 s4369) +(trans s5765 s4382) +(trans s5766 s4363) +(trans s5766 s4376) +(trans s5766 s4389) +(trans s5767 s4370) +(trans s5767 s4383) +(trans s5767 s4396) +(trans s5768 s4377) +(trans s5768 s4390) +(trans s5768 s4403) +(trans s5769 s4384) +(trans s5769 s4397) +(trans s5769 s4410) +(trans s5770 s4391) +(trans s5770 s4404) +(trans s5770 s4417) +(trans s5771 s4398) +(trans s5771 s4411) +(trans s5771 s4424) +(trans s5772 s4405) +(trans s5772 s4418) +(trans s5772 s4431) +(trans s5773 s4412) +(trans s5773 s4425) +(trans s5773 s4438) +(trans s5774 s4419) +(trans s5774 s4432) +(trans s5774 s4445) +(trans s5775 s4426) +(trans s5775 s4439) +(trans s5775 s4452) +(trans s5776 s4433) +(trans s5776 s4446) +(trans s5776 s4459) +(trans s5777 s4440) +(trans s5777 s4453) +(trans s5777 s4466) +(trans s5778 s4447) +(trans s5778 s4460) +(trans s5778 s4473) +(trans s5779 s4454) +(trans s5779 s4467) +(trans s5779 s4480) +(trans s5780 s4461) +(trans s5780 s4474) +(trans s5780 s4487) +(trans s5781 s4468) +(trans s5781 s4481) +(trans s5781 s4494) +(trans s5782 s4475) +(trans s5782 s4488) +(trans s5782 s4501) +(trans s5783 s4482) +(trans s5783 s4495) +(trans s5783 s4508) +(trans s5784 s4489) +(trans s5784 s4502) +(trans s5784 s4515) +(trans s5785 s4496) +(trans s5785 s4509) +(trans s5785 s4522) +(trans s5786 s4503) +(trans s5786 s4516) +(trans s5786 s4529) +(trans s5787 s4510) +(trans s5787 s4523) +(trans s5787 s4536) +(trans s5788 s4517) +(trans s5788 s4530) +(trans s5788 s4543) +(trans s5789 s4524) +(trans s5789 s4537) +(trans s5789 s4550) +(trans s5790 s4531) +(trans s5790 s4544) +(trans s5790 s4557) +(trans s5791 s4538) +(trans s5791 s4551) +(trans s5791 s4564) +(trans s5792 s4545) +(trans s5792 s4558) +(trans s5792 s4571) +(trans s5793 s4552) +(trans s5793 s4565) +(trans s5793 s4578) +(trans s5794 s4559) +(trans s5794 s4572) +(trans s5794 s4585) +(trans s5795 s4566) +(trans s5795 s4579) +(trans s5795 s4592) +(trans s5796 s4573) +(trans s5796 s4586) +(trans s5796 s4599) +(trans s5797 s4580) +(trans s5797 s4593) +(trans s5797 s4606) +(trans s5798 s4587) +(trans s5798 s4600) +(trans s5798 s4613) +(trans s5799 s4594) +(trans s5799 s4607) +(trans s5799 s4620) +(trans s5800 s4601) +(trans s5800 s4614) +(trans s5800 s4627) +(trans s5801 s4608) +(trans s5801 s4621) +(trans s5801 s4634) +(trans s5802 s4615) +(trans s5802 s4628) +(trans s5802 s4641) +(trans s5803 s4622) +(trans s5803 s4635) +(trans s5803 s4648) +(trans s5804 s4629) +(trans s5804 s4642) +(trans s5804 s4655) +(trans s5805 s4636) +(trans s5805 s4649) +(trans s5805 s4662) +(trans s5806 s4643) +(trans s5806 s4656) +(trans s5806 s4669) +(trans s5807 s4650) +(trans s5807 s4663) +(trans s5807 s4676) +(trans s5808 s4657) +(trans s5808 s4670) +(trans s5808 s4683) +(trans s5809 s4664) +(trans s5809 s4677) +(trans s5809 s4690) +(trans s5810 s4671) +(trans s5810 s4684) +(trans s5810 s4697) +(trans s5811 s4678) +(trans s5811 s4691) +(trans s5811 s4704) +(trans s5812 s4685) +(trans s5812 s4698) +(trans s5812 s4711) +(trans s5813 s4692) +(trans s5813 s4705) +(trans s5813 s4718) +(trans s5814 s4699) +(trans s5814 s4712) +(trans s5814 s4725) +(trans s5815 s4706) +(trans s5815 s4719) +(trans s5815 s4732) +(trans s5816 s4713) +(trans s5816 s4726) +(trans s5816 s4739) +(trans s5817 s4720) +(trans s5817 s4733) +(trans s5817 s4746) +(trans s5818 s4727) +(trans s5818 s4740) +(trans s5818 s4753) +(trans s5819 s4734) +(trans s5819 s4747) +(trans s5819 s4760) +(trans s5820 s4741) +(trans s5820 s4754) +(trans s5820 s4767) +(trans s5821 s4748) +(trans s5821 s4761) +(trans s5821 s4774) +(trans s5822 s4755) +(trans s5822 s4768) +(trans s5822 s4781) +(trans s5823 s4762) +(trans s5823 s4775) +(trans s5823 s4788) +(trans s5824 s4769) +(trans s5824 s4782) +(trans s5824 s4795) +(trans s5825 s4776) +(trans s5825 s4789) +(trans s5825 s4802) +(trans s5826 s4783) +(trans s5826 s4796) +(trans s5826 s4809) +(trans s5827 s4790) +(trans s5827 s4803) +(trans s5827 s4816) +(trans s5828 s4797) +(trans s5828 s4810) +(trans s5828 s4823) +(trans s5829 s4804) +(trans s5829 s4817) +(trans s5829 s4830) +(trans s5830 s4811) +(trans s5830 s4824) +(trans s5830 s4837) +(trans s5831 s4818) +(trans s5831 s4831) +(trans s5831 s4844) +(trans s5832 s4825) +(trans s5832 s4838) +(trans s5832 s4851) +(trans s5833 s4832) +(trans s5833 s4845) +(trans s5833 s4858) +(trans s5834 s4839) +(trans s5834 s4852) +(trans s5834 s4865) +(trans s5835 s4846) +(trans s5835 s4859) +(trans s5835 s4872) +(trans s5836 s4853) +(trans s5836 s4866) +(trans s5836 s4879) +(trans s5837 s4860) +(trans s5837 s4873) +(trans s5837 s4886) +(trans s5838 s4867) +(trans s5838 s4880) +(trans s5838 s4893) +(trans s5839 s4874) +(trans s5839 s4887) +(trans s5839 s4900) +(trans s5840 s4881) +(trans s5840 s4894) +(trans s5840 s4907) +(trans s5841 s4888) +(trans s5841 s4901) +(trans s5841 s4914) +(trans s5842 s4895) +(trans s5842 s4908) +(trans s5842 s4921) +(trans s5843 s4902) +(trans s5843 s4915) +(trans s5843 s4928) +(trans s5844 s4909) +(trans s5844 s4922) +(trans s5844 s4935) +(trans s5845 s4916) +(trans s5845 s4929) +(trans s5845 s4942) +(trans s5846 s4923) +(trans s5846 s4936) +(trans s5846 s4949) +(trans s5847 s4930) +(trans s5847 s4943) +(trans s5847 s4956) +(trans s5848 s4937) +(trans s5848 s4950) +(trans s5848 s4963) +(trans s5849 s4944) +(trans s5849 s4957) +(trans s5849 s4970) +(trans s5850 s4951) +(trans s5850 s4964) +(trans s5850 s4977) +(trans s5851 s4958) +(trans s5851 s4971) +(trans s5851 s4984) +(trans s5852 s4965) +(trans s5852 s4978) +(trans s5852 s4991) +(trans s5853 s4972) +(trans s5853 s4985) +(trans s5853 s4998) +(trans s5854 s4979) +(trans s5854 s4992) +(trans s5854 s5005) +(trans s5855 s4986) +(trans s5855 s4999) +(trans s5855 s5012) +(trans s5856 s4993) +(trans s5856 s5006) +(trans s5856 s5019) +(trans s5857 s5000) +(trans s5857 s5013) +(trans s5857 s5026) +(trans s5858 s5007) +(trans s5858 s5020) +(trans s5858 s5033) +(trans s5859 s5014) +(trans s5859 s5027) +(trans s5859 s5040) +(trans s5860 s5021) +(trans s5860 s5034) +(trans s5860 s5047) +(trans s5861 s5028) +(trans s5861 s5041) +(trans s5861 s5054) +(trans s5862 s5035) +(trans s5862 s5048) +(trans s5862 s5061) +(trans s5863 s5042) +(trans s5863 s5055) +(trans s5863 s5068) +(trans s5864 s5049) +(trans s5864 s5062) +(trans s5864 s5075) +(trans s5865 s5056) +(trans s5865 s5069) +(trans s5865 s5082) +(trans s5866 s5063) +(trans s5866 s5076) +(trans s5866 s5089) +(trans s5867 s5070) +(trans s5867 s5083) +(trans s5867 s5096) +(trans s5868 s5077) +(trans s5868 s5090) +(trans s5868 s5103) +(trans s5869 s5084) +(trans s5869 s5097) +(trans s5869 s5110) +(trans s5870 s5091) +(trans s5870 s5104) +(trans s5870 s5117) +(trans s5871 s5098) +(trans s5871 s5111) +(trans s5871 s5124) +(trans s5872 s5105) +(trans s5872 s5118) +(trans s5872 s5131) +(trans s5873 s5112) +(trans s5873 s5125) +(trans s5873 s5138) +(trans s5874 s5119) +(trans s5874 s5132) +(trans s5874 s5145) +(trans s5875 s5126) +(trans s5875 s5139) +(trans s5875 s5152) +(trans s5876 s5133) +(trans s5876 s5146) +(trans s5876 s5159) +(trans s5877 s5140) +(trans s5877 s5153) +(trans s5877 s5166) +(trans s5878 s5147) +(trans s5878 s5160) +(trans s5878 s5173) +(trans s5879 s5154) +(trans s5879 s5167) +(trans s5879 s5180) +(trans s5880 s5161) +(trans s5880 s5174) +(trans s5880 s5187) +(trans s5881 s5168) +(trans s5881 s5181) +(trans s5881 s5194) +(trans s5882 s5175) +(trans s5882 s5188) +(trans s5882 s5201) +(trans s5883 s5182) +(trans s5883 s5195) +(trans s5883 s5208) +(trans s5884 s5189) +(trans s5884 s5202) +(trans s5884 s5215) +(trans s5885 s5196) +(trans s5885 s5209) +(trans s5885 s5222) +(trans s5886 s5203) +(trans s5886 s5216) +(trans s5886 s5229) +(trans s5887 s5210) +(trans s5887 s5223) +(trans s5887 s5236) +(trans s5888 s5217) +(trans s5888 s5230) +(trans s5888 s5243) +(trans s5889 s5224) +(trans s5889 s5237) +(trans s5889 s5250) +(trans s5890 s5231) +(trans s5890 s5244) +(trans s5890 s5257) +(trans s5891 s5238) +(trans s5891 s5251) +(trans s5891 s5264) +(trans s5892 s5245) +(trans s5892 s5258) +(trans s5892 s5271) +(trans s5893 s5252) +(trans s5893 s5265) +(trans s5893 s5278) +(trans s5894 s5259) +(trans s5894 s5272) +(trans s5894 s5285) +(trans s5895 s5266) +(trans s5895 s5279) +(trans s5895 s5292) +(trans s5896 s5273) +(trans s5896 s5286) +(trans s5896 s5299) +(trans s5897 s5280) +(trans s5897 s5293) +(trans s5897 s5306) +(trans s5898 s5287) +(trans s5898 s5300) +(trans s5898 s5313) +(trans s5899 s5294) +(trans s5899 s5307) +(trans s5899 s5320) +(trans s5900 s5301) +(trans s5900 s5314) +(trans s5900 s5327) +(trans s5901 s5308) +(trans s5901 s5321) +(trans s5901 s5334) +(trans s5902 s5315) +(trans s5902 s5328) +(trans s5902 s5341) +(trans s5903 s5322) +(trans s5903 s5335) +(trans s5903 s5348) +(trans s5904 s5329) +(trans s5904 s5342) +(trans s5904 s5355) +(trans s5905 s5336) +(trans s5905 s5349) +(trans s5905 s5362) +(trans s5906 s5343) +(trans s5906 s5356) +(trans s5906 s5369) +(trans s5907 s5350) +(trans s5907 s5363) +(trans s5907 s5376) +(trans s5908 s5357) +(trans s5908 s5370) +(trans s5908 s5383) +(trans s5909 s5364) +(trans s5909 s5377) +(trans s5909 s5390) +(trans s5910 s5371) +(trans s5910 s5384) +(trans s5910 s5397) +(trans s5911 s5378) +(trans s5911 s5391) +(trans s5911 s5404) +(trans s5912 s5385) +(trans s5912 s5398) +(trans s5912 s5411) +(trans s5913 s5392) +(trans s5913 s5405) +(trans s5913 s5418) +(trans s5914 s5399) +(trans s5914 s5412) +(trans s5914 s5425) +(trans s5915 s5406) +(trans s5915 s5419) +(trans s5915 s5432) +(trans s5916 s5413) +(trans s5916 s5426) +(trans s5916 s5439) +(trans s5917 s5420) +(trans s5917 s5433) +(trans s5917 s5446) +(trans s5918 s5427) +(trans s5918 s5440) +(trans s5918 s5453) +(trans s5919 s5434) +(trans s5919 s5447) +(trans s5919 s5460) +(trans s5920 s5441) +(trans s5920 s5454) +(trans s5920 s5467) +(trans s5921 s5448) +(trans s5921 s5461) +(trans s5921 s5474) +(trans s5922 s5455) +(trans s5922 s5468) +(trans s5922 s5481) +(trans s5923 s5462) +(trans s5923 s5475) +(trans s5923 s5488) +(trans s5924 s5469) +(trans s5924 s5482) +(trans s5924 s5495) +(trans s5925 s5476) +(trans s5925 s5489) +(trans s5925 s5502) +(trans s5926 s5483) +(trans s5926 s5496) +(trans s5926 s5509) +(trans s5927 s5490) +(trans s5927 s5503) +(trans s5927 s5516) +(trans s5928 s5497) +(trans s5928 s5510) +(trans s5928 s5523) +(trans s5929 s5504) +(trans s5929 s5517) +(trans s5929 s5530) +(trans s5930 s5511) +(trans s5930 s5524) +(trans s5930 s5537) +(trans s5931 s5518) +(trans s5931 s5531) +(trans s5931 s5544) +(trans s5932 s5525) +(trans s5932 s5538) +(trans s5932 s5551) +(trans s5933 s5532) +(trans s5933 s5545) +(trans s5933 s5558) +(trans s5934 s5539) +(trans s5934 s5552) +(trans s5934 s5565) +(trans s5935 s5546) +(trans s5935 s5559) +(trans s5935 s5572) +(trans s5936 s5553) +(trans s5936 s5566) +(trans s5936 s5579) +(trans s5937 s5560) +(trans s5937 s5573) +(trans s5937 s5586) +(trans s5938 s5567) +(trans s5938 s5580) +(trans s5938 s5593) +(trans s5939 s5574) +(trans s5939 s5587) +(trans s5939 s5600) +(trans s5940 s5581) +(trans s5940 s5594) +(trans s5940 s5607) +(trans s5941 s5588) +(trans s5941 s5601) +(trans s5941 s5614) +(trans s5942 s5595) +(trans s5942 s5608) +(trans s5942 s5621) +(trans s5943 s5602) +(trans s5943 s5615) +(trans s5943 s5628) +(trans s5944 s5609) +(trans s5944 s5622) +(trans s5944 s5635) +(trans s5945 s5616) +(trans s5945 s5629) +(trans s5945 s5642) +(trans s5946 s5623) +(trans s5946 s5636) +(trans s5946 s5649) +(trans s5947 s5630) +(trans s5947 s5643) +(trans s5947 s5656) +(trans s5948 s5637) +(trans s5948 s5650) +(trans s5948 s5663) +(trans s5949 s5644) +(trans s5949 s5657) +(trans s5949 s5670) +(trans s5950 s5651) +(trans s5950 s5664) +(trans s5950 s5677) +(trans s5951 s5658) +(trans s5951 s5671) +(trans s5951 s5684) +(trans s5952 s5665) +(trans s5952 s5678) +(trans s5952 s5691) +(trans s5953 s5672) +(trans s5953 s5685) +(trans s5953 s5698) +(trans s5954 s5679) +(trans s5954 s5692) +(trans s5954 s5705) +(trans s5955 s5686) +(trans s5955 s5699) +(trans s5955 s5712) +(trans s5956 s5693) +(trans s5956 s5706) +(trans s5956 s5719) +(trans s5957 s5700) +(trans s5957 s5713) +(trans s5957 s5726) +(trans s5958 s5707) +(trans s5958 s5720) +(trans s5958 s5733) +(trans s5959 s5714) +(trans s5959 s5727) +(trans s5959 s5740) +(trans s5960 s5721) +(trans s5960 s5734) +(trans s5960 s5747) +(trans s5961 s5728) +(trans s5961 s5741) +(trans s5961 s5754) +(trans s5962 s5735) +(trans s5962 s5748) +(trans s5962 s5761) +(trans s5963 s5742) +(trans s5963 s5755) +(trans s5963 s5768) +(trans s5964 s5749) +(trans s5964 s5762) +(trans s5964 s5775) +(trans s5965 s5756) +(trans s5965 s5769) +(trans s5965 s5782) +(trans s5966 s5763) +(trans s5966 s5776) +(trans s5966 s5789) +(trans s5967 s5770) +(trans s5967 s5783) +(trans s5967 s5796) +(trans s5968 s5777) +(trans s5968 s5790) +(trans s5968 s5803) +(trans s5969 s5784) +(trans s5969 s5797) +(trans s5969 s5810) +(trans s5970 s5791) +(trans s5970 s5804) +(trans s5970 s5817) +(trans s5971 s5798) +(trans s5971 s5811) +(trans s5971 s5824) +(trans s5972 s5805) +(trans s5972 s5818) +(trans s5972 s5831) +(trans s5973 s5812) +(trans s5973 s5825) +(trans s5973 s5838) +(trans s5974 s5819) +(trans s5974 s5832) +(trans s5974 s5845) +(trans s5975 s5826) +(trans s5975 s5839) +(trans s5975 s5852) +(trans s5976 s5833) +(trans s5976 s5846) +(trans s5976 s5859) +(trans s5977 s5840) +(trans s5977 s5853) +(trans s5977 s5866) +(trans s5978 s5847) +(trans s5978 s5860) +(trans s5978 s5873) +(trans s5979 s5854) +(trans s5979 s5867) +(trans s5979 s5880) +(trans s5980 s5861) +(trans s5980 s5874) +(trans s5980 s5887) +(trans s5981 s5868) +(trans s5981 s5881) +(trans s5981 s5894) +(trans s5982 s5875) +(trans s5982 s5888) +(trans s5982 s5901) +(trans s5983 s5882) +(trans s5983 s5895) +(trans s5983 s5908) +(trans s5984 s5889) +(trans s5984 s5902) +(trans s5984 s5915) +(trans s5985 s5896) +(trans s5985 s5909) +(trans s5985 s5922) +(trans s5986 s5903) +(trans s5986 s5916) +(trans s5986 s5929) +(trans s5987 s5910) +(trans s5987 s5923) +(trans s5987 s5936) +(trans s5988 s5917) +(trans s5988 s5930) +(trans s5988 s5943) +(trans s5989 s5924) +(trans s5989 s5937) +(trans s5989 s5950) +(trans s5990 s5931) +(trans s5990 s5944) +(trans s5990 s5957) +(trans s5991 s5938) +(trans s5991 s5951) +(trans s5991 s5964) +(trans s5992 s5945) +(trans s5992 s5958) +(trans s5992 s5971) +(trans s5993 s5952) +(trans s5993 s5965) +(trans s5993 s5978) +(trans s5994 s5959) +(trans s5994 s5972) +(trans s5994 s5985) +(trans s5995 s5966) +(trans s5995 s5979) +(trans s5995 s5992) +(trans s5996 s5973) +(trans s5996 s5986) +(trans s5996 s5999) +(trans s5997 s5980) +(trans s5997 s5993) +(trans s5997 s6) +(trans s5998 s5987) +(trans s5998 s0) +(trans s5998 s13) +(trans s5999 s5994) +(trans s5999 s7) +(trans s5999 s20) +(state s0) +(fuelN (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))))))))))))) + +(exec (1 Z) (, (exec (1 $l) $p $t) (fuelN (S $k)) (state $s) (trans $s $u)) + (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (fuelN $k)) (- (fuelN (S $k))))) diff --git a/examples/transforms/pc2_delta.mm2 b/examples/transforms/pc2_delta.mm2 new file mode 100644 index 00000000..19a14162 --- /dev/null +++ b/examples/transforms/pc2_delta.mm2 @@ -0,0 +1,4010 @@ +(petri (? c0 p0 (! c1 p1))) +(petri (? c1 p1 (! c2 p2))) +(petri (? c2 p2 (! c3 p3))) +(petri (? c3 p3 (! c4 p4))) +(petri (? c4 p4 (! c5 p5))) +(petri (? c5 p5 (! c6 p6))) +(petri (? c6 p6 (! c7 p7))) +(petri (? c7 p7 (! c8 p8))) +(petri (? c8 p8 (! c9 p9))) +(petri (? c9 p9 (! c10 p10))) +(petri (? c10 p10 (! c11 p11))) +(petri (? c11 p11 (! c12 p12))) +(petri (? c12 p12 (! c13 p13))) +(petri (? c13 p13 (! c14 p14))) +(petri (? c14 p14 (! c15 p15))) +(petri (? c15 p15 (! c16 p16))) +(petri (? c16 p16 (! c17 p17))) +(petri (? c17 p17 (! c18 p18))) +(petri (? c18 p18 (! c19 p19))) +(petri (? c19 p19 (! c20 p20))) +(petri (? c20 p20 (! c21 p21))) +(petri (? c21 p21 (! c22 p22))) +(petri (? c22 p22 (! c23 p23))) +(petri (? c23 p23 (! c24 p24))) +(petri (? c24 p24 (! c25 p25))) +(petri (? c25 p25 (! c26 p26))) +(petri (? c26 p26 (! c27 p27))) +(petri (? c27 p27 (! c28 p28))) +(petri (? c28 p28 (! c29 p29))) +(petri (? c29 p29 (! c30 p30))) +(petri (? c30 p30 (! c31 p31))) +(petri (? c31 p31 (! c32 p32))) +(petri (? c32 p32 (! c33 p33))) +(petri (? c33 p33 (! c34 p34))) +(petri (? c34 p34 (! c35 p35))) +(petri (? c35 p35 (! c36 p36))) +(petri (? c36 p36 (! c37 p37))) +(petri (? c37 p37 (! c38 p38))) +(petri (? c38 p38 (! c39 p39))) +(petri (? c39 p39 (! c40 p40))) +(petri (? c40 p40 (! c41 p41))) +(petri (? c41 p41 (! c42 p42))) +(petri (? c42 p42 (! c43 p43))) +(petri (? c43 p43 (! c44 p44))) +(petri (? c44 p44 (! c45 p45))) +(petri (? c45 p45 (! c46 p46))) +(petri (? c46 p46 (! c47 p47))) +(petri (? c47 p47 (! c48 p48))) +(petri (? c48 p48 (! c49 p49))) +(petri (? c49 p49 (! c50 p50))) +(petri (? c50 p50 (! c51 p51))) +(petri (? c51 p51 (! c52 p52))) +(petri (? c52 p52 (! c53 p53))) +(petri (? c53 p53 (! c54 p54))) +(petri (? c54 p54 (! c55 p55))) +(petri (? c55 p55 (! c56 p56))) +(petri (? c56 p56 (! c57 p57))) +(petri (? c57 p57 (! c58 p58))) +(petri (? c58 p58 (! c59 p59))) +(petri (? c59 p59 (! c60 p60))) +(petri (? c60 p60 (! c61 p61))) +(petri (? c61 p61 (! c62 p62))) +(petri (? c62 p62 (! c63 p63))) +(petri (? c63 p63 (! c64 p64))) +(petri (? c64 p64 (! c65 p65))) +(petri (? c65 p65 (! c66 p66))) +(petri (? c66 p66 (! c67 p67))) +(petri (? c67 p67 (! c68 p68))) +(petri (? c68 p68 (! c69 p69))) +(petri (? c69 p69 (! c70 p70))) +(petri (? c70 p70 (! c71 p71))) +(petri (? c71 p71 (! c72 p72))) +(petri (? c72 p72 (! c73 p73))) +(petri (? c73 p73 (! c74 p74))) +(petri (? c74 p74 (! c75 p75))) +(petri (? c75 p75 (! c76 p76))) +(petri (? c76 p76 (! c77 p77))) +(petri (? c77 p77 (! c78 p78))) +(petri (? c78 p78 (! c79 p79))) +(petri (? c79 p79 (! c80 p80))) +(petri (? c80 p80 (! c81 p81))) +(petri (? c81 p81 (! c82 p82))) +(petri (? c82 p82 (! c83 p83))) +(petri (? c83 p83 (! c84 p84))) +(petri (? c84 p84 (! c85 p85))) +(petri (? c85 p85 (! c86 p86))) +(petri (? c86 p86 (! c87 p87))) +(petri (? c87 p87 (! c88 p88))) +(petri (? c88 p88 (! c89 p89))) +(petri (? c89 p89 (! c90 p90))) +(petri (? c90 p90 (! c91 p91))) +(petri (? c91 p91 (! c92 p92))) +(petri (? c92 p92 (! c93 p93))) +(petri (? c93 p93 (! c94 p94))) +(petri (? c94 p94 (! c95 p95))) +(petri (? c95 p95 (! c96 p96))) +(petri (? c96 p96 (! c97 p97))) +(petri (? c97 p97 (! c98 p98))) +(petri (? c98 p98 (! c99 p99))) +(petri (? c99 p99 (! c100 p100))) +(petri (? c100 p100 (! c101 p101))) +(petri (? c101 p101 (! c102 p102))) +(petri (? c102 p102 (! c103 p103))) +(petri (? c103 p103 (! c104 p104))) +(petri (? c104 p104 (! c105 p105))) +(petri (? c105 p105 (! c106 p106))) +(petri (? c106 p106 (! c107 p107))) +(petri (? c107 p107 (! c108 p108))) +(petri (? c108 p108 (! c109 p109))) +(petri (? c109 p109 (! c110 p110))) +(petri (? c110 p110 (! c111 p111))) +(petri (? c111 p111 (! c112 p112))) +(petri (? c112 p112 (! c113 p113))) +(petri (? c113 p113 (! c114 p114))) +(petri (? c114 p114 (! c115 p115))) +(petri (? c115 p115 (! c116 p116))) +(petri (? c116 p116 (! c117 p117))) +(petri (? c117 p117 (! c118 p118))) +(petri (? c118 p118 (! c119 p119))) +(petri (? c119 p119 (! c120 p120))) +(petri (? c120 p120 (! c121 p121))) +(petri (? c121 p121 (! c122 p122))) +(petri (? c122 p122 (! c123 p123))) +(petri (? c123 p123 (! c124 p124))) +(petri (? c124 p124 (! c125 p125))) +(petri (? c125 p125 (! c126 p126))) +(petri (? c126 p126 (! c127 p127))) +(petri (? c127 p127 (! c128 p128))) +(petri (? c128 p128 (! c129 p129))) +(petri (? c129 p129 (! c130 p130))) +(petri (? c130 p130 (! c131 p131))) +(petri (? c131 p131 (! c132 p132))) +(petri (? c132 p132 (! c133 p133))) +(petri (? c133 p133 (! c134 p134))) +(petri (? c134 p134 (! c135 p135))) +(petri (? c135 p135 (! c136 p136))) +(petri (? c136 p136 (! c137 p137))) +(petri (? c137 p137 (! c138 p138))) +(petri (? c138 p138 (! c139 p139))) +(petri (? c139 p139 (! c140 p140))) +(petri (? c140 p140 (! c141 p141))) +(petri (? c141 p141 (! c142 p142))) +(petri (? c142 p142 (! c143 p143))) +(petri (? c143 p143 (! c144 p144))) +(petri (? c144 p144 (! c145 p145))) +(petri (? c145 p145 (! c146 p146))) +(petri (? c146 p146 (! c147 p147))) +(petri (? c147 p147 (! c148 p148))) +(petri (? c148 p148 (! c149 p149))) +(petri (? c149 p149 (! c150 p150))) +(petri (? c150 p150 (! c151 p151))) +(petri (? c151 p151 (! c152 p152))) +(petri (? c152 p152 (! c153 p153))) +(petri (? c153 p153 (! c154 p154))) +(petri (? c154 p154 (! c155 p155))) +(petri (? c155 p155 (! c156 p156))) +(petri (? c156 p156 (! c157 p157))) +(petri (? c157 p157 (! c158 p158))) +(petri (? c158 p158 (! c159 p159))) +(petri (? c159 p159 (! c160 p160))) +(petri (? c160 p160 (! c161 p161))) +(petri (? c161 p161 (! c162 p162))) +(petri (? c162 p162 (! c163 p163))) +(petri (? c163 p163 (! c164 p164))) +(petri (? c164 p164 (! c165 p165))) +(petri (? c165 p165 (! c166 p166))) +(petri (? c166 p166 (! c167 p167))) +(petri (? c167 p167 (! c168 p168))) +(petri (? c168 p168 (! c169 p169))) +(petri (? c169 p169 (! c170 p170))) +(petri (? c170 p170 (! c171 p171))) +(petri (? c171 p171 (! c172 p172))) +(petri (? c172 p172 (! c173 p173))) +(petri (? c173 p173 (! c174 p174))) +(petri (? c174 p174 (! c175 p175))) +(petri (? c175 p175 (! c176 p176))) +(petri (? c176 p176 (! c177 p177))) +(petri (? c177 p177 (! c178 p178))) +(petri (? c178 p178 (! c179 p179))) +(petri (? c179 p179 (! c180 p180))) +(petri (? c180 p180 (! c181 p181))) +(petri (? c181 p181 (! c182 p182))) +(petri (? c182 p182 (! c183 p183))) +(petri (? c183 p183 (! c184 p184))) +(petri (? c184 p184 (! c185 p185))) +(petri (? c185 p185 (! c186 p186))) +(petri (? c186 p186 (! c187 p187))) +(petri (? c187 p187 (! c188 p188))) +(petri (? c188 p188 (! c189 p189))) +(petri (? c189 p189 (! c190 p190))) +(petri (? c190 p190 (! c191 p191))) +(petri (? c191 p191 (! c192 p192))) +(petri (? c192 p192 (! c193 p193))) +(petri (? c193 p193 (! c194 p194))) +(petri (? c194 p194 (! c195 p195))) +(petri (? c195 p195 (! c196 p196))) +(petri (? c196 p196 (! c197 p197))) +(petri (? c197 p197 (! c198 p198))) +(petri (? c198 p198 (! c199 p199))) +(petri (? c199 p199 (! c200 p200))) +(petri (? c200 p200 (! c201 p201))) +(petri (? c201 p201 (! c202 p202))) +(petri (? c202 p202 (! c203 p203))) +(petri (? c203 p203 (! c204 p204))) +(petri (? c204 p204 (! c205 p205))) +(petri (? c205 p205 (! c206 p206))) +(petri (? c206 p206 (! c207 p207))) +(petri (? c207 p207 (! c208 p208))) +(petri (? c208 p208 (! c209 p209))) +(petri (? c209 p209 (! c210 p210))) +(petri (? c210 p210 (! c211 p211))) +(petri (? c211 p211 (! c212 p212))) +(petri (? c212 p212 (! c213 p213))) +(petri (? c213 p213 (! c214 p214))) +(petri (? c214 p214 (! c215 p215))) +(petri (? c215 p215 (! c216 p216))) +(petri (? c216 p216 (! c217 p217))) +(petri (? c217 p217 (! c218 p218))) +(petri (? c218 p218 (! c219 p219))) +(petri (? c219 p219 (! c220 p220))) +(petri (? c220 p220 (! c221 p221))) +(petri (? c221 p221 (! c222 p222))) +(petri (? c222 p222 (! c223 p223))) +(petri (? c223 p223 (! c224 p224))) +(petri (? c224 p224 (! c225 p225))) +(petri (? c225 p225 (! c226 p226))) +(petri (? c226 p226 (! c227 p227))) +(petri (? c227 p227 (! c228 p228))) +(petri (? c228 p228 (! c229 p229))) +(petri (? c229 p229 (! c230 p230))) +(petri (? c230 p230 (! c231 p231))) +(petri (? c231 p231 (! c232 p232))) +(petri (? c232 p232 (! c233 p233))) +(petri (? c233 p233 (! c234 p234))) +(petri (? c234 p234 (! c235 p235))) +(petri (? c235 p235 (! c236 p236))) +(petri (? c236 p236 (! c237 p237))) +(petri (? c237 p237 (! c238 p238))) +(petri (? c238 p238 (! c239 p239))) +(petri (? c239 p239 (! c240 p240))) +(petri (? c240 p240 (! c241 p241))) +(petri (? c241 p241 (! c242 p242))) +(petri (? c242 p242 (! c243 p243))) +(petri (? c243 p243 (! c244 p244))) +(petri (? c244 p244 (! c245 p245))) +(petri (? c245 p245 (! c246 p246))) +(petri (? c246 p246 (! c247 p247))) +(petri (? c247 p247 (! c248 p248))) +(petri (? c248 p248 (! c249 p249))) +(petri (? c249 p249 (! c250 p250))) +(petri (? c250 p250 (! c251 p251))) +(petri (? c251 p251 (! c252 p252))) +(petri (? c252 p252 (! c253 p253))) +(petri (? c253 p253 (! c254 p254))) +(petri (? c254 p254 (! c255 p255))) +(petri (? c255 p255 (! c256 p256))) +(petri (? c256 p256 (! c257 p257))) +(petri (? c257 p257 (! c258 p258))) +(petri (? c258 p258 (! c259 p259))) +(petri (? c259 p259 (! c260 p260))) +(petri (? c260 p260 (! c261 p261))) +(petri (? c261 p261 (! c262 p262))) +(petri (? c262 p262 (! c263 p263))) +(petri (? c263 p263 (! c264 p264))) +(petri (? c264 p264 (! c265 p265))) +(petri (? c265 p265 (! c266 p266))) +(petri (? c266 p266 (! c267 p267))) +(petri (? c267 p267 (! c268 p268))) +(petri (? c268 p268 (! c269 p269))) +(petri (? c269 p269 (! c270 p270))) +(petri (? c270 p270 (! c271 p271))) +(petri (? c271 p271 (! c272 p272))) +(petri (? c272 p272 (! c273 p273))) +(petri (? c273 p273 (! c274 p274))) +(petri (? c274 p274 (! c275 p275))) +(petri (? c275 p275 (! c276 p276))) +(petri (? c276 p276 (! c277 p277))) +(petri (? c277 p277 (! c278 p278))) +(petri (? c278 p278 (! c279 p279))) +(petri (? c279 p279 (! c280 p280))) +(petri (? c280 p280 (! c281 p281))) +(petri (? c281 p281 (! c282 p282))) +(petri (? c282 p282 (! c283 p283))) +(petri (? c283 p283 (! c284 p284))) +(petri (? c284 p284 (! c285 p285))) +(petri (? c285 p285 (! c286 p286))) +(petri (? c286 p286 (! c287 p287))) +(petri (? c287 p287 (! c288 p288))) +(petri (? c288 p288 (! c289 p289))) +(petri (? c289 p289 (! c290 p290))) +(petri (? c290 p290 (! c291 p291))) +(petri (? c291 p291 (! c292 p292))) +(petri (? c292 p292 (! c293 p293))) +(petri (? c293 p293 (! c294 p294))) +(petri (? c294 p294 (! c295 p295))) +(petri (? c295 p295 (! c296 p296))) +(petri (? c296 p296 (! c297 p297))) +(petri (? c297 p297 (! c298 p298))) +(petri (? c298 p298 (! c299 p299))) +(petri (? c299 p299 (! c300 p300))) +(petri (? c300 p300 (! c301 p301))) +(petri (? c301 p301 (! c302 p302))) +(petri (? c302 p302 (! c303 p303))) +(petri (? c303 p303 (! c304 p304))) +(petri (? c304 p304 (! c305 p305))) +(petri (? c305 p305 (! c306 p306))) +(petri (? c306 p306 (! c307 p307))) +(petri (? c307 p307 (! c308 p308))) +(petri (? c308 p308 (! c309 p309))) +(petri (? c309 p309 (! c310 p310))) +(petri (? c310 p310 (! c311 p311))) +(petri (? c311 p311 (! c312 p312))) +(petri (? c312 p312 (! c313 p313))) +(petri (? c313 p313 (! c314 p314))) +(petri (? c314 p314 (! c315 p315))) +(petri (? c315 p315 (! c316 p316))) +(petri (? c316 p316 (! c317 p317))) +(petri (? c317 p317 (! c318 p318))) +(petri (? c318 p318 (! c319 p319))) +(petri (? c319 p319 (! c320 p320))) +(petri (? c320 p320 (! c321 p321))) +(petri (? c321 p321 (! c322 p322))) +(petri (? c322 p322 (! c323 p323))) +(petri (? c323 p323 (! c324 p324))) +(petri (? c324 p324 (! c325 p325))) +(petri (? c325 p325 (! c326 p326))) +(petri (? c326 p326 (! c327 p327))) +(petri (? c327 p327 (! c328 p328))) +(petri (? c328 p328 (! c329 p329))) +(petri (? c329 p329 (! c330 p330))) +(petri (? c330 p330 (! c331 p331))) +(petri (? c331 p331 (! c332 p332))) +(petri (? c332 p332 (! c333 p333))) +(petri (? c333 p333 (! c334 p334))) +(petri (? c334 p334 (! c335 p335))) +(petri (? c335 p335 (! c336 p336))) +(petri (? c336 p336 (! c337 p337))) +(petri (? c337 p337 (! c338 p338))) +(petri (? c338 p338 (! c339 p339))) +(petri (? c339 p339 (! c340 p340))) +(petri (? c340 p340 (! c341 p341))) +(petri (? c341 p341 (! c342 p342))) +(petri (? c342 p342 (! c343 p343))) +(petri (? c343 p343 (! c344 p344))) +(petri (? c344 p344 (! c345 p345))) +(petri (? c345 p345 (! c346 p346))) +(petri (? c346 p346 (! c347 p347))) +(petri (? c347 p347 (! c348 p348))) +(petri (? c348 p348 (! c349 p349))) +(petri (? c349 p349 (! c350 p350))) +(petri (? c350 p350 (! c351 p351))) +(petri (? c351 p351 (! c352 p352))) +(petri (? c352 p352 (! c353 p353))) +(petri (? c353 p353 (! c354 p354))) +(petri (? c354 p354 (! c355 p355))) +(petri (? c355 p355 (! c356 p356))) +(petri (? c356 p356 (! c357 p357))) +(petri (? c357 p357 (! c358 p358))) +(petri (? c358 p358 (! c359 p359))) +(petri (? c359 p359 (! c360 p360))) +(petri (? c360 p360 (! c361 p361))) +(petri (? c361 p361 (! c362 p362))) +(petri (? c362 p362 (! c363 p363))) +(petri (? c363 p363 (! c364 p364))) +(petri (? c364 p364 (! c365 p365))) +(petri (? c365 p365 (! c366 p366))) +(petri (? c366 p366 (! c367 p367))) +(petri (? c367 p367 (! c368 p368))) +(petri (? c368 p368 (! c369 p369))) +(petri (? c369 p369 (! c370 p370))) +(petri (? c370 p370 (! c371 p371))) +(petri (? c371 p371 (! c372 p372))) +(petri (? c372 p372 (! c373 p373))) +(petri (? c373 p373 (! c374 p374))) +(petri (? c374 p374 (! c375 p375))) +(petri (? c375 p375 (! c376 p376))) +(petri (? c376 p376 (! c377 p377))) +(petri (? c377 p377 (! c378 p378))) +(petri (? c378 p378 (! c379 p379))) +(petri (? c379 p379 (! c380 p380))) +(petri (? c380 p380 (! c381 p381))) +(petri (? c381 p381 (! c382 p382))) +(petri (? c382 p382 (! c383 p383))) +(petri (? c383 p383 (! c384 p384))) +(petri (? c384 p384 (! c385 p385))) +(petri (? c385 p385 (! c386 p386))) +(petri (? c386 p386 (! c387 p387))) +(petri (? c387 p387 (! c388 p388))) +(petri (? c388 p388 (! c389 p389))) +(petri (? c389 p389 (! c390 p390))) +(petri (? c390 p390 (! c391 p391))) +(petri (? c391 p391 (! c392 p392))) +(petri (? c392 p392 (! c393 p393))) +(petri (? c393 p393 (! c394 p394))) +(petri (? c394 p394 (! c395 p395))) +(petri (? c395 p395 (! c396 p396))) +(petri (? c396 p396 (! c397 p397))) +(petri (? c397 p397 (! c398 p398))) +(petri (? c398 p398 (! c399 p399))) +(petri (? c399 p399 (! c400 p400))) +(petri (? c400 p400 (! c401 p401))) +(petri (? c401 p401 (! c402 p402))) +(petri (? c402 p402 (! c403 p403))) +(petri (? c403 p403 (! c404 p404))) +(petri (? c404 p404 (! c405 p405))) +(petri (? c405 p405 (! c406 p406))) +(petri (? c406 p406 (! c407 p407))) +(petri (? c407 p407 (! c408 p408))) +(petri (? c408 p408 (! c409 p409))) +(petri (? c409 p409 (! c410 p410))) +(petri (? c410 p410 (! c411 p411))) +(petri (? c411 p411 (! c412 p412))) +(petri (? c412 p412 (! c413 p413))) +(petri (? c413 p413 (! c414 p414))) +(petri (? c414 p414 (! c415 p415))) +(petri (? c415 p415 (! c416 p416))) +(petri (? c416 p416 (! c417 p417))) +(petri (? c417 p417 (! c418 p418))) +(petri (? c418 p418 (! c419 p419))) +(petri (? c419 p419 (! c420 p420))) +(petri (? c420 p420 (! c421 p421))) +(petri (? c421 p421 (! c422 p422))) +(petri (? c422 p422 (! c423 p423))) +(petri (? c423 p423 (! c424 p424))) +(petri (? c424 p424 (! c425 p425))) +(petri (? c425 p425 (! c426 p426))) +(petri (? c426 p426 (! c427 p427))) +(petri (? c427 p427 (! c428 p428))) +(petri (? c428 p428 (! c429 p429))) +(petri (? c429 p429 (! c430 p430))) +(petri (? c430 p430 (! c431 p431))) +(petri (? c431 p431 (! c432 p432))) +(petri (? c432 p432 (! c433 p433))) +(petri (? c433 p433 (! c434 p434))) +(petri (? c434 p434 (! c435 p435))) +(petri (? c435 p435 (! c436 p436))) +(petri (? c436 p436 (! c437 p437))) +(petri (? c437 p437 (! c438 p438))) +(petri (? c438 p438 (! c439 p439))) +(petri (? c439 p439 (! c440 p440))) +(petri (? c440 p440 (! c441 p441))) +(petri (? c441 p441 (! c442 p442))) +(petri (? c442 p442 (! c443 p443))) +(petri (? c443 p443 (! c444 p444))) +(petri (? c444 p444 (! c445 p445))) +(petri (? c445 p445 (! c446 p446))) +(petri (? c446 p446 (! c447 p447))) +(petri (? c447 p447 (! c448 p448))) +(petri (? c448 p448 (! c449 p449))) +(petri (? c449 p449 (! c450 p450))) +(petri (? c450 p450 (! c451 p451))) +(petri (? c451 p451 (! c452 p452))) +(petri (? c452 p452 (! c453 p453))) +(petri (? c453 p453 (! c454 p454))) +(petri (? c454 p454 (! c455 p455))) +(petri (? c455 p455 (! c456 p456))) +(petri (? c456 p456 (! c457 p457))) +(petri (? c457 p457 (! c458 p458))) +(petri (? c458 p458 (! c459 p459))) +(petri (? c459 p459 (! c460 p460))) +(petri (? c460 p460 (! c461 p461))) +(petri (? c461 p461 (! c462 p462))) +(petri (? c462 p462 (! c463 p463))) +(petri (? c463 p463 (! c464 p464))) +(petri (? c464 p464 (! c465 p465))) +(petri (? c465 p465 (! c466 p466))) +(petri (? c466 p466 (! c467 p467))) +(petri (? c467 p467 (! c468 p468))) +(petri (? c468 p468 (! c469 p469))) +(petri (? c469 p469 (! c470 p470))) +(petri (? c470 p470 (! c471 p471))) +(petri (? c471 p471 (! c472 p472))) +(petri (? c472 p472 (! c473 p473))) +(petri (? c473 p473 (! c474 p474))) +(petri (? c474 p474 (! c475 p475))) +(petri (? c475 p475 (! c476 p476))) +(petri (? c476 p476 (! c477 p477))) +(petri (? c477 p477 (! c478 p478))) +(petri (? c478 p478 (! c479 p479))) +(petri (? c479 p479 (! c480 p480))) +(petri (? c480 p480 (! c481 p481))) +(petri (? c481 p481 (! c482 p482))) +(petri (? c482 p482 (! c483 p483))) +(petri (? c483 p483 (! c484 p484))) +(petri (? c484 p484 (! c485 p485))) +(petri (? c485 p485 (! c486 p486))) +(petri (? c486 p486 (! c487 p487))) +(petri (? c487 p487 (! c488 p488))) +(petri (? c488 p488 (! c489 p489))) +(petri (? c489 p489 (! c490 p490))) +(petri (? c490 p490 (! c491 p491))) +(petri (? c491 p491 (! c492 p492))) +(petri (? c492 p492 (! c493 p493))) +(petri (? c493 p493 (! c494 p494))) +(petri (? c494 p494 (! c495 p495))) +(petri (? c495 p495 (! c496 p496))) +(petri (? c496 p496 (! c497 p497))) +(petri (? c497 p497 (! c498 p498))) +(petri (? c498 p498 (! c499 p499))) +(petri (? c499 p499 (! c500 p500))) +(petri (? c500 p500 (! c501 p501))) +(petri (? c501 p501 (! c502 p502))) +(petri (? c502 p502 (! c503 p503))) +(petri (? c503 p503 (! c504 p504))) +(petri (? c504 p504 (! c505 p505))) +(petri (? c505 p505 (! c506 p506))) +(petri (? c506 p506 (! c507 p507))) +(petri (? c507 p507 (! c508 p508))) +(petri (? c508 p508 (! c509 p509))) +(petri (? c509 p509 (! c510 p510))) +(petri (? c510 p510 (! c511 p511))) +(petri (? c511 p511 (! c512 p512))) +(petri (? c512 p512 (! c513 p513))) +(petri (? c513 p513 (! c514 p514))) +(petri (? c514 p514 (! c515 p515))) +(petri (? c515 p515 (! c516 p516))) +(petri (? c516 p516 (! c517 p517))) +(petri (? c517 p517 (! c518 p518))) +(petri (? c518 p518 (! c519 p519))) +(petri (? c519 p519 (! c520 p520))) +(petri (? c520 p520 (! c521 p521))) +(petri (? c521 p521 (! c522 p522))) +(petri (? c522 p522 (! c523 p523))) +(petri (? c523 p523 (! c524 p524))) +(petri (? c524 p524 (! c525 p525))) +(petri (? c525 p525 (! c526 p526))) +(petri (? c526 p526 (! c527 p527))) +(petri (? c527 p527 (! c528 p528))) +(petri (? c528 p528 (! c529 p529))) +(petri (? c529 p529 (! c530 p530))) +(petri (? c530 p530 (! c531 p531))) +(petri (? c531 p531 (! c532 p532))) +(petri (? c532 p532 (! c533 p533))) +(petri (? c533 p533 (! c534 p534))) +(petri (? c534 p534 (! c535 p535))) +(petri (? c535 p535 (! c536 p536))) +(petri (? c536 p536 (! c537 p537))) +(petri (? c537 p537 (! c538 p538))) +(petri (? c538 p538 (! c539 p539))) +(petri (? c539 p539 (! c540 p540))) +(petri (? c540 p540 (! c541 p541))) +(petri (? c541 p541 (! c542 p542))) +(petri (? c542 p542 (! c543 p543))) +(petri (? c543 p543 (! c544 p544))) +(petri (? c544 p544 (! c545 p545))) +(petri (? c545 p545 (! c546 p546))) +(petri (? c546 p546 (! c547 p547))) +(petri (? c547 p547 (! c548 p548))) +(petri (? c548 p548 (! c549 p549))) +(petri (? c549 p549 (! c550 p550))) +(petri (? c550 p550 (! c551 p551))) +(petri (? c551 p551 (! c552 p552))) +(petri (? c552 p552 (! c553 p553))) +(petri (? c553 p553 (! c554 p554))) +(petri (? c554 p554 (! c555 p555))) +(petri (? c555 p555 (! c556 p556))) +(petri (? c556 p556 (! c557 p557))) +(petri (? c557 p557 (! c558 p558))) +(petri (? c558 p558 (! c559 p559))) +(petri (? c559 p559 (! c560 p560))) +(petri (? c560 p560 (! c561 p561))) +(petri (? c561 p561 (! c562 p562))) +(petri (? c562 p562 (! c563 p563))) +(petri (? c563 p563 (! c564 p564))) +(petri (? c564 p564 (! c565 p565))) +(petri (? c565 p565 (! c566 p566))) +(petri (? c566 p566 (! c567 p567))) +(petri (? c567 p567 (! c568 p568))) +(petri (? c568 p568 (! c569 p569))) +(petri (? c569 p569 (! c570 p570))) +(petri (? c570 p570 (! c571 p571))) +(petri (? c571 p571 (! c572 p572))) +(petri (? c572 p572 (! c573 p573))) +(petri (? c573 p573 (! c574 p574))) +(petri (? c574 p574 (! c575 p575))) +(petri (? c575 p575 (! c576 p576))) +(petri (? c576 p576 (! c577 p577))) +(petri (? c577 p577 (! c578 p578))) +(petri (? c578 p578 (! c579 p579))) +(petri (? c579 p579 (! c580 p580))) +(petri (? c580 p580 (! c581 p581))) +(petri (? c581 p581 (! c582 p582))) +(petri (? c582 p582 (! c583 p583))) +(petri (? c583 p583 (! c584 p584))) +(petri (? c584 p584 (! c585 p585))) +(petri (? c585 p585 (! c586 p586))) +(petri (? c586 p586 (! c587 p587))) +(petri (? c587 p587 (! c588 p588))) +(petri (? c588 p588 (! c589 p589))) +(petri (? c589 p589 (! c590 p590))) +(petri (? c590 p590 (! c591 p591))) +(petri (? c591 p591 (! c592 p592))) +(petri (? c592 p592 (! c593 p593))) +(petri (? c593 p593 (! c594 p594))) +(petri (? c594 p594 (! c595 p595))) +(petri (? c595 p595 (! c596 p596))) +(petri (? c596 p596 (! c597 p597))) +(petri (? c597 p597 (! c598 p598))) +(petri (? c598 p598 (! c599 p599))) +(petri (? c599 p599 (! c600 p600))) +(petri (? c600 p600 (! c601 p601))) +(petri (? c601 p601 (! c602 p602))) +(petri (? c602 p602 (! c603 p603))) +(petri (? c603 p603 (! c604 p604))) +(petri (? c604 p604 (! c605 p605))) +(petri (? c605 p605 (! c606 p606))) +(petri (? c606 p606 (! c607 p607))) +(petri (? c607 p607 (! c608 p608))) +(petri (? c608 p608 (! c609 p609))) +(petri (? c609 p609 (! c610 p610))) +(petri (? c610 p610 (! c611 p611))) +(petri (? c611 p611 (! c612 p612))) +(petri (? c612 p612 (! c613 p613))) +(petri (? c613 p613 (! c614 p614))) +(petri (? c614 p614 (! c615 p615))) +(petri (? c615 p615 (! c616 p616))) +(petri (? c616 p616 (! c617 p617))) +(petri (? c617 p617 (! c618 p618))) +(petri (? c618 p618 (! c619 p619))) +(petri (? c619 p619 (! c620 p620))) +(petri (? c620 p620 (! c621 p621))) +(petri (? c621 p621 (! c622 p622))) +(petri (? c622 p622 (! c623 p623))) +(petri (? c623 p623 (! c624 p624))) +(petri (? c624 p624 (! c625 p625))) +(petri (? c625 p625 (! c626 p626))) +(petri (? c626 p626 (! c627 p627))) +(petri (? c627 p627 (! c628 p628))) +(petri (? c628 p628 (! c629 p629))) +(petri (? c629 p629 (! c630 p630))) +(petri (? c630 p630 (! c631 p631))) +(petri (? c631 p631 (! c632 p632))) +(petri (? c632 p632 (! c633 p633))) +(petri (? c633 p633 (! c634 p634))) +(petri (? c634 p634 (! c635 p635))) +(petri (? c635 p635 (! c636 p636))) +(petri (? c636 p636 (! c637 p637))) +(petri (? c637 p637 (! c638 p638))) +(petri (? c638 p638 (! c639 p639))) +(petri (? c639 p639 (! c640 p640))) +(petri (? c640 p640 (! c641 p641))) +(petri (? c641 p641 (! c642 p642))) +(petri (? c642 p642 (! c643 p643))) +(petri (? c643 p643 (! c644 p644))) +(petri (? c644 p644 (! c645 p645))) +(petri (? c645 p645 (! c646 p646))) +(petri (? c646 p646 (! c647 p647))) +(petri (? c647 p647 (! c648 p648))) +(petri (? c648 p648 (! c649 p649))) +(petri (? c649 p649 (! c650 p650))) +(petri (? c650 p650 (! c651 p651))) +(petri (? c651 p651 (! c652 p652))) +(petri (? c652 p652 (! c653 p653))) +(petri (? c653 p653 (! c654 p654))) +(petri (? c654 p654 (! c655 p655))) +(petri (? c655 p655 (! c656 p656))) +(petri (? c656 p656 (! c657 p657))) +(petri (? c657 p657 (! c658 p658))) +(petri (? c658 p658 (! c659 p659))) +(petri (? c659 p659 (! c660 p660))) +(petri (? c660 p660 (! c661 p661))) +(petri (? c661 p661 (! c662 p662))) +(petri (? c662 p662 (! c663 p663))) +(petri (? c663 p663 (! c664 p664))) +(petri (? c664 p664 (! c665 p665))) +(petri (? c665 p665 (! c666 p666))) +(petri (? c666 p666 (! c667 p667))) +(petri (? c667 p667 (! c668 p668))) +(petri (? c668 p668 (! c669 p669))) +(petri (? c669 p669 (! c670 p670))) +(petri (? c670 p670 (! c671 p671))) +(petri (? c671 p671 (! c672 p672))) +(petri (? c672 p672 (! c673 p673))) +(petri (? c673 p673 (! c674 p674))) +(petri (? c674 p674 (! c675 p675))) +(petri (? c675 p675 (! c676 p676))) +(petri (? c676 p676 (! c677 p677))) +(petri (? c677 p677 (! c678 p678))) +(petri (? c678 p678 (! c679 p679))) +(petri (? c679 p679 (! c680 p680))) +(petri (? c680 p680 (! c681 p681))) +(petri (? c681 p681 (! c682 p682))) +(petri (? c682 p682 (! c683 p683))) +(petri (? c683 p683 (! c684 p684))) +(petri (? c684 p684 (! c685 p685))) +(petri (? c685 p685 (! c686 p686))) +(petri (? c686 p686 (! c687 p687))) +(petri (? c687 p687 (! c688 p688))) +(petri (? c688 p688 (! c689 p689))) +(petri (? c689 p689 (! c690 p690))) +(petri (? c690 p690 (! c691 p691))) +(petri (? c691 p691 (! c692 p692))) +(petri (? c692 p692 (! c693 p693))) +(petri (? c693 p693 (! c694 p694))) +(petri (? c694 p694 (! c695 p695))) +(petri (? c695 p695 (! c696 p696))) +(petri (? c696 p696 (! c697 p697))) +(petri (? c697 p697 (! c698 p698))) +(petri (? c698 p698 (! c699 p699))) +(petri (? c699 p699 (! c700 p700))) +(petri (? c700 p700 (! c701 p701))) +(petri (? c701 p701 (! c702 p702))) +(petri (? c702 p702 (! c703 p703))) +(petri (? c703 p703 (! c704 p704))) +(petri (? c704 p704 (! c705 p705))) +(petri (? c705 p705 (! c706 p706))) +(petri (? c706 p706 (! c707 p707))) +(petri (? c707 p707 (! c708 p708))) +(petri (? c708 p708 (! c709 p709))) +(petri (? c709 p709 (! c710 p710))) +(petri (? c710 p710 (! c711 p711))) +(petri (? c711 p711 (! c712 p712))) +(petri (? c712 p712 (! c713 p713))) +(petri (? c713 p713 (! c714 p714))) +(petri (? c714 p714 (! c715 p715))) +(petri (? c715 p715 (! c716 p716))) +(petri (? c716 p716 (! c717 p717))) +(petri (? c717 p717 (! c718 p718))) +(petri (? c718 p718 (! c719 p719))) +(petri (? c719 p719 (! c720 p720))) +(petri (? c720 p720 (! c721 p721))) +(petri (? c721 p721 (! c722 p722))) +(petri (? c722 p722 (! c723 p723))) +(petri (? c723 p723 (! c724 p724))) +(petri (? c724 p724 (! c725 p725))) +(petri (? c725 p725 (! c726 p726))) +(petri (? c726 p726 (! c727 p727))) +(petri (? c727 p727 (! c728 p728))) +(petri (? c728 p728 (! c729 p729))) +(petri (? c729 p729 (! c730 p730))) +(petri (? c730 p730 (! c731 p731))) +(petri (? c731 p731 (! c732 p732))) +(petri (? c732 p732 (! c733 p733))) +(petri (? c733 p733 (! c734 p734))) +(petri (? c734 p734 (! c735 p735))) +(petri (? c735 p735 (! c736 p736))) +(petri (? c736 p736 (! c737 p737))) +(petri (? c737 p737 (! c738 p738))) +(petri (? c738 p738 (! c739 p739))) +(petri (? c739 p739 (! c740 p740))) +(petri (? c740 p740 (! c741 p741))) +(petri (? c741 p741 (! c742 p742))) +(petri (? c742 p742 (! c743 p743))) +(petri (? c743 p743 (! c744 p744))) +(petri (? c744 p744 (! c745 p745))) +(petri (? c745 p745 (! c746 p746))) +(petri (? c746 p746 (! c747 p747))) +(petri (? c747 p747 (! c748 p748))) +(petri (? c748 p748 (! c749 p749))) +(petri (? c749 p749 (! c750 p750))) +(petri (? c750 p750 (! c751 p751))) +(petri (? c751 p751 (! c752 p752))) +(petri (? c752 p752 (! c753 p753))) +(petri (? c753 p753 (! c754 p754))) +(petri (? c754 p754 (! c755 p755))) +(petri (? c755 p755 (! c756 p756))) +(petri (? c756 p756 (! c757 p757))) +(petri (? c757 p757 (! c758 p758))) +(petri (? c758 p758 (! c759 p759))) +(petri (? c759 p759 (! c760 p760))) +(petri (? c760 p760 (! c761 p761))) +(petri (? c761 p761 (! c762 p762))) +(petri (? c762 p762 (! c763 p763))) +(petri (? c763 p763 (! c764 p764))) +(petri (? c764 p764 (! c765 p765))) +(petri (? c765 p765 (! c766 p766))) +(petri (? c766 p766 (! c767 p767))) +(petri (? c767 p767 (! c768 p768))) +(petri (? c768 p768 (! c769 p769))) +(petri (? c769 p769 (! c770 p770))) +(petri (? c770 p770 (! c771 p771))) +(petri (? c771 p771 (! c772 p772))) +(petri (? c772 p772 (! c773 p773))) +(petri (? c773 p773 (! c774 p774))) +(petri (? c774 p774 (! c775 p775))) +(petri (? c775 p775 (! c776 p776))) +(petri (? c776 p776 (! c777 p777))) +(petri (? c777 p777 (! c778 p778))) +(petri (? c778 p778 (! c779 p779))) +(petri (? c779 p779 (! c780 p780))) +(petri (? c780 p780 (! c781 p781))) +(petri (? c781 p781 (! c782 p782))) +(petri (? c782 p782 (! c783 p783))) +(petri (? c783 p783 (! c784 p784))) +(petri (? c784 p784 (! c785 p785))) +(petri (? c785 p785 (! c786 p786))) +(petri (? c786 p786 (! c787 p787))) +(petri (? c787 p787 (! c788 p788))) +(petri (? c788 p788 (! c789 p789))) +(petri (? c789 p789 (! c790 p790))) +(petri (? c790 p790 (! c791 p791))) +(petri (? c791 p791 (! c792 p792))) +(petri (? c792 p792 (! c793 p793))) +(petri (? c793 p793 (! c794 p794))) +(petri (? c794 p794 (! c795 p795))) +(petri (? c795 p795 (! c796 p796))) +(petri (? c796 p796 (! c797 p797))) +(petri (? c797 p797 (! c798 p798))) +(petri (? c798 p798 (! c799 p799))) +(petri (? c799 p799 (! c800 p800))) +(petri (? c800 p800 (! c801 p801))) +(petri (? c801 p801 (! c802 p802))) +(petri (? c802 p802 (! c803 p803))) +(petri (? c803 p803 (! c804 p804))) +(petri (? c804 p804 (! c805 p805))) +(petri (? c805 p805 (! c806 p806))) +(petri (? c806 p806 (! c807 p807))) +(petri (? c807 p807 (! c808 p808))) +(petri (? c808 p808 (! c809 p809))) +(petri (? c809 p809 (! c810 p810))) +(petri (? c810 p810 (! c811 p811))) +(petri (? c811 p811 (! c812 p812))) +(petri (? c812 p812 (! c813 p813))) +(petri (? c813 p813 (! c814 p814))) +(petri (? c814 p814 (! c815 p815))) +(petri (? c815 p815 (! c816 p816))) +(petri (? c816 p816 (! c817 p817))) +(petri (? c817 p817 (! c818 p818))) +(petri (? c818 p818 (! c819 p819))) +(petri (? c819 p819 (! c820 p820))) +(petri (? c820 p820 (! c821 p821))) +(petri (? c821 p821 (! c822 p822))) +(petri (? c822 p822 (! c823 p823))) +(petri (? c823 p823 (! c824 p824))) +(petri (? c824 p824 (! c825 p825))) +(petri (? c825 p825 (! c826 p826))) +(petri (? c826 p826 (! c827 p827))) +(petri (? c827 p827 (! c828 p828))) +(petri (? c828 p828 (! c829 p829))) +(petri (? c829 p829 (! c830 p830))) +(petri (? c830 p830 (! c831 p831))) +(petri (? c831 p831 (! c832 p832))) +(petri (? c832 p832 (! c833 p833))) +(petri (? c833 p833 (! c834 p834))) +(petri (? c834 p834 (! c835 p835))) +(petri (? c835 p835 (! c836 p836))) +(petri (? c836 p836 (! c837 p837))) +(petri (? c837 p837 (! c838 p838))) +(petri (? c838 p838 (! c839 p839))) +(petri (? c839 p839 (! c840 p840))) +(petri (? c840 p840 (! c841 p841))) +(petri (? c841 p841 (! c842 p842))) +(petri (? c842 p842 (! c843 p843))) +(petri (? c843 p843 (! c844 p844))) +(petri (? c844 p844 (! c845 p845))) +(petri (? c845 p845 (! c846 p846))) +(petri (? c846 p846 (! c847 p847))) +(petri (? c847 p847 (! c848 p848))) +(petri (? c848 p848 (! c849 p849))) +(petri (? c849 p849 (! c850 p850))) +(petri (? c850 p850 (! c851 p851))) +(petri (? c851 p851 (! c852 p852))) +(petri (? c852 p852 (! c853 p853))) +(petri (? c853 p853 (! c854 p854))) +(petri (? c854 p854 (! c855 p855))) +(petri (? c855 p855 (! c856 p856))) +(petri (? c856 p856 (! c857 p857))) +(petri (? c857 p857 (! c858 p858))) +(petri (? c858 p858 (! c859 p859))) +(petri (? c859 p859 (! c860 p860))) +(petri (? c860 p860 (! c861 p861))) +(petri (? c861 p861 (! c862 p862))) +(petri (? c862 p862 (! c863 p863))) +(petri (? c863 p863 (! c864 p864))) +(petri (? c864 p864 (! c865 p865))) +(petri (? c865 p865 (! c866 p866))) +(petri (? c866 p866 (! c867 p867))) +(petri (? c867 p867 (! c868 p868))) +(petri (? c868 p868 (! c869 p869))) +(petri (? c869 p869 (! c870 p870))) +(petri (? c870 p870 (! c871 p871))) +(petri (? c871 p871 (! c872 p872))) +(petri (? c872 p872 (! c873 p873))) +(petri (? c873 p873 (! c874 p874))) +(petri (? c874 p874 (! c875 p875))) +(petri (? c875 p875 (! c876 p876))) +(petri (? c876 p876 (! c877 p877))) +(petri (? c877 p877 (! c878 p878))) +(petri (? c878 p878 (! c879 p879))) +(petri (? c879 p879 (! c880 p880))) +(petri (? c880 p880 (! c881 p881))) +(petri (? c881 p881 (! c882 p882))) +(petri (? c882 p882 (! c883 p883))) +(petri (? c883 p883 (! c884 p884))) +(petri (? c884 p884 (! c885 p885))) +(petri (? c885 p885 (! c886 p886))) +(petri (? c886 p886 (! c887 p887))) +(petri (? c887 p887 (! c888 p888))) +(petri (? c888 p888 (! c889 p889))) +(petri (? c889 p889 (! c890 p890))) +(petri (? c890 p890 (! c891 p891))) +(petri (? c891 p891 (! c892 p892))) +(petri (? c892 p892 (! c893 p893))) +(petri (? c893 p893 (! c894 p894))) +(petri (? c894 p894 (! c895 p895))) +(petri (? c895 p895 (! c896 p896))) +(petri (? c896 p896 (! c897 p897))) +(petri (? c897 p897 (! c898 p898))) +(petri (? c898 p898 (! c899 p899))) +(petri (? c899 p899 (! c900 p900))) +(petri (? c900 p900 (! c901 p901))) +(petri (? c901 p901 (! c902 p902))) +(petri (? c902 p902 (! c903 p903))) +(petri (? c903 p903 (! c904 p904))) +(petri (? c904 p904 (! c905 p905))) +(petri (? c905 p905 (! c906 p906))) +(petri (? c906 p906 (! c907 p907))) +(petri (? c907 p907 (! c908 p908))) +(petri (? c908 p908 (! c909 p909))) +(petri (? c909 p909 (! c910 p910))) +(petri (? c910 p910 (! c911 p911))) +(petri (? c911 p911 (! c912 p912))) +(petri (? c912 p912 (! c913 p913))) +(petri (? c913 p913 (! c914 p914))) +(petri (? c914 p914 (! c915 p915))) +(petri (? c915 p915 (! c916 p916))) +(petri (? c916 p916 (! c917 p917))) +(petri (? c917 p917 (! c918 p918))) +(petri (? c918 p918 (! c919 p919))) +(petri (? c919 p919 (! c920 p920))) +(petri (? c920 p920 (! c921 p921))) +(petri (? c921 p921 (! c922 p922))) +(petri (? c922 p922 (! c923 p923))) +(petri (? c923 p923 (! c924 p924))) +(petri (? c924 p924 (! c925 p925))) +(petri (? c925 p925 (! c926 p926))) +(petri (? c926 p926 (! c927 p927))) +(petri (? c927 p927 (! c928 p928))) +(petri (? c928 p928 (! c929 p929))) +(petri (? c929 p929 (! c930 p930))) +(petri (? c930 p930 (! c931 p931))) +(petri (? c931 p931 (! c932 p932))) +(petri (? c932 p932 (! c933 p933))) +(petri (? c933 p933 (! c934 p934))) +(petri (? c934 p934 (! c935 p935))) +(petri (? c935 p935 (! c936 p936))) +(petri (? c936 p936 (! c937 p937))) +(petri (? c937 p937 (! c938 p938))) +(petri (? c938 p938 (! c939 p939))) +(petri (? c939 p939 (! c940 p940))) +(petri (? c940 p940 (! c941 p941))) +(petri (? c941 p941 (! c942 p942))) +(petri (? c942 p942 (! c943 p943))) +(petri (? c943 p943 (! c944 p944))) +(petri (? c944 p944 (! c945 p945))) +(petri (? c945 p945 (! c946 p946))) +(petri (? c946 p946 (! c947 p947))) +(petri (? c947 p947 (! c948 p948))) +(petri (? c948 p948 (! c949 p949))) +(petri (? c949 p949 (! c950 p950))) +(petri (? c950 p950 (! c951 p951))) +(petri (? c951 p951 (! c952 p952))) +(petri (? c952 p952 (! c953 p953))) +(petri (? c953 p953 (! c954 p954))) +(petri (? c954 p954 (! c955 p955))) +(petri (? c955 p955 (! c956 p956))) +(petri (? c956 p956 (! c957 p957))) +(petri (? c957 p957 (! c958 p958))) +(petri (? c958 p958 (! c959 p959))) +(petri (? c959 p959 (! c960 p960))) +(petri (? c960 p960 (! c961 p961))) +(petri (? c961 p961 (! c962 p962))) +(petri (? c962 p962 (! c963 p963))) +(petri (? c963 p963 (! c964 p964))) +(petri (? c964 p964 (! c965 p965))) +(petri (? c965 p965 (! c966 p966))) +(petri (? c966 p966 (! c967 p967))) +(petri (? c967 p967 (! c968 p968))) +(petri (? c968 p968 (! c969 p969))) +(petri (? c969 p969 (! c970 p970))) +(petri (? c970 p970 (! c971 p971))) +(petri (? c971 p971 (! c972 p972))) +(petri (? c972 p972 (! c973 p973))) +(petri (? c973 p973 (! c974 p974))) +(petri (? c974 p974 (! c975 p975))) +(petri (? c975 p975 (! c976 p976))) +(petri (? c976 p976 (! c977 p977))) +(petri (? c977 p977 (! c978 p978))) +(petri (? c978 p978 (! c979 p979))) +(petri (? c979 p979 (! c980 p980))) +(petri (? c980 p980 (! c981 p981))) +(petri (? c981 p981 (! c982 p982))) +(petri (? c982 p982 (! c983 p983))) +(petri (? c983 p983 (! c984 p984))) +(petri (? c984 p984 (! c985 p985))) +(petri (? c985 p985 (! c986 p986))) +(petri (? c986 p986 (! c987 p987))) +(petri (? c987 p987 (! c988 p988))) +(petri (? c988 p988 (! c989 p989))) +(petri (? c989 p989 (! c990 p990))) +(petri (? c990 p990 (! c991 p991))) +(petri (? c991 p991 (! c992 p992))) +(petri (? c992 p992 (! c993 p993))) +(petri (? c993 p993 (! c994 p994))) +(petri (? c994 p994 (! c995 p995))) +(petri (? c995 p995 (! c996 p996))) +(petri (? c996 p996 (! c997 p997))) +(petri (? c997 p997 (! c998 p998))) +(petri (? c998 p998 (! c999 p999))) +(petri (? c999 p999 (! c1000 p1000))) +(petri (? c1000 p1000 (! c1001 p1001))) +(petri (? c1001 p1001 (! c1002 p1002))) +(petri (? c1002 p1002 (! c1003 p1003))) +(petri (? c1003 p1003 (! c1004 p1004))) +(petri (? c1004 p1004 (! c1005 p1005))) +(petri (? c1005 p1005 (! c1006 p1006))) +(petri (? c1006 p1006 (! c1007 p1007))) +(petri (? c1007 p1007 (! c1008 p1008))) +(petri (? c1008 p1008 (! c1009 p1009))) +(petri (? c1009 p1009 (! c1010 p1010))) +(petri (? c1010 p1010 (! c1011 p1011))) +(petri (? c1011 p1011 (! c1012 p1012))) +(petri (? c1012 p1012 (! c1013 p1013))) +(petri (? c1013 p1013 (! c1014 p1014))) +(petri (? c1014 p1014 (! c1015 p1015))) +(petri (? c1015 p1015 (! c1016 p1016))) +(petri (? c1016 p1016 (! c1017 p1017))) +(petri (? c1017 p1017 (! c1018 p1018))) +(petri (? c1018 p1018 (! c1019 p1019))) +(petri (? c1019 p1019 (! c1020 p1020))) +(petri (? c1020 p1020 (! c1021 p1021))) +(petri (? c1021 p1021 (! c1022 p1022))) +(petri (? c1022 p1022 (! c1023 p1023))) +(petri (? c1023 p1023 (! c1024 p1024))) +(petri (? c1024 p1024 (! c1025 p1025))) +(petri (? c1025 p1025 (! c1026 p1026))) +(petri (? c1026 p1026 (! c1027 p1027))) +(petri (? c1027 p1027 (! c1028 p1028))) +(petri (? c1028 p1028 (! c1029 p1029))) +(petri (? c1029 p1029 (! c1030 p1030))) +(petri (? c1030 p1030 (! c1031 p1031))) +(petri (? c1031 p1031 (! c1032 p1032))) +(petri (? c1032 p1032 (! c1033 p1033))) +(petri (? c1033 p1033 (! c1034 p1034))) +(petri (? c1034 p1034 (! c1035 p1035))) +(petri (? c1035 p1035 (! c1036 p1036))) +(petri (? c1036 p1036 (! c1037 p1037))) +(petri (? c1037 p1037 (! c1038 p1038))) +(petri (? c1038 p1038 (! c1039 p1039))) +(petri (? c1039 p1039 (! c1040 p1040))) +(petri (? c1040 p1040 (! c1041 p1041))) +(petri (? c1041 p1041 (! c1042 p1042))) +(petri (? c1042 p1042 (! c1043 p1043))) +(petri (? c1043 p1043 (! c1044 p1044))) +(petri (? c1044 p1044 (! c1045 p1045))) +(petri (? c1045 p1045 (! c1046 p1046))) +(petri (? c1046 p1046 (! c1047 p1047))) +(petri (? c1047 p1047 (! c1048 p1048))) +(petri (? c1048 p1048 (! c1049 p1049))) +(petri (? c1049 p1049 (! c1050 p1050))) +(petri (? c1050 p1050 (! c1051 p1051))) +(petri (? c1051 p1051 (! c1052 p1052))) +(petri (? c1052 p1052 (! c1053 p1053))) +(petri (? c1053 p1053 (! c1054 p1054))) +(petri (? c1054 p1054 (! c1055 p1055))) +(petri (? c1055 p1055 (! c1056 p1056))) +(petri (? c1056 p1056 (! c1057 p1057))) +(petri (? c1057 p1057 (! c1058 p1058))) +(petri (? c1058 p1058 (! c1059 p1059))) +(petri (? c1059 p1059 (! c1060 p1060))) +(petri (? c1060 p1060 (! c1061 p1061))) +(petri (? c1061 p1061 (! c1062 p1062))) +(petri (? c1062 p1062 (! c1063 p1063))) +(petri (? c1063 p1063 (! c1064 p1064))) +(petri (? c1064 p1064 (! c1065 p1065))) +(petri (? c1065 p1065 (! c1066 p1066))) +(petri (? c1066 p1066 (! c1067 p1067))) +(petri (? c1067 p1067 (! c1068 p1068))) +(petri (? c1068 p1068 (! c1069 p1069))) +(petri (? c1069 p1069 (! c1070 p1070))) +(petri (? c1070 p1070 (! c1071 p1071))) +(petri (? c1071 p1071 (! c1072 p1072))) +(petri (? c1072 p1072 (! c1073 p1073))) +(petri (? c1073 p1073 (! c1074 p1074))) +(petri (? c1074 p1074 (! c1075 p1075))) +(petri (? c1075 p1075 (! c1076 p1076))) +(petri (? c1076 p1076 (! c1077 p1077))) +(petri (? c1077 p1077 (! c1078 p1078))) +(petri (? c1078 p1078 (! c1079 p1079))) +(petri (? c1079 p1079 (! c1080 p1080))) +(petri (? c1080 p1080 (! c1081 p1081))) +(petri (? c1081 p1081 (! c1082 p1082))) +(petri (? c1082 p1082 (! c1083 p1083))) +(petri (? c1083 p1083 (! c1084 p1084))) +(petri (? c1084 p1084 (! c1085 p1085))) +(petri (? c1085 p1085 (! c1086 p1086))) +(petri (? c1086 p1086 (! c1087 p1087))) +(petri (? c1087 p1087 (! c1088 p1088))) +(petri (? c1088 p1088 (! c1089 p1089))) +(petri (? c1089 p1089 (! c1090 p1090))) +(petri (? c1090 p1090 (! c1091 p1091))) +(petri (? c1091 p1091 (! c1092 p1092))) +(petri (? c1092 p1092 (! c1093 p1093))) +(petri (? c1093 p1093 (! c1094 p1094))) +(petri (? c1094 p1094 (! c1095 p1095))) +(petri (? c1095 p1095 (! c1096 p1096))) +(petri (? c1096 p1096 (! c1097 p1097))) +(petri (? c1097 p1097 (! c1098 p1098))) +(petri (? c1098 p1098 (! c1099 p1099))) +(petri (? c1099 p1099 (! c1100 p1100))) +(petri (? c1100 p1100 (! c1101 p1101))) +(petri (? c1101 p1101 (! c1102 p1102))) +(petri (? c1102 p1102 (! c1103 p1103))) +(petri (? c1103 p1103 (! c1104 p1104))) +(petri (? c1104 p1104 (! c1105 p1105))) +(petri (? c1105 p1105 (! c1106 p1106))) +(petri (? c1106 p1106 (! c1107 p1107))) +(petri (? c1107 p1107 (! c1108 p1108))) +(petri (? c1108 p1108 (! c1109 p1109))) +(petri (? c1109 p1109 (! c1110 p1110))) +(petri (? c1110 p1110 (! c1111 p1111))) +(petri (? c1111 p1111 (! c1112 p1112))) +(petri (? c1112 p1112 (! c1113 p1113))) +(petri (? c1113 p1113 (! c1114 p1114))) +(petri (? c1114 p1114 (! c1115 p1115))) +(petri (? c1115 p1115 (! c1116 p1116))) +(petri (? c1116 p1116 (! c1117 p1117))) +(petri (? c1117 p1117 (! c1118 p1118))) +(petri (? c1118 p1118 (! c1119 p1119))) +(petri (? c1119 p1119 (! c1120 p1120))) +(petri (? c1120 p1120 (! c1121 p1121))) +(petri (? c1121 p1121 (! c1122 p1122))) +(petri (? c1122 p1122 (! c1123 p1123))) +(petri (? c1123 p1123 (! c1124 p1124))) +(petri (? c1124 p1124 (! c1125 p1125))) +(petri (? c1125 p1125 (! c1126 p1126))) +(petri (? c1126 p1126 (! c1127 p1127))) +(petri (? c1127 p1127 (! c1128 p1128))) +(petri (? c1128 p1128 (! c1129 p1129))) +(petri (? c1129 p1129 (! c1130 p1130))) +(petri (? c1130 p1130 (! c1131 p1131))) +(petri (? c1131 p1131 (! c1132 p1132))) +(petri (? c1132 p1132 (! c1133 p1133))) +(petri (? c1133 p1133 (! c1134 p1134))) +(petri (? c1134 p1134 (! c1135 p1135))) +(petri (? c1135 p1135 (! c1136 p1136))) +(petri (? c1136 p1136 (! c1137 p1137))) +(petri (? c1137 p1137 (! c1138 p1138))) +(petri (? c1138 p1138 (! c1139 p1139))) +(petri (? c1139 p1139 (! c1140 p1140))) +(petri (? c1140 p1140 (! c1141 p1141))) +(petri (? c1141 p1141 (! c1142 p1142))) +(petri (? c1142 p1142 (! c1143 p1143))) +(petri (? c1143 p1143 (! c1144 p1144))) +(petri (? c1144 p1144 (! c1145 p1145))) +(petri (? c1145 p1145 (! c1146 p1146))) +(petri (? c1146 p1146 (! c1147 p1147))) +(petri (? c1147 p1147 (! c1148 p1148))) +(petri (? c1148 p1148 (! c1149 p1149))) +(petri (? c1149 p1149 (! c1150 p1150))) +(petri (? c1150 p1150 (! c1151 p1151))) +(petri (? c1151 p1151 (! c1152 p1152))) +(petri (? c1152 p1152 (! c1153 p1153))) +(petri (? c1153 p1153 (! c1154 p1154))) +(petri (? c1154 p1154 (! c1155 p1155))) +(petri (? c1155 p1155 (! c1156 p1156))) +(petri (? c1156 p1156 (! c1157 p1157))) +(petri (? c1157 p1157 (! c1158 p1158))) +(petri (? c1158 p1158 (! c1159 p1159))) +(petri (? c1159 p1159 (! c1160 p1160))) +(petri (? c1160 p1160 (! c1161 p1161))) +(petri (? c1161 p1161 (! c1162 p1162))) +(petri (? c1162 p1162 (! c1163 p1163))) +(petri (? c1163 p1163 (! c1164 p1164))) +(petri (? c1164 p1164 (! c1165 p1165))) +(petri (? c1165 p1165 (! c1166 p1166))) +(petri (? c1166 p1166 (! c1167 p1167))) +(petri (? c1167 p1167 (! c1168 p1168))) +(petri (? c1168 p1168 (! c1169 p1169))) +(petri (? c1169 p1169 (! c1170 p1170))) +(petri (? c1170 p1170 (! c1171 p1171))) +(petri (? c1171 p1171 (! c1172 p1172))) +(petri (? c1172 p1172 (! c1173 p1173))) +(petri (? c1173 p1173 (! c1174 p1174))) +(petri (? c1174 p1174 (! c1175 p1175))) +(petri (? c1175 p1175 (! c1176 p1176))) +(petri (? c1176 p1176 (! c1177 p1177))) +(petri (? c1177 p1177 (! c1178 p1178))) +(petri (? c1178 p1178 (! c1179 p1179))) +(petri (? c1179 p1179 (! c1180 p1180))) +(petri (? c1180 p1180 (! c1181 p1181))) +(petri (? c1181 p1181 (! c1182 p1182))) +(petri (? c1182 p1182 (! c1183 p1183))) +(petri (? c1183 p1183 (! c1184 p1184))) +(petri (? c1184 p1184 (! c1185 p1185))) +(petri (? c1185 p1185 (! c1186 p1186))) +(petri (? c1186 p1186 (! c1187 p1187))) +(petri (? c1187 p1187 (! c1188 p1188))) +(petri (? c1188 p1188 (! c1189 p1189))) +(petri (? c1189 p1189 (! c1190 p1190))) +(petri (? c1190 p1190 (! c1191 p1191))) +(petri (? c1191 p1191 (! c1192 p1192))) +(petri (? c1192 p1192 (! c1193 p1193))) +(petri (? c1193 p1193 (! c1194 p1194))) +(petri (? c1194 p1194 (! c1195 p1195))) +(petri (? c1195 p1195 (! c1196 p1196))) +(petri (? c1196 p1196 (! c1197 p1197))) +(petri (? c1197 p1197 (! c1198 p1198))) +(petri (? c1198 p1198 (! c1199 p1199))) +(petri (? c1199 p1199 (! c1200 p1200))) +(petri (? c1200 p1200 (! c1201 p1201))) +(petri (? c1201 p1201 (! c1202 p1202))) +(petri (? c1202 p1202 (! c1203 p1203))) +(petri (? c1203 p1203 (! c1204 p1204))) +(petri (? c1204 p1204 (! c1205 p1205))) +(petri (? c1205 p1205 (! c1206 p1206))) +(petri (? c1206 p1206 (! c1207 p1207))) +(petri (? c1207 p1207 (! c1208 p1208))) +(petri (? c1208 p1208 (! c1209 p1209))) +(petri (? c1209 p1209 (! c1210 p1210))) +(petri (? c1210 p1210 (! c1211 p1211))) +(petri (? c1211 p1211 (! c1212 p1212))) +(petri (? c1212 p1212 (! c1213 p1213))) +(petri (? c1213 p1213 (! c1214 p1214))) +(petri (? c1214 p1214 (! c1215 p1215))) +(petri (? c1215 p1215 (! c1216 p1216))) +(petri (? c1216 p1216 (! c1217 p1217))) +(petri (? c1217 p1217 (! c1218 p1218))) +(petri (? c1218 p1218 (! c1219 p1219))) +(petri (? c1219 p1219 (! c1220 p1220))) +(petri (? c1220 p1220 (! c1221 p1221))) +(petri (? c1221 p1221 (! c1222 p1222))) +(petri (? c1222 p1222 (! c1223 p1223))) +(petri (? c1223 p1223 (! c1224 p1224))) +(petri (? c1224 p1224 (! c1225 p1225))) +(petri (? c1225 p1225 (! c1226 p1226))) +(petri (? c1226 p1226 (! c1227 p1227))) +(petri (? c1227 p1227 (! c1228 p1228))) +(petri (? c1228 p1228 (! c1229 p1229))) +(petri (? c1229 p1229 (! c1230 p1230))) +(petri (? c1230 p1230 (! c1231 p1231))) +(petri (? c1231 p1231 (! c1232 p1232))) +(petri (? c1232 p1232 (! c1233 p1233))) +(petri (? c1233 p1233 (! c1234 p1234))) +(petri (? c1234 p1234 (! c1235 p1235))) +(petri (? c1235 p1235 (! c1236 p1236))) +(petri (? c1236 p1236 (! c1237 p1237))) +(petri (? c1237 p1237 (! c1238 p1238))) +(petri (? c1238 p1238 (! c1239 p1239))) +(petri (? c1239 p1239 (! c1240 p1240))) +(petri (? c1240 p1240 (! c1241 p1241))) +(petri (? c1241 p1241 (! c1242 p1242))) +(petri (? c1242 p1242 (! c1243 p1243))) +(petri (? c1243 p1243 (! c1244 p1244))) +(petri (? c1244 p1244 (! c1245 p1245))) +(petri (? c1245 p1245 (! c1246 p1246))) +(petri (? c1246 p1246 (! c1247 p1247))) +(petri (? c1247 p1247 (! c1248 p1248))) +(petri (? c1248 p1248 (! c1249 p1249))) +(petri (? c1249 p1249 (! c1250 p1250))) +(petri (? c1250 p1250 (! c1251 p1251))) +(petri (? c1251 p1251 (! c1252 p1252))) +(petri (? c1252 p1252 (! c1253 p1253))) +(petri (? c1253 p1253 (! c1254 p1254))) +(petri (? c1254 p1254 (! c1255 p1255))) +(petri (? c1255 p1255 (! c1256 p1256))) +(petri (? c1256 p1256 (! c1257 p1257))) +(petri (? c1257 p1257 (! c1258 p1258))) +(petri (? c1258 p1258 (! c1259 p1259))) +(petri (? c1259 p1259 (! c1260 p1260))) +(petri (? c1260 p1260 (! c1261 p1261))) +(petri (? c1261 p1261 (! c1262 p1262))) +(petri (? c1262 p1262 (! c1263 p1263))) +(petri (? c1263 p1263 (! c1264 p1264))) +(petri (? c1264 p1264 (! c1265 p1265))) +(petri (? c1265 p1265 (! c1266 p1266))) +(petri (? c1266 p1266 (! c1267 p1267))) +(petri (? c1267 p1267 (! c1268 p1268))) +(petri (? c1268 p1268 (! c1269 p1269))) +(petri (? c1269 p1269 (! c1270 p1270))) +(petri (? c1270 p1270 (! c1271 p1271))) +(petri (? c1271 p1271 (! c1272 p1272))) +(petri (? c1272 p1272 (! c1273 p1273))) +(petri (? c1273 p1273 (! c1274 p1274))) +(petri (? c1274 p1274 (! c1275 p1275))) +(petri (? c1275 p1275 (! c1276 p1276))) +(petri (? c1276 p1276 (! c1277 p1277))) +(petri (? c1277 p1277 (! c1278 p1278))) +(petri (? c1278 p1278 (! c1279 p1279))) +(petri (? c1279 p1279 (! c1280 p1280))) +(petri (? c1280 p1280 (! c1281 p1281))) +(petri (? c1281 p1281 (! c1282 p1282))) +(petri (? c1282 p1282 (! c1283 p1283))) +(petri (? c1283 p1283 (! c1284 p1284))) +(petri (? c1284 p1284 (! c1285 p1285))) +(petri (? c1285 p1285 (! c1286 p1286))) +(petri (? c1286 p1286 (! c1287 p1287))) +(petri (? c1287 p1287 (! c1288 p1288))) +(petri (? c1288 p1288 (! c1289 p1289))) +(petri (? c1289 p1289 (! c1290 p1290))) +(petri (? c1290 p1290 (! c1291 p1291))) +(petri (? c1291 p1291 (! c1292 p1292))) +(petri (? c1292 p1292 (! c1293 p1293))) +(petri (? c1293 p1293 (! c1294 p1294))) +(petri (? c1294 p1294 (! c1295 p1295))) +(petri (? c1295 p1295 (! c1296 p1296))) +(petri (? c1296 p1296 (! c1297 p1297))) +(petri (? c1297 p1297 (! c1298 p1298))) +(petri (? c1298 p1298 (! c1299 p1299))) +(petri (? c1299 p1299 (! c1300 p1300))) +(petri (? c1300 p1300 (! c1301 p1301))) +(petri (? c1301 p1301 (! c1302 p1302))) +(petri (? c1302 p1302 (! c1303 p1303))) +(petri (? c1303 p1303 (! c1304 p1304))) +(petri (? c1304 p1304 (! c1305 p1305))) +(petri (? c1305 p1305 (! c1306 p1306))) +(petri (? c1306 p1306 (! c1307 p1307))) +(petri (? c1307 p1307 (! c1308 p1308))) +(petri (? c1308 p1308 (! c1309 p1309))) +(petri (? c1309 p1309 (! c1310 p1310))) +(petri (? c1310 p1310 (! c1311 p1311))) +(petri (? c1311 p1311 (! c1312 p1312))) +(petri (? c1312 p1312 (! c1313 p1313))) +(petri (? c1313 p1313 (! c1314 p1314))) +(petri (? c1314 p1314 (! c1315 p1315))) +(petri (? c1315 p1315 (! c1316 p1316))) +(petri (? c1316 p1316 (! c1317 p1317))) +(petri (? c1317 p1317 (! c1318 p1318))) +(petri (? c1318 p1318 (! c1319 p1319))) +(petri (? c1319 p1319 (! c1320 p1320))) +(petri (? c1320 p1320 (! c1321 p1321))) +(petri (? c1321 p1321 (! c1322 p1322))) +(petri (? c1322 p1322 (! c1323 p1323))) +(petri (? c1323 p1323 (! c1324 p1324))) +(petri (? c1324 p1324 (! c1325 p1325))) +(petri (? c1325 p1325 (! c1326 p1326))) +(petri (? c1326 p1326 (! c1327 p1327))) +(petri (? c1327 p1327 (! c1328 p1328))) +(petri (? c1328 p1328 (! c1329 p1329))) +(petri (? c1329 p1329 (! c1330 p1330))) +(petri (? c1330 p1330 (! c1331 p1331))) +(petri (? c1331 p1331 (! c1332 p1332))) +(petri (? c1332 p1332 (! c1333 p1333))) +(petri (? c1333 p1333 (! c1334 p1334))) +(petri (? c1334 p1334 (! c1335 p1335))) +(petri (? c1335 p1335 (! c1336 p1336))) +(petri (? c1336 p1336 (! c1337 p1337))) +(petri (? c1337 p1337 (! c1338 p1338))) +(petri (? c1338 p1338 (! c1339 p1339))) +(petri (? c1339 p1339 (! c1340 p1340))) +(petri (? c1340 p1340 (! c1341 p1341))) +(petri (? c1341 p1341 (! c1342 p1342))) +(petri (? c1342 p1342 (! c1343 p1343))) +(petri (? c1343 p1343 (! c1344 p1344))) +(petri (? c1344 p1344 (! c1345 p1345))) +(petri (? c1345 p1345 (! c1346 p1346))) +(petri (? c1346 p1346 (! c1347 p1347))) +(petri (? c1347 p1347 (! c1348 p1348))) +(petri (? c1348 p1348 (! c1349 p1349))) +(petri (? c1349 p1349 (! c1350 p1350))) +(petri (? c1350 p1350 (! c1351 p1351))) +(petri (? c1351 p1351 (! c1352 p1352))) +(petri (? c1352 p1352 (! c1353 p1353))) +(petri (? c1353 p1353 (! c1354 p1354))) +(petri (? c1354 p1354 (! c1355 p1355))) +(petri (? c1355 p1355 (! c1356 p1356))) +(petri (? c1356 p1356 (! c1357 p1357))) +(petri (? c1357 p1357 (! c1358 p1358))) +(petri (? c1358 p1358 (! c1359 p1359))) +(petri (? c1359 p1359 (! c1360 p1360))) +(petri (? c1360 p1360 (! c1361 p1361))) +(petri (? c1361 p1361 (! c1362 p1362))) +(petri (? c1362 p1362 (! c1363 p1363))) +(petri (? c1363 p1363 (! c1364 p1364))) +(petri (? c1364 p1364 (! c1365 p1365))) +(petri (? c1365 p1365 (! c1366 p1366))) +(petri (? c1366 p1366 (! c1367 p1367))) +(petri (? c1367 p1367 (! c1368 p1368))) +(petri (? c1368 p1368 (! c1369 p1369))) +(petri (? c1369 p1369 (! c1370 p1370))) +(petri (? c1370 p1370 (! c1371 p1371))) +(petri (? c1371 p1371 (! c1372 p1372))) +(petri (? c1372 p1372 (! c1373 p1373))) +(petri (? c1373 p1373 (! c1374 p1374))) +(petri (? c1374 p1374 (! c1375 p1375))) +(petri (? c1375 p1375 (! c1376 p1376))) +(petri (? c1376 p1376 (! c1377 p1377))) +(petri (? c1377 p1377 (! c1378 p1378))) +(petri (? c1378 p1378 (! c1379 p1379))) +(petri (? c1379 p1379 (! c1380 p1380))) +(petri (? c1380 p1380 (! c1381 p1381))) +(petri (? c1381 p1381 (! c1382 p1382))) +(petri (? c1382 p1382 (! c1383 p1383))) +(petri (? c1383 p1383 (! c1384 p1384))) +(petri (? c1384 p1384 (! c1385 p1385))) +(petri (? c1385 p1385 (! c1386 p1386))) +(petri (? c1386 p1386 (! c1387 p1387))) +(petri (? c1387 p1387 (! c1388 p1388))) +(petri (? c1388 p1388 (! c1389 p1389))) +(petri (? c1389 p1389 (! c1390 p1390))) +(petri (? c1390 p1390 (! c1391 p1391))) +(petri (? c1391 p1391 (! c1392 p1392))) +(petri (? c1392 p1392 (! c1393 p1393))) +(petri (? c1393 p1393 (! c1394 p1394))) +(petri (? c1394 p1394 (! c1395 p1395))) +(petri (? c1395 p1395 (! c1396 p1396))) +(petri (? c1396 p1396 (! c1397 p1397))) +(petri (? c1397 p1397 (! c1398 p1398))) +(petri (? c1398 p1398 (! c1399 p1399))) +(petri (? c1399 p1399 (! c1400 p1400))) +(petri (? c1400 p1400 (! c1401 p1401))) +(petri (? c1401 p1401 (! c1402 p1402))) +(petri (? c1402 p1402 (! c1403 p1403))) +(petri (? c1403 p1403 (! c1404 p1404))) +(petri (? c1404 p1404 (! c1405 p1405))) +(petri (? c1405 p1405 (! c1406 p1406))) +(petri (? c1406 p1406 (! c1407 p1407))) +(petri (? c1407 p1407 (! c1408 p1408))) +(petri (? c1408 p1408 (! c1409 p1409))) +(petri (? c1409 p1409 (! c1410 p1410))) +(petri (? c1410 p1410 (! c1411 p1411))) +(petri (? c1411 p1411 (! c1412 p1412))) +(petri (? c1412 p1412 (! c1413 p1413))) +(petri (? c1413 p1413 (! c1414 p1414))) +(petri (? c1414 p1414 (! c1415 p1415))) +(petri (? c1415 p1415 (! c1416 p1416))) +(petri (? c1416 p1416 (! c1417 p1417))) +(petri (? c1417 p1417 (! c1418 p1418))) +(petri (? c1418 p1418 (! c1419 p1419))) +(petri (? c1419 p1419 (! c1420 p1420))) +(petri (? c1420 p1420 (! c1421 p1421))) +(petri (? c1421 p1421 (! c1422 p1422))) +(petri (? c1422 p1422 (! c1423 p1423))) +(petri (? c1423 p1423 (! c1424 p1424))) +(petri (? c1424 p1424 (! c1425 p1425))) +(petri (? c1425 p1425 (! c1426 p1426))) +(petri (? c1426 p1426 (! c1427 p1427))) +(petri (? c1427 p1427 (! c1428 p1428))) +(petri (? c1428 p1428 (! c1429 p1429))) +(petri (? c1429 p1429 (! c1430 p1430))) +(petri (? c1430 p1430 (! c1431 p1431))) +(petri (? c1431 p1431 (! c1432 p1432))) +(petri (? c1432 p1432 (! c1433 p1433))) +(petri (? c1433 p1433 (! c1434 p1434))) +(petri (? c1434 p1434 (! c1435 p1435))) +(petri (? c1435 p1435 (! c1436 p1436))) +(petri (? c1436 p1436 (! c1437 p1437))) +(petri (? c1437 p1437 (! c1438 p1438))) +(petri (? c1438 p1438 (! c1439 p1439))) +(petri (? c1439 p1439 (! c1440 p1440))) +(petri (? c1440 p1440 (! c1441 p1441))) +(petri (? c1441 p1441 (! c1442 p1442))) +(petri (? c1442 p1442 (! c1443 p1443))) +(petri (? c1443 p1443 (! c1444 p1444))) +(petri (? c1444 p1444 (! c1445 p1445))) +(petri (? c1445 p1445 (! c1446 p1446))) +(petri (? c1446 p1446 (! c1447 p1447))) +(petri (? c1447 p1447 (! c1448 p1448))) +(petri (? c1448 p1448 (! c1449 p1449))) +(petri (? c1449 p1449 (! c1450 p1450))) +(petri (? c1450 p1450 (! c1451 p1451))) +(petri (? c1451 p1451 (! c1452 p1452))) +(petri (? c1452 p1452 (! c1453 p1453))) +(petri (? c1453 p1453 (! c1454 p1454))) +(petri (? c1454 p1454 (! c1455 p1455))) +(petri (? c1455 p1455 (! c1456 p1456))) +(petri (? c1456 p1456 (! c1457 p1457))) +(petri (? c1457 p1457 (! c1458 p1458))) +(petri (? c1458 p1458 (! c1459 p1459))) +(petri (? c1459 p1459 (! c1460 p1460))) +(petri (? c1460 p1460 (! c1461 p1461))) +(petri (? c1461 p1461 (! c1462 p1462))) +(petri (? c1462 p1462 (! c1463 p1463))) +(petri (? c1463 p1463 (! c1464 p1464))) +(petri (? c1464 p1464 (! c1465 p1465))) +(petri (? c1465 p1465 (! c1466 p1466))) +(petri (? c1466 p1466 (! c1467 p1467))) +(petri (? c1467 p1467 (! c1468 p1468))) +(petri (? c1468 p1468 (! c1469 p1469))) +(petri (? c1469 p1469 (! c1470 p1470))) +(petri (? c1470 p1470 (! c1471 p1471))) +(petri (? c1471 p1471 (! c1472 p1472))) +(petri (? c1472 p1472 (! c1473 p1473))) +(petri (? c1473 p1473 (! c1474 p1474))) +(petri (? c1474 p1474 (! c1475 p1475))) +(petri (? c1475 p1475 (! c1476 p1476))) +(petri (? c1476 p1476 (! c1477 p1477))) +(petri (? c1477 p1477 (! c1478 p1478))) +(petri (? c1478 p1478 (! c1479 p1479))) +(petri (? c1479 p1479 (! c1480 p1480))) +(petri (? c1480 p1480 (! c1481 p1481))) +(petri (? c1481 p1481 (! c1482 p1482))) +(petri (? c1482 p1482 (! c1483 p1483))) +(petri (? c1483 p1483 (! c1484 p1484))) +(petri (? c1484 p1484 (! c1485 p1485))) +(petri (? c1485 p1485 (! c1486 p1486))) +(petri (? c1486 p1486 (! c1487 p1487))) +(petri (? c1487 p1487 (! c1488 p1488))) +(petri (? c1488 p1488 (! c1489 p1489))) +(petri (? c1489 p1489 (! c1490 p1490))) +(petri (? c1490 p1490 (! c1491 p1491))) +(petri (? c1491 p1491 (! c1492 p1492))) +(petri (? c1492 p1492 (! c1493 p1493))) +(petri (? c1493 p1493 (! c1494 p1494))) +(petri (? c1494 p1494 (! c1495 p1495))) +(petri (? c1495 p1495 (! c1496 p1496))) +(petri (? c1496 p1496 (! c1497 p1497))) +(petri (? c1497 p1497 (! c1498 p1498))) +(petri (? c1498 p1498 (! c1499 p1499))) +(petri (? c1499 p1499 (! c1500 p1500))) +(petri (? c1500 p1500 (! c1501 p1501))) +(petri (? c1501 p1501 (! c1502 p1502))) +(petri (? c1502 p1502 (! c1503 p1503))) +(petri (? c1503 p1503 (! c1504 p1504))) +(petri (? c1504 p1504 (! c1505 p1505))) +(petri (? c1505 p1505 (! c1506 p1506))) +(petri (? c1506 p1506 (! c1507 p1507))) +(petri (? c1507 p1507 (! c1508 p1508))) +(petri (? c1508 p1508 (! c1509 p1509))) +(petri (? c1509 p1509 (! c1510 p1510))) +(petri (? c1510 p1510 (! c1511 p1511))) +(petri (? c1511 p1511 (! c1512 p1512))) +(petri (? c1512 p1512 (! c1513 p1513))) +(petri (? c1513 p1513 (! c1514 p1514))) +(petri (? c1514 p1514 (! c1515 p1515))) +(petri (? c1515 p1515 (! c1516 p1516))) +(petri (? c1516 p1516 (! c1517 p1517))) +(petri (? c1517 p1517 (! c1518 p1518))) +(petri (? c1518 p1518 (! c1519 p1519))) +(petri (? c1519 p1519 (! c1520 p1520))) +(petri (? c1520 p1520 (! c1521 p1521))) +(petri (? c1521 p1521 (! c1522 p1522))) +(petri (? c1522 p1522 (! c1523 p1523))) +(petri (? c1523 p1523 (! c1524 p1524))) +(petri (? c1524 p1524 (! c1525 p1525))) +(petri (? c1525 p1525 (! c1526 p1526))) +(petri (? c1526 p1526 (! c1527 p1527))) +(petri (? c1527 p1527 (! c1528 p1528))) +(petri (? c1528 p1528 (! c1529 p1529))) +(petri (? c1529 p1529 (! c1530 p1530))) +(petri (? c1530 p1530 (! c1531 p1531))) +(petri (? c1531 p1531 (! c1532 p1532))) +(petri (? c1532 p1532 (! c1533 p1533))) +(petri (? c1533 p1533 (! c1534 p1534))) +(petri (? c1534 p1534 (! c1535 p1535))) +(petri (? c1535 p1535 (! c1536 p1536))) +(petri (? c1536 p1536 (! c1537 p1537))) +(petri (? c1537 p1537 (! c1538 p1538))) +(petri (? c1538 p1538 (! c1539 p1539))) +(petri (? c1539 p1539 (! c1540 p1540))) +(petri (? c1540 p1540 (! c1541 p1541))) +(petri (? c1541 p1541 (! c1542 p1542))) +(petri (? c1542 p1542 (! c1543 p1543))) +(petri (? c1543 p1543 (! c1544 p1544))) +(petri (? c1544 p1544 (! c1545 p1545))) +(petri (? c1545 p1545 (! c1546 p1546))) +(petri (? c1546 p1546 (! c1547 p1547))) +(petri (? c1547 p1547 (! c1548 p1548))) +(petri (? c1548 p1548 (! c1549 p1549))) +(petri (? c1549 p1549 (! c1550 p1550))) +(petri (? c1550 p1550 (! c1551 p1551))) +(petri (? c1551 p1551 (! c1552 p1552))) +(petri (? c1552 p1552 (! c1553 p1553))) +(petri (? c1553 p1553 (! c1554 p1554))) +(petri (? c1554 p1554 (! c1555 p1555))) +(petri (? c1555 p1555 (! c1556 p1556))) +(petri (? c1556 p1556 (! c1557 p1557))) +(petri (? c1557 p1557 (! c1558 p1558))) +(petri (? c1558 p1558 (! c1559 p1559))) +(petri (? c1559 p1559 (! c1560 p1560))) +(petri (? c1560 p1560 (! c1561 p1561))) +(petri (? c1561 p1561 (! c1562 p1562))) +(petri (? c1562 p1562 (! c1563 p1563))) +(petri (? c1563 p1563 (! c1564 p1564))) +(petri (? c1564 p1564 (! c1565 p1565))) +(petri (? c1565 p1565 (! c1566 p1566))) +(petri (? c1566 p1566 (! c1567 p1567))) +(petri (? c1567 p1567 (! c1568 p1568))) +(petri (? c1568 p1568 (! c1569 p1569))) +(petri (? c1569 p1569 (! c1570 p1570))) +(petri (? c1570 p1570 (! c1571 p1571))) +(petri (? c1571 p1571 (! c1572 p1572))) +(petri (? c1572 p1572 (! c1573 p1573))) +(petri (? c1573 p1573 (! c1574 p1574))) +(petri (? c1574 p1574 (! c1575 p1575))) +(petri (? c1575 p1575 (! c1576 p1576))) +(petri (? c1576 p1576 (! c1577 p1577))) +(petri (? c1577 p1577 (! c1578 p1578))) +(petri (? c1578 p1578 (! c1579 p1579))) +(petri (? c1579 p1579 (! c1580 p1580))) +(petri (? c1580 p1580 (! c1581 p1581))) +(petri (? c1581 p1581 (! c1582 p1582))) +(petri (? c1582 p1582 (! c1583 p1583))) +(petri (? c1583 p1583 (! c1584 p1584))) +(petri (? c1584 p1584 (! c1585 p1585))) +(petri (? c1585 p1585 (! c1586 p1586))) +(petri (? c1586 p1586 (! c1587 p1587))) +(petri (? c1587 p1587 (! c1588 p1588))) +(petri (? c1588 p1588 (! c1589 p1589))) +(petri (? c1589 p1589 (! c1590 p1590))) +(petri (? c1590 p1590 (! c1591 p1591))) +(petri (? c1591 p1591 (! c1592 p1592))) +(petri (? c1592 p1592 (! c1593 p1593))) +(petri (? c1593 p1593 (! c1594 p1594))) +(petri (? c1594 p1594 (! c1595 p1595))) +(petri (? c1595 p1595 (! c1596 p1596))) +(petri (? c1596 p1596 (! c1597 p1597))) +(petri (? c1597 p1597 (! c1598 p1598))) +(petri (? c1598 p1598 (! c1599 p1599))) +(petri (? c1599 p1599 (! c1600 p1600))) +(petri (? c1600 p1600 (! c1601 p1601))) +(petri (? c1601 p1601 (! c1602 p1602))) +(petri (? c1602 p1602 (! c1603 p1603))) +(petri (? c1603 p1603 (! c1604 p1604))) +(petri (? c1604 p1604 (! c1605 p1605))) +(petri (? c1605 p1605 (! c1606 p1606))) +(petri (? c1606 p1606 (! c1607 p1607))) +(petri (? c1607 p1607 (! c1608 p1608))) +(petri (? c1608 p1608 (! c1609 p1609))) +(petri (? c1609 p1609 (! c1610 p1610))) +(petri (? c1610 p1610 (! c1611 p1611))) +(petri (? c1611 p1611 (! c1612 p1612))) +(petri (? c1612 p1612 (! c1613 p1613))) +(petri (? c1613 p1613 (! c1614 p1614))) +(petri (? c1614 p1614 (! c1615 p1615))) +(petri (? c1615 p1615 (! c1616 p1616))) +(petri (? c1616 p1616 (! c1617 p1617))) +(petri (? c1617 p1617 (! c1618 p1618))) +(petri (? c1618 p1618 (! c1619 p1619))) +(petri (? c1619 p1619 (! c1620 p1620))) +(petri (? c1620 p1620 (! c1621 p1621))) +(petri (? c1621 p1621 (! c1622 p1622))) +(petri (? c1622 p1622 (! c1623 p1623))) +(petri (? c1623 p1623 (! c1624 p1624))) +(petri (? c1624 p1624 (! c1625 p1625))) +(petri (? c1625 p1625 (! c1626 p1626))) +(petri (? c1626 p1626 (! c1627 p1627))) +(petri (? c1627 p1627 (! c1628 p1628))) +(petri (? c1628 p1628 (! c1629 p1629))) +(petri (? c1629 p1629 (! c1630 p1630))) +(petri (? c1630 p1630 (! c1631 p1631))) +(petri (? c1631 p1631 (! c1632 p1632))) +(petri (? c1632 p1632 (! c1633 p1633))) +(petri (? c1633 p1633 (! c1634 p1634))) +(petri (? c1634 p1634 (! c1635 p1635))) +(petri (? c1635 p1635 (! c1636 p1636))) +(petri (? c1636 p1636 (! c1637 p1637))) +(petri (? c1637 p1637 (! c1638 p1638))) +(petri (? c1638 p1638 (! c1639 p1639))) +(petri (? c1639 p1639 (! c1640 p1640))) +(petri (? c1640 p1640 (! c1641 p1641))) +(petri (? c1641 p1641 (! c1642 p1642))) +(petri (? c1642 p1642 (! c1643 p1643))) +(petri (? c1643 p1643 (! c1644 p1644))) +(petri (? c1644 p1644 (! c1645 p1645))) +(petri (? c1645 p1645 (! c1646 p1646))) +(petri (? c1646 p1646 (! c1647 p1647))) +(petri (? c1647 p1647 (! c1648 p1648))) +(petri (? c1648 p1648 (! c1649 p1649))) +(petri (? c1649 p1649 (! c1650 p1650))) +(petri (? c1650 p1650 (! c1651 p1651))) +(petri (? c1651 p1651 (! c1652 p1652))) +(petri (? c1652 p1652 (! c1653 p1653))) +(petri (? c1653 p1653 (! c1654 p1654))) +(petri (? c1654 p1654 (! c1655 p1655))) +(petri (? c1655 p1655 (! c1656 p1656))) +(petri (? c1656 p1656 (! c1657 p1657))) +(petri (? c1657 p1657 (! c1658 p1658))) +(petri (? c1658 p1658 (! c1659 p1659))) +(petri (? c1659 p1659 (! c1660 p1660))) +(petri (? c1660 p1660 (! c1661 p1661))) +(petri (? c1661 p1661 (! c1662 p1662))) +(petri (? c1662 p1662 (! c1663 p1663))) +(petri (? c1663 p1663 (! c1664 p1664))) +(petri (? c1664 p1664 (! c1665 p1665))) +(petri (? c1665 p1665 (! c1666 p1666))) +(petri (? c1666 p1666 (! c1667 p1667))) +(petri (? c1667 p1667 (! c1668 p1668))) +(petri (? c1668 p1668 (! c1669 p1669))) +(petri (? c1669 p1669 (! c1670 p1670))) +(petri (? c1670 p1670 (! c1671 p1671))) +(petri (? c1671 p1671 (! c1672 p1672))) +(petri (? c1672 p1672 (! c1673 p1673))) +(petri (? c1673 p1673 (! c1674 p1674))) +(petri (? c1674 p1674 (! c1675 p1675))) +(petri (? c1675 p1675 (! c1676 p1676))) +(petri (? c1676 p1676 (! c1677 p1677))) +(petri (? c1677 p1677 (! c1678 p1678))) +(petri (? c1678 p1678 (! c1679 p1679))) +(petri (? c1679 p1679 (! c1680 p1680))) +(petri (? c1680 p1680 (! c1681 p1681))) +(petri (? c1681 p1681 (! c1682 p1682))) +(petri (? c1682 p1682 (! c1683 p1683))) +(petri (? c1683 p1683 (! c1684 p1684))) +(petri (? c1684 p1684 (! c1685 p1685))) +(petri (? c1685 p1685 (! c1686 p1686))) +(petri (? c1686 p1686 (! c1687 p1687))) +(petri (? c1687 p1687 (! c1688 p1688))) +(petri (? c1688 p1688 (! c1689 p1689))) +(petri (? c1689 p1689 (! c1690 p1690))) +(petri (? c1690 p1690 (! c1691 p1691))) +(petri (? c1691 p1691 (! c1692 p1692))) +(petri (? c1692 p1692 (! c1693 p1693))) +(petri (? c1693 p1693 (! c1694 p1694))) +(petri (? c1694 p1694 (! c1695 p1695))) +(petri (? c1695 p1695 (! c1696 p1696))) +(petri (? c1696 p1696 (! c1697 p1697))) +(petri (? c1697 p1697 (! c1698 p1698))) +(petri (? c1698 p1698 (! c1699 p1699))) +(petri (? c1699 p1699 (! c1700 p1700))) +(petri (? c1700 p1700 (! c1701 p1701))) +(petri (? c1701 p1701 (! c1702 p1702))) +(petri (? c1702 p1702 (! c1703 p1703))) +(petri (? c1703 p1703 (! c1704 p1704))) +(petri (? c1704 p1704 (! c1705 p1705))) +(petri (? c1705 p1705 (! c1706 p1706))) +(petri (? c1706 p1706 (! c1707 p1707))) +(petri (? c1707 p1707 (! c1708 p1708))) +(petri (? c1708 p1708 (! c1709 p1709))) +(petri (? c1709 p1709 (! c1710 p1710))) +(petri (? c1710 p1710 (! c1711 p1711))) +(petri (? c1711 p1711 (! c1712 p1712))) +(petri (? c1712 p1712 (! c1713 p1713))) +(petri (? c1713 p1713 (! c1714 p1714))) +(petri (? c1714 p1714 (! c1715 p1715))) +(petri (? c1715 p1715 (! c1716 p1716))) +(petri (? c1716 p1716 (! c1717 p1717))) +(petri (? c1717 p1717 (! c1718 p1718))) +(petri (? c1718 p1718 (! c1719 p1719))) +(petri (? c1719 p1719 (! c1720 p1720))) +(petri (? c1720 p1720 (! c1721 p1721))) +(petri (? c1721 p1721 (! c1722 p1722))) +(petri (? c1722 p1722 (! c1723 p1723))) +(petri (? c1723 p1723 (! c1724 p1724))) +(petri (? c1724 p1724 (! c1725 p1725))) +(petri (? c1725 p1725 (! c1726 p1726))) +(petri (? c1726 p1726 (! c1727 p1727))) +(petri (? c1727 p1727 (! c1728 p1728))) +(petri (? c1728 p1728 (! c1729 p1729))) +(petri (? c1729 p1729 (! c1730 p1730))) +(petri (? c1730 p1730 (! c1731 p1731))) +(petri (? c1731 p1731 (! c1732 p1732))) +(petri (? c1732 p1732 (! c1733 p1733))) +(petri (? c1733 p1733 (! c1734 p1734))) +(petri (? c1734 p1734 (! c1735 p1735))) +(petri (? c1735 p1735 (! c1736 p1736))) +(petri (? c1736 p1736 (! c1737 p1737))) +(petri (? c1737 p1737 (! c1738 p1738))) +(petri (? c1738 p1738 (! c1739 p1739))) +(petri (? c1739 p1739 (! c1740 p1740))) +(petri (? c1740 p1740 (! c1741 p1741))) +(petri (? c1741 p1741 (! c1742 p1742))) +(petri (? c1742 p1742 (! c1743 p1743))) +(petri (? c1743 p1743 (! c1744 p1744))) +(petri (? c1744 p1744 (! c1745 p1745))) +(petri (? c1745 p1745 (! c1746 p1746))) +(petri (? c1746 p1746 (! c1747 p1747))) +(petri (? c1747 p1747 (! c1748 p1748))) +(petri (? c1748 p1748 (! c1749 p1749))) +(petri (? c1749 p1749 (! c1750 p1750))) +(petri (? c1750 p1750 (! c1751 p1751))) +(petri (? c1751 p1751 (! c1752 p1752))) +(petri (? c1752 p1752 (! c1753 p1753))) +(petri (? c1753 p1753 (! c1754 p1754))) +(petri (? c1754 p1754 (! c1755 p1755))) +(petri (? c1755 p1755 (! c1756 p1756))) +(petri (? c1756 p1756 (! c1757 p1757))) +(petri (? c1757 p1757 (! c1758 p1758))) +(petri (? c1758 p1758 (! c1759 p1759))) +(petri (? c1759 p1759 (! c1760 p1760))) +(petri (? c1760 p1760 (! c1761 p1761))) +(petri (? c1761 p1761 (! c1762 p1762))) +(petri (? c1762 p1762 (! c1763 p1763))) +(petri (? c1763 p1763 (! c1764 p1764))) +(petri (? c1764 p1764 (! c1765 p1765))) +(petri (? c1765 p1765 (! c1766 p1766))) +(petri (? c1766 p1766 (! c1767 p1767))) +(petri (? c1767 p1767 (! c1768 p1768))) +(petri (? c1768 p1768 (! c1769 p1769))) +(petri (? c1769 p1769 (! c1770 p1770))) +(petri (? c1770 p1770 (! c1771 p1771))) +(petri (? c1771 p1771 (! c1772 p1772))) +(petri (? c1772 p1772 (! c1773 p1773))) +(petri (? c1773 p1773 (! c1774 p1774))) +(petri (? c1774 p1774 (! c1775 p1775))) +(petri (? c1775 p1775 (! c1776 p1776))) +(petri (? c1776 p1776 (! c1777 p1777))) +(petri (? c1777 p1777 (! c1778 p1778))) +(petri (? c1778 p1778 (! c1779 p1779))) +(petri (? c1779 p1779 (! c1780 p1780))) +(petri (? c1780 p1780 (! c1781 p1781))) +(petri (? c1781 p1781 (! c1782 p1782))) +(petri (? c1782 p1782 (! c1783 p1783))) +(petri (? c1783 p1783 (! c1784 p1784))) +(petri (? c1784 p1784 (! c1785 p1785))) +(petri (? c1785 p1785 (! c1786 p1786))) +(petri (? c1786 p1786 (! c1787 p1787))) +(petri (? c1787 p1787 (! c1788 p1788))) +(petri (? c1788 p1788 (! c1789 p1789))) +(petri (? c1789 p1789 (! c1790 p1790))) +(petri (? c1790 p1790 (! c1791 p1791))) +(petri (? c1791 p1791 (! c1792 p1792))) +(petri (? c1792 p1792 (! c1793 p1793))) +(petri (? c1793 p1793 (! c1794 p1794))) +(petri (? c1794 p1794 (! c1795 p1795))) +(petri (? c1795 p1795 (! c1796 p1796))) +(petri (? c1796 p1796 (! c1797 p1797))) +(petri (? c1797 p1797 (! c1798 p1798))) +(petri (? c1798 p1798 (! c1799 p1799))) +(petri (? c1799 p1799 (! c1800 p1800))) +(petri (? c1800 p1800 (! c1801 p1801))) +(petri (? c1801 p1801 (! c1802 p1802))) +(petri (? c1802 p1802 (! c1803 p1803))) +(petri (? c1803 p1803 (! c1804 p1804))) +(petri (? c1804 p1804 (! c1805 p1805))) +(petri (? c1805 p1805 (! c1806 p1806))) +(petri (? c1806 p1806 (! c1807 p1807))) +(petri (? c1807 p1807 (! c1808 p1808))) +(petri (? c1808 p1808 (! c1809 p1809))) +(petri (? c1809 p1809 (! c1810 p1810))) +(petri (? c1810 p1810 (! c1811 p1811))) +(petri (? c1811 p1811 (! c1812 p1812))) +(petri (? c1812 p1812 (! c1813 p1813))) +(petri (? c1813 p1813 (! c1814 p1814))) +(petri (? c1814 p1814 (! c1815 p1815))) +(petri (? c1815 p1815 (! c1816 p1816))) +(petri (? c1816 p1816 (! c1817 p1817))) +(petri (? c1817 p1817 (! c1818 p1818))) +(petri (? c1818 p1818 (! c1819 p1819))) +(petri (? c1819 p1819 (! c1820 p1820))) +(petri (? c1820 p1820 (! c1821 p1821))) +(petri (? c1821 p1821 (! c1822 p1822))) +(petri (? c1822 p1822 (! c1823 p1823))) +(petri (? c1823 p1823 (! c1824 p1824))) +(petri (? c1824 p1824 (! c1825 p1825))) +(petri (? c1825 p1825 (! c1826 p1826))) +(petri (? c1826 p1826 (! c1827 p1827))) +(petri (? c1827 p1827 (! c1828 p1828))) +(petri (? c1828 p1828 (! c1829 p1829))) +(petri (? c1829 p1829 (! c1830 p1830))) +(petri (? c1830 p1830 (! c1831 p1831))) +(petri (? c1831 p1831 (! c1832 p1832))) +(petri (? c1832 p1832 (! c1833 p1833))) +(petri (? c1833 p1833 (! c1834 p1834))) +(petri (? c1834 p1834 (! c1835 p1835))) +(petri (? c1835 p1835 (! c1836 p1836))) +(petri (? c1836 p1836 (! c1837 p1837))) +(petri (? c1837 p1837 (! c1838 p1838))) +(petri (? c1838 p1838 (! c1839 p1839))) +(petri (? c1839 p1839 (! c1840 p1840))) +(petri (? c1840 p1840 (! c1841 p1841))) +(petri (? c1841 p1841 (! c1842 p1842))) +(petri (? c1842 p1842 (! c1843 p1843))) +(petri (? c1843 p1843 (! c1844 p1844))) +(petri (? c1844 p1844 (! c1845 p1845))) +(petri (? c1845 p1845 (! c1846 p1846))) +(petri (? c1846 p1846 (! c1847 p1847))) +(petri (? c1847 p1847 (! c1848 p1848))) +(petri (? c1848 p1848 (! c1849 p1849))) +(petri (? c1849 p1849 (! c1850 p1850))) +(petri (? c1850 p1850 (! c1851 p1851))) +(petri (? c1851 p1851 (! c1852 p1852))) +(petri (? c1852 p1852 (! c1853 p1853))) +(petri (? c1853 p1853 (! c1854 p1854))) +(petri (? c1854 p1854 (! c1855 p1855))) +(petri (? c1855 p1855 (! c1856 p1856))) +(petri (? c1856 p1856 (! c1857 p1857))) +(petri (? c1857 p1857 (! c1858 p1858))) +(petri (? c1858 p1858 (! c1859 p1859))) +(petri (? c1859 p1859 (! c1860 p1860))) +(petri (? c1860 p1860 (! c1861 p1861))) +(petri (? c1861 p1861 (! c1862 p1862))) +(petri (? c1862 p1862 (! c1863 p1863))) +(petri (? c1863 p1863 (! c1864 p1864))) +(petri (? c1864 p1864 (! c1865 p1865))) +(petri (? c1865 p1865 (! c1866 p1866))) +(petri (? c1866 p1866 (! c1867 p1867))) +(petri (? c1867 p1867 (! c1868 p1868))) +(petri (? c1868 p1868 (! c1869 p1869))) +(petri (? c1869 p1869 (! c1870 p1870))) +(petri (? c1870 p1870 (! c1871 p1871))) +(petri (? c1871 p1871 (! c1872 p1872))) +(petri (? c1872 p1872 (! c1873 p1873))) +(petri (? c1873 p1873 (! c1874 p1874))) +(petri (? c1874 p1874 (! c1875 p1875))) +(petri (? c1875 p1875 (! c1876 p1876))) +(petri (? c1876 p1876 (! c1877 p1877))) +(petri (? c1877 p1877 (! c1878 p1878))) +(petri (? c1878 p1878 (! c1879 p1879))) +(petri (? c1879 p1879 (! c1880 p1880))) +(petri (? c1880 p1880 (! c1881 p1881))) +(petri (? c1881 p1881 (! c1882 p1882))) +(petri (? c1882 p1882 (! c1883 p1883))) +(petri (? c1883 p1883 (! c1884 p1884))) +(petri (? c1884 p1884 (! c1885 p1885))) +(petri (? c1885 p1885 (! c1886 p1886))) +(petri (? c1886 p1886 (! c1887 p1887))) +(petri (? c1887 p1887 (! c1888 p1888))) +(petri (? c1888 p1888 (! c1889 p1889))) +(petri (? c1889 p1889 (! c1890 p1890))) +(petri (? c1890 p1890 (! c1891 p1891))) +(petri (? c1891 p1891 (! c1892 p1892))) +(petri (? c1892 p1892 (! c1893 p1893))) +(petri (? c1893 p1893 (! c1894 p1894))) +(petri (? c1894 p1894 (! c1895 p1895))) +(petri (? c1895 p1895 (! c1896 p1896))) +(petri (? c1896 p1896 (! c1897 p1897))) +(petri (? c1897 p1897 (! c1898 p1898))) +(petri (? c1898 p1898 (! c1899 p1899))) +(petri (? c1899 p1899 (! c1900 p1900))) +(petri (? c1900 p1900 (! c1901 p1901))) +(petri (? c1901 p1901 (! c1902 p1902))) +(petri (? c1902 p1902 (! c1903 p1903))) +(petri (? c1903 p1903 (! c1904 p1904))) +(petri (? c1904 p1904 (! c1905 p1905))) +(petri (? c1905 p1905 (! c1906 p1906))) +(petri (? c1906 p1906 (! c1907 p1907))) +(petri (? c1907 p1907 (! c1908 p1908))) +(petri (? c1908 p1908 (! c1909 p1909))) +(petri (? c1909 p1909 (! c1910 p1910))) +(petri (? c1910 p1910 (! c1911 p1911))) +(petri (? c1911 p1911 (! c1912 p1912))) +(petri (? c1912 p1912 (! c1913 p1913))) +(petri (? c1913 p1913 (! c1914 p1914))) +(petri (? c1914 p1914 (! c1915 p1915))) +(petri (? c1915 p1915 (! c1916 p1916))) +(petri (? c1916 p1916 (! c1917 p1917))) +(petri (? c1917 p1917 (! c1918 p1918))) +(petri (? c1918 p1918 (! c1919 p1919))) +(petri (? c1919 p1919 (! c1920 p1920))) +(petri (? c1920 p1920 (! c1921 p1921))) +(petri (? c1921 p1921 (! c1922 p1922))) +(petri (? c1922 p1922 (! c1923 p1923))) +(petri (? c1923 p1923 (! c1924 p1924))) +(petri (? c1924 p1924 (! c1925 p1925))) +(petri (? c1925 p1925 (! c1926 p1926))) +(petri (? c1926 p1926 (! c1927 p1927))) +(petri (? c1927 p1927 (! c1928 p1928))) +(petri (? c1928 p1928 (! c1929 p1929))) +(petri (? c1929 p1929 (! c1930 p1930))) +(petri (? c1930 p1930 (! c1931 p1931))) +(petri (? c1931 p1931 (! c1932 p1932))) +(petri (? c1932 p1932 (! c1933 p1933))) +(petri (? c1933 p1933 (! c1934 p1934))) +(petri (? c1934 p1934 (! c1935 p1935))) +(petri (? c1935 p1935 (! c1936 p1936))) +(petri (? c1936 p1936 (! c1937 p1937))) +(petri (? c1937 p1937 (! c1938 p1938))) +(petri (? c1938 p1938 (! c1939 p1939))) +(petri (? c1939 p1939 (! c1940 p1940))) +(petri (? c1940 p1940 (! c1941 p1941))) +(petri (? c1941 p1941 (! c1942 p1942))) +(petri (? c1942 p1942 (! c1943 p1943))) +(petri (? c1943 p1943 (! c1944 p1944))) +(petri (? c1944 p1944 (! c1945 p1945))) +(petri (? c1945 p1945 (! c1946 p1946))) +(petri (? c1946 p1946 (! c1947 p1947))) +(petri (? c1947 p1947 (! c1948 p1948))) +(petri (? c1948 p1948 (! c1949 p1949))) +(petri (? c1949 p1949 (! c1950 p1950))) +(petri (? c1950 p1950 (! c1951 p1951))) +(petri (? c1951 p1951 (! c1952 p1952))) +(petri (? c1952 p1952 (! c1953 p1953))) +(petri (? c1953 p1953 (! c1954 p1954))) +(petri (? c1954 p1954 (! c1955 p1955))) +(petri (? c1955 p1955 (! c1956 p1956))) +(petri (? c1956 p1956 (! c1957 p1957))) +(petri (? c1957 p1957 (! c1958 p1958))) +(petri (? c1958 p1958 (! c1959 p1959))) +(petri (? c1959 p1959 (! c1960 p1960))) +(petri (? c1960 p1960 (! c1961 p1961))) +(petri (? c1961 p1961 (! c1962 p1962))) +(petri (? c1962 p1962 (! c1963 p1963))) +(petri (? c1963 p1963 (! c1964 p1964))) +(petri (? c1964 p1964 (! c1965 p1965))) +(petri (? c1965 p1965 (! c1966 p1966))) +(petri (? c1966 p1966 (! c1967 p1967))) +(petri (? c1967 p1967 (! c1968 p1968))) +(petri (? c1968 p1968 (! c1969 p1969))) +(petri (? c1969 p1969 (! c1970 p1970))) +(petri (? c1970 p1970 (! c1971 p1971))) +(petri (? c1971 p1971 (! c1972 p1972))) +(petri (? c1972 p1972 (! c1973 p1973))) +(petri (? c1973 p1973 (! c1974 p1974))) +(petri (? c1974 p1974 (! c1975 p1975))) +(petri (? c1975 p1975 (! c1976 p1976))) +(petri (? c1976 p1976 (! c1977 p1977))) +(petri (? c1977 p1977 (! c1978 p1978))) +(petri (? c1978 p1978 (! c1979 p1979))) +(petri (? c1979 p1979 (! c1980 p1980))) +(petri (? c1980 p1980 (! c1981 p1981))) +(petri (? c1981 p1981 (! c1982 p1982))) +(petri (? c1982 p1982 (! c1983 p1983))) +(petri (? c1983 p1983 (! c1984 p1984))) +(petri (? c1984 p1984 (! c1985 p1985))) +(petri (? c1985 p1985 (! c1986 p1986))) +(petri (? c1986 p1986 (! c1987 p1987))) +(petri (? c1987 p1987 (! c1988 p1988))) +(petri (? c1988 p1988 (! c1989 p1989))) +(petri (? c1989 p1989 (! c1990 p1990))) +(petri (? c1990 p1990 (! c1991 p1991))) +(petri (? c1991 p1991 (! c1992 p1992))) +(petri (? c1992 p1992 (! c1993 p1993))) +(petri (? c1993 p1993 (! c1994 p1994))) +(petri (? c1994 p1994 (! c1995 p1995))) +(petri (? c1995 p1995 (! c1996 p1996))) +(petri (? c1996 p1996 (! c1997 p1997))) +(petri (? c1997 p1997 (! c1998 p1998))) +(petri (? c1998 p1998 (! c1999 p1999))) +(petri (? c1999 p1999 (! c2000 p2000))) +(petri (? c2000 p2000 (! c2001 p2001))) +(petri (? c2001 p2001 (! c2002 p2002))) +(petri (? c2002 p2002 (! c2003 p2003))) +(petri (? c2003 p2003 (! c2004 p2004))) +(petri (? c2004 p2004 (! c2005 p2005))) +(petri (? c2005 p2005 (! c2006 p2006))) +(petri (? c2006 p2006 (! c2007 p2007))) +(petri (? c2007 p2007 (! c2008 p2008))) +(petri (? c2008 p2008 (! c2009 p2009))) +(petri (? c2009 p2009 (! c2010 p2010))) +(petri (? c2010 p2010 (! c2011 p2011))) +(petri (? c2011 p2011 (! c2012 p2012))) +(petri (? c2012 p2012 (! c2013 p2013))) +(petri (? c2013 p2013 (! c2014 p2014))) +(petri (? c2014 p2014 (! c2015 p2015))) +(petri (? c2015 p2015 (! c2016 p2016))) +(petri (? c2016 p2016 (! c2017 p2017))) +(petri (? c2017 p2017 (! c2018 p2018))) +(petri (? c2018 p2018 (! c2019 p2019))) +(petri (? c2019 p2019 (! c2020 p2020))) +(petri (? c2020 p2020 (! c2021 p2021))) +(petri (? c2021 p2021 (! c2022 p2022))) +(petri (? c2022 p2022 (! c2023 p2023))) +(petri (? c2023 p2023 (! c2024 p2024))) +(petri (? c2024 p2024 (! c2025 p2025))) +(petri (? c2025 p2025 (! c2026 p2026))) +(petri (? c2026 p2026 (! c2027 p2027))) +(petri (? c2027 p2027 (! c2028 p2028))) +(petri (? c2028 p2028 (! c2029 p2029))) +(petri (? c2029 p2029 (! c2030 p2030))) +(petri (? c2030 p2030 (! c2031 p2031))) +(petri (? c2031 p2031 (! c2032 p2032))) +(petri (? c2032 p2032 (! c2033 p2033))) +(petri (? c2033 p2033 (! c2034 p2034))) +(petri (? c2034 p2034 (! c2035 p2035))) +(petri (? c2035 p2035 (! c2036 p2036))) +(petri (? c2036 p2036 (! c2037 p2037))) +(petri (? c2037 p2037 (! c2038 p2038))) +(petri (? c2038 p2038 (! c2039 p2039))) +(petri (? c2039 p2039 (! c2040 p2040))) +(petri (? c2040 p2040 (! c2041 p2041))) +(petri (? c2041 p2041 (! c2042 p2042))) +(petri (? c2042 p2042 (! c2043 p2043))) +(petri (? c2043 p2043 (! c2044 p2044))) +(petri (? c2044 p2044 (! c2045 p2045))) +(petri (? c2045 p2045 (! c2046 p2046))) +(petri (? c2046 p2046 (! c2047 p2047))) +(petri (? c2047 p2047 (! c2048 p2048))) +(petri (? c2048 p2048 (! c2049 p2049))) +(petri (? c2049 p2049 (! c2050 p2050))) +(petri (? c2050 p2050 (! c2051 p2051))) +(petri (? c2051 p2051 (! c2052 p2052))) +(petri (? c2052 p2052 (! c2053 p2053))) +(petri (? c2053 p2053 (! c2054 p2054))) +(petri (? c2054 p2054 (! c2055 p2055))) +(petri (? c2055 p2055 (! c2056 p2056))) +(petri (? c2056 p2056 (! c2057 p2057))) +(petri (? c2057 p2057 (! c2058 p2058))) +(petri (? c2058 p2058 (! c2059 p2059))) +(petri (? c2059 p2059 (! c2060 p2060))) +(petri (? c2060 p2060 (! c2061 p2061))) +(petri (? c2061 p2061 (! c2062 p2062))) +(petri (? c2062 p2062 (! c2063 p2063))) +(petri (? c2063 p2063 (! c2064 p2064))) +(petri (? c2064 p2064 (! c2065 p2065))) +(petri (? c2065 p2065 (! c2066 p2066))) +(petri (? c2066 p2066 (! c2067 p2067))) +(petri (? c2067 p2067 (! c2068 p2068))) +(petri (? c2068 p2068 (! c2069 p2069))) +(petri (? c2069 p2069 (! c2070 p2070))) +(petri (? c2070 p2070 (! c2071 p2071))) +(petri (? c2071 p2071 (! c2072 p2072))) +(petri (? c2072 p2072 (! c2073 p2073))) +(petri (? c2073 p2073 (! c2074 p2074))) +(petri (? c2074 p2074 (! c2075 p2075))) +(petri (? c2075 p2075 (! c2076 p2076))) +(petri (? c2076 p2076 (! c2077 p2077))) +(petri (? c2077 p2077 (! c2078 p2078))) +(petri (? c2078 p2078 (! c2079 p2079))) +(petri (? c2079 p2079 (! c2080 p2080))) +(petri (? c2080 p2080 (! c2081 p2081))) +(petri (? c2081 p2081 (! c2082 p2082))) +(petri (? c2082 p2082 (! c2083 p2083))) +(petri (? c2083 p2083 (! c2084 p2084))) +(petri (? c2084 p2084 (! c2085 p2085))) +(petri (? c2085 p2085 (! c2086 p2086))) +(petri (? c2086 p2086 (! c2087 p2087))) +(petri (? c2087 p2087 (! c2088 p2088))) +(petri (? c2088 p2088 (! c2089 p2089))) +(petri (? c2089 p2089 (! c2090 p2090))) +(petri (? c2090 p2090 (! c2091 p2091))) +(petri (? c2091 p2091 (! c2092 p2092))) +(petri (? c2092 p2092 (! c2093 p2093))) +(petri (? c2093 p2093 (! c2094 p2094))) +(petri (? c2094 p2094 (! c2095 p2095))) +(petri (? c2095 p2095 (! c2096 p2096))) +(petri (? c2096 p2096 (! c2097 p2097))) +(petri (? c2097 p2097 (! c2098 p2098))) +(petri (? c2098 p2098 (! c2099 p2099))) +(petri (? c2099 p2099 (! c2100 p2100))) +(petri (? c2100 p2100 (! c2101 p2101))) +(petri (? c2101 p2101 (! c2102 p2102))) +(petri (? c2102 p2102 (! c2103 p2103))) +(petri (? c2103 p2103 (! c2104 p2104))) +(petri (? c2104 p2104 (! c2105 p2105))) +(petri (? c2105 p2105 (! c2106 p2106))) +(petri (? c2106 p2106 (! c2107 p2107))) +(petri (? c2107 p2107 (! c2108 p2108))) +(petri (? c2108 p2108 (! c2109 p2109))) +(petri (? c2109 p2109 (! c2110 p2110))) +(petri (? c2110 p2110 (! c2111 p2111))) +(petri (? c2111 p2111 (! c2112 p2112))) +(petri (? c2112 p2112 (! c2113 p2113))) +(petri (? c2113 p2113 (! c2114 p2114))) +(petri (? c2114 p2114 (! c2115 p2115))) +(petri (? c2115 p2115 (! c2116 p2116))) +(petri (? c2116 p2116 (! c2117 p2117))) +(petri (? c2117 p2117 (! c2118 p2118))) +(petri (? c2118 p2118 (! c2119 p2119))) +(petri (? c2119 p2119 (! c2120 p2120))) +(petri (? c2120 p2120 (! c2121 p2121))) +(petri (? c2121 p2121 (! c2122 p2122))) +(petri (? c2122 p2122 (! c2123 p2123))) +(petri (? c2123 p2123 (! c2124 p2124))) +(petri (? c2124 p2124 (! c2125 p2125))) +(petri (? c2125 p2125 (! c2126 p2126))) +(petri (? c2126 p2126 (! c2127 p2127))) +(petri (? c2127 p2127 (! c2128 p2128))) +(petri (? c2128 p2128 (! c2129 p2129))) +(petri (? c2129 p2129 (! c2130 p2130))) +(petri (? c2130 p2130 (! c2131 p2131))) +(petri (? c2131 p2131 (! c2132 p2132))) +(petri (? c2132 p2132 (! c2133 p2133))) +(petri (? c2133 p2133 (! c2134 p2134))) +(petri (? c2134 p2134 (! c2135 p2135))) +(petri (? c2135 p2135 (! c2136 p2136))) +(petri (? c2136 p2136 (! c2137 p2137))) +(petri (? c2137 p2137 (! c2138 p2138))) +(petri (? c2138 p2138 (! c2139 p2139))) +(petri (? c2139 p2139 (! c2140 p2140))) +(petri (? c2140 p2140 (! c2141 p2141))) +(petri (? c2141 p2141 (! c2142 p2142))) +(petri (? c2142 p2142 (! c2143 p2143))) +(petri (? c2143 p2143 (! c2144 p2144))) +(petri (? c2144 p2144 (! c2145 p2145))) +(petri (? c2145 p2145 (! c2146 p2146))) +(petri (? c2146 p2146 (! c2147 p2147))) +(petri (? c2147 p2147 (! c2148 p2148))) +(petri (? c2148 p2148 (! c2149 p2149))) +(petri (? c2149 p2149 (! c2150 p2150))) +(petri (? c2150 p2150 (! c2151 p2151))) +(petri (? c2151 p2151 (! c2152 p2152))) +(petri (? c2152 p2152 (! c2153 p2153))) +(petri (? c2153 p2153 (! c2154 p2154))) +(petri (? c2154 p2154 (! c2155 p2155))) +(petri (? c2155 p2155 (! c2156 p2156))) +(petri (? c2156 p2156 (! c2157 p2157))) +(petri (? c2157 p2157 (! c2158 p2158))) +(petri (? c2158 p2158 (! c2159 p2159))) +(petri (? c2159 p2159 (! c2160 p2160))) +(petri (? c2160 p2160 (! c2161 p2161))) +(petri (? c2161 p2161 (! c2162 p2162))) +(petri (? c2162 p2162 (! c2163 p2163))) +(petri (? c2163 p2163 (! c2164 p2164))) +(petri (? c2164 p2164 (! c2165 p2165))) +(petri (? c2165 p2165 (! c2166 p2166))) +(petri (? c2166 p2166 (! c2167 p2167))) +(petri (? c2167 p2167 (! c2168 p2168))) +(petri (? c2168 p2168 (! c2169 p2169))) +(petri (? c2169 p2169 (! c2170 p2170))) +(petri (? c2170 p2170 (! c2171 p2171))) +(petri (? c2171 p2171 (! c2172 p2172))) +(petri (? c2172 p2172 (! c2173 p2173))) +(petri (? c2173 p2173 (! c2174 p2174))) +(petri (? c2174 p2174 (! c2175 p2175))) +(petri (? c2175 p2175 (! c2176 p2176))) +(petri (? c2176 p2176 (! c2177 p2177))) +(petri (? c2177 p2177 (! c2178 p2178))) +(petri (? c2178 p2178 (! c2179 p2179))) +(petri (? c2179 p2179 (! c2180 p2180))) +(petri (? c2180 p2180 (! c2181 p2181))) +(petri (? c2181 p2181 (! c2182 p2182))) +(petri (? c2182 p2182 (! c2183 p2183))) +(petri (? c2183 p2183 (! c2184 p2184))) +(petri (? c2184 p2184 (! c2185 p2185))) +(petri (? c2185 p2185 (! c2186 p2186))) +(petri (? c2186 p2186 (! c2187 p2187))) +(petri (? c2187 p2187 (! c2188 p2188))) +(petri (? c2188 p2188 (! c2189 p2189))) +(petri (? c2189 p2189 (! c2190 p2190))) +(petri (? c2190 p2190 (! c2191 p2191))) +(petri (? c2191 p2191 (! c2192 p2192))) +(petri (? c2192 p2192 (! c2193 p2193))) +(petri (? c2193 p2193 (! c2194 p2194))) +(petri (? c2194 p2194 (! c2195 p2195))) +(petri (? c2195 p2195 (! c2196 p2196))) +(petri (? c2196 p2196 (! c2197 p2197))) +(petri (? c2197 p2197 (! c2198 p2198))) +(petri (? c2198 p2198 (! c2199 p2199))) +(petri (? c2199 p2199 (! c2200 p2200))) +(petri (? c2200 p2200 (! c2201 p2201))) +(petri (? c2201 p2201 (! c2202 p2202))) +(petri (? c2202 p2202 (! c2203 p2203))) +(petri (? c2203 p2203 (! c2204 p2204))) +(petri (? c2204 p2204 (! c2205 p2205))) +(petri (? c2205 p2205 (! c2206 p2206))) +(petri (? c2206 p2206 (! c2207 p2207))) +(petri (? c2207 p2207 (! c2208 p2208))) +(petri (? c2208 p2208 (! c2209 p2209))) +(petri (? c2209 p2209 (! c2210 p2210))) +(petri (? c2210 p2210 (! c2211 p2211))) +(petri (? c2211 p2211 (! c2212 p2212))) +(petri (? c2212 p2212 (! c2213 p2213))) +(petri (? c2213 p2213 (! c2214 p2214))) +(petri (? c2214 p2214 (! c2215 p2215))) +(petri (? c2215 p2215 (! c2216 p2216))) +(petri (? c2216 p2216 (! c2217 p2217))) +(petri (? c2217 p2217 (! c2218 p2218))) +(petri (? c2218 p2218 (! c2219 p2219))) +(petri (? c2219 p2219 (! c2220 p2220))) +(petri (? c2220 p2220 (! c2221 p2221))) +(petri (? c2221 p2221 (! c2222 p2222))) +(petri (? c2222 p2222 (! c2223 p2223))) +(petri (? c2223 p2223 (! c2224 p2224))) +(petri (? c2224 p2224 (! c2225 p2225))) +(petri (? c2225 p2225 (! c2226 p2226))) +(petri (? c2226 p2226 (! c2227 p2227))) +(petri (? c2227 p2227 (! c2228 p2228))) +(petri (? c2228 p2228 (! c2229 p2229))) +(petri (? c2229 p2229 (! c2230 p2230))) +(petri (? c2230 p2230 (! c2231 p2231))) +(petri (? c2231 p2231 (! c2232 p2232))) +(petri (? c2232 p2232 (! c2233 p2233))) +(petri (? c2233 p2233 (! c2234 p2234))) +(petri (? c2234 p2234 (! c2235 p2235))) +(petri (? c2235 p2235 (! c2236 p2236))) +(petri (? c2236 p2236 (! c2237 p2237))) +(petri (? c2237 p2237 (! c2238 p2238))) +(petri (? c2238 p2238 (! c2239 p2239))) +(petri (? c2239 p2239 (! c2240 p2240))) +(petri (? c2240 p2240 (! c2241 p2241))) +(petri (? c2241 p2241 (! c2242 p2242))) +(petri (? c2242 p2242 (! c2243 p2243))) +(petri (? c2243 p2243 (! c2244 p2244))) +(petri (? c2244 p2244 (! c2245 p2245))) +(petri (? c2245 p2245 (! c2246 p2246))) +(petri (? c2246 p2246 (! c2247 p2247))) +(petri (? c2247 p2247 (! c2248 p2248))) +(petri (? c2248 p2248 (! c2249 p2249))) +(petri (? c2249 p2249 (! c2250 p2250))) +(petri (? c2250 p2250 (! c2251 p2251))) +(petri (? c2251 p2251 (! c2252 p2252))) +(petri (? c2252 p2252 (! c2253 p2253))) +(petri (? c2253 p2253 (! c2254 p2254))) +(petri (? c2254 p2254 (! c2255 p2255))) +(petri (? c2255 p2255 (! c2256 p2256))) +(petri (? c2256 p2256 (! c2257 p2257))) +(petri (? c2257 p2257 (! c2258 p2258))) +(petri (? c2258 p2258 (! c2259 p2259))) +(petri (? c2259 p2259 (! c2260 p2260))) +(petri (? c2260 p2260 (! c2261 p2261))) +(petri (? c2261 p2261 (! c2262 p2262))) +(petri (? c2262 p2262 (! c2263 p2263))) +(petri (? c2263 p2263 (! c2264 p2264))) +(petri (? c2264 p2264 (! c2265 p2265))) +(petri (? c2265 p2265 (! c2266 p2266))) +(petri (? c2266 p2266 (! c2267 p2267))) +(petri (? c2267 p2267 (! c2268 p2268))) +(petri (? c2268 p2268 (! c2269 p2269))) +(petri (? c2269 p2269 (! c2270 p2270))) +(petri (? c2270 p2270 (! c2271 p2271))) +(petri (? c2271 p2271 (! c2272 p2272))) +(petri (? c2272 p2272 (! c2273 p2273))) +(petri (? c2273 p2273 (! c2274 p2274))) +(petri (? c2274 p2274 (! c2275 p2275))) +(petri (? c2275 p2275 (! c2276 p2276))) +(petri (? c2276 p2276 (! c2277 p2277))) +(petri (? c2277 p2277 (! c2278 p2278))) +(petri (? c2278 p2278 (! c2279 p2279))) +(petri (? c2279 p2279 (! c2280 p2280))) +(petri (? c2280 p2280 (! c2281 p2281))) +(petri (? c2281 p2281 (! c2282 p2282))) +(petri (? c2282 p2282 (! c2283 p2283))) +(petri (? c2283 p2283 (! c2284 p2284))) +(petri (? c2284 p2284 (! c2285 p2285))) +(petri (? c2285 p2285 (! c2286 p2286))) +(petri (? c2286 p2286 (! c2287 p2287))) +(petri (? c2287 p2287 (! c2288 p2288))) +(petri (? c2288 p2288 (! c2289 p2289))) +(petri (? c2289 p2289 (! c2290 p2290))) +(petri (? c2290 p2290 (! c2291 p2291))) +(petri (? c2291 p2291 (! c2292 p2292))) +(petri (? c2292 p2292 (! c2293 p2293))) +(petri (? c2293 p2293 (! c2294 p2294))) +(petri (? c2294 p2294 (! c2295 p2295))) +(petri (? c2295 p2295 (! c2296 p2296))) +(petri (? c2296 p2296 (! c2297 p2297))) +(petri (? c2297 p2297 (! c2298 p2298))) +(petri (? c2298 p2298 (! c2299 p2299))) +(petri (? c2299 p2299 (! c2300 p2300))) +(petri (? c2300 p2300 (! c2301 p2301))) +(petri (? c2301 p2301 (! c2302 p2302))) +(petri (? c2302 p2302 (! c2303 p2303))) +(petri (? c2303 p2303 (! c2304 p2304))) +(petri (? c2304 p2304 (! c2305 p2305))) +(petri (? c2305 p2305 (! c2306 p2306))) +(petri (? c2306 p2306 (! c2307 p2307))) +(petri (? c2307 p2307 (! c2308 p2308))) +(petri (? c2308 p2308 (! c2309 p2309))) +(petri (? c2309 p2309 (! c2310 p2310))) +(petri (? c2310 p2310 (! c2311 p2311))) +(petri (? c2311 p2311 (! c2312 p2312))) +(petri (? c2312 p2312 (! c2313 p2313))) +(petri (? c2313 p2313 (! c2314 p2314))) +(petri (? c2314 p2314 (! c2315 p2315))) +(petri (? c2315 p2315 (! c2316 p2316))) +(petri (? c2316 p2316 (! c2317 p2317))) +(petri (? c2317 p2317 (! c2318 p2318))) +(petri (? c2318 p2318 (! c2319 p2319))) +(petri (? c2319 p2319 (! c2320 p2320))) +(petri (? c2320 p2320 (! c2321 p2321))) +(petri (? c2321 p2321 (! c2322 p2322))) +(petri (? c2322 p2322 (! c2323 p2323))) +(petri (? c2323 p2323 (! c2324 p2324))) +(petri (? c2324 p2324 (! c2325 p2325))) +(petri (? c2325 p2325 (! c2326 p2326))) +(petri (? c2326 p2326 (! c2327 p2327))) +(petri (? c2327 p2327 (! c2328 p2328))) +(petri (? c2328 p2328 (! c2329 p2329))) +(petri (? c2329 p2329 (! c2330 p2330))) +(petri (? c2330 p2330 (! c2331 p2331))) +(petri (? c2331 p2331 (! c2332 p2332))) +(petri (? c2332 p2332 (! c2333 p2333))) +(petri (? c2333 p2333 (! c2334 p2334))) +(petri (? c2334 p2334 (! c2335 p2335))) +(petri (? c2335 p2335 (! c2336 p2336))) +(petri (? c2336 p2336 (! c2337 p2337))) +(petri (? c2337 p2337 (! c2338 p2338))) +(petri (? c2338 p2338 (! c2339 p2339))) +(petri (? c2339 p2339 (! c2340 p2340))) +(petri (? c2340 p2340 (! c2341 p2341))) +(petri (? c2341 p2341 (! c2342 p2342))) +(petri (? c2342 p2342 (! c2343 p2343))) +(petri (? c2343 p2343 (! c2344 p2344))) +(petri (? c2344 p2344 (! c2345 p2345))) +(petri (? c2345 p2345 (! c2346 p2346))) +(petri (? c2346 p2346 (! c2347 p2347))) +(petri (? c2347 p2347 (! c2348 p2348))) +(petri (? c2348 p2348 (! c2349 p2349))) +(petri (? c2349 p2349 (! c2350 p2350))) +(petri (? c2350 p2350 (! c2351 p2351))) +(petri (? c2351 p2351 (! c2352 p2352))) +(petri (? c2352 p2352 (! c2353 p2353))) +(petri (? c2353 p2353 (! c2354 p2354))) +(petri (? c2354 p2354 (! c2355 p2355))) +(petri (? c2355 p2355 (! c2356 p2356))) +(petri (? c2356 p2356 (! c2357 p2357))) +(petri (? c2357 p2357 (! c2358 p2358))) +(petri (? c2358 p2358 (! c2359 p2359))) +(petri (? c2359 p2359 (! c2360 p2360))) +(petri (? c2360 p2360 (! c2361 p2361))) +(petri (? c2361 p2361 (! c2362 p2362))) +(petri (? c2362 p2362 (! c2363 p2363))) +(petri (? c2363 p2363 (! c2364 p2364))) +(petri (? c2364 p2364 (! c2365 p2365))) +(petri (? c2365 p2365 (! c2366 p2366))) +(petri (? c2366 p2366 (! c2367 p2367))) +(petri (? c2367 p2367 (! c2368 p2368))) +(petri (? c2368 p2368 (! c2369 p2369))) +(petri (? c2369 p2369 (! c2370 p2370))) +(petri (? c2370 p2370 (! c2371 p2371))) +(petri (? c2371 p2371 (! c2372 p2372))) +(petri (? c2372 p2372 (! c2373 p2373))) +(petri (? c2373 p2373 (! c2374 p2374))) +(petri (? c2374 p2374 (! c2375 p2375))) +(petri (? c2375 p2375 (! c2376 p2376))) +(petri (? c2376 p2376 (! c2377 p2377))) +(petri (? c2377 p2377 (! c2378 p2378))) +(petri (? c2378 p2378 (! c2379 p2379))) +(petri (? c2379 p2379 (! c2380 p2380))) +(petri (? c2380 p2380 (! c2381 p2381))) +(petri (? c2381 p2381 (! c2382 p2382))) +(petri (? c2382 p2382 (! c2383 p2383))) +(petri (? c2383 p2383 (! c2384 p2384))) +(petri (? c2384 p2384 (! c2385 p2385))) +(petri (? c2385 p2385 (! c2386 p2386))) +(petri (? c2386 p2386 (! c2387 p2387))) +(petri (? c2387 p2387 (! c2388 p2388))) +(petri (? c2388 p2388 (! c2389 p2389))) +(petri (? c2389 p2389 (! c2390 p2390))) +(petri (? c2390 p2390 (! c2391 p2391))) +(petri (? c2391 p2391 (! c2392 p2392))) +(petri (? c2392 p2392 (! c2393 p2393))) +(petri (? c2393 p2393 (! c2394 p2394))) +(petri (? c2394 p2394 (! c2395 p2395))) +(petri (? c2395 p2395 (! c2396 p2396))) +(petri (? c2396 p2396 (! c2397 p2397))) +(petri (? c2397 p2397 (! c2398 p2398))) +(petri (? c2398 p2398 (! c2399 p2399))) +(petri (? c2399 p2399 (! c2400 p2400))) +(petri (? c2400 p2400 (! c2401 p2401))) +(petri (? c2401 p2401 (! c2402 p2402))) +(petri (? c2402 p2402 (! c2403 p2403))) +(petri (? c2403 p2403 (! c2404 p2404))) +(petri (? c2404 p2404 (! c2405 p2405))) +(petri (? c2405 p2405 (! c2406 p2406))) +(petri (? c2406 p2406 (! c2407 p2407))) +(petri (? c2407 p2407 (! c2408 p2408))) +(petri (? c2408 p2408 (! c2409 p2409))) +(petri (? c2409 p2409 (! c2410 p2410))) +(petri (? c2410 p2410 (! c2411 p2411))) +(petri (? c2411 p2411 (! c2412 p2412))) +(petri (? c2412 p2412 (! c2413 p2413))) +(petri (? c2413 p2413 (! c2414 p2414))) +(petri (? c2414 p2414 (! c2415 p2415))) +(petri (? c2415 p2415 (! c2416 p2416))) +(petri (? c2416 p2416 (! c2417 p2417))) +(petri (? c2417 p2417 (! c2418 p2418))) +(petri (? c2418 p2418 (! c2419 p2419))) +(petri (? c2419 p2419 (! c2420 p2420))) +(petri (? c2420 p2420 (! c2421 p2421))) +(petri (? c2421 p2421 (! c2422 p2422))) +(petri (? c2422 p2422 (! c2423 p2423))) +(petri (? c2423 p2423 (! c2424 p2424))) +(petri (? c2424 p2424 (! c2425 p2425))) +(petri (? c2425 p2425 (! c2426 p2426))) +(petri (? c2426 p2426 (! c2427 p2427))) +(petri (? c2427 p2427 (! c2428 p2428))) +(petri (? c2428 p2428 (! c2429 p2429))) +(petri (? c2429 p2429 (! c2430 p2430))) +(petri (? c2430 p2430 (! c2431 p2431))) +(petri (? c2431 p2431 (! c2432 p2432))) +(petri (? c2432 p2432 (! c2433 p2433))) +(petri (? c2433 p2433 (! c2434 p2434))) +(petri (? c2434 p2434 (! c2435 p2435))) +(petri (? c2435 p2435 (! c2436 p2436))) +(petri (? c2436 p2436 (! c2437 p2437))) +(petri (? c2437 p2437 (! c2438 p2438))) +(petri (? c2438 p2438 (! c2439 p2439))) +(petri (? c2439 p2439 (! c2440 p2440))) +(petri (? c2440 p2440 (! c2441 p2441))) +(petri (? c2441 p2441 (! c2442 p2442))) +(petri (? c2442 p2442 (! c2443 p2443))) +(petri (? c2443 p2443 (! c2444 p2444))) +(petri (? c2444 p2444 (! c2445 p2445))) +(petri (? c2445 p2445 (! c2446 p2446))) +(petri (? c2446 p2446 (! c2447 p2447))) +(petri (? c2447 p2447 (! c2448 p2448))) +(petri (? c2448 p2448 (! c2449 p2449))) +(petri (? c2449 p2449 (! c2450 p2450))) +(petri (? c2450 p2450 (! c2451 p2451))) +(petri (? c2451 p2451 (! c2452 p2452))) +(petri (? c2452 p2452 (! c2453 p2453))) +(petri (? c2453 p2453 (! c2454 p2454))) +(petri (? c2454 p2454 (! c2455 p2455))) +(petri (? c2455 p2455 (! c2456 p2456))) +(petri (? c2456 p2456 (! c2457 p2457))) +(petri (? c2457 p2457 (! c2458 p2458))) +(petri (? c2458 p2458 (! c2459 p2459))) +(petri (? c2459 p2459 (! c2460 p2460))) +(petri (? c2460 p2460 (! c2461 p2461))) +(petri (? c2461 p2461 (! c2462 p2462))) +(petri (? c2462 p2462 (! c2463 p2463))) +(petri (? c2463 p2463 (! c2464 p2464))) +(petri (? c2464 p2464 (! c2465 p2465))) +(petri (? c2465 p2465 (! c2466 p2466))) +(petri (? c2466 p2466 (! c2467 p2467))) +(petri (? c2467 p2467 (! c2468 p2468))) +(petri (? c2468 p2468 (! c2469 p2469))) +(petri (? c2469 p2469 (! c2470 p2470))) +(petri (? c2470 p2470 (! c2471 p2471))) +(petri (? c2471 p2471 (! c2472 p2472))) +(petri (? c2472 p2472 (! c2473 p2473))) +(petri (? c2473 p2473 (! c2474 p2474))) +(petri (? c2474 p2474 (! c2475 p2475))) +(petri (? c2475 p2475 (! c2476 p2476))) +(petri (? c2476 p2476 (! c2477 p2477))) +(petri (? c2477 p2477 (! c2478 p2478))) +(petri (? c2478 p2478 (! c2479 p2479))) +(petri (? c2479 p2479 (! c2480 p2480))) +(petri (? c2480 p2480 (! c2481 p2481))) +(petri (? c2481 p2481 (! c2482 p2482))) +(petri (? c2482 p2482 (! c2483 p2483))) +(petri (? c2483 p2483 (! c2484 p2484))) +(petri (? c2484 p2484 (! c2485 p2485))) +(petri (? c2485 p2485 (! c2486 p2486))) +(petri (? c2486 p2486 (! c2487 p2487))) +(petri (? c2487 p2487 (! c2488 p2488))) +(petri (? c2488 p2488 (! c2489 p2489))) +(petri (? c2489 p2489 (! c2490 p2490))) +(petri (? c2490 p2490 (! c2491 p2491))) +(petri (? c2491 p2491 (! c2492 p2492))) +(petri (? c2492 p2492 (! c2493 p2493))) +(petri (? c2493 p2493 (! c2494 p2494))) +(petri (? c2494 p2494 (! c2495 p2495))) +(petri (? c2495 p2495 (! c2496 p2496))) +(petri (? c2496 p2496 (! c2497 p2497))) +(petri (? c2497 p2497 (! c2498 p2498))) +(petri (? c2498 p2498 (! c2499 p2499))) +(petri (? c2499 p2499 (! c2500 p2500))) +(petri (? c2500 p2500 (! c2501 p2501))) +(petri (? c2501 p2501 (! c2502 p2502))) +(petri (? c2502 p2502 (! c2503 p2503))) +(petri (? c2503 p2503 (! c2504 p2504))) +(petri (? c2504 p2504 (! c2505 p2505))) +(petri (? c2505 p2505 (! c2506 p2506))) +(petri (? c2506 p2506 (! c2507 p2507))) +(petri (? c2507 p2507 (! c2508 p2508))) +(petri (? c2508 p2508 (! c2509 p2509))) +(petri (? c2509 p2509 (! c2510 p2510))) +(petri (? c2510 p2510 (! c2511 p2511))) +(petri (? c2511 p2511 (! c2512 p2512))) +(petri (? c2512 p2512 (! c2513 p2513))) +(petri (? c2513 p2513 (! c2514 p2514))) +(petri (? c2514 p2514 (! c2515 p2515))) +(petri (? c2515 p2515 (! c2516 p2516))) +(petri (? c2516 p2516 (! c2517 p2517))) +(petri (? c2517 p2517 (! c2518 p2518))) +(petri (? c2518 p2518 (! c2519 p2519))) +(petri (? c2519 p2519 (! c2520 p2520))) +(petri (? c2520 p2520 (! c2521 p2521))) +(petri (? c2521 p2521 (! c2522 p2522))) +(petri (? c2522 p2522 (! c2523 p2523))) +(petri (? c2523 p2523 (! c2524 p2524))) +(petri (? c2524 p2524 (! c2525 p2525))) +(petri (? c2525 p2525 (! c2526 p2526))) +(petri (? c2526 p2526 (! c2527 p2527))) +(petri (? c2527 p2527 (! c2528 p2528))) +(petri (? c2528 p2528 (! c2529 p2529))) +(petri (? c2529 p2529 (! c2530 p2530))) +(petri (? c2530 p2530 (! c2531 p2531))) +(petri (? c2531 p2531 (! c2532 p2532))) +(petri (? c2532 p2532 (! c2533 p2533))) +(petri (? c2533 p2533 (! c2534 p2534))) +(petri (? c2534 p2534 (! c2535 p2535))) +(petri (? c2535 p2535 (! c2536 p2536))) +(petri (? c2536 p2536 (! c2537 p2537))) +(petri (? c2537 p2537 (! c2538 p2538))) +(petri (? c2538 p2538 (! c2539 p2539))) +(petri (? c2539 p2539 (! c2540 p2540))) +(petri (? c2540 p2540 (! c2541 p2541))) +(petri (? c2541 p2541 (! c2542 p2542))) +(petri (? c2542 p2542 (! c2543 p2543))) +(petri (? c2543 p2543 (! c2544 p2544))) +(petri (? c2544 p2544 (! c2545 p2545))) +(petri (? c2545 p2545 (! c2546 p2546))) +(petri (? c2546 p2546 (! c2547 p2547))) +(petri (? c2547 p2547 (! c2548 p2548))) +(petri (? c2548 p2548 (! c2549 p2549))) +(petri (? c2549 p2549 (! c2550 p2550))) +(petri (? c2550 p2550 (! c2551 p2551))) +(petri (? c2551 p2551 (! c2552 p2552))) +(petri (? c2552 p2552 (! c2553 p2553))) +(petri (? c2553 p2553 (! c2554 p2554))) +(petri (? c2554 p2554 (! c2555 p2555))) +(petri (? c2555 p2555 (! c2556 p2556))) +(petri (? c2556 p2556 (! c2557 p2557))) +(petri (? c2557 p2557 (! c2558 p2558))) +(petri (? c2558 p2558 (! c2559 p2559))) +(petri (? c2559 p2559 (! c2560 p2560))) +(petri (? c2560 p2560 (! c2561 p2561))) +(petri (? c2561 p2561 (! c2562 p2562))) +(petri (? c2562 p2562 (! c2563 p2563))) +(petri (? c2563 p2563 (! c2564 p2564))) +(petri (? c2564 p2564 (! c2565 p2565))) +(petri (? c2565 p2565 (! c2566 p2566))) +(petri (? c2566 p2566 (! c2567 p2567))) +(petri (? c2567 p2567 (! c2568 p2568))) +(petri (? c2568 p2568 (! c2569 p2569))) +(petri (? c2569 p2569 (! c2570 p2570))) +(petri (? c2570 p2570 (! c2571 p2571))) +(petri (? c2571 p2571 (! c2572 p2572))) +(petri (? c2572 p2572 (! c2573 p2573))) +(petri (? c2573 p2573 (! c2574 p2574))) +(petri (? c2574 p2574 (! c2575 p2575))) +(petri (? c2575 p2575 (! c2576 p2576))) +(petri (? c2576 p2576 (! c2577 p2577))) +(petri (? c2577 p2577 (! c2578 p2578))) +(petri (? c2578 p2578 (! c2579 p2579))) +(petri (? c2579 p2579 (! c2580 p2580))) +(petri (? c2580 p2580 (! c2581 p2581))) +(petri (? c2581 p2581 (! c2582 p2582))) +(petri (? c2582 p2582 (! c2583 p2583))) +(petri (? c2583 p2583 (! c2584 p2584))) +(petri (? c2584 p2584 (! c2585 p2585))) +(petri (? c2585 p2585 (! c2586 p2586))) +(petri (? c2586 p2586 (! c2587 p2587))) +(petri (? c2587 p2587 (! c2588 p2588))) +(petri (? c2588 p2588 (! c2589 p2589))) +(petri (? c2589 p2589 (! c2590 p2590))) +(petri (? c2590 p2590 (! c2591 p2591))) +(petri (? c2591 p2591 (! c2592 p2592))) +(petri (? c2592 p2592 (! c2593 p2593))) +(petri (? c2593 p2593 (! c2594 p2594))) +(petri (? c2594 p2594 (! c2595 p2595))) +(petri (? c2595 p2595 (! c2596 p2596))) +(petri (? c2596 p2596 (! c2597 p2597))) +(petri (? c2597 p2597 (! c2598 p2598))) +(petri (? c2598 p2598 (! c2599 p2599))) +(petri (? c2599 p2599 (! c2600 p2600))) +(petri (? c2600 p2600 (! c2601 p2601))) +(petri (? c2601 p2601 (! c2602 p2602))) +(petri (? c2602 p2602 (! c2603 p2603))) +(petri (? c2603 p2603 (! c2604 p2604))) +(petri (? c2604 p2604 (! c2605 p2605))) +(petri (? c2605 p2605 (! c2606 p2606))) +(petri (? c2606 p2606 (! c2607 p2607))) +(petri (? c2607 p2607 (! c2608 p2608))) +(petri (? c2608 p2608 (! c2609 p2609))) +(petri (? c2609 p2609 (! c2610 p2610))) +(petri (? c2610 p2610 (! c2611 p2611))) +(petri (? c2611 p2611 (! c2612 p2612))) +(petri (? c2612 p2612 (! c2613 p2613))) +(petri (? c2613 p2613 (! c2614 p2614))) +(petri (? c2614 p2614 (! c2615 p2615))) +(petri (? c2615 p2615 (! c2616 p2616))) +(petri (? c2616 p2616 (! c2617 p2617))) +(petri (? c2617 p2617 (! c2618 p2618))) +(petri (? c2618 p2618 (! c2619 p2619))) +(petri (? c2619 p2619 (! c2620 p2620))) +(petri (? c2620 p2620 (! c2621 p2621))) +(petri (? c2621 p2621 (! c2622 p2622))) +(petri (? c2622 p2622 (! c2623 p2623))) +(petri (? c2623 p2623 (! c2624 p2624))) +(petri (? c2624 p2624 (! c2625 p2625))) +(petri (? c2625 p2625 (! c2626 p2626))) +(petri (? c2626 p2626 (! c2627 p2627))) +(petri (? c2627 p2627 (! c2628 p2628))) +(petri (? c2628 p2628 (! c2629 p2629))) +(petri (? c2629 p2629 (! c2630 p2630))) +(petri (? c2630 p2630 (! c2631 p2631))) +(petri (? c2631 p2631 (! c2632 p2632))) +(petri (? c2632 p2632 (! c2633 p2633))) +(petri (? c2633 p2633 (! c2634 p2634))) +(petri (? c2634 p2634 (! c2635 p2635))) +(petri (? c2635 p2635 (! c2636 p2636))) +(petri (? c2636 p2636 (! c2637 p2637))) +(petri (? c2637 p2637 (! c2638 p2638))) +(petri (? c2638 p2638 (! c2639 p2639))) +(petri (? c2639 p2639 (! c2640 p2640))) +(petri (? c2640 p2640 (! c2641 p2641))) +(petri (? c2641 p2641 (! c2642 p2642))) +(petri (? c2642 p2642 (! c2643 p2643))) +(petri (? c2643 p2643 (! c2644 p2644))) +(petri (? c2644 p2644 (! c2645 p2645))) +(petri (? c2645 p2645 (! c2646 p2646))) +(petri (? c2646 p2646 (! c2647 p2647))) +(petri (? c2647 p2647 (! c2648 p2648))) +(petri (? c2648 p2648 (! c2649 p2649))) +(petri (? c2649 p2649 (! c2650 p2650))) +(petri (? c2650 p2650 (! c2651 p2651))) +(petri (? c2651 p2651 (! c2652 p2652))) +(petri (? c2652 p2652 (! c2653 p2653))) +(petri (? c2653 p2653 (! c2654 p2654))) +(petri (? c2654 p2654 (! c2655 p2655))) +(petri (? c2655 p2655 (! c2656 p2656))) +(petri (? c2656 p2656 (! c2657 p2657))) +(petri (? c2657 p2657 (! c2658 p2658))) +(petri (? c2658 p2658 (! c2659 p2659))) +(petri (? c2659 p2659 (! c2660 p2660))) +(petri (? c2660 p2660 (! c2661 p2661))) +(petri (? c2661 p2661 (! c2662 p2662))) +(petri (? c2662 p2662 (! c2663 p2663))) +(petri (? c2663 p2663 (! c2664 p2664))) +(petri (? c2664 p2664 (! c2665 p2665))) +(petri (? c2665 p2665 (! c2666 p2666))) +(petri (? c2666 p2666 (! c2667 p2667))) +(petri (? c2667 p2667 (! c2668 p2668))) +(petri (? c2668 p2668 (! c2669 p2669))) +(petri (? c2669 p2669 (! c2670 p2670))) +(petri (? c2670 p2670 (! c2671 p2671))) +(petri (? c2671 p2671 (! c2672 p2672))) +(petri (? c2672 p2672 (! c2673 p2673))) +(petri (? c2673 p2673 (! c2674 p2674))) +(petri (? c2674 p2674 (! c2675 p2675))) +(petri (? c2675 p2675 (! c2676 p2676))) +(petri (? c2676 p2676 (! c2677 p2677))) +(petri (? c2677 p2677 (! c2678 p2678))) +(petri (? c2678 p2678 (! c2679 p2679))) +(petri (? c2679 p2679 (! c2680 p2680))) +(petri (? c2680 p2680 (! c2681 p2681))) +(petri (? c2681 p2681 (! c2682 p2682))) +(petri (? c2682 p2682 (! c2683 p2683))) +(petri (? c2683 p2683 (! c2684 p2684))) +(petri (? c2684 p2684 (! c2685 p2685))) +(petri (? c2685 p2685 (! c2686 p2686))) +(petri (? c2686 p2686 (! c2687 p2687))) +(petri (? c2687 p2687 (! c2688 p2688))) +(petri (? c2688 p2688 (! c2689 p2689))) +(petri (? c2689 p2689 (! c2690 p2690))) +(petri (? c2690 p2690 (! c2691 p2691))) +(petri (? c2691 p2691 (! c2692 p2692))) +(petri (? c2692 p2692 (! c2693 p2693))) +(petri (? c2693 p2693 (! c2694 p2694))) +(petri (? c2694 p2694 (! c2695 p2695))) +(petri (? c2695 p2695 (! c2696 p2696))) +(petri (? c2696 p2696 (! c2697 p2697))) +(petri (? c2697 p2697 (! c2698 p2698))) +(petri (? c2698 p2698 (! c2699 p2699))) +(petri (? c2699 p2699 (! c2700 p2700))) +(petri (? c2700 p2700 (! c2701 p2701))) +(petri (? c2701 p2701 (! c2702 p2702))) +(petri (? c2702 p2702 (! c2703 p2703))) +(petri (? c2703 p2703 (! c2704 p2704))) +(petri (? c2704 p2704 (! c2705 p2705))) +(petri (? c2705 p2705 (! c2706 p2706))) +(petri (? c2706 p2706 (! c2707 p2707))) +(petri (? c2707 p2707 (! c2708 p2708))) +(petri (? c2708 p2708 (! c2709 p2709))) +(petri (? c2709 p2709 (! c2710 p2710))) +(petri (? c2710 p2710 (! c2711 p2711))) +(petri (? c2711 p2711 (! c2712 p2712))) +(petri (? c2712 p2712 (! c2713 p2713))) +(petri (? c2713 p2713 (! c2714 p2714))) +(petri (? c2714 p2714 (! c2715 p2715))) +(petri (? c2715 p2715 (! c2716 p2716))) +(petri (? c2716 p2716 (! c2717 p2717))) +(petri (? c2717 p2717 (! c2718 p2718))) +(petri (? c2718 p2718 (! c2719 p2719))) +(petri (? c2719 p2719 (! c2720 p2720))) +(petri (? c2720 p2720 (! c2721 p2721))) +(petri (? c2721 p2721 (! c2722 p2722))) +(petri (? c2722 p2722 (! c2723 p2723))) +(petri (? c2723 p2723 (! c2724 p2724))) +(petri (? c2724 p2724 (! c2725 p2725))) +(petri (? c2725 p2725 (! c2726 p2726))) +(petri (? c2726 p2726 (! c2727 p2727))) +(petri (? c2727 p2727 (! c2728 p2728))) +(petri (? c2728 p2728 (! c2729 p2729))) +(petri (? c2729 p2729 (! c2730 p2730))) +(petri (? c2730 p2730 (! c2731 p2731))) +(petri (? c2731 p2731 (! c2732 p2732))) +(petri (? c2732 p2732 (! c2733 p2733))) +(petri (? c2733 p2733 (! c2734 p2734))) +(petri (? c2734 p2734 (! c2735 p2735))) +(petri (? c2735 p2735 (! c2736 p2736))) +(petri (? c2736 p2736 (! c2737 p2737))) +(petri (? c2737 p2737 (! c2738 p2738))) +(petri (? c2738 p2738 (! c2739 p2739))) +(petri (? c2739 p2739 (! c2740 p2740))) +(petri (? c2740 p2740 (! c2741 p2741))) +(petri (? c2741 p2741 (! c2742 p2742))) +(petri (? c2742 p2742 (! c2743 p2743))) +(petri (? c2743 p2743 (! c2744 p2744))) +(petri (? c2744 p2744 (! c2745 p2745))) +(petri (? c2745 p2745 (! c2746 p2746))) +(petri (? c2746 p2746 (! c2747 p2747))) +(petri (? c2747 p2747 (! c2748 p2748))) +(petri (? c2748 p2748 (! c2749 p2749))) +(petri (? c2749 p2749 (! c2750 p2750))) +(petri (? c2750 p2750 (! c2751 p2751))) +(petri (? c2751 p2751 (! c2752 p2752))) +(petri (? c2752 p2752 (! c2753 p2753))) +(petri (? c2753 p2753 (! c2754 p2754))) +(petri (? c2754 p2754 (! c2755 p2755))) +(petri (? c2755 p2755 (! c2756 p2756))) +(petri (? c2756 p2756 (! c2757 p2757))) +(petri (? c2757 p2757 (! c2758 p2758))) +(petri (? c2758 p2758 (! c2759 p2759))) +(petri (? c2759 p2759 (! c2760 p2760))) +(petri (? c2760 p2760 (! c2761 p2761))) +(petri (? c2761 p2761 (! c2762 p2762))) +(petri (? c2762 p2762 (! c2763 p2763))) +(petri (? c2763 p2763 (! c2764 p2764))) +(petri (? c2764 p2764 (! c2765 p2765))) +(petri (? c2765 p2765 (! c2766 p2766))) +(petri (? c2766 p2766 (! c2767 p2767))) +(petri (? c2767 p2767 (! c2768 p2768))) +(petri (? c2768 p2768 (! c2769 p2769))) +(petri (? c2769 p2769 (! c2770 p2770))) +(petri (? c2770 p2770 (! c2771 p2771))) +(petri (? c2771 p2771 (! c2772 p2772))) +(petri (? c2772 p2772 (! c2773 p2773))) +(petri (? c2773 p2773 (! c2774 p2774))) +(petri (? c2774 p2774 (! c2775 p2775))) +(petri (? c2775 p2775 (! c2776 p2776))) +(petri (? c2776 p2776 (! c2777 p2777))) +(petri (? c2777 p2777 (! c2778 p2778))) +(petri (? c2778 p2778 (! c2779 p2779))) +(petri (? c2779 p2779 (! c2780 p2780))) +(petri (? c2780 p2780 (! c2781 p2781))) +(petri (? c2781 p2781 (! c2782 p2782))) +(petri (? c2782 p2782 (! c2783 p2783))) +(petri (? c2783 p2783 (! c2784 p2784))) +(petri (? c2784 p2784 (! c2785 p2785))) +(petri (? c2785 p2785 (! c2786 p2786))) +(petri (? c2786 p2786 (! c2787 p2787))) +(petri (? c2787 p2787 (! c2788 p2788))) +(petri (? c2788 p2788 (! c2789 p2789))) +(petri (? c2789 p2789 (! c2790 p2790))) +(petri (? c2790 p2790 (! c2791 p2791))) +(petri (? c2791 p2791 (! c2792 p2792))) +(petri (? c2792 p2792 (! c2793 p2793))) +(petri (? c2793 p2793 (! c2794 p2794))) +(petri (? c2794 p2794 (! c2795 p2795))) +(petri (? c2795 p2795 (! c2796 p2796))) +(petri (? c2796 p2796 (! c2797 p2797))) +(petri (? c2797 p2797 (! c2798 p2798))) +(petri (? c2798 p2798 (! c2799 p2799))) +(petri (? c2799 p2799 (! c2800 p2800))) +(petri (? c2800 p2800 (! c2801 p2801))) +(petri (? c2801 p2801 (! c2802 p2802))) +(petri (? c2802 p2802 (! c2803 p2803))) +(petri (? c2803 p2803 (! c2804 p2804))) +(petri (? c2804 p2804 (! c2805 p2805))) +(petri (? c2805 p2805 (! c2806 p2806))) +(petri (? c2806 p2806 (! c2807 p2807))) +(petri (? c2807 p2807 (! c2808 p2808))) +(petri (? c2808 p2808 (! c2809 p2809))) +(petri (? c2809 p2809 (! c2810 p2810))) +(petri (? c2810 p2810 (! c2811 p2811))) +(petri (? c2811 p2811 (! c2812 p2812))) +(petri (? c2812 p2812 (! c2813 p2813))) +(petri (? c2813 p2813 (! c2814 p2814))) +(petri (? c2814 p2814 (! c2815 p2815))) +(petri (? c2815 p2815 (! c2816 p2816))) +(petri (? c2816 p2816 (! c2817 p2817))) +(petri (? c2817 p2817 (! c2818 p2818))) +(petri (? c2818 p2818 (! c2819 p2819))) +(petri (? c2819 p2819 (! c2820 p2820))) +(petri (? c2820 p2820 (! c2821 p2821))) +(petri (? c2821 p2821 (! c2822 p2822))) +(petri (? c2822 p2822 (! c2823 p2823))) +(petri (? c2823 p2823 (! c2824 p2824))) +(petri (? c2824 p2824 (! c2825 p2825))) +(petri (? c2825 p2825 (! c2826 p2826))) +(petri (? c2826 p2826 (! c2827 p2827))) +(petri (? c2827 p2827 (! c2828 p2828))) +(petri (? c2828 p2828 (! c2829 p2829))) +(petri (? c2829 p2829 (! c2830 p2830))) +(petri (? c2830 p2830 (! c2831 p2831))) +(petri (? c2831 p2831 (! c2832 p2832))) +(petri (? c2832 p2832 (! c2833 p2833))) +(petri (? c2833 p2833 (! c2834 p2834))) +(petri (? c2834 p2834 (! c2835 p2835))) +(petri (? c2835 p2835 (! c2836 p2836))) +(petri (? c2836 p2836 (! c2837 p2837))) +(petri (? c2837 p2837 (! c2838 p2838))) +(petri (? c2838 p2838 (! c2839 p2839))) +(petri (? c2839 p2839 (! c2840 p2840))) +(petri (? c2840 p2840 (! c2841 p2841))) +(petri (? c2841 p2841 (! c2842 p2842))) +(petri (? c2842 p2842 (! c2843 p2843))) +(petri (? c2843 p2843 (! c2844 p2844))) +(petri (? c2844 p2844 (! c2845 p2845))) +(petri (? c2845 p2845 (! c2846 p2846))) +(petri (? c2846 p2846 (! c2847 p2847))) +(petri (? c2847 p2847 (! c2848 p2848))) +(petri (? c2848 p2848 (! c2849 p2849))) +(petri (? c2849 p2849 (! c2850 p2850))) +(petri (? c2850 p2850 (! c2851 p2851))) +(petri (? c2851 p2851 (! c2852 p2852))) +(petri (? c2852 p2852 (! c2853 p2853))) +(petri (? c2853 p2853 (! c2854 p2854))) +(petri (? c2854 p2854 (! c2855 p2855))) +(petri (? c2855 p2855 (! c2856 p2856))) +(petri (? c2856 p2856 (! c2857 p2857))) +(petri (? c2857 p2857 (! c2858 p2858))) +(petri (? c2858 p2858 (! c2859 p2859))) +(petri (? c2859 p2859 (! c2860 p2860))) +(petri (? c2860 p2860 (! c2861 p2861))) +(petri (? c2861 p2861 (! c2862 p2862))) +(petri (? c2862 p2862 (! c2863 p2863))) +(petri (? c2863 p2863 (! c2864 p2864))) +(petri (? c2864 p2864 (! c2865 p2865))) +(petri (? c2865 p2865 (! c2866 p2866))) +(petri (? c2866 p2866 (! c2867 p2867))) +(petri (? c2867 p2867 (! c2868 p2868))) +(petri (? c2868 p2868 (! c2869 p2869))) +(petri (? c2869 p2869 (! c2870 p2870))) +(petri (? c2870 p2870 (! c2871 p2871))) +(petri (? c2871 p2871 (! c2872 p2872))) +(petri (? c2872 p2872 (! c2873 p2873))) +(petri (? c2873 p2873 (! c2874 p2874))) +(petri (? c2874 p2874 (! c2875 p2875))) +(petri (? c2875 p2875 (! c2876 p2876))) +(petri (? c2876 p2876 (! c2877 p2877))) +(petri (? c2877 p2877 (! c2878 p2878))) +(petri (? c2878 p2878 (! c2879 p2879))) +(petri (? c2879 p2879 (! c2880 p2880))) +(petri (? c2880 p2880 (! c2881 p2881))) +(petri (? c2881 p2881 (! c2882 p2882))) +(petri (? c2882 p2882 (! c2883 p2883))) +(petri (? c2883 p2883 (! c2884 p2884))) +(petri (? c2884 p2884 (! c2885 p2885))) +(petri (? c2885 p2885 (! c2886 p2886))) +(petri (? c2886 p2886 (! c2887 p2887))) +(petri (? c2887 p2887 (! c2888 p2888))) +(petri (? c2888 p2888 (! c2889 p2889))) +(petri (? c2889 p2889 (! c2890 p2890))) +(petri (? c2890 p2890 (! c2891 p2891))) +(petri (? c2891 p2891 (! c2892 p2892))) +(petri (? c2892 p2892 (! c2893 p2893))) +(petri (? c2893 p2893 (! c2894 p2894))) +(petri (? c2894 p2894 (! c2895 p2895))) +(petri (? c2895 p2895 (! c2896 p2896))) +(petri (? c2896 p2896 (! c2897 p2897))) +(petri (? c2897 p2897 (! c2898 p2898))) +(petri (? c2898 p2898 (! c2899 p2899))) +(petri (? c2899 p2899 (! c2900 p2900))) +(petri (? c2900 p2900 (! c2901 p2901))) +(petri (? c2901 p2901 (! c2902 p2902))) +(petri (? c2902 p2902 (! c2903 p2903))) +(petri (? c2903 p2903 (! c2904 p2904))) +(petri (? c2904 p2904 (! c2905 p2905))) +(petri (? c2905 p2905 (! c2906 p2906))) +(petri (? c2906 p2906 (! c2907 p2907))) +(petri (? c2907 p2907 (! c2908 p2908))) +(petri (? c2908 p2908 (! c2909 p2909))) +(petri (? c2909 p2909 (! c2910 p2910))) +(petri (? c2910 p2910 (! c2911 p2911))) +(petri (? c2911 p2911 (! c2912 p2912))) +(petri (? c2912 p2912 (! c2913 p2913))) +(petri (? c2913 p2913 (! c2914 p2914))) +(petri (? c2914 p2914 (! c2915 p2915))) +(petri (? c2915 p2915 (! c2916 p2916))) +(petri (? c2916 p2916 (! c2917 p2917))) +(petri (? c2917 p2917 (! c2918 p2918))) +(petri (? c2918 p2918 (! c2919 p2919))) +(petri (? c2919 p2919 (! c2920 p2920))) +(petri (? c2920 p2920 (! c2921 p2921))) +(petri (? c2921 p2921 (! c2922 p2922))) +(petri (? c2922 p2922 (! c2923 p2923))) +(petri (? c2923 p2923 (! c2924 p2924))) +(petri (? c2924 p2924 (! c2925 p2925))) +(petri (? c2925 p2925 (! c2926 p2926))) +(petri (? c2926 p2926 (! c2927 p2927))) +(petri (? c2927 p2927 (! c2928 p2928))) +(petri (? c2928 p2928 (! c2929 p2929))) +(petri (? c2929 p2929 (! c2930 p2930))) +(petri (? c2930 p2930 (! c2931 p2931))) +(petri (? c2931 p2931 (! c2932 p2932))) +(petri (? c2932 p2932 (! c2933 p2933))) +(petri (? c2933 p2933 (! c2934 p2934))) +(petri (? c2934 p2934 (! c2935 p2935))) +(petri (? c2935 p2935 (! c2936 p2936))) +(petri (? c2936 p2936 (! c2937 p2937))) +(petri (? c2937 p2937 (! c2938 p2938))) +(petri (? c2938 p2938 (! c2939 p2939))) +(petri (? c2939 p2939 (! c2940 p2940))) +(petri (? c2940 p2940 (! c2941 p2941))) +(petri (? c2941 p2941 (! c2942 p2942))) +(petri (? c2942 p2942 (! c2943 p2943))) +(petri (? c2943 p2943 (! c2944 p2944))) +(petri (? c2944 p2944 (! c2945 p2945))) +(petri (? c2945 p2945 (! c2946 p2946))) +(petri (? c2946 p2946 (! c2947 p2947))) +(petri (? c2947 p2947 (! c2948 p2948))) +(petri (? c2948 p2948 (! c2949 p2949))) +(petri (? c2949 p2949 (! c2950 p2950))) +(petri (? c2950 p2950 (! c2951 p2951))) +(petri (? c2951 p2951 (! c2952 p2952))) +(petri (? c2952 p2952 (! c2953 p2953))) +(petri (? c2953 p2953 (! c2954 p2954))) +(petri (? c2954 p2954 (! c2955 p2955))) +(petri (? c2955 p2955 (! c2956 p2956))) +(petri (? c2956 p2956 (! c2957 p2957))) +(petri (? c2957 p2957 (! c2958 p2958))) +(petri (? c2958 p2958 (! c2959 p2959))) +(petri (? c2959 p2959 (! c2960 p2960))) +(petri (? c2960 p2960 (! c2961 p2961))) +(petri (? c2961 p2961 (! c2962 p2962))) +(petri (? c2962 p2962 (! c2963 p2963))) +(petri (? c2963 p2963 (! c2964 p2964))) +(petri (? c2964 p2964 (! c2965 p2965))) +(petri (? c2965 p2965 (! c2966 p2966))) +(petri (? c2966 p2966 (! c2967 p2967))) +(petri (? c2967 p2967 (! c2968 p2968))) +(petri (? c2968 p2968 (! c2969 p2969))) +(petri (? c2969 p2969 (! c2970 p2970))) +(petri (? c2970 p2970 (! c2971 p2971))) +(petri (? c2971 p2971 (! c2972 p2972))) +(petri (? c2972 p2972 (! c2973 p2973))) +(petri (? c2973 p2973 (! c2974 p2974))) +(petri (? c2974 p2974 (! c2975 p2975))) +(petri (? c2975 p2975 (! c2976 p2976))) +(petri (? c2976 p2976 (! c2977 p2977))) +(petri (? c2977 p2977 (! c2978 p2978))) +(petri (? c2978 p2978 (! c2979 p2979))) +(petri (? c2979 p2979 (! c2980 p2980))) +(petri (? c2980 p2980 (! c2981 p2981))) +(petri (? c2981 p2981 (! c2982 p2982))) +(petri (? c2982 p2982 (! c2983 p2983))) +(petri (? c2983 p2983 (! c2984 p2984))) +(petri (? c2984 p2984 (! c2985 p2985))) +(petri (? c2985 p2985 (! c2986 p2986))) +(petri (? c2986 p2986 (! c2987 p2987))) +(petri (? c2987 p2987 (! c2988 p2988))) +(petri (? c2988 p2988 (! c2989 p2989))) +(petri (? c2989 p2989 (! c2990 p2990))) +(petri (? c2990 p2990 (! c2991 p2991))) +(petri (? c2991 p2991 (! c2992 p2992))) +(petri (? c2992 p2992 (! c2993 p2993))) +(petri (? c2993 p2993 (! c2994 p2994))) +(petri (? c2994 p2994 (! c2995 p2995))) +(petri (? c2995 p2995 (! c2996 p2996))) +(petri (? c2996 p2996 (! c2997 p2997))) +(petri (? c2997 p2997 (! c2998 p2998))) +(petri (? c2998 p2998 (! c2999 p2999))) +(petri (? c2999 p2999 (! c3000 p3000))) +(petri (? c3000 p3000 (! c3001 p3001))) +(petri (? c3001 p3001 (! c3002 p3002))) +(petri (? c3002 p3002 (! c3003 p3003))) +(petri (? c3003 p3003 (! c3004 p3004))) +(petri (? c3004 p3004 (! c3005 p3005))) +(petri (? c3005 p3005 (! c3006 p3006))) +(petri (? c3006 p3006 (! c3007 p3007))) +(petri (? c3007 p3007 (! c3008 p3008))) +(petri (? c3008 p3008 (! c3009 p3009))) +(petri (? c3009 p3009 (! c3010 p3010))) +(petri (? c3010 p3010 (! c3011 p3011))) +(petri (? c3011 p3011 (! c3012 p3012))) +(petri (? c3012 p3012 (! c3013 p3013))) +(petri (? c3013 p3013 (! c3014 p3014))) +(petri (? c3014 p3014 (! c3015 p3015))) +(petri (? c3015 p3015 (! c3016 p3016))) +(petri (? c3016 p3016 (! c3017 p3017))) +(petri (? c3017 p3017 (! c3018 p3018))) +(petri (? c3018 p3018 (! c3019 p3019))) +(petri (? c3019 p3019 (! c3020 p3020))) +(petri (? c3020 p3020 (! c3021 p3021))) +(petri (? c3021 p3021 (! c3022 p3022))) +(petri (? c3022 p3022 (! c3023 p3023))) +(petri (? c3023 p3023 (! c3024 p3024))) +(petri (? c3024 p3024 (! c3025 p3025))) +(petri (? c3025 p3025 (! c3026 p3026))) +(petri (? c3026 p3026 (! c3027 p3027))) +(petri (? c3027 p3027 (! c3028 p3028))) +(petri (? c3028 p3028 (! c3029 p3029))) +(petri (? c3029 p3029 (! c3030 p3030))) +(petri (? c3030 p3030 (! c3031 p3031))) +(petri (? c3031 p3031 (! c3032 p3032))) +(petri (? c3032 p3032 (! c3033 p3033))) +(petri (? c3033 p3033 (! c3034 p3034))) +(petri (? c3034 p3034 (! c3035 p3035))) +(petri (? c3035 p3035 (! c3036 p3036))) +(petri (? c3036 p3036 (! c3037 p3037))) +(petri (? c3037 p3037 (! c3038 p3038))) +(petri (? c3038 p3038 (! c3039 p3039))) +(petri (? c3039 p3039 (! c3040 p3040))) +(petri (? c3040 p3040 (! c3041 p3041))) +(petri (? c3041 p3041 (! c3042 p3042))) +(petri (? c3042 p3042 (! c3043 p3043))) +(petri (? c3043 p3043 (! c3044 p3044))) +(petri (? c3044 p3044 (! c3045 p3045))) +(petri (? c3045 p3045 (! c3046 p3046))) +(petri (? c3046 p3046 (! c3047 p3047))) +(petri (? c3047 p3047 (! c3048 p3048))) +(petri (? c3048 p3048 (! c3049 p3049))) +(petri (? c3049 p3049 (! c3050 p3050))) +(petri (? c3050 p3050 (! c3051 p3051))) +(petri (? c3051 p3051 (! c3052 p3052))) +(petri (? c3052 p3052 (! c3053 p3053))) +(petri (? c3053 p3053 (! c3054 p3054))) +(petri (? c3054 p3054 (! c3055 p3055))) +(petri (? c3055 p3055 (! c3056 p3056))) +(petri (? c3056 p3056 (! c3057 p3057))) +(petri (? c3057 p3057 (! c3058 p3058))) +(petri (? c3058 p3058 (! c3059 p3059))) +(petri (? c3059 p3059 (! c3060 p3060))) +(petri (? c3060 p3060 (! c3061 p3061))) +(petri (? c3061 p3061 (! c3062 p3062))) +(petri (? c3062 p3062 (! c3063 p3063))) +(petri (? c3063 p3063 (! c3064 p3064))) +(petri (? c3064 p3064 (! c3065 p3065))) +(petri (? c3065 p3065 (! c3066 p3066))) +(petri (? c3066 p3066 (! c3067 p3067))) +(petri (? c3067 p3067 (! c3068 p3068))) +(petri (? c3068 p3068 (! c3069 p3069))) +(petri (? c3069 p3069 (! c3070 p3070))) +(petri (? c3070 p3070 (! c3071 p3071))) +(petri (? c3071 p3071 (! c3072 p3072))) +(petri (? c3072 p3072 (! c3073 p3073))) +(petri (? c3073 p3073 (! c3074 p3074))) +(petri (? c3074 p3074 (! c3075 p3075))) +(petri (? c3075 p3075 (! c3076 p3076))) +(petri (? c3076 p3076 (! c3077 p3077))) +(petri (? c3077 p3077 (! c3078 p3078))) +(petri (? c3078 p3078 (! c3079 p3079))) +(petri (? c3079 p3079 (! c3080 p3080))) +(petri (? c3080 p3080 (! c3081 p3081))) +(petri (? c3081 p3081 (! c3082 p3082))) +(petri (? c3082 p3082 (! c3083 p3083))) +(petri (? c3083 p3083 (! c3084 p3084))) +(petri (? c3084 p3084 (! c3085 p3085))) +(petri (? c3085 p3085 (! c3086 p3086))) +(petri (? c3086 p3086 (! c3087 p3087))) +(petri (? c3087 p3087 (! c3088 p3088))) +(petri (? c3088 p3088 (! c3089 p3089))) +(petri (? c3089 p3089 (! c3090 p3090))) +(petri (? c3090 p3090 (! c3091 p3091))) +(petri (? c3091 p3091 (! c3092 p3092))) +(petri (? c3092 p3092 (! c3093 p3093))) +(petri (? c3093 p3093 (! c3094 p3094))) +(petri (? c3094 p3094 (! c3095 p3095))) +(petri (? c3095 p3095 (! c3096 p3096))) +(petri (? c3096 p3096 (! c3097 p3097))) +(petri (? c3097 p3097 (! c3098 p3098))) +(petri (? c3098 p3098 (! c3099 p3099))) +(petri (? c3099 p3099 (! c3100 p3100))) +(petri (? c3100 p3100 (! c3101 p3101))) +(petri (? c3101 p3101 (! c3102 p3102))) +(petri (? c3102 p3102 (! c3103 p3103))) +(petri (? c3103 p3103 (! c3104 p3104))) +(petri (? c3104 p3104 (! c3105 p3105))) +(petri (? c3105 p3105 (! c3106 p3106))) +(petri (? c3106 p3106 (! c3107 p3107))) +(petri (? c3107 p3107 (! c3108 p3108))) +(petri (? c3108 p3108 (! c3109 p3109))) +(petri (? c3109 p3109 (! c3110 p3110))) +(petri (? c3110 p3110 (! c3111 p3111))) +(petri (? c3111 p3111 (! c3112 p3112))) +(petri (? c3112 p3112 (! c3113 p3113))) +(petri (? c3113 p3113 (! c3114 p3114))) +(petri (? c3114 p3114 (! c3115 p3115))) +(petri (? c3115 p3115 (! c3116 p3116))) +(petri (? c3116 p3116 (! c3117 p3117))) +(petri (? c3117 p3117 (! c3118 p3118))) +(petri (? c3118 p3118 (! c3119 p3119))) +(petri (? c3119 p3119 (! c3120 p3120))) +(petri (? c3120 p3120 (! c3121 p3121))) +(petri (? c3121 p3121 (! c3122 p3122))) +(petri (? c3122 p3122 (! c3123 p3123))) +(petri (? c3123 p3123 (! c3124 p3124))) +(petri (? c3124 p3124 (! c3125 p3125))) +(petri (? c3125 p3125 (! c3126 p3126))) +(petri (? c3126 p3126 (! c3127 p3127))) +(petri (? c3127 p3127 (! c3128 p3128))) +(petri (? c3128 p3128 (! c3129 p3129))) +(petri (? c3129 p3129 (! c3130 p3130))) +(petri (? c3130 p3130 (! c3131 p3131))) +(petri (? c3131 p3131 (! c3132 p3132))) +(petri (? c3132 p3132 (! c3133 p3133))) +(petri (? c3133 p3133 (! c3134 p3134))) +(petri (? c3134 p3134 (! c3135 p3135))) +(petri (? c3135 p3135 (! c3136 p3136))) +(petri (? c3136 p3136 (! c3137 p3137))) +(petri (? c3137 p3137 (! c3138 p3138))) +(petri (? c3138 p3138 (! c3139 p3139))) +(petri (? c3139 p3139 (! c3140 p3140))) +(petri (? c3140 p3140 (! c3141 p3141))) +(petri (? c3141 p3141 (! c3142 p3142))) +(petri (? c3142 p3142 (! c3143 p3143))) +(petri (? c3143 p3143 (! c3144 p3144))) +(petri (? c3144 p3144 (! c3145 p3145))) +(petri (? c3145 p3145 (! c3146 p3146))) +(petri (? c3146 p3146 (! c3147 p3147))) +(petri (? c3147 p3147 (! c3148 p3148))) +(petri (? c3148 p3148 (! c3149 p3149))) +(petri (? c3149 p3149 (! c3150 p3150))) +(petri (? c3150 p3150 (! c3151 p3151))) +(petri (? c3151 p3151 (! c3152 p3152))) +(petri (? c3152 p3152 (! c3153 p3153))) +(petri (? c3153 p3153 (! c3154 p3154))) +(petri (? c3154 p3154 (! c3155 p3155))) +(petri (? c3155 p3155 (! c3156 p3156))) +(petri (? c3156 p3156 (! c3157 p3157))) +(petri (? c3157 p3157 (! c3158 p3158))) +(petri (? c3158 p3158 (! c3159 p3159))) +(petri (? c3159 p3159 (! c3160 p3160))) +(petri (? c3160 p3160 (! c3161 p3161))) +(petri (? c3161 p3161 (! c3162 p3162))) +(petri (? c3162 p3162 (! c3163 p3163))) +(petri (? c3163 p3163 (! c3164 p3164))) +(petri (? c3164 p3164 (! c3165 p3165))) +(petri (? c3165 p3165 (! c3166 p3166))) +(petri (? c3166 p3166 (! c3167 p3167))) +(petri (? c3167 p3167 (! c3168 p3168))) +(petri (? c3168 p3168 (! c3169 p3169))) +(petri (? c3169 p3169 (! c3170 p3170))) +(petri (? c3170 p3170 (! c3171 p3171))) +(petri (? c3171 p3171 (! c3172 p3172))) +(petri (? c3172 p3172 (! c3173 p3173))) +(petri (? c3173 p3173 (! c3174 p3174))) +(petri (? c3174 p3174 (! c3175 p3175))) +(petri (? c3175 p3175 (! c3176 p3176))) +(petri (? c3176 p3176 (! c3177 p3177))) +(petri (? c3177 p3177 (! c3178 p3178))) +(petri (? c3178 p3178 (! c3179 p3179))) +(petri (? c3179 p3179 (! c3180 p3180))) +(petri (? c3180 p3180 (! c3181 p3181))) +(petri (? c3181 p3181 (! c3182 p3182))) +(petri (? c3182 p3182 (! c3183 p3183))) +(petri (? c3183 p3183 (! c3184 p3184))) +(petri (? c3184 p3184 (! c3185 p3185))) +(petri (? c3185 p3185 (! c3186 p3186))) +(petri (? c3186 p3186 (! c3187 p3187))) +(petri (? c3187 p3187 (! c3188 p3188))) +(petri (? c3188 p3188 (! c3189 p3189))) +(petri (? c3189 p3189 (! c3190 p3190))) +(petri (? c3190 p3190 (! c3191 p3191))) +(petri (? c3191 p3191 (! c3192 p3192))) +(petri (? c3192 p3192 (! c3193 p3193))) +(petri (? c3193 p3193 (! c3194 p3194))) +(petri (? c3194 p3194 (! c3195 p3195))) +(petri (? c3195 p3195 (! c3196 p3196))) +(petri (? c3196 p3196 (! c3197 p3197))) +(petri (? c3197 p3197 (! c3198 p3198))) +(petri (? c3198 p3198 (! c3199 p3199))) +(petri (? c3199 p3199 (! c3200 p3200))) +(petri (? c3200 p3200 (! c3201 p3201))) +(petri (? c3201 p3201 (! c3202 p3202))) +(petri (? c3202 p3202 (! c3203 p3203))) +(petri (? c3203 p3203 (! c3204 p3204))) +(petri (? c3204 p3204 (! c3205 p3205))) +(petri (? c3205 p3205 (! c3206 p3206))) +(petri (? c3206 p3206 (! c3207 p3207))) +(petri (? c3207 p3207 (! c3208 p3208))) +(petri (? c3208 p3208 (! c3209 p3209))) +(petri (? c3209 p3209 (! c3210 p3210))) +(petri (? c3210 p3210 (! c3211 p3211))) +(petri (? c3211 p3211 (! c3212 p3212))) +(petri (? c3212 p3212 (! c3213 p3213))) +(petri (? c3213 p3213 (! c3214 p3214))) +(petri (? c3214 p3214 (! c3215 p3215))) +(petri (? c3215 p3215 (! c3216 p3216))) +(petri (? c3216 p3216 (! c3217 p3217))) +(petri (? c3217 p3217 (! c3218 p3218))) +(petri (? c3218 p3218 (! c3219 p3219))) +(petri (? c3219 p3219 (! c3220 p3220))) +(petri (? c3220 p3220 (! c3221 p3221))) +(petri (? c3221 p3221 (! c3222 p3222))) +(petri (? c3222 p3222 (! c3223 p3223))) +(petri (? c3223 p3223 (! c3224 p3224))) +(petri (? c3224 p3224 (! c3225 p3225))) +(petri (? c3225 p3225 (! c3226 p3226))) +(petri (? c3226 p3226 (! c3227 p3227))) +(petri (? c3227 p3227 (! c3228 p3228))) +(petri (? c3228 p3228 (! c3229 p3229))) +(petri (? c3229 p3229 (! c3230 p3230))) +(petri (? c3230 p3230 (! c3231 p3231))) +(petri (? c3231 p3231 (! c3232 p3232))) +(petri (? c3232 p3232 (! c3233 p3233))) +(petri (? c3233 p3233 (! c3234 p3234))) +(petri (? c3234 p3234 (! c3235 p3235))) +(petri (? c3235 p3235 (! c3236 p3236))) +(petri (? c3236 p3236 (! c3237 p3237))) +(petri (? c3237 p3237 (! c3238 p3238))) +(petri (? c3238 p3238 (! c3239 p3239))) +(petri (? c3239 p3239 (! c3240 p3240))) +(petri (? c3240 p3240 (! c3241 p3241))) +(petri (? c3241 p3241 (! c3242 p3242))) +(petri (? c3242 p3242 (! c3243 p3243))) +(petri (? c3243 p3243 (! c3244 p3244))) +(petri (? c3244 p3244 (! c3245 p3245))) +(petri (? c3245 p3245 (! c3246 p3246))) +(petri (? c3246 p3246 (! c3247 p3247))) +(petri (? c3247 p3247 (! c3248 p3248))) +(petri (? c3248 p3248 (! c3249 p3249))) +(petri (? c3249 p3249 (! c3250 p3250))) +(petri (? c3250 p3250 (! c3251 p3251))) +(petri (? c3251 p3251 (! c3252 p3252))) +(petri (? c3252 p3252 (! c3253 p3253))) +(petri (? c3253 p3253 (! c3254 p3254))) +(petri (? c3254 p3254 (! c3255 p3255))) +(petri (? c3255 p3255 (! c3256 p3256))) +(petri (? c3256 p3256 (! c3257 p3257))) +(petri (? c3257 p3257 (! c3258 p3258))) +(petri (? c3258 p3258 (! c3259 p3259))) +(petri (? c3259 p3259 (! c3260 p3260))) +(petri (? c3260 p3260 (! c3261 p3261))) +(petri (? c3261 p3261 (! c3262 p3262))) +(petri (? c3262 p3262 (! c3263 p3263))) +(petri (? c3263 p3263 (! c3264 p3264))) +(petri (? c3264 p3264 (! c3265 p3265))) +(petri (? c3265 p3265 (! c3266 p3266))) +(petri (? c3266 p3266 (! c3267 p3267))) +(petri (? c3267 p3267 (! c3268 p3268))) +(petri (? c3268 p3268 (! c3269 p3269))) +(petri (? c3269 p3269 (! c3270 p3270))) +(petri (? c3270 p3270 (! c3271 p3271))) +(petri (? c3271 p3271 (! c3272 p3272))) +(petri (? c3272 p3272 (! c3273 p3273))) +(petri (? c3273 p3273 (! c3274 p3274))) +(petri (? c3274 p3274 (! c3275 p3275))) +(petri (? c3275 p3275 (! c3276 p3276))) +(petri (? c3276 p3276 (! c3277 p3277))) +(petri (? c3277 p3277 (! c3278 p3278))) +(petri (? c3278 p3278 (! c3279 p3279))) +(petri (? c3279 p3279 (! c3280 p3280))) +(petri (? c3280 p3280 (! c3281 p3281))) +(petri (? c3281 p3281 (! c3282 p3282))) +(petri (? c3282 p3282 (! c3283 p3283))) +(petri (? c3283 p3283 (! c3284 p3284))) +(petri (? c3284 p3284 (! c3285 p3285))) +(petri (? c3285 p3285 (! c3286 p3286))) +(petri (? c3286 p3286 (! c3287 p3287))) +(petri (? c3287 p3287 (! c3288 p3288))) +(petri (? c3288 p3288 (! c3289 p3289))) +(petri (? c3289 p3289 (! c3290 p3290))) +(petri (? c3290 p3290 (! c3291 p3291))) +(petri (? c3291 p3291 (! c3292 p3292))) +(petri (? c3292 p3292 (! c3293 p3293))) +(petri (? c3293 p3293 (! c3294 p3294))) +(petri (? c3294 p3294 (! c3295 p3295))) +(petri (? c3295 p3295 (! c3296 p3296))) +(petri (? c3296 p3296 (! c3297 p3297))) +(petri (? c3297 p3297 (! c3298 p3298))) +(petri (? c3298 p3298 (! c3299 p3299))) +(petri (? c3299 p3299 (! c3300 p3300))) +(petri (? c3300 p3300 (! c3301 p3301))) +(petri (? c3301 p3301 (! c3302 p3302))) +(petri (? c3302 p3302 (! c3303 p3303))) +(petri (? c3303 p3303 (! c3304 p3304))) +(petri (? c3304 p3304 (! c3305 p3305))) +(petri (? c3305 p3305 (! c3306 p3306))) +(petri (? c3306 p3306 (! c3307 p3307))) +(petri (? c3307 p3307 (! c3308 p3308))) +(petri (? c3308 p3308 (! c3309 p3309))) +(petri (? c3309 p3309 (! c3310 p3310))) +(petri (? c3310 p3310 (! c3311 p3311))) +(petri (? c3311 p3311 (! c3312 p3312))) +(petri (? c3312 p3312 (! c3313 p3313))) +(petri (? c3313 p3313 (! c3314 p3314))) +(petri (? c3314 p3314 (! c3315 p3315))) +(petri (? c3315 p3315 (! c3316 p3316))) +(petri (? c3316 p3316 (! c3317 p3317))) +(petri (? c3317 p3317 (! c3318 p3318))) +(petri (? c3318 p3318 (! c3319 p3319))) +(petri (? c3319 p3319 (! c3320 p3320))) +(petri (? c3320 p3320 (! c3321 p3321))) +(petri (? c3321 p3321 (! c3322 p3322))) +(petri (? c3322 p3322 (! c3323 p3323))) +(petri (? c3323 p3323 (! c3324 p3324))) +(petri (? c3324 p3324 (! c3325 p3325))) +(petri (? c3325 p3325 (! c3326 p3326))) +(petri (? c3326 p3326 (! c3327 p3327))) +(petri (? c3327 p3327 (! c3328 p3328))) +(petri (? c3328 p3328 (! c3329 p3329))) +(petri (? c3329 p3329 (! c3330 p3330))) +(petri (? c3330 p3330 (! c3331 p3331))) +(petri (? c3331 p3331 (! c3332 p3332))) +(petri (? c3332 p3332 (! c3333 p3333))) +(petri (? c3333 p3333 (! c3334 p3334))) +(petri (? c3334 p3334 (! c3335 p3335))) +(petri (? c3335 p3335 (! c3336 p3336))) +(petri (? c3336 p3336 (! c3337 p3337))) +(petri (? c3337 p3337 (! c3338 p3338))) +(petri (? c3338 p3338 (! c3339 p3339))) +(petri (? c3339 p3339 (! c3340 p3340))) +(petri (? c3340 p3340 (! c3341 p3341))) +(petri (? c3341 p3341 (! c3342 p3342))) +(petri (? c3342 p3342 (! c3343 p3343))) +(petri (? c3343 p3343 (! c3344 p3344))) +(petri (? c3344 p3344 (! c3345 p3345))) +(petri (? c3345 p3345 (! c3346 p3346))) +(petri (? c3346 p3346 (! c3347 p3347))) +(petri (? c3347 p3347 (! c3348 p3348))) +(petri (? c3348 p3348 (! c3349 p3349))) +(petri (? c3349 p3349 (! c3350 p3350))) +(petri (? c3350 p3350 (! c3351 p3351))) +(petri (? c3351 p3351 (! c3352 p3352))) +(petri (? c3352 p3352 (! c3353 p3353))) +(petri (? c3353 p3353 (! c3354 p3354))) +(petri (? c3354 p3354 (! c3355 p3355))) +(petri (? c3355 p3355 (! c3356 p3356))) +(petri (? c3356 p3356 (! c3357 p3357))) +(petri (? c3357 p3357 (! c3358 p3358))) +(petri (? c3358 p3358 (! c3359 p3359))) +(petri (? c3359 p3359 (! c3360 p3360))) +(petri (? c3360 p3360 (! c3361 p3361))) +(petri (? c3361 p3361 (! c3362 p3362))) +(petri (? c3362 p3362 (! c3363 p3363))) +(petri (? c3363 p3363 (! c3364 p3364))) +(petri (? c3364 p3364 (! c3365 p3365))) +(petri (? c3365 p3365 (! c3366 p3366))) +(petri (? c3366 p3366 (! c3367 p3367))) +(petri (? c3367 p3367 (! c3368 p3368))) +(petri (? c3368 p3368 (! c3369 p3369))) +(petri (? c3369 p3369 (! c3370 p3370))) +(petri (? c3370 p3370 (! c3371 p3371))) +(petri (? c3371 p3371 (! c3372 p3372))) +(petri (? c3372 p3372 (! c3373 p3373))) +(petri (? c3373 p3373 (! c3374 p3374))) +(petri (? c3374 p3374 (! c3375 p3375))) +(petri (? c3375 p3375 (! c3376 p3376))) +(petri (? c3376 p3376 (! c3377 p3377))) +(petri (? c3377 p3377 (! c3378 p3378))) +(petri (? c3378 p3378 (! c3379 p3379))) +(petri (? c3379 p3379 (! c3380 p3380))) +(petri (? c3380 p3380 (! c3381 p3381))) +(petri (? c3381 p3381 (! c3382 p3382))) +(petri (? c3382 p3382 (! c3383 p3383))) +(petri (? c3383 p3383 (! c3384 p3384))) +(petri (? c3384 p3384 (! c3385 p3385))) +(petri (? c3385 p3385 (! c3386 p3386))) +(petri (? c3386 p3386 (! c3387 p3387))) +(petri (? c3387 p3387 (! c3388 p3388))) +(petri (? c3388 p3388 (! c3389 p3389))) +(petri (? c3389 p3389 (! c3390 p3390))) +(petri (? c3390 p3390 (! c3391 p3391))) +(petri (? c3391 p3391 (! c3392 p3392))) +(petri (? c3392 p3392 (! c3393 p3393))) +(petri (? c3393 p3393 (! c3394 p3394))) +(petri (? c3394 p3394 (! c3395 p3395))) +(petri (? c3395 p3395 (! c3396 p3396))) +(petri (? c3396 p3396 (! c3397 p3397))) +(petri (? c3397 p3397 (! c3398 p3398))) +(petri (? c3398 p3398 (! c3399 p3399))) +(petri (? c3399 p3399 (! c3400 p3400))) +(petri (? c3400 p3400 (! c3401 p3401))) +(petri (? c3401 p3401 (! c3402 p3402))) +(petri (? c3402 p3402 (! c3403 p3403))) +(petri (? c3403 p3403 (! c3404 p3404))) +(petri (? c3404 p3404 (! c3405 p3405))) +(petri (? c3405 p3405 (! c3406 p3406))) +(petri (? c3406 p3406 (! c3407 p3407))) +(petri (? c3407 p3407 (! c3408 p3408))) +(petri (? c3408 p3408 (! c3409 p3409))) +(petri (? c3409 p3409 (! c3410 p3410))) +(petri (? c3410 p3410 (! c3411 p3411))) +(petri (? c3411 p3411 (! c3412 p3412))) +(petri (? c3412 p3412 (! c3413 p3413))) +(petri (? c3413 p3413 (! c3414 p3414))) +(petri (? c3414 p3414 (! c3415 p3415))) +(petri (? c3415 p3415 (! c3416 p3416))) +(petri (? c3416 p3416 (! c3417 p3417))) +(petri (? c3417 p3417 (! c3418 p3418))) +(petri (? c3418 p3418 (! c3419 p3419))) +(petri (? c3419 p3419 (! c3420 p3420))) +(petri (? c3420 p3420 (! c3421 p3421))) +(petri (? c3421 p3421 (! c3422 p3422))) +(petri (? c3422 p3422 (! c3423 p3423))) +(petri (? c3423 p3423 (! c3424 p3424))) +(petri (? c3424 p3424 (! c3425 p3425))) +(petri (? c3425 p3425 (! c3426 p3426))) +(petri (? c3426 p3426 (! c3427 p3427))) +(petri (? c3427 p3427 (! c3428 p3428))) +(petri (? c3428 p3428 (! c3429 p3429))) +(petri (? c3429 p3429 (! c3430 p3430))) +(petri (? c3430 p3430 (! c3431 p3431))) +(petri (? c3431 p3431 (! c3432 p3432))) +(petri (? c3432 p3432 (! c3433 p3433))) +(petri (? c3433 p3433 (! c3434 p3434))) +(petri (? c3434 p3434 (! c3435 p3435))) +(petri (? c3435 p3435 (! c3436 p3436))) +(petri (? c3436 p3436 (! c3437 p3437))) +(petri (? c3437 p3437 (! c3438 p3438))) +(petri (? c3438 p3438 (! c3439 p3439))) +(petri (? c3439 p3439 (! c3440 p3440))) +(petri (? c3440 p3440 (! c3441 p3441))) +(petri (? c3441 p3441 (! c3442 p3442))) +(petri (? c3442 p3442 (! c3443 p3443))) +(petri (? c3443 p3443 (! c3444 p3444))) +(petri (? c3444 p3444 (! c3445 p3445))) +(petri (? c3445 p3445 (! c3446 p3446))) +(petri (? c3446 p3446 (! c3447 p3447))) +(petri (? c3447 p3447 (! c3448 p3448))) +(petri (? c3448 p3448 (! c3449 p3449))) +(petri (? c3449 p3449 (! c3450 p3450))) +(petri (? c3450 p3450 (! c3451 p3451))) +(petri (? c3451 p3451 (! c3452 p3452))) +(petri (? c3452 p3452 (! c3453 p3453))) +(petri (? c3453 p3453 (! c3454 p3454))) +(petri (? c3454 p3454 (! c3455 p3455))) +(petri (? c3455 p3455 (! c3456 p3456))) +(petri (? c3456 p3456 (! c3457 p3457))) +(petri (? c3457 p3457 (! c3458 p3458))) +(petri (? c3458 p3458 (! c3459 p3459))) +(petri (? c3459 p3459 (! c3460 p3460))) +(petri (? c3460 p3460 (! c3461 p3461))) +(petri (? c3461 p3461 (! c3462 p3462))) +(petri (? c3462 p3462 (! c3463 p3463))) +(petri (? c3463 p3463 (! c3464 p3464))) +(petri (? c3464 p3464 (! c3465 p3465))) +(petri (? c3465 p3465 (! c3466 p3466))) +(petri (? c3466 p3466 (! c3467 p3467))) +(petri (? c3467 p3467 (! c3468 p3468))) +(petri (? c3468 p3468 (! c3469 p3469))) +(petri (? c3469 p3469 (! c3470 p3470))) +(petri (? c3470 p3470 (! c3471 p3471))) +(petri (? c3471 p3471 (! c3472 p3472))) +(petri (? c3472 p3472 (! c3473 p3473))) +(petri (? c3473 p3473 (! c3474 p3474))) +(petri (? c3474 p3474 (! c3475 p3475))) +(petri (? c3475 p3475 (! c3476 p3476))) +(petri (? c3476 p3476 (! c3477 p3477))) +(petri (? c3477 p3477 (! c3478 p3478))) +(petri (? c3478 p3478 (! c3479 p3479))) +(petri (? c3479 p3479 (! c3480 p3480))) +(petri (? c3480 p3480 (! c3481 p3481))) +(petri (? c3481 p3481 (! c3482 p3482))) +(petri (? c3482 p3482 (! c3483 p3483))) +(petri (? c3483 p3483 (! c3484 p3484))) +(petri (? c3484 p3484 (! c3485 p3485))) +(petri (? c3485 p3485 (! c3486 p3486))) +(petri (? c3486 p3486 (! c3487 p3487))) +(petri (? c3487 p3487 (! c3488 p3488))) +(petri (? c3488 p3488 (! c3489 p3489))) +(petri (? c3489 p3489 (! c3490 p3490))) +(petri (? c3490 p3490 (! c3491 p3491))) +(petri (? c3491 p3491 (! c3492 p3492))) +(petri (? c3492 p3492 (! c3493 p3493))) +(petri (? c3493 p3493 (! c3494 p3494))) +(petri (? c3494 p3494 (! c3495 p3495))) +(petri (? c3495 p3495 (! c3496 p3496))) +(petri (? c3496 p3496 (! c3497 p3497))) +(petri (? c3497 p3497 (! c3498 p3498))) +(petri (? c3498 p3498 (! c3499 p3499))) +(petri (? c3499 p3499 (! c3500 p3500))) +(petri (? c3500 p3500 (! c3501 p3501))) +(petri (? c3501 p3501 (! c3502 p3502))) +(petri (? c3502 p3502 (! c3503 p3503))) +(petri (? c3503 p3503 (! c3504 p3504))) +(petri (? c3504 p3504 (! c3505 p3505))) +(petri (? c3505 p3505 (! c3506 p3506))) +(petri (? c3506 p3506 (! c3507 p3507))) +(petri (? c3507 p3507 (! c3508 p3508))) +(petri (? c3508 p3508 (! c3509 p3509))) +(petri (? c3509 p3509 (! c3510 p3510))) +(petri (? c3510 p3510 (! c3511 p3511))) +(petri (? c3511 p3511 (! c3512 p3512))) +(petri (? c3512 p3512 (! c3513 p3513))) +(petri (? c3513 p3513 (! c3514 p3514))) +(petri (? c3514 p3514 (! c3515 p3515))) +(petri (? c3515 p3515 (! c3516 p3516))) +(petri (? c3516 p3516 (! c3517 p3517))) +(petri (? c3517 p3517 (! c3518 p3518))) +(petri (? c3518 p3518 (! c3519 p3519))) +(petri (? c3519 p3519 (! c3520 p3520))) +(petri (? c3520 p3520 (! c3521 p3521))) +(petri (? c3521 p3521 (! c3522 p3522))) +(petri (? c3522 p3522 (! c3523 p3523))) +(petri (? c3523 p3523 (! c3524 p3524))) +(petri (? c3524 p3524 (! c3525 p3525))) +(petri (? c3525 p3525 (! c3526 p3526))) +(petri (? c3526 p3526 (! c3527 p3527))) +(petri (? c3527 p3527 (! c3528 p3528))) +(petri (? c3528 p3528 (! c3529 p3529))) +(petri (? c3529 p3529 (! c3530 p3530))) +(petri (? c3530 p3530 (! c3531 p3531))) +(petri (? c3531 p3531 (! c3532 p3532))) +(petri (? c3532 p3532 (! c3533 p3533))) +(petri (? c3533 p3533 (! c3534 p3534))) +(petri (? c3534 p3534 (! c3535 p3535))) +(petri (? c3535 p3535 (! c3536 p3536))) +(petri (? c3536 p3536 (! c3537 p3537))) +(petri (? c3537 p3537 (! c3538 p3538))) +(petri (? c3538 p3538 (! c3539 p3539))) +(petri (? c3539 p3539 (! c3540 p3540))) +(petri (? c3540 p3540 (! c3541 p3541))) +(petri (? c3541 p3541 (! c3542 p3542))) +(petri (? c3542 p3542 (! c3543 p3543))) +(petri (? c3543 p3543 (! c3544 p3544))) +(petri (? c3544 p3544 (! c3545 p3545))) +(petri (? c3545 p3545 (! c3546 p3546))) +(petri (? c3546 p3546 (! c3547 p3547))) +(petri (? c3547 p3547 (! c3548 p3548))) +(petri (? c3548 p3548 (! c3549 p3549))) +(petri (? c3549 p3549 (! c3550 p3550))) +(petri (? c3550 p3550 (! c3551 p3551))) +(petri (? c3551 p3551 (! c3552 p3552))) +(petri (? c3552 p3552 (! c3553 p3553))) +(petri (? c3553 p3553 (! c3554 p3554))) +(petri (? c3554 p3554 (! c3555 p3555))) +(petri (? c3555 p3555 (! c3556 p3556))) +(petri (? c3556 p3556 (! c3557 p3557))) +(petri (? c3557 p3557 (! c3558 p3558))) +(petri (? c3558 p3558 (! c3559 p3559))) +(petri (? c3559 p3559 (! c3560 p3560))) +(petri (? c3560 p3560 (! c3561 p3561))) +(petri (? c3561 p3561 (! c3562 p3562))) +(petri (? c3562 p3562 (! c3563 p3563))) +(petri (? c3563 p3563 (! c3564 p3564))) +(petri (? c3564 p3564 (! c3565 p3565))) +(petri (? c3565 p3565 (! c3566 p3566))) +(petri (? c3566 p3566 (! c3567 p3567))) +(petri (? c3567 p3567 (! c3568 p3568))) +(petri (? c3568 p3568 (! c3569 p3569))) +(petri (? c3569 p3569 (! c3570 p3570))) +(petri (? c3570 p3570 (! c3571 p3571))) +(petri (? c3571 p3571 (! c3572 p3572))) +(petri (? c3572 p3572 (! c3573 p3573))) +(petri (? c3573 p3573 (! c3574 p3574))) +(petri (? c3574 p3574 (! c3575 p3575))) +(petri (? c3575 p3575 (! c3576 p3576))) +(petri (? c3576 p3576 (! c3577 p3577))) +(petri (? c3577 p3577 (! c3578 p3578))) +(petri (? c3578 p3578 (! c3579 p3579))) +(petri (? c3579 p3579 (! c3580 p3580))) +(petri (? c3580 p3580 (! c3581 p3581))) +(petri (? c3581 p3581 (! c3582 p3582))) +(petri (? c3582 p3582 (! c3583 p3583))) +(petri (? c3583 p3583 (! c3584 p3584))) +(petri (? c3584 p3584 (! c3585 p3585))) +(petri (? c3585 p3585 (! c3586 p3586))) +(petri (? c3586 p3586 (! c3587 p3587))) +(petri (? c3587 p3587 (! c3588 p3588))) +(petri (? c3588 p3588 (! c3589 p3589))) +(petri (? c3589 p3589 (! c3590 p3590))) +(petri (? c3590 p3590 (! c3591 p3591))) +(petri (? c3591 p3591 (! c3592 p3592))) +(petri (? c3592 p3592 (! c3593 p3593))) +(petri (? c3593 p3593 (! c3594 p3594))) +(petri (? c3594 p3594 (! c3595 p3595))) +(petri (? c3595 p3595 (! c3596 p3596))) +(petri (? c3596 p3596 (! c3597 p3597))) +(petri (? c3597 p3597 (! c3598 p3598))) +(petri (? c3598 p3598 (! c3599 p3599))) +(petri (? c3599 p3599 (! c3600 p3600))) +(petri (? c3600 p3600 (! c3601 p3601))) +(petri (? c3601 p3601 (! c3602 p3602))) +(petri (? c3602 p3602 (! c3603 p3603))) +(petri (? c3603 p3603 (! c3604 p3604))) +(petri (? c3604 p3604 (! c3605 p3605))) +(petri (? c3605 p3605 (! c3606 p3606))) +(petri (? c3606 p3606 (! c3607 p3607))) +(petri (? c3607 p3607 (! c3608 p3608))) +(petri (? c3608 p3608 (! c3609 p3609))) +(petri (? c3609 p3609 (! c3610 p3610))) +(petri (? c3610 p3610 (! c3611 p3611))) +(petri (? c3611 p3611 (! c3612 p3612))) +(petri (? c3612 p3612 (! c3613 p3613))) +(petri (? c3613 p3613 (! c3614 p3614))) +(petri (? c3614 p3614 (! c3615 p3615))) +(petri (? c3615 p3615 (! c3616 p3616))) +(petri (? c3616 p3616 (! c3617 p3617))) +(petri (? c3617 p3617 (! c3618 p3618))) +(petri (? c3618 p3618 (! c3619 p3619))) +(petri (? c3619 p3619 (! c3620 p3620))) +(petri (? c3620 p3620 (! c3621 p3621))) +(petri (? c3621 p3621 (! c3622 p3622))) +(petri (? c3622 p3622 (! c3623 p3623))) +(petri (? c3623 p3623 (! c3624 p3624))) +(petri (? c3624 p3624 (! c3625 p3625))) +(petri (? c3625 p3625 (! c3626 p3626))) +(petri (? c3626 p3626 (! c3627 p3627))) +(petri (? c3627 p3627 (! c3628 p3628))) +(petri (? c3628 p3628 (! c3629 p3629))) +(petri (? c3629 p3629 (! c3630 p3630))) +(petri (? c3630 p3630 (! c3631 p3631))) +(petri (? c3631 p3631 (! c3632 p3632))) +(petri (? c3632 p3632 (! c3633 p3633))) +(petri (? c3633 p3633 (! c3634 p3634))) +(petri (? c3634 p3634 (! c3635 p3635))) +(petri (? c3635 p3635 (! c3636 p3636))) +(petri (? c3636 p3636 (! c3637 p3637))) +(petri (? c3637 p3637 (! c3638 p3638))) +(petri (? c3638 p3638 (! c3639 p3639))) +(petri (? c3639 p3639 (! c3640 p3640))) +(petri (? c3640 p3640 (! c3641 p3641))) +(petri (? c3641 p3641 (! c3642 p3642))) +(petri (? c3642 p3642 (! c3643 p3643))) +(petri (? c3643 p3643 (! c3644 p3644))) +(petri (? c3644 p3644 (! c3645 p3645))) +(petri (? c3645 p3645 (! c3646 p3646))) +(petri (? c3646 p3646 (! c3647 p3647))) +(petri (? c3647 p3647 (! c3648 p3648))) +(petri (? c3648 p3648 (! c3649 p3649))) +(petri (? c3649 p3649 (! c3650 p3650))) +(petri (? c3650 p3650 (! c3651 p3651))) +(petri (? c3651 p3651 (! c3652 p3652))) +(petri (? c3652 p3652 (! c3653 p3653))) +(petri (? c3653 p3653 (! c3654 p3654))) +(petri (? c3654 p3654 (! c3655 p3655))) +(petri (? c3655 p3655 (! c3656 p3656))) +(petri (? c3656 p3656 (! c3657 p3657))) +(petri (? c3657 p3657 (! c3658 p3658))) +(petri (? c3658 p3658 (! c3659 p3659))) +(petri (? c3659 p3659 (! c3660 p3660))) +(petri (? c3660 p3660 (! c3661 p3661))) +(petri (? c3661 p3661 (! c3662 p3662))) +(petri (? c3662 p3662 (! c3663 p3663))) +(petri (? c3663 p3663 (! c3664 p3664))) +(petri (? c3664 p3664 (! c3665 p3665))) +(petri (? c3665 p3665 (! c3666 p3666))) +(petri (? c3666 p3666 (! c3667 p3667))) +(petri (? c3667 p3667 (! c3668 p3668))) +(petri (? c3668 p3668 (! c3669 p3669))) +(petri (? c3669 p3669 (! c3670 p3670))) +(petri (? c3670 p3670 (! c3671 p3671))) +(petri (? c3671 p3671 (! c3672 p3672))) +(petri (? c3672 p3672 (! c3673 p3673))) +(petri (? c3673 p3673 (! c3674 p3674))) +(petri (? c3674 p3674 (! c3675 p3675))) +(petri (? c3675 p3675 (! c3676 p3676))) +(petri (? c3676 p3676 (! c3677 p3677))) +(petri (? c3677 p3677 (! c3678 p3678))) +(petri (? c3678 p3678 (! c3679 p3679))) +(petri (? c3679 p3679 (! c3680 p3680))) +(petri (? c3680 p3680 (! c3681 p3681))) +(petri (? c3681 p3681 (! c3682 p3682))) +(petri (? c3682 p3682 (! c3683 p3683))) +(petri (? c3683 p3683 (! c3684 p3684))) +(petri (? c3684 p3684 (! c3685 p3685))) +(petri (? c3685 p3685 (! c3686 p3686))) +(petri (? c3686 p3686 (! c3687 p3687))) +(petri (? c3687 p3687 (! c3688 p3688))) +(petri (? c3688 p3688 (! c3689 p3689))) +(petri (? c3689 p3689 (! c3690 p3690))) +(petri (? c3690 p3690 (! c3691 p3691))) +(petri (? c3691 p3691 (! c3692 p3692))) +(petri (? c3692 p3692 (! c3693 p3693))) +(petri (? c3693 p3693 (! c3694 p3694))) +(petri (? c3694 p3694 (! c3695 p3695))) +(petri (? c3695 p3695 (! c3696 p3696))) +(petri (? c3696 p3696 (! c3697 p3697))) +(petri (? c3697 p3697 (! c3698 p3698))) +(petri (? c3698 p3698 (! c3699 p3699))) +(petri (? c3699 p3699 (! c3700 p3700))) +(petri (? c3700 p3700 (! c3701 p3701))) +(petri (? c3701 p3701 (! c3702 p3702))) +(petri (? c3702 p3702 (! c3703 p3703))) +(petri (? c3703 p3703 (! c3704 p3704))) +(petri (? c3704 p3704 (! c3705 p3705))) +(petri (? c3705 p3705 (! c3706 p3706))) +(petri (? c3706 p3706 (! c3707 p3707))) +(petri (? c3707 p3707 (! c3708 p3708))) +(petri (? c3708 p3708 (! c3709 p3709))) +(petri (? c3709 p3709 (! c3710 p3710))) +(petri (? c3710 p3710 (! c3711 p3711))) +(petri (? c3711 p3711 (! c3712 p3712))) +(petri (? c3712 p3712 (! c3713 p3713))) +(petri (? c3713 p3713 (! c3714 p3714))) +(petri (? c3714 p3714 (! c3715 p3715))) +(petri (? c3715 p3715 (! c3716 p3716))) +(petri (? c3716 p3716 (! c3717 p3717))) +(petri (? c3717 p3717 (! c3718 p3718))) +(petri (? c3718 p3718 (! c3719 p3719))) +(petri (? c3719 p3719 (! c3720 p3720))) +(petri (? c3720 p3720 (! c3721 p3721))) +(petri (? c3721 p3721 (! c3722 p3722))) +(petri (? c3722 p3722 (! c3723 p3723))) +(petri (? c3723 p3723 (! c3724 p3724))) +(petri (? c3724 p3724 (! c3725 p3725))) +(petri (? c3725 p3725 (! c3726 p3726))) +(petri (? c3726 p3726 (! c3727 p3727))) +(petri (? c3727 p3727 (! c3728 p3728))) +(petri (? c3728 p3728 (! c3729 p3729))) +(petri (? c3729 p3729 (! c3730 p3730))) +(petri (? c3730 p3730 (! c3731 p3731))) +(petri (? c3731 p3731 (! c3732 p3732))) +(petri (? c3732 p3732 (! c3733 p3733))) +(petri (? c3733 p3733 (! c3734 p3734))) +(petri (? c3734 p3734 (! c3735 p3735))) +(petri (? c3735 p3735 (! c3736 p3736))) +(petri (? c3736 p3736 (! c3737 p3737))) +(petri (? c3737 p3737 (! c3738 p3738))) +(petri (? c3738 p3738 (! c3739 p3739))) +(petri (? c3739 p3739 (! c3740 p3740))) +(petri (? c3740 p3740 (! c3741 p3741))) +(petri (? c3741 p3741 (! c3742 p3742))) +(petri (? c3742 p3742 (! c3743 p3743))) +(petri (? c3743 p3743 (! c3744 p3744))) +(petri (? c3744 p3744 (! c3745 p3745))) +(petri (? c3745 p3745 (! c3746 p3746))) +(petri (? c3746 p3746 (! c3747 p3747))) +(petri (? c3747 p3747 (! c3748 p3748))) +(petri (? c3748 p3748 (! c3749 p3749))) +(petri (? c3749 p3749 (! c3750 p3750))) +(petri (? c3750 p3750 (! c3751 p3751))) +(petri (? c3751 p3751 (! c3752 p3752))) +(petri (? c3752 p3752 (! c3753 p3753))) +(petri (? c3753 p3753 (! c3754 p3754))) +(petri (? c3754 p3754 (! c3755 p3755))) +(petri (? c3755 p3755 (! c3756 p3756))) +(petri (? c3756 p3756 (! c3757 p3757))) +(petri (? c3757 p3757 (! c3758 p3758))) +(petri (? c3758 p3758 (! c3759 p3759))) +(petri (? c3759 p3759 (! c3760 p3760))) +(petri (? c3760 p3760 (! c3761 p3761))) +(petri (? c3761 p3761 (! c3762 p3762))) +(petri (? c3762 p3762 (! c3763 p3763))) +(petri (? c3763 p3763 (! c3764 p3764))) +(petri (? c3764 p3764 (! c3765 p3765))) +(petri (? c3765 p3765 (! c3766 p3766))) +(petri (? c3766 p3766 (! c3767 p3767))) +(petri (? c3767 p3767 (! c3768 p3768))) +(petri (? c3768 p3768 (! c3769 p3769))) +(petri (? c3769 p3769 (! c3770 p3770))) +(petri (? c3770 p3770 (! c3771 p3771))) +(petri (? c3771 p3771 (! c3772 p3772))) +(petri (? c3772 p3772 (! c3773 p3773))) +(petri (? c3773 p3773 (! c3774 p3774))) +(petri (? c3774 p3774 (! c3775 p3775))) +(petri (? c3775 p3775 (! c3776 p3776))) +(petri (? c3776 p3776 (! c3777 p3777))) +(petri (? c3777 p3777 (! c3778 p3778))) +(petri (? c3778 p3778 (! c3779 p3779))) +(petri (? c3779 p3779 (! c3780 p3780))) +(petri (? c3780 p3780 (! c3781 p3781))) +(petri (? c3781 p3781 (! c3782 p3782))) +(petri (? c3782 p3782 (! c3783 p3783))) +(petri (? c3783 p3783 (! c3784 p3784))) +(petri (? c3784 p3784 (! c3785 p3785))) +(petri (? c3785 p3785 (! c3786 p3786))) +(petri (? c3786 p3786 (! c3787 p3787))) +(petri (? c3787 p3787 (! c3788 p3788))) +(petri (? c3788 p3788 (! c3789 p3789))) +(petri (? c3789 p3789 (! c3790 p3790))) +(petri (? c3790 p3790 (! c3791 p3791))) +(petri (? c3791 p3791 (! c3792 p3792))) +(petri (? c3792 p3792 (! c3793 p3793))) +(petri (? c3793 p3793 (! c3794 p3794))) +(petri (? c3794 p3794 (! c3795 p3795))) +(petri (? c3795 p3795 (! c3796 p3796))) +(petri (? c3796 p3796 (! c3797 p3797))) +(petri (? c3797 p3797 (! c3798 p3798))) +(petri (? c3798 p3798 (! c3799 p3799))) +(petri (? c3799 p3799 (! c3800 p3800))) +(petri (? c3800 p3800 (! c3801 p3801))) +(petri (? c3801 p3801 (! c3802 p3802))) +(petri (? c3802 p3802 (! c3803 p3803))) +(petri (? c3803 p3803 (! c3804 p3804))) +(petri (? c3804 p3804 (! c3805 p3805))) +(petri (? c3805 p3805 (! c3806 p3806))) +(petri (? c3806 p3806 (! c3807 p3807))) +(petri (? c3807 p3807 (! c3808 p3808))) +(petri (? c3808 p3808 (! c3809 p3809))) +(petri (? c3809 p3809 (! c3810 p3810))) +(petri (? c3810 p3810 (! c3811 p3811))) +(petri (? c3811 p3811 (! c3812 p3812))) +(petri (? c3812 p3812 (! c3813 p3813))) +(petri (? c3813 p3813 (! c3814 p3814))) +(petri (? c3814 p3814 (! c3815 p3815))) +(petri (? c3815 p3815 (! c3816 p3816))) +(petri (? c3816 p3816 (! c3817 p3817))) +(petri (? c3817 p3817 (! c3818 p3818))) +(petri (? c3818 p3818 (! c3819 p3819))) +(petri (? c3819 p3819 (! c3820 p3820))) +(petri (? c3820 p3820 (! c3821 p3821))) +(petri (? c3821 p3821 (! c3822 p3822))) +(petri (? c3822 p3822 (! c3823 p3823))) +(petri (? c3823 p3823 (! c3824 p3824))) +(petri (? c3824 p3824 (! c3825 p3825))) +(petri (? c3825 p3825 (! c3826 p3826))) +(petri (? c3826 p3826 (! c3827 p3827))) +(petri (? c3827 p3827 (! c3828 p3828))) +(petri (? c3828 p3828 (! c3829 p3829))) +(petri (? c3829 p3829 (! c3830 p3830))) +(petri (? c3830 p3830 (! c3831 p3831))) +(petri (? c3831 p3831 (! c3832 p3832))) +(petri (? c3832 p3832 (! c3833 p3833))) +(petri (? c3833 p3833 (! c3834 p3834))) +(petri (? c3834 p3834 (! c3835 p3835))) +(petri (? c3835 p3835 (! c3836 p3836))) +(petri (? c3836 p3836 (! c3837 p3837))) +(petri (? c3837 p3837 (! c3838 p3838))) +(petri (? c3838 p3838 (! c3839 p3839))) +(petri (? c3839 p3839 (! c3840 p3840))) +(petri (? c3840 p3840 (! c3841 p3841))) +(petri (? c3841 p3841 (! c3842 p3842))) +(petri (? c3842 p3842 (! c3843 p3843))) +(petri (? c3843 p3843 (! c3844 p3844))) +(petri (? c3844 p3844 (! c3845 p3845))) +(petri (? c3845 p3845 (! c3846 p3846))) +(petri (? c3846 p3846 (! c3847 p3847))) +(petri (? c3847 p3847 (! c3848 p3848))) +(petri (? c3848 p3848 (! c3849 p3849))) +(petri (? c3849 p3849 (! c3850 p3850))) +(petri (? c3850 p3850 (! c3851 p3851))) +(petri (? c3851 p3851 (! c3852 p3852))) +(petri (? c3852 p3852 (! c3853 p3853))) +(petri (? c3853 p3853 (! c3854 p3854))) +(petri (? c3854 p3854 (! c3855 p3855))) +(petri (? c3855 p3855 (! c3856 p3856))) +(petri (? c3856 p3856 (! c3857 p3857))) +(petri (? c3857 p3857 (! c3858 p3858))) +(petri (? c3858 p3858 (! c3859 p3859))) +(petri (? c3859 p3859 (! c3860 p3860))) +(petri (? c3860 p3860 (! c3861 p3861))) +(petri (? c3861 p3861 (! c3862 p3862))) +(petri (? c3862 p3862 (! c3863 p3863))) +(petri (? c3863 p3863 (! c3864 p3864))) +(petri (? c3864 p3864 (! c3865 p3865))) +(petri (? c3865 p3865 (! c3866 p3866))) +(petri (? c3866 p3866 (! c3867 p3867))) +(petri (? c3867 p3867 (! c3868 p3868))) +(petri (? c3868 p3868 (! c3869 p3869))) +(petri (? c3869 p3869 (! c3870 p3870))) +(petri (? c3870 p3870 (! c3871 p3871))) +(petri (? c3871 p3871 (! c3872 p3872))) +(petri (? c3872 p3872 (! c3873 p3873))) +(petri (? c3873 p3873 (! c3874 p3874))) +(petri (? c3874 p3874 (! c3875 p3875))) +(petri (? c3875 p3875 (! c3876 p3876))) +(petri (? c3876 p3876 (! c3877 p3877))) +(petri (? c3877 p3877 (! c3878 p3878))) +(petri (? c3878 p3878 (! c3879 p3879))) +(petri (? c3879 p3879 (! c3880 p3880))) +(petri (? c3880 p3880 (! c3881 p3881))) +(petri (? c3881 p3881 (! c3882 p3882))) +(petri (? c3882 p3882 (! c3883 p3883))) +(petri (? c3883 p3883 (! c3884 p3884))) +(petri (? c3884 p3884 (! c3885 p3885))) +(petri (? c3885 p3885 (! c3886 p3886))) +(petri (? c3886 p3886 (! c3887 p3887))) +(petri (? c3887 p3887 (! c3888 p3888))) +(petri (? c3888 p3888 (! c3889 p3889))) +(petri (? c3889 p3889 (! c3890 p3890))) +(petri (? c3890 p3890 (! c3891 p3891))) +(petri (? c3891 p3891 (! c3892 p3892))) +(petri (? c3892 p3892 (! c3893 p3893))) +(petri (? c3893 p3893 (! c3894 p3894))) +(petri (? c3894 p3894 (! c3895 p3895))) +(petri (? c3895 p3895 (! c3896 p3896))) +(petri (? c3896 p3896 (! c3897 p3897))) +(petri (? c3897 p3897 (! c3898 p3898))) +(petri (? c3898 p3898 (! c3899 p3899))) +(petri (? c3899 p3899 (! c3900 p3900))) +(petri (? c3900 p3900 (! c3901 p3901))) +(petri (? c3901 p3901 (! c3902 p3902))) +(petri (? c3902 p3902 (! c3903 p3903))) +(petri (? c3903 p3903 (! c3904 p3904))) +(petri (? c3904 p3904 (! c3905 p3905))) +(petri (? c3905 p3905 (! c3906 p3906))) +(petri (? c3906 p3906 (! c3907 p3907))) +(petri (? c3907 p3907 (! c3908 p3908))) +(petri (? c3908 p3908 (! c3909 p3909))) +(petri (? c3909 p3909 (! c3910 p3910))) +(petri (? c3910 p3910 (! c3911 p3911))) +(petri (? c3911 p3911 (! c3912 p3912))) +(petri (? c3912 p3912 (! c3913 p3913))) +(petri (? c3913 p3913 (! c3914 p3914))) +(petri (? c3914 p3914 (! c3915 p3915))) +(petri (? c3915 p3915 (! c3916 p3916))) +(petri (? c3916 p3916 (! c3917 p3917))) +(petri (? c3917 p3917 (! c3918 p3918))) +(petri (? c3918 p3918 (! c3919 p3919))) +(petri (? c3919 p3919 (! c3920 p3920))) +(petri (? c3920 p3920 (! c3921 p3921))) +(petri (? c3921 p3921 (! c3922 p3922))) +(petri (? c3922 p3922 (! c3923 p3923))) +(petri (? c3923 p3923 (! c3924 p3924))) +(petri (? c3924 p3924 (! c3925 p3925))) +(petri (? c3925 p3925 (! c3926 p3926))) +(petri (? c3926 p3926 (! c3927 p3927))) +(petri (? c3927 p3927 (! c3928 p3928))) +(petri (? c3928 p3928 (! c3929 p3929))) +(petri (? c3929 p3929 (! c3930 p3930))) +(petri (? c3930 p3930 (! c3931 p3931))) +(petri (? c3931 p3931 (! c3932 p3932))) +(petri (? c3932 p3932 (! c3933 p3933))) +(petri (? c3933 p3933 (! c3934 p3934))) +(petri (? c3934 p3934 (! c3935 p3935))) +(petri (? c3935 p3935 (! c3936 p3936))) +(petri (? c3936 p3936 (! c3937 p3937))) +(petri (? c3937 p3937 (! c3938 p3938))) +(petri (? c3938 p3938 (! c3939 p3939))) +(petri (? c3939 p3939 (! c3940 p3940))) +(petri (? c3940 p3940 (! c3941 p3941))) +(petri (? c3941 p3941 (! c3942 p3942))) +(petri (? c3942 p3942 (! c3943 p3943))) +(petri (? c3943 p3943 (! c3944 p3944))) +(petri (? c3944 p3944 (! c3945 p3945))) +(petri (? c3945 p3945 (! c3946 p3946))) +(petri (? c3946 p3946 (! c3947 p3947))) +(petri (? c3947 p3947 (! c3948 p3948))) +(petri (? c3948 p3948 (! c3949 p3949))) +(petri (? c3949 p3949 (! c3950 p3950))) +(petri (? c3950 p3950 (! c3951 p3951))) +(petri (? c3951 p3951 (! c3952 p3952))) +(petri (? c3952 p3952 (! c3953 p3953))) +(petri (? c3953 p3953 (! c3954 p3954))) +(petri (? c3954 p3954 (! c3955 p3955))) +(petri (? c3955 p3955 (! c3956 p3956))) +(petri (? c3956 p3956 (! c3957 p3957))) +(petri (? c3957 p3957 (! c3958 p3958))) +(petri (? c3958 p3958 (! c3959 p3959))) +(petri (? c3959 p3959 (! c3960 p3960))) +(petri (? c3960 p3960 (! c3961 p3961))) +(petri (? c3961 p3961 (! c3962 p3962))) +(petri (? c3962 p3962 (! c3963 p3963))) +(petri (? c3963 p3963 (! c3964 p3964))) +(petri (? c3964 p3964 (! c3965 p3965))) +(petri (? c3965 p3965 (! c3966 p3966))) +(petri (? c3966 p3966 (! c3967 p3967))) +(petri (? c3967 p3967 (! c3968 p3968))) +(petri (? c3968 p3968 (! c3969 p3969))) +(petri (? c3969 p3969 (! c3970 p3970))) +(petri (? c3970 p3970 (! c3971 p3971))) +(petri (? c3971 p3971 (! c3972 p3972))) +(petri (? c3972 p3972 (! c3973 p3973))) +(petri (? c3973 p3973 (! c3974 p3974))) +(petri (? c3974 p3974 (! c3975 p3975))) +(petri (? c3975 p3975 (! c3976 p3976))) +(petri (? c3976 p3976 (! c3977 p3977))) +(petri (? c3977 p3977 (! c3978 p3978))) +(petri (? c3978 p3978 (! c3979 p3979))) +(petri (? c3979 p3979 (! c3980 p3980))) +(petri (? c3980 p3980 (! c3981 p3981))) +(petri (? c3981 p3981 (! c3982 p3982))) +(petri (? c3982 p3982 (! c3983 p3983))) +(petri (? c3983 p3983 (! c3984 p3984))) +(petri (? c3984 p3984 (! c3985 p3985))) +(petri (? c3985 p3985 (! c3986 p3986))) +(petri (? c3986 p3986 (! c3987 p3987))) +(petri (? c3987 p3987 (! c3988 p3988))) +(petri (? c3988 p3988 (! c3989 p3989))) +(petri (? c3989 p3989 (! c3990 p3990))) +(petri (? c3990 p3990 (! c3991 p3991))) +(petri (? c3991 p3991 (! c3992 p3992))) +(petri (? c3992 p3992 (! c3993 p3993))) +(petri (? c3993 p3993 (! c3994 p3994))) +(petri (? c3994 p3994 (! c3995 p3995))) +(petri (? c3995 p3995 (! c3996 p3996))) +(petri (? c3996 p3996 (! c3997 p3997))) +(petri (? c3997 p3997 (! c3998 p3998))) +(petri (? c3998 p3998 (! c3999 p3999))) +(petri (? c3999 p3999 (! c4000 p4000))) +(petri (! c0 p0)) +(dmsg (! c0 p0)) +(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))) + +;; One exec per round: consume the delta, add what it derives to both the soup and the next +;; delta. No separate promotion pass, so nothing can interleave between them. +(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) + (petri (? $c $pl $b)) (dmsg (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b)) + (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc2_naive.mm2 b/examples/transforms/pc2_naive.mm2 new file mode 100644 index 00000000..1766c9fc --- /dev/null +++ b/examples/transforms/pc2_naive.mm2 @@ -0,0 +1,4006 @@ +(petri (? c0 p0 (! c1 p1))) +(petri (? c1 p1 (! c2 p2))) +(petri (? c2 p2 (! c3 p3))) +(petri (? c3 p3 (! c4 p4))) +(petri (? c4 p4 (! c5 p5))) +(petri (? c5 p5 (! c6 p6))) +(petri (? c6 p6 (! c7 p7))) +(petri (? c7 p7 (! c8 p8))) +(petri (? c8 p8 (! c9 p9))) +(petri (? c9 p9 (! c10 p10))) +(petri (? c10 p10 (! c11 p11))) +(petri (? c11 p11 (! c12 p12))) +(petri (? c12 p12 (! c13 p13))) +(petri (? c13 p13 (! c14 p14))) +(petri (? c14 p14 (! c15 p15))) +(petri (? c15 p15 (! c16 p16))) +(petri (? c16 p16 (! c17 p17))) +(petri (? c17 p17 (! c18 p18))) +(petri (? c18 p18 (! c19 p19))) +(petri (? c19 p19 (! c20 p20))) +(petri (? c20 p20 (! c21 p21))) +(petri (? c21 p21 (! c22 p22))) +(petri (? c22 p22 (! c23 p23))) +(petri (? c23 p23 (! c24 p24))) +(petri (? c24 p24 (! c25 p25))) +(petri (? c25 p25 (! c26 p26))) +(petri (? c26 p26 (! c27 p27))) +(petri (? c27 p27 (! c28 p28))) +(petri (? c28 p28 (! c29 p29))) +(petri (? c29 p29 (! c30 p30))) +(petri (? c30 p30 (! c31 p31))) +(petri (? c31 p31 (! c32 p32))) +(petri (? c32 p32 (! c33 p33))) +(petri (? c33 p33 (! c34 p34))) +(petri (? c34 p34 (! c35 p35))) +(petri (? c35 p35 (! c36 p36))) +(petri (? c36 p36 (! c37 p37))) +(petri (? c37 p37 (! c38 p38))) +(petri (? c38 p38 (! c39 p39))) +(petri (? c39 p39 (! c40 p40))) +(petri (? c40 p40 (! c41 p41))) +(petri (? c41 p41 (! c42 p42))) +(petri (? c42 p42 (! c43 p43))) +(petri (? c43 p43 (! c44 p44))) +(petri (? c44 p44 (! c45 p45))) +(petri (? c45 p45 (! c46 p46))) +(petri (? c46 p46 (! c47 p47))) +(petri (? c47 p47 (! c48 p48))) +(petri (? c48 p48 (! c49 p49))) +(petri (? c49 p49 (! c50 p50))) +(petri (? c50 p50 (! c51 p51))) +(petri (? c51 p51 (! c52 p52))) +(petri (? c52 p52 (! c53 p53))) +(petri (? c53 p53 (! c54 p54))) +(petri (? c54 p54 (! c55 p55))) +(petri (? c55 p55 (! c56 p56))) +(petri (? c56 p56 (! c57 p57))) +(petri (? c57 p57 (! c58 p58))) +(petri (? c58 p58 (! c59 p59))) +(petri (? c59 p59 (! c60 p60))) +(petri (? c60 p60 (! c61 p61))) +(petri (? c61 p61 (! c62 p62))) +(petri (? c62 p62 (! c63 p63))) +(petri (? c63 p63 (! c64 p64))) +(petri (? c64 p64 (! c65 p65))) +(petri (? c65 p65 (! c66 p66))) +(petri (? c66 p66 (! c67 p67))) +(petri (? c67 p67 (! c68 p68))) +(petri (? c68 p68 (! c69 p69))) +(petri (? c69 p69 (! c70 p70))) +(petri (? c70 p70 (! c71 p71))) +(petri (? c71 p71 (! c72 p72))) +(petri (? c72 p72 (! c73 p73))) +(petri (? c73 p73 (! c74 p74))) +(petri (? c74 p74 (! c75 p75))) +(petri (? c75 p75 (! c76 p76))) +(petri (? c76 p76 (! c77 p77))) +(petri (? c77 p77 (! c78 p78))) +(petri (? c78 p78 (! c79 p79))) +(petri (? c79 p79 (! c80 p80))) +(petri (? c80 p80 (! c81 p81))) +(petri (? c81 p81 (! c82 p82))) +(petri (? c82 p82 (! c83 p83))) +(petri (? c83 p83 (! c84 p84))) +(petri (? c84 p84 (! c85 p85))) +(petri (? c85 p85 (! c86 p86))) +(petri (? c86 p86 (! c87 p87))) +(petri (? c87 p87 (! c88 p88))) +(petri (? c88 p88 (! c89 p89))) +(petri (? c89 p89 (! c90 p90))) +(petri (? c90 p90 (! c91 p91))) +(petri (? c91 p91 (! c92 p92))) +(petri (? c92 p92 (! c93 p93))) +(petri (? c93 p93 (! c94 p94))) +(petri (? c94 p94 (! c95 p95))) +(petri (? c95 p95 (! c96 p96))) +(petri (? c96 p96 (! c97 p97))) +(petri (? c97 p97 (! c98 p98))) +(petri (? c98 p98 (! c99 p99))) +(petri (? c99 p99 (! c100 p100))) +(petri (? c100 p100 (! c101 p101))) +(petri (? c101 p101 (! c102 p102))) +(petri (? c102 p102 (! c103 p103))) +(petri (? c103 p103 (! c104 p104))) +(petri (? c104 p104 (! c105 p105))) +(petri (? c105 p105 (! c106 p106))) +(petri (? c106 p106 (! c107 p107))) +(petri (? c107 p107 (! c108 p108))) +(petri (? c108 p108 (! c109 p109))) +(petri (? c109 p109 (! c110 p110))) +(petri (? c110 p110 (! c111 p111))) +(petri (? c111 p111 (! c112 p112))) +(petri (? c112 p112 (! c113 p113))) +(petri (? c113 p113 (! c114 p114))) +(petri (? c114 p114 (! c115 p115))) +(petri (? c115 p115 (! c116 p116))) +(petri (? c116 p116 (! c117 p117))) +(petri (? c117 p117 (! c118 p118))) +(petri (? c118 p118 (! c119 p119))) +(petri (? c119 p119 (! c120 p120))) +(petri (? c120 p120 (! c121 p121))) +(petri (? c121 p121 (! c122 p122))) +(petri (? c122 p122 (! c123 p123))) +(petri (? c123 p123 (! c124 p124))) +(petri (? c124 p124 (! c125 p125))) +(petri (? c125 p125 (! c126 p126))) +(petri (? c126 p126 (! c127 p127))) +(petri (? c127 p127 (! c128 p128))) +(petri (? c128 p128 (! c129 p129))) +(petri (? c129 p129 (! c130 p130))) +(petri (? c130 p130 (! c131 p131))) +(petri (? c131 p131 (! c132 p132))) +(petri (? c132 p132 (! c133 p133))) +(petri (? c133 p133 (! c134 p134))) +(petri (? c134 p134 (! c135 p135))) +(petri (? c135 p135 (! c136 p136))) +(petri (? c136 p136 (! c137 p137))) +(petri (? c137 p137 (! c138 p138))) +(petri (? c138 p138 (! c139 p139))) +(petri (? c139 p139 (! c140 p140))) +(petri (? c140 p140 (! c141 p141))) +(petri (? c141 p141 (! c142 p142))) +(petri (? c142 p142 (! c143 p143))) +(petri (? c143 p143 (! c144 p144))) +(petri (? c144 p144 (! c145 p145))) +(petri (? c145 p145 (! c146 p146))) +(petri (? c146 p146 (! c147 p147))) +(petri (? c147 p147 (! c148 p148))) +(petri (? c148 p148 (! c149 p149))) +(petri (? c149 p149 (! c150 p150))) +(petri (? c150 p150 (! c151 p151))) +(petri (? c151 p151 (! c152 p152))) +(petri (? c152 p152 (! c153 p153))) +(petri (? c153 p153 (! c154 p154))) +(petri (? c154 p154 (! c155 p155))) +(petri (? c155 p155 (! c156 p156))) +(petri (? c156 p156 (! c157 p157))) +(petri (? c157 p157 (! c158 p158))) +(petri (? c158 p158 (! c159 p159))) +(petri (? c159 p159 (! c160 p160))) +(petri (? c160 p160 (! c161 p161))) +(petri (? c161 p161 (! c162 p162))) +(petri (? c162 p162 (! c163 p163))) +(petri (? c163 p163 (! c164 p164))) +(petri (? c164 p164 (! c165 p165))) +(petri (? c165 p165 (! c166 p166))) +(petri (? c166 p166 (! c167 p167))) +(petri (? c167 p167 (! c168 p168))) +(petri (? c168 p168 (! c169 p169))) +(petri (? c169 p169 (! c170 p170))) +(petri (? c170 p170 (! c171 p171))) +(petri (? c171 p171 (! c172 p172))) +(petri (? c172 p172 (! c173 p173))) +(petri (? c173 p173 (! c174 p174))) +(petri (? c174 p174 (! c175 p175))) +(petri (? c175 p175 (! c176 p176))) +(petri (? c176 p176 (! c177 p177))) +(petri (? c177 p177 (! c178 p178))) +(petri (? c178 p178 (! c179 p179))) +(petri (? c179 p179 (! c180 p180))) +(petri (? c180 p180 (! c181 p181))) +(petri (? c181 p181 (! c182 p182))) +(petri (? c182 p182 (! c183 p183))) +(petri (? c183 p183 (! c184 p184))) +(petri (? c184 p184 (! c185 p185))) +(petri (? c185 p185 (! c186 p186))) +(petri (? c186 p186 (! c187 p187))) +(petri (? c187 p187 (! c188 p188))) +(petri (? c188 p188 (! c189 p189))) +(petri (? c189 p189 (! c190 p190))) +(petri (? c190 p190 (! c191 p191))) +(petri (? c191 p191 (! c192 p192))) +(petri (? c192 p192 (! c193 p193))) +(petri (? c193 p193 (! c194 p194))) +(petri (? c194 p194 (! c195 p195))) +(petri (? c195 p195 (! c196 p196))) +(petri (? c196 p196 (! c197 p197))) +(petri (? c197 p197 (! c198 p198))) +(petri (? c198 p198 (! c199 p199))) +(petri (? c199 p199 (! c200 p200))) +(petri (? c200 p200 (! c201 p201))) +(petri (? c201 p201 (! c202 p202))) +(petri (? c202 p202 (! c203 p203))) +(petri (? c203 p203 (! c204 p204))) +(petri (? c204 p204 (! c205 p205))) +(petri (? c205 p205 (! c206 p206))) +(petri (? c206 p206 (! c207 p207))) +(petri (? c207 p207 (! c208 p208))) +(petri (? c208 p208 (! c209 p209))) +(petri (? c209 p209 (! c210 p210))) +(petri (? c210 p210 (! c211 p211))) +(petri (? c211 p211 (! c212 p212))) +(petri (? c212 p212 (! c213 p213))) +(petri (? c213 p213 (! c214 p214))) +(petri (? c214 p214 (! c215 p215))) +(petri (? c215 p215 (! c216 p216))) +(petri (? c216 p216 (! c217 p217))) +(petri (? c217 p217 (! c218 p218))) +(petri (? c218 p218 (! c219 p219))) +(petri (? c219 p219 (! c220 p220))) +(petri (? c220 p220 (! c221 p221))) +(petri (? c221 p221 (! c222 p222))) +(petri (? c222 p222 (! c223 p223))) +(petri (? c223 p223 (! c224 p224))) +(petri (? c224 p224 (! c225 p225))) +(petri (? c225 p225 (! c226 p226))) +(petri (? c226 p226 (! c227 p227))) +(petri (? c227 p227 (! c228 p228))) +(petri (? c228 p228 (! c229 p229))) +(petri (? c229 p229 (! c230 p230))) +(petri (? c230 p230 (! c231 p231))) +(petri (? c231 p231 (! c232 p232))) +(petri (? c232 p232 (! c233 p233))) +(petri (? c233 p233 (! c234 p234))) +(petri (? c234 p234 (! c235 p235))) +(petri (? c235 p235 (! c236 p236))) +(petri (? c236 p236 (! c237 p237))) +(petri (? c237 p237 (! c238 p238))) +(petri (? c238 p238 (! c239 p239))) +(petri (? c239 p239 (! c240 p240))) +(petri (? c240 p240 (! c241 p241))) +(petri (? c241 p241 (! c242 p242))) +(petri (? c242 p242 (! c243 p243))) +(petri (? c243 p243 (! c244 p244))) +(petri (? c244 p244 (! c245 p245))) +(petri (? c245 p245 (! c246 p246))) +(petri (? c246 p246 (! c247 p247))) +(petri (? c247 p247 (! c248 p248))) +(petri (? c248 p248 (! c249 p249))) +(petri (? c249 p249 (! c250 p250))) +(petri (? c250 p250 (! c251 p251))) +(petri (? c251 p251 (! c252 p252))) +(petri (? c252 p252 (! c253 p253))) +(petri (? c253 p253 (! c254 p254))) +(petri (? c254 p254 (! c255 p255))) +(petri (? c255 p255 (! c256 p256))) +(petri (? c256 p256 (! c257 p257))) +(petri (? c257 p257 (! c258 p258))) +(petri (? c258 p258 (! c259 p259))) +(petri (? c259 p259 (! c260 p260))) +(petri (? c260 p260 (! c261 p261))) +(petri (? c261 p261 (! c262 p262))) +(petri (? c262 p262 (! c263 p263))) +(petri (? c263 p263 (! c264 p264))) +(petri (? c264 p264 (! c265 p265))) +(petri (? c265 p265 (! c266 p266))) +(petri (? c266 p266 (! c267 p267))) +(petri (? c267 p267 (! c268 p268))) +(petri (? c268 p268 (! c269 p269))) +(petri (? c269 p269 (! c270 p270))) +(petri (? c270 p270 (! c271 p271))) +(petri (? c271 p271 (! c272 p272))) +(petri (? c272 p272 (! c273 p273))) +(petri (? c273 p273 (! c274 p274))) +(petri (? c274 p274 (! c275 p275))) +(petri (? c275 p275 (! c276 p276))) +(petri (? c276 p276 (! c277 p277))) +(petri (? c277 p277 (! c278 p278))) +(petri (? c278 p278 (! c279 p279))) +(petri (? c279 p279 (! c280 p280))) +(petri (? c280 p280 (! c281 p281))) +(petri (? c281 p281 (! c282 p282))) +(petri (? c282 p282 (! c283 p283))) +(petri (? c283 p283 (! c284 p284))) +(petri (? c284 p284 (! c285 p285))) +(petri (? c285 p285 (! c286 p286))) +(petri (? c286 p286 (! c287 p287))) +(petri (? c287 p287 (! c288 p288))) +(petri (? c288 p288 (! c289 p289))) +(petri (? c289 p289 (! c290 p290))) +(petri (? c290 p290 (! c291 p291))) +(petri (? c291 p291 (! c292 p292))) +(petri (? c292 p292 (! c293 p293))) +(petri (? c293 p293 (! c294 p294))) +(petri (? c294 p294 (! c295 p295))) +(petri (? c295 p295 (! c296 p296))) +(petri (? c296 p296 (! c297 p297))) +(petri (? c297 p297 (! c298 p298))) +(petri (? c298 p298 (! c299 p299))) +(petri (? c299 p299 (! c300 p300))) +(petri (? c300 p300 (! c301 p301))) +(petri (? c301 p301 (! c302 p302))) +(petri (? c302 p302 (! c303 p303))) +(petri (? c303 p303 (! c304 p304))) +(petri (? c304 p304 (! c305 p305))) +(petri (? c305 p305 (! c306 p306))) +(petri (? c306 p306 (! c307 p307))) +(petri (? c307 p307 (! c308 p308))) +(petri (? c308 p308 (! c309 p309))) +(petri (? c309 p309 (! c310 p310))) +(petri (? c310 p310 (! c311 p311))) +(petri (? c311 p311 (! c312 p312))) +(petri (? c312 p312 (! c313 p313))) +(petri (? c313 p313 (! c314 p314))) +(petri (? c314 p314 (! c315 p315))) +(petri (? c315 p315 (! c316 p316))) +(petri (? c316 p316 (! c317 p317))) +(petri (? c317 p317 (! c318 p318))) +(petri (? c318 p318 (! c319 p319))) +(petri (? c319 p319 (! c320 p320))) +(petri (? c320 p320 (! c321 p321))) +(petri (? c321 p321 (! c322 p322))) +(petri (? c322 p322 (! c323 p323))) +(petri (? c323 p323 (! c324 p324))) +(petri (? c324 p324 (! c325 p325))) +(petri (? c325 p325 (! c326 p326))) +(petri (? c326 p326 (! c327 p327))) +(petri (? c327 p327 (! c328 p328))) +(petri (? c328 p328 (! c329 p329))) +(petri (? c329 p329 (! c330 p330))) +(petri (? c330 p330 (! c331 p331))) +(petri (? c331 p331 (! c332 p332))) +(petri (? c332 p332 (! c333 p333))) +(petri (? c333 p333 (! c334 p334))) +(petri (? c334 p334 (! c335 p335))) +(petri (? c335 p335 (! c336 p336))) +(petri (? c336 p336 (! c337 p337))) +(petri (? c337 p337 (! c338 p338))) +(petri (? c338 p338 (! c339 p339))) +(petri (? c339 p339 (! c340 p340))) +(petri (? c340 p340 (! c341 p341))) +(petri (? c341 p341 (! c342 p342))) +(petri (? c342 p342 (! c343 p343))) +(petri (? c343 p343 (! c344 p344))) +(petri (? c344 p344 (! c345 p345))) +(petri (? c345 p345 (! c346 p346))) +(petri (? c346 p346 (! c347 p347))) +(petri (? c347 p347 (! c348 p348))) +(petri (? c348 p348 (! c349 p349))) +(petri (? c349 p349 (! c350 p350))) +(petri (? c350 p350 (! c351 p351))) +(petri (? c351 p351 (! c352 p352))) +(petri (? c352 p352 (! c353 p353))) +(petri (? c353 p353 (! c354 p354))) +(petri (? c354 p354 (! c355 p355))) +(petri (? c355 p355 (! c356 p356))) +(petri (? c356 p356 (! c357 p357))) +(petri (? c357 p357 (! c358 p358))) +(petri (? c358 p358 (! c359 p359))) +(petri (? c359 p359 (! c360 p360))) +(petri (? c360 p360 (! c361 p361))) +(petri (? c361 p361 (! c362 p362))) +(petri (? c362 p362 (! c363 p363))) +(petri (? c363 p363 (! c364 p364))) +(petri (? c364 p364 (! c365 p365))) +(petri (? c365 p365 (! c366 p366))) +(petri (? c366 p366 (! c367 p367))) +(petri (? c367 p367 (! c368 p368))) +(petri (? c368 p368 (! c369 p369))) +(petri (? c369 p369 (! c370 p370))) +(petri (? c370 p370 (! c371 p371))) +(petri (? c371 p371 (! c372 p372))) +(petri (? c372 p372 (! c373 p373))) +(petri (? c373 p373 (! c374 p374))) +(petri (? c374 p374 (! c375 p375))) +(petri (? c375 p375 (! c376 p376))) +(petri (? c376 p376 (! c377 p377))) +(petri (? c377 p377 (! c378 p378))) +(petri (? c378 p378 (! c379 p379))) +(petri (? c379 p379 (! c380 p380))) +(petri (? c380 p380 (! c381 p381))) +(petri (? c381 p381 (! c382 p382))) +(petri (? c382 p382 (! c383 p383))) +(petri (? c383 p383 (! c384 p384))) +(petri (? c384 p384 (! c385 p385))) +(petri (? c385 p385 (! c386 p386))) +(petri (? c386 p386 (! c387 p387))) +(petri (? c387 p387 (! c388 p388))) +(petri (? c388 p388 (! c389 p389))) +(petri (? c389 p389 (! c390 p390))) +(petri (? c390 p390 (! c391 p391))) +(petri (? c391 p391 (! c392 p392))) +(petri (? c392 p392 (! c393 p393))) +(petri (? c393 p393 (! c394 p394))) +(petri (? c394 p394 (! c395 p395))) +(petri (? c395 p395 (! c396 p396))) +(petri (? c396 p396 (! c397 p397))) +(petri (? c397 p397 (! c398 p398))) +(petri (? c398 p398 (! c399 p399))) +(petri (? c399 p399 (! c400 p400))) +(petri (? c400 p400 (! c401 p401))) +(petri (? c401 p401 (! c402 p402))) +(petri (? c402 p402 (! c403 p403))) +(petri (? c403 p403 (! c404 p404))) +(petri (? c404 p404 (! c405 p405))) +(petri (? c405 p405 (! c406 p406))) +(petri (? c406 p406 (! c407 p407))) +(petri (? c407 p407 (! c408 p408))) +(petri (? c408 p408 (! c409 p409))) +(petri (? c409 p409 (! c410 p410))) +(petri (? c410 p410 (! c411 p411))) +(petri (? c411 p411 (! c412 p412))) +(petri (? c412 p412 (! c413 p413))) +(petri (? c413 p413 (! c414 p414))) +(petri (? c414 p414 (! c415 p415))) +(petri (? c415 p415 (! c416 p416))) +(petri (? c416 p416 (! c417 p417))) +(petri (? c417 p417 (! c418 p418))) +(petri (? c418 p418 (! c419 p419))) +(petri (? c419 p419 (! c420 p420))) +(petri (? c420 p420 (! c421 p421))) +(petri (? c421 p421 (! c422 p422))) +(petri (? c422 p422 (! c423 p423))) +(petri (? c423 p423 (! c424 p424))) +(petri (? c424 p424 (! c425 p425))) +(petri (? c425 p425 (! c426 p426))) +(petri (? c426 p426 (! c427 p427))) +(petri (? c427 p427 (! c428 p428))) +(petri (? c428 p428 (! c429 p429))) +(petri (? c429 p429 (! c430 p430))) +(petri (? c430 p430 (! c431 p431))) +(petri (? c431 p431 (! c432 p432))) +(petri (? c432 p432 (! c433 p433))) +(petri (? c433 p433 (! c434 p434))) +(petri (? c434 p434 (! c435 p435))) +(petri (? c435 p435 (! c436 p436))) +(petri (? c436 p436 (! c437 p437))) +(petri (? c437 p437 (! c438 p438))) +(petri (? c438 p438 (! c439 p439))) +(petri (? c439 p439 (! c440 p440))) +(petri (? c440 p440 (! c441 p441))) +(petri (? c441 p441 (! c442 p442))) +(petri (? c442 p442 (! c443 p443))) +(petri (? c443 p443 (! c444 p444))) +(petri (? c444 p444 (! c445 p445))) +(petri (? c445 p445 (! c446 p446))) +(petri (? c446 p446 (! c447 p447))) +(petri (? c447 p447 (! c448 p448))) +(petri (? c448 p448 (! c449 p449))) +(petri (? c449 p449 (! c450 p450))) +(petri (? c450 p450 (! c451 p451))) +(petri (? c451 p451 (! c452 p452))) +(petri (? c452 p452 (! c453 p453))) +(petri (? c453 p453 (! c454 p454))) +(petri (? c454 p454 (! c455 p455))) +(petri (? c455 p455 (! c456 p456))) +(petri (? c456 p456 (! c457 p457))) +(petri (? c457 p457 (! c458 p458))) +(petri (? c458 p458 (! c459 p459))) +(petri (? c459 p459 (! c460 p460))) +(petri (? c460 p460 (! c461 p461))) +(petri (? c461 p461 (! c462 p462))) +(petri (? c462 p462 (! c463 p463))) +(petri (? c463 p463 (! c464 p464))) +(petri (? c464 p464 (! c465 p465))) +(petri (? c465 p465 (! c466 p466))) +(petri (? c466 p466 (! c467 p467))) +(petri (? c467 p467 (! c468 p468))) +(petri (? c468 p468 (! c469 p469))) +(petri (? c469 p469 (! c470 p470))) +(petri (? c470 p470 (! c471 p471))) +(petri (? c471 p471 (! c472 p472))) +(petri (? c472 p472 (! c473 p473))) +(petri (? c473 p473 (! c474 p474))) +(petri (? c474 p474 (! c475 p475))) +(petri (? c475 p475 (! c476 p476))) +(petri (? c476 p476 (! c477 p477))) +(petri (? c477 p477 (! c478 p478))) +(petri (? c478 p478 (! c479 p479))) +(petri (? c479 p479 (! c480 p480))) +(petri (? c480 p480 (! c481 p481))) +(petri (? c481 p481 (! c482 p482))) +(petri (? c482 p482 (! c483 p483))) +(petri (? c483 p483 (! c484 p484))) +(petri (? c484 p484 (! c485 p485))) +(petri (? c485 p485 (! c486 p486))) +(petri (? c486 p486 (! c487 p487))) +(petri (? c487 p487 (! c488 p488))) +(petri (? c488 p488 (! c489 p489))) +(petri (? c489 p489 (! c490 p490))) +(petri (? c490 p490 (! c491 p491))) +(petri (? c491 p491 (! c492 p492))) +(petri (? c492 p492 (! c493 p493))) +(petri (? c493 p493 (! c494 p494))) +(petri (? c494 p494 (! c495 p495))) +(petri (? c495 p495 (! c496 p496))) +(petri (? c496 p496 (! c497 p497))) +(petri (? c497 p497 (! c498 p498))) +(petri (? c498 p498 (! c499 p499))) +(petri (? c499 p499 (! c500 p500))) +(petri (? c500 p500 (! c501 p501))) +(petri (? c501 p501 (! c502 p502))) +(petri (? c502 p502 (! c503 p503))) +(petri (? c503 p503 (! c504 p504))) +(petri (? c504 p504 (! c505 p505))) +(petri (? c505 p505 (! c506 p506))) +(petri (? c506 p506 (! c507 p507))) +(petri (? c507 p507 (! c508 p508))) +(petri (? c508 p508 (! c509 p509))) +(petri (? c509 p509 (! c510 p510))) +(petri (? c510 p510 (! c511 p511))) +(petri (? c511 p511 (! c512 p512))) +(petri (? c512 p512 (! c513 p513))) +(petri (? c513 p513 (! c514 p514))) +(petri (? c514 p514 (! c515 p515))) +(petri (? c515 p515 (! c516 p516))) +(petri (? c516 p516 (! c517 p517))) +(petri (? c517 p517 (! c518 p518))) +(petri (? c518 p518 (! c519 p519))) +(petri (? c519 p519 (! c520 p520))) +(petri (? c520 p520 (! c521 p521))) +(petri (? c521 p521 (! c522 p522))) +(petri (? c522 p522 (! c523 p523))) +(petri (? c523 p523 (! c524 p524))) +(petri (? c524 p524 (! c525 p525))) +(petri (? c525 p525 (! c526 p526))) +(petri (? c526 p526 (! c527 p527))) +(petri (? c527 p527 (! c528 p528))) +(petri (? c528 p528 (! c529 p529))) +(petri (? c529 p529 (! c530 p530))) +(petri (? c530 p530 (! c531 p531))) +(petri (? c531 p531 (! c532 p532))) +(petri (? c532 p532 (! c533 p533))) +(petri (? c533 p533 (! c534 p534))) +(petri (? c534 p534 (! c535 p535))) +(petri (? c535 p535 (! c536 p536))) +(petri (? c536 p536 (! c537 p537))) +(petri (? c537 p537 (! c538 p538))) +(petri (? c538 p538 (! c539 p539))) +(petri (? c539 p539 (! c540 p540))) +(petri (? c540 p540 (! c541 p541))) +(petri (? c541 p541 (! c542 p542))) +(petri (? c542 p542 (! c543 p543))) +(petri (? c543 p543 (! c544 p544))) +(petri (? c544 p544 (! c545 p545))) +(petri (? c545 p545 (! c546 p546))) +(petri (? c546 p546 (! c547 p547))) +(petri (? c547 p547 (! c548 p548))) +(petri (? c548 p548 (! c549 p549))) +(petri (? c549 p549 (! c550 p550))) +(petri (? c550 p550 (! c551 p551))) +(petri (? c551 p551 (! c552 p552))) +(petri (? c552 p552 (! c553 p553))) +(petri (? c553 p553 (! c554 p554))) +(petri (? c554 p554 (! c555 p555))) +(petri (? c555 p555 (! c556 p556))) +(petri (? c556 p556 (! c557 p557))) +(petri (? c557 p557 (! c558 p558))) +(petri (? c558 p558 (! c559 p559))) +(petri (? c559 p559 (! c560 p560))) +(petri (? c560 p560 (! c561 p561))) +(petri (? c561 p561 (! c562 p562))) +(petri (? c562 p562 (! c563 p563))) +(petri (? c563 p563 (! c564 p564))) +(petri (? c564 p564 (! c565 p565))) +(petri (? c565 p565 (! c566 p566))) +(petri (? c566 p566 (! c567 p567))) +(petri (? c567 p567 (! c568 p568))) +(petri (? c568 p568 (! c569 p569))) +(petri (? c569 p569 (! c570 p570))) +(petri (? c570 p570 (! c571 p571))) +(petri (? c571 p571 (! c572 p572))) +(petri (? c572 p572 (! c573 p573))) +(petri (? c573 p573 (! c574 p574))) +(petri (? c574 p574 (! c575 p575))) +(petri (? c575 p575 (! c576 p576))) +(petri (? c576 p576 (! c577 p577))) +(petri (? c577 p577 (! c578 p578))) +(petri (? c578 p578 (! c579 p579))) +(petri (? c579 p579 (! c580 p580))) +(petri (? c580 p580 (! c581 p581))) +(petri (? c581 p581 (! c582 p582))) +(petri (? c582 p582 (! c583 p583))) +(petri (? c583 p583 (! c584 p584))) +(petri (? c584 p584 (! c585 p585))) +(petri (? c585 p585 (! c586 p586))) +(petri (? c586 p586 (! c587 p587))) +(petri (? c587 p587 (! c588 p588))) +(petri (? c588 p588 (! c589 p589))) +(petri (? c589 p589 (! c590 p590))) +(petri (? c590 p590 (! c591 p591))) +(petri (? c591 p591 (! c592 p592))) +(petri (? c592 p592 (! c593 p593))) +(petri (? c593 p593 (! c594 p594))) +(petri (? c594 p594 (! c595 p595))) +(petri (? c595 p595 (! c596 p596))) +(petri (? c596 p596 (! c597 p597))) +(petri (? c597 p597 (! c598 p598))) +(petri (? c598 p598 (! c599 p599))) +(petri (? c599 p599 (! c600 p600))) +(petri (? c600 p600 (! c601 p601))) +(petri (? c601 p601 (! c602 p602))) +(petri (? c602 p602 (! c603 p603))) +(petri (? c603 p603 (! c604 p604))) +(petri (? c604 p604 (! c605 p605))) +(petri (? c605 p605 (! c606 p606))) +(petri (? c606 p606 (! c607 p607))) +(petri (? c607 p607 (! c608 p608))) +(petri (? c608 p608 (! c609 p609))) +(petri (? c609 p609 (! c610 p610))) +(petri (? c610 p610 (! c611 p611))) +(petri (? c611 p611 (! c612 p612))) +(petri (? c612 p612 (! c613 p613))) +(petri (? c613 p613 (! c614 p614))) +(petri (? c614 p614 (! c615 p615))) +(petri (? c615 p615 (! c616 p616))) +(petri (? c616 p616 (! c617 p617))) +(petri (? c617 p617 (! c618 p618))) +(petri (? c618 p618 (! c619 p619))) +(petri (? c619 p619 (! c620 p620))) +(petri (? c620 p620 (! c621 p621))) +(petri (? c621 p621 (! c622 p622))) +(petri (? c622 p622 (! c623 p623))) +(petri (? c623 p623 (! c624 p624))) +(petri (? c624 p624 (! c625 p625))) +(petri (? c625 p625 (! c626 p626))) +(petri (? c626 p626 (! c627 p627))) +(petri (? c627 p627 (! c628 p628))) +(petri (? c628 p628 (! c629 p629))) +(petri (? c629 p629 (! c630 p630))) +(petri (? c630 p630 (! c631 p631))) +(petri (? c631 p631 (! c632 p632))) +(petri (? c632 p632 (! c633 p633))) +(petri (? c633 p633 (! c634 p634))) +(petri (? c634 p634 (! c635 p635))) +(petri (? c635 p635 (! c636 p636))) +(petri (? c636 p636 (! c637 p637))) +(petri (? c637 p637 (! c638 p638))) +(petri (? c638 p638 (! c639 p639))) +(petri (? c639 p639 (! c640 p640))) +(petri (? c640 p640 (! c641 p641))) +(petri (? c641 p641 (! c642 p642))) +(petri (? c642 p642 (! c643 p643))) +(petri (? c643 p643 (! c644 p644))) +(petri (? c644 p644 (! c645 p645))) +(petri (? c645 p645 (! c646 p646))) +(petri (? c646 p646 (! c647 p647))) +(petri (? c647 p647 (! c648 p648))) +(petri (? c648 p648 (! c649 p649))) +(petri (? c649 p649 (! c650 p650))) +(petri (? c650 p650 (! c651 p651))) +(petri (? c651 p651 (! c652 p652))) +(petri (? c652 p652 (! c653 p653))) +(petri (? c653 p653 (! c654 p654))) +(petri (? c654 p654 (! c655 p655))) +(petri (? c655 p655 (! c656 p656))) +(petri (? c656 p656 (! c657 p657))) +(petri (? c657 p657 (! c658 p658))) +(petri (? c658 p658 (! c659 p659))) +(petri (? c659 p659 (! c660 p660))) +(petri (? c660 p660 (! c661 p661))) +(petri (? c661 p661 (! c662 p662))) +(petri (? c662 p662 (! c663 p663))) +(petri (? c663 p663 (! c664 p664))) +(petri (? c664 p664 (! c665 p665))) +(petri (? c665 p665 (! c666 p666))) +(petri (? c666 p666 (! c667 p667))) +(petri (? c667 p667 (! c668 p668))) +(petri (? c668 p668 (! c669 p669))) +(petri (? c669 p669 (! c670 p670))) +(petri (? c670 p670 (! c671 p671))) +(petri (? c671 p671 (! c672 p672))) +(petri (? c672 p672 (! c673 p673))) +(petri (? c673 p673 (! c674 p674))) +(petri (? c674 p674 (! c675 p675))) +(petri (? c675 p675 (! c676 p676))) +(petri (? c676 p676 (! c677 p677))) +(petri (? c677 p677 (! c678 p678))) +(petri (? c678 p678 (! c679 p679))) +(petri (? c679 p679 (! c680 p680))) +(petri (? c680 p680 (! c681 p681))) +(petri (? c681 p681 (! c682 p682))) +(petri (? c682 p682 (! c683 p683))) +(petri (? c683 p683 (! c684 p684))) +(petri (? c684 p684 (! c685 p685))) +(petri (? c685 p685 (! c686 p686))) +(petri (? c686 p686 (! c687 p687))) +(petri (? c687 p687 (! c688 p688))) +(petri (? c688 p688 (! c689 p689))) +(petri (? c689 p689 (! c690 p690))) +(petri (? c690 p690 (! c691 p691))) +(petri (? c691 p691 (! c692 p692))) +(petri (? c692 p692 (! c693 p693))) +(petri (? c693 p693 (! c694 p694))) +(petri (? c694 p694 (! c695 p695))) +(petri (? c695 p695 (! c696 p696))) +(petri (? c696 p696 (! c697 p697))) +(petri (? c697 p697 (! c698 p698))) +(petri (? c698 p698 (! c699 p699))) +(petri (? c699 p699 (! c700 p700))) +(petri (? c700 p700 (! c701 p701))) +(petri (? c701 p701 (! c702 p702))) +(petri (? c702 p702 (! c703 p703))) +(petri (? c703 p703 (! c704 p704))) +(petri (? c704 p704 (! c705 p705))) +(petri (? c705 p705 (! c706 p706))) +(petri (? c706 p706 (! c707 p707))) +(petri (? c707 p707 (! c708 p708))) +(petri (? c708 p708 (! c709 p709))) +(petri (? c709 p709 (! c710 p710))) +(petri (? c710 p710 (! c711 p711))) +(petri (? c711 p711 (! c712 p712))) +(petri (? c712 p712 (! c713 p713))) +(petri (? c713 p713 (! c714 p714))) +(petri (? c714 p714 (! c715 p715))) +(petri (? c715 p715 (! c716 p716))) +(petri (? c716 p716 (! c717 p717))) +(petri (? c717 p717 (! c718 p718))) +(petri (? c718 p718 (! c719 p719))) +(petri (? c719 p719 (! c720 p720))) +(petri (? c720 p720 (! c721 p721))) +(petri (? c721 p721 (! c722 p722))) +(petri (? c722 p722 (! c723 p723))) +(petri (? c723 p723 (! c724 p724))) +(petri (? c724 p724 (! c725 p725))) +(petri (? c725 p725 (! c726 p726))) +(petri (? c726 p726 (! c727 p727))) +(petri (? c727 p727 (! c728 p728))) +(petri (? c728 p728 (! c729 p729))) +(petri (? c729 p729 (! c730 p730))) +(petri (? c730 p730 (! c731 p731))) +(petri (? c731 p731 (! c732 p732))) +(petri (? c732 p732 (! c733 p733))) +(petri (? c733 p733 (! c734 p734))) +(petri (? c734 p734 (! c735 p735))) +(petri (? c735 p735 (! c736 p736))) +(petri (? c736 p736 (! c737 p737))) +(petri (? c737 p737 (! c738 p738))) +(petri (? c738 p738 (! c739 p739))) +(petri (? c739 p739 (! c740 p740))) +(petri (? c740 p740 (! c741 p741))) +(petri (? c741 p741 (! c742 p742))) +(petri (? c742 p742 (! c743 p743))) +(petri (? c743 p743 (! c744 p744))) +(petri (? c744 p744 (! c745 p745))) +(petri (? c745 p745 (! c746 p746))) +(petri (? c746 p746 (! c747 p747))) +(petri (? c747 p747 (! c748 p748))) +(petri (? c748 p748 (! c749 p749))) +(petri (? c749 p749 (! c750 p750))) +(petri (? c750 p750 (! c751 p751))) +(petri (? c751 p751 (! c752 p752))) +(petri (? c752 p752 (! c753 p753))) +(petri (? c753 p753 (! c754 p754))) +(petri (? c754 p754 (! c755 p755))) +(petri (? c755 p755 (! c756 p756))) +(petri (? c756 p756 (! c757 p757))) +(petri (? c757 p757 (! c758 p758))) +(petri (? c758 p758 (! c759 p759))) +(petri (? c759 p759 (! c760 p760))) +(petri (? c760 p760 (! c761 p761))) +(petri (? c761 p761 (! c762 p762))) +(petri (? c762 p762 (! c763 p763))) +(petri (? c763 p763 (! c764 p764))) +(petri (? c764 p764 (! c765 p765))) +(petri (? c765 p765 (! c766 p766))) +(petri (? c766 p766 (! c767 p767))) +(petri (? c767 p767 (! c768 p768))) +(petri (? c768 p768 (! c769 p769))) +(petri (? c769 p769 (! c770 p770))) +(petri (? c770 p770 (! c771 p771))) +(petri (? c771 p771 (! c772 p772))) +(petri (? c772 p772 (! c773 p773))) +(petri (? c773 p773 (! c774 p774))) +(petri (? c774 p774 (! c775 p775))) +(petri (? c775 p775 (! c776 p776))) +(petri (? c776 p776 (! c777 p777))) +(petri (? c777 p777 (! c778 p778))) +(petri (? c778 p778 (! c779 p779))) +(petri (? c779 p779 (! c780 p780))) +(petri (? c780 p780 (! c781 p781))) +(petri (? c781 p781 (! c782 p782))) +(petri (? c782 p782 (! c783 p783))) +(petri (? c783 p783 (! c784 p784))) +(petri (? c784 p784 (! c785 p785))) +(petri (? c785 p785 (! c786 p786))) +(petri (? c786 p786 (! c787 p787))) +(petri (? c787 p787 (! c788 p788))) +(petri (? c788 p788 (! c789 p789))) +(petri (? c789 p789 (! c790 p790))) +(petri (? c790 p790 (! c791 p791))) +(petri (? c791 p791 (! c792 p792))) +(petri (? c792 p792 (! c793 p793))) +(petri (? c793 p793 (! c794 p794))) +(petri (? c794 p794 (! c795 p795))) +(petri (? c795 p795 (! c796 p796))) +(petri (? c796 p796 (! c797 p797))) +(petri (? c797 p797 (! c798 p798))) +(petri (? c798 p798 (! c799 p799))) +(petri (? c799 p799 (! c800 p800))) +(petri (? c800 p800 (! c801 p801))) +(petri (? c801 p801 (! c802 p802))) +(petri (? c802 p802 (! c803 p803))) +(petri (? c803 p803 (! c804 p804))) +(petri (? c804 p804 (! c805 p805))) +(petri (? c805 p805 (! c806 p806))) +(petri (? c806 p806 (! c807 p807))) +(petri (? c807 p807 (! c808 p808))) +(petri (? c808 p808 (! c809 p809))) +(petri (? c809 p809 (! c810 p810))) +(petri (? c810 p810 (! c811 p811))) +(petri (? c811 p811 (! c812 p812))) +(petri (? c812 p812 (! c813 p813))) +(petri (? c813 p813 (! c814 p814))) +(petri (? c814 p814 (! c815 p815))) +(petri (? c815 p815 (! c816 p816))) +(petri (? c816 p816 (! c817 p817))) +(petri (? c817 p817 (! c818 p818))) +(petri (? c818 p818 (! c819 p819))) +(petri (? c819 p819 (! c820 p820))) +(petri (? c820 p820 (! c821 p821))) +(petri (? c821 p821 (! c822 p822))) +(petri (? c822 p822 (! c823 p823))) +(petri (? c823 p823 (! c824 p824))) +(petri (? c824 p824 (! c825 p825))) +(petri (? c825 p825 (! c826 p826))) +(petri (? c826 p826 (! c827 p827))) +(petri (? c827 p827 (! c828 p828))) +(petri (? c828 p828 (! c829 p829))) +(petri (? c829 p829 (! c830 p830))) +(petri (? c830 p830 (! c831 p831))) +(petri (? c831 p831 (! c832 p832))) +(petri (? c832 p832 (! c833 p833))) +(petri (? c833 p833 (! c834 p834))) +(petri (? c834 p834 (! c835 p835))) +(petri (? c835 p835 (! c836 p836))) +(petri (? c836 p836 (! c837 p837))) +(petri (? c837 p837 (! c838 p838))) +(petri (? c838 p838 (! c839 p839))) +(petri (? c839 p839 (! c840 p840))) +(petri (? c840 p840 (! c841 p841))) +(petri (? c841 p841 (! c842 p842))) +(petri (? c842 p842 (! c843 p843))) +(petri (? c843 p843 (! c844 p844))) +(petri (? c844 p844 (! c845 p845))) +(petri (? c845 p845 (! c846 p846))) +(petri (? c846 p846 (! c847 p847))) +(petri (? c847 p847 (! c848 p848))) +(petri (? c848 p848 (! c849 p849))) +(petri (? c849 p849 (! c850 p850))) +(petri (? c850 p850 (! c851 p851))) +(petri (? c851 p851 (! c852 p852))) +(petri (? c852 p852 (! c853 p853))) +(petri (? c853 p853 (! c854 p854))) +(petri (? c854 p854 (! c855 p855))) +(petri (? c855 p855 (! c856 p856))) +(petri (? c856 p856 (! c857 p857))) +(petri (? c857 p857 (! c858 p858))) +(petri (? c858 p858 (! c859 p859))) +(petri (? c859 p859 (! c860 p860))) +(petri (? c860 p860 (! c861 p861))) +(petri (? c861 p861 (! c862 p862))) +(petri (? c862 p862 (! c863 p863))) +(petri (? c863 p863 (! c864 p864))) +(petri (? c864 p864 (! c865 p865))) +(petri (? c865 p865 (! c866 p866))) +(petri (? c866 p866 (! c867 p867))) +(petri (? c867 p867 (! c868 p868))) +(petri (? c868 p868 (! c869 p869))) +(petri (? c869 p869 (! c870 p870))) +(petri (? c870 p870 (! c871 p871))) +(petri (? c871 p871 (! c872 p872))) +(petri (? c872 p872 (! c873 p873))) +(petri (? c873 p873 (! c874 p874))) +(petri (? c874 p874 (! c875 p875))) +(petri (? c875 p875 (! c876 p876))) +(petri (? c876 p876 (! c877 p877))) +(petri (? c877 p877 (! c878 p878))) +(petri (? c878 p878 (! c879 p879))) +(petri (? c879 p879 (! c880 p880))) +(petri (? c880 p880 (! c881 p881))) +(petri (? c881 p881 (! c882 p882))) +(petri (? c882 p882 (! c883 p883))) +(petri (? c883 p883 (! c884 p884))) +(petri (? c884 p884 (! c885 p885))) +(petri (? c885 p885 (! c886 p886))) +(petri (? c886 p886 (! c887 p887))) +(petri (? c887 p887 (! c888 p888))) +(petri (? c888 p888 (! c889 p889))) +(petri (? c889 p889 (! c890 p890))) +(petri (? c890 p890 (! c891 p891))) +(petri (? c891 p891 (! c892 p892))) +(petri (? c892 p892 (! c893 p893))) +(petri (? c893 p893 (! c894 p894))) +(petri (? c894 p894 (! c895 p895))) +(petri (? c895 p895 (! c896 p896))) +(petri (? c896 p896 (! c897 p897))) +(petri (? c897 p897 (! c898 p898))) +(petri (? c898 p898 (! c899 p899))) +(petri (? c899 p899 (! c900 p900))) +(petri (? c900 p900 (! c901 p901))) +(petri (? c901 p901 (! c902 p902))) +(petri (? c902 p902 (! c903 p903))) +(petri (? c903 p903 (! c904 p904))) +(petri (? c904 p904 (! c905 p905))) +(petri (? c905 p905 (! c906 p906))) +(petri (? c906 p906 (! c907 p907))) +(petri (? c907 p907 (! c908 p908))) +(petri (? c908 p908 (! c909 p909))) +(petri (? c909 p909 (! c910 p910))) +(petri (? c910 p910 (! c911 p911))) +(petri (? c911 p911 (! c912 p912))) +(petri (? c912 p912 (! c913 p913))) +(petri (? c913 p913 (! c914 p914))) +(petri (? c914 p914 (! c915 p915))) +(petri (? c915 p915 (! c916 p916))) +(petri (? c916 p916 (! c917 p917))) +(petri (? c917 p917 (! c918 p918))) +(petri (? c918 p918 (! c919 p919))) +(petri (? c919 p919 (! c920 p920))) +(petri (? c920 p920 (! c921 p921))) +(petri (? c921 p921 (! c922 p922))) +(petri (? c922 p922 (! c923 p923))) +(petri (? c923 p923 (! c924 p924))) +(petri (? c924 p924 (! c925 p925))) +(petri (? c925 p925 (! c926 p926))) +(petri (? c926 p926 (! c927 p927))) +(petri (? c927 p927 (! c928 p928))) +(petri (? c928 p928 (! c929 p929))) +(petri (? c929 p929 (! c930 p930))) +(petri (? c930 p930 (! c931 p931))) +(petri (? c931 p931 (! c932 p932))) +(petri (? c932 p932 (! c933 p933))) +(petri (? c933 p933 (! c934 p934))) +(petri (? c934 p934 (! c935 p935))) +(petri (? c935 p935 (! c936 p936))) +(petri (? c936 p936 (! c937 p937))) +(petri (? c937 p937 (! c938 p938))) +(petri (? c938 p938 (! c939 p939))) +(petri (? c939 p939 (! c940 p940))) +(petri (? c940 p940 (! c941 p941))) +(petri (? c941 p941 (! c942 p942))) +(petri (? c942 p942 (! c943 p943))) +(petri (? c943 p943 (! c944 p944))) +(petri (? c944 p944 (! c945 p945))) +(petri (? c945 p945 (! c946 p946))) +(petri (? c946 p946 (! c947 p947))) +(petri (? c947 p947 (! c948 p948))) +(petri (? c948 p948 (! c949 p949))) +(petri (? c949 p949 (! c950 p950))) +(petri (? c950 p950 (! c951 p951))) +(petri (? c951 p951 (! c952 p952))) +(petri (? c952 p952 (! c953 p953))) +(petri (? c953 p953 (! c954 p954))) +(petri (? c954 p954 (! c955 p955))) +(petri (? c955 p955 (! c956 p956))) +(petri (? c956 p956 (! c957 p957))) +(petri (? c957 p957 (! c958 p958))) +(petri (? c958 p958 (! c959 p959))) +(petri (? c959 p959 (! c960 p960))) +(petri (? c960 p960 (! c961 p961))) +(petri (? c961 p961 (! c962 p962))) +(petri (? c962 p962 (! c963 p963))) +(petri (? c963 p963 (! c964 p964))) +(petri (? c964 p964 (! c965 p965))) +(petri (? c965 p965 (! c966 p966))) +(petri (? c966 p966 (! c967 p967))) +(petri (? c967 p967 (! c968 p968))) +(petri (? c968 p968 (! c969 p969))) +(petri (? c969 p969 (! c970 p970))) +(petri (? c970 p970 (! c971 p971))) +(petri (? c971 p971 (! c972 p972))) +(petri (? c972 p972 (! c973 p973))) +(petri (? c973 p973 (! c974 p974))) +(petri (? c974 p974 (! c975 p975))) +(petri (? c975 p975 (! c976 p976))) +(petri (? c976 p976 (! c977 p977))) +(petri (? c977 p977 (! c978 p978))) +(petri (? c978 p978 (! c979 p979))) +(petri (? c979 p979 (! c980 p980))) +(petri (? c980 p980 (! c981 p981))) +(petri (? c981 p981 (! c982 p982))) +(petri (? c982 p982 (! c983 p983))) +(petri (? c983 p983 (! c984 p984))) +(petri (? c984 p984 (! c985 p985))) +(petri (? c985 p985 (! c986 p986))) +(petri (? c986 p986 (! c987 p987))) +(petri (? c987 p987 (! c988 p988))) +(petri (? c988 p988 (! c989 p989))) +(petri (? c989 p989 (! c990 p990))) +(petri (? c990 p990 (! c991 p991))) +(petri (? c991 p991 (! c992 p992))) +(petri (? c992 p992 (! c993 p993))) +(petri (? c993 p993 (! c994 p994))) +(petri (? c994 p994 (! c995 p995))) +(petri (? c995 p995 (! c996 p996))) +(petri (? c996 p996 (! c997 p997))) +(petri (? c997 p997 (! c998 p998))) +(petri (? c998 p998 (! c999 p999))) +(petri (? c999 p999 (! c1000 p1000))) +(petri (? c1000 p1000 (! c1001 p1001))) +(petri (? c1001 p1001 (! c1002 p1002))) +(petri (? c1002 p1002 (! c1003 p1003))) +(petri (? c1003 p1003 (! c1004 p1004))) +(petri (? c1004 p1004 (! c1005 p1005))) +(petri (? c1005 p1005 (! c1006 p1006))) +(petri (? c1006 p1006 (! c1007 p1007))) +(petri (? c1007 p1007 (! c1008 p1008))) +(petri (? c1008 p1008 (! c1009 p1009))) +(petri (? c1009 p1009 (! c1010 p1010))) +(petri (? c1010 p1010 (! c1011 p1011))) +(petri (? c1011 p1011 (! c1012 p1012))) +(petri (? c1012 p1012 (! c1013 p1013))) +(petri (? c1013 p1013 (! c1014 p1014))) +(petri (? c1014 p1014 (! c1015 p1015))) +(petri (? c1015 p1015 (! c1016 p1016))) +(petri (? c1016 p1016 (! c1017 p1017))) +(petri (? c1017 p1017 (! c1018 p1018))) +(petri (? c1018 p1018 (! c1019 p1019))) +(petri (? c1019 p1019 (! c1020 p1020))) +(petri (? c1020 p1020 (! c1021 p1021))) +(petri (? c1021 p1021 (! c1022 p1022))) +(petri (? c1022 p1022 (! c1023 p1023))) +(petri (? c1023 p1023 (! c1024 p1024))) +(petri (? c1024 p1024 (! c1025 p1025))) +(petri (? c1025 p1025 (! c1026 p1026))) +(petri (? c1026 p1026 (! c1027 p1027))) +(petri (? c1027 p1027 (! c1028 p1028))) +(petri (? c1028 p1028 (! c1029 p1029))) +(petri (? c1029 p1029 (! c1030 p1030))) +(petri (? c1030 p1030 (! c1031 p1031))) +(petri (? c1031 p1031 (! c1032 p1032))) +(petri (? c1032 p1032 (! c1033 p1033))) +(petri (? c1033 p1033 (! c1034 p1034))) +(petri (? c1034 p1034 (! c1035 p1035))) +(petri (? c1035 p1035 (! c1036 p1036))) +(petri (? c1036 p1036 (! c1037 p1037))) +(petri (? c1037 p1037 (! c1038 p1038))) +(petri (? c1038 p1038 (! c1039 p1039))) +(petri (? c1039 p1039 (! c1040 p1040))) +(petri (? c1040 p1040 (! c1041 p1041))) +(petri (? c1041 p1041 (! c1042 p1042))) +(petri (? c1042 p1042 (! c1043 p1043))) +(petri (? c1043 p1043 (! c1044 p1044))) +(petri (? c1044 p1044 (! c1045 p1045))) +(petri (? c1045 p1045 (! c1046 p1046))) +(petri (? c1046 p1046 (! c1047 p1047))) +(petri (? c1047 p1047 (! c1048 p1048))) +(petri (? c1048 p1048 (! c1049 p1049))) +(petri (? c1049 p1049 (! c1050 p1050))) +(petri (? c1050 p1050 (! c1051 p1051))) +(petri (? c1051 p1051 (! c1052 p1052))) +(petri (? c1052 p1052 (! c1053 p1053))) +(petri (? c1053 p1053 (! c1054 p1054))) +(petri (? c1054 p1054 (! c1055 p1055))) +(petri (? c1055 p1055 (! c1056 p1056))) +(petri (? c1056 p1056 (! c1057 p1057))) +(petri (? c1057 p1057 (! c1058 p1058))) +(petri (? c1058 p1058 (! c1059 p1059))) +(petri (? c1059 p1059 (! c1060 p1060))) +(petri (? c1060 p1060 (! c1061 p1061))) +(petri (? c1061 p1061 (! c1062 p1062))) +(petri (? c1062 p1062 (! c1063 p1063))) +(petri (? c1063 p1063 (! c1064 p1064))) +(petri (? c1064 p1064 (! c1065 p1065))) +(petri (? c1065 p1065 (! c1066 p1066))) +(petri (? c1066 p1066 (! c1067 p1067))) +(petri (? c1067 p1067 (! c1068 p1068))) +(petri (? c1068 p1068 (! c1069 p1069))) +(petri (? c1069 p1069 (! c1070 p1070))) +(petri (? c1070 p1070 (! c1071 p1071))) +(petri (? c1071 p1071 (! c1072 p1072))) +(petri (? c1072 p1072 (! c1073 p1073))) +(petri (? c1073 p1073 (! c1074 p1074))) +(petri (? c1074 p1074 (! c1075 p1075))) +(petri (? c1075 p1075 (! c1076 p1076))) +(petri (? c1076 p1076 (! c1077 p1077))) +(petri (? c1077 p1077 (! c1078 p1078))) +(petri (? c1078 p1078 (! c1079 p1079))) +(petri (? c1079 p1079 (! c1080 p1080))) +(petri (? c1080 p1080 (! c1081 p1081))) +(petri (? c1081 p1081 (! c1082 p1082))) +(petri (? c1082 p1082 (! c1083 p1083))) +(petri (? c1083 p1083 (! c1084 p1084))) +(petri (? c1084 p1084 (! c1085 p1085))) +(petri (? c1085 p1085 (! c1086 p1086))) +(petri (? c1086 p1086 (! c1087 p1087))) +(petri (? c1087 p1087 (! c1088 p1088))) +(petri (? c1088 p1088 (! c1089 p1089))) +(petri (? c1089 p1089 (! c1090 p1090))) +(petri (? c1090 p1090 (! c1091 p1091))) +(petri (? c1091 p1091 (! c1092 p1092))) +(petri (? c1092 p1092 (! c1093 p1093))) +(petri (? c1093 p1093 (! c1094 p1094))) +(petri (? c1094 p1094 (! c1095 p1095))) +(petri (? c1095 p1095 (! c1096 p1096))) +(petri (? c1096 p1096 (! c1097 p1097))) +(petri (? c1097 p1097 (! c1098 p1098))) +(petri (? c1098 p1098 (! c1099 p1099))) +(petri (? c1099 p1099 (! c1100 p1100))) +(petri (? c1100 p1100 (! c1101 p1101))) +(petri (? c1101 p1101 (! c1102 p1102))) +(petri (? c1102 p1102 (! c1103 p1103))) +(petri (? c1103 p1103 (! c1104 p1104))) +(petri (? c1104 p1104 (! c1105 p1105))) +(petri (? c1105 p1105 (! c1106 p1106))) +(petri (? c1106 p1106 (! c1107 p1107))) +(petri (? c1107 p1107 (! c1108 p1108))) +(petri (? c1108 p1108 (! c1109 p1109))) +(petri (? c1109 p1109 (! c1110 p1110))) +(petri (? c1110 p1110 (! c1111 p1111))) +(petri (? c1111 p1111 (! c1112 p1112))) +(petri (? c1112 p1112 (! c1113 p1113))) +(petri (? c1113 p1113 (! c1114 p1114))) +(petri (? c1114 p1114 (! c1115 p1115))) +(petri (? c1115 p1115 (! c1116 p1116))) +(petri (? c1116 p1116 (! c1117 p1117))) +(petri (? c1117 p1117 (! c1118 p1118))) +(petri (? c1118 p1118 (! c1119 p1119))) +(petri (? c1119 p1119 (! c1120 p1120))) +(petri (? c1120 p1120 (! c1121 p1121))) +(petri (? c1121 p1121 (! c1122 p1122))) +(petri (? c1122 p1122 (! c1123 p1123))) +(petri (? c1123 p1123 (! c1124 p1124))) +(petri (? c1124 p1124 (! c1125 p1125))) +(petri (? c1125 p1125 (! c1126 p1126))) +(petri (? c1126 p1126 (! c1127 p1127))) +(petri (? c1127 p1127 (! c1128 p1128))) +(petri (? c1128 p1128 (! c1129 p1129))) +(petri (? c1129 p1129 (! c1130 p1130))) +(petri (? c1130 p1130 (! c1131 p1131))) +(petri (? c1131 p1131 (! c1132 p1132))) +(petri (? c1132 p1132 (! c1133 p1133))) +(petri (? c1133 p1133 (! c1134 p1134))) +(petri (? c1134 p1134 (! c1135 p1135))) +(petri (? c1135 p1135 (! c1136 p1136))) +(petri (? c1136 p1136 (! c1137 p1137))) +(petri (? c1137 p1137 (! c1138 p1138))) +(petri (? c1138 p1138 (! c1139 p1139))) +(petri (? c1139 p1139 (! c1140 p1140))) +(petri (? c1140 p1140 (! c1141 p1141))) +(petri (? c1141 p1141 (! c1142 p1142))) +(petri (? c1142 p1142 (! c1143 p1143))) +(petri (? c1143 p1143 (! c1144 p1144))) +(petri (? c1144 p1144 (! c1145 p1145))) +(petri (? c1145 p1145 (! c1146 p1146))) +(petri (? c1146 p1146 (! c1147 p1147))) +(petri (? c1147 p1147 (! c1148 p1148))) +(petri (? c1148 p1148 (! c1149 p1149))) +(petri (? c1149 p1149 (! c1150 p1150))) +(petri (? c1150 p1150 (! c1151 p1151))) +(petri (? c1151 p1151 (! c1152 p1152))) +(petri (? c1152 p1152 (! c1153 p1153))) +(petri (? c1153 p1153 (! c1154 p1154))) +(petri (? c1154 p1154 (! c1155 p1155))) +(petri (? c1155 p1155 (! c1156 p1156))) +(petri (? c1156 p1156 (! c1157 p1157))) +(petri (? c1157 p1157 (! c1158 p1158))) +(petri (? c1158 p1158 (! c1159 p1159))) +(petri (? c1159 p1159 (! c1160 p1160))) +(petri (? c1160 p1160 (! c1161 p1161))) +(petri (? c1161 p1161 (! c1162 p1162))) +(petri (? c1162 p1162 (! c1163 p1163))) +(petri (? c1163 p1163 (! c1164 p1164))) +(petri (? c1164 p1164 (! c1165 p1165))) +(petri (? c1165 p1165 (! c1166 p1166))) +(petri (? c1166 p1166 (! c1167 p1167))) +(petri (? c1167 p1167 (! c1168 p1168))) +(petri (? c1168 p1168 (! c1169 p1169))) +(petri (? c1169 p1169 (! c1170 p1170))) +(petri (? c1170 p1170 (! c1171 p1171))) +(petri (? c1171 p1171 (! c1172 p1172))) +(petri (? c1172 p1172 (! c1173 p1173))) +(petri (? c1173 p1173 (! c1174 p1174))) +(petri (? c1174 p1174 (! c1175 p1175))) +(petri (? c1175 p1175 (! c1176 p1176))) +(petri (? c1176 p1176 (! c1177 p1177))) +(petri (? c1177 p1177 (! c1178 p1178))) +(petri (? c1178 p1178 (! c1179 p1179))) +(petri (? c1179 p1179 (! c1180 p1180))) +(petri (? c1180 p1180 (! c1181 p1181))) +(petri (? c1181 p1181 (! c1182 p1182))) +(petri (? c1182 p1182 (! c1183 p1183))) +(petri (? c1183 p1183 (! c1184 p1184))) +(petri (? c1184 p1184 (! c1185 p1185))) +(petri (? c1185 p1185 (! c1186 p1186))) +(petri (? c1186 p1186 (! c1187 p1187))) +(petri (? c1187 p1187 (! c1188 p1188))) +(petri (? c1188 p1188 (! c1189 p1189))) +(petri (? c1189 p1189 (! c1190 p1190))) +(petri (? c1190 p1190 (! c1191 p1191))) +(petri (? c1191 p1191 (! c1192 p1192))) +(petri (? c1192 p1192 (! c1193 p1193))) +(petri (? c1193 p1193 (! c1194 p1194))) +(petri (? c1194 p1194 (! c1195 p1195))) +(petri (? c1195 p1195 (! c1196 p1196))) +(petri (? c1196 p1196 (! c1197 p1197))) +(petri (? c1197 p1197 (! c1198 p1198))) +(petri (? c1198 p1198 (! c1199 p1199))) +(petri (? c1199 p1199 (! c1200 p1200))) +(petri (? c1200 p1200 (! c1201 p1201))) +(petri (? c1201 p1201 (! c1202 p1202))) +(petri (? c1202 p1202 (! c1203 p1203))) +(petri (? c1203 p1203 (! c1204 p1204))) +(petri (? c1204 p1204 (! c1205 p1205))) +(petri (? c1205 p1205 (! c1206 p1206))) +(petri (? c1206 p1206 (! c1207 p1207))) +(petri (? c1207 p1207 (! c1208 p1208))) +(petri (? c1208 p1208 (! c1209 p1209))) +(petri (? c1209 p1209 (! c1210 p1210))) +(petri (? c1210 p1210 (! c1211 p1211))) +(petri (? c1211 p1211 (! c1212 p1212))) +(petri (? c1212 p1212 (! c1213 p1213))) +(petri (? c1213 p1213 (! c1214 p1214))) +(petri (? c1214 p1214 (! c1215 p1215))) +(petri (? c1215 p1215 (! c1216 p1216))) +(petri (? c1216 p1216 (! c1217 p1217))) +(petri (? c1217 p1217 (! c1218 p1218))) +(petri (? c1218 p1218 (! c1219 p1219))) +(petri (? c1219 p1219 (! c1220 p1220))) +(petri (? c1220 p1220 (! c1221 p1221))) +(petri (? c1221 p1221 (! c1222 p1222))) +(petri (? c1222 p1222 (! c1223 p1223))) +(petri (? c1223 p1223 (! c1224 p1224))) +(petri (? c1224 p1224 (! c1225 p1225))) +(petri (? c1225 p1225 (! c1226 p1226))) +(petri (? c1226 p1226 (! c1227 p1227))) +(petri (? c1227 p1227 (! c1228 p1228))) +(petri (? c1228 p1228 (! c1229 p1229))) +(petri (? c1229 p1229 (! c1230 p1230))) +(petri (? c1230 p1230 (! c1231 p1231))) +(petri (? c1231 p1231 (! c1232 p1232))) +(petri (? c1232 p1232 (! c1233 p1233))) +(petri (? c1233 p1233 (! c1234 p1234))) +(petri (? c1234 p1234 (! c1235 p1235))) +(petri (? c1235 p1235 (! c1236 p1236))) +(petri (? c1236 p1236 (! c1237 p1237))) +(petri (? c1237 p1237 (! c1238 p1238))) +(petri (? c1238 p1238 (! c1239 p1239))) +(petri (? c1239 p1239 (! c1240 p1240))) +(petri (? c1240 p1240 (! c1241 p1241))) +(petri (? c1241 p1241 (! c1242 p1242))) +(petri (? c1242 p1242 (! c1243 p1243))) +(petri (? c1243 p1243 (! c1244 p1244))) +(petri (? c1244 p1244 (! c1245 p1245))) +(petri (? c1245 p1245 (! c1246 p1246))) +(petri (? c1246 p1246 (! c1247 p1247))) +(petri (? c1247 p1247 (! c1248 p1248))) +(petri (? c1248 p1248 (! c1249 p1249))) +(petri (? c1249 p1249 (! c1250 p1250))) +(petri (? c1250 p1250 (! c1251 p1251))) +(petri (? c1251 p1251 (! c1252 p1252))) +(petri (? c1252 p1252 (! c1253 p1253))) +(petri (? c1253 p1253 (! c1254 p1254))) +(petri (? c1254 p1254 (! c1255 p1255))) +(petri (? c1255 p1255 (! c1256 p1256))) +(petri (? c1256 p1256 (! c1257 p1257))) +(petri (? c1257 p1257 (! c1258 p1258))) +(petri (? c1258 p1258 (! c1259 p1259))) +(petri (? c1259 p1259 (! c1260 p1260))) +(petri (? c1260 p1260 (! c1261 p1261))) +(petri (? c1261 p1261 (! c1262 p1262))) +(petri (? c1262 p1262 (! c1263 p1263))) +(petri (? c1263 p1263 (! c1264 p1264))) +(petri (? c1264 p1264 (! c1265 p1265))) +(petri (? c1265 p1265 (! c1266 p1266))) +(petri (? c1266 p1266 (! c1267 p1267))) +(petri (? c1267 p1267 (! c1268 p1268))) +(petri (? c1268 p1268 (! c1269 p1269))) +(petri (? c1269 p1269 (! c1270 p1270))) +(petri (? c1270 p1270 (! c1271 p1271))) +(petri (? c1271 p1271 (! c1272 p1272))) +(petri (? c1272 p1272 (! c1273 p1273))) +(petri (? c1273 p1273 (! c1274 p1274))) +(petri (? c1274 p1274 (! c1275 p1275))) +(petri (? c1275 p1275 (! c1276 p1276))) +(petri (? c1276 p1276 (! c1277 p1277))) +(petri (? c1277 p1277 (! c1278 p1278))) +(petri (? c1278 p1278 (! c1279 p1279))) +(petri (? c1279 p1279 (! c1280 p1280))) +(petri (? c1280 p1280 (! c1281 p1281))) +(petri (? c1281 p1281 (! c1282 p1282))) +(petri (? c1282 p1282 (! c1283 p1283))) +(petri (? c1283 p1283 (! c1284 p1284))) +(petri (? c1284 p1284 (! c1285 p1285))) +(petri (? c1285 p1285 (! c1286 p1286))) +(petri (? c1286 p1286 (! c1287 p1287))) +(petri (? c1287 p1287 (! c1288 p1288))) +(petri (? c1288 p1288 (! c1289 p1289))) +(petri (? c1289 p1289 (! c1290 p1290))) +(petri (? c1290 p1290 (! c1291 p1291))) +(petri (? c1291 p1291 (! c1292 p1292))) +(petri (? c1292 p1292 (! c1293 p1293))) +(petri (? c1293 p1293 (! c1294 p1294))) +(petri (? c1294 p1294 (! c1295 p1295))) +(petri (? c1295 p1295 (! c1296 p1296))) +(petri (? c1296 p1296 (! c1297 p1297))) +(petri (? c1297 p1297 (! c1298 p1298))) +(petri (? c1298 p1298 (! c1299 p1299))) +(petri (? c1299 p1299 (! c1300 p1300))) +(petri (? c1300 p1300 (! c1301 p1301))) +(petri (? c1301 p1301 (! c1302 p1302))) +(petri (? c1302 p1302 (! c1303 p1303))) +(petri (? c1303 p1303 (! c1304 p1304))) +(petri (? c1304 p1304 (! c1305 p1305))) +(petri (? c1305 p1305 (! c1306 p1306))) +(petri (? c1306 p1306 (! c1307 p1307))) +(petri (? c1307 p1307 (! c1308 p1308))) +(petri (? c1308 p1308 (! c1309 p1309))) +(petri (? c1309 p1309 (! c1310 p1310))) +(petri (? c1310 p1310 (! c1311 p1311))) +(petri (? c1311 p1311 (! c1312 p1312))) +(petri (? c1312 p1312 (! c1313 p1313))) +(petri (? c1313 p1313 (! c1314 p1314))) +(petri (? c1314 p1314 (! c1315 p1315))) +(petri (? c1315 p1315 (! c1316 p1316))) +(petri (? c1316 p1316 (! c1317 p1317))) +(petri (? c1317 p1317 (! c1318 p1318))) +(petri (? c1318 p1318 (! c1319 p1319))) +(petri (? c1319 p1319 (! c1320 p1320))) +(petri (? c1320 p1320 (! c1321 p1321))) +(petri (? c1321 p1321 (! c1322 p1322))) +(petri (? c1322 p1322 (! c1323 p1323))) +(petri (? c1323 p1323 (! c1324 p1324))) +(petri (? c1324 p1324 (! c1325 p1325))) +(petri (? c1325 p1325 (! c1326 p1326))) +(petri (? c1326 p1326 (! c1327 p1327))) +(petri (? c1327 p1327 (! c1328 p1328))) +(petri (? c1328 p1328 (! c1329 p1329))) +(petri (? c1329 p1329 (! c1330 p1330))) +(petri (? c1330 p1330 (! c1331 p1331))) +(petri (? c1331 p1331 (! c1332 p1332))) +(petri (? c1332 p1332 (! c1333 p1333))) +(petri (? c1333 p1333 (! c1334 p1334))) +(petri (? c1334 p1334 (! c1335 p1335))) +(petri (? c1335 p1335 (! c1336 p1336))) +(petri (? c1336 p1336 (! c1337 p1337))) +(petri (? c1337 p1337 (! c1338 p1338))) +(petri (? c1338 p1338 (! c1339 p1339))) +(petri (? c1339 p1339 (! c1340 p1340))) +(petri (? c1340 p1340 (! c1341 p1341))) +(petri (? c1341 p1341 (! c1342 p1342))) +(petri (? c1342 p1342 (! c1343 p1343))) +(petri (? c1343 p1343 (! c1344 p1344))) +(petri (? c1344 p1344 (! c1345 p1345))) +(petri (? c1345 p1345 (! c1346 p1346))) +(petri (? c1346 p1346 (! c1347 p1347))) +(petri (? c1347 p1347 (! c1348 p1348))) +(petri (? c1348 p1348 (! c1349 p1349))) +(petri (? c1349 p1349 (! c1350 p1350))) +(petri (? c1350 p1350 (! c1351 p1351))) +(petri (? c1351 p1351 (! c1352 p1352))) +(petri (? c1352 p1352 (! c1353 p1353))) +(petri (? c1353 p1353 (! c1354 p1354))) +(petri (? c1354 p1354 (! c1355 p1355))) +(petri (? c1355 p1355 (! c1356 p1356))) +(petri (? c1356 p1356 (! c1357 p1357))) +(petri (? c1357 p1357 (! c1358 p1358))) +(petri (? c1358 p1358 (! c1359 p1359))) +(petri (? c1359 p1359 (! c1360 p1360))) +(petri (? c1360 p1360 (! c1361 p1361))) +(petri (? c1361 p1361 (! c1362 p1362))) +(petri (? c1362 p1362 (! c1363 p1363))) +(petri (? c1363 p1363 (! c1364 p1364))) +(petri (? c1364 p1364 (! c1365 p1365))) +(petri (? c1365 p1365 (! c1366 p1366))) +(petri (? c1366 p1366 (! c1367 p1367))) +(petri (? c1367 p1367 (! c1368 p1368))) +(petri (? c1368 p1368 (! c1369 p1369))) +(petri (? c1369 p1369 (! c1370 p1370))) +(petri (? c1370 p1370 (! c1371 p1371))) +(petri (? c1371 p1371 (! c1372 p1372))) +(petri (? c1372 p1372 (! c1373 p1373))) +(petri (? c1373 p1373 (! c1374 p1374))) +(petri (? c1374 p1374 (! c1375 p1375))) +(petri (? c1375 p1375 (! c1376 p1376))) +(petri (? c1376 p1376 (! c1377 p1377))) +(petri (? c1377 p1377 (! c1378 p1378))) +(petri (? c1378 p1378 (! c1379 p1379))) +(petri (? c1379 p1379 (! c1380 p1380))) +(petri (? c1380 p1380 (! c1381 p1381))) +(petri (? c1381 p1381 (! c1382 p1382))) +(petri (? c1382 p1382 (! c1383 p1383))) +(petri (? c1383 p1383 (! c1384 p1384))) +(petri (? c1384 p1384 (! c1385 p1385))) +(petri (? c1385 p1385 (! c1386 p1386))) +(petri (? c1386 p1386 (! c1387 p1387))) +(petri (? c1387 p1387 (! c1388 p1388))) +(petri (? c1388 p1388 (! c1389 p1389))) +(petri (? c1389 p1389 (! c1390 p1390))) +(petri (? c1390 p1390 (! c1391 p1391))) +(petri (? c1391 p1391 (! c1392 p1392))) +(petri (? c1392 p1392 (! c1393 p1393))) +(petri (? c1393 p1393 (! c1394 p1394))) +(petri (? c1394 p1394 (! c1395 p1395))) +(petri (? c1395 p1395 (! c1396 p1396))) +(petri (? c1396 p1396 (! c1397 p1397))) +(petri (? c1397 p1397 (! c1398 p1398))) +(petri (? c1398 p1398 (! c1399 p1399))) +(petri (? c1399 p1399 (! c1400 p1400))) +(petri (? c1400 p1400 (! c1401 p1401))) +(petri (? c1401 p1401 (! c1402 p1402))) +(petri (? c1402 p1402 (! c1403 p1403))) +(petri (? c1403 p1403 (! c1404 p1404))) +(petri (? c1404 p1404 (! c1405 p1405))) +(petri (? c1405 p1405 (! c1406 p1406))) +(petri (? c1406 p1406 (! c1407 p1407))) +(petri (? c1407 p1407 (! c1408 p1408))) +(petri (? c1408 p1408 (! c1409 p1409))) +(petri (? c1409 p1409 (! c1410 p1410))) +(petri (? c1410 p1410 (! c1411 p1411))) +(petri (? c1411 p1411 (! c1412 p1412))) +(petri (? c1412 p1412 (! c1413 p1413))) +(petri (? c1413 p1413 (! c1414 p1414))) +(petri (? c1414 p1414 (! c1415 p1415))) +(petri (? c1415 p1415 (! c1416 p1416))) +(petri (? c1416 p1416 (! c1417 p1417))) +(petri (? c1417 p1417 (! c1418 p1418))) +(petri (? c1418 p1418 (! c1419 p1419))) +(petri (? c1419 p1419 (! c1420 p1420))) +(petri (? c1420 p1420 (! c1421 p1421))) +(petri (? c1421 p1421 (! c1422 p1422))) +(petri (? c1422 p1422 (! c1423 p1423))) +(petri (? c1423 p1423 (! c1424 p1424))) +(petri (? c1424 p1424 (! c1425 p1425))) +(petri (? c1425 p1425 (! c1426 p1426))) +(petri (? c1426 p1426 (! c1427 p1427))) +(petri (? c1427 p1427 (! c1428 p1428))) +(petri (? c1428 p1428 (! c1429 p1429))) +(petri (? c1429 p1429 (! c1430 p1430))) +(petri (? c1430 p1430 (! c1431 p1431))) +(petri (? c1431 p1431 (! c1432 p1432))) +(petri (? c1432 p1432 (! c1433 p1433))) +(petri (? c1433 p1433 (! c1434 p1434))) +(petri (? c1434 p1434 (! c1435 p1435))) +(petri (? c1435 p1435 (! c1436 p1436))) +(petri (? c1436 p1436 (! c1437 p1437))) +(petri (? c1437 p1437 (! c1438 p1438))) +(petri (? c1438 p1438 (! c1439 p1439))) +(petri (? c1439 p1439 (! c1440 p1440))) +(petri (? c1440 p1440 (! c1441 p1441))) +(petri (? c1441 p1441 (! c1442 p1442))) +(petri (? c1442 p1442 (! c1443 p1443))) +(petri (? c1443 p1443 (! c1444 p1444))) +(petri (? c1444 p1444 (! c1445 p1445))) +(petri (? c1445 p1445 (! c1446 p1446))) +(petri (? c1446 p1446 (! c1447 p1447))) +(petri (? c1447 p1447 (! c1448 p1448))) +(petri (? c1448 p1448 (! c1449 p1449))) +(petri (? c1449 p1449 (! c1450 p1450))) +(petri (? c1450 p1450 (! c1451 p1451))) +(petri (? c1451 p1451 (! c1452 p1452))) +(petri (? c1452 p1452 (! c1453 p1453))) +(petri (? c1453 p1453 (! c1454 p1454))) +(petri (? c1454 p1454 (! c1455 p1455))) +(petri (? c1455 p1455 (! c1456 p1456))) +(petri (? c1456 p1456 (! c1457 p1457))) +(petri (? c1457 p1457 (! c1458 p1458))) +(petri (? c1458 p1458 (! c1459 p1459))) +(petri (? c1459 p1459 (! c1460 p1460))) +(petri (? c1460 p1460 (! c1461 p1461))) +(petri (? c1461 p1461 (! c1462 p1462))) +(petri (? c1462 p1462 (! c1463 p1463))) +(petri (? c1463 p1463 (! c1464 p1464))) +(petri (? c1464 p1464 (! c1465 p1465))) +(petri (? c1465 p1465 (! c1466 p1466))) +(petri (? c1466 p1466 (! c1467 p1467))) +(petri (? c1467 p1467 (! c1468 p1468))) +(petri (? c1468 p1468 (! c1469 p1469))) +(petri (? c1469 p1469 (! c1470 p1470))) +(petri (? c1470 p1470 (! c1471 p1471))) +(petri (? c1471 p1471 (! c1472 p1472))) +(petri (? c1472 p1472 (! c1473 p1473))) +(petri (? c1473 p1473 (! c1474 p1474))) +(petri (? c1474 p1474 (! c1475 p1475))) +(petri (? c1475 p1475 (! c1476 p1476))) +(petri (? c1476 p1476 (! c1477 p1477))) +(petri (? c1477 p1477 (! c1478 p1478))) +(petri (? c1478 p1478 (! c1479 p1479))) +(petri (? c1479 p1479 (! c1480 p1480))) +(petri (? c1480 p1480 (! c1481 p1481))) +(petri (? c1481 p1481 (! c1482 p1482))) +(petri (? c1482 p1482 (! c1483 p1483))) +(petri (? c1483 p1483 (! c1484 p1484))) +(petri (? c1484 p1484 (! c1485 p1485))) +(petri (? c1485 p1485 (! c1486 p1486))) +(petri (? c1486 p1486 (! c1487 p1487))) +(petri (? c1487 p1487 (! c1488 p1488))) +(petri (? c1488 p1488 (! c1489 p1489))) +(petri (? c1489 p1489 (! c1490 p1490))) +(petri (? c1490 p1490 (! c1491 p1491))) +(petri (? c1491 p1491 (! c1492 p1492))) +(petri (? c1492 p1492 (! c1493 p1493))) +(petri (? c1493 p1493 (! c1494 p1494))) +(petri (? c1494 p1494 (! c1495 p1495))) +(petri (? c1495 p1495 (! c1496 p1496))) +(petri (? c1496 p1496 (! c1497 p1497))) +(petri (? c1497 p1497 (! c1498 p1498))) +(petri (? c1498 p1498 (! c1499 p1499))) +(petri (? c1499 p1499 (! c1500 p1500))) +(petri (? c1500 p1500 (! c1501 p1501))) +(petri (? c1501 p1501 (! c1502 p1502))) +(petri (? c1502 p1502 (! c1503 p1503))) +(petri (? c1503 p1503 (! c1504 p1504))) +(petri (? c1504 p1504 (! c1505 p1505))) +(petri (? c1505 p1505 (! c1506 p1506))) +(petri (? c1506 p1506 (! c1507 p1507))) +(petri (? c1507 p1507 (! c1508 p1508))) +(petri (? c1508 p1508 (! c1509 p1509))) +(petri (? c1509 p1509 (! c1510 p1510))) +(petri (? c1510 p1510 (! c1511 p1511))) +(petri (? c1511 p1511 (! c1512 p1512))) +(petri (? c1512 p1512 (! c1513 p1513))) +(petri (? c1513 p1513 (! c1514 p1514))) +(petri (? c1514 p1514 (! c1515 p1515))) +(petri (? c1515 p1515 (! c1516 p1516))) +(petri (? c1516 p1516 (! c1517 p1517))) +(petri (? c1517 p1517 (! c1518 p1518))) +(petri (? c1518 p1518 (! c1519 p1519))) +(petri (? c1519 p1519 (! c1520 p1520))) +(petri (? c1520 p1520 (! c1521 p1521))) +(petri (? c1521 p1521 (! c1522 p1522))) +(petri (? c1522 p1522 (! c1523 p1523))) +(petri (? c1523 p1523 (! c1524 p1524))) +(petri (? c1524 p1524 (! c1525 p1525))) +(petri (? c1525 p1525 (! c1526 p1526))) +(petri (? c1526 p1526 (! c1527 p1527))) +(petri (? c1527 p1527 (! c1528 p1528))) +(petri (? c1528 p1528 (! c1529 p1529))) +(petri (? c1529 p1529 (! c1530 p1530))) +(petri (? c1530 p1530 (! c1531 p1531))) +(petri (? c1531 p1531 (! c1532 p1532))) +(petri (? c1532 p1532 (! c1533 p1533))) +(petri (? c1533 p1533 (! c1534 p1534))) +(petri (? c1534 p1534 (! c1535 p1535))) +(petri (? c1535 p1535 (! c1536 p1536))) +(petri (? c1536 p1536 (! c1537 p1537))) +(petri (? c1537 p1537 (! c1538 p1538))) +(petri (? c1538 p1538 (! c1539 p1539))) +(petri (? c1539 p1539 (! c1540 p1540))) +(petri (? c1540 p1540 (! c1541 p1541))) +(petri (? c1541 p1541 (! c1542 p1542))) +(petri (? c1542 p1542 (! c1543 p1543))) +(petri (? c1543 p1543 (! c1544 p1544))) +(petri (? c1544 p1544 (! c1545 p1545))) +(petri (? c1545 p1545 (! c1546 p1546))) +(petri (? c1546 p1546 (! c1547 p1547))) +(petri (? c1547 p1547 (! c1548 p1548))) +(petri (? c1548 p1548 (! c1549 p1549))) +(petri (? c1549 p1549 (! c1550 p1550))) +(petri (? c1550 p1550 (! c1551 p1551))) +(petri (? c1551 p1551 (! c1552 p1552))) +(petri (? c1552 p1552 (! c1553 p1553))) +(petri (? c1553 p1553 (! c1554 p1554))) +(petri (? c1554 p1554 (! c1555 p1555))) +(petri (? c1555 p1555 (! c1556 p1556))) +(petri (? c1556 p1556 (! c1557 p1557))) +(petri (? c1557 p1557 (! c1558 p1558))) +(petri (? c1558 p1558 (! c1559 p1559))) +(petri (? c1559 p1559 (! c1560 p1560))) +(petri (? c1560 p1560 (! c1561 p1561))) +(petri (? c1561 p1561 (! c1562 p1562))) +(petri (? c1562 p1562 (! c1563 p1563))) +(petri (? c1563 p1563 (! c1564 p1564))) +(petri (? c1564 p1564 (! c1565 p1565))) +(petri (? c1565 p1565 (! c1566 p1566))) +(petri (? c1566 p1566 (! c1567 p1567))) +(petri (? c1567 p1567 (! c1568 p1568))) +(petri (? c1568 p1568 (! c1569 p1569))) +(petri (? c1569 p1569 (! c1570 p1570))) +(petri (? c1570 p1570 (! c1571 p1571))) +(petri (? c1571 p1571 (! c1572 p1572))) +(petri (? c1572 p1572 (! c1573 p1573))) +(petri (? c1573 p1573 (! c1574 p1574))) +(petri (? c1574 p1574 (! c1575 p1575))) +(petri (? c1575 p1575 (! c1576 p1576))) +(petri (? c1576 p1576 (! c1577 p1577))) +(petri (? c1577 p1577 (! c1578 p1578))) +(petri (? c1578 p1578 (! c1579 p1579))) +(petri (? c1579 p1579 (! c1580 p1580))) +(petri (? c1580 p1580 (! c1581 p1581))) +(petri (? c1581 p1581 (! c1582 p1582))) +(petri (? c1582 p1582 (! c1583 p1583))) +(petri (? c1583 p1583 (! c1584 p1584))) +(petri (? c1584 p1584 (! c1585 p1585))) +(petri (? c1585 p1585 (! c1586 p1586))) +(petri (? c1586 p1586 (! c1587 p1587))) +(petri (? c1587 p1587 (! c1588 p1588))) +(petri (? c1588 p1588 (! c1589 p1589))) +(petri (? c1589 p1589 (! c1590 p1590))) +(petri (? c1590 p1590 (! c1591 p1591))) +(petri (? c1591 p1591 (! c1592 p1592))) +(petri (? c1592 p1592 (! c1593 p1593))) +(petri (? c1593 p1593 (! c1594 p1594))) +(petri (? c1594 p1594 (! c1595 p1595))) +(petri (? c1595 p1595 (! c1596 p1596))) +(petri (? c1596 p1596 (! c1597 p1597))) +(petri (? c1597 p1597 (! c1598 p1598))) +(petri (? c1598 p1598 (! c1599 p1599))) +(petri (? c1599 p1599 (! c1600 p1600))) +(petri (? c1600 p1600 (! c1601 p1601))) +(petri (? c1601 p1601 (! c1602 p1602))) +(petri (? c1602 p1602 (! c1603 p1603))) +(petri (? c1603 p1603 (! c1604 p1604))) +(petri (? c1604 p1604 (! c1605 p1605))) +(petri (? c1605 p1605 (! c1606 p1606))) +(petri (? c1606 p1606 (! c1607 p1607))) +(petri (? c1607 p1607 (! c1608 p1608))) +(petri (? c1608 p1608 (! c1609 p1609))) +(petri (? c1609 p1609 (! c1610 p1610))) +(petri (? c1610 p1610 (! c1611 p1611))) +(petri (? c1611 p1611 (! c1612 p1612))) +(petri (? c1612 p1612 (! c1613 p1613))) +(petri (? c1613 p1613 (! c1614 p1614))) +(petri (? c1614 p1614 (! c1615 p1615))) +(petri (? c1615 p1615 (! c1616 p1616))) +(petri (? c1616 p1616 (! c1617 p1617))) +(petri (? c1617 p1617 (! c1618 p1618))) +(petri (? c1618 p1618 (! c1619 p1619))) +(petri (? c1619 p1619 (! c1620 p1620))) +(petri (? c1620 p1620 (! c1621 p1621))) +(petri (? c1621 p1621 (! c1622 p1622))) +(petri (? c1622 p1622 (! c1623 p1623))) +(petri (? c1623 p1623 (! c1624 p1624))) +(petri (? c1624 p1624 (! c1625 p1625))) +(petri (? c1625 p1625 (! c1626 p1626))) +(petri (? c1626 p1626 (! c1627 p1627))) +(petri (? c1627 p1627 (! c1628 p1628))) +(petri (? c1628 p1628 (! c1629 p1629))) +(petri (? c1629 p1629 (! c1630 p1630))) +(petri (? c1630 p1630 (! c1631 p1631))) +(petri (? c1631 p1631 (! c1632 p1632))) +(petri (? c1632 p1632 (! c1633 p1633))) +(petri (? c1633 p1633 (! c1634 p1634))) +(petri (? c1634 p1634 (! c1635 p1635))) +(petri (? c1635 p1635 (! c1636 p1636))) +(petri (? c1636 p1636 (! c1637 p1637))) +(petri (? c1637 p1637 (! c1638 p1638))) +(petri (? c1638 p1638 (! c1639 p1639))) +(petri (? c1639 p1639 (! c1640 p1640))) +(petri (? c1640 p1640 (! c1641 p1641))) +(petri (? c1641 p1641 (! c1642 p1642))) +(petri (? c1642 p1642 (! c1643 p1643))) +(petri (? c1643 p1643 (! c1644 p1644))) +(petri (? c1644 p1644 (! c1645 p1645))) +(petri (? c1645 p1645 (! c1646 p1646))) +(petri (? c1646 p1646 (! c1647 p1647))) +(petri (? c1647 p1647 (! c1648 p1648))) +(petri (? c1648 p1648 (! c1649 p1649))) +(petri (? c1649 p1649 (! c1650 p1650))) +(petri (? c1650 p1650 (! c1651 p1651))) +(petri (? c1651 p1651 (! c1652 p1652))) +(petri (? c1652 p1652 (! c1653 p1653))) +(petri (? c1653 p1653 (! c1654 p1654))) +(petri (? c1654 p1654 (! c1655 p1655))) +(petri (? c1655 p1655 (! c1656 p1656))) +(petri (? c1656 p1656 (! c1657 p1657))) +(petri (? c1657 p1657 (! c1658 p1658))) +(petri (? c1658 p1658 (! c1659 p1659))) +(petri (? c1659 p1659 (! c1660 p1660))) +(petri (? c1660 p1660 (! c1661 p1661))) +(petri (? c1661 p1661 (! c1662 p1662))) +(petri (? c1662 p1662 (! c1663 p1663))) +(petri (? c1663 p1663 (! c1664 p1664))) +(petri (? c1664 p1664 (! c1665 p1665))) +(petri (? c1665 p1665 (! c1666 p1666))) +(petri (? c1666 p1666 (! c1667 p1667))) +(petri (? c1667 p1667 (! c1668 p1668))) +(petri (? c1668 p1668 (! c1669 p1669))) +(petri (? c1669 p1669 (! c1670 p1670))) +(petri (? c1670 p1670 (! c1671 p1671))) +(petri (? c1671 p1671 (! c1672 p1672))) +(petri (? c1672 p1672 (! c1673 p1673))) +(petri (? c1673 p1673 (! c1674 p1674))) +(petri (? c1674 p1674 (! c1675 p1675))) +(petri (? c1675 p1675 (! c1676 p1676))) +(petri (? c1676 p1676 (! c1677 p1677))) +(petri (? c1677 p1677 (! c1678 p1678))) +(petri (? c1678 p1678 (! c1679 p1679))) +(petri (? c1679 p1679 (! c1680 p1680))) +(petri (? c1680 p1680 (! c1681 p1681))) +(petri (? c1681 p1681 (! c1682 p1682))) +(petri (? c1682 p1682 (! c1683 p1683))) +(petri (? c1683 p1683 (! c1684 p1684))) +(petri (? c1684 p1684 (! c1685 p1685))) +(petri (? c1685 p1685 (! c1686 p1686))) +(petri (? c1686 p1686 (! c1687 p1687))) +(petri (? c1687 p1687 (! c1688 p1688))) +(petri (? c1688 p1688 (! c1689 p1689))) +(petri (? c1689 p1689 (! c1690 p1690))) +(petri (? c1690 p1690 (! c1691 p1691))) +(petri (? c1691 p1691 (! c1692 p1692))) +(petri (? c1692 p1692 (! c1693 p1693))) +(petri (? c1693 p1693 (! c1694 p1694))) +(petri (? c1694 p1694 (! c1695 p1695))) +(petri (? c1695 p1695 (! c1696 p1696))) +(petri (? c1696 p1696 (! c1697 p1697))) +(petri (? c1697 p1697 (! c1698 p1698))) +(petri (? c1698 p1698 (! c1699 p1699))) +(petri (? c1699 p1699 (! c1700 p1700))) +(petri (? c1700 p1700 (! c1701 p1701))) +(petri (? c1701 p1701 (! c1702 p1702))) +(petri (? c1702 p1702 (! c1703 p1703))) +(petri (? c1703 p1703 (! c1704 p1704))) +(petri (? c1704 p1704 (! c1705 p1705))) +(petri (? c1705 p1705 (! c1706 p1706))) +(petri (? c1706 p1706 (! c1707 p1707))) +(petri (? c1707 p1707 (! c1708 p1708))) +(petri (? c1708 p1708 (! c1709 p1709))) +(petri (? c1709 p1709 (! c1710 p1710))) +(petri (? c1710 p1710 (! c1711 p1711))) +(petri (? c1711 p1711 (! c1712 p1712))) +(petri (? c1712 p1712 (! c1713 p1713))) +(petri (? c1713 p1713 (! c1714 p1714))) +(petri (? c1714 p1714 (! c1715 p1715))) +(petri (? c1715 p1715 (! c1716 p1716))) +(petri (? c1716 p1716 (! c1717 p1717))) +(petri (? c1717 p1717 (! c1718 p1718))) +(petri (? c1718 p1718 (! c1719 p1719))) +(petri (? c1719 p1719 (! c1720 p1720))) +(petri (? c1720 p1720 (! c1721 p1721))) +(petri (? c1721 p1721 (! c1722 p1722))) +(petri (? c1722 p1722 (! c1723 p1723))) +(petri (? c1723 p1723 (! c1724 p1724))) +(petri (? c1724 p1724 (! c1725 p1725))) +(petri (? c1725 p1725 (! c1726 p1726))) +(petri (? c1726 p1726 (! c1727 p1727))) +(petri (? c1727 p1727 (! c1728 p1728))) +(petri (? c1728 p1728 (! c1729 p1729))) +(petri (? c1729 p1729 (! c1730 p1730))) +(petri (? c1730 p1730 (! c1731 p1731))) +(petri (? c1731 p1731 (! c1732 p1732))) +(petri (? c1732 p1732 (! c1733 p1733))) +(petri (? c1733 p1733 (! c1734 p1734))) +(petri (? c1734 p1734 (! c1735 p1735))) +(petri (? c1735 p1735 (! c1736 p1736))) +(petri (? c1736 p1736 (! c1737 p1737))) +(petri (? c1737 p1737 (! c1738 p1738))) +(petri (? c1738 p1738 (! c1739 p1739))) +(petri (? c1739 p1739 (! c1740 p1740))) +(petri (? c1740 p1740 (! c1741 p1741))) +(petri (? c1741 p1741 (! c1742 p1742))) +(petri (? c1742 p1742 (! c1743 p1743))) +(petri (? c1743 p1743 (! c1744 p1744))) +(petri (? c1744 p1744 (! c1745 p1745))) +(petri (? c1745 p1745 (! c1746 p1746))) +(petri (? c1746 p1746 (! c1747 p1747))) +(petri (? c1747 p1747 (! c1748 p1748))) +(petri (? c1748 p1748 (! c1749 p1749))) +(petri (? c1749 p1749 (! c1750 p1750))) +(petri (? c1750 p1750 (! c1751 p1751))) +(petri (? c1751 p1751 (! c1752 p1752))) +(petri (? c1752 p1752 (! c1753 p1753))) +(petri (? c1753 p1753 (! c1754 p1754))) +(petri (? c1754 p1754 (! c1755 p1755))) +(petri (? c1755 p1755 (! c1756 p1756))) +(petri (? c1756 p1756 (! c1757 p1757))) +(petri (? c1757 p1757 (! c1758 p1758))) +(petri (? c1758 p1758 (! c1759 p1759))) +(petri (? c1759 p1759 (! c1760 p1760))) +(petri (? c1760 p1760 (! c1761 p1761))) +(petri (? c1761 p1761 (! c1762 p1762))) +(petri (? c1762 p1762 (! c1763 p1763))) +(petri (? c1763 p1763 (! c1764 p1764))) +(petri (? c1764 p1764 (! c1765 p1765))) +(petri (? c1765 p1765 (! c1766 p1766))) +(petri (? c1766 p1766 (! c1767 p1767))) +(petri (? c1767 p1767 (! c1768 p1768))) +(petri (? c1768 p1768 (! c1769 p1769))) +(petri (? c1769 p1769 (! c1770 p1770))) +(petri (? c1770 p1770 (! c1771 p1771))) +(petri (? c1771 p1771 (! c1772 p1772))) +(petri (? c1772 p1772 (! c1773 p1773))) +(petri (? c1773 p1773 (! c1774 p1774))) +(petri (? c1774 p1774 (! c1775 p1775))) +(petri (? c1775 p1775 (! c1776 p1776))) +(petri (? c1776 p1776 (! c1777 p1777))) +(petri (? c1777 p1777 (! c1778 p1778))) +(petri (? c1778 p1778 (! c1779 p1779))) +(petri (? c1779 p1779 (! c1780 p1780))) +(petri (? c1780 p1780 (! c1781 p1781))) +(petri (? c1781 p1781 (! c1782 p1782))) +(petri (? c1782 p1782 (! c1783 p1783))) +(petri (? c1783 p1783 (! c1784 p1784))) +(petri (? c1784 p1784 (! c1785 p1785))) +(petri (? c1785 p1785 (! c1786 p1786))) +(petri (? c1786 p1786 (! c1787 p1787))) +(petri (? c1787 p1787 (! c1788 p1788))) +(petri (? c1788 p1788 (! c1789 p1789))) +(petri (? c1789 p1789 (! c1790 p1790))) +(petri (? c1790 p1790 (! c1791 p1791))) +(petri (? c1791 p1791 (! c1792 p1792))) +(petri (? c1792 p1792 (! c1793 p1793))) +(petri (? c1793 p1793 (! c1794 p1794))) +(petri (? c1794 p1794 (! c1795 p1795))) +(petri (? c1795 p1795 (! c1796 p1796))) +(petri (? c1796 p1796 (! c1797 p1797))) +(petri (? c1797 p1797 (! c1798 p1798))) +(petri (? c1798 p1798 (! c1799 p1799))) +(petri (? c1799 p1799 (! c1800 p1800))) +(petri (? c1800 p1800 (! c1801 p1801))) +(petri (? c1801 p1801 (! c1802 p1802))) +(petri (? c1802 p1802 (! c1803 p1803))) +(petri (? c1803 p1803 (! c1804 p1804))) +(petri (? c1804 p1804 (! c1805 p1805))) +(petri (? c1805 p1805 (! c1806 p1806))) +(petri (? c1806 p1806 (! c1807 p1807))) +(petri (? c1807 p1807 (! c1808 p1808))) +(petri (? c1808 p1808 (! c1809 p1809))) +(petri (? c1809 p1809 (! c1810 p1810))) +(petri (? c1810 p1810 (! c1811 p1811))) +(petri (? c1811 p1811 (! c1812 p1812))) +(petri (? c1812 p1812 (! c1813 p1813))) +(petri (? c1813 p1813 (! c1814 p1814))) +(petri (? c1814 p1814 (! c1815 p1815))) +(petri (? c1815 p1815 (! c1816 p1816))) +(petri (? c1816 p1816 (! c1817 p1817))) +(petri (? c1817 p1817 (! c1818 p1818))) +(petri (? c1818 p1818 (! c1819 p1819))) +(petri (? c1819 p1819 (! c1820 p1820))) +(petri (? c1820 p1820 (! c1821 p1821))) +(petri (? c1821 p1821 (! c1822 p1822))) +(petri (? c1822 p1822 (! c1823 p1823))) +(petri (? c1823 p1823 (! c1824 p1824))) +(petri (? c1824 p1824 (! c1825 p1825))) +(petri (? c1825 p1825 (! c1826 p1826))) +(petri (? c1826 p1826 (! c1827 p1827))) +(petri (? c1827 p1827 (! c1828 p1828))) +(petri (? c1828 p1828 (! c1829 p1829))) +(petri (? c1829 p1829 (! c1830 p1830))) +(petri (? c1830 p1830 (! c1831 p1831))) +(petri (? c1831 p1831 (! c1832 p1832))) +(petri (? c1832 p1832 (! c1833 p1833))) +(petri (? c1833 p1833 (! c1834 p1834))) +(petri (? c1834 p1834 (! c1835 p1835))) +(petri (? c1835 p1835 (! c1836 p1836))) +(petri (? c1836 p1836 (! c1837 p1837))) +(petri (? c1837 p1837 (! c1838 p1838))) +(petri (? c1838 p1838 (! c1839 p1839))) +(petri (? c1839 p1839 (! c1840 p1840))) +(petri (? c1840 p1840 (! c1841 p1841))) +(petri (? c1841 p1841 (! c1842 p1842))) +(petri (? c1842 p1842 (! c1843 p1843))) +(petri (? c1843 p1843 (! c1844 p1844))) +(petri (? c1844 p1844 (! c1845 p1845))) +(petri (? c1845 p1845 (! c1846 p1846))) +(petri (? c1846 p1846 (! c1847 p1847))) +(petri (? c1847 p1847 (! c1848 p1848))) +(petri (? c1848 p1848 (! c1849 p1849))) +(petri (? c1849 p1849 (! c1850 p1850))) +(petri (? c1850 p1850 (! c1851 p1851))) +(petri (? c1851 p1851 (! c1852 p1852))) +(petri (? c1852 p1852 (! c1853 p1853))) +(petri (? c1853 p1853 (! c1854 p1854))) +(petri (? c1854 p1854 (! c1855 p1855))) +(petri (? c1855 p1855 (! c1856 p1856))) +(petri (? c1856 p1856 (! c1857 p1857))) +(petri (? c1857 p1857 (! c1858 p1858))) +(petri (? c1858 p1858 (! c1859 p1859))) +(petri (? c1859 p1859 (! c1860 p1860))) +(petri (? c1860 p1860 (! c1861 p1861))) +(petri (? c1861 p1861 (! c1862 p1862))) +(petri (? c1862 p1862 (! c1863 p1863))) +(petri (? c1863 p1863 (! c1864 p1864))) +(petri (? c1864 p1864 (! c1865 p1865))) +(petri (? c1865 p1865 (! c1866 p1866))) +(petri (? c1866 p1866 (! c1867 p1867))) +(petri (? c1867 p1867 (! c1868 p1868))) +(petri (? c1868 p1868 (! c1869 p1869))) +(petri (? c1869 p1869 (! c1870 p1870))) +(petri (? c1870 p1870 (! c1871 p1871))) +(petri (? c1871 p1871 (! c1872 p1872))) +(petri (? c1872 p1872 (! c1873 p1873))) +(petri (? c1873 p1873 (! c1874 p1874))) +(petri (? c1874 p1874 (! c1875 p1875))) +(petri (? c1875 p1875 (! c1876 p1876))) +(petri (? c1876 p1876 (! c1877 p1877))) +(petri (? c1877 p1877 (! c1878 p1878))) +(petri (? c1878 p1878 (! c1879 p1879))) +(petri (? c1879 p1879 (! c1880 p1880))) +(petri (? c1880 p1880 (! c1881 p1881))) +(petri (? c1881 p1881 (! c1882 p1882))) +(petri (? c1882 p1882 (! c1883 p1883))) +(petri (? c1883 p1883 (! c1884 p1884))) +(petri (? c1884 p1884 (! c1885 p1885))) +(petri (? c1885 p1885 (! c1886 p1886))) +(petri (? c1886 p1886 (! c1887 p1887))) +(petri (? c1887 p1887 (! c1888 p1888))) +(petri (? c1888 p1888 (! c1889 p1889))) +(petri (? c1889 p1889 (! c1890 p1890))) +(petri (? c1890 p1890 (! c1891 p1891))) +(petri (? c1891 p1891 (! c1892 p1892))) +(petri (? c1892 p1892 (! c1893 p1893))) +(petri (? c1893 p1893 (! c1894 p1894))) +(petri (? c1894 p1894 (! c1895 p1895))) +(petri (? c1895 p1895 (! c1896 p1896))) +(petri (? c1896 p1896 (! c1897 p1897))) +(petri (? c1897 p1897 (! c1898 p1898))) +(petri (? c1898 p1898 (! c1899 p1899))) +(petri (? c1899 p1899 (! c1900 p1900))) +(petri (? c1900 p1900 (! c1901 p1901))) +(petri (? c1901 p1901 (! c1902 p1902))) +(petri (? c1902 p1902 (! c1903 p1903))) +(petri (? c1903 p1903 (! c1904 p1904))) +(petri (? c1904 p1904 (! c1905 p1905))) +(petri (? c1905 p1905 (! c1906 p1906))) +(petri (? c1906 p1906 (! c1907 p1907))) +(petri (? c1907 p1907 (! c1908 p1908))) +(petri (? c1908 p1908 (! c1909 p1909))) +(petri (? c1909 p1909 (! c1910 p1910))) +(petri (? c1910 p1910 (! c1911 p1911))) +(petri (? c1911 p1911 (! c1912 p1912))) +(petri (? c1912 p1912 (! c1913 p1913))) +(petri (? c1913 p1913 (! c1914 p1914))) +(petri (? c1914 p1914 (! c1915 p1915))) +(petri (? c1915 p1915 (! c1916 p1916))) +(petri (? c1916 p1916 (! c1917 p1917))) +(petri (? c1917 p1917 (! c1918 p1918))) +(petri (? c1918 p1918 (! c1919 p1919))) +(petri (? c1919 p1919 (! c1920 p1920))) +(petri (? c1920 p1920 (! c1921 p1921))) +(petri (? c1921 p1921 (! c1922 p1922))) +(petri (? c1922 p1922 (! c1923 p1923))) +(petri (? c1923 p1923 (! c1924 p1924))) +(petri (? c1924 p1924 (! c1925 p1925))) +(petri (? c1925 p1925 (! c1926 p1926))) +(petri (? c1926 p1926 (! c1927 p1927))) +(petri (? c1927 p1927 (! c1928 p1928))) +(petri (? c1928 p1928 (! c1929 p1929))) +(petri (? c1929 p1929 (! c1930 p1930))) +(petri (? c1930 p1930 (! c1931 p1931))) +(petri (? c1931 p1931 (! c1932 p1932))) +(petri (? c1932 p1932 (! c1933 p1933))) +(petri (? c1933 p1933 (! c1934 p1934))) +(petri (? c1934 p1934 (! c1935 p1935))) +(petri (? c1935 p1935 (! c1936 p1936))) +(petri (? c1936 p1936 (! c1937 p1937))) +(petri (? c1937 p1937 (! c1938 p1938))) +(petri (? c1938 p1938 (! c1939 p1939))) +(petri (? c1939 p1939 (! c1940 p1940))) +(petri (? c1940 p1940 (! c1941 p1941))) +(petri (? c1941 p1941 (! c1942 p1942))) +(petri (? c1942 p1942 (! c1943 p1943))) +(petri (? c1943 p1943 (! c1944 p1944))) +(petri (? c1944 p1944 (! c1945 p1945))) +(petri (? c1945 p1945 (! c1946 p1946))) +(petri (? c1946 p1946 (! c1947 p1947))) +(petri (? c1947 p1947 (! c1948 p1948))) +(petri (? c1948 p1948 (! c1949 p1949))) +(petri (? c1949 p1949 (! c1950 p1950))) +(petri (? c1950 p1950 (! c1951 p1951))) +(petri (? c1951 p1951 (! c1952 p1952))) +(petri (? c1952 p1952 (! c1953 p1953))) +(petri (? c1953 p1953 (! c1954 p1954))) +(petri (? c1954 p1954 (! c1955 p1955))) +(petri (? c1955 p1955 (! c1956 p1956))) +(petri (? c1956 p1956 (! c1957 p1957))) +(petri (? c1957 p1957 (! c1958 p1958))) +(petri (? c1958 p1958 (! c1959 p1959))) +(petri (? c1959 p1959 (! c1960 p1960))) +(petri (? c1960 p1960 (! c1961 p1961))) +(petri (? c1961 p1961 (! c1962 p1962))) +(petri (? c1962 p1962 (! c1963 p1963))) +(petri (? c1963 p1963 (! c1964 p1964))) +(petri (? c1964 p1964 (! c1965 p1965))) +(petri (? c1965 p1965 (! c1966 p1966))) +(petri (? c1966 p1966 (! c1967 p1967))) +(petri (? c1967 p1967 (! c1968 p1968))) +(petri (? c1968 p1968 (! c1969 p1969))) +(petri (? c1969 p1969 (! c1970 p1970))) +(petri (? c1970 p1970 (! c1971 p1971))) +(petri (? c1971 p1971 (! c1972 p1972))) +(petri (? c1972 p1972 (! c1973 p1973))) +(petri (? c1973 p1973 (! c1974 p1974))) +(petri (? c1974 p1974 (! c1975 p1975))) +(petri (? c1975 p1975 (! c1976 p1976))) +(petri (? c1976 p1976 (! c1977 p1977))) +(petri (? c1977 p1977 (! c1978 p1978))) +(petri (? c1978 p1978 (! c1979 p1979))) +(petri (? c1979 p1979 (! c1980 p1980))) +(petri (? c1980 p1980 (! c1981 p1981))) +(petri (? c1981 p1981 (! c1982 p1982))) +(petri (? c1982 p1982 (! c1983 p1983))) +(petri (? c1983 p1983 (! c1984 p1984))) +(petri (? c1984 p1984 (! c1985 p1985))) +(petri (? c1985 p1985 (! c1986 p1986))) +(petri (? c1986 p1986 (! c1987 p1987))) +(petri (? c1987 p1987 (! c1988 p1988))) +(petri (? c1988 p1988 (! c1989 p1989))) +(petri (? c1989 p1989 (! c1990 p1990))) +(petri (? c1990 p1990 (! c1991 p1991))) +(petri (? c1991 p1991 (! c1992 p1992))) +(petri (? c1992 p1992 (! c1993 p1993))) +(petri (? c1993 p1993 (! c1994 p1994))) +(petri (? c1994 p1994 (! c1995 p1995))) +(petri (? c1995 p1995 (! c1996 p1996))) +(petri (? c1996 p1996 (! c1997 p1997))) +(petri (? c1997 p1997 (! c1998 p1998))) +(petri (? c1998 p1998 (! c1999 p1999))) +(petri (? c1999 p1999 (! c2000 p2000))) +(petri (? c2000 p2000 (! c2001 p2001))) +(petri (? c2001 p2001 (! c2002 p2002))) +(petri (? c2002 p2002 (! c2003 p2003))) +(petri (? c2003 p2003 (! c2004 p2004))) +(petri (? c2004 p2004 (! c2005 p2005))) +(petri (? c2005 p2005 (! c2006 p2006))) +(petri (? c2006 p2006 (! c2007 p2007))) +(petri (? c2007 p2007 (! c2008 p2008))) +(petri (? c2008 p2008 (! c2009 p2009))) +(petri (? c2009 p2009 (! c2010 p2010))) +(petri (? c2010 p2010 (! c2011 p2011))) +(petri (? c2011 p2011 (! c2012 p2012))) +(petri (? c2012 p2012 (! c2013 p2013))) +(petri (? c2013 p2013 (! c2014 p2014))) +(petri (? c2014 p2014 (! c2015 p2015))) +(petri (? c2015 p2015 (! c2016 p2016))) +(petri (? c2016 p2016 (! c2017 p2017))) +(petri (? c2017 p2017 (! c2018 p2018))) +(petri (? c2018 p2018 (! c2019 p2019))) +(petri (? c2019 p2019 (! c2020 p2020))) +(petri (? c2020 p2020 (! c2021 p2021))) +(petri (? c2021 p2021 (! c2022 p2022))) +(petri (? c2022 p2022 (! c2023 p2023))) +(petri (? c2023 p2023 (! c2024 p2024))) +(petri (? c2024 p2024 (! c2025 p2025))) +(petri (? c2025 p2025 (! c2026 p2026))) +(petri (? c2026 p2026 (! c2027 p2027))) +(petri (? c2027 p2027 (! c2028 p2028))) +(petri (? c2028 p2028 (! c2029 p2029))) +(petri (? c2029 p2029 (! c2030 p2030))) +(petri (? c2030 p2030 (! c2031 p2031))) +(petri (? c2031 p2031 (! c2032 p2032))) +(petri (? c2032 p2032 (! c2033 p2033))) +(petri (? c2033 p2033 (! c2034 p2034))) +(petri (? c2034 p2034 (! c2035 p2035))) +(petri (? c2035 p2035 (! c2036 p2036))) +(petri (? c2036 p2036 (! c2037 p2037))) +(petri (? c2037 p2037 (! c2038 p2038))) +(petri (? c2038 p2038 (! c2039 p2039))) +(petri (? c2039 p2039 (! c2040 p2040))) +(petri (? c2040 p2040 (! c2041 p2041))) +(petri (? c2041 p2041 (! c2042 p2042))) +(petri (? c2042 p2042 (! c2043 p2043))) +(petri (? c2043 p2043 (! c2044 p2044))) +(petri (? c2044 p2044 (! c2045 p2045))) +(petri (? c2045 p2045 (! c2046 p2046))) +(petri (? c2046 p2046 (! c2047 p2047))) +(petri (? c2047 p2047 (! c2048 p2048))) +(petri (? c2048 p2048 (! c2049 p2049))) +(petri (? c2049 p2049 (! c2050 p2050))) +(petri (? c2050 p2050 (! c2051 p2051))) +(petri (? c2051 p2051 (! c2052 p2052))) +(petri (? c2052 p2052 (! c2053 p2053))) +(petri (? c2053 p2053 (! c2054 p2054))) +(petri (? c2054 p2054 (! c2055 p2055))) +(petri (? c2055 p2055 (! c2056 p2056))) +(petri (? c2056 p2056 (! c2057 p2057))) +(petri (? c2057 p2057 (! c2058 p2058))) +(petri (? c2058 p2058 (! c2059 p2059))) +(petri (? c2059 p2059 (! c2060 p2060))) +(petri (? c2060 p2060 (! c2061 p2061))) +(petri (? c2061 p2061 (! c2062 p2062))) +(petri (? c2062 p2062 (! c2063 p2063))) +(petri (? c2063 p2063 (! c2064 p2064))) +(petri (? c2064 p2064 (! c2065 p2065))) +(petri (? c2065 p2065 (! c2066 p2066))) +(petri (? c2066 p2066 (! c2067 p2067))) +(petri (? c2067 p2067 (! c2068 p2068))) +(petri (? c2068 p2068 (! c2069 p2069))) +(petri (? c2069 p2069 (! c2070 p2070))) +(petri (? c2070 p2070 (! c2071 p2071))) +(petri (? c2071 p2071 (! c2072 p2072))) +(petri (? c2072 p2072 (! c2073 p2073))) +(petri (? c2073 p2073 (! c2074 p2074))) +(petri (? c2074 p2074 (! c2075 p2075))) +(petri (? c2075 p2075 (! c2076 p2076))) +(petri (? c2076 p2076 (! c2077 p2077))) +(petri (? c2077 p2077 (! c2078 p2078))) +(petri (? c2078 p2078 (! c2079 p2079))) +(petri (? c2079 p2079 (! c2080 p2080))) +(petri (? c2080 p2080 (! c2081 p2081))) +(petri (? c2081 p2081 (! c2082 p2082))) +(petri (? c2082 p2082 (! c2083 p2083))) +(petri (? c2083 p2083 (! c2084 p2084))) +(petri (? c2084 p2084 (! c2085 p2085))) +(petri (? c2085 p2085 (! c2086 p2086))) +(petri (? c2086 p2086 (! c2087 p2087))) +(petri (? c2087 p2087 (! c2088 p2088))) +(petri (? c2088 p2088 (! c2089 p2089))) +(petri (? c2089 p2089 (! c2090 p2090))) +(petri (? c2090 p2090 (! c2091 p2091))) +(petri (? c2091 p2091 (! c2092 p2092))) +(petri (? c2092 p2092 (! c2093 p2093))) +(petri (? c2093 p2093 (! c2094 p2094))) +(petri (? c2094 p2094 (! c2095 p2095))) +(petri (? c2095 p2095 (! c2096 p2096))) +(petri (? c2096 p2096 (! c2097 p2097))) +(petri (? c2097 p2097 (! c2098 p2098))) +(petri (? c2098 p2098 (! c2099 p2099))) +(petri (? c2099 p2099 (! c2100 p2100))) +(petri (? c2100 p2100 (! c2101 p2101))) +(petri (? c2101 p2101 (! c2102 p2102))) +(petri (? c2102 p2102 (! c2103 p2103))) +(petri (? c2103 p2103 (! c2104 p2104))) +(petri (? c2104 p2104 (! c2105 p2105))) +(petri (? c2105 p2105 (! c2106 p2106))) +(petri (? c2106 p2106 (! c2107 p2107))) +(petri (? c2107 p2107 (! c2108 p2108))) +(petri (? c2108 p2108 (! c2109 p2109))) +(petri (? c2109 p2109 (! c2110 p2110))) +(petri (? c2110 p2110 (! c2111 p2111))) +(petri (? c2111 p2111 (! c2112 p2112))) +(petri (? c2112 p2112 (! c2113 p2113))) +(petri (? c2113 p2113 (! c2114 p2114))) +(petri (? c2114 p2114 (! c2115 p2115))) +(petri (? c2115 p2115 (! c2116 p2116))) +(petri (? c2116 p2116 (! c2117 p2117))) +(petri (? c2117 p2117 (! c2118 p2118))) +(petri (? c2118 p2118 (! c2119 p2119))) +(petri (? c2119 p2119 (! c2120 p2120))) +(petri (? c2120 p2120 (! c2121 p2121))) +(petri (? c2121 p2121 (! c2122 p2122))) +(petri (? c2122 p2122 (! c2123 p2123))) +(petri (? c2123 p2123 (! c2124 p2124))) +(petri (? c2124 p2124 (! c2125 p2125))) +(petri (? c2125 p2125 (! c2126 p2126))) +(petri (? c2126 p2126 (! c2127 p2127))) +(petri (? c2127 p2127 (! c2128 p2128))) +(petri (? c2128 p2128 (! c2129 p2129))) +(petri (? c2129 p2129 (! c2130 p2130))) +(petri (? c2130 p2130 (! c2131 p2131))) +(petri (? c2131 p2131 (! c2132 p2132))) +(petri (? c2132 p2132 (! c2133 p2133))) +(petri (? c2133 p2133 (! c2134 p2134))) +(petri (? c2134 p2134 (! c2135 p2135))) +(petri (? c2135 p2135 (! c2136 p2136))) +(petri (? c2136 p2136 (! c2137 p2137))) +(petri (? c2137 p2137 (! c2138 p2138))) +(petri (? c2138 p2138 (! c2139 p2139))) +(petri (? c2139 p2139 (! c2140 p2140))) +(petri (? c2140 p2140 (! c2141 p2141))) +(petri (? c2141 p2141 (! c2142 p2142))) +(petri (? c2142 p2142 (! c2143 p2143))) +(petri (? c2143 p2143 (! c2144 p2144))) +(petri (? c2144 p2144 (! c2145 p2145))) +(petri (? c2145 p2145 (! c2146 p2146))) +(petri (? c2146 p2146 (! c2147 p2147))) +(petri (? c2147 p2147 (! c2148 p2148))) +(petri (? c2148 p2148 (! c2149 p2149))) +(petri (? c2149 p2149 (! c2150 p2150))) +(petri (? c2150 p2150 (! c2151 p2151))) +(petri (? c2151 p2151 (! c2152 p2152))) +(petri (? c2152 p2152 (! c2153 p2153))) +(petri (? c2153 p2153 (! c2154 p2154))) +(petri (? c2154 p2154 (! c2155 p2155))) +(petri (? c2155 p2155 (! c2156 p2156))) +(petri (? c2156 p2156 (! c2157 p2157))) +(petri (? c2157 p2157 (! c2158 p2158))) +(petri (? c2158 p2158 (! c2159 p2159))) +(petri (? c2159 p2159 (! c2160 p2160))) +(petri (? c2160 p2160 (! c2161 p2161))) +(petri (? c2161 p2161 (! c2162 p2162))) +(petri (? c2162 p2162 (! c2163 p2163))) +(petri (? c2163 p2163 (! c2164 p2164))) +(petri (? c2164 p2164 (! c2165 p2165))) +(petri (? c2165 p2165 (! c2166 p2166))) +(petri (? c2166 p2166 (! c2167 p2167))) +(petri (? c2167 p2167 (! c2168 p2168))) +(petri (? c2168 p2168 (! c2169 p2169))) +(petri (? c2169 p2169 (! c2170 p2170))) +(petri (? c2170 p2170 (! c2171 p2171))) +(petri (? c2171 p2171 (! c2172 p2172))) +(petri (? c2172 p2172 (! c2173 p2173))) +(petri (? c2173 p2173 (! c2174 p2174))) +(petri (? c2174 p2174 (! c2175 p2175))) +(petri (? c2175 p2175 (! c2176 p2176))) +(petri (? c2176 p2176 (! c2177 p2177))) +(petri (? c2177 p2177 (! c2178 p2178))) +(petri (? c2178 p2178 (! c2179 p2179))) +(petri (? c2179 p2179 (! c2180 p2180))) +(petri (? c2180 p2180 (! c2181 p2181))) +(petri (? c2181 p2181 (! c2182 p2182))) +(petri (? c2182 p2182 (! c2183 p2183))) +(petri (? c2183 p2183 (! c2184 p2184))) +(petri (? c2184 p2184 (! c2185 p2185))) +(petri (? c2185 p2185 (! c2186 p2186))) +(petri (? c2186 p2186 (! c2187 p2187))) +(petri (? c2187 p2187 (! c2188 p2188))) +(petri (? c2188 p2188 (! c2189 p2189))) +(petri (? c2189 p2189 (! c2190 p2190))) +(petri (? c2190 p2190 (! c2191 p2191))) +(petri (? c2191 p2191 (! c2192 p2192))) +(petri (? c2192 p2192 (! c2193 p2193))) +(petri (? c2193 p2193 (! c2194 p2194))) +(petri (? c2194 p2194 (! c2195 p2195))) +(petri (? c2195 p2195 (! c2196 p2196))) +(petri (? c2196 p2196 (! c2197 p2197))) +(petri (? c2197 p2197 (! c2198 p2198))) +(petri (? c2198 p2198 (! c2199 p2199))) +(petri (? c2199 p2199 (! c2200 p2200))) +(petri (? c2200 p2200 (! c2201 p2201))) +(petri (? c2201 p2201 (! c2202 p2202))) +(petri (? c2202 p2202 (! c2203 p2203))) +(petri (? c2203 p2203 (! c2204 p2204))) +(petri (? c2204 p2204 (! c2205 p2205))) +(petri (? c2205 p2205 (! c2206 p2206))) +(petri (? c2206 p2206 (! c2207 p2207))) +(petri (? c2207 p2207 (! c2208 p2208))) +(petri (? c2208 p2208 (! c2209 p2209))) +(petri (? c2209 p2209 (! c2210 p2210))) +(petri (? c2210 p2210 (! c2211 p2211))) +(petri (? c2211 p2211 (! c2212 p2212))) +(petri (? c2212 p2212 (! c2213 p2213))) +(petri (? c2213 p2213 (! c2214 p2214))) +(petri (? c2214 p2214 (! c2215 p2215))) +(petri (? c2215 p2215 (! c2216 p2216))) +(petri (? c2216 p2216 (! c2217 p2217))) +(petri (? c2217 p2217 (! c2218 p2218))) +(petri (? c2218 p2218 (! c2219 p2219))) +(petri (? c2219 p2219 (! c2220 p2220))) +(petri (? c2220 p2220 (! c2221 p2221))) +(petri (? c2221 p2221 (! c2222 p2222))) +(petri (? c2222 p2222 (! c2223 p2223))) +(petri (? c2223 p2223 (! c2224 p2224))) +(petri (? c2224 p2224 (! c2225 p2225))) +(petri (? c2225 p2225 (! c2226 p2226))) +(petri (? c2226 p2226 (! c2227 p2227))) +(petri (? c2227 p2227 (! c2228 p2228))) +(petri (? c2228 p2228 (! c2229 p2229))) +(petri (? c2229 p2229 (! c2230 p2230))) +(petri (? c2230 p2230 (! c2231 p2231))) +(petri (? c2231 p2231 (! c2232 p2232))) +(petri (? c2232 p2232 (! c2233 p2233))) +(petri (? c2233 p2233 (! c2234 p2234))) +(petri (? c2234 p2234 (! c2235 p2235))) +(petri (? c2235 p2235 (! c2236 p2236))) +(petri (? c2236 p2236 (! c2237 p2237))) +(petri (? c2237 p2237 (! c2238 p2238))) +(petri (? c2238 p2238 (! c2239 p2239))) +(petri (? c2239 p2239 (! c2240 p2240))) +(petri (? c2240 p2240 (! c2241 p2241))) +(petri (? c2241 p2241 (! c2242 p2242))) +(petri (? c2242 p2242 (! c2243 p2243))) +(petri (? c2243 p2243 (! c2244 p2244))) +(petri (? c2244 p2244 (! c2245 p2245))) +(petri (? c2245 p2245 (! c2246 p2246))) +(petri (? c2246 p2246 (! c2247 p2247))) +(petri (? c2247 p2247 (! c2248 p2248))) +(petri (? c2248 p2248 (! c2249 p2249))) +(petri (? c2249 p2249 (! c2250 p2250))) +(petri (? c2250 p2250 (! c2251 p2251))) +(petri (? c2251 p2251 (! c2252 p2252))) +(petri (? c2252 p2252 (! c2253 p2253))) +(petri (? c2253 p2253 (! c2254 p2254))) +(petri (? c2254 p2254 (! c2255 p2255))) +(petri (? c2255 p2255 (! c2256 p2256))) +(petri (? c2256 p2256 (! c2257 p2257))) +(petri (? c2257 p2257 (! c2258 p2258))) +(petri (? c2258 p2258 (! c2259 p2259))) +(petri (? c2259 p2259 (! c2260 p2260))) +(petri (? c2260 p2260 (! c2261 p2261))) +(petri (? c2261 p2261 (! c2262 p2262))) +(petri (? c2262 p2262 (! c2263 p2263))) +(petri (? c2263 p2263 (! c2264 p2264))) +(petri (? c2264 p2264 (! c2265 p2265))) +(petri (? c2265 p2265 (! c2266 p2266))) +(petri (? c2266 p2266 (! c2267 p2267))) +(petri (? c2267 p2267 (! c2268 p2268))) +(petri (? c2268 p2268 (! c2269 p2269))) +(petri (? c2269 p2269 (! c2270 p2270))) +(petri (? c2270 p2270 (! c2271 p2271))) +(petri (? c2271 p2271 (! c2272 p2272))) +(petri (? c2272 p2272 (! c2273 p2273))) +(petri (? c2273 p2273 (! c2274 p2274))) +(petri (? c2274 p2274 (! c2275 p2275))) +(petri (? c2275 p2275 (! c2276 p2276))) +(petri (? c2276 p2276 (! c2277 p2277))) +(petri (? c2277 p2277 (! c2278 p2278))) +(petri (? c2278 p2278 (! c2279 p2279))) +(petri (? c2279 p2279 (! c2280 p2280))) +(petri (? c2280 p2280 (! c2281 p2281))) +(petri (? c2281 p2281 (! c2282 p2282))) +(petri (? c2282 p2282 (! c2283 p2283))) +(petri (? c2283 p2283 (! c2284 p2284))) +(petri (? c2284 p2284 (! c2285 p2285))) +(petri (? c2285 p2285 (! c2286 p2286))) +(petri (? c2286 p2286 (! c2287 p2287))) +(petri (? c2287 p2287 (! c2288 p2288))) +(petri (? c2288 p2288 (! c2289 p2289))) +(petri (? c2289 p2289 (! c2290 p2290))) +(petri (? c2290 p2290 (! c2291 p2291))) +(petri (? c2291 p2291 (! c2292 p2292))) +(petri (? c2292 p2292 (! c2293 p2293))) +(petri (? c2293 p2293 (! c2294 p2294))) +(petri (? c2294 p2294 (! c2295 p2295))) +(petri (? c2295 p2295 (! c2296 p2296))) +(petri (? c2296 p2296 (! c2297 p2297))) +(petri (? c2297 p2297 (! c2298 p2298))) +(petri (? c2298 p2298 (! c2299 p2299))) +(petri (? c2299 p2299 (! c2300 p2300))) +(petri (? c2300 p2300 (! c2301 p2301))) +(petri (? c2301 p2301 (! c2302 p2302))) +(petri (? c2302 p2302 (! c2303 p2303))) +(petri (? c2303 p2303 (! c2304 p2304))) +(petri (? c2304 p2304 (! c2305 p2305))) +(petri (? c2305 p2305 (! c2306 p2306))) +(petri (? c2306 p2306 (! c2307 p2307))) +(petri (? c2307 p2307 (! c2308 p2308))) +(petri (? c2308 p2308 (! c2309 p2309))) +(petri (? c2309 p2309 (! c2310 p2310))) +(petri (? c2310 p2310 (! c2311 p2311))) +(petri (? c2311 p2311 (! c2312 p2312))) +(petri (? c2312 p2312 (! c2313 p2313))) +(petri (? c2313 p2313 (! c2314 p2314))) +(petri (? c2314 p2314 (! c2315 p2315))) +(petri (? c2315 p2315 (! c2316 p2316))) +(petri (? c2316 p2316 (! c2317 p2317))) +(petri (? c2317 p2317 (! c2318 p2318))) +(petri (? c2318 p2318 (! c2319 p2319))) +(petri (? c2319 p2319 (! c2320 p2320))) +(petri (? c2320 p2320 (! c2321 p2321))) +(petri (? c2321 p2321 (! c2322 p2322))) +(petri (? c2322 p2322 (! c2323 p2323))) +(petri (? c2323 p2323 (! c2324 p2324))) +(petri (? c2324 p2324 (! c2325 p2325))) +(petri (? c2325 p2325 (! c2326 p2326))) +(petri (? c2326 p2326 (! c2327 p2327))) +(petri (? c2327 p2327 (! c2328 p2328))) +(petri (? c2328 p2328 (! c2329 p2329))) +(petri (? c2329 p2329 (! c2330 p2330))) +(petri (? c2330 p2330 (! c2331 p2331))) +(petri (? c2331 p2331 (! c2332 p2332))) +(petri (? c2332 p2332 (! c2333 p2333))) +(petri (? c2333 p2333 (! c2334 p2334))) +(petri (? c2334 p2334 (! c2335 p2335))) +(petri (? c2335 p2335 (! c2336 p2336))) +(petri (? c2336 p2336 (! c2337 p2337))) +(petri (? c2337 p2337 (! c2338 p2338))) +(petri (? c2338 p2338 (! c2339 p2339))) +(petri (? c2339 p2339 (! c2340 p2340))) +(petri (? c2340 p2340 (! c2341 p2341))) +(petri (? c2341 p2341 (! c2342 p2342))) +(petri (? c2342 p2342 (! c2343 p2343))) +(petri (? c2343 p2343 (! c2344 p2344))) +(petri (? c2344 p2344 (! c2345 p2345))) +(petri (? c2345 p2345 (! c2346 p2346))) +(petri (? c2346 p2346 (! c2347 p2347))) +(petri (? c2347 p2347 (! c2348 p2348))) +(petri (? c2348 p2348 (! c2349 p2349))) +(petri (? c2349 p2349 (! c2350 p2350))) +(petri (? c2350 p2350 (! c2351 p2351))) +(petri (? c2351 p2351 (! c2352 p2352))) +(petri (? c2352 p2352 (! c2353 p2353))) +(petri (? c2353 p2353 (! c2354 p2354))) +(petri (? c2354 p2354 (! c2355 p2355))) +(petri (? c2355 p2355 (! c2356 p2356))) +(petri (? c2356 p2356 (! c2357 p2357))) +(petri (? c2357 p2357 (! c2358 p2358))) +(petri (? c2358 p2358 (! c2359 p2359))) +(petri (? c2359 p2359 (! c2360 p2360))) +(petri (? c2360 p2360 (! c2361 p2361))) +(petri (? c2361 p2361 (! c2362 p2362))) +(petri (? c2362 p2362 (! c2363 p2363))) +(petri (? c2363 p2363 (! c2364 p2364))) +(petri (? c2364 p2364 (! c2365 p2365))) +(petri (? c2365 p2365 (! c2366 p2366))) +(petri (? c2366 p2366 (! c2367 p2367))) +(petri (? c2367 p2367 (! c2368 p2368))) +(petri (? c2368 p2368 (! c2369 p2369))) +(petri (? c2369 p2369 (! c2370 p2370))) +(petri (? c2370 p2370 (! c2371 p2371))) +(petri (? c2371 p2371 (! c2372 p2372))) +(petri (? c2372 p2372 (! c2373 p2373))) +(petri (? c2373 p2373 (! c2374 p2374))) +(petri (? c2374 p2374 (! c2375 p2375))) +(petri (? c2375 p2375 (! c2376 p2376))) +(petri (? c2376 p2376 (! c2377 p2377))) +(petri (? c2377 p2377 (! c2378 p2378))) +(petri (? c2378 p2378 (! c2379 p2379))) +(petri (? c2379 p2379 (! c2380 p2380))) +(petri (? c2380 p2380 (! c2381 p2381))) +(petri (? c2381 p2381 (! c2382 p2382))) +(petri (? c2382 p2382 (! c2383 p2383))) +(petri (? c2383 p2383 (! c2384 p2384))) +(petri (? c2384 p2384 (! c2385 p2385))) +(petri (? c2385 p2385 (! c2386 p2386))) +(petri (? c2386 p2386 (! c2387 p2387))) +(petri (? c2387 p2387 (! c2388 p2388))) +(petri (? c2388 p2388 (! c2389 p2389))) +(petri (? c2389 p2389 (! c2390 p2390))) +(petri (? c2390 p2390 (! c2391 p2391))) +(petri (? c2391 p2391 (! c2392 p2392))) +(petri (? c2392 p2392 (! c2393 p2393))) +(petri (? c2393 p2393 (! c2394 p2394))) +(petri (? c2394 p2394 (! c2395 p2395))) +(petri (? c2395 p2395 (! c2396 p2396))) +(petri (? c2396 p2396 (! c2397 p2397))) +(petri (? c2397 p2397 (! c2398 p2398))) +(petri (? c2398 p2398 (! c2399 p2399))) +(petri (? c2399 p2399 (! c2400 p2400))) +(petri (? c2400 p2400 (! c2401 p2401))) +(petri (? c2401 p2401 (! c2402 p2402))) +(petri (? c2402 p2402 (! c2403 p2403))) +(petri (? c2403 p2403 (! c2404 p2404))) +(petri (? c2404 p2404 (! c2405 p2405))) +(petri (? c2405 p2405 (! c2406 p2406))) +(petri (? c2406 p2406 (! c2407 p2407))) +(petri (? c2407 p2407 (! c2408 p2408))) +(petri (? c2408 p2408 (! c2409 p2409))) +(petri (? c2409 p2409 (! c2410 p2410))) +(petri (? c2410 p2410 (! c2411 p2411))) +(petri (? c2411 p2411 (! c2412 p2412))) +(petri (? c2412 p2412 (! c2413 p2413))) +(petri (? c2413 p2413 (! c2414 p2414))) +(petri (? c2414 p2414 (! c2415 p2415))) +(petri (? c2415 p2415 (! c2416 p2416))) +(petri (? c2416 p2416 (! c2417 p2417))) +(petri (? c2417 p2417 (! c2418 p2418))) +(petri (? c2418 p2418 (! c2419 p2419))) +(petri (? c2419 p2419 (! c2420 p2420))) +(petri (? c2420 p2420 (! c2421 p2421))) +(petri (? c2421 p2421 (! c2422 p2422))) +(petri (? c2422 p2422 (! c2423 p2423))) +(petri (? c2423 p2423 (! c2424 p2424))) +(petri (? c2424 p2424 (! c2425 p2425))) +(petri (? c2425 p2425 (! c2426 p2426))) +(petri (? c2426 p2426 (! c2427 p2427))) +(petri (? c2427 p2427 (! c2428 p2428))) +(petri (? c2428 p2428 (! c2429 p2429))) +(petri (? c2429 p2429 (! c2430 p2430))) +(petri (? c2430 p2430 (! c2431 p2431))) +(petri (? c2431 p2431 (! c2432 p2432))) +(petri (? c2432 p2432 (! c2433 p2433))) +(petri (? c2433 p2433 (! c2434 p2434))) +(petri (? c2434 p2434 (! c2435 p2435))) +(petri (? c2435 p2435 (! c2436 p2436))) +(petri (? c2436 p2436 (! c2437 p2437))) +(petri (? c2437 p2437 (! c2438 p2438))) +(petri (? c2438 p2438 (! c2439 p2439))) +(petri (? c2439 p2439 (! c2440 p2440))) +(petri (? c2440 p2440 (! c2441 p2441))) +(petri (? c2441 p2441 (! c2442 p2442))) +(petri (? c2442 p2442 (! c2443 p2443))) +(petri (? c2443 p2443 (! c2444 p2444))) +(petri (? c2444 p2444 (! c2445 p2445))) +(petri (? c2445 p2445 (! c2446 p2446))) +(petri (? c2446 p2446 (! c2447 p2447))) +(petri (? c2447 p2447 (! c2448 p2448))) +(petri (? c2448 p2448 (! c2449 p2449))) +(petri (? c2449 p2449 (! c2450 p2450))) +(petri (? c2450 p2450 (! c2451 p2451))) +(petri (? c2451 p2451 (! c2452 p2452))) +(petri (? c2452 p2452 (! c2453 p2453))) +(petri (? c2453 p2453 (! c2454 p2454))) +(petri (? c2454 p2454 (! c2455 p2455))) +(petri (? c2455 p2455 (! c2456 p2456))) +(petri (? c2456 p2456 (! c2457 p2457))) +(petri (? c2457 p2457 (! c2458 p2458))) +(petri (? c2458 p2458 (! c2459 p2459))) +(petri (? c2459 p2459 (! c2460 p2460))) +(petri (? c2460 p2460 (! c2461 p2461))) +(petri (? c2461 p2461 (! c2462 p2462))) +(petri (? c2462 p2462 (! c2463 p2463))) +(petri (? c2463 p2463 (! c2464 p2464))) +(petri (? c2464 p2464 (! c2465 p2465))) +(petri (? c2465 p2465 (! c2466 p2466))) +(petri (? c2466 p2466 (! c2467 p2467))) +(petri (? c2467 p2467 (! c2468 p2468))) +(petri (? c2468 p2468 (! c2469 p2469))) +(petri (? c2469 p2469 (! c2470 p2470))) +(petri (? c2470 p2470 (! c2471 p2471))) +(petri (? c2471 p2471 (! c2472 p2472))) +(petri (? c2472 p2472 (! c2473 p2473))) +(petri (? c2473 p2473 (! c2474 p2474))) +(petri (? c2474 p2474 (! c2475 p2475))) +(petri (? c2475 p2475 (! c2476 p2476))) +(petri (? c2476 p2476 (! c2477 p2477))) +(petri (? c2477 p2477 (! c2478 p2478))) +(petri (? c2478 p2478 (! c2479 p2479))) +(petri (? c2479 p2479 (! c2480 p2480))) +(petri (? c2480 p2480 (! c2481 p2481))) +(petri (? c2481 p2481 (! c2482 p2482))) +(petri (? c2482 p2482 (! c2483 p2483))) +(petri (? c2483 p2483 (! c2484 p2484))) +(petri (? c2484 p2484 (! c2485 p2485))) +(petri (? c2485 p2485 (! c2486 p2486))) +(petri (? c2486 p2486 (! c2487 p2487))) +(petri (? c2487 p2487 (! c2488 p2488))) +(petri (? c2488 p2488 (! c2489 p2489))) +(petri (? c2489 p2489 (! c2490 p2490))) +(petri (? c2490 p2490 (! c2491 p2491))) +(petri (? c2491 p2491 (! c2492 p2492))) +(petri (? c2492 p2492 (! c2493 p2493))) +(petri (? c2493 p2493 (! c2494 p2494))) +(petri (? c2494 p2494 (! c2495 p2495))) +(petri (? c2495 p2495 (! c2496 p2496))) +(petri (? c2496 p2496 (! c2497 p2497))) +(petri (? c2497 p2497 (! c2498 p2498))) +(petri (? c2498 p2498 (! c2499 p2499))) +(petri (? c2499 p2499 (! c2500 p2500))) +(petri (? c2500 p2500 (! c2501 p2501))) +(petri (? c2501 p2501 (! c2502 p2502))) +(petri (? c2502 p2502 (! c2503 p2503))) +(petri (? c2503 p2503 (! c2504 p2504))) +(petri (? c2504 p2504 (! c2505 p2505))) +(petri (? c2505 p2505 (! c2506 p2506))) +(petri (? c2506 p2506 (! c2507 p2507))) +(petri (? c2507 p2507 (! c2508 p2508))) +(petri (? c2508 p2508 (! c2509 p2509))) +(petri (? c2509 p2509 (! c2510 p2510))) +(petri (? c2510 p2510 (! c2511 p2511))) +(petri (? c2511 p2511 (! c2512 p2512))) +(petri (? c2512 p2512 (! c2513 p2513))) +(petri (? c2513 p2513 (! c2514 p2514))) +(petri (? c2514 p2514 (! c2515 p2515))) +(petri (? c2515 p2515 (! c2516 p2516))) +(petri (? c2516 p2516 (! c2517 p2517))) +(petri (? c2517 p2517 (! c2518 p2518))) +(petri (? c2518 p2518 (! c2519 p2519))) +(petri (? c2519 p2519 (! c2520 p2520))) +(petri (? c2520 p2520 (! c2521 p2521))) +(petri (? c2521 p2521 (! c2522 p2522))) +(petri (? c2522 p2522 (! c2523 p2523))) +(petri (? c2523 p2523 (! c2524 p2524))) +(petri (? c2524 p2524 (! c2525 p2525))) +(petri (? c2525 p2525 (! c2526 p2526))) +(petri (? c2526 p2526 (! c2527 p2527))) +(petri (? c2527 p2527 (! c2528 p2528))) +(petri (? c2528 p2528 (! c2529 p2529))) +(petri (? c2529 p2529 (! c2530 p2530))) +(petri (? c2530 p2530 (! c2531 p2531))) +(petri (? c2531 p2531 (! c2532 p2532))) +(petri (? c2532 p2532 (! c2533 p2533))) +(petri (? c2533 p2533 (! c2534 p2534))) +(petri (? c2534 p2534 (! c2535 p2535))) +(petri (? c2535 p2535 (! c2536 p2536))) +(petri (? c2536 p2536 (! c2537 p2537))) +(petri (? c2537 p2537 (! c2538 p2538))) +(petri (? c2538 p2538 (! c2539 p2539))) +(petri (? c2539 p2539 (! c2540 p2540))) +(petri (? c2540 p2540 (! c2541 p2541))) +(petri (? c2541 p2541 (! c2542 p2542))) +(petri (? c2542 p2542 (! c2543 p2543))) +(petri (? c2543 p2543 (! c2544 p2544))) +(petri (? c2544 p2544 (! c2545 p2545))) +(petri (? c2545 p2545 (! c2546 p2546))) +(petri (? c2546 p2546 (! c2547 p2547))) +(petri (? c2547 p2547 (! c2548 p2548))) +(petri (? c2548 p2548 (! c2549 p2549))) +(petri (? c2549 p2549 (! c2550 p2550))) +(petri (? c2550 p2550 (! c2551 p2551))) +(petri (? c2551 p2551 (! c2552 p2552))) +(petri (? c2552 p2552 (! c2553 p2553))) +(petri (? c2553 p2553 (! c2554 p2554))) +(petri (? c2554 p2554 (! c2555 p2555))) +(petri (? c2555 p2555 (! c2556 p2556))) +(petri (? c2556 p2556 (! c2557 p2557))) +(petri (? c2557 p2557 (! c2558 p2558))) +(petri (? c2558 p2558 (! c2559 p2559))) +(petri (? c2559 p2559 (! c2560 p2560))) +(petri (? c2560 p2560 (! c2561 p2561))) +(petri (? c2561 p2561 (! c2562 p2562))) +(petri (? c2562 p2562 (! c2563 p2563))) +(petri (? c2563 p2563 (! c2564 p2564))) +(petri (? c2564 p2564 (! c2565 p2565))) +(petri (? c2565 p2565 (! c2566 p2566))) +(petri (? c2566 p2566 (! c2567 p2567))) +(petri (? c2567 p2567 (! c2568 p2568))) +(petri (? c2568 p2568 (! c2569 p2569))) +(petri (? c2569 p2569 (! c2570 p2570))) +(petri (? c2570 p2570 (! c2571 p2571))) +(petri (? c2571 p2571 (! c2572 p2572))) +(petri (? c2572 p2572 (! c2573 p2573))) +(petri (? c2573 p2573 (! c2574 p2574))) +(petri (? c2574 p2574 (! c2575 p2575))) +(petri (? c2575 p2575 (! c2576 p2576))) +(petri (? c2576 p2576 (! c2577 p2577))) +(petri (? c2577 p2577 (! c2578 p2578))) +(petri (? c2578 p2578 (! c2579 p2579))) +(petri (? c2579 p2579 (! c2580 p2580))) +(petri (? c2580 p2580 (! c2581 p2581))) +(petri (? c2581 p2581 (! c2582 p2582))) +(petri (? c2582 p2582 (! c2583 p2583))) +(petri (? c2583 p2583 (! c2584 p2584))) +(petri (? c2584 p2584 (! c2585 p2585))) +(petri (? c2585 p2585 (! c2586 p2586))) +(petri (? c2586 p2586 (! c2587 p2587))) +(petri (? c2587 p2587 (! c2588 p2588))) +(petri (? c2588 p2588 (! c2589 p2589))) +(petri (? c2589 p2589 (! c2590 p2590))) +(petri (? c2590 p2590 (! c2591 p2591))) +(petri (? c2591 p2591 (! c2592 p2592))) +(petri (? c2592 p2592 (! c2593 p2593))) +(petri (? c2593 p2593 (! c2594 p2594))) +(petri (? c2594 p2594 (! c2595 p2595))) +(petri (? c2595 p2595 (! c2596 p2596))) +(petri (? c2596 p2596 (! c2597 p2597))) +(petri (? c2597 p2597 (! c2598 p2598))) +(petri (? c2598 p2598 (! c2599 p2599))) +(petri (? c2599 p2599 (! c2600 p2600))) +(petri (? c2600 p2600 (! c2601 p2601))) +(petri (? c2601 p2601 (! c2602 p2602))) +(petri (? c2602 p2602 (! c2603 p2603))) +(petri (? c2603 p2603 (! c2604 p2604))) +(petri (? c2604 p2604 (! c2605 p2605))) +(petri (? c2605 p2605 (! c2606 p2606))) +(petri (? c2606 p2606 (! c2607 p2607))) +(petri (? c2607 p2607 (! c2608 p2608))) +(petri (? c2608 p2608 (! c2609 p2609))) +(petri (? c2609 p2609 (! c2610 p2610))) +(petri (? c2610 p2610 (! c2611 p2611))) +(petri (? c2611 p2611 (! c2612 p2612))) +(petri (? c2612 p2612 (! c2613 p2613))) +(petri (? c2613 p2613 (! c2614 p2614))) +(petri (? c2614 p2614 (! c2615 p2615))) +(petri (? c2615 p2615 (! c2616 p2616))) +(petri (? c2616 p2616 (! c2617 p2617))) +(petri (? c2617 p2617 (! c2618 p2618))) +(petri (? c2618 p2618 (! c2619 p2619))) +(petri (? c2619 p2619 (! c2620 p2620))) +(petri (? c2620 p2620 (! c2621 p2621))) +(petri (? c2621 p2621 (! c2622 p2622))) +(petri (? c2622 p2622 (! c2623 p2623))) +(petri (? c2623 p2623 (! c2624 p2624))) +(petri (? c2624 p2624 (! c2625 p2625))) +(petri (? c2625 p2625 (! c2626 p2626))) +(petri (? c2626 p2626 (! c2627 p2627))) +(petri (? c2627 p2627 (! c2628 p2628))) +(petri (? c2628 p2628 (! c2629 p2629))) +(petri (? c2629 p2629 (! c2630 p2630))) +(petri (? c2630 p2630 (! c2631 p2631))) +(petri (? c2631 p2631 (! c2632 p2632))) +(petri (? c2632 p2632 (! c2633 p2633))) +(petri (? c2633 p2633 (! c2634 p2634))) +(petri (? c2634 p2634 (! c2635 p2635))) +(petri (? c2635 p2635 (! c2636 p2636))) +(petri (? c2636 p2636 (! c2637 p2637))) +(petri (? c2637 p2637 (! c2638 p2638))) +(petri (? c2638 p2638 (! c2639 p2639))) +(petri (? c2639 p2639 (! c2640 p2640))) +(petri (? c2640 p2640 (! c2641 p2641))) +(petri (? c2641 p2641 (! c2642 p2642))) +(petri (? c2642 p2642 (! c2643 p2643))) +(petri (? c2643 p2643 (! c2644 p2644))) +(petri (? c2644 p2644 (! c2645 p2645))) +(petri (? c2645 p2645 (! c2646 p2646))) +(petri (? c2646 p2646 (! c2647 p2647))) +(petri (? c2647 p2647 (! c2648 p2648))) +(petri (? c2648 p2648 (! c2649 p2649))) +(petri (? c2649 p2649 (! c2650 p2650))) +(petri (? c2650 p2650 (! c2651 p2651))) +(petri (? c2651 p2651 (! c2652 p2652))) +(petri (? c2652 p2652 (! c2653 p2653))) +(petri (? c2653 p2653 (! c2654 p2654))) +(petri (? c2654 p2654 (! c2655 p2655))) +(petri (? c2655 p2655 (! c2656 p2656))) +(petri (? c2656 p2656 (! c2657 p2657))) +(petri (? c2657 p2657 (! c2658 p2658))) +(petri (? c2658 p2658 (! c2659 p2659))) +(petri (? c2659 p2659 (! c2660 p2660))) +(petri (? c2660 p2660 (! c2661 p2661))) +(petri (? c2661 p2661 (! c2662 p2662))) +(petri (? c2662 p2662 (! c2663 p2663))) +(petri (? c2663 p2663 (! c2664 p2664))) +(petri (? c2664 p2664 (! c2665 p2665))) +(petri (? c2665 p2665 (! c2666 p2666))) +(petri (? c2666 p2666 (! c2667 p2667))) +(petri (? c2667 p2667 (! c2668 p2668))) +(petri (? c2668 p2668 (! c2669 p2669))) +(petri (? c2669 p2669 (! c2670 p2670))) +(petri (? c2670 p2670 (! c2671 p2671))) +(petri (? c2671 p2671 (! c2672 p2672))) +(petri (? c2672 p2672 (! c2673 p2673))) +(petri (? c2673 p2673 (! c2674 p2674))) +(petri (? c2674 p2674 (! c2675 p2675))) +(petri (? c2675 p2675 (! c2676 p2676))) +(petri (? c2676 p2676 (! c2677 p2677))) +(petri (? c2677 p2677 (! c2678 p2678))) +(petri (? c2678 p2678 (! c2679 p2679))) +(petri (? c2679 p2679 (! c2680 p2680))) +(petri (? c2680 p2680 (! c2681 p2681))) +(petri (? c2681 p2681 (! c2682 p2682))) +(petri (? c2682 p2682 (! c2683 p2683))) +(petri (? c2683 p2683 (! c2684 p2684))) +(petri (? c2684 p2684 (! c2685 p2685))) +(petri (? c2685 p2685 (! c2686 p2686))) +(petri (? c2686 p2686 (! c2687 p2687))) +(petri (? c2687 p2687 (! c2688 p2688))) +(petri (? c2688 p2688 (! c2689 p2689))) +(petri (? c2689 p2689 (! c2690 p2690))) +(petri (? c2690 p2690 (! c2691 p2691))) +(petri (? c2691 p2691 (! c2692 p2692))) +(petri (? c2692 p2692 (! c2693 p2693))) +(petri (? c2693 p2693 (! c2694 p2694))) +(petri (? c2694 p2694 (! c2695 p2695))) +(petri (? c2695 p2695 (! c2696 p2696))) +(petri (? c2696 p2696 (! c2697 p2697))) +(petri (? c2697 p2697 (! c2698 p2698))) +(petri (? c2698 p2698 (! c2699 p2699))) +(petri (? c2699 p2699 (! c2700 p2700))) +(petri (? c2700 p2700 (! c2701 p2701))) +(petri (? c2701 p2701 (! c2702 p2702))) +(petri (? c2702 p2702 (! c2703 p2703))) +(petri (? c2703 p2703 (! c2704 p2704))) +(petri (? c2704 p2704 (! c2705 p2705))) +(petri (? c2705 p2705 (! c2706 p2706))) +(petri (? c2706 p2706 (! c2707 p2707))) +(petri (? c2707 p2707 (! c2708 p2708))) +(petri (? c2708 p2708 (! c2709 p2709))) +(petri (? c2709 p2709 (! c2710 p2710))) +(petri (? c2710 p2710 (! c2711 p2711))) +(petri (? c2711 p2711 (! c2712 p2712))) +(petri (? c2712 p2712 (! c2713 p2713))) +(petri (? c2713 p2713 (! c2714 p2714))) +(petri (? c2714 p2714 (! c2715 p2715))) +(petri (? c2715 p2715 (! c2716 p2716))) +(petri (? c2716 p2716 (! c2717 p2717))) +(petri (? c2717 p2717 (! c2718 p2718))) +(petri (? c2718 p2718 (! c2719 p2719))) +(petri (? c2719 p2719 (! c2720 p2720))) +(petri (? c2720 p2720 (! c2721 p2721))) +(petri (? c2721 p2721 (! c2722 p2722))) +(petri (? c2722 p2722 (! c2723 p2723))) +(petri (? c2723 p2723 (! c2724 p2724))) +(petri (? c2724 p2724 (! c2725 p2725))) +(petri (? c2725 p2725 (! c2726 p2726))) +(petri (? c2726 p2726 (! c2727 p2727))) +(petri (? c2727 p2727 (! c2728 p2728))) +(petri (? c2728 p2728 (! c2729 p2729))) +(petri (? c2729 p2729 (! c2730 p2730))) +(petri (? c2730 p2730 (! c2731 p2731))) +(petri (? c2731 p2731 (! c2732 p2732))) +(petri (? c2732 p2732 (! c2733 p2733))) +(petri (? c2733 p2733 (! c2734 p2734))) +(petri (? c2734 p2734 (! c2735 p2735))) +(petri (? c2735 p2735 (! c2736 p2736))) +(petri (? c2736 p2736 (! c2737 p2737))) +(petri (? c2737 p2737 (! c2738 p2738))) +(petri (? c2738 p2738 (! c2739 p2739))) +(petri (? c2739 p2739 (! c2740 p2740))) +(petri (? c2740 p2740 (! c2741 p2741))) +(petri (? c2741 p2741 (! c2742 p2742))) +(petri (? c2742 p2742 (! c2743 p2743))) +(petri (? c2743 p2743 (! c2744 p2744))) +(petri (? c2744 p2744 (! c2745 p2745))) +(petri (? c2745 p2745 (! c2746 p2746))) +(petri (? c2746 p2746 (! c2747 p2747))) +(petri (? c2747 p2747 (! c2748 p2748))) +(petri (? c2748 p2748 (! c2749 p2749))) +(petri (? c2749 p2749 (! c2750 p2750))) +(petri (? c2750 p2750 (! c2751 p2751))) +(petri (? c2751 p2751 (! c2752 p2752))) +(petri (? c2752 p2752 (! c2753 p2753))) +(petri (? c2753 p2753 (! c2754 p2754))) +(petri (? c2754 p2754 (! c2755 p2755))) +(petri (? c2755 p2755 (! c2756 p2756))) +(petri (? c2756 p2756 (! c2757 p2757))) +(petri (? c2757 p2757 (! c2758 p2758))) +(petri (? c2758 p2758 (! c2759 p2759))) +(petri (? c2759 p2759 (! c2760 p2760))) +(petri (? c2760 p2760 (! c2761 p2761))) +(petri (? c2761 p2761 (! c2762 p2762))) +(petri (? c2762 p2762 (! c2763 p2763))) +(petri (? c2763 p2763 (! c2764 p2764))) +(petri (? c2764 p2764 (! c2765 p2765))) +(petri (? c2765 p2765 (! c2766 p2766))) +(petri (? c2766 p2766 (! c2767 p2767))) +(petri (? c2767 p2767 (! c2768 p2768))) +(petri (? c2768 p2768 (! c2769 p2769))) +(petri (? c2769 p2769 (! c2770 p2770))) +(petri (? c2770 p2770 (! c2771 p2771))) +(petri (? c2771 p2771 (! c2772 p2772))) +(petri (? c2772 p2772 (! c2773 p2773))) +(petri (? c2773 p2773 (! c2774 p2774))) +(petri (? c2774 p2774 (! c2775 p2775))) +(petri (? c2775 p2775 (! c2776 p2776))) +(petri (? c2776 p2776 (! c2777 p2777))) +(petri (? c2777 p2777 (! c2778 p2778))) +(petri (? c2778 p2778 (! c2779 p2779))) +(petri (? c2779 p2779 (! c2780 p2780))) +(petri (? c2780 p2780 (! c2781 p2781))) +(petri (? c2781 p2781 (! c2782 p2782))) +(petri (? c2782 p2782 (! c2783 p2783))) +(petri (? c2783 p2783 (! c2784 p2784))) +(petri (? c2784 p2784 (! c2785 p2785))) +(petri (? c2785 p2785 (! c2786 p2786))) +(petri (? c2786 p2786 (! c2787 p2787))) +(petri (? c2787 p2787 (! c2788 p2788))) +(petri (? c2788 p2788 (! c2789 p2789))) +(petri (? c2789 p2789 (! c2790 p2790))) +(petri (? c2790 p2790 (! c2791 p2791))) +(petri (? c2791 p2791 (! c2792 p2792))) +(petri (? c2792 p2792 (! c2793 p2793))) +(petri (? c2793 p2793 (! c2794 p2794))) +(petri (? c2794 p2794 (! c2795 p2795))) +(petri (? c2795 p2795 (! c2796 p2796))) +(petri (? c2796 p2796 (! c2797 p2797))) +(petri (? c2797 p2797 (! c2798 p2798))) +(petri (? c2798 p2798 (! c2799 p2799))) +(petri (? c2799 p2799 (! c2800 p2800))) +(petri (? c2800 p2800 (! c2801 p2801))) +(petri (? c2801 p2801 (! c2802 p2802))) +(petri (? c2802 p2802 (! c2803 p2803))) +(petri (? c2803 p2803 (! c2804 p2804))) +(petri (? c2804 p2804 (! c2805 p2805))) +(petri (? c2805 p2805 (! c2806 p2806))) +(petri (? c2806 p2806 (! c2807 p2807))) +(petri (? c2807 p2807 (! c2808 p2808))) +(petri (? c2808 p2808 (! c2809 p2809))) +(petri (? c2809 p2809 (! c2810 p2810))) +(petri (? c2810 p2810 (! c2811 p2811))) +(petri (? c2811 p2811 (! c2812 p2812))) +(petri (? c2812 p2812 (! c2813 p2813))) +(petri (? c2813 p2813 (! c2814 p2814))) +(petri (? c2814 p2814 (! c2815 p2815))) +(petri (? c2815 p2815 (! c2816 p2816))) +(petri (? c2816 p2816 (! c2817 p2817))) +(petri (? c2817 p2817 (! c2818 p2818))) +(petri (? c2818 p2818 (! c2819 p2819))) +(petri (? c2819 p2819 (! c2820 p2820))) +(petri (? c2820 p2820 (! c2821 p2821))) +(petri (? c2821 p2821 (! c2822 p2822))) +(petri (? c2822 p2822 (! c2823 p2823))) +(petri (? c2823 p2823 (! c2824 p2824))) +(petri (? c2824 p2824 (! c2825 p2825))) +(petri (? c2825 p2825 (! c2826 p2826))) +(petri (? c2826 p2826 (! c2827 p2827))) +(petri (? c2827 p2827 (! c2828 p2828))) +(petri (? c2828 p2828 (! c2829 p2829))) +(petri (? c2829 p2829 (! c2830 p2830))) +(petri (? c2830 p2830 (! c2831 p2831))) +(petri (? c2831 p2831 (! c2832 p2832))) +(petri (? c2832 p2832 (! c2833 p2833))) +(petri (? c2833 p2833 (! c2834 p2834))) +(petri (? c2834 p2834 (! c2835 p2835))) +(petri (? c2835 p2835 (! c2836 p2836))) +(petri (? c2836 p2836 (! c2837 p2837))) +(petri (? c2837 p2837 (! c2838 p2838))) +(petri (? c2838 p2838 (! c2839 p2839))) +(petri (? c2839 p2839 (! c2840 p2840))) +(petri (? c2840 p2840 (! c2841 p2841))) +(petri (? c2841 p2841 (! c2842 p2842))) +(petri (? c2842 p2842 (! c2843 p2843))) +(petri (? c2843 p2843 (! c2844 p2844))) +(petri (? c2844 p2844 (! c2845 p2845))) +(petri (? c2845 p2845 (! c2846 p2846))) +(petri (? c2846 p2846 (! c2847 p2847))) +(petri (? c2847 p2847 (! c2848 p2848))) +(petri (? c2848 p2848 (! c2849 p2849))) +(petri (? c2849 p2849 (! c2850 p2850))) +(petri (? c2850 p2850 (! c2851 p2851))) +(petri (? c2851 p2851 (! c2852 p2852))) +(petri (? c2852 p2852 (! c2853 p2853))) +(petri (? c2853 p2853 (! c2854 p2854))) +(petri (? c2854 p2854 (! c2855 p2855))) +(petri (? c2855 p2855 (! c2856 p2856))) +(petri (? c2856 p2856 (! c2857 p2857))) +(petri (? c2857 p2857 (! c2858 p2858))) +(petri (? c2858 p2858 (! c2859 p2859))) +(petri (? c2859 p2859 (! c2860 p2860))) +(petri (? c2860 p2860 (! c2861 p2861))) +(petri (? c2861 p2861 (! c2862 p2862))) +(petri (? c2862 p2862 (! c2863 p2863))) +(petri (? c2863 p2863 (! c2864 p2864))) +(petri (? c2864 p2864 (! c2865 p2865))) +(petri (? c2865 p2865 (! c2866 p2866))) +(petri (? c2866 p2866 (! c2867 p2867))) +(petri (? c2867 p2867 (! c2868 p2868))) +(petri (? c2868 p2868 (! c2869 p2869))) +(petri (? c2869 p2869 (! c2870 p2870))) +(petri (? c2870 p2870 (! c2871 p2871))) +(petri (? c2871 p2871 (! c2872 p2872))) +(petri (? c2872 p2872 (! c2873 p2873))) +(petri (? c2873 p2873 (! c2874 p2874))) +(petri (? c2874 p2874 (! c2875 p2875))) +(petri (? c2875 p2875 (! c2876 p2876))) +(petri (? c2876 p2876 (! c2877 p2877))) +(petri (? c2877 p2877 (! c2878 p2878))) +(petri (? c2878 p2878 (! c2879 p2879))) +(petri (? c2879 p2879 (! c2880 p2880))) +(petri (? c2880 p2880 (! c2881 p2881))) +(petri (? c2881 p2881 (! c2882 p2882))) +(petri (? c2882 p2882 (! c2883 p2883))) +(petri (? c2883 p2883 (! c2884 p2884))) +(petri (? c2884 p2884 (! c2885 p2885))) +(petri (? c2885 p2885 (! c2886 p2886))) +(petri (? c2886 p2886 (! c2887 p2887))) +(petri (? c2887 p2887 (! c2888 p2888))) +(petri (? c2888 p2888 (! c2889 p2889))) +(petri (? c2889 p2889 (! c2890 p2890))) +(petri (? c2890 p2890 (! c2891 p2891))) +(petri (? c2891 p2891 (! c2892 p2892))) +(petri (? c2892 p2892 (! c2893 p2893))) +(petri (? c2893 p2893 (! c2894 p2894))) +(petri (? c2894 p2894 (! c2895 p2895))) +(petri (? c2895 p2895 (! c2896 p2896))) +(petri (? c2896 p2896 (! c2897 p2897))) +(petri (? c2897 p2897 (! c2898 p2898))) +(petri (? c2898 p2898 (! c2899 p2899))) +(petri (? c2899 p2899 (! c2900 p2900))) +(petri (? c2900 p2900 (! c2901 p2901))) +(petri (? c2901 p2901 (! c2902 p2902))) +(petri (? c2902 p2902 (! c2903 p2903))) +(petri (? c2903 p2903 (! c2904 p2904))) +(petri (? c2904 p2904 (! c2905 p2905))) +(petri (? c2905 p2905 (! c2906 p2906))) +(petri (? c2906 p2906 (! c2907 p2907))) +(petri (? c2907 p2907 (! c2908 p2908))) +(petri (? c2908 p2908 (! c2909 p2909))) +(petri (? c2909 p2909 (! c2910 p2910))) +(petri (? c2910 p2910 (! c2911 p2911))) +(petri (? c2911 p2911 (! c2912 p2912))) +(petri (? c2912 p2912 (! c2913 p2913))) +(petri (? c2913 p2913 (! c2914 p2914))) +(petri (? c2914 p2914 (! c2915 p2915))) +(petri (? c2915 p2915 (! c2916 p2916))) +(petri (? c2916 p2916 (! c2917 p2917))) +(petri (? c2917 p2917 (! c2918 p2918))) +(petri (? c2918 p2918 (! c2919 p2919))) +(petri (? c2919 p2919 (! c2920 p2920))) +(petri (? c2920 p2920 (! c2921 p2921))) +(petri (? c2921 p2921 (! c2922 p2922))) +(petri (? c2922 p2922 (! c2923 p2923))) +(petri (? c2923 p2923 (! c2924 p2924))) +(petri (? c2924 p2924 (! c2925 p2925))) +(petri (? c2925 p2925 (! c2926 p2926))) +(petri (? c2926 p2926 (! c2927 p2927))) +(petri (? c2927 p2927 (! c2928 p2928))) +(petri (? c2928 p2928 (! c2929 p2929))) +(petri (? c2929 p2929 (! c2930 p2930))) +(petri (? c2930 p2930 (! c2931 p2931))) +(petri (? c2931 p2931 (! c2932 p2932))) +(petri (? c2932 p2932 (! c2933 p2933))) +(petri (? c2933 p2933 (! c2934 p2934))) +(petri (? c2934 p2934 (! c2935 p2935))) +(petri (? c2935 p2935 (! c2936 p2936))) +(petri (? c2936 p2936 (! c2937 p2937))) +(petri (? c2937 p2937 (! c2938 p2938))) +(petri (? c2938 p2938 (! c2939 p2939))) +(petri (? c2939 p2939 (! c2940 p2940))) +(petri (? c2940 p2940 (! c2941 p2941))) +(petri (? c2941 p2941 (! c2942 p2942))) +(petri (? c2942 p2942 (! c2943 p2943))) +(petri (? c2943 p2943 (! c2944 p2944))) +(petri (? c2944 p2944 (! c2945 p2945))) +(petri (? c2945 p2945 (! c2946 p2946))) +(petri (? c2946 p2946 (! c2947 p2947))) +(petri (? c2947 p2947 (! c2948 p2948))) +(petri (? c2948 p2948 (! c2949 p2949))) +(petri (? c2949 p2949 (! c2950 p2950))) +(petri (? c2950 p2950 (! c2951 p2951))) +(petri (? c2951 p2951 (! c2952 p2952))) +(petri (? c2952 p2952 (! c2953 p2953))) +(petri (? c2953 p2953 (! c2954 p2954))) +(petri (? c2954 p2954 (! c2955 p2955))) +(petri (? c2955 p2955 (! c2956 p2956))) +(petri (? c2956 p2956 (! c2957 p2957))) +(petri (? c2957 p2957 (! c2958 p2958))) +(petri (? c2958 p2958 (! c2959 p2959))) +(petri (? c2959 p2959 (! c2960 p2960))) +(petri (? c2960 p2960 (! c2961 p2961))) +(petri (? c2961 p2961 (! c2962 p2962))) +(petri (? c2962 p2962 (! c2963 p2963))) +(petri (? c2963 p2963 (! c2964 p2964))) +(petri (? c2964 p2964 (! c2965 p2965))) +(petri (? c2965 p2965 (! c2966 p2966))) +(petri (? c2966 p2966 (! c2967 p2967))) +(petri (? c2967 p2967 (! c2968 p2968))) +(petri (? c2968 p2968 (! c2969 p2969))) +(petri (? c2969 p2969 (! c2970 p2970))) +(petri (? c2970 p2970 (! c2971 p2971))) +(petri (? c2971 p2971 (! c2972 p2972))) +(petri (? c2972 p2972 (! c2973 p2973))) +(petri (? c2973 p2973 (! c2974 p2974))) +(petri (? c2974 p2974 (! c2975 p2975))) +(petri (? c2975 p2975 (! c2976 p2976))) +(petri (? c2976 p2976 (! c2977 p2977))) +(petri (? c2977 p2977 (! c2978 p2978))) +(petri (? c2978 p2978 (! c2979 p2979))) +(petri (? c2979 p2979 (! c2980 p2980))) +(petri (? c2980 p2980 (! c2981 p2981))) +(petri (? c2981 p2981 (! c2982 p2982))) +(petri (? c2982 p2982 (! c2983 p2983))) +(petri (? c2983 p2983 (! c2984 p2984))) +(petri (? c2984 p2984 (! c2985 p2985))) +(petri (? c2985 p2985 (! c2986 p2986))) +(petri (? c2986 p2986 (! c2987 p2987))) +(petri (? c2987 p2987 (! c2988 p2988))) +(petri (? c2988 p2988 (! c2989 p2989))) +(petri (? c2989 p2989 (! c2990 p2990))) +(petri (? c2990 p2990 (! c2991 p2991))) +(petri (? c2991 p2991 (! c2992 p2992))) +(petri (? c2992 p2992 (! c2993 p2993))) +(petri (? c2993 p2993 (! c2994 p2994))) +(petri (? c2994 p2994 (! c2995 p2995))) +(petri (? c2995 p2995 (! c2996 p2996))) +(petri (? c2996 p2996 (! c2997 p2997))) +(petri (? c2997 p2997 (! c2998 p2998))) +(petri (? c2998 p2998 (! c2999 p2999))) +(petri (? c2999 p2999 (! c3000 p3000))) +(petri (? c3000 p3000 (! c3001 p3001))) +(petri (? c3001 p3001 (! c3002 p3002))) +(petri (? c3002 p3002 (! c3003 p3003))) +(petri (? c3003 p3003 (! c3004 p3004))) +(petri (? c3004 p3004 (! c3005 p3005))) +(petri (? c3005 p3005 (! c3006 p3006))) +(petri (? c3006 p3006 (! c3007 p3007))) +(petri (? c3007 p3007 (! c3008 p3008))) +(petri (? c3008 p3008 (! c3009 p3009))) +(petri (? c3009 p3009 (! c3010 p3010))) +(petri (? c3010 p3010 (! c3011 p3011))) +(petri (? c3011 p3011 (! c3012 p3012))) +(petri (? c3012 p3012 (! c3013 p3013))) +(petri (? c3013 p3013 (! c3014 p3014))) +(petri (? c3014 p3014 (! c3015 p3015))) +(petri (? c3015 p3015 (! c3016 p3016))) +(petri (? c3016 p3016 (! c3017 p3017))) +(petri (? c3017 p3017 (! c3018 p3018))) +(petri (? c3018 p3018 (! c3019 p3019))) +(petri (? c3019 p3019 (! c3020 p3020))) +(petri (? c3020 p3020 (! c3021 p3021))) +(petri (? c3021 p3021 (! c3022 p3022))) +(petri (? c3022 p3022 (! c3023 p3023))) +(petri (? c3023 p3023 (! c3024 p3024))) +(petri (? c3024 p3024 (! c3025 p3025))) +(petri (? c3025 p3025 (! c3026 p3026))) +(petri (? c3026 p3026 (! c3027 p3027))) +(petri (? c3027 p3027 (! c3028 p3028))) +(petri (? c3028 p3028 (! c3029 p3029))) +(petri (? c3029 p3029 (! c3030 p3030))) +(petri (? c3030 p3030 (! c3031 p3031))) +(petri (? c3031 p3031 (! c3032 p3032))) +(petri (? c3032 p3032 (! c3033 p3033))) +(petri (? c3033 p3033 (! c3034 p3034))) +(petri (? c3034 p3034 (! c3035 p3035))) +(petri (? c3035 p3035 (! c3036 p3036))) +(petri (? c3036 p3036 (! c3037 p3037))) +(petri (? c3037 p3037 (! c3038 p3038))) +(petri (? c3038 p3038 (! c3039 p3039))) +(petri (? c3039 p3039 (! c3040 p3040))) +(petri (? c3040 p3040 (! c3041 p3041))) +(petri (? c3041 p3041 (! c3042 p3042))) +(petri (? c3042 p3042 (! c3043 p3043))) +(petri (? c3043 p3043 (! c3044 p3044))) +(petri (? c3044 p3044 (! c3045 p3045))) +(petri (? c3045 p3045 (! c3046 p3046))) +(petri (? c3046 p3046 (! c3047 p3047))) +(petri (? c3047 p3047 (! c3048 p3048))) +(petri (? c3048 p3048 (! c3049 p3049))) +(petri (? c3049 p3049 (! c3050 p3050))) +(petri (? c3050 p3050 (! c3051 p3051))) +(petri (? c3051 p3051 (! c3052 p3052))) +(petri (? c3052 p3052 (! c3053 p3053))) +(petri (? c3053 p3053 (! c3054 p3054))) +(petri (? c3054 p3054 (! c3055 p3055))) +(petri (? c3055 p3055 (! c3056 p3056))) +(petri (? c3056 p3056 (! c3057 p3057))) +(petri (? c3057 p3057 (! c3058 p3058))) +(petri (? c3058 p3058 (! c3059 p3059))) +(petri (? c3059 p3059 (! c3060 p3060))) +(petri (? c3060 p3060 (! c3061 p3061))) +(petri (? c3061 p3061 (! c3062 p3062))) +(petri (? c3062 p3062 (! c3063 p3063))) +(petri (? c3063 p3063 (! c3064 p3064))) +(petri (? c3064 p3064 (! c3065 p3065))) +(petri (? c3065 p3065 (! c3066 p3066))) +(petri (? c3066 p3066 (! c3067 p3067))) +(petri (? c3067 p3067 (! c3068 p3068))) +(petri (? c3068 p3068 (! c3069 p3069))) +(petri (? c3069 p3069 (! c3070 p3070))) +(petri (? c3070 p3070 (! c3071 p3071))) +(petri (? c3071 p3071 (! c3072 p3072))) +(petri (? c3072 p3072 (! c3073 p3073))) +(petri (? c3073 p3073 (! c3074 p3074))) +(petri (? c3074 p3074 (! c3075 p3075))) +(petri (? c3075 p3075 (! c3076 p3076))) +(petri (? c3076 p3076 (! c3077 p3077))) +(petri (? c3077 p3077 (! c3078 p3078))) +(petri (? c3078 p3078 (! c3079 p3079))) +(petri (? c3079 p3079 (! c3080 p3080))) +(petri (? c3080 p3080 (! c3081 p3081))) +(petri (? c3081 p3081 (! c3082 p3082))) +(petri (? c3082 p3082 (! c3083 p3083))) +(petri (? c3083 p3083 (! c3084 p3084))) +(petri (? c3084 p3084 (! c3085 p3085))) +(petri (? c3085 p3085 (! c3086 p3086))) +(petri (? c3086 p3086 (! c3087 p3087))) +(petri (? c3087 p3087 (! c3088 p3088))) +(petri (? c3088 p3088 (! c3089 p3089))) +(petri (? c3089 p3089 (! c3090 p3090))) +(petri (? c3090 p3090 (! c3091 p3091))) +(petri (? c3091 p3091 (! c3092 p3092))) +(petri (? c3092 p3092 (! c3093 p3093))) +(petri (? c3093 p3093 (! c3094 p3094))) +(petri (? c3094 p3094 (! c3095 p3095))) +(petri (? c3095 p3095 (! c3096 p3096))) +(petri (? c3096 p3096 (! c3097 p3097))) +(petri (? c3097 p3097 (! c3098 p3098))) +(petri (? c3098 p3098 (! c3099 p3099))) +(petri (? c3099 p3099 (! c3100 p3100))) +(petri (? c3100 p3100 (! c3101 p3101))) +(petri (? c3101 p3101 (! c3102 p3102))) +(petri (? c3102 p3102 (! c3103 p3103))) +(petri (? c3103 p3103 (! c3104 p3104))) +(petri (? c3104 p3104 (! c3105 p3105))) +(petri (? c3105 p3105 (! c3106 p3106))) +(petri (? c3106 p3106 (! c3107 p3107))) +(petri (? c3107 p3107 (! c3108 p3108))) +(petri (? c3108 p3108 (! c3109 p3109))) +(petri (? c3109 p3109 (! c3110 p3110))) +(petri (? c3110 p3110 (! c3111 p3111))) +(petri (? c3111 p3111 (! c3112 p3112))) +(petri (? c3112 p3112 (! c3113 p3113))) +(petri (? c3113 p3113 (! c3114 p3114))) +(petri (? c3114 p3114 (! c3115 p3115))) +(petri (? c3115 p3115 (! c3116 p3116))) +(petri (? c3116 p3116 (! c3117 p3117))) +(petri (? c3117 p3117 (! c3118 p3118))) +(petri (? c3118 p3118 (! c3119 p3119))) +(petri (? c3119 p3119 (! c3120 p3120))) +(petri (? c3120 p3120 (! c3121 p3121))) +(petri (? c3121 p3121 (! c3122 p3122))) +(petri (? c3122 p3122 (! c3123 p3123))) +(petri (? c3123 p3123 (! c3124 p3124))) +(petri (? c3124 p3124 (! c3125 p3125))) +(petri (? c3125 p3125 (! c3126 p3126))) +(petri (? c3126 p3126 (! c3127 p3127))) +(petri (? c3127 p3127 (! c3128 p3128))) +(petri (? c3128 p3128 (! c3129 p3129))) +(petri (? c3129 p3129 (! c3130 p3130))) +(petri (? c3130 p3130 (! c3131 p3131))) +(petri (? c3131 p3131 (! c3132 p3132))) +(petri (? c3132 p3132 (! c3133 p3133))) +(petri (? c3133 p3133 (! c3134 p3134))) +(petri (? c3134 p3134 (! c3135 p3135))) +(petri (? c3135 p3135 (! c3136 p3136))) +(petri (? c3136 p3136 (! c3137 p3137))) +(petri (? c3137 p3137 (! c3138 p3138))) +(petri (? c3138 p3138 (! c3139 p3139))) +(petri (? c3139 p3139 (! c3140 p3140))) +(petri (? c3140 p3140 (! c3141 p3141))) +(petri (? c3141 p3141 (! c3142 p3142))) +(petri (? c3142 p3142 (! c3143 p3143))) +(petri (? c3143 p3143 (! c3144 p3144))) +(petri (? c3144 p3144 (! c3145 p3145))) +(petri (? c3145 p3145 (! c3146 p3146))) +(petri (? c3146 p3146 (! c3147 p3147))) +(petri (? c3147 p3147 (! c3148 p3148))) +(petri (? c3148 p3148 (! c3149 p3149))) +(petri (? c3149 p3149 (! c3150 p3150))) +(petri (? c3150 p3150 (! c3151 p3151))) +(petri (? c3151 p3151 (! c3152 p3152))) +(petri (? c3152 p3152 (! c3153 p3153))) +(petri (? c3153 p3153 (! c3154 p3154))) +(petri (? c3154 p3154 (! c3155 p3155))) +(petri (? c3155 p3155 (! c3156 p3156))) +(petri (? c3156 p3156 (! c3157 p3157))) +(petri (? c3157 p3157 (! c3158 p3158))) +(petri (? c3158 p3158 (! c3159 p3159))) +(petri (? c3159 p3159 (! c3160 p3160))) +(petri (? c3160 p3160 (! c3161 p3161))) +(petri (? c3161 p3161 (! c3162 p3162))) +(petri (? c3162 p3162 (! c3163 p3163))) +(petri (? c3163 p3163 (! c3164 p3164))) +(petri (? c3164 p3164 (! c3165 p3165))) +(petri (? c3165 p3165 (! c3166 p3166))) +(petri (? c3166 p3166 (! c3167 p3167))) +(petri (? c3167 p3167 (! c3168 p3168))) +(petri (? c3168 p3168 (! c3169 p3169))) +(petri (? c3169 p3169 (! c3170 p3170))) +(petri (? c3170 p3170 (! c3171 p3171))) +(petri (? c3171 p3171 (! c3172 p3172))) +(petri (? c3172 p3172 (! c3173 p3173))) +(petri (? c3173 p3173 (! c3174 p3174))) +(petri (? c3174 p3174 (! c3175 p3175))) +(petri (? c3175 p3175 (! c3176 p3176))) +(petri (? c3176 p3176 (! c3177 p3177))) +(petri (? c3177 p3177 (! c3178 p3178))) +(petri (? c3178 p3178 (! c3179 p3179))) +(petri (? c3179 p3179 (! c3180 p3180))) +(petri (? c3180 p3180 (! c3181 p3181))) +(petri (? c3181 p3181 (! c3182 p3182))) +(petri (? c3182 p3182 (! c3183 p3183))) +(petri (? c3183 p3183 (! c3184 p3184))) +(petri (? c3184 p3184 (! c3185 p3185))) +(petri (? c3185 p3185 (! c3186 p3186))) +(petri (? c3186 p3186 (! c3187 p3187))) +(petri (? c3187 p3187 (! c3188 p3188))) +(petri (? c3188 p3188 (! c3189 p3189))) +(petri (? c3189 p3189 (! c3190 p3190))) +(petri (? c3190 p3190 (! c3191 p3191))) +(petri (? c3191 p3191 (! c3192 p3192))) +(petri (? c3192 p3192 (! c3193 p3193))) +(petri (? c3193 p3193 (! c3194 p3194))) +(petri (? c3194 p3194 (! c3195 p3195))) +(petri (? c3195 p3195 (! c3196 p3196))) +(petri (? c3196 p3196 (! c3197 p3197))) +(petri (? c3197 p3197 (! c3198 p3198))) +(petri (? c3198 p3198 (! c3199 p3199))) +(petri (? c3199 p3199 (! c3200 p3200))) +(petri (? c3200 p3200 (! c3201 p3201))) +(petri (? c3201 p3201 (! c3202 p3202))) +(petri (? c3202 p3202 (! c3203 p3203))) +(petri (? c3203 p3203 (! c3204 p3204))) +(petri (? c3204 p3204 (! c3205 p3205))) +(petri (? c3205 p3205 (! c3206 p3206))) +(petri (? c3206 p3206 (! c3207 p3207))) +(petri (? c3207 p3207 (! c3208 p3208))) +(petri (? c3208 p3208 (! c3209 p3209))) +(petri (? c3209 p3209 (! c3210 p3210))) +(petri (? c3210 p3210 (! c3211 p3211))) +(petri (? c3211 p3211 (! c3212 p3212))) +(petri (? c3212 p3212 (! c3213 p3213))) +(petri (? c3213 p3213 (! c3214 p3214))) +(petri (? c3214 p3214 (! c3215 p3215))) +(petri (? c3215 p3215 (! c3216 p3216))) +(petri (? c3216 p3216 (! c3217 p3217))) +(petri (? c3217 p3217 (! c3218 p3218))) +(petri (? c3218 p3218 (! c3219 p3219))) +(petri (? c3219 p3219 (! c3220 p3220))) +(petri (? c3220 p3220 (! c3221 p3221))) +(petri (? c3221 p3221 (! c3222 p3222))) +(petri (? c3222 p3222 (! c3223 p3223))) +(petri (? c3223 p3223 (! c3224 p3224))) +(petri (? c3224 p3224 (! c3225 p3225))) +(petri (? c3225 p3225 (! c3226 p3226))) +(petri (? c3226 p3226 (! c3227 p3227))) +(petri (? c3227 p3227 (! c3228 p3228))) +(petri (? c3228 p3228 (! c3229 p3229))) +(petri (? c3229 p3229 (! c3230 p3230))) +(petri (? c3230 p3230 (! c3231 p3231))) +(petri (? c3231 p3231 (! c3232 p3232))) +(petri (? c3232 p3232 (! c3233 p3233))) +(petri (? c3233 p3233 (! c3234 p3234))) +(petri (? c3234 p3234 (! c3235 p3235))) +(petri (? c3235 p3235 (! c3236 p3236))) +(petri (? c3236 p3236 (! c3237 p3237))) +(petri (? c3237 p3237 (! c3238 p3238))) +(petri (? c3238 p3238 (! c3239 p3239))) +(petri (? c3239 p3239 (! c3240 p3240))) +(petri (? c3240 p3240 (! c3241 p3241))) +(petri (? c3241 p3241 (! c3242 p3242))) +(petri (? c3242 p3242 (! c3243 p3243))) +(petri (? c3243 p3243 (! c3244 p3244))) +(petri (? c3244 p3244 (! c3245 p3245))) +(petri (? c3245 p3245 (! c3246 p3246))) +(petri (? c3246 p3246 (! c3247 p3247))) +(petri (? c3247 p3247 (! c3248 p3248))) +(petri (? c3248 p3248 (! c3249 p3249))) +(petri (? c3249 p3249 (! c3250 p3250))) +(petri (? c3250 p3250 (! c3251 p3251))) +(petri (? c3251 p3251 (! c3252 p3252))) +(petri (? c3252 p3252 (! c3253 p3253))) +(petri (? c3253 p3253 (! c3254 p3254))) +(petri (? c3254 p3254 (! c3255 p3255))) +(petri (? c3255 p3255 (! c3256 p3256))) +(petri (? c3256 p3256 (! c3257 p3257))) +(petri (? c3257 p3257 (! c3258 p3258))) +(petri (? c3258 p3258 (! c3259 p3259))) +(petri (? c3259 p3259 (! c3260 p3260))) +(petri (? c3260 p3260 (! c3261 p3261))) +(petri (? c3261 p3261 (! c3262 p3262))) +(petri (? c3262 p3262 (! c3263 p3263))) +(petri (? c3263 p3263 (! c3264 p3264))) +(petri (? c3264 p3264 (! c3265 p3265))) +(petri (? c3265 p3265 (! c3266 p3266))) +(petri (? c3266 p3266 (! c3267 p3267))) +(petri (? c3267 p3267 (! c3268 p3268))) +(petri (? c3268 p3268 (! c3269 p3269))) +(petri (? c3269 p3269 (! c3270 p3270))) +(petri (? c3270 p3270 (! c3271 p3271))) +(petri (? c3271 p3271 (! c3272 p3272))) +(petri (? c3272 p3272 (! c3273 p3273))) +(petri (? c3273 p3273 (! c3274 p3274))) +(petri (? c3274 p3274 (! c3275 p3275))) +(petri (? c3275 p3275 (! c3276 p3276))) +(petri (? c3276 p3276 (! c3277 p3277))) +(petri (? c3277 p3277 (! c3278 p3278))) +(petri (? c3278 p3278 (! c3279 p3279))) +(petri (? c3279 p3279 (! c3280 p3280))) +(petri (? c3280 p3280 (! c3281 p3281))) +(petri (? c3281 p3281 (! c3282 p3282))) +(petri (? c3282 p3282 (! c3283 p3283))) +(petri (? c3283 p3283 (! c3284 p3284))) +(petri (? c3284 p3284 (! c3285 p3285))) +(petri (? c3285 p3285 (! c3286 p3286))) +(petri (? c3286 p3286 (! c3287 p3287))) +(petri (? c3287 p3287 (! c3288 p3288))) +(petri (? c3288 p3288 (! c3289 p3289))) +(petri (? c3289 p3289 (! c3290 p3290))) +(petri (? c3290 p3290 (! c3291 p3291))) +(petri (? c3291 p3291 (! c3292 p3292))) +(petri (? c3292 p3292 (! c3293 p3293))) +(petri (? c3293 p3293 (! c3294 p3294))) +(petri (? c3294 p3294 (! c3295 p3295))) +(petri (? c3295 p3295 (! c3296 p3296))) +(petri (? c3296 p3296 (! c3297 p3297))) +(petri (? c3297 p3297 (! c3298 p3298))) +(petri (? c3298 p3298 (! c3299 p3299))) +(petri (? c3299 p3299 (! c3300 p3300))) +(petri (? c3300 p3300 (! c3301 p3301))) +(petri (? c3301 p3301 (! c3302 p3302))) +(petri (? c3302 p3302 (! c3303 p3303))) +(petri (? c3303 p3303 (! c3304 p3304))) +(petri (? c3304 p3304 (! c3305 p3305))) +(petri (? c3305 p3305 (! c3306 p3306))) +(petri (? c3306 p3306 (! c3307 p3307))) +(petri (? c3307 p3307 (! c3308 p3308))) +(petri (? c3308 p3308 (! c3309 p3309))) +(petri (? c3309 p3309 (! c3310 p3310))) +(petri (? c3310 p3310 (! c3311 p3311))) +(petri (? c3311 p3311 (! c3312 p3312))) +(petri (? c3312 p3312 (! c3313 p3313))) +(petri (? c3313 p3313 (! c3314 p3314))) +(petri (? c3314 p3314 (! c3315 p3315))) +(petri (? c3315 p3315 (! c3316 p3316))) +(petri (? c3316 p3316 (! c3317 p3317))) +(petri (? c3317 p3317 (! c3318 p3318))) +(petri (? c3318 p3318 (! c3319 p3319))) +(petri (? c3319 p3319 (! c3320 p3320))) +(petri (? c3320 p3320 (! c3321 p3321))) +(petri (? c3321 p3321 (! c3322 p3322))) +(petri (? c3322 p3322 (! c3323 p3323))) +(petri (? c3323 p3323 (! c3324 p3324))) +(petri (? c3324 p3324 (! c3325 p3325))) +(petri (? c3325 p3325 (! c3326 p3326))) +(petri (? c3326 p3326 (! c3327 p3327))) +(petri (? c3327 p3327 (! c3328 p3328))) +(petri (? c3328 p3328 (! c3329 p3329))) +(petri (? c3329 p3329 (! c3330 p3330))) +(petri (? c3330 p3330 (! c3331 p3331))) +(petri (? c3331 p3331 (! c3332 p3332))) +(petri (? c3332 p3332 (! c3333 p3333))) +(petri (? c3333 p3333 (! c3334 p3334))) +(petri (? c3334 p3334 (! c3335 p3335))) +(petri (? c3335 p3335 (! c3336 p3336))) +(petri (? c3336 p3336 (! c3337 p3337))) +(petri (? c3337 p3337 (! c3338 p3338))) +(petri (? c3338 p3338 (! c3339 p3339))) +(petri (? c3339 p3339 (! c3340 p3340))) +(petri (? c3340 p3340 (! c3341 p3341))) +(petri (? c3341 p3341 (! c3342 p3342))) +(petri (? c3342 p3342 (! c3343 p3343))) +(petri (? c3343 p3343 (! c3344 p3344))) +(petri (? c3344 p3344 (! c3345 p3345))) +(petri (? c3345 p3345 (! c3346 p3346))) +(petri (? c3346 p3346 (! c3347 p3347))) +(petri (? c3347 p3347 (! c3348 p3348))) +(petri (? c3348 p3348 (! c3349 p3349))) +(petri (? c3349 p3349 (! c3350 p3350))) +(petri (? c3350 p3350 (! c3351 p3351))) +(petri (? c3351 p3351 (! c3352 p3352))) +(petri (? c3352 p3352 (! c3353 p3353))) +(petri (? c3353 p3353 (! c3354 p3354))) +(petri (? c3354 p3354 (! c3355 p3355))) +(petri (? c3355 p3355 (! c3356 p3356))) +(petri (? c3356 p3356 (! c3357 p3357))) +(petri (? c3357 p3357 (! c3358 p3358))) +(petri (? c3358 p3358 (! c3359 p3359))) +(petri (? c3359 p3359 (! c3360 p3360))) +(petri (? c3360 p3360 (! c3361 p3361))) +(petri (? c3361 p3361 (! c3362 p3362))) +(petri (? c3362 p3362 (! c3363 p3363))) +(petri (? c3363 p3363 (! c3364 p3364))) +(petri (? c3364 p3364 (! c3365 p3365))) +(petri (? c3365 p3365 (! c3366 p3366))) +(petri (? c3366 p3366 (! c3367 p3367))) +(petri (? c3367 p3367 (! c3368 p3368))) +(petri (? c3368 p3368 (! c3369 p3369))) +(petri (? c3369 p3369 (! c3370 p3370))) +(petri (? c3370 p3370 (! c3371 p3371))) +(petri (? c3371 p3371 (! c3372 p3372))) +(petri (? c3372 p3372 (! c3373 p3373))) +(petri (? c3373 p3373 (! c3374 p3374))) +(petri (? c3374 p3374 (! c3375 p3375))) +(petri (? c3375 p3375 (! c3376 p3376))) +(petri (? c3376 p3376 (! c3377 p3377))) +(petri (? c3377 p3377 (! c3378 p3378))) +(petri (? c3378 p3378 (! c3379 p3379))) +(petri (? c3379 p3379 (! c3380 p3380))) +(petri (? c3380 p3380 (! c3381 p3381))) +(petri (? c3381 p3381 (! c3382 p3382))) +(petri (? c3382 p3382 (! c3383 p3383))) +(petri (? c3383 p3383 (! c3384 p3384))) +(petri (? c3384 p3384 (! c3385 p3385))) +(petri (? c3385 p3385 (! c3386 p3386))) +(petri (? c3386 p3386 (! c3387 p3387))) +(petri (? c3387 p3387 (! c3388 p3388))) +(petri (? c3388 p3388 (! c3389 p3389))) +(petri (? c3389 p3389 (! c3390 p3390))) +(petri (? c3390 p3390 (! c3391 p3391))) +(petri (? c3391 p3391 (! c3392 p3392))) +(petri (? c3392 p3392 (! c3393 p3393))) +(petri (? c3393 p3393 (! c3394 p3394))) +(petri (? c3394 p3394 (! c3395 p3395))) +(petri (? c3395 p3395 (! c3396 p3396))) +(petri (? c3396 p3396 (! c3397 p3397))) +(petri (? c3397 p3397 (! c3398 p3398))) +(petri (? c3398 p3398 (! c3399 p3399))) +(petri (? c3399 p3399 (! c3400 p3400))) +(petri (? c3400 p3400 (! c3401 p3401))) +(petri (? c3401 p3401 (! c3402 p3402))) +(petri (? c3402 p3402 (! c3403 p3403))) +(petri (? c3403 p3403 (! c3404 p3404))) +(petri (? c3404 p3404 (! c3405 p3405))) +(petri (? c3405 p3405 (! c3406 p3406))) +(petri (? c3406 p3406 (! c3407 p3407))) +(petri (? c3407 p3407 (! c3408 p3408))) +(petri (? c3408 p3408 (! c3409 p3409))) +(petri (? c3409 p3409 (! c3410 p3410))) +(petri (? c3410 p3410 (! c3411 p3411))) +(petri (? c3411 p3411 (! c3412 p3412))) +(petri (? c3412 p3412 (! c3413 p3413))) +(petri (? c3413 p3413 (! c3414 p3414))) +(petri (? c3414 p3414 (! c3415 p3415))) +(petri (? c3415 p3415 (! c3416 p3416))) +(petri (? c3416 p3416 (! c3417 p3417))) +(petri (? c3417 p3417 (! c3418 p3418))) +(petri (? c3418 p3418 (! c3419 p3419))) +(petri (? c3419 p3419 (! c3420 p3420))) +(petri (? c3420 p3420 (! c3421 p3421))) +(petri (? c3421 p3421 (! c3422 p3422))) +(petri (? c3422 p3422 (! c3423 p3423))) +(petri (? c3423 p3423 (! c3424 p3424))) +(petri (? c3424 p3424 (! c3425 p3425))) +(petri (? c3425 p3425 (! c3426 p3426))) +(petri (? c3426 p3426 (! c3427 p3427))) +(petri (? c3427 p3427 (! c3428 p3428))) +(petri (? c3428 p3428 (! c3429 p3429))) +(petri (? c3429 p3429 (! c3430 p3430))) +(petri (? c3430 p3430 (! c3431 p3431))) +(petri (? c3431 p3431 (! c3432 p3432))) +(petri (? c3432 p3432 (! c3433 p3433))) +(petri (? c3433 p3433 (! c3434 p3434))) +(petri (? c3434 p3434 (! c3435 p3435))) +(petri (? c3435 p3435 (! c3436 p3436))) +(petri (? c3436 p3436 (! c3437 p3437))) +(petri (? c3437 p3437 (! c3438 p3438))) +(petri (? c3438 p3438 (! c3439 p3439))) +(petri (? c3439 p3439 (! c3440 p3440))) +(petri (? c3440 p3440 (! c3441 p3441))) +(petri (? c3441 p3441 (! c3442 p3442))) +(petri (? c3442 p3442 (! c3443 p3443))) +(petri (? c3443 p3443 (! c3444 p3444))) +(petri (? c3444 p3444 (! c3445 p3445))) +(petri (? c3445 p3445 (! c3446 p3446))) +(petri (? c3446 p3446 (! c3447 p3447))) +(petri (? c3447 p3447 (! c3448 p3448))) +(petri (? c3448 p3448 (! c3449 p3449))) +(petri (? c3449 p3449 (! c3450 p3450))) +(petri (? c3450 p3450 (! c3451 p3451))) +(petri (? c3451 p3451 (! c3452 p3452))) +(petri (? c3452 p3452 (! c3453 p3453))) +(petri (? c3453 p3453 (! c3454 p3454))) +(petri (? c3454 p3454 (! c3455 p3455))) +(petri (? c3455 p3455 (! c3456 p3456))) +(petri (? c3456 p3456 (! c3457 p3457))) +(petri (? c3457 p3457 (! c3458 p3458))) +(petri (? c3458 p3458 (! c3459 p3459))) +(petri (? c3459 p3459 (! c3460 p3460))) +(petri (? c3460 p3460 (! c3461 p3461))) +(petri (? c3461 p3461 (! c3462 p3462))) +(petri (? c3462 p3462 (! c3463 p3463))) +(petri (? c3463 p3463 (! c3464 p3464))) +(petri (? c3464 p3464 (! c3465 p3465))) +(petri (? c3465 p3465 (! c3466 p3466))) +(petri (? c3466 p3466 (! c3467 p3467))) +(petri (? c3467 p3467 (! c3468 p3468))) +(petri (? c3468 p3468 (! c3469 p3469))) +(petri (? c3469 p3469 (! c3470 p3470))) +(petri (? c3470 p3470 (! c3471 p3471))) +(petri (? c3471 p3471 (! c3472 p3472))) +(petri (? c3472 p3472 (! c3473 p3473))) +(petri (? c3473 p3473 (! c3474 p3474))) +(petri (? c3474 p3474 (! c3475 p3475))) +(petri (? c3475 p3475 (! c3476 p3476))) +(petri (? c3476 p3476 (! c3477 p3477))) +(petri (? c3477 p3477 (! c3478 p3478))) +(petri (? c3478 p3478 (! c3479 p3479))) +(petri (? c3479 p3479 (! c3480 p3480))) +(petri (? c3480 p3480 (! c3481 p3481))) +(petri (? c3481 p3481 (! c3482 p3482))) +(petri (? c3482 p3482 (! c3483 p3483))) +(petri (? c3483 p3483 (! c3484 p3484))) +(petri (? c3484 p3484 (! c3485 p3485))) +(petri (? c3485 p3485 (! c3486 p3486))) +(petri (? c3486 p3486 (! c3487 p3487))) +(petri (? c3487 p3487 (! c3488 p3488))) +(petri (? c3488 p3488 (! c3489 p3489))) +(petri (? c3489 p3489 (! c3490 p3490))) +(petri (? c3490 p3490 (! c3491 p3491))) +(petri (? c3491 p3491 (! c3492 p3492))) +(petri (? c3492 p3492 (! c3493 p3493))) +(petri (? c3493 p3493 (! c3494 p3494))) +(petri (? c3494 p3494 (! c3495 p3495))) +(petri (? c3495 p3495 (! c3496 p3496))) +(petri (? c3496 p3496 (! c3497 p3497))) +(petri (? c3497 p3497 (! c3498 p3498))) +(petri (? c3498 p3498 (! c3499 p3499))) +(petri (? c3499 p3499 (! c3500 p3500))) +(petri (? c3500 p3500 (! c3501 p3501))) +(petri (? c3501 p3501 (! c3502 p3502))) +(petri (? c3502 p3502 (! c3503 p3503))) +(petri (? c3503 p3503 (! c3504 p3504))) +(petri (? c3504 p3504 (! c3505 p3505))) +(petri (? c3505 p3505 (! c3506 p3506))) +(petri (? c3506 p3506 (! c3507 p3507))) +(petri (? c3507 p3507 (! c3508 p3508))) +(petri (? c3508 p3508 (! c3509 p3509))) +(petri (? c3509 p3509 (! c3510 p3510))) +(petri (? c3510 p3510 (! c3511 p3511))) +(petri (? c3511 p3511 (! c3512 p3512))) +(petri (? c3512 p3512 (! c3513 p3513))) +(petri (? c3513 p3513 (! c3514 p3514))) +(petri (? c3514 p3514 (! c3515 p3515))) +(petri (? c3515 p3515 (! c3516 p3516))) +(petri (? c3516 p3516 (! c3517 p3517))) +(petri (? c3517 p3517 (! c3518 p3518))) +(petri (? c3518 p3518 (! c3519 p3519))) +(petri (? c3519 p3519 (! c3520 p3520))) +(petri (? c3520 p3520 (! c3521 p3521))) +(petri (? c3521 p3521 (! c3522 p3522))) +(petri (? c3522 p3522 (! c3523 p3523))) +(petri (? c3523 p3523 (! c3524 p3524))) +(petri (? c3524 p3524 (! c3525 p3525))) +(petri (? c3525 p3525 (! c3526 p3526))) +(petri (? c3526 p3526 (! c3527 p3527))) +(petri (? c3527 p3527 (! c3528 p3528))) +(petri (? c3528 p3528 (! c3529 p3529))) +(petri (? c3529 p3529 (! c3530 p3530))) +(petri (? c3530 p3530 (! c3531 p3531))) +(petri (? c3531 p3531 (! c3532 p3532))) +(petri (? c3532 p3532 (! c3533 p3533))) +(petri (? c3533 p3533 (! c3534 p3534))) +(petri (? c3534 p3534 (! c3535 p3535))) +(petri (? c3535 p3535 (! c3536 p3536))) +(petri (? c3536 p3536 (! c3537 p3537))) +(petri (? c3537 p3537 (! c3538 p3538))) +(petri (? c3538 p3538 (! c3539 p3539))) +(petri (? c3539 p3539 (! c3540 p3540))) +(petri (? c3540 p3540 (! c3541 p3541))) +(petri (? c3541 p3541 (! c3542 p3542))) +(petri (? c3542 p3542 (! c3543 p3543))) +(petri (? c3543 p3543 (! c3544 p3544))) +(petri (? c3544 p3544 (! c3545 p3545))) +(petri (? c3545 p3545 (! c3546 p3546))) +(petri (? c3546 p3546 (! c3547 p3547))) +(petri (? c3547 p3547 (! c3548 p3548))) +(petri (? c3548 p3548 (! c3549 p3549))) +(petri (? c3549 p3549 (! c3550 p3550))) +(petri (? c3550 p3550 (! c3551 p3551))) +(petri (? c3551 p3551 (! c3552 p3552))) +(petri (? c3552 p3552 (! c3553 p3553))) +(petri (? c3553 p3553 (! c3554 p3554))) +(petri (? c3554 p3554 (! c3555 p3555))) +(petri (? c3555 p3555 (! c3556 p3556))) +(petri (? c3556 p3556 (! c3557 p3557))) +(petri (? c3557 p3557 (! c3558 p3558))) +(petri (? c3558 p3558 (! c3559 p3559))) +(petri (? c3559 p3559 (! c3560 p3560))) +(petri (? c3560 p3560 (! c3561 p3561))) +(petri (? c3561 p3561 (! c3562 p3562))) +(petri (? c3562 p3562 (! c3563 p3563))) +(petri (? c3563 p3563 (! c3564 p3564))) +(petri (? c3564 p3564 (! c3565 p3565))) +(petri (? c3565 p3565 (! c3566 p3566))) +(petri (? c3566 p3566 (! c3567 p3567))) +(petri (? c3567 p3567 (! c3568 p3568))) +(petri (? c3568 p3568 (! c3569 p3569))) +(petri (? c3569 p3569 (! c3570 p3570))) +(petri (? c3570 p3570 (! c3571 p3571))) +(petri (? c3571 p3571 (! c3572 p3572))) +(petri (? c3572 p3572 (! c3573 p3573))) +(petri (? c3573 p3573 (! c3574 p3574))) +(petri (? c3574 p3574 (! c3575 p3575))) +(petri (? c3575 p3575 (! c3576 p3576))) +(petri (? c3576 p3576 (! c3577 p3577))) +(petri (? c3577 p3577 (! c3578 p3578))) +(petri (? c3578 p3578 (! c3579 p3579))) +(petri (? c3579 p3579 (! c3580 p3580))) +(petri (? c3580 p3580 (! c3581 p3581))) +(petri (? c3581 p3581 (! c3582 p3582))) +(petri (? c3582 p3582 (! c3583 p3583))) +(petri (? c3583 p3583 (! c3584 p3584))) +(petri (? c3584 p3584 (! c3585 p3585))) +(petri (? c3585 p3585 (! c3586 p3586))) +(petri (? c3586 p3586 (! c3587 p3587))) +(petri (? c3587 p3587 (! c3588 p3588))) +(petri (? c3588 p3588 (! c3589 p3589))) +(petri (? c3589 p3589 (! c3590 p3590))) +(petri (? c3590 p3590 (! c3591 p3591))) +(petri (? c3591 p3591 (! c3592 p3592))) +(petri (? c3592 p3592 (! c3593 p3593))) +(petri (? c3593 p3593 (! c3594 p3594))) +(petri (? c3594 p3594 (! c3595 p3595))) +(petri (? c3595 p3595 (! c3596 p3596))) +(petri (? c3596 p3596 (! c3597 p3597))) +(petri (? c3597 p3597 (! c3598 p3598))) +(petri (? c3598 p3598 (! c3599 p3599))) +(petri (? c3599 p3599 (! c3600 p3600))) +(petri (? c3600 p3600 (! c3601 p3601))) +(petri (? c3601 p3601 (! c3602 p3602))) +(petri (? c3602 p3602 (! c3603 p3603))) +(petri (? c3603 p3603 (! c3604 p3604))) +(petri (? c3604 p3604 (! c3605 p3605))) +(petri (? c3605 p3605 (! c3606 p3606))) +(petri (? c3606 p3606 (! c3607 p3607))) +(petri (? c3607 p3607 (! c3608 p3608))) +(petri (? c3608 p3608 (! c3609 p3609))) +(petri (? c3609 p3609 (! c3610 p3610))) +(petri (? c3610 p3610 (! c3611 p3611))) +(petri (? c3611 p3611 (! c3612 p3612))) +(petri (? c3612 p3612 (! c3613 p3613))) +(petri (? c3613 p3613 (! c3614 p3614))) +(petri (? c3614 p3614 (! c3615 p3615))) +(petri (? c3615 p3615 (! c3616 p3616))) +(petri (? c3616 p3616 (! c3617 p3617))) +(petri (? c3617 p3617 (! c3618 p3618))) +(petri (? c3618 p3618 (! c3619 p3619))) +(petri (? c3619 p3619 (! c3620 p3620))) +(petri (? c3620 p3620 (! c3621 p3621))) +(petri (? c3621 p3621 (! c3622 p3622))) +(petri (? c3622 p3622 (! c3623 p3623))) +(petri (? c3623 p3623 (! c3624 p3624))) +(petri (? c3624 p3624 (! c3625 p3625))) +(petri (? c3625 p3625 (! c3626 p3626))) +(petri (? c3626 p3626 (! c3627 p3627))) +(petri (? c3627 p3627 (! c3628 p3628))) +(petri (? c3628 p3628 (! c3629 p3629))) +(petri (? c3629 p3629 (! c3630 p3630))) +(petri (? c3630 p3630 (! c3631 p3631))) +(petri (? c3631 p3631 (! c3632 p3632))) +(petri (? c3632 p3632 (! c3633 p3633))) +(petri (? c3633 p3633 (! c3634 p3634))) +(petri (? c3634 p3634 (! c3635 p3635))) +(petri (? c3635 p3635 (! c3636 p3636))) +(petri (? c3636 p3636 (! c3637 p3637))) +(petri (? c3637 p3637 (! c3638 p3638))) +(petri (? c3638 p3638 (! c3639 p3639))) +(petri (? c3639 p3639 (! c3640 p3640))) +(petri (? c3640 p3640 (! c3641 p3641))) +(petri (? c3641 p3641 (! c3642 p3642))) +(petri (? c3642 p3642 (! c3643 p3643))) +(petri (? c3643 p3643 (! c3644 p3644))) +(petri (? c3644 p3644 (! c3645 p3645))) +(petri (? c3645 p3645 (! c3646 p3646))) +(petri (? c3646 p3646 (! c3647 p3647))) +(petri (? c3647 p3647 (! c3648 p3648))) +(petri (? c3648 p3648 (! c3649 p3649))) +(petri (? c3649 p3649 (! c3650 p3650))) +(petri (? c3650 p3650 (! c3651 p3651))) +(petri (? c3651 p3651 (! c3652 p3652))) +(petri (? c3652 p3652 (! c3653 p3653))) +(petri (? c3653 p3653 (! c3654 p3654))) +(petri (? c3654 p3654 (! c3655 p3655))) +(petri (? c3655 p3655 (! c3656 p3656))) +(petri (? c3656 p3656 (! c3657 p3657))) +(petri (? c3657 p3657 (! c3658 p3658))) +(petri (? c3658 p3658 (! c3659 p3659))) +(petri (? c3659 p3659 (! c3660 p3660))) +(petri (? c3660 p3660 (! c3661 p3661))) +(petri (? c3661 p3661 (! c3662 p3662))) +(petri (? c3662 p3662 (! c3663 p3663))) +(petri (? c3663 p3663 (! c3664 p3664))) +(petri (? c3664 p3664 (! c3665 p3665))) +(petri (? c3665 p3665 (! c3666 p3666))) +(petri (? c3666 p3666 (! c3667 p3667))) +(petri (? c3667 p3667 (! c3668 p3668))) +(petri (? c3668 p3668 (! c3669 p3669))) +(petri (? c3669 p3669 (! c3670 p3670))) +(petri (? c3670 p3670 (! c3671 p3671))) +(petri (? c3671 p3671 (! c3672 p3672))) +(petri (? c3672 p3672 (! c3673 p3673))) +(petri (? c3673 p3673 (! c3674 p3674))) +(petri (? c3674 p3674 (! c3675 p3675))) +(petri (? c3675 p3675 (! c3676 p3676))) +(petri (? c3676 p3676 (! c3677 p3677))) +(petri (? c3677 p3677 (! c3678 p3678))) +(petri (? c3678 p3678 (! c3679 p3679))) +(petri (? c3679 p3679 (! c3680 p3680))) +(petri (? c3680 p3680 (! c3681 p3681))) +(petri (? c3681 p3681 (! c3682 p3682))) +(petri (? c3682 p3682 (! c3683 p3683))) +(petri (? c3683 p3683 (! c3684 p3684))) +(petri (? c3684 p3684 (! c3685 p3685))) +(petri (? c3685 p3685 (! c3686 p3686))) +(petri (? c3686 p3686 (! c3687 p3687))) +(petri (? c3687 p3687 (! c3688 p3688))) +(petri (? c3688 p3688 (! c3689 p3689))) +(petri (? c3689 p3689 (! c3690 p3690))) +(petri (? c3690 p3690 (! c3691 p3691))) +(petri (? c3691 p3691 (! c3692 p3692))) +(petri (? c3692 p3692 (! c3693 p3693))) +(petri (? c3693 p3693 (! c3694 p3694))) +(petri (? c3694 p3694 (! c3695 p3695))) +(petri (? c3695 p3695 (! c3696 p3696))) +(petri (? c3696 p3696 (! c3697 p3697))) +(petri (? c3697 p3697 (! c3698 p3698))) +(petri (? c3698 p3698 (! c3699 p3699))) +(petri (? c3699 p3699 (! c3700 p3700))) +(petri (? c3700 p3700 (! c3701 p3701))) +(petri (? c3701 p3701 (! c3702 p3702))) +(petri (? c3702 p3702 (! c3703 p3703))) +(petri (? c3703 p3703 (! c3704 p3704))) +(petri (? c3704 p3704 (! c3705 p3705))) +(petri (? c3705 p3705 (! c3706 p3706))) +(petri (? c3706 p3706 (! c3707 p3707))) +(petri (? c3707 p3707 (! c3708 p3708))) +(petri (? c3708 p3708 (! c3709 p3709))) +(petri (? c3709 p3709 (! c3710 p3710))) +(petri (? c3710 p3710 (! c3711 p3711))) +(petri (? c3711 p3711 (! c3712 p3712))) +(petri (? c3712 p3712 (! c3713 p3713))) +(petri (? c3713 p3713 (! c3714 p3714))) +(petri (? c3714 p3714 (! c3715 p3715))) +(petri (? c3715 p3715 (! c3716 p3716))) +(petri (? c3716 p3716 (! c3717 p3717))) +(petri (? c3717 p3717 (! c3718 p3718))) +(petri (? c3718 p3718 (! c3719 p3719))) +(petri (? c3719 p3719 (! c3720 p3720))) +(petri (? c3720 p3720 (! c3721 p3721))) +(petri (? c3721 p3721 (! c3722 p3722))) +(petri (? c3722 p3722 (! c3723 p3723))) +(petri (? c3723 p3723 (! c3724 p3724))) +(petri (? c3724 p3724 (! c3725 p3725))) +(petri (? c3725 p3725 (! c3726 p3726))) +(petri (? c3726 p3726 (! c3727 p3727))) +(petri (? c3727 p3727 (! c3728 p3728))) +(petri (? c3728 p3728 (! c3729 p3729))) +(petri (? c3729 p3729 (! c3730 p3730))) +(petri (? c3730 p3730 (! c3731 p3731))) +(petri (? c3731 p3731 (! c3732 p3732))) +(petri (? c3732 p3732 (! c3733 p3733))) +(petri (? c3733 p3733 (! c3734 p3734))) +(petri (? c3734 p3734 (! c3735 p3735))) +(petri (? c3735 p3735 (! c3736 p3736))) +(petri (? c3736 p3736 (! c3737 p3737))) +(petri (? c3737 p3737 (! c3738 p3738))) +(petri (? c3738 p3738 (! c3739 p3739))) +(petri (? c3739 p3739 (! c3740 p3740))) +(petri (? c3740 p3740 (! c3741 p3741))) +(petri (? c3741 p3741 (! c3742 p3742))) +(petri (? c3742 p3742 (! c3743 p3743))) +(petri (? c3743 p3743 (! c3744 p3744))) +(petri (? c3744 p3744 (! c3745 p3745))) +(petri (? c3745 p3745 (! c3746 p3746))) +(petri (? c3746 p3746 (! c3747 p3747))) +(petri (? c3747 p3747 (! c3748 p3748))) +(petri (? c3748 p3748 (! c3749 p3749))) +(petri (? c3749 p3749 (! c3750 p3750))) +(petri (? c3750 p3750 (! c3751 p3751))) +(petri (? c3751 p3751 (! c3752 p3752))) +(petri (? c3752 p3752 (! c3753 p3753))) +(petri (? c3753 p3753 (! c3754 p3754))) +(petri (? c3754 p3754 (! c3755 p3755))) +(petri (? c3755 p3755 (! c3756 p3756))) +(petri (? c3756 p3756 (! c3757 p3757))) +(petri (? c3757 p3757 (! c3758 p3758))) +(petri (? c3758 p3758 (! c3759 p3759))) +(petri (? c3759 p3759 (! c3760 p3760))) +(petri (? c3760 p3760 (! c3761 p3761))) +(petri (? c3761 p3761 (! c3762 p3762))) +(petri (? c3762 p3762 (! c3763 p3763))) +(petri (? c3763 p3763 (! c3764 p3764))) +(petri (? c3764 p3764 (! c3765 p3765))) +(petri (? c3765 p3765 (! c3766 p3766))) +(petri (? c3766 p3766 (! c3767 p3767))) +(petri (? c3767 p3767 (! c3768 p3768))) +(petri (? c3768 p3768 (! c3769 p3769))) +(petri (? c3769 p3769 (! c3770 p3770))) +(petri (? c3770 p3770 (! c3771 p3771))) +(petri (? c3771 p3771 (! c3772 p3772))) +(petri (? c3772 p3772 (! c3773 p3773))) +(petri (? c3773 p3773 (! c3774 p3774))) +(petri (? c3774 p3774 (! c3775 p3775))) +(petri (? c3775 p3775 (! c3776 p3776))) +(petri (? c3776 p3776 (! c3777 p3777))) +(petri (? c3777 p3777 (! c3778 p3778))) +(petri (? c3778 p3778 (! c3779 p3779))) +(petri (? c3779 p3779 (! c3780 p3780))) +(petri (? c3780 p3780 (! c3781 p3781))) +(petri (? c3781 p3781 (! c3782 p3782))) +(petri (? c3782 p3782 (! c3783 p3783))) +(petri (? c3783 p3783 (! c3784 p3784))) +(petri (? c3784 p3784 (! c3785 p3785))) +(petri (? c3785 p3785 (! c3786 p3786))) +(petri (? c3786 p3786 (! c3787 p3787))) +(petri (? c3787 p3787 (! c3788 p3788))) +(petri (? c3788 p3788 (! c3789 p3789))) +(petri (? c3789 p3789 (! c3790 p3790))) +(petri (? c3790 p3790 (! c3791 p3791))) +(petri (? c3791 p3791 (! c3792 p3792))) +(petri (? c3792 p3792 (! c3793 p3793))) +(petri (? c3793 p3793 (! c3794 p3794))) +(petri (? c3794 p3794 (! c3795 p3795))) +(petri (? c3795 p3795 (! c3796 p3796))) +(petri (? c3796 p3796 (! c3797 p3797))) +(petri (? c3797 p3797 (! c3798 p3798))) +(petri (? c3798 p3798 (! c3799 p3799))) +(petri (? c3799 p3799 (! c3800 p3800))) +(petri (? c3800 p3800 (! c3801 p3801))) +(petri (? c3801 p3801 (! c3802 p3802))) +(petri (? c3802 p3802 (! c3803 p3803))) +(petri (? c3803 p3803 (! c3804 p3804))) +(petri (? c3804 p3804 (! c3805 p3805))) +(petri (? c3805 p3805 (! c3806 p3806))) +(petri (? c3806 p3806 (! c3807 p3807))) +(petri (? c3807 p3807 (! c3808 p3808))) +(petri (? c3808 p3808 (! c3809 p3809))) +(petri (? c3809 p3809 (! c3810 p3810))) +(petri (? c3810 p3810 (! c3811 p3811))) +(petri (? c3811 p3811 (! c3812 p3812))) +(petri (? c3812 p3812 (! c3813 p3813))) +(petri (? c3813 p3813 (! c3814 p3814))) +(petri (? c3814 p3814 (! c3815 p3815))) +(petri (? c3815 p3815 (! c3816 p3816))) +(petri (? c3816 p3816 (! c3817 p3817))) +(petri (? c3817 p3817 (! c3818 p3818))) +(petri (? c3818 p3818 (! c3819 p3819))) +(petri (? c3819 p3819 (! c3820 p3820))) +(petri (? c3820 p3820 (! c3821 p3821))) +(petri (? c3821 p3821 (! c3822 p3822))) +(petri (? c3822 p3822 (! c3823 p3823))) +(petri (? c3823 p3823 (! c3824 p3824))) +(petri (? c3824 p3824 (! c3825 p3825))) +(petri (? c3825 p3825 (! c3826 p3826))) +(petri (? c3826 p3826 (! c3827 p3827))) +(petri (? c3827 p3827 (! c3828 p3828))) +(petri (? c3828 p3828 (! c3829 p3829))) +(petri (? c3829 p3829 (! c3830 p3830))) +(petri (? c3830 p3830 (! c3831 p3831))) +(petri (? c3831 p3831 (! c3832 p3832))) +(petri (? c3832 p3832 (! c3833 p3833))) +(petri (? c3833 p3833 (! c3834 p3834))) +(petri (? c3834 p3834 (! c3835 p3835))) +(petri (? c3835 p3835 (! c3836 p3836))) +(petri (? c3836 p3836 (! c3837 p3837))) +(petri (? c3837 p3837 (! c3838 p3838))) +(petri (? c3838 p3838 (! c3839 p3839))) +(petri (? c3839 p3839 (! c3840 p3840))) +(petri (? c3840 p3840 (! c3841 p3841))) +(petri (? c3841 p3841 (! c3842 p3842))) +(petri (? c3842 p3842 (! c3843 p3843))) +(petri (? c3843 p3843 (! c3844 p3844))) +(petri (? c3844 p3844 (! c3845 p3845))) +(petri (? c3845 p3845 (! c3846 p3846))) +(petri (? c3846 p3846 (! c3847 p3847))) +(petri (? c3847 p3847 (! c3848 p3848))) +(petri (? c3848 p3848 (! c3849 p3849))) +(petri (? c3849 p3849 (! c3850 p3850))) +(petri (? c3850 p3850 (! c3851 p3851))) +(petri (? c3851 p3851 (! c3852 p3852))) +(petri (? c3852 p3852 (! c3853 p3853))) +(petri (? c3853 p3853 (! c3854 p3854))) +(petri (? c3854 p3854 (! c3855 p3855))) +(petri (? c3855 p3855 (! c3856 p3856))) +(petri (? c3856 p3856 (! c3857 p3857))) +(petri (? c3857 p3857 (! c3858 p3858))) +(petri (? c3858 p3858 (! c3859 p3859))) +(petri (? c3859 p3859 (! c3860 p3860))) +(petri (? c3860 p3860 (! c3861 p3861))) +(petri (? c3861 p3861 (! c3862 p3862))) +(petri (? c3862 p3862 (! c3863 p3863))) +(petri (? c3863 p3863 (! c3864 p3864))) +(petri (? c3864 p3864 (! c3865 p3865))) +(petri (? c3865 p3865 (! c3866 p3866))) +(petri (? c3866 p3866 (! c3867 p3867))) +(petri (? c3867 p3867 (! c3868 p3868))) +(petri (? c3868 p3868 (! c3869 p3869))) +(petri (? c3869 p3869 (! c3870 p3870))) +(petri (? c3870 p3870 (! c3871 p3871))) +(petri (? c3871 p3871 (! c3872 p3872))) +(petri (? c3872 p3872 (! c3873 p3873))) +(petri (? c3873 p3873 (! c3874 p3874))) +(petri (? c3874 p3874 (! c3875 p3875))) +(petri (? c3875 p3875 (! c3876 p3876))) +(petri (? c3876 p3876 (! c3877 p3877))) +(petri (? c3877 p3877 (! c3878 p3878))) +(petri (? c3878 p3878 (! c3879 p3879))) +(petri (? c3879 p3879 (! c3880 p3880))) +(petri (? c3880 p3880 (! c3881 p3881))) +(petri (? c3881 p3881 (! c3882 p3882))) +(petri (? c3882 p3882 (! c3883 p3883))) +(petri (? c3883 p3883 (! c3884 p3884))) +(petri (? c3884 p3884 (! c3885 p3885))) +(petri (? c3885 p3885 (! c3886 p3886))) +(petri (? c3886 p3886 (! c3887 p3887))) +(petri (? c3887 p3887 (! c3888 p3888))) +(petri (? c3888 p3888 (! c3889 p3889))) +(petri (? c3889 p3889 (! c3890 p3890))) +(petri (? c3890 p3890 (! c3891 p3891))) +(petri (? c3891 p3891 (! c3892 p3892))) +(petri (? c3892 p3892 (! c3893 p3893))) +(petri (? c3893 p3893 (! c3894 p3894))) +(petri (? c3894 p3894 (! c3895 p3895))) +(petri (? c3895 p3895 (! c3896 p3896))) +(petri (? c3896 p3896 (! c3897 p3897))) +(petri (? c3897 p3897 (! c3898 p3898))) +(petri (? c3898 p3898 (! c3899 p3899))) +(petri (? c3899 p3899 (! c3900 p3900))) +(petri (? c3900 p3900 (! c3901 p3901))) +(petri (? c3901 p3901 (! c3902 p3902))) +(petri (? c3902 p3902 (! c3903 p3903))) +(petri (? c3903 p3903 (! c3904 p3904))) +(petri (? c3904 p3904 (! c3905 p3905))) +(petri (? c3905 p3905 (! c3906 p3906))) +(petri (? c3906 p3906 (! c3907 p3907))) +(petri (? c3907 p3907 (! c3908 p3908))) +(petri (? c3908 p3908 (! c3909 p3909))) +(petri (? c3909 p3909 (! c3910 p3910))) +(petri (? c3910 p3910 (! c3911 p3911))) +(petri (? c3911 p3911 (! c3912 p3912))) +(petri (? c3912 p3912 (! c3913 p3913))) +(petri (? c3913 p3913 (! c3914 p3914))) +(petri (? c3914 p3914 (! c3915 p3915))) +(petri (? c3915 p3915 (! c3916 p3916))) +(petri (? c3916 p3916 (! c3917 p3917))) +(petri (? c3917 p3917 (! c3918 p3918))) +(petri (? c3918 p3918 (! c3919 p3919))) +(petri (? c3919 p3919 (! c3920 p3920))) +(petri (? c3920 p3920 (! c3921 p3921))) +(petri (? c3921 p3921 (! c3922 p3922))) +(petri (? c3922 p3922 (! c3923 p3923))) +(petri (? c3923 p3923 (! c3924 p3924))) +(petri (? c3924 p3924 (! c3925 p3925))) +(petri (? c3925 p3925 (! c3926 p3926))) +(petri (? c3926 p3926 (! c3927 p3927))) +(petri (? c3927 p3927 (! c3928 p3928))) +(petri (? c3928 p3928 (! c3929 p3929))) +(petri (? c3929 p3929 (! c3930 p3930))) +(petri (? c3930 p3930 (! c3931 p3931))) +(petri (? c3931 p3931 (! c3932 p3932))) +(petri (? c3932 p3932 (! c3933 p3933))) +(petri (? c3933 p3933 (! c3934 p3934))) +(petri (? c3934 p3934 (! c3935 p3935))) +(petri (? c3935 p3935 (! c3936 p3936))) +(petri (? c3936 p3936 (! c3937 p3937))) +(petri (? c3937 p3937 (! c3938 p3938))) +(petri (? c3938 p3938 (! c3939 p3939))) +(petri (? c3939 p3939 (! c3940 p3940))) +(petri (? c3940 p3940 (! c3941 p3941))) +(petri (? c3941 p3941 (! c3942 p3942))) +(petri (? c3942 p3942 (! c3943 p3943))) +(petri (? c3943 p3943 (! c3944 p3944))) +(petri (? c3944 p3944 (! c3945 p3945))) +(petri (? c3945 p3945 (! c3946 p3946))) +(petri (? c3946 p3946 (! c3947 p3947))) +(petri (? c3947 p3947 (! c3948 p3948))) +(petri (? c3948 p3948 (! c3949 p3949))) +(petri (? c3949 p3949 (! c3950 p3950))) +(petri (? c3950 p3950 (! c3951 p3951))) +(petri (? c3951 p3951 (! c3952 p3952))) +(petri (? c3952 p3952 (! c3953 p3953))) +(petri (? c3953 p3953 (! c3954 p3954))) +(petri (? c3954 p3954 (! c3955 p3955))) +(petri (? c3955 p3955 (! c3956 p3956))) +(petri (? c3956 p3956 (! c3957 p3957))) +(petri (? c3957 p3957 (! c3958 p3958))) +(petri (? c3958 p3958 (! c3959 p3959))) +(petri (? c3959 p3959 (! c3960 p3960))) +(petri (? c3960 p3960 (! c3961 p3961))) +(petri (? c3961 p3961 (! c3962 p3962))) +(petri (? c3962 p3962 (! c3963 p3963))) +(petri (? c3963 p3963 (! c3964 p3964))) +(petri (? c3964 p3964 (! c3965 p3965))) +(petri (? c3965 p3965 (! c3966 p3966))) +(petri (? c3966 p3966 (! c3967 p3967))) +(petri (? c3967 p3967 (! c3968 p3968))) +(petri (? c3968 p3968 (! c3969 p3969))) +(petri (? c3969 p3969 (! c3970 p3970))) +(petri (? c3970 p3970 (! c3971 p3971))) +(petri (? c3971 p3971 (! c3972 p3972))) +(petri (? c3972 p3972 (! c3973 p3973))) +(petri (? c3973 p3973 (! c3974 p3974))) +(petri (? c3974 p3974 (! c3975 p3975))) +(petri (? c3975 p3975 (! c3976 p3976))) +(petri (? c3976 p3976 (! c3977 p3977))) +(petri (? c3977 p3977 (! c3978 p3978))) +(petri (? c3978 p3978 (! c3979 p3979))) +(petri (? c3979 p3979 (! c3980 p3980))) +(petri (? c3980 p3980 (! c3981 p3981))) +(petri (? c3981 p3981 (! c3982 p3982))) +(petri (? c3982 p3982 (! c3983 p3983))) +(petri (? c3983 p3983 (! c3984 p3984))) +(petri (? c3984 p3984 (! c3985 p3985))) +(petri (? c3985 p3985 (! c3986 p3986))) +(petri (? c3986 p3986 (! c3987 p3987))) +(petri (? c3987 p3987 (! c3988 p3988))) +(petri (? c3988 p3988 (! c3989 p3989))) +(petri (? c3989 p3989 (! c3990 p3990))) +(petri (? c3990 p3990 (! c3991 p3991))) +(petri (? c3991 p3991 (! c3992 p3992))) +(petri (? c3992 p3992 (! c3993 p3993))) +(petri (? c3993 p3993 (! c3994 p3994))) +(petri (? c3994 p3994 (! c3995 p3995))) +(petri (? c3995 p3995 (! c3996 p3996))) +(petri (? c3996 p3996 (! c3997 p3997))) +(petri (? c3997 p3997 (! c3998 p3998))) +(petri (? c3998 p3998 (! c3999 p3999))) +(petri (? c3999 p3999 (! c4000 p4000))) +(petri (! c0 p0)) +(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))) + +(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) + (petri (? $c $pl $b)) (petri (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_consume.mm2 b/examples/transforms/pc3_consume.mm2 new file mode 100644 index 00000000..6a3b713f --- /dev/null +++ b/examples/transforms/pc3_consume.mm2 @@ -0,0 +1,408 @@ +(petri (? c0 p0 (! c1 p1))) +(petri (? c1 p1 (! c2 p2))) +(petri (? c2 p2 (! c3 p3))) +(petri (? c3 p3 (! c4 p4))) +(petri (? c4 p4 (! c5 p5))) +(petri (? c5 p5 (! c6 p6))) +(petri (? c6 p6 (! c7 p7))) +(petri (? c7 p7 (! c8 p8))) +(petri (? c8 p8 (! c9 p9))) +(petri (? c9 p9 (! c10 p10))) +(petri (? c10 p10 (! c11 p11))) +(petri (? c11 p11 (! c12 p12))) +(petri (? c12 p12 (! c13 p13))) +(petri (? c13 p13 (! c14 p14))) +(petri (? c14 p14 (! c15 p15))) +(petri (? c15 p15 (! c16 p16))) +(petri (? c16 p16 (! c17 p17))) +(petri (? c17 p17 (! c18 p18))) +(petri (? c18 p18 (! c19 p19))) +(petri (? c19 p19 (! c20 p20))) +(petri (? c20 p20 (! c21 p21))) +(petri (? c21 p21 (! c22 p22))) +(petri (? c22 p22 (! c23 p23))) +(petri (? c23 p23 (! c24 p24))) +(petri (? c24 p24 (! c25 p25))) +(petri (? c25 p25 (! c26 p26))) +(petri (? c26 p26 (! c27 p27))) +(petri (? c27 p27 (! c28 p28))) +(petri (? c28 p28 (! c29 p29))) +(petri (? c29 p29 (! c30 p30))) +(petri (? c30 p30 (! c31 p31))) +(petri (? c31 p31 (! c32 p32))) +(petri (? c32 p32 (! c33 p33))) +(petri (? c33 p33 (! c34 p34))) +(petri (? c34 p34 (! c35 p35))) +(petri (? c35 p35 (! c36 p36))) +(petri (? c36 p36 (! c37 p37))) +(petri (? c37 p37 (! c38 p38))) +(petri (? c38 p38 (! c39 p39))) +(petri (? c39 p39 (! c40 p40))) +(petri (? c40 p40 (! c41 p41))) +(petri (? c41 p41 (! c42 p42))) +(petri (? c42 p42 (! c43 p43))) +(petri (? c43 p43 (! c44 p44))) +(petri (? c44 p44 (! c45 p45))) +(petri (? c45 p45 (! c46 p46))) +(petri (? c46 p46 (! c47 p47))) +(petri (? c47 p47 (! c48 p48))) +(petri (? c48 p48 (! c49 p49))) +(petri (? c49 p49 (! c50 p50))) +(petri (? c50 p50 (! c51 p51))) +(petri (? c51 p51 (! c52 p52))) +(petri (? c52 p52 (! c53 p53))) +(petri (? c53 p53 (! c54 p54))) +(petri (? c54 p54 (! c55 p55))) +(petri (? c55 p55 (! c56 p56))) +(petri (? c56 p56 (! c57 p57))) +(petri (? c57 p57 (! c58 p58))) +(petri (? c58 p58 (! c59 p59))) +(petri (? c59 p59 (! c60 p60))) +(petri (? c60 p60 (! c61 p61))) +(petri (? c61 p61 (! c62 p62))) +(petri (? c62 p62 (! c63 p63))) +(petri (? c63 p63 (! c64 p64))) +(petri (? c64 p64 (! c65 p65))) +(petri (? c65 p65 (! c66 p66))) +(petri (? c66 p66 (! c67 p67))) +(petri (? c67 p67 (! c68 p68))) +(petri (? c68 p68 (! c69 p69))) +(petri (? c69 p69 (! c70 p70))) +(petri (? c70 p70 (! c71 p71))) +(petri (? c71 p71 (! c72 p72))) +(petri (? c72 p72 (! c73 p73))) +(petri (? c73 p73 (! c74 p74))) +(petri (? c74 p74 (! c75 p75))) +(petri (? c75 p75 (! c76 p76))) +(petri (? c76 p76 (! c77 p77))) +(petri (? c77 p77 (! c78 p78))) +(petri (? c78 p78 (! c79 p79))) +(petri (? c79 p79 (! c80 p80))) +(petri (? c80 p80 (! c81 p81))) +(petri (? c81 p81 (! c82 p82))) +(petri (? c82 p82 (! c83 p83))) +(petri (? c83 p83 (! c84 p84))) +(petri (? c84 p84 (! c85 p85))) +(petri (? c85 p85 (! c86 p86))) +(petri (? c86 p86 (! c87 p87))) +(petri (? c87 p87 (! c88 p88))) +(petri (? c88 p88 (! c89 p89))) +(petri (? c89 p89 (! c90 p90))) +(petri (? c90 p90 (! c91 p91))) +(petri (? c91 p91 (! c92 p92))) +(petri (? c92 p92 (! c93 p93))) +(petri (? c93 p93 (! c94 p94))) +(petri (? c94 p94 (! c95 p95))) +(petri (? c95 p95 (! c96 p96))) +(petri (? c96 p96 (! c97 p97))) +(petri (? c97 p97 (! c98 p98))) +(petri (? c98 p98 (! c99 p99))) +(petri (? c99 p99 (! c100 p100))) +(petri (? c100 p100 (! c101 p101))) +(petri (? c101 p101 (! c102 p102))) +(petri (? c102 p102 (! c103 p103))) +(petri (? c103 p103 (! c104 p104))) +(petri (? c104 p104 (! c105 p105))) +(petri (? c105 p105 (! c106 p106))) +(petri (? c106 p106 (! c107 p107))) +(petri (? c107 p107 (! c108 p108))) +(petri (? c108 p108 (! c109 p109))) +(petri (? c109 p109 (! c110 p110))) +(petri (? c110 p110 (! c111 p111))) +(petri (? c111 p111 (! c112 p112))) +(petri (? c112 p112 (! c113 p113))) +(petri (? c113 p113 (! c114 p114))) +(petri (? c114 p114 (! c115 p115))) +(petri (? c115 p115 (! c116 p116))) +(petri (? c116 p116 (! c117 p117))) +(petri (? c117 p117 (! c118 p118))) +(petri (? c118 p118 (! c119 p119))) +(petri (? c119 p119 (! c120 p120))) +(petri (? c120 p120 (! c121 p121))) +(petri (? c121 p121 (! c122 p122))) +(petri (? c122 p122 (! c123 p123))) +(petri (? c123 p123 (! c124 p124))) +(petri (? c124 p124 (! c125 p125))) +(petri (? c125 p125 (! c126 p126))) +(petri (? c126 p126 (! c127 p127))) +(petri (? c127 p127 (! c128 p128))) +(petri (? c128 p128 (! c129 p129))) +(petri (? c129 p129 (! c130 p130))) +(petri (? c130 p130 (! c131 p131))) +(petri (? c131 p131 (! c132 p132))) +(petri (? c132 p132 (! c133 p133))) +(petri (? c133 p133 (! c134 p134))) +(petri (? c134 p134 (! c135 p135))) +(petri (? c135 p135 (! c136 p136))) +(petri (? c136 p136 (! c137 p137))) +(petri (? c137 p137 (! c138 p138))) +(petri (? c138 p138 (! c139 p139))) +(petri (? c139 p139 (! c140 p140))) +(petri (? c140 p140 (! c141 p141))) +(petri (? c141 p141 (! c142 p142))) +(petri (? c142 p142 (! c143 p143))) +(petri (? c143 p143 (! c144 p144))) +(petri (? c144 p144 (! c145 p145))) +(petri (? c145 p145 (! c146 p146))) +(petri (? c146 p146 (! c147 p147))) +(petri (? c147 p147 (! c148 p148))) +(petri (? c148 p148 (! c149 p149))) +(petri (? c149 p149 (! c150 p150))) +(petri (? c150 p150 (! c151 p151))) +(petri (? c151 p151 (! c152 p152))) +(petri (? c152 p152 (! c153 p153))) +(petri (? c153 p153 (! c154 p154))) +(petri (? c154 p154 (! c155 p155))) +(petri (? c155 p155 (! c156 p156))) +(petri (? c156 p156 (! c157 p157))) +(petri (? c157 p157 (! c158 p158))) +(petri (? c158 p158 (! c159 p159))) +(petri (? c159 p159 (! c160 p160))) +(petri (? c160 p160 (! c161 p161))) +(petri (? c161 p161 (! c162 p162))) +(petri (? c162 p162 (! c163 p163))) +(petri (? c163 p163 (! c164 p164))) +(petri (? c164 p164 (! c165 p165))) +(petri (? c165 p165 (! c166 p166))) +(petri (? c166 p166 (! c167 p167))) +(petri (? c167 p167 (! c168 p168))) +(petri (? c168 p168 (! c169 p169))) +(petri (? c169 p169 (! c170 p170))) +(petri (? c170 p170 (! c171 p171))) +(petri (? c171 p171 (! c172 p172))) +(petri (? c172 p172 (! c173 p173))) +(petri (? c173 p173 (! c174 p174))) +(petri (? c174 p174 (! c175 p175))) +(petri (? c175 p175 (! c176 p176))) +(petri (? c176 p176 (! c177 p177))) +(petri (? c177 p177 (! c178 p178))) +(petri (? c178 p178 (! c179 p179))) +(petri (? c179 p179 (! c180 p180))) +(petri (? c180 p180 (! c181 p181))) +(petri (? c181 p181 (! c182 p182))) +(petri (? c182 p182 (! c183 p183))) +(petri (? c183 p183 (! c184 p184))) +(petri (? c184 p184 (! c185 p185))) +(petri (? c185 p185 (! c186 p186))) +(petri (? c186 p186 (! c187 p187))) +(petri (? c187 p187 (! c188 p188))) +(petri (? c188 p188 (! c189 p189))) +(petri (? c189 p189 (! c190 p190))) +(petri (? c190 p190 (! c191 p191))) +(petri (? c191 p191 (! c192 p192))) +(petri (? c192 p192 (! c193 p193))) +(petri (? c193 p193 (! c194 p194))) +(petri (? c194 p194 (! c195 p195))) +(petri (? c195 p195 (! c196 p196))) +(petri (? c196 p196 (! c197 p197))) +(petri (? c197 p197 (! c198 p198))) +(petri (? c198 p198 (! c199 p199))) +(petri (? c199 p199 (! c200 p200))) +(petri (? c200 p200 (! c201 p201))) +(petri (? c201 p201 (! c202 p202))) +(petri (? c202 p202 (! c203 p203))) +(petri (? c203 p203 (! c204 p204))) +(petri (? c204 p204 (! c205 p205))) +(petri (? c205 p205 (! c206 p206))) +(petri (? c206 p206 (! c207 p207))) +(petri (? c207 p207 (! c208 p208))) +(petri (? c208 p208 (! c209 p209))) +(petri (? c209 p209 (! c210 p210))) +(petri (? c210 p210 (! c211 p211))) +(petri (? c211 p211 (! c212 p212))) +(petri (? c212 p212 (! c213 p213))) +(petri (? c213 p213 (! c214 p214))) +(petri (? c214 p214 (! c215 p215))) +(petri (? c215 p215 (! c216 p216))) +(petri (? c216 p216 (! c217 p217))) +(petri (? c217 p217 (! c218 p218))) +(petri (? c218 p218 (! c219 p219))) +(petri (? c219 p219 (! c220 p220))) +(petri (? c220 p220 (! c221 p221))) +(petri (? c221 p221 (! c222 p222))) +(petri (? c222 p222 (! c223 p223))) +(petri (? c223 p223 (! c224 p224))) +(petri (? c224 p224 (! c225 p225))) +(petri (? c225 p225 (! c226 p226))) +(petri (? c226 p226 (! c227 p227))) +(petri (? c227 p227 (! c228 p228))) +(petri (? c228 p228 (! c229 p229))) +(petri (? c229 p229 (! c230 p230))) +(petri (? c230 p230 (! c231 p231))) +(petri (? c231 p231 (! c232 p232))) +(petri (? c232 p232 (! c233 p233))) +(petri (? c233 p233 (! c234 p234))) +(petri (? c234 p234 (! c235 p235))) +(petri (? c235 p235 (! c236 p236))) +(petri (? c236 p236 (! c237 p237))) +(petri (? c237 p237 (! c238 p238))) +(petri (? c238 p238 (! c239 p239))) +(petri (? c239 p239 (! c240 p240))) +(petri (? c240 p240 (! c241 p241))) +(petri (? c241 p241 (! c242 p242))) +(petri (? c242 p242 (! c243 p243))) +(petri (? c243 p243 (! c244 p244))) +(petri (? c244 p244 (! c245 p245))) +(petri (? c245 p245 (! c246 p246))) +(petri (? c246 p246 (! c247 p247))) +(petri (? c247 p247 (! c248 p248))) +(petri (? c248 p248 (! c249 p249))) +(petri (? c249 p249 (! c250 p250))) +(petri (? c250 p250 (! c251 p251))) +(petri (? c251 p251 (! c252 p252))) +(petri (? c252 p252 (! c253 p253))) +(petri (? c253 p253 (! c254 p254))) +(petri (? c254 p254 (! c255 p255))) +(petri (? c255 p255 (! c256 p256))) +(petri (? c256 p256 (! c257 p257))) +(petri (? c257 p257 (! c258 p258))) +(petri (? c258 p258 (! c259 p259))) +(petri (? c259 p259 (! c260 p260))) +(petri (? c260 p260 (! c261 p261))) +(petri (? c261 p261 (! c262 p262))) +(petri (? c262 p262 (! c263 p263))) +(petri (? c263 p263 (! c264 p264))) +(petri (? c264 p264 (! c265 p265))) +(petri (? c265 p265 (! c266 p266))) +(petri (? c266 p266 (! c267 p267))) +(petri (? c267 p267 (! c268 p268))) +(petri (? c268 p268 (! c269 p269))) +(petri (? c269 p269 (! c270 p270))) +(petri (? c270 p270 (! c271 p271))) +(petri (? c271 p271 (! c272 p272))) +(petri (? c272 p272 (! c273 p273))) +(petri (? c273 p273 (! c274 p274))) +(petri (? c274 p274 (! c275 p275))) +(petri (? c275 p275 (! c276 p276))) +(petri (? c276 p276 (! c277 p277))) +(petri (? c277 p277 (! c278 p278))) +(petri (? c278 p278 (! c279 p279))) +(petri (? c279 p279 (! c280 p280))) +(petri (? c280 p280 (! c281 p281))) +(petri (? c281 p281 (! c282 p282))) +(petri (? c282 p282 (! c283 p283))) +(petri (? c283 p283 (! c284 p284))) +(petri (? c284 p284 (! c285 p285))) +(petri (? c285 p285 (! c286 p286))) +(petri (? c286 p286 (! c287 p287))) +(petri (? c287 p287 (! c288 p288))) +(petri (? c288 p288 (! c289 p289))) +(petri (? c289 p289 (! c290 p290))) +(petri (? c290 p290 (! c291 p291))) +(petri (? c291 p291 (! c292 p292))) +(petri (? c292 p292 (! c293 p293))) +(petri (? c293 p293 (! c294 p294))) +(petri (? c294 p294 (! c295 p295))) +(petri (? c295 p295 (! c296 p296))) +(petri (? c296 p296 (! c297 p297))) +(petri (? c297 p297 (! c298 p298))) +(petri (? c298 p298 (! c299 p299))) +(petri (? c299 p299 (! c300 p300))) +(petri (? c300 p300 (! c301 p301))) +(petri (? c301 p301 (! c302 p302))) +(petri (? c302 p302 (! c303 p303))) +(petri (? c303 p303 (! c304 p304))) +(petri (? c304 p304 (! c305 p305))) +(petri (? c305 p305 (! c306 p306))) +(petri (? c306 p306 (! c307 p307))) +(petri (? c307 p307 (! c308 p308))) +(petri (? c308 p308 (! c309 p309))) +(petri (? c309 p309 (! c310 p310))) +(petri (? c310 p310 (! c311 p311))) +(petri (? c311 p311 (! c312 p312))) +(petri (? c312 p312 (! c313 p313))) +(petri (? c313 p313 (! c314 p314))) +(petri (? c314 p314 (! c315 p315))) +(petri (? c315 p315 (! c316 p316))) +(petri (? c316 p316 (! c317 p317))) +(petri (? c317 p317 (! c318 p318))) +(petri (? c318 p318 (! c319 p319))) +(petri (? c319 p319 (! c320 p320))) +(petri (? c320 p320 (! c321 p321))) +(petri (? c321 p321 (! c322 p322))) +(petri (? c322 p322 (! c323 p323))) +(petri (? c323 p323 (! c324 p324))) +(petri (? c324 p324 (! c325 p325))) +(petri (? c325 p325 (! c326 p326))) +(petri (? c326 p326 (! c327 p327))) +(petri (? c327 p327 (! c328 p328))) +(petri (? c328 p328 (! c329 p329))) +(petri (? c329 p329 (! c330 p330))) +(petri (? c330 p330 (! c331 p331))) +(petri (? c331 p331 (! c332 p332))) +(petri (? c332 p332 (! c333 p333))) +(petri (? c333 p333 (! c334 p334))) +(petri (? c334 p334 (! c335 p335))) +(petri (? c335 p335 (! c336 p336))) +(petri (? c336 p336 (! c337 p337))) +(petri (? c337 p337 (! c338 p338))) +(petri (? c338 p338 (! c339 p339))) +(petri (? c339 p339 (! c340 p340))) +(petri (? c340 p340 (! c341 p341))) +(petri (? c341 p341 (! c342 p342))) +(petri (? c342 p342 (! c343 p343))) +(petri (? c343 p343 (! c344 p344))) +(petri (? c344 p344 (! c345 p345))) +(petri (? c345 p345 (! c346 p346))) +(petri (? c346 p346 (! c347 p347))) +(petri (? c347 p347 (! c348 p348))) +(petri (? c348 p348 (! c349 p349))) +(petri (? c349 p349 (! c350 p350))) +(petri (? c350 p350 (! c351 p351))) +(petri (? c351 p351 (! c352 p352))) +(petri (? c352 p352 (! c353 p353))) +(petri (? c353 p353 (! c354 p354))) +(petri (? c354 p354 (! c355 p355))) +(petri (? c355 p355 (! c356 p356))) +(petri (? c356 p356 (! c357 p357))) +(petri (? c357 p357 (! c358 p358))) +(petri (? c358 p358 (! c359 p359))) +(petri (? c359 p359 (! c360 p360))) +(petri (? c360 p360 (! c361 p361))) +(petri (? c361 p361 (! c362 p362))) +(petri (? c362 p362 (! c363 p363))) +(petri (? c363 p363 (! c364 p364))) +(petri (? c364 p364 (! c365 p365))) +(petri (? c365 p365 (! c366 p366))) +(petri (? c366 p366 (! c367 p367))) +(petri (? c367 p367 (! c368 p368))) +(petri (? c368 p368 (! c369 p369))) +(petri (? c369 p369 (! c370 p370))) +(petri (? c370 p370 (! c371 p371))) +(petri (? c371 p371 (! c372 p372))) +(petri (? c372 p372 (! c373 p373))) +(petri (? c373 p373 (! c374 p374))) +(petri (? c374 p374 (! c375 p375))) +(petri (? c375 p375 (! c376 p376))) +(petri (? c376 p376 (! c377 p377))) +(petri (? c377 p377 (! c378 p378))) +(petri (? c378 p378 (! c379 p379))) +(petri (? c379 p379 (! c380 p380))) +(petri (? c380 p380 (! c381 p381))) +(petri (? c381 p381 (! c382 p382))) +(petri (? c382 p382 (! c383 p383))) +(petri (? c383 p383 (! c384 p384))) +(petri (? c384 p384 (! c385 p385))) +(petri (? c385 p385 (! c386 p386))) +(petri (? c386 p386 (! c387 p387))) +(petri (? c387 p387 (! c388 p388))) +(petri (? c388 p388 (! c389 p389))) +(petri (? c389 p389 (! c390 p390))) +(petri (? c390 p390 (! c391 p391))) +(petri (? c391 p391 (! c392 p392))) +(petri (? c392 p392 (! c393 p393))) +(petri (? c393 p393 (! c394 p394))) +(petri (? c394 p394 (! c395 p395))) +(petri (? c395 p395 (! c396 p396))) +(petri (? c396 p396 (! c397 p397))) +(petri (? c397 p397 (! c398 p398))) +(petri (? c398 p398 (! c399 p399))) +(petri (? c399 p399 (! c400 p400))) +(petri (! c0 p0)) +(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + +(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) + (petri (? $c $pl $b)) (petri (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) + (- (petri (? $c $pl $b))) (- (petri (! $c $pl))) + (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_delta.mm2 b/examples/transforms/pc3_delta.mm2 new file mode 100644 index 00000000..aa1fde9e --- /dev/null +++ b/examples/transforms/pc3_delta.mm2 @@ -0,0 +1,408 @@ +(petri (? c0 p0 (! c1 p1))) +(petri (? c1 p1 (! c2 p2))) +(petri (? c2 p2 (! c3 p3))) +(petri (? c3 p3 (! c4 p4))) +(petri (? c4 p4 (! c5 p5))) +(petri (? c5 p5 (! c6 p6))) +(petri (? c6 p6 (! c7 p7))) +(petri (? c7 p7 (! c8 p8))) +(petri (? c8 p8 (! c9 p9))) +(petri (? c9 p9 (! c10 p10))) +(petri (? c10 p10 (! c11 p11))) +(petri (? c11 p11 (! c12 p12))) +(petri (? c12 p12 (! c13 p13))) +(petri (? c13 p13 (! c14 p14))) +(petri (? c14 p14 (! c15 p15))) +(petri (? c15 p15 (! c16 p16))) +(petri (? c16 p16 (! c17 p17))) +(petri (? c17 p17 (! c18 p18))) +(petri (? c18 p18 (! c19 p19))) +(petri (? c19 p19 (! c20 p20))) +(petri (? c20 p20 (! c21 p21))) +(petri (? c21 p21 (! c22 p22))) +(petri (? c22 p22 (! c23 p23))) +(petri (? c23 p23 (! c24 p24))) +(petri (? c24 p24 (! c25 p25))) +(petri (? c25 p25 (! c26 p26))) +(petri (? c26 p26 (! c27 p27))) +(petri (? c27 p27 (! c28 p28))) +(petri (? c28 p28 (! c29 p29))) +(petri (? c29 p29 (! c30 p30))) +(petri (? c30 p30 (! c31 p31))) +(petri (? c31 p31 (! c32 p32))) +(petri (? c32 p32 (! c33 p33))) +(petri (? c33 p33 (! c34 p34))) +(petri (? c34 p34 (! c35 p35))) +(petri (? c35 p35 (! c36 p36))) +(petri (? c36 p36 (! c37 p37))) +(petri (? c37 p37 (! c38 p38))) +(petri (? c38 p38 (! c39 p39))) +(petri (? c39 p39 (! c40 p40))) +(petri (? c40 p40 (! c41 p41))) +(petri (? c41 p41 (! c42 p42))) +(petri (? c42 p42 (! c43 p43))) +(petri (? c43 p43 (! c44 p44))) +(petri (? c44 p44 (! c45 p45))) +(petri (? c45 p45 (! c46 p46))) +(petri (? c46 p46 (! c47 p47))) +(petri (? c47 p47 (! c48 p48))) +(petri (? c48 p48 (! c49 p49))) +(petri (? c49 p49 (! c50 p50))) +(petri (? c50 p50 (! c51 p51))) +(petri (? c51 p51 (! c52 p52))) +(petri (? c52 p52 (! c53 p53))) +(petri (? c53 p53 (! c54 p54))) +(petri (? c54 p54 (! c55 p55))) +(petri (? c55 p55 (! c56 p56))) +(petri (? c56 p56 (! c57 p57))) +(petri (? c57 p57 (! c58 p58))) +(petri (? c58 p58 (! c59 p59))) +(petri (? c59 p59 (! c60 p60))) +(petri (? c60 p60 (! c61 p61))) +(petri (? c61 p61 (! c62 p62))) +(petri (? c62 p62 (! c63 p63))) +(petri (? c63 p63 (! c64 p64))) +(petri (? c64 p64 (! c65 p65))) +(petri (? c65 p65 (! c66 p66))) +(petri (? c66 p66 (! c67 p67))) +(petri (? c67 p67 (! c68 p68))) +(petri (? c68 p68 (! c69 p69))) +(petri (? c69 p69 (! c70 p70))) +(petri (? c70 p70 (! c71 p71))) +(petri (? c71 p71 (! c72 p72))) +(petri (? c72 p72 (! c73 p73))) +(petri (? c73 p73 (! c74 p74))) +(petri (? c74 p74 (! c75 p75))) +(petri (? c75 p75 (! c76 p76))) +(petri (? c76 p76 (! c77 p77))) +(petri (? c77 p77 (! c78 p78))) +(petri (? c78 p78 (! c79 p79))) +(petri (? c79 p79 (! c80 p80))) +(petri (? c80 p80 (! c81 p81))) +(petri (? c81 p81 (! c82 p82))) +(petri (? c82 p82 (! c83 p83))) +(petri (? c83 p83 (! c84 p84))) +(petri (? c84 p84 (! c85 p85))) +(petri (? c85 p85 (! c86 p86))) +(petri (? c86 p86 (! c87 p87))) +(petri (? c87 p87 (! c88 p88))) +(petri (? c88 p88 (! c89 p89))) +(petri (? c89 p89 (! c90 p90))) +(petri (? c90 p90 (! c91 p91))) +(petri (? c91 p91 (! c92 p92))) +(petri (? c92 p92 (! c93 p93))) +(petri (? c93 p93 (! c94 p94))) +(petri (? c94 p94 (! c95 p95))) +(petri (? c95 p95 (! c96 p96))) +(petri (? c96 p96 (! c97 p97))) +(petri (? c97 p97 (! c98 p98))) +(petri (? c98 p98 (! c99 p99))) +(petri (? c99 p99 (! c100 p100))) +(petri (? c100 p100 (! c101 p101))) +(petri (? c101 p101 (! c102 p102))) +(petri (? c102 p102 (! c103 p103))) +(petri (? c103 p103 (! c104 p104))) +(petri (? c104 p104 (! c105 p105))) +(petri (? c105 p105 (! c106 p106))) +(petri (? c106 p106 (! c107 p107))) +(petri (? c107 p107 (! c108 p108))) +(petri (? c108 p108 (! c109 p109))) +(petri (? c109 p109 (! c110 p110))) +(petri (? c110 p110 (! c111 p111))) +(petri (? c111 p111 (! c112 p112))) +(petri (? c112 p112 (! c113 p113))) +(petri (? c113 p113 (! c114 p114))) +(petri (? c114 p114 (! c115 p115))) +(petri (? c115 p115 (! c116 p116))) +(petri (? c116 p116 (! c117 p117))) +(petri (? c117 p117 (! c118 p118))) +(petri (? c118 p118 (! c119 p119))) +(petri (? c119 p119 (! c120 p120))) +(petri (? c120 p120 (! c121 p121))) +(petri (? c121 p121 (! c122 p122))) +(petri (? c122 p122 (! c123 p123))) +(petri (? c123 p123 (! c124 p124))) +(petri (? c124 p124 (! c125 p125))) +(petri (? c125 p125 (! c126 p126))) +(petri (? c126 p126 (! c127 p127))) +(petri (? c127 p127 (! c128 p128))) +(petri (? c128 p128 (! c129 p129))) +(petri (? c129 p129 (! c130 p130))) +(petri (? c130 p130 (! c131 p131))) +(petri (? c131 p131 (! c132 p132))) +(petri (? c132 p132 (! c133 p133))) +(petri (? c133 p133 (! c134 p134))) +(petri (? c134 p134 (! c135 p135))) +(petri (? c135 p135 (! c136 p136))) +(petri (? c136 p136 (! c137 p137))) +(petri (? c137 p137 (! c138 p138))) +(petri (? c138 p138 (! c139 p139))) +(petri (? c139 p139 (! c140 p140))) +(petri (? c140 p140 (! c141 p141))) +(petri (? c141 p141 (! c142 p142))) +(petri (? c142 p142 (! c143 p143))) +(petri (? c143 p143 (! c144 p144))) +(petri (? c144 p144 (! c145 p145))) +(petri (? c145 p145 (! c146 p146))) +(petri (? c146 p146 (! c147 p147))) +(petri (? c147 p147 (! c148 p148))) +(petri (? c148 p148 (! c149 p149))) +(petri (? c149 p149 (! c150 p150))) +(petri (? c150 p150 (! c151 p151))) +(petri (? c151 p151 (! c152 p152))) +(petri (? c152 p152 (! c153 p153))) +(petri (? c153 p153 (! c154 p154))) +(petri (? c154 p154 (! c155 p155))) +(petri (? c155 p155 (! c156 p156))) +(petri (? c156 p156 (! c157 p157))) +(petri (? c157 p157 (! c158 p158))) +(petri (? c158 p158 (! c159 p159))) +(petri (? c159 p159 (! c160 p160))) +(petri (? c160 p160 (! c161 p161))) +(petri (? c161 p161 (! c162 p162))) +(petri (? c162 p162 (! c163 p163))) +(petri (? c163 p163 (! c164 p164))) +(petri (? c164 p164 (! c165 p165))) +(petri (? c165 p165 (! c166 p166))) +(petri (? c166 p166 (! c167 p167))) +(petri (? c167 p167 (! c168 p168))) +(petri (? c168 p168 (! c169 p169))) +(petri (? c169 p169 (! c170 p170))) +(petri (? c170 p170 (! c171 p171))) +(petri (? c171 p171 (! c172 p172))) +(petri (? c172 p172 (! c173 p173))) +(petri (? c173 p173 (! c174 p174))) +(petri (? c174 p174 (! c175 p175))) +(petri (? c175 p175 (! c176 p176))) +(petri (? c176 p176 (! c177 p177))) +(petri (? c177 p177 (! c178 p178))) +(petri (? c178 p178 (! c179 p179))) +(petri (? c179 p179 (! c180 p180))) +(petri (? c180 p180 (! c181 p181))) +(petri (? c181 p181 (! c182 p182))) +(petri (? c182 p182 (! c183 p183))) +(petri (? c183 p183 (! c184 p184))) +(petri (? c184 p184 (! c185 p185))) +(petri (? c185 p185 (! c186 p186))) +(petri (? c186 p186 (! c187 p187))) +(petri (? c187 p187 (! c188 p188))) +(petri (? c188 p188 (! c189 p189))) +(petri (? c189 p189 (! c190 p190))) +(petri (? c190 p190 (! c191 p191))) +(petri (? c191 p191 (! c192 p192))) +(petri (? c192 p192 (! c193 p193))) +(petri (? c193 p193 (! c194 p194))) +(petri (? c194 p194 (! c195 p195))) +(petri (? c195 p195 (! c196 p196))) +(petri (? c196 p196 (! c197 p197))) +(petri (? c197 p197 (! c198 p198))) +(petri (? c198 p198 (! c199 p199))) +(petri (? c199 p199 (! c200 p200))) +(petri (? c200 p200 (! c201 p201))) +(petri (? c201 p201 (! c202 p202))) +(petri (? c202 p202 (! c203 p203))) +(petri (? c203 p203 (! c204 p204))) +(petri (? c204 p204 (! c205 p205))) +(petri (? c205 p205 (! c206 p206))) +(petri (? c206 p206 (! c207 p207))) +(petri (? c207 p207 (! c208 p208))) +(petri (? c208 p208 (! c209 p209))) +(petri (? c209 p209 (! c210 p210))) +(petri (? c210 p210 (! c211 p211))) +(petri (? c211 p211 (! c212 p212))) +(petri (? c212 p212 (! c213 p213))) +(petri (? c213 p213 (! c214 p214))) +(petri (? c214 p214 (! c215 p215))) +(petri (? c215 p215 (! c216 p216))) +(petri (? c216 p216 (! c217 p217))) +(petri (? c217 p217 (! c218 p218))) +(petri (? c218 p218 (! c219 p219))) +(petri (? c219 p219 (! c220 p220))) +(petri (? c220 p220 (! c221 p221))) +(petri (? c221 p221 (! c222 p222))) +(petri (? c222 p222 (! c223 p223))) +(petri (? c223 p223 (! c224 p224))) +(petri (? c224 p224 (! c225 p225))) +(petri (? c225 p225 (! c226 p226))) +(petri (? c226 p226 (! c227 p227))) +(petri (? c227 p227 (! c228 p228))) +(petri (? c228 p228 (! c229 p229))) +(petri (? c229 p229 (! c230 p230))) +(petri (? c230 p230 (! c231 p231))) +(petri (? c231 p231 (! c232 p232))) +(petri (? c232 p232 (! c233 p233))) +(petri (? c233 p233 (! c234 p234))) +(petri (? c234 p234 (! c235 p235))) +(petri (? c235 p235 (! c236 p236))) +(petri (? c236 p236 (! c237 p237))) +(petri (? c237 p237 (! c238 p238))) +(petri (? c238 p238 (! c239 p239))) +(petri (? c239 p239 (! c240 p240))) +(petri (? c240 p240 (! c241 p241))) +(petri (? c241 p241 (! c242 p242))) +(petri (? c242 p242 (! c243 p243))) +(petri (? c243 p243 (! c244 p244))) +(petri (? c244 p244 (! c245 p245))) +(petri (? c245 p245 (! c246 p246))) +(petri (? c246 p246 (! c247 p247))) +(petri (? c247 p247 (! c248 p248))) +(petri (? c248 p248 (! c249 p249))) +(petri (? c249 p249 (! c250 p250))) +(petri (? c250 p250 (! c251 p251))) +(petri (? c251 p251 (! c252 p252))) +(petri (? c252 p252 (! c253 p253))) +(petri (? c253 p253 (! c254 p254))) +(petri (? c254 p254 (! c255 p255))) +(petri (? c255 p255 (! c256 p256))) +(petri (? c256 p256 (! c257 p257))) +(petri (? c257 p257 (! c258 p258))) +(petri (? c258 p258 (! c259 p259))) +(petri (? c259 p259 (! c260 p260))) +(petri (? c260 p260 (! c261 p261))) +(petri (? c261 p261 (! c262 p262))) +(petri (? c262 p262 (! c263 p263))) +(petri (? c263 p263 (! c264 p264))) +(petri (? c264 p264 (! c265 p265))) +(petri (? c265 p265 (! c266 p266))) +(petri (? c266 p266 (! c267 p267))) +(petri (? c267 p267 (! c268 p268))) +(petri (? c268 p268 (! c269 p269))) +(petri (? c269 p269 (! c270 p270))) +(petri (? c270 p270 (! c271 p271))) +(petri (? c271 p271 (! c272 p272))) +(petri (? c272 p272 (! c273 p273))) +(petri (? c273 p273 (! c274 p274))) +(petri (? c274 p274 (! c275 p275))) +(petri (? c275 p275 (! c276 p276))) +(petri (? c276 p276 (! c277 p277))) +(petri (? c277 p277 (! c278 p278))) +(petri (? c278 p278 (! c279 p279))) +(petri (? c279 p279 (! c280 p280))) +(petri (? c280 p280 (! c281 p281))) +(petri (? c281 p281 (! c282 p282))) +(petri (? c282 p282 (! c283 p283))) +(petri (? c283 p283 (! c284 p284))) +(petri (? c284 p284 (! c285 p285))) +(petri (? c285 p285 (! c286 p286))) +(petri (? c286 p286 (! c287 p287))) +(petri (? c287 p287 (! c288 p288))) +(petri (? c288 p288 (! c289 p289))) +(petri (? c289 p289 (! c290 p290))) +(petri (? c290 p290 (! c291 p291))) +(petri (? c291 p291 (! c292 p292))) +(petri (? c292 p292 (! c293 p293))) +(petri (? c293 p293 (! c294 p294))) +(petri (? c294 p294 (! c295 p295))) +(petri (? c295 p295 (! c296 p296))) +(petri (? c296 p296 (! c297 p297))) +(petri (? c297 p297 (! c298 p298))) +(petri (? c298 p298 (! c299 p299))) +(petri (? c299 p299 (! c300 p300))) +(petri (? c300 p300 (! c301 p301))) +(petri (? c301 p301 (! c302 p302))) +(petri (? c302 p302 (! c303 p303))) +(petri (? c303 p303 (! c304 p304))) +(petri (? c304 p304 (! c305 p305))) +(petri (? c305 p305 (! c306 p306))) +(petri (? c306 p306 (! c307 p307))) +(petri (? c307 p307 (! c308 p308))) +(petri (? c308 p308 (! c309 p309))) +(petri (? c309 p309 (! c310 p310))) +(petri (? c310 p310 (! c311 p311))) +(petri (? c311 p311 (! c312 p312))) +(petri (? c312 p312 (! c313 p313))) +(petri (? c313 p313 (! c314 p314))) +(petri (? c314 p314 (! c315 p315))) +(petri (? c315 p315 (! c316 p316))) +(petri (? c316 p316 (! c317 p317))) +(petri (? c317 p317 (! c318 p318))) +(petri (? c318 p318 (! c319 p319))) +(petri (? c319 p319 (! c320 p320))) +(petri (? c320 p320 (! c321 p321))) +(petri (? c321 p321 (! c322 p322))) +(petri (? c322 p322 (! c323 p323))) +(petri (? c323 p323 (! c324 p324))) +(petri (? c324 p324 (! c325 p325))) +(petri (? c325 p325 (! c326 p326))) +(petri (? c326 p326 (! c327 p327))) +(petri (? c327 p327 (! c328 p328))) +(petri (? c328 p328 (! c329 p329))) +(petri (? c329 p329 (! c330 p330))) +(petri (? c330 p330 (! c331 p331))) +(petri (? c331 p331 (! c332 p332))) +(petri (? c332 p332 (! c333 p333))) +(petri (? c333 p333 (! c334 p334))) +(petri (? c334 p334 (! c335 p335))) +(petri (? c335 p335 (! c336 p336))) +(petri (? c336 p336 (! c337 p337))) +(petri (? c337 p337 (! c338 p338))) +(petri (? c338 p338 (! c339 p339))) +(petri (? c339 p339 (! c340 p340))) +(petri (? c340 p340 (! c341 p341))) +(petri (? c341 p341 (! c342 p342))) +(petri (? c342 p342 (! c343 p343))) +(petri (? c343 p343 (! c344 p344))) +(petri (? c344 p344 (! c345 p345))) +(petri (? c345 p345 (! c346 p346))) +(petri (? c346 p346 (! c347 p347))) +(petri (? c347 p347 (! c348 p348))) +(petri (? c348 p348 (! c349 p349))) +(petri (? c349 p349 (! c350 p350))) +(petri (? c350 p350 (! c351 p351))) +(petri (? c351 p351 (! c352 p352))) +(petri (? c352 p352 (! c353 p353))) +(petri (? c353 p353 (! c354 p354))) +(petri (? c354 p354 (! c355 p355))) +(petri (? c355 p355 (! c356 p356))) +(petri (? c356 p356 (! c357 p357))) +(petri (? c357 p357 (! c358 p358))) +(petri (? c358 p358 (! c359 p359))) +(petri (? c359 p359 (! c360 p360))) +(petri (? c360 p360 (! c361 p361))) +(petri (? c361 p361 (! c362 p362))) +(petri (? c362 p362 (! c363 p363))) +(petri (? c363 p363 (! c364 p364))) +(petri (? c364 p364 (! c365 p365))) +(petri (? c365 p365 (! c366 p366))) +(petri (? c366 p366 (! c367 p367))) +(petri (? c367 p367 (! c368 p368))) +(petri (? c368 p368 (! c369 p369))) +(petri (? c369 p369 (! c370 p370))) +(petri (? c370 p370 (! c371 p371))) +(petri (? c371 p371 (! c372 p372))) +(petri (? c372 p372 (! c373 p373))) +(petri (? c373 p373 (! c374 p374))) +(petri (? c374 p374 (! c375 p375))) +(petri (? c375 p375 (! c376 p376))) +(petri (? c376 p376 (! c377 p377))) +(petri (? c377 p377 (! c378 p378))) +(petri (? c378 p378 (! c379 p379))) +(petri (? c379 p379 (! c380 p380))) +(petri (? c380 p380 (! c381 p381))) +(petri (? c381 p381 (! c382 p382))) +(petri (? c382 p382 (! c383 p383))) +(petri (? c383 p383 (! c384 p384))) +(petri (? c384 p384 (! c385 p385))) +(petri (? c385 p385 (! c386 p386))) +(petri (? c386 p386 (! c387 p387))) +(petri (? c387 p387 (! c388 p388))) +(petri (? c388 p388 (! c389 p389))) +(petri (? c389 p389 (! c390 p390))) +(petri (? c390 p390 (! c391 p391))) +(petri (? c391 p391 (! c392 p392))) +(petri (? c392 p392 (! c393 p393))) +(petri (? c393 p393 (! c394 p394))) +(petri (? c394 p394 (! c395 p395))) +(petri (? c395 p395 (! c396 p396))) +(petri (? c396 p396 (! c397 p397))) +(petri (? c397 p397 (! c398 p398))) +(petri (? c398 p398 (! c399 p399))) +(petri (? c399 p399 (! c400 p400))) +(petri (! c0 p0)) +(dmsg (! c0 p0)) +(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + +(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) + (petri (? $c $pl $b)) (dmsg (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b)) + (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_naive.mm2 b/examples/transforms/pc3_naive.mm2 new file mode 100644 index 00000000..bd06184b --- /dev/null +++ b/examples/transforms/pc3_naive.mm2 @@ -0,0 +1,406 @@ +(petri (? c0 p0 (! c1 p1))) +(petri (? c1 p1 (! c2 p2))) +(petri (? c2 p2 (! c3 p3))) +(petri (? c3 p3 (! c4 p4))) +(petri (? c4 p4 (! c5 p5))) +(petri (? c5 p5 (! c6 p6))) +(petri (? c6 p6 (! c7 p7))) +(petri (? c7 p7 (! c8 p8))) +(petri (? c8 p8 (! c9 p9))) +(petri (? c9 p9 (! c10 p10))) +(petri (? c10 p10 (! c11 p11))) +(petri (? c11 p11 (! c12 p12))) +(petri (? c12 p12 (! c13 p13))) +(petri (? c13 p13 (! c14 p14))) +(petri (? c14 p14 (! c15 p15))) +(petri (? c15 p15 (! c16 p16))) +(petri (? c16 p16 (! c17 p17))) +(petri (? c17 p17 (! c18 p18))) +(petri (? c18 p18 (! c19 p19))) +(petri (? c19 p19 (! c20 p20))) +(petri (? c20 p20 (! c21 p21))) +(petri (? c21 p21 (! c22 p22))) +(petri (? c22 p22 (! c23 p23))) +(petri (? c23 p23 (! c24 p24))) +(petri (? c24 p24 (! c25 p25))) +(petri (? c25 p25 (! c26 p26))) +(petri (? c26 p26 (! c27 p27))) +(petri (? c27 p27 (! c28 p28))) +(petri (? c28 p28 (! c29 p29))) +(petri (? c29 p29 (! c30 p30))) +(petri (? c30 p30 (! c31 p31))) +(petri (? c31 p31 (! c32 p32))) +(petri (? c32 p32 (! c33 p33))) +(petri (? c33 p33 (! c34 p34))) +(petri (? c34 p34 (! c35 p35))) +(petri (? c35 p35 (! c36 p36))) +(petri (? c36 p36 (! c37 p37))) +(petri (? c37 p37 (! c38 p38))) +(petri (? c38 p38 (! c39 p39))) +(petri (? c39 p39 (! c40 p40))) +(petri (? c40 p40 (! c41 p41))) +(petri (? c41 p41 (! c42 p42))) +(petri (? c42 p42 (! c43 p43))) +(petri (? c43 p43 (! c44 p44))) +(petri (? c44 p44 (! c45 p45))) +(petri (? c45 p45 (! c46 p46))) +(petri (? c46 p46 (! c47 p47))) +(petri (? c47 p47 (! c48 p48))) +(petri (? c48 p48 (! c49 p49))) +(petri (? c49 p49 (! c50 p50))) +(petri (? c50 p50 (! c51 p51))) +(petri (? c51 p51 (! c52 p52))) +(petri (? c52 p52 (! c53 p53))) +(petri (? c53 p53 (! c54 p54))) +(petri (? c54 p54 (! c55 p55))) +(petri (? c55 p55 (! c56 p56))) +(petri (? c56 p56 (! c57 p57))) +(petri (? c57 p57 (! c58 p58))) +(petri (? c58 p58 (! c59 p59))) +(petri (? c59 p59 (! c60 p60))) +(petri (? c60 p60 (! c61 p61))) +(petri (? c61 p61 (! c62 p62))) +(petri (? c62 p62 (! c63 p63))) +(petri (? c63 p63 (! c64 p64))) +(petri (? c64 p64 (! c65 p65))) +(petri (? c65 p65 (! c66 p66))) +(petri (? c66 p66 (! c67 p67))) +(petri (? c67 p67 (! c68 p68))) +(petri (? c68 p68 (! c69 p69))) +(petri (? c69 p69 (! c70 p70))) +(petri (? c70 p70 (! c71 p71))) +(petri (? c71 p71 (! c72 p72))) +(petri (? c72 p72 (! c73 p73))) +(petri (? c73 p73 (! c74 p74))) +(petri (? c74 p74 (! c75 p75))) +(petri (? c75 p75 (! c76 p76))) +(petri (? c76 p76 (! c77 p77))) +(petri (? c77 p77 (! c78 p78))) +(petri (? c78 p78 (! c79 p79))) +(petri (? c79 p79 (! c80 p80))) +(petri (? c80 p80 (! c81 p81))) +(petri (? c81 p81 (! c82 p82))) +(petri (? c82 p82 (! c83 p83))) +(petri (? c83 p83 (! c84 p84))) +(petri (? c84 p84 (! c85 p85))) +(petri (? c85 p85 (! c86 p86))) +(petri (? c86 p86 (! c87 p87))) +(petri (? c87 p87 (! c88 p88))) +(petri (? c88 p88 (! c89 p89))) +(petri (? c89 p89 (! c90 p90))) +(petri (? c90 p90 (! c91 p91))) +(petri (? c91 p91 (! c92 p92))) +(petri (? c92 p92 (! c93 p93))) +(petri (? c93 p93 (! c94 p94))) +(petri (? c94 p94 (! c95 p95))) +(petri (? c95 p95 (! c96 p96))) +(petri (? c96 p96 (! c97 p97))) +(petri (? c97 p97 (! c98 p98))) +(petri (? c98 p98 (! c99 p99))) +(petri (? c99 p99 (! c100 p100))) +(petri (? c100 p100 (! c101 p101))) +(petri (? c101 p101 (! c102 p102))) +(petri (? c102 p102 (! c103 p103))) +(petri (? c103 p103 (! c104 p104))) +(petri (? c104 p104 (! c105 p105))) +(petri (? c105 p105 (! c106 p106))) +(petri (? c106 p106 (! c107 p107))) +(petri (? c107 p107 (! c108 p108))) +(petri (? c108 p108 (! c109 p109))) +(petri (? c109 p109 (! c110 p110))) +(petri (? c110 p110 (! c111 p111))) +(petri (? c111 p111 (! c112 p112))) +(petri (? c112 p112 (! c113 p113))) +(petri (? c113 p113 (! c114 p114))) +(petri (? c114 p114 (! c115 p115))) +(petri (? c115 p115 (! c116 p116))) +(petri (? c116 p116 (! c117 p117))) +(petri (? c117 p117 (! c118 p118))) +(petri (? c118 p118 (! c119 p119))) +(petri (? c119 p119 (! c120 p120))) +(petri (? c120 p120 (! c121 p121))) +(petri (? c121 p121 (! c122 p122))) +(petri (? c122 p122 (! c123 p123))) +(petri (? c123 p123 (! c124 p124))) +(petri (? c124 p124 (! c125 p125))) +(petri (? c125 p125 (! c126 p126))) +(petri (? c126 p126 (! c127 p127))) +(petri (? c127 p127 (! c128 p128))) +(petri (? c128 p128 (! c129 p129))) +(petri (? c129 p129 (! c130 p130))) +(petri (? c130 p130 (! c131 p131))) +(petri (? c131 p131 (! c132 p132))) +(petri (? c132 p132 (! c133 p133))) +(petri (? c133 p133 (! c134 p134))) +(petri (? c134 p134 (! c135 p135))) +(petri (? c135 p135 (! c136 p136))) +(petri (? c136 p136 (! c137 p137))) +(petri (? c137 p137 (! c138 p138))) +(petri (? c138 p138 (! c139 p139))) +(petri (? c139 p139 (! c140 p140))) +(petri (? c140 p140 (! c141 p141))) +(petri (? c141 p141 (! c142 p142))) +(petri (? c142 p142 (! c143 p143))) +(petri (? c143 p143 (! c144 p144))) +(petri (? c144 p144 (! c145 p145))) +(petri (? c145 p145 (! c146 p146))) +(petri (? c146 p146 (! c147 p147))) +(petri (? c147 p147 (! c148 p148))) +(petri (? c148 p148 (! c149 p149))) +(petri (? c149 p149 (! c150 p150))) +(petri (? c150 p150 (! c151 p151))) +(petri (? c151 p151 (! c152 p152))) +(petri (? c152 p152 (! c153 p153))) +(petri (? c153 p153 (! c154 p154))) +(petri (? c154 p154 (! c155 p155))) +(petri (? c155 p155 (! c156 p156))) +(petri (? c156 p156 (! c157 p157))) +(petri (? c157 p157 (! c158 p158))) +(petri (? c158 p158 (! c159 p159))) +(petri (? c159 p159 (! c160 p160))) +(petri (? c160 p160 (! c161 p161))) +(petri (? c161 p161 (! c162 p162))) +(petri (? c162 p162 (! c163 p163))) +(petri (? c163 p163 (! c164 p164))) +(petri (? c164 p164 (! c165 p165))) +(petri (? c165 p165 (! c166 p166))) +(petri (? c166 p166 (! c167 p167))) +(petri (? c167 p167 (! c168 p168))) +(petri (? c168 p168 (! c169 p169))) +(petri (? c169 p169 (! c170 p170))) +(petri (? c170 p170 (! c171 p171))) +(petri (? c171 p171 (! c172 p172))) +(petri (? c172 p172 (! c173 p173))) +(petri (? c173 p173 (! c174 p174))) +(petri (? c174 p174 (! c175 p175))) +(petri (? c175 p175 (! c176 p176))) +(petri (? c176 p176 (! c177 p177))) +(petri (? c177 p177 (! c178 p178))) +(petri (? c178 p178 (! c179 p179))) +(petri (? c179 p179 (! c180 p180))) +(petri (? c180 p180 (! c181 p181))) +(petri (? c181 p181 (! c182 p182))) +(petri (? c182 p182 (! c183 p183))) +(petri (? c183 p183 (! c184 p184))) +(petri (? c184 p184 (! c185 p185))) +(petri (? c185 p185 (! c186 p186))) +(petri (? c186 p186 (! c187 p187))) +(petri (? c187 p187 (! c188 p188))) +(petri (? c188 p188 (! c189 p189))) +(petri (? c189 p189 (! c190 p190))) +(petri (? c190 p190 (! c191 p191))) +(petri (? c191 p191 (! c192 p192))) +(petri (? c192 p192 (! c193 p193))) +(petri (? c193 p193 (! c194 p194))) +(petri (? c194 p194 (! c195 p195))) +(petri (? c195 p195 (! c196 p196))) +(petri (? c196 p196 (! c197 p197))) +(petri (? c197 p197 (! c198 p198))) +(petri (? c198 p198 (! c199 p199))) +(petri (? c199 p199 (! c200 p200))) +(petri (? c200 p200 (! c201 p201))) +(petri (? c201 p201 (! c202 p202))) +(petri (? c202 p202 (! c203 p203))) +(petri (? c203 p203 (! c204 p204))) +(petri (? c204 p204 (! c205 p205))) +(petri (? c205 p205 (! c206 p206))) +(petri (? c206 p206 (! c207 p207))) +(petri (? c207 p207 (! c208 p208))) +(petri (? c208 p208 (! c209 p209))) +(petri (? c209 p209 (! c210 p210))) +(petri (? c210 p210 (! c211 p211))) +(petri (? c211 p211 (! c212 p212))) +(petri (? c212 p212 (! c213 p213))) +(petri (? c213 p213 (! c214 p214))) +(petri (? c214 p214 (! c215 p215))) +(petri (? c215 p215 (! c216 p216))) +(petri (? c216 p216 (! c217 p217))) +(petri (? c217 p217 (! c218 p218))) +(petri (? c218 p218 (! c219 p219))) +(petri (? c219 p219 (! c220 p220))) +(petri (? c220 p220 (! c221 p221))) +(petri (? c221 p221 (! c222 p222))) +(petri (? c222 p222 (! c223 p223))) +(petri (? c223 p223 (! c224 p224))) +(petri (? c224 p224 (! c225 p225))) +(petri (? c225 p225 (! c226 p226))) +(petri (? c226 p226 (! c227 p227))) +(petri (? c227 p227 (! c228 p228))) +(petri (? c228 p228 (! c229 p229))) +(petri (? c229 p229 (! c230 p230))) +(petri (? c230 p230 (! c231 p231))) +(petri (? c231 p231 (! c232 p232))) +(petri (? c232 p232 (! c233 p233))) +(petri (? c233 p233 (! c234 p234))) +(petri (? c234 p234 (! c235 p235))) +(petri (? c235 p235 (! c236 p236))) +(petri (? c236 p236 (! c237 p237))) +(petri (? c237 p237 (! c238 p238))) +(petri (? c238 p238 (! c239 p239))) +(petri (? c239 p239 (! c240 p240))) +(petri (? c240 p240 (! c241 p241))) +(petri (? c241 p241 (! c242 p242))) +(petri (? c242 p242 (! c243 p243))) +(petri (? c243 p243 (! c244 p244))) +(petri (? c244 p244 (! c245 p245))) +(petri (? c245 p245 (! c246 p246))) +(petri (? c246 p246 (! c247 p247))) +(petri (? c247 p247 (! c248 p248))) +(petri (? c248 p248 (! c249 p249))) +(petri (? c249 p249 (! c250 p250))) +(petri (? c250 p250 (! c251 p251))) +(petri (? c251 p251 (! c252 p252))) +(petri (? c252 p252 (! c253 p253))) +(petri (? c253 p253 (! c254 p254))) +(petri (? c254 p254 (! c255 p255))) +(petri (? c255 p255 (! c256 p256))) +(petri (? c256 p256 (! c257 p257))) +(petri (? c257 p257 (! c258 p258))) +(petri (? c258 p258 (! c259 p259))) +(petri (? c259 p259 (! c260 p260))) +(petri (? c260 p260 (! c261 p261))) +(petri (? c261 p261 (! c262 p262))) +(petri (? c262 p262 (! c263 p263))) +(petri (? c263 p263 (! c264 p264))) +(petri (? c264 p264 (! c265 p265))) +(petri (? c265 p265 (! c266 p266))) +(petri (? c266 p266 (! c267 p267))) +(petri (? c267 p267 (! c268 p268))) +(petri (? c268 p268 (! c269 p269))) +(petri (? c269 p269 (! c270 p270))) +(petri (? c270 p270 (! c271 p271))) +(petri (? c271 p271 (! c272 p272))) +(petri (? c272 p272 (! c273 p273))) +(petri (? c273 p273 (! c274 p274))) +(petri (? c274 p274 (! c275 p275))) +(petri (? c275 p275 (! c276 p276))) +(petri (? c276 p276 (! c277 p277))) +(petri (? c277 p277 (! c278 p278))) +(petri (? c278 p278 (! c279 p279))) +(petri (? c279 p279 (! c280 p280))) +(petri (? c280 p280 (! c281 p281))) +(petri (? c281 p281 (! c282 p282))) +(petri (? c282 p282 (! c283 p283))) +(petri (? c283 p283 (! c284 p284))) +(petri (? c284 p284 (! c285 p285))) +(petri (? c285 p285 (! c286 p286))) +(petri (? c286 p286 (! c287 p287))) +(petri (? c287 p287 (! c288 p288))) +(petri (? c288 p288 (! c289 p289))) +(petri (? c289 p289 (! c290 p290))) +(petri (? c290 p290 (! c291 p291))) +(petri (? c291 p291 (! c292 p292))) +(petri (? c292 p292 (! c293 p293))) +(petri (? c293 p293 (! c294 p294))) +(petri (? c294 p294 (! c295 p295))) +(petri (? c295 p295 (! c296 p296))) +(petri (? c296 p296 (! c297 p297))) +(petri (? c297 p297 (! c298 p298))) +(petri (? c298 p298 (! c299 p299))) +(petri (? c299 p299 (! c300 p300))) +(petri (? c300 p300 (! c301 p301))) +(petri (? c301 p301 (! c302 p302))) +(petri (? c302 p302 (! c303 p303))) +(petri (? c303 p303 (! c304 p304))) +(petri (? c304 p304 (! c305 p305))) +(petri (? c305 p305 (! c306 p306))) +(petri (? c306 p306 (! c307 p307))) +(petri (? c307 p307 (! c308 p308))) +(petri (? c308 p308 (! c309 p309))) +(petri (? c309 p309 (! c310 p310))) +(petri (? c310 p310 (! c311 p311))) +(petri (? c311 p311 (! c312 p312))) +(petri (? c312 p312 (! c313 p313))) +(petri (? c313 p313 (! c314 p314))) +(petri (? c314 p314 (! c315 p315))) +(petri (? c315 p315 (! c316 p316))) +(petri (? c316 p316 (! c317 p317))) +(petri (? c317 p317 (! c318 p318))) +(petri (? c318 p318 (! c319 p319))) +(petri (? c319 p319 (! c320 p320))) +(petri (? c320 p320 (! c321 p321))) +(petri (? c321 p321 (! c322 p322))) +(petri (? c322 p322 (! c323 p323))) +(petri (? c323 p323 (! c324 p324))) +(petri (? c324 p324 (! c325 p325))) +(petri (? c325 p325 (! c326 p326))) +(petri (? c326 p326 (! c327 p327))) +(petri (? c327 p327 (! c328 p328))) +(petri (? c328 p328 (! c329 p329))) +(petri (? c329 p329 (! c330 p330))) +(petri (? c330 p330 (! c331 p331))) +(petri (? c331 p331 (! c332 p332))) +(petri (? c332 p332 (! c333 p333))) +(petri (? c333 p333 (! c334 p334))) +(petri (? c334 p334 (! c335 p335))) +(petri (? c335 p335 (! c336 p336))) +(petri (? c336 p336 (! c337 p337))) +(petri (? c337 p337 (! c338 p338))) +(petri (? c338 p338 (! c339 p339))) +(petri (? c339 p339 (! c340 p340))) +(petri (? c340 p340 (! c341 p341))) +(petri (? c341 p341 (! c342 p342))) +(petri (? c342 p342 (! c343 p343))) +(petri (? c343 p343 (! c344 p344))) +(petri (? c344 p344 (! c345 p345))) +(petri (? c345 p345 (! c346 p346))) +(petri (? c346 p346 (! c347 p347))) +(petri (? c347 p347 (! c348 p348))) +(petri (? c348 p348 (! c349 p349))) +(petri (? c349 p349 (! c350 p350))) +(petri (? c350 p350 (! c351 p351))) +(petri (? c351 p351 (! c352 p352))) +(petri (? c352 p352 (! c353 p353))) +(petri (? c353 p353 (! c354 p354))) +(petri (? c354 p354 (! c355 p355))) +(petri (? c355 p355 (! c356 p356))) +(petri (? c356 p356 (! c357 p357))) +(petri (? c357 p357 (! c358 p358))) +(petri (? c358 p358 (! c359 p359))) +(petri (? c359 p359 (! c360 p360))) +(petri (? c360 p360 (! c361 p361))) +(petri (? c361 p361 (! c362 p362))) +(petri (? c362 p362 (! c363 p363))) +(petri (? c363 p363 (! c364 p364))) +(petri (? c364 p364 (! c365 p365))) +(petri (? c365 p365 (! c366 p366))) +(petri (? c366 p366 (! c367 p367))) +(petri (? c367 p367 (! c368 p368))) +(petri (? c368 p368 (! c369 p369))) +(petri (? c369 p369 (! c370 p370))) +(petri (? c370 p370 (! c371 p371))) +(petri (? c371 p371 (! c372 p372))) +(petri (? c372 p372 (! c373 p373))) +(petri (? c373 p373 (! c374 p374))) +(petri (? c374 p374 (! c375 p375))) +(petri (? c375 p375 (! c376 p376))) +(petri (? c376 p376 (! c377 p377))) +(petri (? c377 p377 (! c378 p378))) +(petri (? c378 p378 (! c379 p379))) +(petri (? c379 p379 (! c380 p380))) +(petri (? c380 p380 (! c381 p381))) +(petri (? c381 p381 (! c382 p382))) +(petri (? c382 p382 (! c383 p383))) +(petri (? c383 p383 (! c384 p384))) +(petri (? c384 p384 (! c385 p385))) +(petri (? c385 p385 (! c386 p386))) +(petri (? c386 p386 (! c387 p387))) +(petri (? c387 p387 (! c388 p388))) +(petri (? c388 p388 (! c389 p389))) +(petri (? c389 p389 (! c390 p390))) +(petri (? c390 p390 (! c391 p391))) +(petri (? c391 p391 (! c392 p392))) +(petri (? c392 p392 (! c393 p393))) +(petri (? c393 p393 (! c394 p394))) +(petri (? c394 p394 (! c395 p395))) +(petri (? c395 p395 (! c396 p396))) +(petri (? c396 p396 (! c397 p397))) +(petri (? c397 p397 (! c398 p398))) +(petri (? c398 p398 (! c399 p399))) +(petri (? c399 p399 (! c400 p400))) +(petri (! c0 p0)) +(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) + +(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) + (petri (? $c $pl $b)) (petri (! $c $pl))) + (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/kernel/src/leapfrog.rs b/kernel/src/leapfrog.rs index fa4ab804..2a41340b 100644 --- a/kernel/src/leapfrog.rs +++ b/kernel/src/leapfrog.rs @@ -965,6 +965,24 @@ pub fn unify_join_zipper_partial( run_unify_join(map, factors, var_order, nvars, false).0 } +/// As [`unify_join_zipper_partial`], but under the projection cut: `cut_mask` names the variables +/// whose value nothing downstream reads. TEST tooling -- it is how the cut's answers are compared +/// against the enumeration they stand in for. +#[cfg(test)] +fn unify_join_zipper_cut( + map: &PathMap<()>, + factors: &[Factor], + var_order: &[usize], + nvars: usize, + cut_mask: u64, +) -> BTreeSet>>> { + let plan = join_plan(map, factors, var_order, nvars).expect("factors must flatten into steps"); + let mut state = join_state(map, &plan, var_order, nvars); + state.cut_mask = cut_mask; + state.recurse(0); + state.out +} + /// As [`unify_join_zipper_partial`], but returns each answer as one variable-coordinated tuple /// encoding (query variables `0..nvars` in order, sharing one intro map), so a free variable that /// spans answer positions renders with coordinated NewVar/VarRef the way MORK's emit does. @@ -1094,6 +1112,7 @@ fn join_state<'a>( on_match: None, loc_buf: Vec::new(), stopped: false, + cut_mask: 0, #[cfg(test)] out: BTreeSet::new(), @@ -1134,11 +1153,13 @@ fn run_unify_join_stream_bindings( factors: &[Factor], var_order: &[usize], nvars: usize, + cut_mask: u64, on_match: &mut dyn FnMut(&Bindings, Expr) -> bool, ) { let plan = join_plan(map, factors, var_order, nvars) .expect("parsed factors must flatten into steps"); let mut state = join_state(map, &plan, var_order, nvars); + state.cut_mask = cut_mask; state.on_match = Some(on_match); state.recurse(0); } @@ -1319,6 +1340,7 @@ fn scan_subterm(body: Expr, at: usize, intro: &mut u8) -> Option { pub fn query_multi_leapfrog, Expr) -> bool>( map: &PathMap<()>, pat_expr: Expr, + cut_mask: u64, mut effect: F, ) -> usize { // The join owns every body the engine hands it, so parsing is a precondition rather than a @@ -1355,7 +1377,7 @@ pub fn query_multi_leapfrog, Expr) -> bool>( // per-answer allocation of the emit path (a BTreeMap deep clone) is gone. effect(Err(bindings), loc) }; - run_unify_join_stream_bindings(map, &factors, &var_order, nvars, &mut on_match); + run_unify_join_stream_bindings(map, &factors, &var_order, nvars, cut_mask, &mut on_match); candidate } @@ -1456,6 +1478,10 @@ struct UnifyJoin<'a> { /// fact as the stock contract's `loc`) here instead of collecting rows, and a `false` return /// stops the search. The engine dispatch uses this. on_match: Option<&'a mut dyn FnMut(&Bindings, Expr) -> bool>, + /// Body variables whose value nothing downstream reads, as + /// [`crate::space::Space::projection_cut_mask`] computed it. Zero for every caller with no + /// template to project through, which is the unchanged enumeration. + cut_mask: u64, /// Scratch for the streamed `loc`: factor 0's stored fact bytes, refilled per accepted /// assignment so the stream costs no allocation per answer. loc_buf: Vec, @@ -1584,6 +1610,10 @@ impl UnifyJoin<'_> { // The leapfrog principle: lead with the smallest domain so the leading factor enumerates // few candidates and the rest seek. This is what makes a selective factor, say (e a $y) // with a few edges, drive the join instead of the whole relation. + if parts.len() == 1 && v < 64 && (self.cut_mask >> v) & 1 == 1 { + self.consume_lead_cut(&parts, 0, v, i); + return; + } self.rank_parts(&mut parts); let nr = self.partition_restrictors(&mut parts); self.consume_lead(&parts, nr, v, i); @@ -2105,6 +2135,61 @@ impl UnifyJoin<'_> { self.free_bufs.push(buf); } + /// The projection cut, as its OWN path: `v` is a singleton nothing downstream reads, so one + /// witness stands for its whole domain. Kept separate from [`Self::consume_lead`] so that the + /// enumerating path keeps the exact code it had -- a `cut` branch inside the candidate fill's + /// loops measured 6% on counter_machine, which is all fill and no cut. + /// + /// If that one witness does not match, the level re-runs as a full enumeration, so the cut can + /// only ever drop a DUPLICATE answer, never the last one. + fn consume_lead_cut(&mut self, parts: &[usize], nr: usize, v: usize, i: usize) { + if self.stopped { + return; + } + let f = parts[0]; + let pattern = self.query_var_env(v); + let free_key = self + .deref_env(pattern) + .var_opt() + .expect("the lead level runs only for a still-free join variable"); + let mut buf = self.free_bufs.pop().unwrap_or_default(); + { + // One candidate, wherever the column's enumeration starts. + let cur = &mut self.cursors[f]; + cur.first(); + if let Some(k) = cur.key() { + let vars = cur.key_var_counts(); + buf.push_from(k, vars); + } + cur.reset_to_floor(); + } + let mut matched = false; + if buf.len > 0 { + let cand = &buf.entries[0]; + let mut cont = |this: &mut Self| { + matched = true; + this.next_step[f] += 1; + this.consume_var_parts(&parts[1..], 0, v, i); + this.next_step[f] -= 1; + }; + let vars = buf.meta[0]; + if vars.1 == 0 { + let data_env = self.data_env_for(f, cand, vars); + let previous = self.bindings.insert(free_key, data_env); + debug_assert!(previous.is_none(), "deref ended at a bound var"); + self.with_bound_path_bytes(f, cand, 0, &mut cont); + self.bindings.remove(&free_key); + } else { + self.match_candidate(f, pattern, cand, vars, &mut cont); + } + } + buf.len = 0; + self.free_bufs.push(buf); + if !matched && !self.stopped { + self.consume_lead(parts, nr, v, i); + } + } + /// Consume the confirmed column of each restrictor in turn, then continue. The mutual seek /// established that `value` -- a ground symbol -- is stored at this column and that the column /// holds no stored variable, so `consume_col` would seek to exactly this value, bind it with no @@ -2566,6 +2651,67 @@ mod tests { v } + /// The projection cut must answer exactly what the enumeration answers, once the variable + /// nobody reads is projected away -- and it must actually be doing something, which the + /// uncut row count pins. + #[test] + fn the_projection_cut_keeps_every_answer_it_is_allowed_to_lose() { + let mut map = PathMap::<()>::new(); + map.insert(&nest("r", &[sym("a")]), ()); + map.insert(&nest("r", &[sym("b")]), ()); + // `a` witnesses four values of the don't-care column, `b` exactly one: the cut has to + // collapse the four without losing `b`, whose only witness is the last one. + for w in ["p", "q", "s", "t"] { + map.insert(&nest("s", &[sym("a"), sym(w)]), ()); + } + map.insert(&nest("s", &[sym("b"), sym("t")]), ()); + + // (, (r $x) (s $x $_)) -- $x is 0, the don't-care is 1. + let body = conj(&[ + nest("r", &[new_var()]), + nest("s", &[var_ref(0), new_var()]), + ]); + let be = Expr::from_slice(&body); + let (factors, nvars) = parse_body_factors(&be).unwrap(); + let var_order: Vec = (0..nvars).collect(); + assert_eq!(nvars, 2); + + let full = unify_join_zipper_cut(&map, &factors, &var_order, nvars, 0); + let cut = unify_join_zipper_cut(&map, &factors, &var_order, nvars, 1 << 1); + + // The cut is not vacuous: the enumeration answers five rows, the cut two. + assert_eq!(full.len(), 5); + assert_eq!(cut.len(), 2); + // Projected on the variable anything downstream can actually read, they agree. + let project = |rows: &BTreeSet>>>| -> BTreeSet>> { + rows.iter().map(|row| row[0].clone()).collect() + }; + assert_eq!(project(&cut), project(&full)); + assert_eq!(project(&cut).len(), 2); + } + + /// The mask is computed in `space.rs` over the body's bytes and indexed in the join by the id + /// `parse_body_factors` assigns. Both number variables by first occurrence; this pins that + /// they agree, because a disagreement would silently cut the WRONG variable. + #[test] + fn the_masks_variable_numbering_is_the_joins_numbering() { + let body = conj(&[ + nest("r", &[new_var(), new_var()]), + nest("s", &[var_ref(1), new_var()]), + ]); + let be = Expr::from_slice(&body); + let (factors, nvars) = parse_body_factors(&be).unwrap(); + assert_eq!(nvars, 3); + // The join reads the third variable as the second ARGUMENT of factor 1 ... + // Column 0 is the relation head, so the second argument is `cols[2]`. + let FactorColumn::Var(last) = factors[1].cols[2] else { panic!("expected a join variable") }; + assert_eq!(last, 2); + // ... and the mask, given a template that reads only the first two, names that same one. + let tpl = nest("out", &[var_ref(0), var_ref(1)]); + let mask = crate::space::Space::projection_cut_mask(be, &[Expr::from_slice(&tpl)]); + assert_eq!(mask, 1 << last); + } + #[test] fn safe_body_routes_flat_ground_answers() { let mut map = PathMap::<()>::new(); diff --git a/kernel/src/space.rs b/kernel/src/space.rs index df99a3a6..ddda8fa0 100644 --- a/kernel/src/space.rs +++ b/kernel/src/space.rs @@ -109,8 +109,28 @@ pub(crate) const VARS: [u64; 4] = { // - `references` can be elided by not putting the virtual $ Expr's on the `stack` such that _k maps directly to the indices // - keeping a needle instead of a stack to avoid the `reverse` (would also create the opportunity to be even more lazy about instruction gen) // - use descend_to and re-evaluated the added sub-path to do much better on long paths +/// Descend the FIRST complete subterm below the focus, byte by byte along the leftmost path, +/// and report how many bytes that took (0 if the focus is a dead end). Every path stored in the +/// trie spells a complete expression, so the leftmost walk always closes the subterm it opened -- +/// there is nothing to backtrack. On a ProductZipper the descent also crosses the factor +/// boundary the moment the subterm ends on a leaf, which is exactly the force-enroll this cut +/// wants: the next factor engages without the current one being enumerated first. +fn descend_first_subterm(loc: &mut Z) -> usize { + let (mut owed, mut payload) = (1u32, 0u32); + let mut n = 0usize; + while owed > 0 || payload > 0 { + if !loc.descend_first_byte() { + loc.ascend(n); + return 0; + } + n += 1; + mork_expr::subterm_parse_step(*loc.path().last().unwrap(), &mut owed, &mut payload); + } + n +} + fn coreferential_transition ()>( - loc: &mut Z, mut stack: &mut Vec, references: &mut Vec, var_facts: u64, f: &mut F) { + loc: &mut Z, mut stack: &mut Vec, references: &mut Vec, var_facts: u64, cut_mask: u64, f: &mut F) { macro_rules! vs { ($e:expr, $nv:expr) => {{ let m = loc.child_mask().and(&ByteMask(VARS)); @@ -133,7 +153,7 @@ fn coreferential_transition ()>( loc.descend_to_byte(b); debug_assert!(loc.path_exists()); let vf = var_facts | (1u64 << loc.focus_factor().min(63)); - coreferential_transition(loc, stack, references, vf, f); + coreferential_transition(loc, stack, references, vf, cut_mask, f); if !loc.ascend_byte() { unreachable_unchecked() }; } }}; @@ -158,6 +178,21 @@ fn coreferential_transition ()>( Some((idx, prev)) } else { None }; + // Nothing downstream reads this variable's value and nothing after it in + // the conjunct depends on the choice, so one witnessing subterm stands for + // the whole subtrie: take the leftmost and move on instead of enumerating + // every variable, size class and arity below this position. + if e.n == 0 && e.v < 64 && (cut_mask >> e.v) & 1 == 1 { + let n = descend_first_subterm(loc); + if n > 0 { + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); + loc.ascend(n); + } + if let Some((idx, prev)) = restore { references[idx] = prev; } + stack.push(e); + return; + } + vs!(e, true); let m = loc.child_mask().and(&ByteMask(SIZES)); @@ -168,7 +203,7 @@ fn coreferential_transition ()>( debug_assert!(loc.path_exists()); if !loc.descend_first_k_path(size as _) { unreachable_unchecked() } loop { - coreferential_transition(loc, stack, references, var_facts, f); + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); if !loc.to_next_k_path(size as _) { break } } if !loc.ascend_byte() { unreachable_unchecked() } @@ -183,7 +218,7 @@ fn coreferential_transition ()>( static nv: u8 = item_byte(Tag::NewVar); let ol = stack.len(); for _ in 0..a { stack.push(ExprEnv::new(255, Expr { ptr: ((&nv) as *const u8).cast_mut() })) } - coreferential_transition(loc, stack, references, var_facts, f); + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); stack.truncate(ol); if !loc.ascend_byte() { unreachable_unchecked() }; } @@ -209,14 +244,14 @@ fn coreferential_transition ()>( }; stack.push(addition); vs!(e, false); - coreferential_transition(loc, stack, references, var_facts, f); + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); stack.pop(); } Tag::SymbolSize(size) => { vs!(e, false); if loc.descend_to_existing_byte(e_byte) { if loc.descend_to_check(&*slice_from_raw_parts(e.base.ptr.byte_add(e.offset as usize + 1), size as usize)) { - coreferential_transition(loc, stack, references, var_facts, f); + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); } loc.ascend((size as usize) + 1); // The expression length + the e_byte } @@ -227,7 +262,7 @@ fn coreferential_transition ()>( let stackl = stack.len(); e.args(&mut stack); stack[stackl..].reverse(); - coreferential_transition(loc, stack, references, var_facts, f); + coreferential_transition(loc, stack, references, var_facts, cut_mask, f); stack.truncate(stack.len() - arity as usize); loc.ascend_byte(); } @@ -1098,22 +1133,128 @@ impl Space { /// which `query_multi` handles (or fails on) exactly as it always has, plus the encoding /// pathologies `parse_body_factors` rejects (a `VarRef` naming a variable the body never /// introduced, or more than `u8::MAX` variables). - pub fn query_multi_dispatch, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, mut effect: F) -> usize { + /// The body variables whose VALUE nothing downstream can observe: no template reads them, + /// the body mentions them exactly once, and they sit in their conjunct's TRAILING run. + /// Returned as a bitmask over the body's variable numbering (`NewVar`s in first-occurrence + /// order), the numbering both engines index by. + /// + /// Anything earlier in a conjunct decides which subtrie the later columns are drawn from, so + /// pinning it would drop answers rather than duplicates -- `(s (f $_) $y)` must keep + /// enumerating `$_` while `(s $y (f $_))` need not. + /// + /// This runs on every transform, so it is one allocation-free pass driven by the encoding's + /// own [`mork_expr::subterm_parse_step`], and it does not read the templates AT ALL unless + /// the body offers a candidate a template could disqualify. That is what keeps a body with + /// nothing to cut -- three quarters of counter_machine's -- from paying for a template walk. + pub fn projection_cut_mask(pat_expr: Expr, templates: &[Expr]) -> u64 { + let pb = unsafe { pat_expr.span().as_ref().unwrap() }; + if pb.is_empty() { return 0 } + let Tag::Arity(nargs) = byte_item(pb[0]) else { return 0 }; + + // Pass one over the body: count every variable's mentions, and record per conjunct how + // long its trailing run of `NewVar`s is and how many variables its end had numbered. + let mut occ = [0u32; 64]; + let mut nv = 0u16; + let mut runs = [(0u8, 0u16); 64]; + let mut any_run = false; + let mut i = 1usize; + for c in 0..(nargs as usize).min(64) { + let (mut owed, mut payload) = (1u32, 0u32); + let mut run = 0u8; + while owed > 0 && i < pb.len() { + let b = pb[i]; + let head = payload == 0; + mork_expr::subterm_parse_step(b, &mut owed, &mut payload); + i += 1; + // A symbol's payload is skipped in one step rather than stepped through, so this + // walk is per ITEM rather than per byte. + if payload > 0 { + i += payload as usize; + payload = 0; + } + if !head { continue } + match byte_item(b) { + Tag::NewVar => { + if nv < 64 { occ[nv as usize] += 1 } + nv = nv.saturating_add(1); + run = run.saturating_add(1); + continue; + } + Tag::VarRef(r) => { if (r as usize) < 64 { occ[r as usize] += 1 } } + _ => {} + } + run = 0; + } + runs[c] = (run, nv); + any_run |= run > 0; + } + if !any_run { return 0 } + + // A trailing run exists, but only a variable mentioned ONCE can be cut. If nothing + // survives that test, the templates never need reading. + let mut candidates = 0u64; + for c in 0..(nargs as usize).min(64) { + let (run, end) = runs[c]; + for k in 0..run as usize { + let Some(v) = (end as usize).checked_sub(1 + k) else { break }; + if v >= 64 || occ[v] != 1 { break } + candidates |= 1u64 << v; + } + } + if candidates == 0 { return 0 } + + // Pass two, now earned: which of them does some template read? + let mut read = 0u64; + for t in templates.iter() { + let tb = unsafe { t.span().as_ref().unwrap() }; + let mut j = 0usize; + while j < tb.len() { + match byte_item(tb[j]) { + Tag::VarRef(r) => { if (r as usize) < 64 { read |= 1u64 << r } j += 1; } + Tag::NewVar => j += 1, + Tag::SymbolSize(size) => j += 1 + size as usize, + Tag::Arity(_) => j += 1, + } + } + if read & candidates == candidates { return 0 } + } + + // A read variable stops its conjunct's run at that point, not just for itself. + let mut mask = 0u64; + for c in 0..(nargs as usize).min(64) { + let (run, end) = runs[c]; + for k in 0..run as usize { + let Some(v) = (end as usize).checked_sub(1 + k) else { break }; + if v >= 64 || occ[v] != 1 || (read >> v) & 1 == 1 { break } + mask |= 1u64 << v; + } + } + mask + } + + pub fn query_multi_dispatch, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, cut_mask: u64, mut effect: F) -> usize { // Which engine answers the space-to-space transform is a compile-time choice and nothing // more: with the `leapfrog` feature the join owns every body, and without it the module // does not exist. `query_multi` stays reachable for the paths that are not dispatched -- // the pattern-directed dumps and the interpreted source/sink transforms. #[cfg(feature = "leapfrog")] { - crate::leapfrog::query_multi_leapfrog(btm, pat_expr, effect) + crate::leapfrog::query_multi_leapfrog(btm, pat_expr, cut_mask, effect) } #[cfg(not(feature = "leapfrog"))] { - Self::query_multi(btm, pat_expr, effect) + Self::query_multi_proj(btm, pat_expr, cut_mask, effect) } } - pub fn query_multi, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, mut effect: F) -> usize { + pub fn query_multi, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, effect: F) -> usize { + Self::query_multi_proj(btm, pat_expr, 0, effect) + } + + /// [`Self::query_multi`] under the projection cut: `cut_mask` names the body variables whose + /// value nothing downstream reads, which the descent answers with one subterm instead of + /// every one. A zero mask is the unchanged walk. + pub fn query_multi_proj, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, cut_mask: u64, mut effect: F) -> usize { let pat_newvars = pat_expr.newvars(); trace!(target: "query_multi", "pattern (newvars={}) {:?}", pat_newvars, serialize(unsafe { pat_expr.span().as_ref().unwrap() })); let n_factors = pat_expr.arity().unwrap() as usize; @@ -1130,7 +1271,7 @@ impl Space { })); prz.reserve_buffers(1 << 32, 32); - Self::query_multi_raw(&mut prz, &pat_args[1..], effect) + Self::query_multi_raw_proj(&mut prz, &pat_args[1..], cut_mask, effect) } #[inline] @@ -1257,9 +1398,15 @@ impl Space { } } - #[cfg(feature="no_search")] + /// The zero-mask wrapper every other caller keeps using: sinks, dumps and the interpreted + /// source/sink transforms are byte-for-byte the unchanged walk. #[inline(always)] - pub fn query_multi_raw, Expr) -> bool>(mut prz: &mut PZ, sources: &[ExprEnv], mut effect: F) -> usize { + pub fn query_multi_raw, Expr) -> bool>(prz: &mut PZ, sources: &[ExprEnv], effect: F) -> usize { + Self::query_multi_raw_proj(prz, sources, 0, effect) + } + + #[cfg(feature="no_search")] + pub fn query_multi_raw_proj, Expr) -> bool>(mut prz: &mut PZ, sources: &[ExprEnv], cut_mask: u64, mut effect: F) -> usize { let mut candidate = 0; // One pair buffer for the whole enumeration: `unify` drains it, so a `clear` per // candidate makes it allocation-free after warmup. @@ -1324,7 +1471,7 @@ impl Space { #[cfg(not(feature="no_search"))] #[inline(always)] - pub fn query_multi_raw, Expr) -> bool>(mut prz: &mut PZ, sources: &[ExprEnv], mut effect: F) -> usize { + pub fn query_multi_raw_proj, Expr) -> bool>(mut prz: &mut PZ, sources: &[ExprEnv], cut_mask: u64, mut effect: F) -> usize { let mut stack = sources[0..].iter().rev().cloned().collect::>(); let mut references: Vec = vec![]; @@ -1338,7 +1485,7 @@ impl Space { BREAK.with_borrow_mut(|a| { if unsafe { setjmp(a) == 0 } { - coreferential_transition(prz, &mut stack, unsafe { ((&references) as *const Vec).cast_mut().as_mut().unwrap() }, 0u64, &mut |loc, var_facts| { + coreferential_transition(prz, &mut stack, unsafe { ((&references) as *const Vec).cast_mut().as_mut().unwrap() }, 0u64, cut_mask, &mut |loc, var_facts| { let e = Expr { ptr: loc.origin_path().as_ptr().cast_mut() }; trace!(target: "query_multi", "pi {:?}", loc.path_indices()); trace!(target: "query_multi", "at {:?}", e); @@ -1475,6 +1622,11 @@ impl Space { let mut tpl_args = Vec::with_capacity(64); ExprEnv::new(0, tpl_expr).args(&mut tpl_args); let mut templates: Vec<_> = tpl_args[1..].iter().map(|ee| ee.subsexpr()).collect(); + // Only the plain `,` -> `,` write form may cut. The cut drops DUPLICATE answers, which is + // invisible only to a sink idempotent in them, and the `O` form and the source/sink + // transforms can carry aggregating sinks -- Count, Sum, And, Head/Tail, the float + // reductions -- whose result is a function of how many answers arrive. + let cut_mask = Self::projection_cut_mask(pat_expr, &templates[..]); let mut template_prefixes: Vec<_> = templates.iter().map(|e| unsafe { e.prefix().unwrap_or_else(|x| x).as_ref().unwrap() }).collect(); let mut subsumption = Self::prefix_subsumption(&template_prefixes[..]); let mut placements = subsumption.clone(); @@ -1520,7 +1672,7 @@ impl Space { let mut any_new = false; - let touched = Self::query_multi_dispatch(&read_copy, pat_expr, |refs_bindings, loc| 'query:{ + let touched = Self::query_multi_dispatch(&read_copy, pat_expr, cut_mask, |refs_bindings, loc| 'query:{ trace!(target: "transform", "data {}", serialize(unsafe { loc.span().as_ref().unwrap()})); unsafe { writes += template_prefixes.len(); } match refs_bindings { @@ -2031,4 +2183,138 @@ impl Drop for Space { drop(z3.stdin.take()) } } -} \ No newline at end of file +} + +#[cfg(test)] +mod projection_cut_tests { + use super::*; + + fn sym(t: &str) -> Vec { + let mut v = vec![item_byte(Tag::SymbolSize(t.len() as u8))]; + v.extend_from_slice(t.as_bytes()); + v + } + fn raw_sym(payload: &[u8]) -> Vec { + let mut v = vec![item_byte(Tag::SymbolSize(payload.len() as u8))]; + v.extend_from_slice(payload); + v + } + fn nest(parts: &[Vec]) -> Vec { + let mut v = vec![item_byte(Tag::Arity(parts.len() as u8))]; + for p in parts { v.extend_from_slice(p) } + v + } + fn rel(name: &str, args: &[Vec]) -> Vec { + let mut parts = vec![sym(name)]; + parts.extend_from_slice(args); + nest(&parts) + } + fn conj(factors: &[Vec]) -> Vec { + let mut parts = vec![sym(",")]; + parts.extend_from_slice(factors); + nest(&parts) + } + fn nv() -> Vec { vec![item_byte(Tag::NewVar)] } + fn vr(i: u8) -> Vec { vec![item_byte(Tag::VarRef(i))] } + + fn mask(body: &[u8], templates: &[Vec]) -> u64 { + let be = Expr::from_slice(body); + let ts: Vec = templates.iter().map(|t| Expr::from_slice(&t[..])).collect(); + Space::projection_cut_mask(be, &ts[..]) + } + + #[test] + fn trailing_singleton_no_template_reads_is_cut() { + // (, (r $x $y) (s $y $_)) -> (out $x $y): only $_ (index 2) is cuttable. + let body = conj(&[rel("r", &[nv(), nv()]), rel("s", &[vr(1), nv()])]); + let tpl = rel("out", &[vr(0), vr(1)]); + assert_eq!(mask(&body, &[tpl]), 1 << 2); + } + + #[test] + fn a_variable_a_template_reads_is_never_cut() { + // The same body, but the template now reads $_ as well: nothing is cuttable. + let body = conj(&[rel("r", &[nv(), nv()]), rel("s", &[vr(1), nv()])]); + let tpl = rel("out", &[vr(0), vr(2)]); + assert_eq!(mask(&body, &[tpl]), 0); + } + + #[test] + fn a_repeated_variable_is_never_cut() { + // $y and $z are join variables: no template reads them, but pinning one to a single + // value would change which tuples the OTHER factors can still match. + let body = conj(&[ + rel("r", &[nv(), nv()]), + rel("s", &[vr(1), nv()]), + rel("t", &[vr(2)]), + ]); + let tpl = rel("out", &[vr(0)]); + assert_eq!(mask(&body, &[tpl]), 0); + } + + #[test] + fn only_the_conjuncts_trailing_run_is_cut() { + // (, (s (f $_) $y)): $_ decides the subtrie $y is drawn from, so it must keep + // enumerating even though nothing reads it. + let body = conj(&[rel("s", &[rel("f", &[nv()]), nv()])]); + let tpl = rel("out", &[vr(1)]); + assert_eq!(mask(&body, &[tpl]), 0); + // Swapped, the same variable IS the trailing item -- nested inside `(f ...)` or not. + let body = conj(&[rel("s", &[nv(), rel("f", &[nv()])])]); + let tpl = rel("out", &[vr(0)]); + assert_eq!(mask(&body, &[tpl]), 1 << 1); + } + + #[test] + fn a_run_of_trailing_dont_cares_is_cut_whole() { + let body = conj(&[rel("s", &[nv(), nv(), nv()])]); + let tpl = rel("out", &[vr(0)]); + assert_eq!(mask(&body, &[tpl]), (1 << 1) | (1 << 2)); + } + + #[test] + fn every_template_is_consulted() { + // The second template is the only reader of $y: one template is not enough to conclude + // a variable is unread. + let body = conj(&[rel("r", &[nv(), nv()])]); + let first = rel("out", &[vr(0)]); + let second = rel("also", &[vr(1)]); + assert_eq!(mask(&body, &[first.clone()]), 1 << 1); + assert_eq!(mask(&body, &[first, second]), 0); + } + + #[test] + fn a_symbol_payload_that_spells_a_variable_tag_is_not_read_as_one() { + // The payload carries the NewVar and VarRef tag bytes. Counting them as variables would + // shift the numbering and mark the wrong bit. + let poison = raw_sym(&[item_byte(Tag::NewVar), item_byte(Tag::VarRef(0))]); + let body = conj(&[rel("r", &[nv(), poison.clone()]), rel("s", &[vr(0), nv()])]); + let tpl = rel("out", &[vr(0)]); + assert_eq!(mask(&body, &[tpl]), 1 << 1); + // ... and in the template, where it would otherwise fake a read of variable 0. + let tpl_poison = rel("out", &[vr(1), poison]); + assert_eq!(mask(&body, &[tpl_poison]), 0); + } + + #[test] + fn variables_past_the_encodings_bound_are_never_marked() { + // 68 variables across two conjuncts (arity itself caps at 63, so they cannot share one). + // The first conjunct's trailing run is nameable and gets marked down to the variable the + // template reads. The second conjunct ENDS in variables past bit 63, which the mask + // cannot name -- so its run stops dead at the first of them rather than wrapping a bit + // onto some other variable. + let low: Vec> = (0..34).map(|_| nv()).collect(); + let high: Vec> = (0..34).map(|_| nv()).collect(); + let body = conj(&[rel("r", &low), rel("s", &high)]); + let tpl = rel("out", &[vr(0)]); + let m = mask(&body, &[tpl]); + let expected: u64 = ((1u64 << 34) - 1) & !1; // bits 1..=33 + assert_eq!(m, expected); + } + + #[test] + fn a_body_with_no_variables_cuts_nothing() { + let body = conj(&[rel("r", &[sym("a")])]); + assert_eq!(mask(&body, &[rel("out", &[sym("b")])]), 0); + } +} From 8fd950afcb66197e63fb27643e1c4b58e8a70721 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Wed, 19 Aug 2026 15:40:50 +0100 Subject: [PATCH 2/9] Generate the measured programs instead of checking in 2MB of facts The decomposition, crafting, LTS and process-calculus programs were committed with their generated fact data -- 78k lines. generate.py now produces all of them, carrying only the rule text, and the directory is 32K. Numbers move on this base: with #146 merged the naive process calculus runs 4.7x faster than it did pre-rebase, so the incrementalization uplift on an 800-long cascade reads 4.4x (delta) and 7.0x (consuming) rather than 19.7x and 30.2x. The transforms still remove the same quadratic; the baseline they are removing it from got faster. The other families are unchanged: cyc 26x/28x, craft 6.7x/14.6x, clq 0.9x/7.1x. Co-Authored-By: Claude Fable 5 --- examples/transforms/clq_naive.mm2 | 3603 ----- examples/transforms/clq_staged.mm2 | 3604 ----- examples/transforms/craft_naive.mm2 | 11806 ---------------- examples/transforms/craft_staged.mm2 | 11805 ---------------- examples/transforms/cyc_naive.mm2 | 901 -- examples/transforms/cyc_staged.mm2 | 902 -- examples/transforms/generate.py | 47 +- examples/transforms/lts_delta.mm2 | 18011 ------------------------- examples/transforms/lts_naive.mm2 | 18005 ------------------------ examples/transforms/pc2_delta.mm2 | 4010 ------ examples/transforms/pc2_naive.mm2 | 4006 ------ examples/transforms/pc3_consume.mm2 | 408 - examples/transforms/pc3_delta.mm2 | 408 - examples/transforms/pc3_naive.mm2 | 406 - 14 files changed, 46 insertions(+), 77876 deletions(-) delete mode 100644 examples/transforms/clq_naive.mm2 delete mode 100644 examples/transforms/clq_staged.mm2 delete mode 100644 examples/transforms/craft_naive.mm2 delete mode 100644 examples/transforms/craft_staged.mm2 delete mode 100644 examples/transforms/cyc_naive.mm2 delete mode 100644 examples/transforms/cyc_staged.mm2 delete mode 100644 examples/transforms/lts_delta.mm2 delete mode 100644 examples/transforms/lts_naive.mm2 delete mode 100644 examples/transforms/pc2_delta.mm2 delete mode 100644 examples/transforms/pc2_naive.mm2 delete mode 100644 examples/transforms/pc3_consume.mm2 delete mode 100644 examples/transforms/pc3_delta.mm2 delete mode 100644 examples/transforms/pc3_naive.mm2 diff --git a/examples/transforms/clq_naive.mm2 b/examples/transforms/clq_naive.mm2 deleted file mode 100644 index c544d17c..00000000 --- a/examples/transforms/clq_naive.mm2 +++ /dev/null @@ -1,3603 +0,0 @@ -(edge n0 n1) -(edge n0 n12) -(edge n0 n21) -(edge n0 n24) -(edge n0 n25) -(edge n0 n31) -(edge n0 n33) -(edge n0 n37) -(edge n0 n43) -(edge n0 n56) -(edge n0 n58) -(edge n0 n62) -(edge n0 n67) -(edge n0 n71) -(edge n0 n74) -(edge n0 n83) -(edge n0 n84) -(edge n0 n100) -(edge n0 n101) -(edge n0 n103) -(edge n0 n108) -(edge n0 n114) -(edge n0 n124) -(edge n0 n125) -(edge n0 n130) -(edge n0 n135) -(edge n0 n139) -(edge n0 n155) -(edge n0 n156) -(edge n0 n157) -(edge n0 n159) -(edge n0 n164) -(edge n0 n168) -(edge n0 n182) -(edge n0 n186) -(edge n0 n191) -(edge n0 n196) -(edge n1 n8) -(edge n1 n13) -(edge n1 n19) -(edge n1 n20) -(edge n1 n22) -(edge n1 n23) -(edge n1 n28) -(edge n1 n33) -(edge n1 n46) -(edge n1 n50) -(edge n1 n54) -(edge n1 n60) -(edge n1 n61) -(edge n1 n64) -(edge n1 n66) -(edge n1 n72) -(edge n1 n78) -(edge n1 n80) -(edge n1 n88) -(edge n1 n101) -(edge n1 n106) -(edge n1 n107) -(edge n1 n108) -(edge n1 n119) -(edge n1 n123) -(edge n1 n131) -(edge n1 n135) -(edge n1 n136) -(edge n1 n145) -(edge n1 n153) -(edge n1 n160) -(edge n1 n164) -(edge n1 n166) -(edge n1 n177) -(edge n1 n179) -(edge n1 n180) -(edge n1 n187) -(edge n1 n190) -(edge n1 n192) -(edge n1 n195) -(edge n2 n8) -(edge n2 n11) -(edge n2 n17) -(edge n2 n31) -(edge n2 n32) -(edge n2 n37) -(edge n2 n42) -(edge n2 n44) -(edge n2 n46) -(edge n2 n50) -(edge n2 n60) -(edge n2 n61) -(edge n2 n64) -(edge n2 n65) -(edge n2 n66) -(edge n2 n78) -(edge n2 n84) -(edge n2 n86) -(edge n2 n109) -(edge n2 n116) -(edge n2 n122) -(edge n2 n137) -(edge n2 n138) -(edge n2 n141) -(edge n2 n144) -(edge n2 n152) -(edge n2 n156) -(edge n2 n160) -(edge n2 n162) -(edge n2 n170) -(edge n2 n171) -(edge n2 n176) -(edge n2 n186) -(edge n2 n196) -(edge n3 n9) -(edge n3 n21) -(edge n3 n29) -(edge n3 n30) -(edge n3 n41) -(edge n3 n46) -(edge n3 n54) -(edge n3 n56) -(edge n3 n61) -(edge n3 n72) -(edge n3 n74) -(edge n3 n76) -(edge n3 n82) -(edge n3 n87) -(edge n3 n88) -(edge n3 n105) -(edge n3 n109) -(edge n3 n111) -(edge n3 n112) -(edge n3 n113) -(edge n3 n115) -(edge n3 n122) -(edge n3 n128) -(edge n3 n130) -(edge n3 n133) -(edge n3 n135) -(edge n3 n147) -(edge n3 n154) -(edge n3 n157) -(edge n3 n168) -(edge n3 n169) -(edge n3 n172) -(edge n3 n174) -(edge n3 n178) -(edge n3 n187) -(edge n3 n192) -(edge n3 n197) -(edge n4 n7) -(edge n4 n9) -(edge n4 n12) -(edge n4 n21) -(edge n4 n22) -(edge n4 n25) -(edge n4 n30) -(edge n4 n37) -(edge n4 n39) -(edge n4 n41) -(edge n4 n48) -(edge n4 n51) -(edge n4 n54) -(edge n4 n60) -(edge n4 n62) -(edge n4 n66) -(edge n4 n85) -(edge n4 n87) -(edge n4 n90) -(edge n4 n91) -(edge n4 n103) -(edge n4 n104) -(edge n4 n131) -(edge n4 n135) -(edge n4 n138) -(edge n4 n145) -(edge n4 n147) -(edge n4 n151) -(edge n4 n156) -(edge n4 n159) -(edge n4 n164) -(edge n4 n165) -(edge n4 n175) -(edge n4 n176) -(edge n4 n178) -(edge n4 n179) -(edge n4 n180) -(edge n4 n182) -(edge n4 n186) -(edge n4 n190) -(edge n4 n193) -(edge n5 n7) -(edge n5 n10) -(edge n5 n13) -(edge n5 n30) -(edge n5 n34) -(edge n5 n42) -(edge n5 n46) -(edge n5 n51) -(edge n5 n70) -(edge n5 n72) -(edge n5 n75) -(edge n5 n76) -(edge n5 n95) -(edge n5 n97) -(edge n5 n104) -(edge n5 n125) -(edge n5 n126) -(edge n5 n128) -(edge n5 n135) -(edge n5 n138) -(edge n5 n141) -(edge n5 n143) -(edge n5 n145) -(edge n5 n149) -(edge n5 n154) -(edge n5 n159) -(edge n5 n160) -(edge n5 n163) -(edge n5 n165) -(edge n5 n168) -(edge n5 n175) -(edge n5 n178) -(edge n5 n189) -(edge n5 n192) -(edge n5 n197) -(edge n6 n7) -(edge n6 n11) -(edge n6 n18) -(edge n6 n28) -(edge n6 n40) -(edge n6 n41) -(edge n6 n64) -(edge n6 n76) -(edge n6 n78) -(edge n6 n86) -(edge n6 n90) -(edge n6 n93) -(edge n6 n95) -(edge n6 n97) -(edge n6 n103) -(edge n6 n108) -(edge n6 n109) -(edge n6 n121) -(edge n6 n122) -(edge n6 n127) -(edge n6 n133) -(edge n6 n134) -(edge n6 n139) -(edge n6 n140) -(edge n6 n155) -(edge n6 n161) -(edge n6 n162) -(edge n6 n165) -(edge n6 n166) -(edge n6 n176) -(edge n6 n188) -(edge n6 n190) -(edge n6 n191) -(edge n6 n192) -(edge n6 n193) -(edge n7 n10) -(edge n7 n26) -(edge n7 n35) -(edge n7 n38) -(edge n7 n39) -(edge n7 n45) -(edge n7 n50) -(edge n7 n51) -(edge n7 n52) -(edge n7 n65) -(edge n7 n67) -(edge n7 n68) -(edge n7 n72) -(edge n7 n74) -(edge n7 n75) -(edge n7 n78) -(edge n7 n82) -(edge n7 n85) -(edge n7 n93) -(edge n7 n95) -(edge n7 n98) -(edge n7 n99) -(edge n7 n100) -(edge n7 n104) -(edge n7 n105) -(edge n7 n109) -(edge n7 n124) -(edge n7 n152) -(edge n7 n154) -(edge n7 n157) -(edge n7 n161) -(edge n7 n163) -(edge n7 n167) -(edge n7 n171) -(edge n7 n176) -(edge n7 n177) -(edge n7 n179) -(edge n7 n180) -(edge n7 n190) -(edge n8 n11) -(edge n8 n14) -(edge n8 n15) -(edge n8 n21) -(edge n8 n22) -(edge n8 n28) -(edge n8 n31) -(edge n8 n33) -(edge n8 n41) -(edge n8 n42) -(edge n8 n48) -(edge n8 n55) -(edge n8 n67) -(edge n8 n73) -(edge n8 n79) -(edge n8 n83) -(edge n8 n96) -(edge n8 n98) -(edge n8 n100) -(edge n8 n101) -(edge n8 n111) -(edge n8 n112) -(edge n8 n116) -(edge n8 n119) -(edge n8 n122) -(edge n8 n124) -(edge n8 n133) -(edge n8 n142) -(edge n8 n144) -(edge n8 n145) -(edge n8 n147) -(edge n8 n148) -(edge n8 n152) -(edge n8 n158) -(edge n8 n168) -(edge n8 n172) -(edge n8 n173) -(edge n8 n179) -(edge n8 n185) -(edge n8 n190) -(edge n8 n193) -(edge n8 n194) -(edge n9 n10) -(edge n9 n11) -(edge n9 n19) -(edge n9 n30) -(edge n9 n34) -(edge n9 n39) -(edge n9 n40) -(edge n9 n50) -(edge n9 n52) -(edge n9 n78) -(edge n9 n79) -(edge n9 n81) -(edge n9 n83) -(edge n9 n85) -(edge n9 n96) -(edge n9 n102) -(edge n9 n126) -(edge n9 n128) -(edge n9 n138) -(edge n9 n140) -(edge n9 n148) -(edge n9 n153) -(edge n9 n157) -(edge n9 n164) -(edge n9 n166) -(edge n9 n169) -(edge n9 n179) -(edge n9 n185) -(edge n9 n188) -(edge n9 n190) -(edge n10 n17) -(edge n10 n51) -(edge n10 n52) -(edge n10 n59) -(edge n10 n61) -(edge n10 n65) -(edge n10 n69) -(edge n10 n73) -(edge n10 n74) -(edge n10 n98) -(edge n10 n109) -(edge n10 n110) -(edge n10 n116) -(edge n10 n119) -(edge n10 n120) -(edge n10 n124) -(edge n10 n127) -(edge n10 n131) -(edge n10 n135) -(edge n10 n139) -(edge n10 n143) -(edge n10 n147) -(edge n10 n162) -(edge n10 n169) -(edge n10 n172) -(edge n10 n178) -(edge n10 n184) -(edge n10 n186) -(edge n10 n195) -(edge n10 n198) -(edge n10 n199) -(edge n11 n15) -(edge n11 n18) -(edge n11 n21) -(edge n11 n27) -(edge n11 n29) -(edge n11 n35) -(edge n11 n40) -(edge n11 n45) -(edge n11 n53) -(edge n11 n54) -(edge n11 n55) -(edge n11 n63) -(edge n11 n65) -(edge n11 n66) -(edge n11 n74) -(edge n11 n80) -(edge n11 n83) -(edge n11 n84) -(edge n11 n86) -(edge n11 n90) -(edge n11 n98) -(edge n11 n102) -(edge n11 n109) -(edge n11 n126) -(edge n11 n127) -(edge n11 n130) -(edge n11 n146) -(edge n11 n149) -(edge n11 n151) -(edge n11 n160) -(edge n11 n163) -(edge n11 n166) -(edge n11 n171) -(edge n11 n175) -(edge n11 n177) -(edge n11 n185) -(edge n11 n190) -(edge n11 n199) -(edge n12 n13) -(edge n12 n21) -(edge n12 n26) -(edge n12 n28) -(edge n12 n34) -(edge n12 n35) -(edge n12 n37) -(edge n12 n43) -(edge n12 n45) -(edge n12 n49) -(edge n12 n51) -(edge n12 n53) -(edge n12 n57) -(edge n12 n60) -(edge n12 n64) -(edge n12 n69) -(edge n12 n74) -(edge n12 n75) -(edge n12 n78) -(edge n12 n80) -(edge n12 n84) -(edge n12 n107) -(edge n12 n117) -(edge n12 n120) -(edge n12 n122) -(edge n12 n133) -(edge n12 n142) -(edge n12 n145) -(edge n12 n148) -(edge n12 n149) -(edge n12 n150) -(edge n12 n151) -(edge n12 n156) -(edge n12 n161) -(edge n12 n169) -(edge n12 n172) -(edge n12 n180) -(edge n12 n184) -(edge n12 n188) -(edge n12 n196) -(edge n12 n199) -(edge n13 n14) -(edge n13 n26) -(edge n13 n31) -(edge n13 n33) -(edge n13 n34) -(edge n13 n36) -(edge n13 n37) -(edge n13 n38) -(edge n13 n44) -(edge n13 n47) -(edge n13 n48) -(edge n13 n54) -(edge n13 n66) -(edge n13 n67) -(edge n13 n74) -(edge n13 n76) -(edge n13 n87) -(edge n13 n96) -(edge n13 n98) -(edge n13 n99) -(edge n13 n100) -(edge n13 n107) -(edge n13 n112) -(edge n13 n118) -(edge n13 n126) -(edge n13 n136) -(edge n13 n146) -(edge n13 n149) -(edge n13 n157) -(edge n13 n160) -(edge n13 n161) -(edge n13 n168) -(edge n13 n177) -(edge n13 n181) -(edge n13 n185) -(edge n13 n194) -(edge n13 n199) -(edge n14 n20) -(edge n14 n23) -(edge n14 n34) -(edge n14 n41) -(edge n14 n44) -(edge n14 n51) -(edge n14 n56) -(edge n14 n57) -(edge n14 n64) -(edge n14 n69) -(edge n14 n70) -(edge n14 n86) -(edge n14 n88) -(edge n14 n89) -(edge n14 n92) -(edge n14 n94) -(edge n14 n95) -(edge n14 n102) -(edge n14 n107) -(edge n14 n117) -(edge n14 n120) -(edge n14 n125) -(edge n14 n136) -(edge n14 n146) -(edge n14 n181) -(edge n14 n183) -(edge n14 n185) -(edge n14 n195) -(edge n14 n198) -(edge n15 n16) -(edge n15 n17) -(edge n15 n25) -(edge n15 n27) -(edge n15 n36) -(edge n15 n37) -(edge n15 n39) -(edge n15 n48) -(edge n15 n50) -(edge n15 n51) -(edge n15 n52) -(edge n15 n66) -(edge n15 n70) -(edge n15 n74) -(edge n15 n77) -(edge n15 n78) -(edge n15 n80) -(edge n15 n86) -(edge n15 n101) -(edge n15 n102) -(edge n15 n108) -(edge n15 n114) -(edge n15 n117) -(edge n15 n118) -(edge n15 n121) -(edge n15 n122) -(edge n15 n139) -(edge n15 n141) -(edge n15 n143) -(edge n15 n148) -(edge n15 n150) -(edge n15 n152) -(edge n15 n153) -(edge n15 n155) -(edge n15 n163) -(edge n15 n188) -(edge n15 n195) -(edge n15 n199) -(edge n16 n23) -(edge n16 n25) -(edge n16 n28) -(edge n16 n51) -(edge n16 n56) -(edge n16 n64) -(edge n16 n68) -(edge n16 n70) -(edge n16 n73) -(edge n16 n81) -(edge n16 n83) -(edge n16 n84) -(edge n16 n85) -(edge n16 n87) -(edge n16 n92) -(edge n16 n99) -(edge n16 n107) -(edge n16 n108) -(edge n16 n114) -(edge n16 n118) -(edge n16 n123) -(edge n16 n130) -(edge n16 n136) -(edge n16 n158) -(edge n16 n161) -(edge n16 n173) -(edge n16 n180) -(edge n16 n184) -(edge n16 n188) -(edge n16 n191) -(edge n16 n192) -(edge n16 n193) -(edge n17 n18) -(edge n17 n36) -(edge n17 n41) -(edge n17 n49) -(edge n17 n55) -(edge n17 n62) -(edge n17 n70) -(edge n17 n76) -(edge n17 n83) -(edge n17 n93) -(edge n17 n97) -(edge n17 n99) -(edge n17 n110) -(edge n17 n111) -(edge n17 n112) -(edge n17 n122) -(edge n17 n145) -(edge n17 n151) -(edge n17 n154) -(edge n17 n155) -(edge n17 n156) -(edge n17 n169) -(edge n17 n174) -(edge n17 n185) -(edge n17 n199) -(edge n18 n20) -(edge n18 n21) -(edge n18 n35) -(edge n18 n36) -(edge n18 n43) -(edge n18 n46) -(edge n18 n47) -(edge n18 n51) -(edge n18 n63) -(edge n18 n64) -(edge n18 n72) -(edge n18 n74) -(edge n18 n75) -(edge n18 n77) -(edge n18 n78) -(edge n18 n89) -(edge n18 n90) -(edge n18 n95) -(edge n18 n96) -(edge n18 n100) -(edge n18 n104) -(edge n18 n116) -(edge n18 n117) -(edge n18 n119) -(edge n18 n127) -(edge n18 n129) -(edge n18 n134) -(edge n18 n137) -(edge n18 n168) -(edge n18 n169) -(edge n18 n176) -(edge n18 n180) -(edge n18 n183) -(edge n19 n30) -(edge n19 n31) -(edge n19 n35) -(edge n19 n37) -(edge n19 n38) -(edge n19 n51) -(edge n19 n54) -(edge n19 n56) -(edge n19 n57) -(edge n19 n63) -(edge n19 n64) -(edge n19 n65) -(edge n19 n73) -(edge n19 n76) -(edge n19 n79) -(edge n19 n80) -(edge n19 n85) -(edge n19 n87) -(edge n19 n89) -(edge n19 n91) -(edge n19 n98) -(edge n19 n99) -(edge n19 n102) -(edge n19 n106) -(edge n19 n107) -(edge n19 n121) -(edge n19 n128) -(edge n19 n130) -(edge n19 n140) -(edge n19 n142) -(edge n19 n144) -(edge n19 n147) -(edge n19 n150) -(edge n19 n158) -(edge n19 n161) -(edge n19 n164) -(edge n19 n174) -(edge n19 n176) -(edge n19 n182) -(edge n20 n25) -(edge n20 n27) -(edge n20 n39) -(edge n20 n40) -(edge n20 n43) -(edge n20 n50) -(edge n20 n67) -(edge n20 n73) -(edge n20 n74) -(edge n20 n79) -(edge n20 n80) -(edge n20 n85) -(edge n20 n86) -(edge n20 n93) -(edge n20 n96) -(edge n20 n98) -(edge n20 n101) -(edge n20 n113) -(edge n20 n114) -(edge n20 n130) -(edge n20 n140) -(edge n20 n148) -(edge n20 n151) -(edge n20 n153) -(edge n20 n155) -(edge n20 n157) -(edge n20 n176) -(edge n20 n179) -(edge n20 n182) -(edge n20 n183) -(edge n20 n184) -(edge n20 n194) -(edge n20 n196) -(edge n21 n27) -(edge n21 n29) -(edge n21 n31) -(edge n21 n40) -(edge n21 n42) -(edge n21 n43) -(edge n21 n55) -(edge n21 n75) -(edge n21 n78) -(edge n21 n81) -(edge n21 n82) -(edge n21 n87) -(edge n21 n92) -(edge n21 n95) -(edge n21 n97) -(edge n21 n106) -(edge n21 n116) -(edge n21 n117) -(edge n21 n121) -(edge n21 n122) -(edge n21 n130) -(edge n21 n141) -(edge n21 n149) -(edge n21 n154) -(edge n21 n159) -(edge n21 n160) -(edge n21 n163) -(edge n21 n165) -(edge n21 n176) -(edge n21 n178) -(edge n21 n183) -(edge n21 n195) -(edge n22 n23) -(edge n22 n30) -(edge n22 n43) -(edge n22 n47) -(edge n22 n48) -(edge n22 n49) -(edge n22 n57) -(edge n22 n58) -(edge n22 n59) -(edge n22 n61) -(edge n22 n62) -(edge n22 n78) -(edge n22 n87) -(edge n22 n96) -(edge n22 n104) -(edge n22 n107) -(edge n22 n111) -(edge n22 n113) -(edge n22 n115) -(edge n22 n124) -(edge n22 n126) -(edge n22 n127) -(edge n22 n129) -(edge n22 n132) -(edge n22 n142) -(edge n22 n152) -(edge n22 n169) -(edge n22 n174) -(edge n22 n178) -(edge n22 n181) -(edge n22 n185) -(edge n22 n190) -(edge n22 n191) -(edge n22 n196) -(edge n23 n25) -(edge n23 n26) -(edge n23 n31) -(edge n23 n40) -(edge n23 n44) -(edge n23 n47) -(edge n23 n53) -(edge n23 n55) -(edge n23 n57) -(edge n23 n60) -(edge n23 n64) -(edge n23 n78) -(edge n23 n81) -(edge n23 n108) -(edge n23 n112) -(edge n23 n115) -(edge n23 n120) -(edge n23 n125) -(edge n23 n126) -(edge n23 n130) -(edge n23 n137) -(edge n23 n140) -(edge n23 n144) -(edge n23 n150) -(edge n23 n161) -(edge n23 n162) -(edge n23 n163) -(edge n23 n165) -(edge n23 n169) -(edge n23 n188) -(edge n24 n28) -(edge n24 n39) -(edge n24 n45) -(edge n24 n47) -(edge n24 n48) -(edge n24 n56) -(edge n24 n58) -(edge n24 n60) -(edge n24 n63) -(edge n24 n68) -(edge n24 n71) -(edge n24 n76) -(edge n24 n86) -(edge n24 n93) -(edge n24 n94) -(edge n24 n95) -(edge n24 n98) -(edge n24 n100) -(edge n24 n104) -(edge n24 n105) -(edge n24 n111) -(edge n24 n121) -(edge n24 n123) -(edge n24 n127) -(edge n24 n135) -(edge n24 n139) -(edge n24 n151) -(edge n24 n155) -(edge n24 n165) -(edge n24 n172) -(edge n24 n175) -(edge n25 n48) -(edge n25 n54) -(edge n25 n66) -(edge n25 n72) -(edge n25 n79) -(edge n25 n83) -(edge n25 n84) -(edge n25 n92) -(edge n25 n93) -(edge n25 n99) -(edge n25 n110) -(edge n25 n114) -(edge n25 n115) -(edge n25 n116) -(edge n25 n118) -(edge n25 n121) -(edge n25 n132) -(edge n25 n143) -(edge n25 n144) -(edge n25 n148) -(edge n25 n152) -(edge n25 n156) -(edge n25 n157) -(edge n25 n158) -(edge n25 n159) -(edge n25 n164) -(edge n25 n169) -(edge n25 n173) -(edge n25 n185) -(edge n25 n187) -(edge n25 n189) -(edge n26 n35) -(edge n26 n38) -(edge n26 n46) -(edge n26 n47) -(edge n26 n55) -(edge n26 n62) -(edge n26 n66) -(edge n26 n67) -(edge n26 n70) -(edge n26 n78) -(edge n26 n79) -(edge n26 n85) -(edge n26 n90) -(edge n26 n99) -(edge n26 n108) -(edge n26 n112) -(edge n26 n119) -(edge n26 n128) -(edge n26 n134) -(edge n26 n137) -(edge n26 n140) -(edge n26 n154) -(edge n26 n159) -(edge n26 n165) -(edge n26 n169) -(edge n26 n170) -(edge n26 n177) -(edge n26 n192) -(edge n27 n29) -(edge n27 n32) -(edge n27 n35) -(edge n27 n50) -(edge n27 n53) -(edge n27 n58) -(edge n27 n62) -(edge n27 n63) -(edge n27 n70) -(edge n27 n71) -(edge n27 n77) -(edge n27 n80) -(edge n27 n82) -(edge n27 n83) -(edge n27 n84) -(edge n27 n86) -(edge n27 n90) -(edge n27 n99) -(edge n27 n110) -(edge n27 n113) -(edge n27 n116) -(edge n27 n117) -(edge n27 n128) -(edge n27 n142) -(edge n27 n145) -(edge n27 n151) -(edge n27 n169) -(edge n27 n171) -(edge n27 n193) -(edge n27 n197) -(edge n27 n199) -(edge n28 n39) -(edge n28 n43) -(edge n28 n47) -(edge n28 n49) -(edge n28 n55) -(edge n28 n70) -(edge n28 n72) -(edge n28 n73) -(edge n28 n77) -(edge n28 n84) -(edge n28 n100) -(edge n28 n106) -(edge n28 n110) -(edge n28 n124) -(edge n28 n129) -(edge n28 n134) -(edge n28 n136) -(edge n28 n152) -(edge n28 n159) -(edge n28 n164) -(edge n28 n172) -(edge n28 n182) -(edge n28 n193) -(edge n29 n32) -(edge n29 n37) -(edge n29 n40) -(edge n29 n43) -(edge n29 n47) -(edge n29 n53) -(edge n29 n54) -(edge n29 n62) -(edge n29 n64) -(edge n29 n69) -(edge n29 n72) -(edge n29 n76) -(edge n29 n82) -(edge n29 n83) -(edge n29 n86) -(edge n29 n87) -(edge n29 n88) -(edge n29 n90) -(edge n29 n95) -(edge n29 n97) -(edge n29 n106) -(edge n29 n108) -(edge n29 n110) -(edge n29 n114) -(edge n29 n117) -(edge n29 n121) -(edge n29 n131) -(edge n29 n151) -(edge n29 n153) -(edge n29 n160) -(edge n29 n162) -(edge n29 n166) -(edge n29 n178) -(edge n29 n181) -(edge n29 n183) -(edge n29 n186) -(edge n29 n188) -(edge n29 n197) -(edge n29 n198) -(edge n29 n199) -(edge n30 n42) -(edge n30 n43) -(edge n30 n53) -(edge n30 n54) -(edge n30 n64) -(edge n30 n68) -(edge n30 n72) -(edge n30 n76) -(edge n30 n79) -(edge n30 n81) -(edge n30 n85) -(edge n30 n90) -(edge n30 n93) -(edge n30 n94) -(edge n30 n95) -(edge n30 n96) -(edge n30 n98) -(edge n30 n103) -(edge n30 n115) -(edge n30 n116) -(edge n30 n118) -(edge n30 n135) -(edge n30 n136) -(edge n30 n141) -(edge n30 n154) -(edge n30 n156) -(edge n30 n162) -(edge n30 n166) -(edge n30 n180) -(edge n30 n181) -(edge n30 n188) -(edge n30 n189) -(edge n30 n197) -(edge n31 n61) -(edge n31 n78) -(edge n31 n80) -(edge n31 n83) -(edge n31 n86) -(edge n31 n94) -(edge n31 n96) -(edge n31 n97) -(edge n31 n104) -(edge n31 n119) -(edge n31 n122) -(edge n31 n124) -(edge n31 n128) -(edge n31 n135) -(edge n31 n138) -(edge n31 n149) -(edge n31 n154) -(edge n31 n160) -(edge n31 n162) -(edge n31 n167) -(edge n31 n170) -(edge n31 n177) -(edge n31 n183) -(edge n31 n184) -(edge n31 n188) -(edge n32 n38) -(edge n32 n39) -(edge n32 n47) -(edge n32 n75) -(edge n32 n81) -(edge n32 n83) -(edge n32 n89) -(edge n32 n93) -(edge n32 n112) -(edge n32 n115) -(edge n32 n116) -(edge n32 n119) -(edge n32 n122) -(edge n32 n128) -(edge n32 n130) -(edge n32 n134) -(edge n32 n136) -(edge n32 n138) -(edge n32 n152) -(edge n32 n164) -(edge n32 n166) -(edge n32 n167) -(edge n32 n174) -(edge n32 n175) -(edge n32 n185) -(edge n32 n188) -(edge n32 n197) -(edge n33 n35) -(edge n33 n37) -(edge n33 n38) -(edge n33 n40) -(edge n33 n41) -(edge n33 n59) -(edge n33 n79) -(edge n33 n82) -(edge n33 n92) -(edge n33 n96) -(edge n33 n97) -(edge n33 n101) -(edge n33 n108) -(edge n33 n117) -(edge n33 n123) -(edge n33 n134) -(edge n33 n140) -(edge n33 n145) -(edge n33 n155) -(edge n33 n157) -(edge n33 n162) -(edge n33 n164) -(edge n33 n166) -(edge n33 n183) -(edge n33 n188) -(edge n33 n189) -(edge n33 n196) -(edge n33 n198) -(edge n33 n199) -(edge n34 n38) -(edge n34 n40) -(edge n34 n46) -(edge n34 n53) -(edge n34 n60) -(edge n34 n68) -(edge n34 n69) -(edge n34 n75) -(edge n34 n76) -(edge n34 n89) -(edge n34 n95) -(edge n34 n96) -(edge n34 n104) -(edge n34 n108) -(edge n34 n110) -(edge n34 n111) -(edge n34 n116) -(edge n34 n129) -(edge n34 n134) -(edge n34 n143) -(edge n34 n148) -(edge n34 n156) -(edge n34 n175) -(edge n34 n179) -(edge n34 n184) -(edge n34 n199) -(edge n35 n45) -(edge n35 n46) -(edge n35 n51) -(edge n35 n58) -(edge n35 n62) -(edge n35 n63) -(edge n35 n70) -(edge n35 n76) -(edge n35 n78) -(edge n35 n80) -(edge n35 n93) -(edge n35 n102) -(edge n35 n103) -(edge n35 n112) -(edge n35 n114) -(edge n35 n117) -(edge n35 n124) -(edge n35 n125) -(edge n35 n130) -(edge n35 n131) -(edge n35 n134) -(edge n35 n137) -(edge n35 n139) -(edge n35 n141) -(edge n35 n143) -(edge n35 n153) -(edge n35 n156) -(edge n35 n164) -(edge n35 n167) -(edge n35 n169) -(edge n35 n182) -(edge n35 n190) -(edge n35 n198) -(edge n36 n45) -(edge n36 n47) -(edge n36 n52) -(edge n36 n75) -(edge n36 n80) -(edge n36 n83) -(edge n36 n90) -(edge n36 n94) -(edge n36 n96) -(edge n36 n103) -(edge n36 n107) -(edge n36 n109) -(edge n36 n122) -(edge n36 n128) -(edge n36 n137) -(edge n36 n139) -(edge n36 n153) -(edge n36 n158) -(edge n36 n161) -(edge n36 n164) -(edge n36 n165) -(edge n36 n167) -(edge n36 n168) -(edge n36 n172) -(edge n36 n174) -(edge n36 n176) -(edge n36 n195) -(edge n36 n197) -(edge n37 n41) -(edge n37 n48) -(edge n37 n55) -(edge n37 n59) -(edge n37 n65) -(edge n37 n66) -(edge n37 n72) -(edge n37 n78) -(edge n37 n82) -(edge n37 n83) -(edge n37 n86) -(edge n37 n93) -(edge n37 n98) -(edge n37 n102) -(edge n37 n104) -(edge n37 n105) -(edge n37 n109) -(edge n37 n116) -(edge n37 n119) -(edge n37 n120) -(edge n37 n122) -(edge n37 n123) -(edge n37 n140) -(edge n37 n141) -(edge n37 n149) -(edge n37 n154) -(edge n37 n160) -(edge n37 n169) -(edge n37 n170) -(edge n37 n173) -(edge n37 n183) -(edge n37 n185) -(edge n37 n195) -(edge n37 n197) -(edge n37 n199) -(edge n38 n40) -(edge n38 n44) -(edge n38 n47) -(edge n38 n49) -(edge n38 n52) -(edge n38 n61) -(edge n38 n66) -(edge n38 n68) -(edge n38 n72) -(edge n38 n78) -(edge n38 n80) -(edge n38 n91) -(edge n38 n92) -(edge n38 n98) -(edge n38 n100) -(edge n38 n102) -(edge n38 n104) -(edge n38 n116) -(edge n38 n119) -(edge n38 n127) -(edge n38 n134) -(edge n38 n137) -(edge n38 n144) -(edge n38 n147) -(edge n38 n149) -(edge n38 n150) -(edge n38 n154) -(edge n38 n161) -(edge n38 n167) -(edge n38 n177) -(edge n38 n178) -(edge n39 n55) -(edge n39 n61) -(edge n39 n62) -(edge n39 n63) -(edge n39 n64) -(edge n39 n79) -(edge n39 n87) -(edge n39 n90) -(edge n39 n109) -(edge n39 n115) -(edge n39 n117) -(edge n39 n121) -(edge n39 n128) -(edge n39 n135) -(edge n39 n143) -(edge n39 n149) -(edge n39 n152) -(edge n39 n155) -(edge n39 n182) -(edge n39 n183) -(edge n39 n186) -(edge n39 n197) -(edge n39 n198) -(edge n40 n43) -(edge n40 n45) -(edge n40 n49) -(edge n40 n55) -(edge n40 n59) -(edge n40 n67) -(edge n40 n69) -(edge n40 n82) -(edge n40 n87) -(edge n40 n99) -(edge n40 n103) -(edge n40 n108) -(edge n40 n117) -(edge n40 n118) -(edge n40 n129) -(edge n40 n135) -(edge n40 n151) -(edge n40 n163) -(edge n40 n173) -(edge n40 n175) -(edge n40 n179) -(edge n40 n181) -(edge n40 n182) -(edge n40 n183) -(edge n40 n188) -(edge n40 n193) -(edge n40 n195) -(edge n40 n197) -(edge n40 n199) -(edge n41 n54) -(edge n41 n58) -(edge n41 n59) -(edge n41 n61) -(edge n41 n70) -(edge n41 n74) -(edge n41 n75) -(edge n41 n83) -(edge n41 n90) -(edge n41 n95) -(edge n41 n105) -(edge n41 n111) -(edge n41 n112) -(edge n41 n116) -(edge n41 n121) -(edge n41 n127) -(edge n41 n129) -(edge n41 n130) -(edge n41 n135) -(edge n41 n141) -(edge n41 n155) -(edge n41 n166) -(edge n41 n171) -(edge n41 n177) -(edge n41 n182) -(edge n41 n186) -(edge n41 n190) -(edge n41 n191) -(edge n42 n46) -(edge n42 n51) -(edge n42 n58) -(edge n42 n69) -(edge n42 n72) -(edge n42 n74) -(edge n42 n78) -(edge n42 n97) -(edge n42 n99) -(edge n42 n108) -(edge n42 n127) -(edge n42 n138) -(edge n42 n143) -(edge n42 n150) -(edge n42 n155) -(edge n42 n156) -(edge n42 n157) -(edge n42 n162) -(edge n42 n171) -(edge n42 n176) -(edge n42 n177) -(edge n42 n182) -(edge n42 n194) -(edge n43 n54) -(edge n43 n68) -(edge n43 n73) -(edge n43 n74) -(edge n43 n87) -(edge n43 n92) -(edge n43 n96) -(edge n43 n117) -(edge n43 n118) -(edge n43 n121) -(edge n43 n125) -(edge n43 n126) -(edge n43 n136) -(edge n43 n137) -(edge n43 n138) -(edge n43 n168) -(edge n43 n169) -(edge n43 n174) -(edge n43 n175) -(edge n43 n187) -(edge n43 n188) -(edge n43 n194) -(edge n43 n196) -(edge n44 n50) -(edge n44 n56) -(edge n44 n60) -(edge n44 n62) -(edge n44 n63) -(edge n44 n65) -(edge n44 n66) -(edge n44 n68) -(edge n44 n69) -(edge n44 n74) -(edge n44 n75) -(edge n44 n80) -(edge n44 n89) -(edge n44 n96) -(edge n44 n98) -(edge n44 n100) -(edge n44 n101) -(edge n44 n104) -(edge n44 n106) -(edge n44 n110) -(edge n44 n115) -(edge n44 n129) -(edge n44 n139) -(edge n44 n145) -(edge n44 n151) -(edge n44 n161) -(edge n44 n162) -(edge n44 n179) -(edge n44 n191) -(edge n44 n194) -(edge n44 n195) -(edge n45 n46) -(edge n45 n50) -(edge n45 n52) -(edge n45 n56) -(edge n45 n58) -(edge n45 n60) -(edge n45 n62) -(edge n45 n63) -(edge n45 n65) -(edge n45 n73) -(edge n45 n78) -(edge n45 n83) -(edge n45 n84) -(edge n45 n102) -(edge n45 n103) -(edge n45 n125) -(edge n45 n128) -(edge n45 n132) -(edge n45 n144) -(edge n45 n147) -(edge n45 n151) -(edge n45 n159) -(edge n45 n174) -(edge n45 n176) -(edge n45 n185) -(edge n45 n191) -(edge n46 n52) -(edge n46 n75) -(edge n46 n80) -(edge n46 n84) -(edge n46 n85) -(edge n46 n88) -(edge n46 n93) -(edge n46 n99) -(edge n46 n100) -(edge n46 n109) -(edge n46 n114) -(edge n46 n115) -(edge n46 n124) -(edge n46 n126) -(edge n46 n132) -(edge n46 n133) -(edge n46 n142) -(edge n46 n146) -(edge n46 n161) -(edge n46 n166) -(edge n46 n168) -(edge n46 n185) -(edge n46 n192) -(edge n46 n197) -(edge n47 n48) -(edge n47 n53) -(edge n47 n56) -(edge n47 n60) -(edge n47 n61) -(edge n47 n67) -(edge n47 n69) -(edge n47 n75) -(edge n47 n80) -(edge n47 n81) -(edge n47 n84) -(edge n47 n87) -(edge n47 n91) -(edge n47 n92) -(edge n47 n94) -(edge n47 n97) -(edge n47 n105) -(edge n47 n108) -(edge n47 n114) -(edge n47 n120) -(edge n47 n133) -(edge n47 n149) -(edge n47 n150) -(edge n47 n171) -(edge n47 n176) -(edge n47 n193) -(edge n47 n195) -(edge n48 n53) -(edge n48 n63) -(edge n48 n67) -(edge n48 n71) -(edge n48 n73) -(edge n48 n82) -(edge n48 n92) -(edge n48 n97) -(edge n48 n101) -(edge n48 n103) -(edge n48 n106) -(edge n48 n108) -(edge n48 n109) -(edge n48 n113) -(edge n48 n118) -(edge n48 n121) -(edge n48 n129) -(edge n48 n132) -(edge n48 n135) -(edge n48 n137) -(edge n48 n147) -(edge n48 n148) -(edge n48 n160) -(edge n48 n174) -(edge n48 n176) -(edge n48 n178) -(edge n48 n179) -(edge n48 n186) -(edge n48 n190) -(edge n48 n192) -(edge n48 n193) -(edge n49 n51) -(edge n49 n52) -(edge n49 n55) -(edge n49 n58) -(edge n49 n65) -(edge n49 n70) -(edge n49 n77) -(edge n49 n81) -(edge n49 n91) -(edge n49 n97) -(edge n49 n100) -(edge n49 n110) -(edge n49 n114) -(edge n49 n116) -(edge n49 n120) -(edge n49 n121) -(edge n49 n128) -(edge n49 n135) -(edge n49 n147) -(edge n49 n149) -(edge n49 n151) -(edge n49 n159) -(edge n49 n160) -(edge n49 n170) -(edge n49 n174) -(edge n49 n179) -(edge n49 n183) -(edge n49 n187) -(edge n49 n191) -(edge n49 n193) -(edge n49 n199) -(edge n50 n61) -(edge n50 n65) -(edge n50 n73) -(edge n50 n79) -(edge n50 n100) -(edge n50 n102) -(edge n50 n116) -(edge n50 n119) -(edge n50 n127) -(edge n50 n137) -(edge n50 n138) -(edge n50 n146) -(edge n50 n150) -(edge n50 n153) -(edge n50 n160) -(edge n50 n161) -(edge n50 n163) -(edge n50 n166) -(edge n50 n188) -(edge n50 n189) -(edge n50 n193) -(edge n50 n194) -(edge n50 n198) -(edge n51 n54) -(edge n51 n57) -(edge n51 n59) -(edge n51 n66) -(edge n51 n68) -(edge n51 n70) -(edge n51 n71) -(edge n51 n76) -(edge n51 n90) -(edge n51 n91) -(edge n51 n99) -(edge n51 n100) -(edge n51 n103) -(edge n51 n104) -(edge n51 n110) -(edge n51 n126) -(edge n51 n127) -(edge n51 n129) -(edge n51 n138) -(edge n51 n140) -(edge n51 n142) -(edge n51 n143) -(edge n51 n146) -(edge n51 n149) -(edge n51 n153) -(edge n51 n165) -(edge n51 n166) -(edge n51 n168) -(edge n51 n174) -(edge n51 n180) -(edge n51 n185) -(edge n51 n195) -(edge n52 n53) -(edge n52 n57) -(edge n52 n59) -(edge n52 n61) -(edge n52 n62) -(edge n52 n63) -(edge n52 n84) -(edge n52 n91) -(edge n52 n97) -(edge n52 n98) -(edge n52 n105) -(edge n52 n111) -(edge n52 n127) -(edge n52 n130) -(edge n52 n141) -(edge n52 n147) -(edge n52 n153) -(edge n52 n162) -(edge n52 n173) -(edge n52 n174) -(edge n52 n175) -(edge n52 n176) -(edge n52 n192) -(edge n52 n194) -(edge n52 n195) -(edge n53 n54) -(edge n53 n68) -(edge n53 n69) -(edge n53 n76) -(edge n53 n97) -(edge n53 n98) -(edge n53 n101) -(edge n53 n105) -(edge n53 n107) -(edge n53 n109) -(edge n53 n115) -(edge n53 n122) -(edge n53 n124) -(edge n53 n125) -(edge n53 n147) -(edge n53 n150) -(edge n53 n154) -(edge n53 n161) -(edge n53 n163) -(edge n53 n166) -(edge n53 n170) -(edge n53 n174) -(edge n53 n180) -(edge n53 n182) -(edge n53 n185) -(edge n53 n186) -(edge n53 n188) -(edge n53 n191) -(edge n53 n199) -(edge n54 n57) -(edge n54 n80) -(edge n54 n87) -(edge n54 n90) -(edge n54 n91) -(edge n54 n106) -(edge n54 n107) -(edge n54 n108) -(edge n54 n109) -(edge n54 n110) -(edge n54 n113) -(edge n54 n115) -(edge n54 n132) -(edge n54 n135) -(edge n54 n154) -(edge n54 n155) -(edge n54 n167) -(edge n54 n174) -(edge n54 n177) -(edge n54 n184) -(edge n54 n189) -(edge n54 n193) -(edge n54 n198) -(edge n55 n73) -(edge n55 n74) -(edge n55 n81) -(edge n55 n85) -(edge n55 n90) -(edge n55 n95) -(edge n55 n98) -(edge n55 n108) -(edge n55 n110) -(edge n55 n112) -(edge n55 n118) -(edge n55 n119) -(edge n55 n129) -(edge n55 n139) -(edge n55 n140) -(edge n55 n146) -(edge n55 n152) -(edge n55 n160) -(edge n55 n171) -(edge n55 n175) -(edge n55 n183) -(edge n55 n186) -(edge n55 n187) -(edge n55 n189) -(edge n55 n194) -(edge n55 n197) -(edge n56 n59) -(edge n56 n62) -(edge n56 n71) -(edge n56 n77) -(edge n56 n78) -(edge n56 n79) -(edge n56 n81) -(edge n56 n83) -(edge n56 n84) -(edge n56 n91) -(edge n56 n103) -(edge n56 n109) -(edge n56 n113) -(edge n56 n126) -(edge n56 n128) -(edge n56 n146) -(edge n56 n150) -(edge n56 n153) -(edge n56 n160) -(edge n56 n161) -(edge n56 n184) -(edge n56 n186) -(edge n56 n193) -(edge n56 n196) -(edge n57 n60) -(edge n57 n69) -(edge n57 n79) -(edge n57 n80) -(edge n57 n82) -(edge n57 n87) -(edge n57 n96) -(edge n57 n97) -(edge n57 n99) -(edge n57 n106) -(edge n57 n109) -(edge n57 n114) -(edge n57 n118) -(edge n57 n131) -(edge n57 n135) -(edge n57 n136) -(edge n57 n142) -(edge n57 n162) -(edge n57 n167) -(edge n57 n172) -(edge n57 n173) -(edge n57 n179) -(edge n57 n184) -(edge n57 n191) -(edge n58 n60) -(edge n58 n62) -(edge n58 n65) -(edge n58 n74) -(edge n58 n83) -(edge n58 n85) -(edge n58 n92) -(edge n58 n95) -(edge n58 n98) -(edge n58 n107) -(edge n58 n113) -(edge n58 n127) -(edge n58 n128) -(edge n58 n144) -(edge n58 n156) -(edge n58 n158) -(edge n58 n159) -(edge n58 n162) -(edge n58 n166) -(edge n58 n167) -(edge n58 n169) -(edge n58 n176) -(edge n58 n183) -(edge n58 n193) -(edge n59 n62) -(edge n59 n68) -(edge n59 n82) -(edge n59 n84) -(edge n59 n104) -(edge n59 n107) -(edge n59 n116) -(edge n59 n117) -(edge n59 n118) -(edge n59 n121) -(edge n59 n122) -(edge n59 n124) -(edge n59 n129) -(edge n59 n130) -(edge n59 n133) -(edge n59 n139) -(edge n59 n140) -(edge n59 n141) -(edge n59 n151) -(edge n59 n152) -(edge n59 n156) -(edge n59 n158) -(edge n59 n159) -(edge n59 n163) -(edge n59 n170) -(edge n59 n173) -(edge n59 n180) -(edge n59 n186) -(edge n59 n188) -(edge n59 n191) -(edge n59 n192) -(edge n59 n194) -(edge n59 n196) -(edge n60 n61) -(edge n60 n62) -(edge n60 n67) -(edge n60 n70) -(edge n60 n71) -(edge n60 n77) -(edge n60 n83) -(edge n60 n90) -(edge n60 n103) -(edge n60 n109) -(edge n60 n112) -(edge n60 n120) -(edge n60 n128) -(edge n60 n130) -(edge n60 n146) -(edge n60 n157) -(edge n60 n163) -(edge n60 n164) -(edge n60 n168) -(edge n60 n173) -(edge n60 n174) -(edge n60 n179) -(edge n60 n182) -(edge n60 n188) -(edge n60 n198) -(edge n61 n68) -(edge n61 n72) -(edge n61 n86) -(edge n61 n92) -(edge n61 n94) -(edge n61 n98) -(edge n61 n113) -(edge n61 n114) -(edge n61 n131) -(edge n61 n138) -(edge n61 n145) -(edge n61 n147) -(edge n61 n149) -(edge n61 n152) -(edge n61 n153) -(edge n61 n162) -(edge n61 n170) -(edge n61 n176) -(edge n61 n177) -(edge n61 n179) -(edge n61 n193) -(edge n61 n199) -(edge n62 n66) -(edge n62 n70) -(edge n62 n71) -(edge n62 n73) -(edge n62 n82) -(edge n62 n97) -(edge n62 n100) -(edge n62 n113) -(edge n62 n117) -(edge n62 n120) -(edge n62 n128) -(edge n62 n143) -(edge n62 n151) -(edge n62 n153) -(edge n62 n163) -(edge n62 n168) -(edge n62 n172) -(edge n62 n180) -(edge n62 n185) -(edge n62 n195) -(edge n63 n64) -(edge n63 n73) -(edge n63 n78) -(edge n63 n85) -(edge n63 n93) -(edge n63 n94) -(edge n63 n96) -(edge n63 n103) -(edge n63 n105) -(edge n63 n111) -(edge n63 n117) -(edge n63 n118) -(edge n63 n119) -(edge n63 n144) -(edge n63 n161) -(edge n63 n163) -(edge n63 n168) -(edge n63 n170) -(edge n63 n171) -(edge n63 n175) -(edge n63 n179) -(edge n63 n180) -(edge n63 n183) -(edge n63 n184) -(edge n63 n190) -(edge n63 n192) -(edge n63 n193) -(edge n64 n65) -(edge n64 n67) -(edge n64 n77) -(edge n64 n82) -(edge n64 n89) -(edge n64 n101) -(edge n64 n108) -(edge n64 n113) -(edge n64 n121) -(edge n64 n125) -(edge n64 n131) -(edge n64 n137) -(edge n64 n144) -(edge n64 n149) -(edge n64 n150) -(edge n64 n151) -(edge n64 n152) -(edge n64 n155) -(edge n64 n156) -(edge n64 n164) -(edge n64 n177) -(edge n64 n180) -(edge n64 n184) -(edge n64 n185) -(edge n64 n191) -(edge n64 n195) -(edge n65 n75) -(edge n65 n77) -(edge n65 n80) -(edge n65 n87) -(edge n65 n101) -(edge n65 n102) -(edge n65 n105) -(edge n65 n117) -(edge n65 n123) -(edge n65 n124) -(edge n65 n126) -(edge n65 n135) -(edge n65 n137) -(edge n65 n141) -(edge n65 n147) -(edge n65 n150) -(edge n65 n157) -(edge n65 n162) -(edge n65 n163) -(edge n65 n165) -(edge n65 n169) -(edge n65 n172) -(edge n65 n177) -(edge n65 n185) -(edge n65 n188) -(edge n65 n193) -(edge n65 n195) -(edge n66 n67) -(edge n66 n69) -(edge n66 n72) -(edge n66 n79) -(edge n66 n80) -(edge n66 n83) -(edge n66 n86) -(edge n66 n109) -(edge n66 n117) -(edge n66 n126) -(edge n66 n127) -(edge n66 n133) -(edge n66 n134) -(edge n66 n140) -(edge n66 n146) -(edge n66 n147) -(edge n66 n148) -(edge n66 n168) -(edge n66 n170) -(edge n66 n188) -(edge n67 n69) -(edge n67 n74) -(edge n67 n75) -(edge n67 n80) -(edge n67 n82) -(edge n67 n97) -(edge n67 n102) -(edge n67 n103) -(edge n67 n105) -(edge n67 n109) -(edge n67 n115) -(edge n67 n116) -(edge n67 n121) -(edge n67 n125) -(edge n67 n127) -(edge n67 n128) -(edge n67 n133) -(edge n67 n134) -(edge n67 n145) -(edge n67 n148) -(edge n67 n152) -(edge n67 n155) -(edge n67 n157) -(edge n67 n172) -(edge n67 n176) -(edge n67 n181) -(edge n67 n193) -(edge n67 n195) -(edge n67 n197) -(edge n68 n72) -(edge n68 n95) -(edge n68 n112) -(edge n68 n121) -(edge n68 n128) -(edge n68 n142) -(edge n68 n144) -(edge n68 n155) -(edge n68 n157) -(edge n68 n159) -(edge n68 n164) -(edge n68 n165) -(edge n68 n174) -(edge n68 n175) -(edge n68 n189) -(edge n68 n197) -(edge n68 n199) -(edge n69 n71) -(edge n69 n72) -(edge n69 n77) -(edge n69 n81) -(edge n69 n83) -(edge n69 n85) -(edge n69 n89) -(edge n69 n93) -(edge n69 n103) -(edge n69 n120) -(edge n69 n136) -(edge n69 n139) -(edge n69 n144) -(edge n69 n148) -(edge n69 n152) -(edge n69 n158) -(edge n69 n163) -(edge n69 n165) -(edge n69 n173) -(edge n69 n174) -(edge n69 n178) -(edge n69 n187) -(edge n69 n195) -(edge n69 n198) -(edge n70 n74) -(edge n70 n75) -(edge n70 n78) -(edge n70 n79) -(edge n70 n93) -(edge n70 n94) -(edge n70 n104) -(edge n70 n106) -(edge n70 n113) -(edge n70 n115) -(edge n70 n119) -(edge n70 n122) -(edge n70 n123) -(edge n70 n132) -(edge n70 n134) -(edge n70 n137) -(edge n70 n139) -(edge n70 n140) -(edge n70 n142) -(edge n70 n148) -(edge n70 n152) -(edge n70 n170) -(edge n70 n181) -(edge n70 n182) -(edge n70 n187) -(edge n70 n193) -(edge n71 n86) -(edge n71 n89) -(edge n71 n95) -(edge n71 n104) -(edge n71 n105) -(edge n71 n106) -(edge n71 n107) -(edge n71 n108) -(edge n71 n110) -(edge n71 n112) -(edge n71 n113) -(edge n71 n117) -(edge n71 n124) -(edge n71 n132) -(edge n71 n134) -(edge n71 n146) -(edge n71 n155) -(edge n71 n156) -(edge n71 n160) -(edge n71 n175) -(edge n71 n184) -(edge n71 n186) -(edge n71 n193) -(edge n71 n194) -(edge n72 n80) -(edge n72 n82) -(edge n72 n91) -(edge n72 n101) -(edge n72 n102) -(edge n72 n108) -(edge n72 n110) -(edge n72 n115) -(edge n72 n120) -(edge n72 n130) -(edge n72 n134) -(edge n72 n136) -(edge n72 n137) -(edge n72 n141) -(edge n72 n142) -(edge n72 n148) -(edge n72 n151) -(edge n72 n152) -(edge n72 n183) -(edge n72 n185) -(edge n72 n198) -(edge n73 n77) -(edge n73 n81) -(edge n73 n82) -(edge n73 n86) -(edge n73 n87) -(edge n73 n97) -(edge n73 n100) -(edge n73 n122) -(edge n73 n129) -(edge n73 n130) -(edge n73 n135) -(edge n73 n136) -(edge n73 n144) -(edge n73 n148) -(edge n73 n151) -(edge n73 n168) -(edge n73 n176) -(edge n73 n179) -(edge n73 n180) -(edge n73 n182) -(edge n73 n189) -(edge n73 n193) -(edge n73 n196) -(edge n73 n198) -(edge n74 n79) -(edge n74 n80) -(edge n74 n82) -(edge n74 n91) -(edge n74 n93) -(edge n74 n98) -(edge n74 n99) -(edge n74 n101) -(edge n74 n103) -(edge n74 n118) -(edge n74 n124) -(edge n74 n125) -(edge n74 n126) -(edge n74 n136) -(edge n74 n153) -(edge n74 n157) -(edge n74 n170) -(edge n74 n172) -(edge n74 n174) -(edge n74 n175) -(edge n74 n176) -(edge n74 n180) -(edge n74 n187) -(edge n74 n191) -(edge n74 n194) -(edge n75 n86) -(edge n75 n91) -(edge n75 n93) -(edge n75 n101) -(edge n75 n111) -(edge n75 n113) -(edge n75 n114) -(edge n75 n116) -(edge n75 n125) -(edge n75 n136) -(edge n75 n137) -(edge n75 n142) -(edge n75 n147) -(edge n75 n163) -(edge n75 n164) -(edge n75 n176) -(edge n75 n177) -(edge n75 n193) -(edge n76 n80) -(edge n76 n82) -(edge n76 n89) -(edge n76 n90) -(edge n76 n102) -(edge n76 n108) -(edge n76 n120) -(edge n76 n127) -(edge n76 n131) -(edge n76 n138) -(edge n76 n142) -(edge n76 n147) -(edge n76 n151) -(edge n76 n157) -(edge n76 n165) -(edge n76 n168) -(edge n76 n169) -(edge n76 n177) -(edge n76 n182) -(edge n76 n189) -(edge n76 n191) -(edge n76 n194) -(edge n76 n195) -(edge n76 n197) -(edge n76 n198) -(edge n76 n199) -(edge n77 n83) -(edge n77 n85) -(edge n77 n86) -(edge n77 n89) -(edge n77 n96) -(edge n77 n109) -(edge n77 n123) -(edge n77 n126) -(edge n77 n129) -(edge n77 n132) -(edge n77 n134) -(edge n77 n135) -(edge n77 n140) -(edge n77 n144) -(edge n77 n145) -(edge n77 n156) -(edge n77 n174) -(edge n77 n177) -(edge n77 n179) -(edge n77 n180) -(edge n77 n191) -(edge n77 n194) -(edge n77 n198) -(edge n78 n101) -(edge n78 n103) -(edge n78 n110) -(edge n78 n111) -(edge n78 n119) -(edge n78 n127) -(edge n78 n143) -(edge n78 n149) -(edge n78 n156) -(edge n78 n160) -(edge n78 n167) -(edge n78 n175) -(edge n78 n179) -(edge n78 n185) -(edge n78 n187) -(edge n78 n188) -(edge n78 n198) -(edge n78 n199) -(edge n79 n84) -(edge n79 n97) -(edge n79 n104) -(edge n79 n111) -(edge n79 n123) -(edge n79 n126) -(edge n79 n138) -(edge n79 n141) -(edge n79 n143) -(edge n79 n144) -(edge n79 n169) -(edge n79 n170) -(edge n79 n184) -(edge n79 n186) -(edge n79 n187) -(edge n79 n188) -(edge n79 n192) -(edge n79 n194) -(edge n80 n87) -(edge n80 n101) -(edge n80 n109) -(edge n80 n112) -(edge n80 n117) -(edge n80 n118) -(edge n80 n120) -(edge n80 n131) -(edge n80 n132) -(edge n80 n148) -(edge n80 n160) -(edge n80 n165) -(edge n80 n173) -(edge n80 n178) -(edge n80 n192) -(edge n80 n199) -(edge n81 n83) -(edge n81 n89) -(edge n81 n91) -(edge n81 n93) -(edge n81 n97) -(edge n81 n114) -(edge n81 n117) -(edge n81 n119) -(edge n81 n121) -(edge n81 n126) -(edge n81 n129) -(edge n81 n136) -(edge n81 n139) -(edge n81 n140) -(edge n81 n142) -(edge n81 n146) -(edge n81 n151) -(edge n81 n162) -(edge n81 n177) -(edge n81 n178) -(edge n81 n181) -(edge n81 n182) -(edge n81 n186) -(edge n81 n189) -(edge n82 n85) -(edge n82 n88) -(edge n82 n96) -(edge n82 n98) -(edge n82 n103) -(edge n82 n104) -(edge n82 n105) -(edge n82 n118) -(edge n82 n126) -(edge n82 n129) -(edge n82 n133) -(edge n82 n141) -(edge n82 n152) -(edge n82 n153) -(edge n82 n156) -(edge n82 n160) -(edge n82 n162) -(edge n82 n165) -(edge n82 n182) -(edge n82 n193) -(edge n82 n198) -(edge n83 n85) -(edge n83 n89) -(edge n83 n101) -(edge n83 n109) -(edge n83 n111) -(edge n83 n114) -(edge n83 n119) -(edge n83 n158) -(edge n83 n169) -(edge n83 n172) -(edge n83 n173) -(edge n83 n179) -(edge n83 n199) -(edge n84 n91) -(edge n84 n92) -(edge n84 n106) -(edge n84 n112) -(edge n84 n118) -(edge n84 n132) -(edge n84 n140) -(edge n84 n142) -(edge n84 n147) -(edge n84 n149) -(edge n84 n157) -(edge n84 n175) -(edge n84 n176) -(edge n84 n177) -(edge n84 n182) -(edge n84 n184) -(edge n84 n187) -(edge n84 n195) -(edge n84 n198) -(edge n85 n86) -(edge n85 n87) -(edge n85 n89) -(edge n85 n101) -(edge n85 n104) -(edge n85 n114) -(edge n85 n116) -(edge n85 n117) -(edge n85 n131) -(edge n85 n134) -(edge n85 n135) -(edge n85 n136) -(edge n85 n141) -(edge n85 n143) -(edge n85 n149) -(edge n85 n151) -(edge n85 n152) -(edge n85 n158) -(edge n85 n160) -(edge n85 n163) -(edge n85 n168) -(edge n85 n170) -(edge n85 n178) -(edge n85 n182) -(edge n85 n187) -(edge n85 n191) -(edge n85 n197) -(edge n85 n199) -(edge n86 n87) -(edge n86 n92) -(edge n86 n99) -(edge n86 n100) -(edge n86 n102) -(edge n86 n109) -(edge n86 n115) -(edge n86 n117) -(edge n86 n118) -(edge n86 n122) -(edge n86 n125) -(edge n86 n129) -(edge n86 n139) -(edge n86 n141) -(edge n86 n157) -(edge n86 n159) -(edge n86 n162) -(edge n86 n166) -(edge n86 n176) -(edge n87 n90) -(edge n87 n106) -(edge n87 n110) -(edge n87 n111) -(edge n87 n119) -(edge n87 n125) -(edge n87 n127) -(edge n87 n131) -(edge n87 n133) -(edge n87 n144) -(edge n87 n145) -(edge n87 n147) -(edge n87 n149) -(edge n87 n152) -(edge n87 n162) -(edge n87 n165) -(edge n87 n172) -(edge n87 n175) -(edge n87 n178) -(edge n87 n183) -(edge n87 n184) -(edge n87 n187) -(edge n87 n192) -(edge n88 n97) -(edge n88 n98) -(edge n88 n99) -(edge n88 n108) -(edge n88 n114) -(edge n88 n128) -(edge n88 n129) -(edge n88 n135) -(edge n88 n139) -(edge n88 n146) -(edge n88 n155) -(edge n88 n164) -(edge n88 n167) -(edge n88 n170) -(edge n88 n174) -(edge n88 n176) -(edge n88 n177) -(edge n88 n191) -(edge n88 n197) -(edge n89 n90) -(edge n89 n104) -(edge n89 n105) -(edge n89 n106) -(edge n89 n116) -(edge n89 n127) -(edge n89 n128) -(edge n89 n134) -(edge n89 n142) -(edge n89 n144) -(edge n89 n162) -(edge n89 n163) -(edge n89 n164) -(edge n89 n169) -(edge n89 n171) -(edge n89 n172) -(edge n89 n188) -(edge n90 n92) -(edge n90 n96) -(edge n90 n108) -(edge n90 n112) -(edge n90 n133) -(edge n90 n134) -(edge n90 n141) -(edge n90 n143) -(edge n90 n147) -(edge n90 n156) -(edge n90 n162) -(edge n90 n167) -(edge n90 n170) -(edge n90 n172) -(edge n90 n174) -(edge n90 n179) -(edge n90 n180) -(edge n90 n182) -(edge n90 n192) -(edge n90 n195) -(edge n91 n92) -(edge n91 n109) -(edge n91 n112) -(edge n91 n117) -(edge n91 n118) -(edge n91 n121) -(edge n91 n122) -(edge n91 n123) -(edge n91 n124) -(edge n91 n125) -(edge n91 n127) -(edge n91 n154) -(edge n91 n170) -(edge n91 n176) -(edge n91 n188) -(edge n91 n193) -(edge n91 n195) -(edge n91 n199) -(edge n92 n93) -(edge n92 n107) -(edge n92 n115) -(edge n92 n125) -(edge n92 n131) -(edge n92 n138) -(edge n92 n140) -(edge n92 n142) -(edge n92 n148) -(edge n92 n155) -(edge n92 n156) -(edge n92 n157) -(edge n92 n172) -(edge n92 n178) -(edge n92 n182) -(edge n92 n190) -(edge n93 n96) -(edge n93 n97) -(edge n93 n106) -(edge n93 n107) -(edge n93 n115) -(edge n93 n119) -(edge n93 n128) -(edge n93 n129) -(edge n93 n132) -(edge n93 n133) -(edge n93 n135) -(edge n93 n142) -(edge n93 n144) -(edge n93 n145) -(edge n93 n147) -(edge n93 n148) -(edge n93 n150) -(edge n93 n151) -(edge n93 n162) -(edge n93 n166) -(edge n93 n174) -(edge n93 n176) -(edge n93 n185) -(edge n93 n193) -(edge n94 n102) -(edge n94 n103) -(edge n94 n106) -(edge n94 n119) -(edge n94 n131) -(edge n94 n132) -(edge n94 n135) -(edge n94 n136) -(edge n94 n151) -(edge n94 n154) -(edge n94 n162) -(edge n94 n167) -(edge n94 n174) -(edge n94 n176) -(edge n94 n177) -(edge n94 n189) -(edge n94 n191) -(edge n94 n192) -(edge n95 n96) -(edge n95 n103) -(edge n95 n109) -(edge n95 n110) -(edge n95 n111) -(edge n95 n113) -(edge n95 n117) -(edge n95 n123) -(edge n95 n125) -(edge n95 n135) -(edge n95 n137) -(edge n95 n138) -(edge n95 n146) -(edge n95 n155) -(edge n95 n165) -(edge n95 n167) -(edge n95 n173) -(edge n95 n189) -(edge n95 n190) -(edge n95 n198) -(edge n96 n100) -(edge n96 n102) -(edge n96 n107) -(edge n96 n118) -(edge n96 n129) -(edge n96 n142) -(edge n96 n143) -(edge n96 n164) -(edge n96 n179) -(edge n96 n180) -(edge n96 n194) -(edge n96 n199) -(edge n97 n105) -(edge n97 n107) -(edge n97 n110) -(edge n97 n112) -(edge n97 n118) -(edge n97 n126) -(edge n97 n158) -(edge n97 n159) -(edge n97 n166) -(edge n97 n175) -(edge n97 n187) -(edge n97 n189) -(edge n97 n192) -(edge n98 n104) -(edge n98 n112) -(edge n98 n120) -(edge n98 n121) -(edge n98 n124) -(edge n98 n150) -(edge n98 n151) -(edge n98 n152) -(edge n98 n153) -(edge n98 n154) -(edge n98 n157) -(edge n98 n158) -(edge n98 n163) -(edge n98 n175) -(edge n98 n176) -(edge n98 n188) -(edge n98 n192) -(edge n98 n194) -(edge n99 n106) -(edge n99 n107) -(edge n99 n110) -(edge n99 n111) -(edge n99 n112) -(edge n99 n128) -(edge n99 n129) -(edge n99 n137) -(edge n99 n140) -(edge n99 n141) -(edge n99 n142) -(edge n99 n148) -(edge n99 n150) -(edge n99 n153) -(edge n99 n155) -(edge n99 n160) -(edge n99 n179) -(edge n100 n101) -(edge n100 n108) -(edge n100 n111) -(edge n100 n115) -(edge n100 n117) -(edge n100 n120) -(edge n100 n123) -(edge n100 n124) -(edge n100 n127) -(edge n100 n132) -(edge n100 n134) -(edge n100 n140) -(edge n100 n150) -(edge n100 n151) -(edge n100 n152) -(edge n100 n155) -(edge n100 n167) -(edge n100 n171) -(edge n100 n181) -(edge n100 n183) -(edge n100 n185) -(edge n100 n186) -(edge n100 n189) -(edge n100 n192) -(edge n100 n198) -(edge n101 n121) -(edge n101 n123) -(edge n101 n129) -(edge n101 n147) -(edge n101 n148) -(edge n101 n157) -(edge n101 n159) -(edge n101 n162) -(edge n101 n175) -(edge n101 n179) -(edge n101 n183) -(edge n101 n191) -(edge n101 n192) -(edge n102 n105) -(edge n102 n106) -(edge n102 n109) -(edge n102 n112) -(edge n102 n115) -(edge n102 n120) -(edge n102 n126) -(edge n102 n129) -(edge n102 n130) -(edge n102 n132) -(edge n102 n142) -(edge n102 n151) -(edge n102 n153) -(edge n102 n156) -(edge n102 n159) -(edge n102 n164) -(edge n102 n170) -(edge n102 n174) -(edge n102 n175) -(edge n102 n177) -(edge n102 n178) -(edge n102 n183) -(edge n102 n184) -(edge n102 n185) -(edge n102 n187) -(edge n102 n194) -(edge n103 n105) -(edge n103 n110) -(edge n103 n116) -(edge n103 n122) -(edge n103 n126) -(edge n103 n134) -(edge n103 n139) -(edge n103 n150) -(edge n103 n159) -(edge n103 n163) -(edge n103 n167) -(edge n103 n179) -(edge n103 n184) -(edge n103 n185) -(edge n103 n187) -(edge n104 n109) -(edge n104 n112) -(edge n104 n126) -(edge n104 n129) -(edge n104 n130) -(edge n104 n132) -(edge n104 n133) -(edge n104 n142) -(edge n104 n156) -(edge n104 n169) -(edge n104 n171) -(edge n104 n184) -(edge n104 n185) -(edge n104 n186) -(edge n104 n194) -(edge n104 n197) -(edge n105 n106) -(edge n105 n108) -(edge n105 n109) -(edge n105 n112) -(edge n105 n116) -(edge n105 n117) -(edge n105 n124) -(edge n105 n127) -(edge n105 n134) -(edge n105 n141) -(edge n105 n147) -(edge n105 n154) -(edge n105 n156) -(edge n105 n157) -(edge n105 n158) -(edge n105 n160) -(edge n105 n163) -(edge n105 n169) -(edge n105 n180) -(edge n105 n195) -(edge n105 n199) -(edge n106 n116) -(edge n106 n122) -(edge n106 n123) -(edge n106 n126) -(edge n106 n127) -(edge n106 n135) -(edge n106 n136) -(edge n106 n138) -(edge n106 n144) -(edge n106 n157) -(edge n106 n158) -(edge n106 n167) -(edge n106 n171) -(edge n106 n173) -(edge n106 n186) -(edge n106 n188) -(edge n106 n190) -(edge n106 n191) -(edge n106 n197) -(edge n107 n108) -(edge n107 n119) -(edge n107 n120) -(edge n107 n125) -(edge n107 n135) -(edge n107 n140) -(edge n107 n141) -(edge n107 n144) -(edge n107 n145) -(edge n107 n156) -(edge n107 n161) -(edge n107 n167) -(edge n107 n176) -(edge n107 n179) -(edge n107 n181) -(edge n107 n190) -(edge n107 n191) -(edge n107 n195) -(edge n107 n196) -(edge n108 n118) -(edge n108 n134) -(edge n108 n135) -(edge n108 n142) -(edge n108 n147) -(edge n108 n159) -(edge n108 n162) -(edge n108 n167) -(edge n108 n180) -(edge n108 n181) -(edge n108 n188) -(edge n108 n191) -(edge n108 n194) -(edge n108 n195) -(edge n108 n198) -(edge n109 n118) -(edge n109 n119) -(edge n109 n121) -(edge n109 n127) -(edge n109 n131) -(edge n109 n138) -(edge n109 n146) -(edge n109 n148) -(edge n109 n149) -(edge n109 n153) -(edge n109 n157) -(edge n109 n162) -(edge n109 n163) -(edge n109 n164) -(edge n109 n178) -(edge n109 n182) -(edge n109 n183) -(edge n109 n188) -(edge n109 n190) -(edge n110 n113) -(edge n110 n117) -(edge n110 n121) -(edge n110 n122) -(edge n110 n126) -(edge n110 n129) -(edge n110 n130) -(edge n110 n137) -(edge n110 n140) -(edge n110 n145) -(edge n110 n156) -(edge n110 n160) -(edge n110 n163) -(edge n110 n166) -(edge n110 n171) -(edge n110 n172) -(edge n110 n174) -(edge n111 n112) -(edge n111 n115) -(edge n111 n123) -(edge n111 n125) -(edge n111 n128) -(edge n111 n139) -(edge n111 n140) -(edge n111 n141) -(edge n111 n142) -(edge n111 n143) -(edge n111 n159) -(edge n111 n166) -(edge n111 n175) -(edge n111 n179) -(edge n111 n185) -(edge n111 n187) -(edge n111 n199) -(edge n112 n116) -(edge n112 n140) -(edge n112 n145) -(edge n112 n169) -(edge n112 n184) -(edge n112 n197) -(edge n113 n125) -(edge n113 n128) -(edge n113 n131) -(edge n113 n133) -(edge n113 n135) -(edge n113 n137) -(edge n113 n142) -(edge n113 n144) -(edge n113 n156) -(edge n113 n173) -(edge n113 n175) -(edge n113 n178) -(edge n113 n179) -(edge n113 n186) -(edge n113 n193) -(edge n113 n194) -(edge n113 n196) -(edge n114 n116) -(edge n114 n120) -(edge n114 n125) -(edge n114 n131) -(edge n114 n132) -(edge n114 n141) -(edge n114 n151) -(edge n114 n153) -(edge n114 n174) -(edge n114 n176) -(edge n114 n179) -(edge n114 n187) -(edge n114 n188) -(edge n114 n193) -(edge n115 n118) -(edge n115 n127) -(edge n115 n143) -(edge n115 n144) -(edge n115 n145) -(edge n115 n146) -(edge n115 n151) -(edge n115 n157) -(edge n115 n158) -(edge n115 n163) -(edge n115 n168) -(edge n115 n179) -(edge n115 n184) -(edge n115 n186) -(edge n115 n194) -(edge n116 n124) -(edge n116 n131) -(edge n116 n133) -(edge n116 n136) -(edge n116 n142) -(edge n116 n145) -(edge n116 n146) -(edge n116 n147) -(edge n116 n149) -(edge n116 n152) -(edge n116 n154) -(edge n116 n156) -(edge n116 n157) -(edge n116 n162) -(edge n116 n164) -(edge n116 n172) -(edge n116 n173) -(edge n116 n174) -(edge n116 n181) -(edge n116 n189) -(edge n117 n132) -(edge n117 n134) -(edge n117 n141) -(edge n117 n143) -(edge n117 n144) -(edge n117 n148) -(edge n117 n167) -(edge n117 n168) -(edge n117 n169) -(edge n117 n172) -(edge n117 n181) -(edge n117 n185) -(edge n117 n190) -(edge n117 n199) -(edge n118 n123) -(edge n118 n126) -(edge n118 n132) -(edge n118 n133) -(edge n118 n134) -(edge n118 n141) -(edge n118 n147) -(edge n118 n157) -(edge n118 n161) -(edge n118 n167) -(edge n118 n168) -(edge n118 n176) -(edge n118 n180) -(edge n118 n188) -(edge n118 n197) -(edge n119 n121) -(edge n119 n122) -(edge n119 n127) -(edge n119 n133) -(edge n119 n138) -(edge n119 n142) -(edge n119 n146) -(edge n119 n164) -(edge n119 n166) -(edge n119 n173) -(edge n119 n177) -(edge n119 n182) -(edge n119 n190) -(edge n119 n191) -(edge n119 n194) -(edge n119 n195) -(edge n120 n123) -(edge n120 n134) -(edge n120 n135) -(edge n120 n138) -(edge n120 n146) -(edge n120 n152) -(edge n120 n153) -(edge n120 n163) -(edge n120 n183) -(edge n120 n196) -(edge n120 n198) -(edge n121 n126) -(edge n121 n128) -(edge n121 n129) -(edge n121 n131) -(edge n121 n134) -(edge n121 n137) -(edge n121 n138) -(edge n121 n141) -(edge n121 n143) -(edge n121 n147) -(edge n121 n152) -(edge n121 n155) -(edge n121 n156) -(edge n121 n165) -(edge n121 n167) -(edge n121 n169) -(edge n121 n171) -(edge n121 n184) -(edge n121 n190) -(edge n122 n126) -(edge n122 n135) -(edge n122 n140) -(edge n122 n152) -(edge n122 n156) -(edge n122 n159) -(edge n122 n161) -(edge n122 n180) -(edge n122 n184) -(edge n122 n189) -(edge n122 n196) -(edge n123 n134) -(edge n123 n136) -(edge n123 n139) -(edge n123 n161) -(edge n123 n173) -(edge n123 n176) -(edge n123 n179) -(edge n123 n182) -(edge n123 n186) -(edge n124 n129) -(edge n124 n131) -(edge n124 n136) -(edge n124 n138) -(edge n124 n140) -(edge n124 n142) -(edge n124 n144) -(edge n124 n145) -(edge n124 n156) -(edge n124 n157) -(edge n124 n162) -(edge n124 n171) -(edge n124 n172) -(edge n124 n176) -(edge n124 n181) -(edge n124 n185) -(edge n124 n191) -(edge n124 n193) -(edge n124 n194) -(edge n125 n141) -(edge n125 n143) -(edge n125 n150) -(edge n125 n152) -(edge n125 n156) -(edge n125 n158) -(edge n125 n169) -(edge n125 n174) -(edge n125 n180) -(edge n125 n181) -(edge n125 n185) -(edge n125 n188) -(edge n125 n189) -(edge n125 n196) -(edge n126 n127) -(edge n126 n129) -(edge n126 n130) -(edge n126 n132) -(edge n126 n135) -(edge n126 n140) -(edge n126 n152) -(edge n126 n160) -(edge n126 n163) -(edge n126 n166) -(edge n126 n169) -(edge n126 n173) -(edge n126 n174) -(edge n126 n175) -(edge n126 n184) -(edge n126 n185) -(edge n126 n191) -(edge n126 n194) -(edge n126 n195) -(edge n126 n199) -(edge n127 n128) -(edge n127 n153) -(edge n127 n168) -(edge n127 n179) -(edge n127 n180) -(edge n127 n186) -(edge n127 n187) -(edge n127 n193) -(edge n128 n138) -(edge n128 n147) -(edge n128 n158) -(edge n128 n161) -(edge n128 n170) -(edge n128 n176) -(edge n128 n182) -(edge n128 n184) -(edge n128 n185) -(edge n128 n192) -(edge n128 n193) -(edge n128 n195) -(edge n129 n136) -(edge n129 n138) -(edge n129 n141) -(edge n129 n143) -(edge n129 n155) -(edge n129 n158) -(edge n129 n159) -(edge n129 n160) -(edge n129 n165) -(edge n129 n187) -(edge n129 n193) -(edge n130 n137) -(edge n130 n148) -(edge n130 n149) -(edge n130 n164) -(edge n130 n165) -(edge n130 n166) -(edge n130 n167) -(edge n130 n168) -(edge n130 n169) -(edge n130 n175) -(edge n130 n177) -(edge n130 n183) -(edge n130 n187) -(edge n131 n136) -(edge n131 n140) -(edge n131 n143) -(edge n131 n144) -(edge n131 n145) -(edge n131 n146) -(edge n131 n152) -(edge n131 n159) -(edge n131 n160) -(edge n131 n183) -(edge n131 n185) -(edge n131 n191) -(edge n131 n192) -(edge n131 n197) -(edge n132 n136) -(edge n132 n139) -(edge n132 n144) -(edge n132 n149) -(edge n132 n155) -(edge n132 n160) -(edge n132 n161) -(edge n132 n163) -(edge n132 n166) -(edge n132 n167) -(edge n132 n174) -(edge n132 n178) -(edge n132 n185) -(edge n132 n195) -(edge n133 n139) -(edge n133 n143) -(edge n133 n146) -(edge n133 n147) -(edge n133 n166) -(edge n133 n171) -(edge n133 n174) -(edge n133 n194) -(edge n133 n196) -(edge n134 n144) -(edge n134 n146) -(edge n134 n148) -(edge n134 n153) -(edge n134 n165) -(edge n134 n167) -(edge n134 n170) -(edge n134 n181) -(edge n134 n182) -(edge n134 n183) -(edge n134 n189) -(edge n134 n190) -(edge n134 n191) -(edge n134 n193) -(edge n134 n195) -(edge n135 n141) -(edge n135 n148) -(edge n135 n152) -(edge n135 n158) -(edge n135 n159) -(edge n135 n178) -(edge n135 n180) -(edge n135 n181) -(edge n135 n185) -(edge n135 n194) -(edge n135 n195) -(edge n135 n198) -(edge n136 n140) -(edge n136 n144) -(edge n136 n159) -(edge n136 n160) -(edge n136 n163) -(edge n136 n167) -(edge n136 n171) -(edge n136 n177) -(edge n136 n181) -(edge n136 n183) -(edge n136 n184) -(edge n136 n188) -(edge n136 n190) -(edge n136 n191) -(edge n136 n195) -(edge n136 n196) -(edge n136 n197) -(edge n137 n139) -(edge n137 n141) -(edge n137 n145) -(edge n137 n146) -(edge n137 n149) -(edge n137 n161) -(edge n137 n164) -(edge n137 n177) -(edge n137 n180) -(edge n137 n182) -(edge n137 n183) -(edge n137 n186) -(edge n137 n187) -(edge n137 n195) -(edge n138 n142) -(edge n138 n148) -(edge n138 n153) -(edge n138 n161) -(edge n138 n167) -(edge n138 n175) -(edge n138 n176) -(edge n138 n179) -(edge n138 n180) -(edge n138 n187) -(edge n138 n193) -(edge n138 n197) -(edge n138 n198) -(edge n139 n151) -(edge n139 n162) -(edge n139 n178) -(edge n139 n180) -(edge n139 n187) -(edge n139 n188) -(edge n139 n189) -(edge n139 n192) -(edge n139 n195) -(edge n139 n199) -(edge n140 n141) -(edge n140 n162) -(edge n140 n173) -(edge n140 n176) -(edge n140 n181) -(edge n140 n187) -(edge n141 n156) -(edge n141 n157) -(edge n141 n164) -(edge n141 n165) -(edge n141 n180) -(edge n141 n187) -(edge n141 n190) -(edge n141 n192) -(edge n141 n194) -(edge n141 n199) -(edge n142 n144) -(edge n142 n153) -(edge n142 n155) -(edge n142 n167) -(edge n142 n172) -(edge n142 n179) -(edge n142 n184) -(edge n142 n185) -(edge n142 n189) -(edge n142 n196) -(edge n142 n197) -(edge n143 n148) -(edge n143 n156) -(edge n143 n161) -(edge n143 n180) -(edge n143 n183) -(edge n143 n189) -(edge n144 n145) -(edge n144 n159) -(edge n144 n175) -(edge n144 n182) -(edge n144 n188) -(edge n144 n193) -(edge n144 n194) -(edge n145 n150) -(edge n145 n153) -(edge n145 n155) -(edge n145 n161) -(edge n145 n162) -(edge n145 n163) -(edge n145 n166) -(edge n145 n168) -(edge n145 n171) -(edge n145 n173) -(edge n145 n180) -(edge n145 n182) -(edge n145 n185) -(edge n145 n190) -(edge n145 n197) -(edge n146 n153) -(edge n146 n154) -(edge n146 n158) -(edge n146 n161) -(edge n146 n162) -(edge n146 n171) -(edge n146 n172) -(edge n146 n185) -(edge n146 n186) -(edge n146 n187) -(edge n146 n198) -(edge n147 n153) -(edge n147 n163) -(edge n147 n164) -(edge n147 n167) -(edge n147 n170) -(edge n147 n172) -(edge n147 n175) -(edge n147 n181) -(edge n147 n190) -(edge n148 n151) -(edge n148 n154) -(edge n148 n161) -(edge n148 n166) -(edge n148 n170) -(edge n148 n176) -(edge n148 n179) -(edge n148 n185) -(edge n148 n188) -(edge n148 n191) -(edge n148 n192) -(edge n148 n198) -(edge n149 n155) -(edge n149 n172) -(edge n149 n174) -(edge n149 n178) -(edge n149 n187) -(edge n149 n188) -(edge n149 n196) -(edge n150 n152) -(edge n150 n157) -(edge n150 n158) -(edge n150 n170) -(edge n150 n172) -(edge n150 n183) -(edge n151 n152) -(edge n151 n153) -(edge n151 n160) -(edge n151 n163) -(edge n151 n174) -(edge n151 n184) -(edge n151 n189) -(edge n152 n155) -(edge n152 n160) -(edge n152 n161) -(edge n152 n166) -(edge n152 n170) -(edge n152 n176) -(edge n152 n185) -(edge n152 n192) -(edge n152 n193) -(edge n152 n195) -(edge n153 n155) -(edge n153 n157) -(edge n153 n161) -(edge n153 n162) -(edge n153 n165) -(edge n153 n170) -(edge n153 n171) -(edge n153 n183) -(edge n153 n189) -(edge n153 n197) -(edge n154 n163) -(edge n154 n165) -(edge n154 n185) -(edge n154 n192) -(edge n154 n193) -(edge n154 n195) -(edge n154 n197) -(edge n155 n162) -(edge n155 n165) -(edge n155 n166) -(edge n155 n171) -(edge n155 n172) -(edge n155 n185) -(edge n155 n193) -(edge n155 n199) -(edge n156 n157) -(edge n156 n159) -(edge n156 n173) -(edge n156 n184) -(edge n156 n188) -(edge n156 n190) -(edge n156 n194) -(edge n156 n195) -(edge n156 n197) -(edge n157 n160) -(edge n157 n167) -(edge n157 n172) -(edge n157 n174) -(edge n157 n175) -(edge n157 n179) -(edge n157 n185) -(edge n157 n189) -(edge n157 n190) -(edge n157 n194) -(edge n157 n199) -(edge n158 n164) -(edge n158 n165) -(edge n158 n168) -(edge n158 n174) -(edge n158 n180) -(edge n158 n181) -(edge n158 n182) -(edge n158 n183) -(edge n159 n161) -(edge n159 n163) -(edge n159 n165) -(edge n159 n172) -(edge n159 n177) -(edge n159 n181) -(edge n159 n186) -(edge n159 n187) -(edge n160 n168) -(edge n160 n171) -(edge n160 n184) -(edge n160 n192) -(edge n160 n197) -(edge n161 n177) -(edge n161 n183) -(edge n161 n196) -(edge n162 n163) -(edge n162 n164) -(edge n162 n168) -(edge n162 n175) -(edge n162 n177) -(edge n162 n181) -(edge n162 n183) -(edge n162 n188) -(edge n162 n189) -(edge n162 n192) -(edge n162 n195) -(edge n162 n196) -(edge n163 n164) -(edge n163 n172) -(edge n163 n174) -(edge n163 n179) -(edge n163 n185) -(edge n163 n199) -(edge n164 n173) -(edge n164 n185) -(edge n164 n194) -(edge n164 n198) -(edge n165 n170) -(edge n165 n180) -(edge n165 n190) -(edge n165 n195) -(edge n165 n196) -(edge n165 n199) -(edge n166 n168) -(edge n166 n175) -(edge n166 n184) -(edge n166 n196) -(edge n167 n172) -(edge n167 n189) -(edge n167 n192) -(edge n167 n193) -(edge n168 n177) -(edge n168 n182) -(edge n168 n195) -(edge n169 n170) -(edge n169 n171) -(edge n169 n178) -(edge n169 n179) -(edge n169 n182) -(edge n169 n190) -(edge n169 n191) -(edge n169 n192) -(edge n169 n199) -(edge n170 n171) -(edge n170 n173) -(edge n170 n174) -(edge n170 n176) -(edge n170 n177) -(edge n170 n181) -(edge n170 n184) -(edge n171 n181) -(edge n171 n189) -(edge n171 n196) -(edge n171 n197) -(edge n172 n181) -(edge n172 n194) -(edge n173 n178) -(edge n173 n191) -(edge n173 n195) -(edge n173 n197) -(edge n174 n175) -(edge n174 n181) -(edge n175 n182) -(edge n175 n189) -(edge n175 n191) -(edge n175 n193) -(edge n175 n194) -(edge n175 n199) -(edge n176 n177) -(edge n176 n186) -(edge n176 n193) -(edge n177 n180) -(edge n177 n181) -(edge n177 n186) -(edge n178 n186) -(edge n178 n189) -(edge n178 n198) -(edge n179 n181) -(edge n179 n184) -(edge n179 n187) -(edge n179 n198) -(edge n179 n199) -(edge n180 n192) -(edge n180 n194) -(edge n181 n184) -(edge n181 n187) -(edge n181 n190) -(edge n181 n191) -(edge n181 n198) -(edge n182 n193) -(edge n182 n199) -(edge n183 n189) -(edge n183 n193) -(edge n183 n194) -(edge n183 n195) -(edge n184 n190) -(edge n184 n197) -(edge n184 n198) -(edge n185 n196) -(edge n186 n189) -(edge n186 n191) -(edge n186 n192) -(edge n186 n193) -(edge n186 n195) -(edge n186 n196) -(edge n187 n190) -(edge n187 n194) -(edge n188 n189) -(edge n188 n195) -(edge n188 n199) -(edge n189 n192) -(edge n190 n191) -(edge n190 n193) -(edge n190 n199) -(edge n192 n198) -(edge n194 n198) -(edge n195 n196) -(edge n196 n199) - -(exec 9 (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3)) - (, (c4 $x0 $x1 $x2 $x3))) diff --git a/examples/transforms/clq_staged.mm2 b/examples/transforms/clq_staged.mm2 deleted file mode 100644 index e2f48df8..00000000 --- a/examples/transforms/clq_staged.mm2 +++ /dev/null @@ -1,3604 +0,0 @@ -(edge n0 n1) -(edge n0 n12) -(edge n0 n21) -(edge n0 n24) -(edge n0 n25) -(edge n0 n31) -(edge n0 n33) -(edge n0 n37) -(edge n0 n43) -(edge n0 n56) -(edge n0 n58) -(edge n0 n62) -(edge n0 n67) -(edge n0 n71) -(edge n0 n74) -(edge n0 n83) -(edge n0 n84) -(edge n0 n100) -(edge n0 n101) -(edge n0 n103) -(edge n0 n108) -(edge n0 n114) -(edge n0 n124) -(edge n0 n125) -(edge n0 n130) -(edge n0 n135) -(edge n0 n139) -(edge n0 n155) -(edge n0 n156) -(edge n0 n157) -(edge n0 n159) -(edge n0 n164) -(edge n0 n168) -(edge n0 n182) -(edge n0 n186) -(edge n0 n191) -(edge n0 n196) -(edge n1 n8) -(edge n1 n13) -(edge n1 n19) -(edge n1 n20) -(edge n1 n22) -(edge n1 n23) -(edge n1 n28) -(edge n1 n33) -(edge n1 n46) -(edge n1 n50) -(edge n1 n54) -(edge n1 n60) -(edge n1 n61) -(edge n1 n64) -(edge n1 n66) -(edge n1 n72) -(edge n1 n78) -(edge n1 n80) -(edge n1 n88) -(edge n1 n101) -(edge n1 n106) -(edge n1 n107) -(edge n1 n108) -(edge n1 n119) -(edge n1 n123) -(edge n1 n131) -(edge n1 n135) -(edge n1 n136) -(edge n1 n145) -(edge n1 n153) -(edge n1 n160) -(edge n1 n164) -(edge n1 n166) -(edge n1 n177) -(edge n1 n179) -(edge n1 n180) -(edge n1 n187) -(edge n1 n190) -(edge n1 n192) -(edge n1 n195) -(edge n2 n8) -(edge n2 n11) -(edge n2 n17) -(edge n2 n31) -(edge n2 n32) -(edge n2 n37) -(edge n2 n42) -(edge n2 n44) -(edge n2 n46) -(edge n2 n50) -(edge n2 n60) -(edge n2 n61) -(edge n2 n64) -(edge n2 n65) -(edge n2 n66) -(edge n2 n78) -(edge n2 n84) -(edge n2 n86) -(edge n2 n109) -(edge n2 n116) -(edge n2 n122) -(edge n2 n137) -(edge n2 n138) -(edge n2 n141) -(edge n2 n144) -(edge n2 n152) -(edge n2 n156) -(edge n2 n160) -(edge n2 n162) -(edge n2 n170) -(edge n2 n171) -(edge n2 n176) -(edge n2 n186) -(edge n2 n196) -(edge n3 n9) -(edge n3 n21) -(edge n3 n29) -(edge n3 n30) -(edge n3 n41) -(edge n3 n46) -(edge n3 n54) -(edge n3 n56) -(edge n3 n61) -(edge n3 n72) -(edge n3 n74) -(edge n3 n76) -(edge n3 n82) -(edge n3 n87) -(edge n3 n88) -(edge n3 n105) -(edge n3 n109) -(edge n3 n111) -(edge n3 n112) -(edge n3 n113) -(edge n3 n115) -(edge n3 n122) -(edge n3 n128) -(edge n3 n130) -(edge n3 n133) -(edge n3 n135) -(edge n3 n147) -(edge n3 n154) -(edge n3 n157) -(edge n3 n168) -(edge n3 n169) -(edge n3 n172) -(edge n3 n174) -(edge n3 n178) -(edge n3 n187) -(edge n3 n192) -(edge n3 n197) -(edge n4 n7) -(edge n4 n9) -(edge n4 n12) -(edge n4 n21) -(edge n4 n22) -(edge n4 n25) -(edge n4 n30) -(edge n4 n37) -(edge n4 n39) -(edge n4 n41) -(edge n4 n48) -(edge n4 n51) -(edge n4 n54) -(edge n4 n60) -(edge n4 n62) -(edge n4 n66) -(edge n4 n85) -(edge n4 n87) -(edge n4 n90) -(edge n4 n91) -(edge n4 n103) -(edge n4 n104) -(edge n4 n131) -(edge n4 n135) -(edge n4 n138) -(edge n4 n145) -(edge n4 n147) -(edge n4 n151) -(edge n4 n156) -(edge n4 n159) -(edge n4 n164) -(edge n4 n165) -(edge n4 n175) -(edge n4 n176) -(edge n4 n178) -(edge n4 n179) -(edge n4 n180) -(edge n4 n182) -(edge n4 n186) -(edge n4 n190) -(edge n4 n193) -(edge n5 n7) -(edge n5 n10) -(edge n5 n13) -(edge n5 n30) -(edge n5 n34) -(edge n5 n42) -(edge n5 n46) -(edge n5 n51) -(edge n5 n70) -(edge n5 n72) -(edge n5 n75) -(edge n5 n76) -(edge n5 n95) -(edge n5 n97) -(edge n5 n104) -(edge n5 n125) -(edge n5 n126) -(edge n5 n128) -(edge n5 n135) -(edge n5 n138) -(edge n5 n141) -(edge n5 n143) -(edge n5 n145) -(edge n5 n149) -(edge n5 n154) -(edge n5 n159) -(edge n5 n160) -(edge n5 n163) -(edge n5 n165) -(edge n5 n168) -(edge n5 n175) -(edge n5 n178) -(edge n5 n189) -(edge n5 n192) -(edge n5 n197) -(edge n6 n7) -(edge n6 n11) -(edge n6 n18) -(edge n6 n28) -(edge n6 n40) -(edge n6 n41) -(edge n6 n64) -(edge n6 n76) -(edge n6 n78) -(edge n6 n86) -(edge n6 n90) -(edge n6 n93) -(edge n6 n95) -(edge n6 n97) -(edge n6 n103) -(edge n6 n108) -(edge n6 n109) -(edge n6 n121) -(edge n6 n122) -(edge n6 n127) -(edge n6 n133) -(edge n6 n134) -(edge n6 n139) -(edge n6 n140) -(edge n6 n155) -(edge n6 n161) -(edge n6 n162) -(edge n6 n165) -(edge n6 n166) -(edge n6 n176) -(edge n6 n188) -(edge n6 n190) -(edge n6 n191) -(edge n6 n192) -(edge n6 n193) -(edge n7 n10) -(edge n7 n26) -(edge n7 n35) -(edge n7 n38) -(edge n7 n39) -(edge n7 n45) -(edge n7 n50) -(edge n7 n51) -(edge n7 n52) -(edge n7 n65) -(edge n7 n67) -(edge n7 n68) -(edge n7 n72) -(edge n7 n74) -(edge n7 n75) -(edge n7 n78) -(edge n7 n82) -(edge n7 n85) -(edge n7 n93) -(edge n7 n95) -(edge n7 n98) -(edge n7 n99) -(edge n7 n100) -(edge n7 n104) -(edge n7 n105) -(edge n7 n109) -(edge n7 n124) -(edge n7 n152) -(edge n7 n154) -(edge n7 n157) -(edge n7 n161) -(edge n7 n163) -(edge n7 n167) -(edge n7 n171) -(edge n7 n176) -(edge n7 n177) -(edge n7 n179) -(edge n7 n180) -(edge n7 n190) -(edge n8 n11) -(edge n8 n14) -(edge n8 n15) -(edge n8 n21) -(edge n8 n22) -(edge n8 n28) -(edge n8 n31) -(edge n8 n33) -(edge n8 n41) -(edge n8 n42) -(edge n8 n48) -(edge n8 n55) -(edge n8 n67) -(edge n8 n73) -(edge n8 n79) -(edge n8 n83) -(edge n8 n96) -(edge n8 n98) -(edge n8 n100) -(edge n8 n101) -(edge n8 n111) -(edge n8 n112) -(edge n8 n116) -(edge n8 n119) -(edge n8 n122) -(edge n8 n124) -(edge n8 n133) -(edge n8 n142) -(edge n8 n144) -(edge n8 n145) -(edge n8 n147) -(edge n8 n148) -(edge n8 n152) -(edge n8 n158) -(edge n8 n168) -(edge n8 n172) -(edge n8 n173) -(edge n8 n179) -(edge n8 n185) -(edge n8 n190) -(edge n8 n193) -(edge n8 n194) -(edge n9 n10) -(edge n9 n11) -(edge n9 n19) -(edge n9 n30) -(edge n9 n34) -(edge n9 n39) -(edge n9 n40) -(edge n9 n50) -(edge n9 n52) -(edge n9 n78) -(edge n9 n79) -(edge n9 n81) -(edge n9 n83) -(edge n9 n85) -(edge n9 n96) -(edge n9 n102) -(edge n9 n126) -(edge n9 n128) -(edge n9 n138) -(edge n9 n140) -(edge n9 n148) -(edge n9 n153) -(edge n9 n157) -(edge n9 n164) -(edge n9 n166) -(edge n9 n169) -(edge n9 n179) -(edge n9 n185) -(edge n9 n188) -(edge n9 n190) -(edge n10 n17) -(edge n10 n51) -(edge n10 n52) -(edge n10 n59) -(edge n10 n61) -(edge n10 n65) -(edge n10 n69) -(edge n10 n73) -(edge n10 n74) -(edge n10 n98) -(edge n10 n109) -(edge n10 n110) -(edge n10 n116) -(edge n10 n119) -(edge n10 n120) -(edge n10 n124) -(edge n10 n127) -(edge n10 n131) -(edge n10 n135) -(edge n10 n139) -(edge n10 n143) -(edge n10 n147) -(edge n10 n162) -(edge n10 n169) -(edge n10 n172) -(edge n10 n178) -(edge n10 n184) -(edge n10 n186) -(edge n10 n195) -(edge n10 n198) -(edge n10 n199) -(edge n11 n15) -(edge n11 n18) -(edge n11 n21) -(edge n11 n27) -(edge n11 n29) -(edge n11 n35) -(edge n11 n40) -(edge n11 n45) -(edge n11 n53) -(edge n11 n54) -(edge n11 n55) -(edge n11 n63) -(edge n11 n65) -(edge n11 n66) -(edge n11 n74) -(edge n11 n80) -(edge n11 n83) -(edge n11 n84) -(edge n11 n86) -(edge n11 n90) -(edge n11 n98) -(edge n11 n102) -(edge n11 n109) -(edge n11 n126) -(edge n11 n127) -(edge n11 n130) -(edge n11 n146) -(edge n11 n149) -(edge n11 n151) -(edge n11 n160) -(edge n11 n163) -(edge n11 n166) -(edge n11 n171) -(edge n11 n175) -(edge n11 n177) -(edge n11 n185) -(edge n11 n190) -(edge n11 n199) -(edge n12 n13) -(edge n12 n21) -(edge n12 n26) -(edge n12 n28) -(edge n12 n34) -(edge n12 n35) -(edge n12 n37) -(edge n12 n43) -(edge n12 n45) -(edge n12 n49) -(edge n12 n51) -(edge n12 n53) -(edge n12 n57) -(edge n12 n60) -(edge n12 n64) -(edge n12 n69) -(edge n12 n74) -(edge n12 n75) -(edge n12 n78) -(edge n12 n80) -(edge n12 n84) -(edge n12 n107) -(edge n12 n117) -(edge n12 n120) -(edge n12 n122) -(edge n12 n133) -(edge n12 n142) -(edge n12 n145) -(edge n12 n148) -(edge n12 n149) -(edge n12 n150) -(edge n12 n151) -(edge n12 n156) -(edge n12 n161) -(edge n12 n169) -(edge n12 n172) -(edge n12 n180) -(edge n12 n184) -(edge n12 n188) -(edge n12 n196) -(edge n12 n199) -(edge n13 n14) -(edge n13 n26) -(edge n13 n31) -(edge n13 n33) -(edge n13 n34) -(edge n13 n36) -(edge n13 n37) -(edge n13 n38) -(edge n13 n44) -(edge n13 n47) -(edge n13 n48) -(edge n13 n54) -(edge n13 n66) -(edge n13 n67) -(edge n13 n74) -(edge n13 n76) -(edge n13 n87) -(edge n13 n96) -(edge n13 n98) -(edge n13 n99) -(edge n13 n100) -(edge n13 n107) -(edge n13 n112) -(edge n13 n118) -(edge n13 n126) -(edge n13 n136) -(edge n13 n146) -(edge n13 n149) -(edge n13 n157) -(edge n13 n160) -(edge n13 n161) -(edge n13 n168) -(edge n13 n177) -(edge n13 n181) -(edge n13 n185) -(edge n13 n194) -(edge n13 n199) -(edge n14 n20) -(edge n14 n23) -(edge n14 n34) -(edge n14 n41) -(edge n14 n44) -(edge n14 n51) -(edge n14 n56) -(edge n14 n57) -(edge n14 n64) -(edge n14 n69) -(edge n14 n70) -(edge n14 n86) -(edge n14 n88) -(edge n14 n89) -(edge n14 n92) -(edge n14 n94) -(edge n14 n95) -(edge n14 n102) -(edge n14 n107) -(edge n14 n117) -(edge n14 n120) -(edge n14 n125) -(edge n14 n136) -(edge n14 n146) -(edge n14 n181) -(edge n14 n183) -(edge n14 n185) -(edge n14 n195) -(edge n14 n198) -(edge n15 n16) -(edge n15 n17) -(edge n15 n25) -(edge n15 n27) -(edge n15 n36) -(edge n15 n37) -(edge n15 n39) -(edge n15 n48) -(edge n15 n50) -(edge n15 n51) -(edge n15 n52) -(edge n15 n66) -(edge n15 n70) -(edge n15 n74) -(edge n15 n77) -(edge n15 n78) -(edge n15 n80) -(edge n15 n86) -(edge n15 n101) -(edge n15 n102) -(edge n15 n108) -(edge n15 n114) -(edge n15 n117) -(edge n15 n118) -(edge n15 n121) -(edge n15 n122) -(edge n15 n139) -(edge n15 n141) -(edge n15 n143) -(edge n15 n148) -(edge n15 n150) -(edge n15 n152) -(edge n15 n153) -(edge n15 n155) -(edge n15 n163) -(edge n15 n188) -(edge n15 n195) -(edge n15 n199) -(edge n16 n23) -(edge n16 n25) -(edge n16 n28) -(edge n16 n51) -(edge n16 n56) -(edge n16 n64) -(edge n16 n68) -(edge n16 n70) -(edge n16 n73) -(edge n16 n81) -(edge n16 n83) -(edge n16 n84) -(edge n16 n85) -(edge n16 n87) -(edge n16 n92) -(edge n16 n99) -(edge n16 n107) -(edge n16 n108) -(edge n16 n114) -(edge n16 n118) -(edge n16 n123) -(edge n16 n130) -(edge n16 n136) -(edge n16 n158) -(edge n16 n161) -(edge n16 n173) -(edge n16 n180) -(edge n16 n184) -(edge n16 n188) -(edge n16 n191) -(edge n16 n192) -(edge n16 n193) -(edge n17 n18) -(edge n17 n36) -(edge n17 n41) -(edge n17 n49) -(edge n17 n55) -(edge n17 n62) -(edge n17 n70) -(edge n17 n76) -(edge n17 n83) -(edge n17 n93) -(edge n17 n97) -(edge n17 n99) -(edge n17 n110) -(edge n17 n111) -(edge n17 n112) -(edge n17 n122) -(edge n17 n145) -(edge n17 n151) -(edge n17 n154) -(edge n17 n155) -(edge n17 n156) -(edge n17 n169) -(edge n17 n174) -(edge n17 n185) -(edge n17 n199) -(edge n18 n20) -(edge n18 n21) -(edge n18 n35) -(edge n18 n36) -(edge n18 n43) -(edge n18 n46) -(edge n18 n47) -(edge n18 n51) -(edge n18 n63) -(edge n18 n64) -(edge n18 n72) -(edge n18 n74) -(edge n18 n75) -(edge n18 n77) -(edge n18 n78) -(edge n18 n89) -(edge n18 n90) -(edge n18 n95) -(edge n18 n96) -(edge n18 n100) -(edge n18 n104) -(edge n18 n116) -(edge n18 n117) -(edge n18 n119) -(edge n18 n127) -(edge n18 n129) -(edge n18 n134) -(edge n18 n137) -(edge n18 n168) -(edge n18 n169) -(edge n18 n176) -(edge n18 n180) -(edge n18 n183) -(edge n19 n30) -(edge n19 n31) -(edge n19 n35) -(edge n19 n37) -(edge n19 n38) -(edge n19 n51) -(edge n19 n54) -(edge n19 n56) -(edge n19 n57) -(edge n19 n63) -(edge n19 n64) -(edge n19 n65) -(edge n19 n73) -(edge n19 n76) -(edge n19 n79) -(edge n19 n80) -(edge n19 n85) -(edge n19 n87) -(edge n19 n89) -(edge n19 n91) -(edge n19 n98) -(edge n19 n99) -(edge n19 n102) -(edge n19 n106) -(edge n19 n107) -(edge n19 n121) -(edge n19 n128) -(edge n19 n130) -(edge n19 n140) -(edge n19 n142) -(edge n19 n144) -(edge n19 n147) -(edge n19 n150) -(edge n19 n158) -(edge n19 n161) -(edge n19 n164) -(edge n19 n174) -(edge n19 n176) -(edge n19 n182) -(edge n20 n25) -(edge n20 n27) -(edge n20 n39) -(edge n20 n40) -(edge n20 n43) -(edge n20 n50) -(edge n20 n67) -(edge n20 n73) -(edge n20 n74) -(edge n20 n79) -(edge n20 n80) -(edge n20 n85) -(edge n20 n86) -(edge n20 n93) -(edge n20 n96) -(edge n20 n98) -(edge n20 n101) -(edge n20 n113) -(edge n20 n114) -(edge n20 n130) -(edge n20 n140) -(edge n20 n148) -(edge n20 n151) -(edge n20 n153) -(edge n20 n155) -(edge n20 n157) -(edge n20 n176) -(edge n20 n179) -(edge n20 n182) -(edge n20 n183) -(edge n20 n184) -(edge n20 n194) -(edge n20 n196) -(edge n21 n27) -(edge n21 n29) -(edge n21 n31) -(edge n21 n40) -(edge n21 n42) -(edge n21 n43) -(edge n21 n55) -(edge n21 n75) -(edge n21 n78) -(edge n21 n81) -(edge n21 n82) -(edge n21 n87) -(edge n21 n92) -(edge n21 n95) -(edge n21 n97) -(edge n21 n106) -(edge n21 n116) -(edge n21 n117) -(edge n21 n121) -(edge n21 n122) -(edge n21 n130) -(edge n21 n141) -(edge n21 n149) -(edge n21 n154) -(edge n21 n159) -(edge n21 n160) -(edge n21 n163) -(edge n21 n165) -(edge n21 n176) -(edge n21 n178) -(edge n21 n183) -(edge n21 n195) -(edge n22 n23) -(edge n22 n30) -(edge n22 n43) -(edge n22 n47) -(edge n22 n48) -(edge n22 n49) -(edge n22 n57) -(edge n22 n58) -(edge n22 n59) -(edge n22 n61) -(edge n22 n62) -(edge n22 n78) -(edge n22 n87) -(edge n22 n96) -(edge n22 n104) -(edge n22 n107) -(edge n22 n111) -(edge n22 n113) -(edge n22 n115) -(edge n22 n124) -(edge n22 n126) -(edge n22 n127) -(edge n22 n129) -(edge n22 n132) -(edge n22 n142) -(edge n22 n152) -(edge n22 n169) -(edge n22 n174) -(edge n22 n178) -(edge n22 n181) -(edge n22 n185) -(edge n22 n190) -(edge n22 n191) -(edge n22 n196) -(edge n23 n25) -(edge n23 n26) -(edge n23 n31) -(edge n23 n40) -(edge n23 n44) -(edge n23 n47) -(edge n23 n53) -(edge n23 n55) -(edge n23 n57) -(edge n23 n60) -(edge n23 n64) -(edge n23 n78) -(edge n23 n81) -(edge n23 n108) -(edge n23 n112) -(edge n23 n115) -(edge n23 n120) -(edge n23 n125) -(edge n23 n126) -(edge n23 n130) -(edge n23 n137) -(edge n23 n140) -(edge n23 n144) -(edge n23 n150) -(edge n23 n161) -(edge n23 n162) -(edge n23 n163) -(edge n23 n165) -(edge n23 n169) -(edge n23 n188) -(edge n24 n28) -(edge n24 n39) -(edge n24 n45) -(edge n24 n47) -(edge n24 n48) -(edge n24 n56) -(edge n24 n58) -(edge n24 n60) -(edge n24 n63) -(edge n24 n68) -(edge n24 n71) -(edge n24 n76) -(edge n24 n86) -(edge n24 n93) -(edge n24 n94) -(edge n24 n95) -(edge n24 n98) -(edge n24 n100) -(edge n24 n104) -(edge n24 n105) -(edge n24 n111) -(edge n24 n121) -(edge n24 n123) -(edge n24 n127) -(edge n24 n135) -(edge n24 n139) -(edge n24 n151) -(edge n24 n155) -(edge n24 n165) -(edge n24 n172) -(edge n24 n175) -(edge n25 n48) -(edge n25 n54) -(edge n25 n66) -(edge n25 n72) -(edge n25 n79) -(edge n25 n83) -(edge n25 n84) -(edge n25 n92) -(edge n25 n93) -(edge n25 n99) -(edge n25 n110) -(edge n25 n114) -(edge n25 n115) -(edge n25 n116) -(edge n25 n118) -(edge n25 n121) -(edge n25 n132) -(edge n25 n143) -(edge n25 n144) -(edge n25 n148) -(edge n25 n152) -(edge n25 n156) -(edge n25 n157) -(edge n25 n158) -(edge n25 n159) -(edge n25 n164) -(edge n25 n169) -(edge n25 n173) -(edge n25 n185) -(edge n25 n187) -(edge n25 n189) -(edge n26 n35) -(edge n26 n38) -(edge n26 n46) -(edge n26 n47) -(edge n26 n55) -(edge n26 n62) -(edge n26 n66) -(edge n26 n67) -(edge n26 n70) -(edge n26 n78) -(edge n26 n79) -(edge n26 n85) -(edge n26 n90) -(edge n26 n99) -(edge n26 n108) -(edge n26 n112) -(edge n26 n119) -(edge n26 n128) -(edge n26 n134) -(edge n26 n137) -(edge n26 n140) -(edge n26 n154) -(edge n26 n159) -(edge n26 n165) -(edge n26 n169) -(edge n26 n170) -(edge n26 n177) -(edge n26 n192) -(edge n27 n29) -(edge n27 n32) -(edge n27 n35) -(edge n27 n50) -(edge n27 n53) -(edge n27 n58) -(edge n27 n62) -(edge n27 n63) -(edge n27 n70) -(edge n27 n71) -(edge n27 n77) -(edge n27 n80) -(edge n27 n82) -(edge n27 n83) -(edge n27 n84) -(edge n27 n86) -(edge n27 n90) -(edge n27 n99) -(edge n27 n110) -(edge n27 n113) -(edge n27 n116) -(edge n27 n117) -(edge n27 n128) -(edge n27 n142) -(edge n27 n145) -(edge n27 n151) -(edge n27 n169) -(edge n27 n171) -(edge n27 n193) -(edge n27 n197) -(edge n27 n199) -(edge n28 n39) -(edge n28 n43) -(edge n28 n47) -(edge n28 n49) -(edge n28 n55) -(edge n28 n70) -(edge n28 n72) -(edge n28 n73) -(edge n28 n77) -(edge n28 n84) -(edge n28 n100) -(edge n28 n106) -(edge n28 n110) -(edge n28 n124) -(edge n28 n129) -(edge n28 n134) -(edge n28 n136) -(edge n28 n152) -(edge n28 n159) -(edge n28 n164) -(edge n28 n172) -(edge n28 n182) -(edge n28 n193) -(edge n29 n32) -(edge n29 n37) -(edge n29 n40) -(edge n29 n43) -(edge n29 n47) -(edge n29 n53) -(edge n29 n54) -(edge n29 n62) -(edge n29 n64) -(edge n29 n69) -(edge n29 n72) -(edge n29 n76) -(edge n29 n82) -(edge n29 n83) -(edge n29 n86) -(edge n29 n87) -(edge n29 n88) -(edge n29 n90) -(edge n29 n95) -(edge n29 n97) -(edge n29 n106) -(edge n29 n108) -(edge n29 n110) -(edge n29 n114) -(edge n29 n117) -(edge n29 n121) -(edge n29 n131) -(edge n29 n151) -(edge n29 n153) -(edge n29 n160) -(edge n29 n162) -(edge n29 n166) -(edge n29 n178) -(edge n29 n181) -(edge n29 n183) -(edge n29 n186) -(edge n29 n188) -(edge n29 n197) -(edge n29 n198) -(edge n29 n199) -(edge n30 n42) -(edge n30 n43) -(edge n30 n53) -(edge n30 n54) -(edge n30 n64) -(edge n30 n68) -(edge n30 n72) -(edge n30 n76) -(edge n30 n79) -(edge n30 n81) -(edge n30 n85) -(edge n30 n90) -(edge n30 n93) -(edge n30 n94) -(edge n30 n95) -(edge n30 n96) -(edge n30 n98) -(edge n30 n103) -(edge n30 n115) -(edge n30 n116) -(edge n30 n118) -(edge n30 n135) -(edge n30 n136) -(edge n30 n141) -(edge n30 n154) -(edge n30 n156) -(edge n30 n162) -(edge n30 n166) -(edge n30 n180) -(edge n30 n181) -(edge n30 n188) -(edge n30 n189) -(edge n30 n197) -(edge n31 n61) -(edge n31 n78) -(edge n31 n80) -(edge n31 n83) -(edge n31 n86) -(edge n31 n94) -(edge n31 n96) -(edge n31 n97) -(edge n31 n104) -(edge n31 n119) -(edge n31 n122) -(edge n31 n124) -(edge n31 n128) -(edge n31 n135) -(edge n31 n138) -(edge n31 n149) -(edge n31 n154) -(edge n31 n160) -(edge n31 n162) -(edge n31 n167) -(edge n31 n170) -(edge n31 n177) -(edge n31 n183) -(edge n31 n184) -(edge n31 n188) -(edge n32 n38) -(edge n32 n39) -(edge n32 n47) -(edge n32 n75) -(edge n32 n81) -(edge n32 n83) -(edge n32 n89) -(edge n32 n93) -(edge n32 n112) -(edge n32 n115) -(edge n32 n116) -(edge n32 n119) -(edge n32 n122) -(edge n32 n128) -(edge n32 n130) -(edge n32 n134) -(edge n32 n136) -(edge n32 n138) -(edge n32 n152) -(edge n32 n164) -(edge n32 n166) -(edge n32 n167) -(edge n32 n174) -(edge n32 n175) -(edge n32 n185) -(edge n32 n188) -(edge n32 n197) -(edge n33 n35) -(edge n33 n37) -(edge n33 n38) -(edge n33 n40) -(edge n33 n41) -(edge n33 n59) -(edge n33 n79) -(edge n33 n82) -(edge n33 n92) -(edge n33 n96) -(edge n33 n97) -(edge n33 n101) -(edge n33 n108) -(edge n33 n117) -(edge n33 n123) -(edge n33 n134) -(edge n33 n140) -(edge n33 n145) -(edge n33 n155) -(edge n33 n157) -(edge n33 n162) -(edge n33 n164) -(edge n33 n166) -(edge n33 n183) -(edge n33 n188) -(edge n33 n189) -(edge n33 n196) -(edge n33 n198) -(edge n33 n199) -(edge n34 n38) -(edge n34 n40) -(edge n34 n46) -(edge n34 n53) -(edge n34 n60) -(edge n34 n68) -(edge n34 n69) -(edge n34 n75) -(edge n34 n76) -(edge n34 n89) -(edge n34 n95) -(edge n34 n96) -(edge n34 n104) -(edge n34 n108) -(edge n34 n110) -(edge n34 n111) -(edge n34 n116) -(edge n34 n129) -(edge n34 n134) -(edge n34 n143) -(edge n34 n148) -(edge n34 n156) -(edge n34 n175) -(edge n34 n179) -(edge n34 n184) -(edge n34 n199) -(edge n35 n45) -(edge n35 n46) -(edge n35 n51) -(edge n35 n58) -(edge n35 n62) -(edge n35 n63) -(edge n35 n70) -(edge n35 n76) -(edge n35 n78) -(edge n35 n80) -(edge n35 n93) -(edge n35 n102) -(edge n35 n103) -(edge n35 n112) -(edge n35 n114) -(edge n35 n117) -(edge n35 n124) -(edge n35 n125) -(edge n35 n130) -(edge n35 n131) -(edge n35 n134) -(edge n35 n137) -(edge n35 n139) -(edge n35 n141) -(edge n35 n143) -(edge n35 n153) -(edge n35 n156) -(edge n35 n164) -(edge n35 n167) -(edge n35 n169) -(edge n35 n182) -(edge n35 n190) -(edge n35 n198) -(edge n36 n45) -(edge n36 n47) -(edge n36 n52) -(edge n36 n75) -(edge n36 n80) -(edge n36 n83) -(edge n36 n90) -(edge n36 n94) -(edge n36 n96) -(edge n36 n103) -(edge n36 n107) -(edge n36 n109) -(edge n36 n122) -(edge n36 n128) -(edge n36 n137) -(edge n36 n139) -(edge n36 n153) -(edge n36 n158) -(edge n36 n161) -(edge n36 n164) -(edge n36 n165) -(edge n36 n167) -(edge n36 n168) -(edge n36 n172) -(edge n36 n174) -(edge n36 n176) -(edge n36 n195) -(edge n36 n197) -(edge n37 n41) -(edge n37 n48) -(edge n37 n55) -(edge n37 n59) -(edge n37 n65) -(edge n37 n66) -(edge n37 n72) -(edge n37 n78) -(edge n37 n82) -(edge n37 n83) -(edge n37 n86) -(edge n37 n93) -(edge n37 n98) -(edge n37 n102) -(edge n37 n104) -(edge n37 n105) -(edge n37 n109) -(edge n37 n116) -(edge n37 n119) -(edge n37 n120) -(edge n37 n122) -(edge n37 n123) -(edge n37 n140) -(edge n37 n141) -(edge n37 n149) -(edge n37 n154) -(edge n37 n160) -(edge n37 n169) -(edge n37 n170) -(edge n37 n173) -(edge n37 n183) -(edge n37 n185) -(edge n37 n195) -(edge n37 n197) -(edge n37 n199) -(edge n38 n40) -(edge n38 n44) -(edge n38 n47) -(edge n38 n49) -(edge n38 n52) -(edge n38 n61) -(edge n38 n66) -(edge n38 n68) -(edge n38 n72) -(edge n38 n78) -(edge n38 n80) -(edge n38 n91) -(edge n38 n92) -(edge n38 n98) -(edge n38 n100) -(edge n38 n102) -(edge n38 n104) -(edge n38 n116) -(edge n38 n119) -(edge n38 n127) -(edge n38 n134) -(edge n38 n137) -(edge n38 n144) -(edge n38 n147) -(edge n38 n149) -(edge n38 n150) -(edge n38 n154) -(edge n38 n161) -(edge n38 n167) -(edge n38 n177) -(edge n38 n178) -(edge n39 n55) -(edge n39 n61) -(edge n39 n62) -(edge n39 n63) -(edge n39 n64) -(edge n39 n79) -(edge n39 n87) -(edge n39 n90) -(edge n39 n109) -(edge n39 n115) -(edge n39 n117) -(edge n39 n121) -(edge n39 n128) -(edge n39 n135) -(edge n39 n143) -(edge n39 n149) -(edge n39 n152) -(edge n39 n155) -(edge n39 n182) -(edge n39 n183) -(edge n39 n186) -(edge n39 n197) -(edge n39 n198) -(edge n40 n43) -(edge n40 n45) -(edge n40 n49) -(edge n40 n55) -(edge n40 n59) -(edge n40 n67) -(edge n40 n69) -(edge n40 n82) -(edge n40 n87) -(edge n40 n99) -(edge n40 n103) -(edge n40 n108) -(edge n40 n117) -(edge n40 n118) -(edge n40 n129) -(edge n40 n135) -(edge n40 n151) -(edge n40 n163) -(edge n40 n173) -(edge n40 n175) -(edge n40 n179) -(edge n40 n181) -(edge n40 n182) -(edge n40 n183) -(edge n40 n188) -(edge n40 n193) -(edge n40 n195) -(edge n40 n197) -(edge n40 n199) -(edge n41 n54) -(edge n41 n58) -(edge n41 n59) -(edge n41 n61) -(edge n41 n70) -(edge n41 n74) -(edge n41 n75) -(edge n41 n83) -(edge n41 n90) -(edge n41 n95) -(edge n41 n105) -(edge n41 n111) -(edge n41 n112) -(edge n41 n116) -(edge n41 n121) -(edge n41 n127) -(edge n41 n129) -(edge n41 n130) -(edge n41 n135) -(edge n41 n141) -(edge n41 n155) -(edge n41 n166) -(edge n41 n171) -(edge n41 n177) -(edge n41 n182) -(edge n41 n186) -(edge n41 n190) -(edge n41 n191) -(edge n42 n46) -(edge n42 n51) -(edge n42 n58) -(edge n42 n69) -(edge n42 n72) -(edge n42 n74) -(edge n42 n78) -(edge n42 n97) -(edge n42 n99) -(edge n42 n108) -(edge n42 n127) -(edge n42 n138) -(edge n42 n143) -(edge n42 n150) -(edge n42 n155) -(edge n42 n156) -(edge n42 n157) -(edge n42 n162) -(edge n42 n171) -(edge n42 n176) -(edge n42 n177) -(edge n42 n182) -(edge n42 n194) -(edge n43 n54) -(edge n43 n68) -(edge n43 n73) -(edge n43 n74) -(edge n43 n87) -(edge n43 n92) -(edge n43 n96) -(edge n43 n117) -(edge n43 n118) -(edge n43 n121) -(edge n43 n125) -(edge n43 n126) -(edge n43 n136) -(edge n43 n137) -(edge n43 n138) -(edge n43 n168) -(edge n43 n169) -(edge n43 n174) -(edge n43 n175) -(edge n43 n187) -(edge n43 n188) -(edge n43 n194) -(edge n43 n196) -(edge n44 n50) -(edge n44 n56) -(edge n44 n60) -(edge n44 n62) -(edge n44 n63) -(edge n44 n65) -(edge n44 n66) -(edge n44 n68) -(edge n44 n69) -(edge n44 n74) -(edge n44 n75) -(edge n44 n80) -(edge n44 n89) -(edge n44 n96) -(edge n44 n98) -(edge n44 n100) -(edge n44 n101) -(edge n44 n104) -(edge n44 n106) -(edge n44 n110) -(edge n44 n115) -(edge n44 n129) -(edge n44 n139) -(edge n44 n145) -(edge n44 n151) -(edge n44 n161) -(edge n44 n162) -(edge n44 n179) -(edge n44 n191) -(edge n44 n194) -(edge n44 n195) -(edge n45 n46) -(edge n45 n50) -(edge n45 n52) -(edge n45 n56) -(edge n45 n58) -(edge n45 n60) -(edge n45 n62) -(edge n45 n63) -(edge n45 n65) -(edge n45 n73) -(edge n45 n78) -(edge n45 n83) -(edge n45 n84) -(edge n45 n102) -(edge n45 n103) -(edge n45 n125) -(edge n45 n128) -(edge n45 n132) -(edge n45 n144) -(edge n45 n147) -(edge n45 n151) -(edge n45 n159) -(edge n45 n174) -(edge n45 n176) -(edge n45 n185) -(edge n45 n191) -(edge n46 n52) -(edge n46 n75) -(edge n46 n80) -(edge n46 n84) -(edge n46 n85) -(edge n46 n88) -(edge n46 n93) -(edge n46 n99) -(edge n46 n100) -(edge n46 n109) -(edge n46 n114) -(edge n46 n115) -(edge n46 n124) -(edge n46 n126) -(edge n46 n132) -(edge n46 n133) -(edge n46 n142) -(edge n46 n146) -(edge n46 n161) -(edge n46 n166) -(edge n46 n168) -(edge n46 n185) -(edge n46 n192) -(edge n46 n197) -(edge n47 n48) -(edge n47 n53) -(edge n47 n56) -(edge n47 n60) -(edge n47 n61) -(edge n47 n67) -(edge n47 n69) -(edge n47 n75) -(edge n47 n80) -(edge n47 n81) -(edge n47 n84) -(edge n47 n87) -(edge n47 n91) -(edge n47 n92) -(edge n47 n94) -(edge n47 n97) -(edge n47 n105) -(edge n47 n108) -(edge n47 n114) -(edge n47 n120) -(edge n47 n133) -(edge n47 n149) -(edge n47 n150) -(edge n47 n171) -(edge n47 n176) -(edge n47 n193) -(edge n47 n195) -(edge n48 n53) -(edge n48 n63) -(edge n48 n67) -(edge n48 n71) -(edge n48 n73) -(edge n48 n82) -(edge n48 n92) -(edge n48 n97) -(edge n48 n101) -(edge n48 n103) -(edge n48 n106) -(edge n48 n108) -(edge n48 n109) -(edge n48 n113) -(edge n48 n118) -(edge n48 n121) -(edge n48 n129) -(edge n48 n132) -(edge n48 n135) -(edge n48 n137) -(edge n48 n147) -(edge n48 n148) -(edge n48 n160) -(edge n48 n174) -(edge n48 n176) -(edge n48 n178) -(edge n48 n179) -(edge n48 n186) -(edge n48 n190) -(edge n48 n192) -(edge n48 n193) -(edge n49 n51) -(edge n49 n52) -(edge n49 n55) -(edge n49 n58) -(edge n49 n65) -(edge n49 n70) -(edge n49 n77) -(edge n49 n81) -(edge n49 n91) -(edge n49 n97) -(edge n49 n100) -(edge n49 n110) -(edge n49 n114) -(edge n49 n116) -(edge n49 n120) -(edge n49 n121) -(edge n49 n128) -(edge n49 n135) -(edge n49 n147) -(edge n49 n149) -(edge n49 n151) -(edge n49 n159) -(edge n49 n160) -(edge n49 n170) -(edge n49 n174) -(edge n49 n179) -(edge n49 n183) -(edge n49 n187) -(edge n49 n191) -(edge n49 n193) -(edge n49 n199) -(edge n50 n61) -(edge n50 n65) -(edge n50 n73) -(edge n50 n79) -(edge n50 n100) -(edge n50 n102) -(edge n50 n116) -(edge n50 n119) -(edge n50 n127) -(edge n50 n137) -(edge n50 n138) -(edge n50 n146) -(edge n50 n150) -(edge n50 n153) -(edge n50 n160) -(edge n50 n161) -(edge n50 n163) -(edge n50 n166) -(edge n50 n188) -(edge n50 n189) -(edge n50 n193) -(edge n50 n194) -(edge n50 n198) -(edge n51 n54) -(edge n51 n57) -(edge n51 n59) -(edge n51 n66) -(edge n51 n68) -(edge n51 n70) -(edge n51 n71) -(edge n51 n76) -(edge n51 n90) -(edge n51 n91) -(edge n51 n99) -(edge n51 n100) -(edge n51 n103) -(edge n51 n104) -(edge n51 n110) -(edge n51 n126) -(edge n51 n127) -(edge n51 n129) -(edge n51 n138) -(edge n51 n140) -(edge n51 n142) -(edge n51 n143) -(edge n51 n146) -(edge n51 n149) -(edge n51 n153) -(edge n51 n165) -(edge n51 n166) -(edge n51 n168) -(edge n51 n174) -(edge n51 n180) -(edge n51 n185) -(edge n51 n195) -(edge n52 n53) -(edge n52 n57) -(edge n52 n59) -(edge n52 n61) -(edge n52 n62) -(edge n52 n63) -(edge n52 n84) -(edge n52 n91) -(edge n52 n97) -(edge n52 n98) -(edge n52 n105) -(edge n52 n111) -(edge n52 n127) -(edge n52 n130) -(edge n52 n141) -(edge n52 n147) -(edge n52 n153) -(edge n52 n162) -(edge n52 n173) -(edge n52 n174) -(edge n52 n175) -(edge n52 n176) -(edge n52 n192) -(edge n52 n194) -(edge n52 n195) -(edge n53 n54) -(edge n53 n68) -(edge n53 n69) -(edge n53 n76) -(edge n53 n97) -(edge n53 n98) -(edge n53 n101) -(edge n53 n105) -(edge n53 n107) -(edge n53 n109) -(edge n53 n115) -(edge n53 n122) -(edge n53 n124) -(edge n53 n125) -(edge n53 n147) -(edge n53 n150) -(edge n53 n154) -(edge n53 n161) -(edge n53 n163) -(edge n53 n166) -(edge n53 n170) -(edge n53 n174) -(edge n53 n180) -(edge n53 n182) -(edge n53 n185) -(edge n53 n186) -(edge n53 n188) -(edge n53 n191) -(edge n53 n199) -(edge n54 n57) -(edge n54 n80) -(edge n54 n87) -(edge n54 n90) -(edge n54 n91) -(edge n54 n106) -(edge n54 n107) -(edge n54 n108) -(edge n54 n109) -(edge n54 n110) -(edge n54 n113) -(edge n54 n115) -(edge n54 n132) -(edge n54 n135) -(edge n54 n154) -(edge n54 n155) -(edge n54 n167) -(edge n54 n174) -(edge n54 n177) -(edge n54 n184) -(edge n54 n189) -(edge n54 n193) -(edge n54 n198) -(edge n55 n73) -(edge n55 n74) -(edge n55 n81) -(edge n55 n85) -(edge n55 n90) -(edge n55 n95) -(edge n55 n98) -(edge n55 n108) -(edge n55 n110) -(edge n55 n112) -(edge n55 n118) -(edge n55 n119) -(edge n55 n129) -(edge n55 n139) -(edge n55 n140) -(edge n55 n146) -(edge n55 n152) -(edge n55 n160) -(edge n55 n171) -(edge n55 n175) -(edge n55 n183) -(edge n55 n186) -(edge n55 n187) -(edge n55 n189) -(edge n55 n194) -(edge n55 n197) -(edge n56 n59) -(edge n56 n62) -(edge n56 n71) -(edge n56 n77) -(edge n56 n78) -(edge n56 n79) -(edge n56 n81) -(edge n56 n83) -(edge n56 n84) -(edge n56 n91) -(edge n56 n103) -(edge n56 n109) -(edge n56 n113) -(edge n56 n126) -(edge n56 n128) -(edge n56 n146) -(edge n56 n150) -(edge n56 n153) -(edge n56 n160) -(edge n56 n161) -(edge n56 n184) -(edge n56 n186) -(edge n56 n193) -(edge n56 n196) -(edge n57 n60) -(edge n57 n69) -(edge n57 n79) -(edge n57 n80) -(edge n57 n82) -(edge n57 n87) -(edge n57 n96) -(edge n57 n97) -(edge n57 n99) -(edge n57 n106) -(edge n57 n109) -(edge n57 n114) -(edge n57 n118) -(edge n57 n131) -(edge n57 n135) -(edge n57 n136) -(edge n57 n142) -(edge n57 n162) -(edge n57 n167) -(edge n57 n172) -(edge n57 n173) -(edge n57 n179) -(edge n57 n184) -(edge n57 n191) -(edge n58 n60) -(edge n58 n62) -(edge n58 n65) -(edge n58 n74) -(edge n58 n83) -(edge n58 n85) -(edge n58 n92) -(edge n58 n95) -(edge n58 n98) -(edge n58 n107) -(edge n58 n113) -(edge n58 n127) -(edge n58 n128) -(edge n58 n144) -(edge n58 n156) -(edge n58 n158) -(edge n58 n159) -(edge n58 n162) -(edge n58 n166) -(edge n58 n167) -(edge n58 n169) -(edge n58 n176) -(edge n58 n183) -(edge n58 n193) -(edge n59 n62) -(edge n59 n68) -(edge n59 n82) -(edge n59 n84) -(edge n59 n104) -(edge n59 n107) -(edge n59 n116) -(edge n59 n117) -(edge n59 n118) -(edge n59 n121) -(edge n59 n122) -(edge n59 n124) -(edge n59 n129) -(edge n59 n130) -(edge n59 n133) -(edge n59 n139) -(edge n59 n140) -(edge n59 n141) -(edge n59 n151) -(edge n59 n152) -(edge n59 n156) -(edge n59 n158) -(edge n59 n159) -(edge n59 n163) -(edge n59 n170) -(edge n59 n173) -(edge n59 n180) -(edge n59 n186) -(edge n59 n188) -(edge n59 n191) -(edge n59 n192) -(edge n59 n194) -(edge n59 n196) -(edge n60 n61) -(edge n60 n62) -(edge n60 n67) -(edge n60 n70) -(edge n60 n71) -(edge n60 n77) -(edge n60 n83) -(edge n60 n90) -(edge n60 n103) -(edge n60 n109) -(edge n60 n112) -(edge n60 n120) -(edge n60 n128) -(edge n60 n130) -(edge n60 n146) -(edge n60 n157) -(edge n60 n163) -(edge n60 n164) -(edge n60 n168) -(edge n60 n173) -(edge n60 n174) -(edge n60 n179) -(edge n60 n182) -(edge n60 n188) -(edge n60 n198) -(edge n61 n68) -(edge n61 n72) -(edge n61 n86) -(edge n61 n92) -(edge n61 n94) -(edge n61 n98) -(edge n61 n113) -(edge n61 n114) -(edge n61 n131) -(edge n61 n138) -(edge n61 n145) -(edge n61 n147) -(edge n61 n149) -(edge n61 n152) -(edge n61 n153) -(edge n61 n162) -(edge n61 n170) -(edge n61 n176) -(edge n61 n177) -(edge n61 n179) -(edge n61 n193) -(edge n61 n199) -(edge n62 n66) -(edge n62 n70) -(edge n62 n71) -(edge n62 n73) -(edge n62 n82) -(edge n62 n97) -(edge n62 n100) -(edge n62 n113) -(edge n62 n117) -(edge n62 n120) -(edge n62 n128) -(edge n62 n143) -(edge n62 n151) -(edge n62 n153) -(edge n62 n163) -(edge n62 n168) -(edge n62 n172) -(edge n62 n180) -(edge n62 n185) -(edge n62 n195) -(edge n63 n64) -(edge n63 n73) -(edge n63 n78) -(edge n63 n85) -(edge n63 n93) -(edge n63 n94) -(edge n63 n96) -(edge n63 n103) -(edge n63 n105) -(edge n63 n111) -(edge n63 n117) -(edge n63 n118) -(edge n63 n119) -(edge n63 n144) -(edge n63 n161) -(edge n63 n163) -(edge n63 n168) -(edge n63 n170) -(edge n63 n171) -(edge n63 n175) -(edge n63 n179) -(edge n63 n180) -(edge n63 n183) -(edge n63 n184) -(edge n63 n190) -(edge n63 n192) -(edge n63 n193) -(edge n64 n65) -(edge n64 n67) -(edge n64 n77) -(edge n64 n82) -(edge n64 n89) -(edge n64 n101) -(edge n64 n108) -(edge n64 n113) -(edge n64 n121) -(edge n64 n125) -(edge n64 n131) -(edge n64 n137) -(edge n64 n144) -(edge n64 n149) -(edge n64 n150) -(edge n64 n151) -(edge n64 n152) -(edge n64 n155) -(edge n64 n156) -(edge n64 n164) -(edge n64 n177) -(edge n64 n180) -(edge n64 n184) -(edge n64 n185) -(edge n64 n191) -(edge n64 n195) -(edge n65 n75) -(edge n65 n77) -(edge n65 n80) -(edge n65 n87) -(edge n65 n101) -(edge n65 n102) -(edge n65 n105) -(edge n65 n117) -(edge n65 n123) -(edge n65 n124) -(edge n65 n126) -(edge n65 n135) -(edge n65 n137) -(edge n65 n141) -(edge n65 n147) -(edge n65 n150) -(edge n65 n157) -(edge n65 n162) -(edge n65 n163) -(edge n65 n165) -(edge n65 n169) -(edge n65 n172) -(edge n65 n177) -(edge n65 n185) -(edge n65 n188) -(edge n65 n193) -(edge n65 n195) -(edge n66 n67) -(edge n66 n69) -(edge n66 n72) -(edge n66 n79) -(edge n66 n80) -(edge n66 n83) -(edge n66 n86) -(edge n66 n109) -(edge n66 n117) -(edge n66 n126) -(edge n66 n127) -(edge n66 n133) -(edge n66 n134) -(edge n66 n140) -(edge n66 n146) -(edge n66 n147) -(edge n66 n148) -(edge n66 n168) -(edge n66 n170) -(edge n66 n188) -(edge n67 n69) -(edge n67 n74) -(edge n67 n75) -(edge n67 n80) -(edge n67 n82) -(edge n67 n97) -(edge n67 n102) -(edge n67 n103) -(edge n67 n105) -(edge n67 n109) -(edge n67 n115) -(edge n67 n116) -(edge n67 n121) -(edge n67 n125) -(edge n67 n127) -(edge n67 n128) -(edge n67 n133) -(edge n67 n134) -(edge n67 n145) -(edge n67 n148) -(edge n67 n152) -(edge n67 n155) -(edge n67 n157) -(edge n67 n172) -(edge n67 n176) -(edge n67 n181) -(edge n67 n193) -(edge n67 n195) -(edge n67 n197) -(edge n68 n72) -(edge n68 n95) -(edge n68 n112) -(edge n68 n121) -(edge n68 n128) -(edge n68 n142) -(edge n68 n144) -(edge n68 n155) -(edge n68 n157) -(edge n68 n159) -(edge n68 n164) -(edge n68 n165) -(edge n68 n174) -(edge n68 n175) -(edge n68 n189) -(edge n68 n197) -(edge n68 n199) -(edge n69 n71) -(edge n69 n72) -(edge n69 n77) -(edge n69 n81) -(edge n69 n83) -(edge n69 n85) -(edge n69 n89) -(edge n69 n93) -(edge n69 n103) -(edge n69 n120) -(edge n69 n136) -(edge n69 n139) -(edge n69 n144) -(edge n69 n148) -(edge n69 n152) -(edge n69 n158) -(edge n69 n163) -(edge n69 n165) -(edge n69 n173) -(edge n69 n174) -(edge n69 n178) -(edge n69 n187) -(edge n69 n195) -(edge n69 n198) -(edge n70 n74) -(edge n70 n75) -(edge n70 n78) -(edge n70 n79) -(edge n70 n93) -(edge n70 n94) -(edge n70 n104) -(edge n70 n106) -(edge n70 n113) -(edge n70 n115) -(edge n70 n119) -(edge n70 n122) -(edge n70 n123) -(edge n70 n132) -(edge n70 n134) -(edge n70 n137) -(edge n70 n139) -(edge n70 n140) -(edge n70 n142) -(edge n70 n148) -(edge n70 n152) -(edge n70 n170) -(edge n70 n181) -(edge n70 n182) -(edge n70 n187) -(edge n70 n193) -(edge n71 n86) -(edge n71 n89) -(edge n71 n95) -(edge n71 n104) -(edge n71 n105) -(edge n71 n106) -(edge n71 n107) -(edge n71 n108) -(edge n71 n110) -(edge n71 n112) -(edge n71 n113) -(edge n71 n117) -(edge n71 n124) -(edge n71 n132) -(edge n71 n134) -(edge n71 n146) -(edge n71 n155) -(edge n71 n156) -(edge n71 n160) -(edge n71 n175) -(edge n71 n184) -(edge n71 n186) -(edge n71 n193) -(edge n71 n194) -(edge n72 n80) -(edge n72 n82) -(edge n72 n91) -(edge n72 n101) -(edge n72 n102) -(edge n72 n108) -(edge n72 n110) -(edge n72 n115) -(edge n72 n120) -(edge n72 n130) -(edge n72 n134) -(edge n72 n136) -(edge n72 n137) -(edge n72 n141) -(edge n72 n142) -(edge n72 n148) -(edge n72 n151) -(edge n72 n152) -(edge n72 n183) -(edge n72 n185) -(edge n72 n198) -(edge n73 n77) -(edge n73 n81) -(edge n73 n82) -(edge n73 n86) -(edge n73 n87) -(edge n73 n97) -(edge n73 n100) -(edge n73 n122) -(edge n73 n129) -(edge n73 n130) -(edge n73 n135) -(edge n73 n136) -(edge n73 n144) -(edge n73 n148) -(edge n73 n151) -(edge n73 n168) -(edge n73 n176) -(edge n73 n179) -(edge n73 n180) -(edge n73 n182) -(edge n73 n189) -(edge n73 n193) -(edge n73 n196) -(edge n73 n198) -(edge n74 n79) -(edge n74 n80) -(edge n74 n82) -(edge n74 n91) -(edge n74 n93) -(edge n74 n98) -(edge n74 n99) -(edge n74 n101) -(edge n74 n103) -(edge n74 n118) -(edge n74 n124) -(edge n74 n125) -(edge n74 n126) -(edge n74 n136) -(edge n74 n153) -(edge n74 n157) -(edge n74 n170) -(edge n74 n172) -(edge n74 n174) -(edge n74 n175) -(edge n74 n176) -(edge n74 n180) -(edge n74 n187) -(edge n74 n191) -(edge n74 n194) -(edge n75 n86) -(edge n75 n91) -(edge n75 n93) -(edge n75 n101) -(edge n75 n111) -(edge n75 n113) -(edge n75 n114) -(edge n75 n116) -(edge n75 n125) -(edge n75 n136) -(edge n75 n137) -(edge n75 n142) -(edge n75 n147) -(edge n75 n163) -(edge n75 n164) -(edge n75 n176) -(edge n75 n177) -(edge n75 n193) -(edge n76 n80) -(edge n76 n82) -(edge n76 n89) -(edge n76 n90) -(edge n76 n102) -(edge n76 n108) -(edge n76 n120) -(edge n76 n127) -(edge n76 n131) -(edge n76 n138) -(edge n76 n142) -(edge n76 n147) -(edge n76 n151) -(edge n76 n157) -(edge n76 n165) -(edge n76 n168) -(edge n76 n169) -(edge n76 n177) -(edge n76 n182) -(edge n76 n189) -(edge n76 n191) -(edge n76 n194) -(edge n76 n195) -(edge n76 n197) -(edge n76 n198) -(edge n76 n199) -(edge n77 n83) -(edge n77 n85) -(edge n77 n86) -(edge n77 n89) -(edge n77 n96) -(edge n77 n109) -(edge n77 n123) -(edge n77 n126) -(edge n77 n129) -(edge n77 n132) -(edge n77 n134) -(edge n77 n135) -(edge n77 n140) -(edge n77 n144) -(edge n77 n145) -(edge n77 n156) -(edge n77 n174) -(edge n77 n177) -(edge n77 n179) -(edge n77 n180) -(edge n77 n191) -(edge n77 n194) -(edge n77 n198) -(edge n78 n101) -(edge n78 n103) -(edge n78 n110) -(edge n78 n111) -(edge n78 n119) -(edge n78 n127) -(edge n78 n143) -(edge n78 n149) -(edge n78 n156) -(edge n78 n160) -(edge n78 n167) -(edge n78 n175) -(edge n78 n179) -(edge n78 n185) -(edge n78 n187) -(edge n78 n188) -(edge n78 n198) -(edge n78 n199) -(edge n79 n84) -(edge n79 n97) -(edge n79 n104) -(edge n79 n111) -(edge n79 n123) -(edge n79 n126) -(edge n79 n138) -(edge n79 n141) -(edge n79 n143) -(edge n79 n144) -(edge n79 n169) -(edge n79 n170) -(edge n79 n184) -(edge n79 n186) -(edge n79 n187) -(edge n79 n188) -(edge n79 n192) -(edge n79 n194) -(edge n80 n87) -(edge n80 n101) -(edge n80 n109) -(edge n80 n112) -(edge n80 n117) -(edge n80 n118) -(edge n80 n120) -(edge n80 n131) -(edge n80 n132) -(edge n80 n148) -(edge n80 n160) -(edge n80 n165) -(edge n80 n173) -(edge n80 n178) -(edge n80 n192) -(edge n80 n199) -(edge n81 n83) -(edge n81 n89) -(edge n81 n91) -(edge n81 n93) -(edge n81 n97) -(edge n81 n114) -(edge n81 n117) -(edge n81 n119) -(edge n81 n121) -(edge n81 n126) -(edge n81 n129) -(edge n81 n136) -(edge n81 n139) -(edge n81 n140) -(edge n81 n142) -(edge n81 n146) -(edge n81 n151) -(edge n81 n162) -(edge n81 n177) -(edge n81 n178) -(edge n81 n181) -(edge n81 n182) -(edge n81 n186) -(edge n81 n189) -(edge n82 n85) -(edge n82 n88) -(edge n82 n96) -(edge n82 n98) -(edge n82 n103) -(edge n82 n104) -(edge n82 n105) -(edge n82 n118) -(edge n82 n126) -(edge n82 n129) -(edge n82 n133) -(edge n82 n141) -(edge n82 n152) -(edge n82 n153) -(edge n82 n156) -(edge n82 n160) -(edge n82 n162) -(edge n82 n165) -(edge n82 n182) -(edge n82 n193) -(edge n82 n198) -(edge n83 n85) -(edge n83 n89) -(edge n83 n101) -(edge n83 n109) -(edge n83 n111) -(edge n83 n114) -(edge n83 n119) -(edge n83 n158) -(edge n83 n169) -(edge n83 n172) -(edge n83 n173) -(edge n83 n179) -(edge n83 n199) -(edge n84 n91) -(edge n84 n92) -(edge n84 n106) -(edge n84 n112) -(edge n84 n118) -(edge n84 n132) -(edge n84 n140) -(edge n84 n142) -(edge n84 n147) -(edge n84 n149) -(edge n84 n157) -(edge n84 n175) -(edge n84 n176) -(edge n84 n177) -(edge n84 n182) -(edge n84 n184) -(edge n84 n187) -(edge n84 n195) -(edge n84 n198) -(edge n85 n86) -(edge n85 n87) -(edge n85 n89) -(edge n85 n101) -(edge n85 n104) -(edge n85 n114) -(edge n85 n116) -(edge n85 n117) -(edge n85 n131) -(edge n85 n134) -(edge n85 n135) -(edge n85 n136) -(edge n85 n141) -(edge n85 n143) -(edge n85 n149) -(edge n85 n151) -(edge n85 n152) -(edge n85 n158) -(edge n85 n160) -(edge n85 n163) -(edge n85 n168) -(edge n85 n170) -(edge n85 n178) -(edge n85 n182) -(edge n85 n187) -(edge n85 n191) -(edge n85 n197) -(edge n85 n199) -(edge n86 n87) -(edge n86 n92) -(edge n86 n99) -(edge n86 n100) -(edge n86 n102) -(edge n86 n109) -(edge n86 n115) -(edge n86 n117) -(edge n86 n118) -(edge n86 n122) -(edge n86 n125) -(edge n86 n129) -(edge n86 n139) -(edge n86 n141) -(edge n86 n157) -(edge n86 n159) -(edge n86 n162) -(edge n86 n166) -(edge n86 n176) -(edge n87 n90) -(edge n87 n106) -(edge n87 n110) -(edge n87 n111) -(edge n87 n119) -(edge n87 n125) -(edge n87 n127) -(edge n87 n131) -(edge n87 n133) -(edge n87 n144) -(edge n87 n145) -(edge n87 n147) -(edge n87 n149) -(edge n87 n152) -(edge n87 n162) -(edge n87 n165) -(edge n87 n172) -(edge n87 n175) -(edge n87 n178) -(edge n87 n183) -(edge n87 n184) -(edge n87 n187) -(edge n87 n192) -(edge n88 n97) -(edge n88 n98) -(edge n88 n99) -(edge n88 n108) -(edge n88 n114) -(edge n88 n128) -(edge n88 n129) -(edge n88 n135) -(edge n88 n139) -(edge n88 n146) -(edge n88 n155) -(edge n88 n164) -(edge n88 n167) -(edge n88 n170) -(edge n88 n174) -(edge n88 n176) -(edge n88 n177) -(edge n88 n191) -(edge n88 n197) -(edge n89 n90) -(edge n89 n104) -(edge n89 n105) -(edge n89 n106) -(edge n89 n116) -(edge n89 n127) -(edge n89 n128) -(edge n89 n134) -(edge n89 n142) -(edge n89 n144) -(edge n89 n162) -(edge n89 n163) -(edge n89 n164) -(edge n89 n169) -(edge n89 n171) -(edge n89 n172) -(edge n89 n188) -(edge n90 n92) -(edge n90 n96) -(edge n90 n108) -(edge n90 n112) -(edge n90 n133) -(edge n90 n134) -(edge n90 n141) -(edge n90 n143) -(edge n90 n147) -(edge n90 n156) -(edge n90 n162) -(edge n90 n167) -(edge n90 n170) -(edge n90 n172) -(edge n90 n174) -(edge n90 n179) -(edge n90 n180) -(edge n90 n182) -(edge n90 n192) -(edge n90 n195) -(edge n91 n92) -(edge n91 n109) -(edge n91 n112) -(edge n91 n117) -(edge n91 n118) -(edge n91 n121) -(edge n91 n122) -(edge n91 n123) -(edge n91 n124) -(edge n91 n125) -(edge n91 n127) -(edge n91 n154) -(edge n91 n170) -(edge n91 n176) -(edge n91 n188) -(edge n91 n193) -(edge n91 n195) -(edge n91 n199) -(edge n92 n93) -(edge n92 n107) -(edge n92 n115) -(edge n92 n125) -(edge n92 n131) -(edge n92 n138) -(edge n92 n140) -(edge n92 n142) -(edge n92 n148) -(edge n92 n155) -(edge n92 n156) -(edge n92 n157) -(edge n92 n172) -(edge n92 n178) -(edge n92 n182) -(edge n92 n190) -(edge n93 n96) -(edge n93 n97) -(edge n93 n106) -(edge n93 n107) -(edge n93 n115) -(edge n93 n119) -(edge n93 n128) -(edge n93 n129) -(edge n93 n132) -(edge n93 n133) -(edge n93 n135) -(edge n93 n142) -(edge n93 n144) -(edge n93 n145) -(edge n93 n147) -(edge n93 n148) -(edge n93 n150) -(edge n93 n151) -(edge n93 n162) -(edge n93 n166) -(edge n93 n174) -(edge n93 n176) -(edge n93 n185) -(edge n93 n193) -(edge n94 n102) -(edge n94 n103) -(edge n94 n106) -(edge n94 n119) -(edge n94 n131) -(edge n94 n132) -(edge n94 n135) -(edge n94 n136) -(edge n94 n151) -(edge n94 n154) -(edge n94 n162) -(edge n94 n167) -(edge n94 n174) -(edge n94 n176) -(edge n94 n177) -(edge n94 n189) -(edge n94 n191) -(edge n94 n192) -(edge n95 n96) -(edge n95 n103) -(edge n95 n109) -(edge n95 n110) -(edge n95 n111) -(edge n95 n113) -(edge n95 n117) -(edge n95 n123) -(edge n95 n125) -(edge n95 n135) -(edge n95 n137) -(edge n95 n138) -(edge n95 n146) -(edge n95 n155) -(edge n95 n165) -(edge n95 n167) -(edge n95 n173) -(edge n95 n189) -(edge n95 n190) -(edge n95 n198) -(edge n96 n100) -(edge n96 n102) -(edge n96 n107) -(edge n96 n118) -(edge n96 n129) -(edge n96 n142) -(edge n96 n143) -(edge n96 n164) -(edge n96 n179) -(edge n96 n180) -(edge n96 n194) -(edge n96 n199) -(edge n97 n105) -(edge n97 n107) -(edge n97 n110) -(edge n97 n112) -(edge n97 n118) -(edge n97 n126) -(edge n97 n158) -(edge n97 n159) -(edge n97 n166) -(edge n97 n175) -(edge n97 n187) -(edge n97 n189) -(edge n97 n192) -(edge n98 n104) -(edge n98 n112) -(edge n98 n120) -(edge n98 n121) -(edge n98 n124) -(edge n98 n150) -(edge n98 n151) -(edge n98 n152) -(edge n98 n153) -(edge n98 n154) -(edge n98 n157) -(edge n98 n158) -(edge n98 n163) -(edge n98 n175) -(edge n98 n176) -(edge n98 n188) -(edge n98 n192) -(edge n98 n194) -(edge n99 n106) -(edge n99 n107) -(edge n99 n110) -(edge n99 n111) -(edge n99 n112) -(edge n99 n128) -(edge n99 n129) -(edge n99 n137) -(edge n99 n140) -(edge n99 n141) -(edge n99 n142) -(edge n99 n148) -(edge n99 n150) -(edge n99 n153) -(edge n99 n155) -(edge n99 n160) -(edge n99 n179) -(edge n100 n101) -(edge n100 n108) -(edge n100 n111) -(edge n100 n115) -(edge n100 n117) -(edge n100 n120) -(edge n100 n123) -(edge n100 n124) -(edge n100 n127) -(edge n100 n132) -(edge n100 n134) -(edge n100 n140) -(edge n100 n150) -(edge n100 n151) -(edge n100 n152) -(edge n100 n155) -(edge n100 n167) -(edge n100 n171) -(edge n100 n181) -(edge n100 n183) -(edge n100 n185) -(edge n100 n186) -(edge n100 n189) -(edge n100 n192) -(edge n100 n198) -(edge n101 n121) -(edge n101 n123) -(edge n101 n129) -(edge n101 n147) -(edge n101 n148) -(edge n101 n157) -(edge n101 n159) -(edge n101 n162) -(edge n101 n175) -(edge n101 n179) -(edge n101 n183) -(edge n101 n191) -(edge n101 n192) -(edge n102 n105) -(edge n102 n106) -(edge n102 n109) -(edge n102 n112) -(edge n102 n115) -(edge n102 n120) -(edge n102 n126) -(edge n102 n129) -(edge n102 n130) -(edge n102 n132) -(edge n102 n142) -(edge n102 n151) -(edge n102 n153) -(edge n102 n156) -(edge n102 n159) -(edge n102 n164) -(edge n102 n170) -(edge n102 n174) -(edge n102 n175) -(edge n102 n177) -(edge n102 n178) -(edge n102 n183) -(edge n102 n184) -(edge n102 n185) -(edge n102 n187) -(edge n102 n194) -(edge n103 n105) -(edge n103 n110) -(edge n103 n116) -(edge n103 n122) -(edge n103 n126) -(edge n103 n134) -(edge n103 n139) -(edge n103 n150) -(edge n103 n159) -(edge n103 n163) -(edge n103 n167) -(edge n103 n179) -(edge n103 n184) -(edge n103 n185) -(edge n103 n187) -(edge n104 n109) -(edge n104 n112) -(edge n104 n126) -(edge n104 n129) -(edge n104 n130) -(edge n104 n132) -(edge n104 n133) -(edge n104 n142) -(edge n104 n156) -(edge n104 n169) -(edge n104 n171) -(edge n104 n184) -(edge n104 n185) -(edge n104 n186) -(edge n104 n194) -(edge n104 n197) -(edge n105 n106) -(edge n105 n108) -(edge n105 n109) -(edge n105 n112) -(edge n105 n116) -(edge n105 n117) -(edge n105 n124) -(edge n105 n127) -(edge n105 n134) -(edge n105 n141) -(edge n105 n147) -(edge n105 n154) -(edge n105 n156) -(edge n105 n157) -(edge n105 n158) -(edge n105 n160) -(edge n105 n163) -(edge n105 n169) -(edge n105 n180) -(edge n105 n195) -(edge n105 n199) -(edge n106 n116) -(edge n106 n122) -(edge n106 n123) -(edge n106 n126) -(edge n106 n127) -(edge n106 n135) -(edge n106 n136) -(edge n106 n138) -(edge n106 n144) -(edge n106 n157) -(edge n106 n158) -(edge n106 n167) -(edge n106 n171) -(edge n106 n173) -(edge n106 n186) -(edge n106 n188) -(edge n106 n190) -(edge n106 n191) -(edge n106 n197) -(edge n107 n108) -(edge n107 n119) -(edge n107 n120) -(edge n107 n125) -(edge n107 n135) -(edge n107 n140) -(edge n107 n141) -(edge n107 n144) -(edge n107 n145) -(edge n107 n156) -(edge n107 n161) -(edge n107 n167) -(edge n107 n176) -(edge n107 n179) -(edge n107 n181) -(edge n107 n190) -(edge n107 n191) -(edge n107 n195) -(edge n107 n196) -(edge n108 n118) -(edge n108 n134) -(edge n108 n135) -(edge n108 n142) -(edge n108 n147) -(edge n108 n159) -(edge n108 n162) -(edge n108 n167) -(edge n108 n180) -(edge n108 n181) -(edge n108 n188) -(edge n108 n191) -(edge n108 n194) -(edge n108 n195) -(edge n108 n198) -(edge n109 n118) -(edge n109 n119) -(edge n109 n121) -(edge n109 n127) -(edge n109 n131) -(edge n109 n138) -(edge n109 n146) -(edge n109 n148) -(edge n109 n149) -(edge n109 n153) -(edge n109 n157) -(edge n109 n162) -(edge n109 n163) -(edge n109 n164) -(edge n109 n178) -(edge n109 n182) -(edge n109 n183) -(edge n109 n188) -(edge n109 n190) -(edge n110 n113) -(edge n110 n117) -(edge n110 n121) -(edge n110 n122) -(edge n110 n126) -(edge n110 n129) -(edge n110 n130) -(edge n110 n137) -(edge n110 n140) -(edge n110 n145) -(edge n110 n156) -(edge n110 n160) -(edge n110 n163) -(edge n110 n166) -(edge n110 n171) -(edge n110 n172) -(edge n110 n174) -(edge n111 n112) -(edge n111 n115) -(edge n111 n123) -(edge n111 n125) -(edge n111 n128) -(edge n111 n139) -(edge n111 n140) -(edge n111 n141) -(edge n111 n142) -(edge n111 n143) -(edge n111 n159) -(edge n111 n166) -(edge n111 n175) -(edge n111 n179) -(edge n111 n185) -(edge n111 n187) -(edge n111 n199) -(edge n112 n116) -(edge n112 n140) -(edge n112 n145) -(edge n112 n169) -(edge n112 n184) -(edge n112 n197) -(edge n113 n125) -(edge n113 n128) -(edge n113 n131) -(edge n113 n133) -(edge n113 n135) -(edge n113 n137) -(edge n113 n142) -(edge n113 n144) -(edge n113 n156) -(edge n113 n173) -(edge n113 n175) -(edge n113 n178) -(edge n113 n179) -(edge n113 n186) -(edge n113 n193) -(edge n113 n194) -(edge n113 n196) -(edge n114 n116) -(edge n114 n120) -(edge n114 n125) -(edge n114 n131) -(edge n114 n132) -(edge n114 n141) -(edge n114 n151) -(edge n114 n153) -(edge n114 n174) -(edge n114 n176) -(edge n114 n179) -(edge n114 n187) -(edge n114 n188) -(edge n114 n193) -(edge n115 n118) -(edge n115 n127) -(edge n115 n143) -(edge n115 n144) -(edge n115 n145) -(edge n115 n146) -(edge n115 n151) -(edge n115 n157) -(edge n115 n158) -(edge n115 n163) -(edge n115 n168) -(edge n115 n179) -(edge n115 n184) -(edge n115 n186) -(edge n115 n194) -(edge n116 n124) -(edge n116 n131) -(edge n116 n133) -(edge n116 n136) -(edge n116 n142) -(edge n116 n145) -(edge n116 n146) -(edge n116 n147) -(edge n116 n149) -(edge n116 n152) -(edge n116 n154) -(edge n116 n156) -(edge n116 n157) -(edge n116 n162) -(edge n116 n164) -(edge n116 n172) -(edge n116 n173) -(edge n116 n174) -(edge n116 n181) -(edge n116 n189) -(edge n117 n132) -(edge n117 n134) -(edge n117 n141) -(edge n117 n143) -(edge n117 n144) -(edge n117 n148) -(edge n117 n167) -(edge n117 n168) -(edge n117 n169) -(edge n117 n172) -(edge n117 n181) -(edge n117 n185) -(edge n117 n190) -(edge n117 n199) -(edge n118 n123) -(edge n118 n126) -(edge n118 n132) -(edge n118 n133) -(edge n118 n134) -(edge n118 n141) -(edge n118 n147) -(edge n118 n157) -(edge n118 n161) -(edge n118 n167) -(edge n118 n168) -(edge n118 n176) -(edge n118 n180) -(edge n118 n188) -(edge n118 n197) -(edge n119 n121) -(edge n119 n122) -(edge n119 n127) -(edge n119 n133) -(edge n119 n138) -(edge n119 n142) -(edge n119 n146) -(edge n119 n164) -(edge n119 n166) -(edge n119 n173) -(edge n119 n177) -(edge n119 n182) -(edge n119 n190) -(edge n119 n191) -(edge n119 n194) -(edge n119 n195) -(edge n120 n123) -(edge n120 n134) -(edge n120 n135) -(edge n120 n138) -(edge n120 n146) -(edge n120 n152) -(edge n120 n153) -(edge n120 n163) -(edge n120 n183) -(edge n120 n196) -(edge n120 n198) -(edge n121 n126) -(edge n121 n128) -(edge n121 n129) -(edge n121 n131) -(edge n121 n134) -(edge n121 n137) -(edge n121 n138) -(edge n121 n141) -(edge n121 n143) -(edge n121 n147) -(edge n121 n152) -(edge n121 n155) -(edge n121 n156) -(edge n121 n165) -(edge n121 n167) -(edge n121 n169) -(edge n121 n171) -(edge n121 n184) -(edge n121 n190) -(edge n122 n126) -(edge n122 n135) -(edge n122 n140) -(edge n122 n152) -(edge n122 n156) -(edge n122 n159) -(edge n122 n161) -(edge n122 n180) -(edge n122 n184) -(edge n122 n189) -(edge n122 n196) -(edge n123 n134) -(edge n123 n136) -(edge n123 n139) -(edge n123 n161) -(edge n123 n173) -(edge n123 n176) -(edge n123 n179) -(edge n123 n182) -(edge n123 n186) -(edge n124 n129) -(edge n124 n131) -(edge n124 n136) -(edge n124 n138) -(edge n124 n140) -(edge n124 n142) -(edge n124 n144) -(edge n124 n145) -(edge n124 n156) -(edge n124 n157) -(edge n124 n162) -(edge n124 n171) -(edge n124 n172) -(edge n124 n176) -(edge n124 n181) -(edge n124 n185) -(edge n124 n191) -(edge n124 n193) -(edge n124 n194) -(edge n125 n141) -(edge n125 n143) -(edge n125 n150) -(edge n125 n152) -(edge n125 n156) -(edge n125 n158) -(edge n125 n169) -(edge n125 n174) -(edge n125 n180) -(edge n125 n181) -(edge n125 n185) -(edge n125 n188) -(edge n125 n189) -(edge n125 n196) -(edge n126 n127) -(edge n126 n129) -(edge n126 n130) -(edge n126 n132) -(edge n126 n135) -(edge n126 n140) -(edge n126 n152) -(edge n126 n160) -(edge n126 n163) -(edge n126 n166) -(edge n126 n169) -(edge n126 n173) -(edge n126 n174) -(edge n126 n175) -(edge n126 n184) -(edge n126 n185) -(edge n126 n191) -(edge n126 n194) -(edge n126 n195) -(edge n126 n199) -(edge n127 n128) -(edge n127 n153) -(edge n127 n168) -(edge n127 n179) -(edge n127 n180) -(edge n127 n186) -(edge n127 n187) -(edge n127 n193) -(edge n128 n138) -(edge n128 n147) -(edge n128 n158) -(edge n128 n161) -(edge n128 n170) -(edge n128 n176) -(edge n128 n182) -(edge n128 n184) -(edge n128 n185) -(edge n128 n192) -(edge n128 n193) -(edge n128 n195) -(edge n129 n136) -(edge n129 n138) -(edge n129 n141) -(edge n129 n143) -(edge n129 n155) -(edge n129 n158) -(edge n129 n159) -(edge n129 n160) -(edge n129 n165) -(edge n129 n187) -(edge n129 n193) -(edge n130 n137) -(edge n130 n148) -(edge n130 n149) -(edge n130 n164) -(edge n130 n165) -(edge n130 n166) -(edge n130 n167) -(edge n130 n168) -(edge n130 n169) -(edge n130 n175) -(edge n130 n177) -(edge n130 n183) -(edge n130 n187) -(edge n131 n136) -(edge n131 n140) -(edge n131 n143) -(edge n131 n144) -(edge n131 n145) -(edge n131 n146) -(edge n131 n152) -(edge n131 n159) -(edge n131 n160) -(edge n131 n183) -(edge n131 n185) -(edge n131 n191) -(edge n131 n192) -(edge n131 n197) -(edge n132 n136) -(edge n132 n139) -(edge n132 n144) -(edge n132 n149) -(edge n132 n155) -(edge n132 n160) -(edge n132 n161) -(edge n132 n163) -(edge n132 n166) -(edge n132 n167) -(edge n132 n174) -(edge n132 n178) -(edge n132 n185) -(edge n132 n195) -(edge n133 n139) -(edge n133 n143) -(edge n133 n146) -(edge n133 n147) -(edge n133 n166) -(edge n133 n171) -(edge n133 n174) -(edge n133 n194) -(edge n133 n196) -(edge n134 n144) -(edge n134 n146) -(edge n134 n148) -(edge n134 n153) -(edge n134 n165) -(edge n134 n167) -(edge n134 n170) -(edge n134 n181) -(edge n134 n182) -(edge n134 n183) -(edge n134 n189) -(edge n134 n190) -(edge n134 n191) -(edge n134 n193) -(edge n134 n195) -(edge n135 n141) -(edge n135 n148) -(edge n135 n152) -(edge n135 n158) -(edge n135 n159) -(edge n135 n178) -(edge n135 n180) -(edge n135 n181) -(edge n135 n185) -(edge n135 n194) -(edge n135 n195) -(edge n135 n198) -(edge n136 n140) -(edge n136 n144) -(edge n136 n159) -(edge n136 n160) -(edge n136 n163) -(edge n136 n167) -(edge n136 n171) -(edge n136 n177) -(edge n136 n181) -(edge n136 n183) -(edge n136 n184) -(edge n136 n188) -(edge n136 n190) -(edge n136 n191) -(edge n136 n195) -(edge n136 n196) -(edge n136 n197) -(edge n137 n139) -(edge n137 n141) -(edge n137 n145) -(edge n137 n146) -(edge n137 n149) -(edge n137 n161) -(edge n137 n164) -(edge n137 n177) -(edge n137 n180) -(edge n137 n182) -(edge n137 n183) -(edge n137 n186) -(edge n137 n187) -(edge n137 n195) -(edge n138 n142) -(edge n138 n148) -(edge n138 n153) -(edge n138 n161) -(edge n138 n167) -(edge n138 n175) -(edge n138 n176) -(edge n138 n179) -(edge n138 n180) -(edge n138 n187) -(edge n138 n193) -(edge n138 n197) -(edge n138 n198) -(edge n139 n151) -(edge n139 n162) -(edge n139 n178) -(edge n139 n180) -(edge n139 n187) -(edge n139 n188) -(edge n139 n189) -(edge n139 n192) -(edge n139 n195) -(edge n139 n199) -(edge n140 n141) -(edge n140 n162) -(edge n140 n173) -(edge n140 n176) -(edge n140 n181) -(edge n140 n187) -(edge n141 n156) -(edge n141 n157) -(edge n141 n164) -(edge n141 n165) -(edge n141 n180) -(edge n141 n187) -(edge n141 n190) -(edge n141 n192) -(edge n141 n194) -(edge n141 n199) -(edge n142 n144) -(edge n142 n153) -(edge n142 n155) -(edge n142 n167) -(edge n142 n172) -(edge n142 n179) -(edge n142 n184) -(edge n142 n185) -(edge n142 n189) -(edge n142 n196) -(edge n142 n197) -(edge n143 n148) -(edge n143 n156) -(edge n143 n161) -(edge n143 n180) -(edge n143 n183) -(edge n143 n189) -(edge n144 n145) -(edge n144 n159) -(edge n144 n175) -(edge n144 n182) -(edge n144 n188) -(edge n144 n193) -(edge n144 n194) -(edge n145 n150) -(edge n145 n153) -(edge n145 n155) -(edge n145 n161) -(edge n145 n162) -(edge n145 n163) -(edge n145 n166) -(edge n145 n168) -(edge n145 n171) -(edge n145 n173) -(edge n145 n180) -(edge n145 n182) -(edge n145 n185) -(edge n145 n190) -(edge n145 n197) -(edge n146 n153) -(edge n146 n154) -(edge n146 n158) -(edge n146 n161) -(edge n146 n162) -(edge n146 n171) -(edge n146 n172) -(edge n146 n185) -(edge n146 n186) -(edge n146 n187) -(edge n146 n198) -(edge n147 n153) -(edge n147 n163) -(edge n147 n164) -(edge n147 n167) -(edge n147 n170) -(edge n147 n172) -(edge n147 n175) -(edge n147 n181) -(edge n147 n190) -(edge n148 n151) -(edge n148 n154) -(edge n148 n161) -(edge n148 n166) -(edge n148 n170) -(edge n148 n176) -(edge n148 n179) -(edge n148 n185) -(edge n148 n188) -(edge n148 n191) -(edge n148 n192) -(edge n148 n198) -(edge n149 n155) -(edge n149 n172) -(edge n149 n174) -(edge n149 n178) -(edge n149 n187) -(edge n149 n188) -(edge n149 n196) -(edge n150 n152) -(edge n150 n157) -(edge n150 n158) -(edge n150 n170) -(edge n150 n172) -(edge n150 n183) -(edge n151 n152) -(edge n151 n153) -(edge n151 n160) -(edge n151 n163) -(edge n151 n174) -(edge n151 n184) -(edge n151 n189) -(edge n152 n155) -(edge n152 n160) -(edge n152 n161) -(edge n152 n166) -(edge n152 n170) -(edge n152 n176) -(edge n152 n185) -(edge n152 n192) -(edge n152 n193) -(edge n152 n195) -(edge n153 n155) -(edge n153 n157) -(edge n153 n161) -(edge n153 n162) -(edge n153 n165) -(edge n153 n170) -(edge n153 n171) -(edge n153 n183) -(edge n153 n189) -(edge n153 n197) -(edge n154 n163) -(edge n154 n165) -(edge n154 n185) -(edge n154 n192) -(edge n154 n193) -(edge n154 n195) -(edge n154 n197) -(edge n155 n162) -(edge n155 n165) -(edge n155 n166) -(edge n155 n171) -(edge n155 n172) -(edge n155 n185) -(edge n155 n193) -(edge n155 n199) -(edge n156 n157) -(edge n156 n159) -(edge n156 n173) -(edge n156 n184) -(edge n156 n188) -(edge n156 n190) -(edge n156 n194) -(edge n156 n195) -(edge n156 n197) -(edge n157 n160) -(edge n157 n167) -(edge n157 n172) -(edge n157 n174) -(edge n157 n175) -(edge n157 n179) -(edge n157 n185) -(edge n157 n189) -(edge n157 n190) -(edge n157 n194) -(edge n157 n199) -(edge n158 n164) -(edge n158 n165) -(edge n158 n168) -(edge n158 n174) -(edge n158 n180) -(edge n158 n181) -(edge n158 n182) -(edge n158 n183) -(edge n159 n161) -(edge n159 n163) -(edge n159 n165) -(edge n159 n172) -(edge n159 n177) -(edge n159 n181) -(edge n159 n186) -(edge n159 n187) -(edge n160 n168) -(edge n160 n171) -(edge n160 n184) -(edge n160 n192) -(edge n160 n197) -(edge n161 n177) -(edge n161 n183) -(edge n161 n196) -(edge n162 n163) -(edge n162 n164) -(edge n162 n168) -(edge n162 n175) -(edge n162 n177) -(edge n162 n181) -(edge n162 n183) -(edge n162 n188) -(edge n162 n189) -(edge n162 n192) -(edge n162 n195) -(edge n162 n196) -(edge n163 n164) -(edge n163 n172) -(edge n163 n174) -(edge n163 n179) -(edge n163 n185) -(edge n163 n199) -(edge n164 n173) -(edge n164 n185) -(edge n164 n194) -(edge n164 n198) -(edge n165 n170) -(edge n165 n180) -(edge n165 n190) -(edge n165 n195) -(edge n165 n196) -(edge n165 n199) -(edge n166 n168) -(edge n166 n175) -(edge n166 n184) -(edge n166 n196) -(edge n167 n172) -(edge n167 n189) -(edge n167 n192) -(edge n167 n193) -(edge n168 n177) -(edge n168 n182) -(edge n168 n195) -(edge n169 n170) -(edge n169 n171) -(edge n169 n178) -(edge n169 n179) -(edge n169 n182) -(edge n169 n190) -(edge n169 n191) -(edge n169 n192) -(edge n169 n199) -(edge n170 n171) -(edge n170 n173) -(edge n170 n174) -(edge n170 n176) -(edge n170 n177) -(edge n170 n181) -(edge n170 n184) -(edge n171 n181) -(edge n171 n189) -(edge n171 n196) -(edge n171 n197) -(edge n172 n181) -(edge n172 n194) -(edge n173 n178) -(edge n173 n191) -(edge n173 n195) -(edge n173 n197) -(edge n174 n175) -(edge n174 n181) -(edge n175 n182) -(edge n175 n189) -(edge n175 n191) -(edge n175 n193) -(edge n175 n194) -(edge n175 n199) -(edge n176 n177) -(edge n176 n186) -(edge n176 n193) -(edge n177 n180) -(edge n177 n181) -(edge n177 n186) -(edge n178 n186) -(edge n178 n189) -(edge n178 n198) -(edge n179 n181) -(edge n179 n184) -(edge n179 n187) -(edge n179 n198) -(edge n179 n199) -(edge n180 n192) -(edge n180 n194) -(edge n181 n184) -(edge n181 n187) -(edge n181 n190) -(edge n181 n191) -(edge n181 n198) -(edge n182 n193) -(edge n182 n199) -(edge n183 n189) -(edge n183 n193) -(edge n183 n194) -(edge n183 n195) -(edge n184 n190) -(edge n184 n197) -(edge n184 n198) -(edge n185 n196) -(edge n186 n189) -(edge n186 n191) -(edge n186 n192) -(edge n186 n193) -(edge n186 n195) -(edge n186 n196) -(edge n187 n190) -(edge n187 n194) -(edge n188 n189) -(edge n188 n195) -(edge n188 n199) -(edge n189 n192) -(edge n190 n191) -(edge n190 n193) -(edge n190 n199) -(edge n192 n198) -(edge n194 n198) -(edge n195 n196) -(edge n196 n199) - -(exec (1 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2))) -(exec (1 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3)) - (, (c4 $x0 $x1 $x2 $x3))) diff --git a/examples/transforms/craft_naive.mm2 b/examples/transforms/craft_naive.mm2 deleted file mode 100644 index cce81a42..00000000 --- a/examples/transforms/craft_naive.mm2 +++ /dev/null @@ -1,11806 +0,0 @@ -(recipe r0 (numIngredients 2)) -(recipe r0 (result (id item0))) -(recipe r0 (pattern 0 sx0)) -(recipe r0 (pattern 1 sy0)) -(recipe r0 (key (sx0 ing0))) -(recipe r0 (key (sy0 ing0))) -(recipe r0 (key (sx0 ing1))) -(recipe r0 (key (sy0 ing1))) -(recipe r0 (key (sx0 ing2))) -(recipe r0 (key (sy0 ing2))) -(recipe r0 (key (sx0 ing3))) -(recipe r0 (key (sy0 ing3))) -(recipe r0 (key (sx0 ing4))) -(recipe r0 (key (sy0 ing4))) -(recipe r0 (key (sx0 ing5))) -(recipe r0 (key (sy0 ing5))) -(recipe r0 (key (sx0 ing6))) -(recipe r0 (key (sy0 ing6))) -(recipe r0 (key (sx0 ing7))) -(recipe r0 (key (sy0 ing7))) -(recipe r0 (key (sx0 ing8))) -(recipe r0 (key (sy0 ing8))) -(recipe r0 (key (sx0 ing9))) -(recipe r0 (key (sy0 ing9))) -(recipe r0 (key (sx0 ing10))) -(recipe r0 (key (sy0 ing10))) -(recipe r0 (key (sx0 ing11))) -(recipe r0 (key (sy0 ing11))) -(recipe r1 (numIngredients 2)) -(recipe r1 (result (id item1))) -(recipe r1 (pattern 0 sx1)) -(recipe r1 (pattern 1 sy1)) -(recipe r1 (key (sx1 ing3))) -(recipe r1 (key (sy1 ing5))) -(recipe r1 (key (sx1 ing4))) -(recipe r1 (key (sy1 ing6))) -(recipe r1 (key (sx1 ing5))) -(recipe r1 (key (sy1 ing7))) -(recipe r1 (key (sx1 ing6))) -(recipe r1 (key (sy1 ing8))) -(recipe r1 (key (sx1 ing7))) -(recipe r1 (key (sy1 ing9))) -(recipe r1 (key (sx1 ing8))) -(recipe r1 (key (sy1 ing10))) -(recipe r1 (key (sx1 ing9))) -(recipe r1 (key (sy1 ing11))) -(recipe r1 (key (sx1 ing10))) -(recipe r1 (key (sy1 ing12))) -(recipe r1 (key (sx1 ing11))) -(recipe r1 (key (sy1 ing13))) -(recipe r1 (key (sx1 ing12))) -(recipe r1 (key (sy1 ing14))) -(recipe r1 (key (sx1 ing13))) -(recipe r1 (key (sy1 ing15))) -(recipe r1 (key (sx1 ing14))) -(recipe r1 (key (sy1 ing16))) -(recipe r2 (numIngredients 2)) -(recipe r2 (result (id item2))) -(recipe r2 (pattern 0 sx2)) -(recipe r2 (pattern 1 sy2)) -(recipe r2 (key (sx2 ing6))) -(recipe r2 (key (sy2 ing10))) -(recipe r2 (key (sx2 ing7))) -(recipe r2 (key (sy2 ing11))) -(recipe r2 (key (sx2 ing8))) -(recipe r2 (key (sy2 ing12))) -(recipe r2 (key (sx2 ing9))) -(recipe r2 (key (sy2 ing13))) -(recipe r2 (key (sx2 ing10))) -(recipe r2 (key (sy2 ing14))) -(recipe r2 (key (sx2 ing11))) -(recipe r2 (key (sy2 ing15))) -(recipe r2 (key (sx2 ing12))) -(recipe r2 (key (sy2 ing16))) -(recipe r2 (key (sx2 ing13))) -(recipe r2 (key (sy2 ing17))) -(recipe r2 (key (sx2 ing14))) -(recipe r2 (key (sy2 ing18))) -(recipe r2 (key (sx2 ing15))) -(recipe r2 (key (sy2 ing19))) -(recipe r2 (key (sx2 ing16))) -(recipe r2 (key (sy2 ing20))) -(recipe r2 (key (sx2 ing17))) -(recipe r2 (key (sy2 ing21))) -(recipe r3 (numIngredients 2)) -(recipe r3 (result (id item3))) -(recipe r3 (pattern 0 sx3)) -(recipe r3 (pattern 1 sy3)) -(recipe r3 (key (sx3 ing9))) -(recipe r3 (key (sy3 ing15))) -(recipe r3 (key (sx3 ing10))) -(recipe r3 (key (sy3 ing16))) -(recipe r3 (key (sx3 ing11))) -(recipe r3 (key (sy3 ing17))) -(recipe r3 (key (sx3 ing12))) -(recipe r3 (key (sy3 ing18))) -(recipe r3 (key (sx3 ing13))) -(recipe r3 (key (sy3 ing19))) -(recipe r3 (key (sx3 ing14))) -(recipe r3 (key (sy3 ing20))) -(recipe r3 (key (sx3 ing15))) -(recipe r3 (key (sy3 ing21))) -(recipe r3 (key (sx3 ing16))) -(recipe r3 (key (sy3 ing22))) -(recipe r3 (key (sx3 ing17))) -(recipe r3 (key (sy3 ing23))) -(recipe r3 (key (sx3 ing18))) -(recipe r3 (key (sy3 ing24))) -(recipe r3 (key (sx3 ing19))) -(recipe r3 (key (sy3 ing25))) -(recipe r3 (key (sx3 ing20))) -(recipe r3 (key (sy3 ing26))) -(recipe r4 (numIngredients 2)) -(recipe r4 (result (id item4))) -(recipe r4 (pattern 0 sx4)) -(recipe r4 (pattern 1 sy4)) -(recipe r4 (key (sx4 ing12))) -(recipe r4 (key (sy4 ing20))) -(recipe r4 (key (sx4 ing13))) -(recipe r4 (key (sy4 ing21))) -(recipe r4 (key (sx4 ing14))) -(recipe r4 (key (sy4 ing22))) -(recipe r4 (key (sx4 ing15))) -(recipe r4 (key (sy4 ing23))) -(recipe r4 (key (sx4 ing16))) -(recipe r4 (key (sy4 ing24))) -(recipe r4 (key (sx4 ing17))) -(recipe r4 (key (sy4 ing25))) -(recipe r4 (key (sx4 ing18))) -(recipe r4 (key (sy4 ing26))) -(recipe r4 (key (sx4 ing19))) -(recipe r4 (key (sy4 ing27))) -(recipe r4 (key (sx4 ing20))) -(recipe r4 (key (sy4 ing28))) -(recipe r4 (key (sx4 ing21))) -(recipe r4 (key (sy4 ing29))) -(recipe r4 (key (sx4 ing22))) -(recipe r4 (key (sy4 ing30))) -(recipe r4 (key (sx4 ing23))) -(recipe r4 (key (sy4 ing31))) -(recipe r5 (numIngredients 2)) -(recipe r5 (result (id item5))) -(recipe r5 (pattern 0 sx5)) -(recipe r5 (pattern 1 sy5)) -(recipe r5 (key (sx5 ing15))) -(recipe r5 (key (sy5 ing25))) -(recipe r5 (key (sx5 ing16))) -(recipe r5 (key (sy5 ing26))) -(recipe r5 (key (sx5 ing17))) -(recipe r5 (key (sy5 ing27))) -(recipe r5 (key (sx5 ing18))) -(recipe r5 (key (sy5 ing28))) -(recipe r5 (key (sx5 ing19))) -(recipe r5 (key (sy5 ing29))) -(recipe r5 (key (sx5 ing20))) -(recipe r5 (key (sy5 ing30))) -(recipe r5 (key (sx5 ing21))) -(recipe r5 (key (sy5 ing31))) -(recipe r5 (key (sx5 ing22))) -(recipe r5 (key (sy5 ing32))) -(recipe r5 (key (sx5 ing23))) -(recipe r5 (key (sy5 ing33))) -(recipe r5 (key (sx5 ing24))) -(recipe r5 (key (sy5 ing34))) -(recipe r5 (key (sx5 ing25))) -(recipe r5 (key (sy5 ing35))) -(recipe r5 (key (sx5 ing26))) -(recipe r5 (key (sy5 ing36))) -(recipe r6 (numIngredients 2)) -(recipe r6 (result (id item6))) -(recipe r6 (pattern 0 sx6)) -(recipe r6 (pattern 1 sy6)) -(recipe r6 (key (sx6 ing18))) -(recipe r6 (key (sy6 ing30))) -(recipe r6 (key (sx6 ing19))) -(recipe r6 (key (sy6 ing31))) -(recipe r6 (key (sx6 ing20))) -(recipe r6 (key (sy6 ing32))) -(recipe r6 (key (sx6 ing21))) -(recipe r6 (key (sy6 ing33))) -(recipe r6 (key (sx6 ing22))) -(recipe r6 (key (sy6 ing34))) -(recipe r6 (key (sx6 ing23))) -(recipe r6 (key (sy6 ing35))) -(recipe r6 (key (sx6 ing24))) -(recipe r6 (key (sy6 ing36))) -(recipe r6 (key (sx6 ing25))) -(recipe r6 (key (sy6 ing37))) -(recipe r6 (key (sx6 ing26))) -(recipe r6 (key (sy6 ing38))) -(recipe r6 (key (sx6 ing27))) -(recipe r6 (key (sy6 ing39))) -(recipe r6 (key (sx6 ing28))) -(recipe r6 (key (sy6 ing40))) -(recipe r6 (key (sx6 ing29))) -(recipe r6 (key (sy6 ing41))) -(recipe r7 (numIngredients 2)) -(recipe r7 (result (id item7))) -(recipe r7 (pattern 0 sx7)) -(recipe r7 (pattern 1 sy7)) -(recipe r7 (key (sx7 ing21))) -(recipe r7 (key (sy7 ing35))) -(recipe r7 (key (sx7 ing22))) -(recipe r7 (key (sy7 ing36))) -(recipe r7 (key (sx7 ing23))) -(recipe r7 (key (sy7 ing37))) -(recipe r7 (key (sx7 ing24))) -(recipe r7 (key (sy7 ing38))) -(recipe r7 (key (sx7 ing25))) -(recipe r7 (key (sy7 ing39))) -(recipe r7 (key (sx7 ing26))) -(recipe r7 (key (sy7 ing40))) -(recipe r7 (key (sx7 ing27))) -(recipe r7 (key (sy7 ing41))) -(recipe r7 (key (sx7 ing28))) -(recipe r7 (key (sy7 ing42))) -(recipe r7 (key (sx7 ing29))) -(recipe r7 (key (sy7 ing43))) -(recipe r7 (key (sx7 ing30))) -(recipe r7 (key (sy7 ing44))) -(recipe r7 (key (sx7 ing31))) -(recipe r7 (key (sy7 ing45))) -(recipe r7 (key (sx7 ing32))) -(recipe r7 (key (sy7 ing46))) -(recipe r8 (numIngredients 2)) -(recipe r8 (result (id item8))) -(recipe r8 (pattern 0 sx8)) -(recipe r8 (pattern 1 sy8)) -(recipe r8 (key (sx8 ing24))) -(recipe r8 (key (sy8 ing40))) -(recipe r8 (key (sx8 ing25))) -(recipe r8 (key (sy8 ing41))) -(recipe r8 (key (sx8 ing26))) -(recipe r8 (key (sy8 ing42))) -(recipe r8 (key (sx8 ing27))) -(recipe r8 (key (sy8 ing43))) -(recipe r8 (key (sx8 ing28))) -(recipe r8 (key (sy8 ing44))) -(recipe r8 (key (sx8 ing29))) -(recipe r8 (key (sy8 ing45))) -(recipe r8 (key (sx8 ing30))) -(recipe r8 (key (sy8 ing46))) -(recipe r8 (key (sx8 ing31))) -(recipe r8 (key (sy8 ing47))) -(recipe r8 (key (sx8 ing32))) -(recipe r8 (key (sy8 ing48))) -(recipe r8 (key (sx8 ing33))) -(recipe r8 (key (sy8 ing49))) -(recipe r8 (key (sx8 ing34))) -(recipe r8 (key (sy8 ing50))) -(recipe r8 (key (sx8 ing35))) -(recipe r8 (key (sy8 ing51))) -(recipe r9 (numIngredients 2)) -(recipe r9 (result (id item9))) -(recipe r9 (pattern 0 sx9)) -(recipe r9 (pattern 1 sy9)) -(recipe r9 (key (sx9 ing27))) -(recipe r9 (key (sy9 ing45))) -(recipe r9 (key (sx9 ing28))) -(recipe r9 (key (sy9 ing46))) -(recipe r9 (key (sx9 ing29))) -(recipe r9 (key (sy9 ing47))) -(recipe r9 (key (sx9 ing30))) -(recipe r9 (key (sy9 ing48))) -(recipe r9 (key (sx9 ing31))) -(recipe r9 (key (sy9 ing49))) -(recipe r9 (key (sx9 ing32))) -(recipe r9 (key (sy9 ing50))) -(recipe r9 (key (sx9 ing33))) -(recipe r9 (key (sy9 ing51))) -(recipe r9 (key (sx9 ing34))) -(recipe r9 (key (sy9 ing52))) -(recipe r9 (key (sx9 ing35))) -(recipe r9 (key (sy9 ing53))) -(recipe r9 (key (sx9 ing36))) -(recipe r9 (key (sy9 ing54))) -(recipe r9 (key (sx9 ing37))) -(recipe r9 (key (sy9 ing55))) -(recipe r9 (key (sx9 ing38))) -(recipe r9 (key (sy9 ing56))) -(recipe r10 (numIngredients 2)) -(recipe r10 (result (id item10))) -(recipe r10 (pattern 0 sx10)) -(recipe r10 (pattern 1 sy10)) -(recipe r10 (key (sx10 ing30))) -(recipe r10 (key (sy10 ing50))) -(recipe r10 (key (sx10 ing31))) -(recipe r10 (key (sy10 ing51))) -(recipe r10 (key (sx10 ing32))) -(recipe r10 (key (sy10 ing52))) -(recipe r10 (key (sx10 ing33))) -(recipe r10 (key (sy10 ing53))) -(recipe r10 (key (sx10 ing34))) -(recipe r10 (key (sy10 ing54))) -(recipe r10 (key (sx10 ing35))) -(recipe r10 (key (sy10 ing55))) -(recipe r10 (key (sx10 ing36))) -(recipe r10 (key (sy10 ing56))) -(recipe r10 (key (sx10 ing37))) -(recipe r10 (key (sy10 ing57))) -(recipe r10 (key (sx10 ing38))) -(recipe r10 (key (sy10 ing58))) -(recipe r10 (key (sx10 ing39))) -(recipe r10 (key (sy10 ing59))) -(recipe r10 (key (sx10 ing40))) -(recipe r10 (key (sy10 ing60))) -(recipe r10 (key (sx10 ing41))) -(recipe r10 (key (sy10 ing61))) -(recipe r11 (numIngredients 2)) -(recipe r11 (result (id item11))) -(recipe r11 (pattern 0 sx11)) -(recipe r11 (pattern 1 sy11)) -(recipe r11 (key (sx11 ing33))) -(recipe r11 (key (sy11 ing55))) -(recipe r11 (key (sx11 ing34))) -(recipe r11 (key (sy11 ing56))) -(recipe r11 (key (sx11 ing35))) -(recipe r11 (key (sy11 ing57))) -(recipe r11 (key (sx11 ing36))) -(recipe r11 (key (sy11 ing58))) -(recipe r11 (key (sx11 ing37))) -(recipe r11 (key (sy11 ing59))) -(recipe r11 (key (sx11 ing38))) -(recipe r11 (key (sy11 ing60))) -(recipe r11 (key (sx11 ing39))) -(recipe r11 (key (sy11 ing61))) -(recipe r11 (key (sx11 ing40))) -(recipe r11 (key (sy11 ing62))) -(recipe r11 (key (sx11 ing41))) -(recipe r11 (key (sy11 ing63))) -(recipe r11 (key (sx11 ing42))) -(recipe r11 (key (sy11 ing64))) -(recipe r11 (key (sx11 ing43))) -(recipe r11 (key (sy11 ing65))) -(recipe r11 (key (sx11 ing44))) -(recipe r11 (key (sy11 ing66))) -(recipe r12 (numIngredients 2)) -(recipe r12 (result (id item12))) -(recipe r12 (pattern 0 sx12)) -(recipe r12 (pattern 1 sy12)) -(recipe r12 (key (sx12 ing36))) -(recipe r12 (key (sy12 ing60))) -(recipe r12 (key (sx12 ing37))) -(recipe r12 (key (sy12 ing61))) -(recipe r12 (key (sx12 ing38))) -(recipe r12 (key (sy12 ing62))) -(recipe r12 (key (sx12 ing39))) -(recipe r12 (key (sy12 ing63))) -(recipe r12 (key (sx12 ing40))) -(recipe r12 (key (sy12 ing64))) -(recipe r12 (key (sx12 ing41))) -(recipe r12 (key (sy12 ing65))) -(recipe r12 (key (sx12 ing42))) -(recipe r12 (key (sy12 ing66))) -(recipe r12 (key (sx12 ing43))) -(recipe r12 (key (sy12 ing67))) -(recipe r12 (key (sx12 ing44))) -(recipe r12 (key (sy12 ing68))) -(recipe r12 (key (sx12 ing45))) -(recipe r12 (key (sy12 ing69))) -(recipe r12 (key (sx12 ing46))) -(recipe r12 (key (sy12 ing70))) -(recipe r12 (key (sx12 ing47))) -(recipe r12 (key (sy12 ing71))) -(recipe r13 (numIngredients 2)) -(recipe r13 (result (id item13))) -(recipe r13 (pattern 0 sx13)) -(recipe r13 (pattern 1 sy13)) -(recipe r13 (key (sx13 ing39))) -(recipe r13 (key (sy13 ing65))) -(recipe r13 (key (sx13 ing40))) -(recipe r13 (key (sy13 ing66))) -(recipe r13 (key (sx13 ing41))) -(recipe r13 (key (sy13 ing67))) -(recipe r13 (key (sx13 ing42))) -(recipe r13 (key (sy13 ing68))) -(recipe r13 (key (sx13 ing43))) -(recipe r13 (key (sy13 ing69))) -(recipe r13 (key (sx13 ing44))) -(recipe r13 (key (sy13 ing70))) -(recipe r13 (key (sx13 ing45))) -(recipe r13 (key (sy13 ing71))) -(recipe r13 (key (sx13 ing46))) -(recipe r13 (key (sy13 ing72))) -(recipe r13 (key (sx13 ing47))) -(recipe r13 (key (sy13 ing73))) -(recipe r13 (key (sx13 ing48))) -(recipe r13 (key (sy13 ing74))) -(recipe r13 (key (sx13 ing49))) -(recipe r13 (key (sy13 ing75))) -(recipe r13 (key (sx13 ing50))) -(recipe r13 (key (sy13 ing76))) -(recipe r14 (numIngredients 2)) -(recipe r14 (result (id item14))) -(recipe r14 (pattern 0 sx14)) -(recipe r14 (pattern 1 sy14)) -(recipe r14 (key (sx14 ing42))) -(recipe r14 (key (sy14 ing70))) -(recipe r14 (key (sx14 ing43))) -(recipe r14 (key (sy14 ing71))) -(recipe r14 (key (sx14 ing44))) -(recipe r14 (key (sy14 ing72))) -(recipe r14 (key (sx14 ing45))) -(recipe r14 (key (sy14 ing73))) -(recipe r14 (key (sx14 ing46))) -(recipe r14 (key (sy14 ing74))) -(recipe r14 (key (sx14 ing47))) -(recipe r14 (key (sy14 ing75))) -(recipe r14 (key (sx14 ing48))) -(recipe r14 (key (sy14 ing76))) -(recipe r14 (key (sx14 ing49))) -(recipe r14 (key (sy14 ing77))) -(recipe r14 (key (sx14 ing50))) -(recipe r14 (key (sy14 ing78))) -(recipe r14 (key (sx14 ing51))) -(recipe r14 (key (sy14 ing79))) -(recipe r14 (key (sx14 ing52))) -(recipe r14 (key (sy14 ing80))) -(recipe r14 (key (sx14 ing53))) -(recipe r14 (key (sy14 ing81))) -(recipe r15 (numIngredients 2)) -(recipe r15 (result (id item15))) -(recipe r15 (pattern 0 sx15)) -(recipe r15 (pattern 1 sy15)) -(recipe r15 (key (sx15 ing45))) -(recipe r15 (key (sy15 ing75))) -(recipe r15 (key (sx15 ing46))) -(recipe r15 (key (sy15 ing76))) -(recipe r15 (key (sx15 ing47))) -(recipe r15 (key (sy15 ing77))) -(recipe r15 (key (sx15 ing48))) -(recipe r15 (key (sy15 ing78))) -(recipe r15 (key (sx15 ing49))) -(recipe r15 (key (sy15 ing79))) -(recipe r15 (key (sx15 ing50))) -(recipe r15 (key (sy15 ing80))) -(recipe r15 (key (sx15 ing51))) -(recipe r15 (key (sy15 ing81))) -(recipe r15 (key (sx15 ing52))) -(recipe r15 (key (sy15 ing82))) -(recipe r15 (key (sx15 ing53))) -(recipe r15 (key (sy15 ing83))) -(recipe r15 (key (sx15 ing54))) -(recipe r15 (key (sy15 ing84))) -(recipe r15 (key (sx15 ing55))) -(recipe r15 (key (sy15 ing85))) -(recipe r15 (key (sx15 ing56))) -(recipe r15 (key (sy15 ing86))) -(recipe r16 (numIngredients 2)) -(recipe r16 (result (id item16))) -(recipe r16 (pattern 0 sx16)) -(recipe r16 (pattern 1 sy16)) -(recipe r16 (key (sx16 ing48))) -(recipe r16 (key (sy16 ing80))) -(recipe r16 (key (sx16 ing49))) -(recipe r16 (key (sy16 ing81))) -(recipe r16 (key (sx16 ing50))) -(recipe r16 (key (sy16 ing82))) -(recipe r16 (key (sx16 ing51))) -(recipe r16 (key (sy16 ing83))) -(recipe r16 (key (sx16 ing52))) -(recipe r16 (key (sy16 ing84))) -(recipe r16 (key (sx16 ing53))) -(recipe r16 (key (sy16 ing85))) -(recipe r16 (key (sx16 ing54))) -(recipe r16 (key (sy16 ing86))) -(recipe r16 (key (sx16 ing55))) -(recipe r16 (key (sy16 ing87))) -(recipe r16 (key (sx16 ing56))) -(recipe r16 (key (sy16 ing88))) -(recipe r16 (key (sx16 ing57))) -(recipe r16 (key (sy16 ing89))) -(recipe r16 (key (sx16 ing58))) -(recipe r16 (key (sy16 ing90))) -(recipe r16 (key (sx16 ing59))) -(recipe r16 (key (sy16 ing91))) -(recipe r17 (numIngredients 2)) -(recipe r17 (result (id item17))) -(recipe r17 (pattern 0 sx17)) -(recipe r17 (pattern 1 sy17)) -(recipe r17 (key (sx17 ing51))) -(recipe r17 (key (sy17 ing85))) -(recipe r17 (key (sx17 ing52))) -(recipe r17 (key (sy17 ing86))) -(recipe r17 (key (sx17 ing53))) -(recipe r17 (key (sy17 ing87))) -(recipe r17 (key (sx17 ing54))) -(recipe r17 (key (sy17 ing88))) -(recipe r17 (key (sx17 ing55))) -(recipe r17 (key (sy17 ing89))) -(recipe r17 (key (sx17 ing56))) -(recipe r17 (key (sy17 ing90))) -(recipe r17 (key (sx17 ing57))) -(recipe r17 (key (sy17 ing91))) -(recipe r17 (key (sx17 ing58))) -(recipe r17 (key (sy17 ing92))) -(recipe r17 (key (sx17 ing59))) -(recipe r17 (key (sy17 ing93))) -(recipe r17 (key (sx17 ing60))) -(recipe r17 (key (sy17 ing94))) -(recipe r17 (key (sx17 ing61))) -(recipe r17 (key (sy17 ing95))) -(recipe r17 (key (sx17 ing62))) -(recipe r17 (key (sy17 ing96))) -(recipe r18 (numIngredients 2)) -(recipe r18 (result (id item18))) -(recipe r18 (pattern 0 sx18)) -(recipe r18 (pattern 1 sy18)) -(recipe r18 (key (sx18 ing54))) -(recipe r18 (key (sy18 ing90))) -(recipe r18 (key (sx18 ing55))) -(recipe r18 (key (sy18 ing91))) -(recipe r18 (key (sx18 ing56))) -(recipe r18 (key (sy18 ing92))) -(recipe r18 (key (sx18 ing57))) -(recipe r18 (key (sy18 ing93))) -(recipe r18 (key (sx18 ing58))) -(recipe r18 (key (sy18 ing94))) -(recipe r18 (key (sx18 ing59))) -(recipe r18 (key (sy18 ing95))) -(recipe r18 (key (sx18 ing60))) -(recipe r18 (key (sy18 ing96))) -(recipe r18 (key (sx18 ing61))) -(recipe r18 (key (sy18 ing97))) -(recipe r18 (key (sx18 ing62))) -(recipe r18 (key (sy18 ing98))) -(recipe r18 (key (sx18 ing63))) -(recipe r18 (key (sy18 ing99))) -(recipe r18 (key (sx18 ing64))) -(recipe r18 (key (sy18 ing100))) -(recipe r18 (key (sx18 ing65))) -(recipe r18 (key (sy18 ing101))) -(recipe r19 (numIngredients 2)) -(recipe r19 (result (id item19))) -(recipe r19 (pattern 0 sx19)) -(recipe r19 (pattern 1 sy19)) -(recipe r19 (key (sx19 ing57))) -(recipe r19 (key (sy19 ing95))) -(recipe r19 (key (sx19 ing58))) -(recipe r19 (key (sy19 ing96))) -(recipe r19 (key (sx19 ing59))) -(recipe r19 (key (sy19 ing97))) -(recipe r19 (key (sx19 ing60))) -(recipe r19 (key (sy19 ing98))) -(recipe r19 (key (sx19 ing61))) -(recipe r19 (key (sy19 ing99))) -(recipe r19 (key (sx19 ing62))) -(recipe r19 (key (sy19 ing100))) -(recipe r19 (key (sx19 ing63))) -(recipe r19 (key (sy19 ing101))) -(recipe r19 (key (sx19 ing64))) -(recipe r19 (key (sy19 ing102))) -(recipe r19 (key (sx19 ing65))) -(recipe r19 (key (sy19 ing103))) -(recipe r19 (key (sx19 ing66))) -(recipe r19 (key (sy19 ing104))) -(recipe r19 (key (sx19 ing67))) -(recipe r19 (key (sy19 ing105))) -(recipe r19 (key (sx19 ing68))) -(recipe r19 (key (sy19 ing106))) -(recipe r20 (numIngredients 2)) -(recipe r20 (result (id item20))) -(recipe r20 (pattern 0 sx20)) -(recipe r20 (pattern 1 sy20)) -(recipe r20 (key (sx20 ing60))) -(recipe r20 (key (sy20 ing100))) -(recipe r20 (key (sx20 ing61))) -(recipe r20 (key (sy20 ing101))) -(recipe r20 (key (sx20 ing62))) -(recipe r20 (key (sy20 ing102))) -(recipe r20 (key (sx20 ing63))) -(recipe r20 (key (sy20 ing103))) -(recipe r20 (key (sx20 ing64))) -(recipe r20 (key (sy20 ing104))) -(recipe r20 (key (sx20 ing65))) -(recipe r20 (key (sy20 ing105))) -(recipe r20 (key (sx20 ing66))) -(recipe r20 (key (sy20 ing106))) -(recipe r20 (key (sx20 ing67))) -(recipe r20 (key (sy20 ing107))) -(recipe r20 (key (sx20 ing68))) -(recipe r20 (key (sy20 ing108))) -(recipe r20 (key (sx20 ing69))) -(recipe r20 (key (sy20 ing109))) -(recipe r20 (key (sx20 ing70))) -(recipe r20 (key (sy20 ing110))) -(recipe r20 (key (sx20 ing71))) -(recipe r20 (key (sy20 ing111))) -(recipe r21 (numIngredients 2)) -(recipe r21 (result (id item21))) -(recipe r21 (pattern 0 sx21)) -(recipe r21 (pattern 1 sy21)) -(recipe r21 (key (sx21 ing63))) -(recipe r21 (key (sy21 ing105))) -(recipe r21 (key (sx21 ing64))) -(recipe r21 (key (sy21 ing106))) -(recipe r21 (key (sx21 ing65))) -(recipe r21 (key (sy21 ing107))) -(recipe r21 (key (sx21 ing66))) -(recipe r21 (key (sy21 ing108))) -(recipe r21 (key (sx21 ing67))) -(recipe r21 (key (sy21 ing109))) -(recipe r21 (key (sx21 ing68))) -(recipe r21 (key (sy21 ing110))) -(recipe r21 (key (sx21 ing69))) -(recipe r21 (key (sy21 ing111))) -(recipe r21 (key (sx21 ing70))) -(recipe r21 (key (sy21 ing112))) -(recipe r21 (key (sx21 ing71))) -(recipe r21 (key (sy21 ing113))) -(recipe r21 (key (sx21 ing72))) -(recipe r21 (key (sy21 ing114))) -(recipe r21 (key (sx21 ing73))) -(recipe r21 (key (sy21 ing115))) -(recipe r21 (key (sx21 ing74))) -(recipe r21 (key (sy21 ing116))) -(recipe r22 (numIngredients 2)) -(recipe r22 (result (id item22))) -(recipe r22 (pattern 0 sx22)) -(recipe r22 (pattern 1 sy22)) -(recipe r22 (key (sx22 ing66))) -(recipe r22 (key (sy22 ing110))) -(recipe r22 (key (sx22 ing67))) -(recipe r22 (key (sy22 ing111))) -(recipe r22 (key (sx22 ing68))) -(recipe r22 (key (sy22 ing112))) -(recipe r22 (key (sx22 ing69))) -(recipe r22 (key (sy22 ing113))) -(recipe r22 (key (sx22 ing70))) -(recipe r22 (key (sy22 ing114))) -(recipe r22 (key (sx22 ing71))) -(recipe r22 (key (sy22 ing115))) -(recipe r22 (key (sx22 ing72))) -(recipe r22 (key (sy22 ing116))) -(recipe r22 (key (sx22 ing73))) -(recipe r22 (key (sy22 ing117))) -(recipe r22 (key (sx22 ing74))) -(recipe r22 (key (sy22 ing118))) -(recipe r22 (key (sx22 ing75))) -(recipe r22 (key (sy22 ing119))) -(recipe r22 (key (sx22 ing76))) -(recipe r22 (key (sy22 ing120))) -(recipe r22 (key (sx22 ing77))) -(recipe r22 (key (sy22 ing121))) -(recipe r23 (numIngredients 2)) -(recipe r23 (result (id item23))) -(recipe r23 (pattern 0 sx23)) -(recipe r23 (pattern 1 sy23)) -(recipe r23 (key (sx23 ing69))) -(recipe r23 (key (sy23 ing115))) -(recipe r23 (key (sx23 ing70))) -(recipe r23 (key (sy23 ing116))) -(recipe r23 (key (sx23 ing71))) -(recipe r23 (key (sy23 ing117))) -(recipe r23 (key (sx23 ing72))) -(recipe r23 (key (sy23 ing118))) -(recipe r23 (key (sx23 ing73))) -(recipe r23 (key (sy23 ing119))) -(recipe r23 (key (sx23 ing74))) -(recipe r23 (key (sy23 ing120))) -(recipe r23 (key (sx23 ing75))) -(recipe r23 (key (sy23 ing121))) -(recipe r23 (key (sx23 ing76))) -(recipe r23 (key (sy23 ing122))) -(recipe r23 (key (sx23 ing77))) -(recipe r23 (key (sy23 ing123))) -(recipe r23 (key (sx23 ing78))) -(recipe r23 (key (sy23 ing124))) -(recipe r23 (key (sx23 ing79))) -(recipe r23 (key (sy23 ing125))) -(recipe r23 (key (sx23 ing80))) -(recipe r23 (key (sy23 ing126))) -(recipe r24 (numIngredients 2)) -(recipe r24 (result (id item24))) -(recipe r24 (pattern 0 sx24)) -(recipe r24 (pattern 1 sy24)) -(recipe r24 (key (sx24 ing72))) -(recipe r24 (key (sy24 ing120))) -(recipe r24 (key (sx24 ing73))) -(recipe r24 (key (sy24 ing121))) -(recipe r24 (key (sx24 ing74))) -(recipe r24 (key (sy24 ing122))) -(recipe r24 (key (sx24 ing75))) -(recipe r24 (key (sy24 ing123))) -(recipe r24 (key (sx24 ing76))) -(recipe r24 (key (sy24 ing124))) -(recipe r24 (key (sx24 ing77))) -(recipe r24 (key (sy24 ing125))) -(recipe r24 (key (sx24 ing78))) -(recipe r24 (key (sy24 ing126))) -(recipe r24 (key (sx24 ing79))) -(recipe r24 (key (sy24 ing127))) -(recipe r24 (key (sx24 ing80))) -(recipe r24 (key (sy24 ing128))) -(recipe r24 (key (sx24 ing81))) -(recipe r24 (key (sy24 ing129))) -(recipe r24 (key (sx24 ing82))) -(recipe r24 (key (sy24 ing130))) -(recipe r24 (key (sx24 ing83))) -(recipe r24 (key (sy24 ing131))) -(recipe r25 (numIngredients 2)) -(recipe r25 (result (id item25))) -(recipe r25 (pattern 0 sx25)) -(recipe r25 (pattern 1 sy25)) -(recipe r25 (key (sx25 ing75))) -(recipe r25 (key (sy25 ing125))) -(recipe r25 (key (sx25 ing76))) -(recipe r25 (key (sy25 ing126))) -(recipe r25 (key (sx25 ing77))) -(recipe r25 (key (sy25 ing127))) -(recipe r25 (key (sx25 ing78))) -(recipe r25 (key (sy25 ing128))) -(recipe r25 (key (sx25 ing79))) -(recipe r25 (key (sy25 ing129))) -(recipe r25 (key (sx25 ing80))) -(recipe r25 (key (sy25 ing130))) -(recipe r25 (key (sx25 ing81))) -(recipe r25 (key (sy25 ing131))) -(recipe r25 (key (sx25 ing82))) -(recipe r25 (key (sy25 ing132))) -(recipe r25 (key (sx25 ing83))) -(recipe r25 (key (sy25 ing133))) -(recipe r25 (key (sx25 ing84))) -(recipe r25 (key (sy25 ing134))) -(recipe r25 (key (sx25 ing85))) -(recipe r25 (key (sy25 ing135))) -(recipe r25 (key (sx25 ing86))) -(recipe r25 (key (sy25 ing136))) -(recipe r26 (numIngredients 2)) -(recipe r26 (result (id item26))) -(recipe r26 (pattern 0 sx26)) -(recipe r26 (pattern 1 sy26)) -(recipe r26 (key (sx26 ing78))) -(recipe r26 (key (sy26 ing130))) -(recipe r26 (key (sx26 ing79))) -(recipe r26 (key (sy26 ing131))) -(recipe r26 (key (sx26 ing80))) -(recipe r26 (key (sy26 ing132))) -(recipe r26 (key (sx26 ing81))) -(recipe r26 (key (sy26 ing133))) -(recipe r26 (key (sx26 ing82))) -(recipe r26 (key (sy26 ing134))) -(recipe r26 (key (sx26 ing83))) -(recipe r26 (key (sy26 ing135))) -(recipe r26 (key (sx26 ing84))) -(recipe r26 (key (sy26 ing136))) -(recipe r26 (key (sx26 ing85))) -(recipe r26 (key (sy26 ing137))) -(recipe r26 (key (sx26 ing86))) -(recipe r26 (key (sy26 ing138))) -(recipe r26 (key (sx26 ing87))) -(recipe r26 (key (sy26 ing139))) -(recipe r26 (key (sx26 ing88))) -(recipe r26 (key (sy26 ing140))) -(recipe r26 (key (sx26 ing89))) -(recipe r26 (key (sy26 ing141))) -(recipe r27 (numIngredients 2)) -(recipe r27 (result (id item27))) -(recipe r27 (pattern 0 sx27)) -(recipe r27 (pattern 1 sy27)) -(recipe r27 (key (sx27 ing81))) -(recipe r27 (key (sy27 ing135))) -(recipe r27 (key (sx27 ing82))) -(recipe r27 (key (sy27 ing136))) -(recipe r27 (key (sx27 ing83))) -(recipe r27 (key (sy27 ing137))) -(recipe r27 (key (sx27 ing84))) -(recipe r27 (key (sy27 ing138))) -(recipe r27 (key (sx27 ing85))) -(recipe r27 (key (sy27 ing139))) -(recipe r27 (key (sx27 ing86))) -(recipe r27 (key (sy27 ing140))) -(recipe r27 (key (sx27 ing87))) -(recipe r27 (key (sy27 ing141))) -(recipe r27 (key (sx27 ing88))) -(recipe r27 (key (sy27 ing142))) -(recipe r27 (key (sx27 ing89))) -(recipe r27 (key (sy27 ing143))) -(recipe r27 (key (sx27 ing90))) -(recipe r27 (key (sy27 ing144))) -(recipe r27 (key (sx27 ing91))) -(recipe r27 (key (sy27 ing145))) -(recipe r27 (key (sx27 ing92))) -(recipe r27 (key (sy27 ing146))) -(recipe r28 (numIngredients 2)) -(recipe r28 (result (id item28))) -(recipe r28 (pattern 0 sx28)) -(recipe r28 (pattern 1 sy28)) -(recipe r28 (key (sx28 ing84))) -(recipe r28 (key (sy28 ing140))) -(recipe r28 (key (sx28 ing85))) -(recipe r28 (key (sy28 ing141))) -(recipe r28 (key (sx28 ing86))) -(recipe r28 (key (sy28 ing142))) -(recipe r28 (key (sx28 ing87))) -(recipe r28 (key (sy28 ing143))) -(recipe r28 (key (sx28 ing88))) -(recipe r28 (key (sy28 ing144))) -(recipe r28 (key (sx28 ing89))) -(recipe r28 (key (sy28 ing145))) -(recipe r28 (key (sx28 ing90))) -(recipe r28 (key (sy28 ing146))) -(recipe r28 (key (sx28 ing91))) -(recipe r28 (key (sy28 ing147))) -(recipe r28 (key (sx28 ing92))) -(recipe r28 (key (sy28 ing148))) -(recipe r28 (key (sx28 ing93))) -(recipe r28 (key (sy28 ing149))) -(recipe r28 (key (sx28 ing94))) -(recipe r28 (key (sy28 ing150))) -(recipe r28 (key (sx28 ing95))) -(recipe r28 (key (sy28 ing151))) -(recipe r29 (numIngredients 2)) -(recipe r29 (result (id item29))) -(recipe r29 (pattern 0 sx29)) -(recipe r29 (pattern 1 sy29)) -(recipe r29 (key (sx29 ing87))) -(recipe r29 (key (sy29 ing145))) -(recipe r29 (key (sx29 ing88))) -(recipe r29 (key (sy29 ing146))) -(recipe r29 (key (sx29 ing89))) -(recipe r29 (key (sy29 ing147))) -(recipe r29 (key (sx29 ing90))) -(recipe r29 (key (sy29 ing148))) -(recipe r29 (key (sx29 ing91))) -(recipe r29 (key (sy29 ing149))) -(recipe r29 (key (sx29 ing92))) -(recipe r29 (key (sy29 ing150))) -(recipe r29 (key (sx29 ing93))) -(recipe r29 (key (sy29 ing151))) -(recipe r29 (key (sx29 ing94))) -(recipe r29 (key (sy29 ing152))) -(recipe r29 (key (sx29 ing95))) -(recipe r29 (key (sy29 ing153))) -(recipe r29 (key (sx29 ing96))) -(recipe r29 (key (sy29 ing154))) -(recipe r29 (key (sx29 ing97))) -(recipe r29 (key (sy29 ing155))) -(recipe r29 (key (sx29 ing98))) -(recipe r29 (key (sy29 ing156))) -(recipe r30 (numIngredients 2)) -(recipe r30 (result (id item30))) -(recipe r30 (pattern 0 sx30)) -(recipe r30 (pattern 1 sy30)) -(recipe r30 (key (sx30 ing90))) -(recipe r30 (key (sy30 ing150))) -(recipe r30 (key (sx30 ing91))) -(recipe r30 (key (sy30 ing151))) -(recipe r30 (key (sx30 ing92))) -(recipe r30 (key (sy30 ing152))) -(recipe r30 (key (sx30 ing93))) -(recipe r30 (key (sy30 ing153))) -(recipe r30 (key (sx30 ing94))) -(recipe r30 (key (sy30 ing154))) -(recipe r30 (key (sx30 ing95))) -(recipe r30 (key (sy30 ing155))) -(recipe r30 (key (sx30 ing96))) -(recipe r30 (key (sy30 ing156))) -(recipe r30 (key (sx30 ing97))) -(recipe r30 (key (sy30 ing157))) -(recipe r30 (key (sx30 ing98))) -(recipe r30 (key (sy30 ing158))) -(recipe r30 (key (sx30 ing99))) -(recipe r30 (key (sy30 ing159))) -(recipe r30 (key (sx30 ing100))) -(recipe r30 (key (sy30 ing160))) -(recipe r30 (key (sx30 ing101))) -(recipe r30 (key (sy30 ing161))) -(recipe r31 (numIngredients 2)) -(recipe r31 (result (id item31))) -(recipe r31 (pattern 0 sx31)) -(recipe r31 (pattern 1 sy31)) -(recipe r31 (key (sx31 ing93))) -(recipe r31 (key (sy31 ing155))) -(recipe r31 (key (sx31 ing94))) -(recipe r31 (key (sy31 ing156))) -(recipe r31 (key (sx31 ing95))) -(recipe r31 (key (sy31 ing157))) -(recipe r31 (key (sx31 ing96))) -(recipe r31 (key (sy31 ing158))) -(recipe r31 (key (sx31 ing97))) -(recipe r31 (key (sy31 ing159))) -(recipe r31 (key (sx31 ing98))) -(recipe r31 (key (sy31 ing160))) -(recipe r31 (key (sx31 ing99))) -(recipe r31 (key (sy31 ing161))) -(recipe r31 (key (sx31 ing100))) -(recipe r31 (key (sy31 ing162))) -(recipe r31 (key (sx31 ing101))) -(recipe r31 (key (sy31 ing163))) -(recipe r31 (key (sx31 ing102))) -(recipe r31 (key (sy31 ing164))) -(recipe r31 (key (sx31 ing103))) -(recipe r31 (key (sy31 ing165))) -(recipe r31 (key (sx31 ing104))) -(recipe r31 (key (sy31 ing166))) -(recipe r32 (numIngredients 2)) -(recipe r32 (result (id item32))) -(recipe r32 (pattern 0 sx32)) -(recipe r32 (pattern 1 sy32)) -(recipe r32 (key (sx32 ing96))) -(recipe r32 (key (sy32 ing160))) -(recipe r32 (key (sx32 ing97))) -(recipe r32 (key (sy32 ing161))) -(recipe r32 (key (sx32 ing98))) -(recipe r32 (key (sy32 ing162))) -(recipe r32 (key (sx32 ing99))) -(recipe r32 (key (sy32 ing163))) -(recipe r32 (key (sx32 ing100))) -(recipe r32 (key (sy32 ing164))) -(recipe r32 (key (sx32 ing101))) -(recipe r32 (key (sy32 ing165))) -(recipe r32 (key (sx32 ing102))) -(recipe r32 (key (sy32 ing166))) -(recipe r32 (key (sx32 ing103))) -(recipe r32 (key (sy32 ing167))) -(recipe r32 (key (sx32 ing104))) -(recipe r32 (key (sy32 ing168))) -(recipe r32 (key (sx32 ing105))) -(recipe r32 (key (sy32 ing169))) -(recipe r32 (key (sx32 ing106))) -(recipe r32 (key (sy32 ing170))) -(recipe r32 (key (sx32 ing107))) -(recipe r32 (key (sy32 ing171))) -(recipe r33 (numIngredients 2)) -(recipe r33 (result (id item33))) -(recipe r33 (pattern 0 sx33)) -(recipe r33 (pattern 1 sy33)) -(recipe r33 (key (sx33 ing99))) -(recipe r33 (key (sy33 ing165))) -(recipe r33 (key (sx33 ing100))) -(recipe r33 (key (sy33 ing166))) -(recipe r33 (key (sx33 ing101))) -(recipe r33 (key (sy33 ing167))) -(recipe r33 (key (sx33 ing102))) -(recipe r33 (key (sy33 ing168))) -(recipe r33 (key (sx33 ing103))) -(recipe r33 (key (sy33 ing169))) -(recipe r33 (key (sx33 ing104))) -(recipe r33 (key (sy33 ing170))) -(recipe r33 (key (sx33 ing105))) -(recipe r33 (key (sy33 ing171))) -(recipe r33 (key (sx33 ing106))) -(recipe r33 (key (sy33 ing172))) -(recipe r33 (key (sx33 ing107))) -(recipe r33 (key (sy33 ing173))) -(recipe r33 (key (sx33 ing108))) -(recipe r33 (key (sy33 ing174))) -(recipe r33 (key (sx33 ing109))) -(recipe r33 (key (sy33 ing175))) -(recipe r33 (key (sx33 ing110))) -(recipe r33 (key (sy33 ing176))) -(recipe r34 (numIngredients 2)) -(recipe r34 (result (id item34))) -(recipe r34 (pattern 0 sx34)) -(recipe r34 (pattern 1 sy34)) -(recipe r34 (key (sx34 ing102))) -(recipe r34 (key (sy34 ing170))) -(recipe r34 (key (sx34 ing103))) -(recipe r34 (key (sy34 ing171))) -(recipe r34 (key (sx34 ing104))) -(recipe r34 (key (sy34 ing172))) -(recipe r34 (key (sx34 ing105))) -(recipe r34 (key (sy34 ing173))) -(recipe r34 (key (sx34 ing106))) -(recipe r34 (key (sy34 ing174))) -(recipe r34 (key (sx34 ing107))) -(recipe r34 (key (sy34 ing175))) -(recipe r34 (key (sx34 ing108))) -(recipe r34 (key (sy34 ing176))) -(recipe r34 (key (sx34 ing109))) -(recipe r34 (key (sy34 ing177))) -(recipe r34 (key (sx34 ing110))) -(recipe r34 (key (sy34 ing178))) -(recipe r34 (key (sx34 ing111))) -(recipe r34 (key (sy34 ing179))) -(recipe r34 (key (sx34 ing112))) -(recipe r34 (key (sy34 ing180))) -(recipe r34 (key (sx34 ing113))) -(recipe r34 (key (sy34 ing181))) -(recipe r35 (numIngredients 2)) -(recipe r35 (result (id item35))) -(recipe r35 (pattern 0 sx35)) -(recipe r35 (pattern 1 sy35)) -(recipe r35 (key (sx35 ing105))) -(recipe r35 (key (sy35 ing175))) -(recipe r35 (key (sx35 ing106))) -(recipe r35 (key (sy35 ing176))) -(recipe r35 (key (sx35 ing107))) -(recipe r35 (key (sy35 ing177))) -(recipe r35 (key (sx35 ing108))) -(recipe r35 (key (sy35 ing178))) -(recipe r35 (key (sx35 ing109))) -(recipe r35 (key (sy35 ing179))) -(recipe r35 (key (sx35 ing110))) -(recipe r35 (key (sy35 ing180))) -(recipe r35 (key (sx35 ing111))) -(recipe r35 (key (sy35 ing181))) -(recipe r35 (key (sx35 ing112))) -(recipe r35 (key (sy35 ing182))) -(recipe r35 (key (sx35 ing113))) -(recipe r35 (key (sy35 ing183))) -(recipe r35 (key (sx35 ing114))) -(recipe r35 (key (sy35 ing184))) -(recipe r35 (key (sx35 ing115))) -(recipe r35 (key (sy35 ing185))) -(recipe r35 (key (sx35 ing116))) -(recipe r35 (key (sy35 ing186))) -(recipe r36 (numIngredients 2)) -(recipe r36 (result (id item36))) -(recipe r36 (pattern 0 sx36)) -(recipe r36 (pattern 1 sy36)) -(recipe r36 (key (sx36 ing108))) -(recipe r36 (key (sy36 ing180))) -(recipe r36 (key (sx36 ing109))) -(recipe r36 (key (sy36 ing181))) -(recipe r36 (key (sx36 ing110))) -(recipe r36 (key (sy36 ing182))) -(recipe r36 (key (sx36 ing111))) -(recipe r36 (key (sy36 ing183))) -(recipe r36 (key (sx36 ing112))) -(recipe r36 (key (sy36 ing184))) -(recipe r36 (key (sx36 ing113))) -(recipe r36 (key (sy36 ing185))) -(recipe r36 (key (sx36 ing114))) -(recipe r36 (key (sy36 ing186))) -(recipe r36 (key (sx36 ing115))) -(recipe r36 (key (sy36 ing187))) -(recipe r36 (key (sx36 ing116))) -(recipe r36 (key (sy36 ing188))) -(recipe r36 (key (sx36 ing117))) -(recipe r36 (key (sy36 ing189))) -(recipe r36 (key (sx36 ing118))) -(recipe r36 (key (sy36 ing190))) -(recipe r36 (key (sx36 ing119))) -(recipe r36 (key (sy36 ing191))) -(recipe r37 (numIngredients 2)) -(recipe r37 (result (id item37))) -(recipe r37 (pattern 0 sx37)) -(recipe r37 (pattern 1 sy37)) -(recipe r37 (key (sx37 ing111))) -(recipe r37 (key (sy37 ing185))) -(recipe r37 (key (sx37 ing112))) -(recipe r37 (key (sy37 ing186))) -(recipe r37 (key (sx37 ing113))) -(recipe r37 (key (sy37 ing187))) -(recipe r37 (key (sx37 ing114))) -(recipe r37 (key (sy37 ing188))) -(recipe r37 (key (sx37 ing115))) -(recipe r37 (key (sy37 ing189))) -(recipe r37 (key (sx37 ing116))) -(recipe r37 (key (sy37 ing190))) -(recipe r37 (key (sx37 ing117))) -(recipe r37 (key (sy37 ing191))) -(recipe r37 (key (sx37 ing118))) -(recipe r37 (key (sy37 ing192))) -(recipe r37 (key (sx37 ing119))) -(recipe r37 (key (sy37 ing193))) -(recipe r37 (key (sx37 ing120))) -(recipe r37 (key (sy37 ing194))) -(recipe r37 (key (sx37 ing121))) -(recipe r37 (key (sy37 ing195))) -(recipe r37 (key (sx37 ing122))) -(recipe r37 (key (sy37 ing196))) -(recipe r38 (numIngredients 2)) -(recipe r38 (result (id item38))) -(recipe r38 (pattern 0 sx38)) -(recipe r38 (pattern 1 sy38)) -(recipe r38 (key (sx38 ing114))) -(recipe r38 (key (sy38 ing190))) -(recipe r38 (key (sx38 ing115))) -(recipe r38 (key (sy38 ing191))) -(recipe r38 (key (sx38 ing116))) -(recipe r38 (key (sy38 ing192))) -(recipe r38 (key (sx38 ing117))) -(recipe r38 (key (sy38 ing193))) -(recipe r38 (key (sx38 ing118))) -(recipe r38 (key (sy38 ing194))) -(recipe r38 (key (sx38 ing119))) -(recipe r38 (key (sy38 ing195))) -(recipe r38 (key (sx38 ing120))) -(recipe r38 (key (sy38 ing196))) -(recipe r38 (key (sx38 ing121))) -(recipe r38 (key (sy38 ing197))) -(recipe r38 (key (sx38 ing122))) -(recipe r38 (key (sy38 ing198))) -(recipe r38 (key (sx38 ing123))) -(recipe r38 (key (sy38 ing199))) -(recipe r38 (key (sx38 ing124))) -(recipe r38 (key (sy38 ing200))) -(recipe r38 (key (sx38 ing125))) -(recipe r38 (key (sy38 ing201))) -(recipe r39 (numIngredients 2)) -(recipe r39 (result (id item39))) -(recipe r39 (pattern 0 sx39)) -(recipe r39 (pattern 1 sy39)) -(recipe r39 (key (sx39 ing117))) -(recipe r39 (key (sy39 ing195))) -(recipe r39 (key (sx39 ing118))) -(recipe r39 (key (sy39 ing196))) -(recipe r39 (key (sx39 ing119))) -(recipe r39 (key (sy39 ing197))) -(recipe r39 (key (sx39 ing120))) -(recipe r39 (key (sy39 ing198))) -(recipe r39 (key (sx39 ing121))) -(recipe r39 (key (sy39 ing199))) -(recipe r39 (key (sx39 ing122))) -(recipe r39 (key (sy39 ing200))) -(recipe r39 (key (sx39 ing123))) -(recipe r39 (key (sy39 ing201))) -(recipe r39 (key (sx39 ing124))) -(recipe r39 (key (sy39 ing202))) -(recipe r39 (key (sx39 ing125))) -(recipe r39 (key (sy39 ing203))) -(recipe r39 (key (sx39 ing126))) -(recipe r39 (key (sy39 ing204))) -(recipe r39 (key (sx39 ing127))) -(recipe r39 (key (sy39 ing205))) -(recipe r39 (key (sx39 ing128))) -(recipe r39 (key (sy39 ing206))) -(recipe r40 (numIngredients 2)) -(recipe r40 (result (id item40))) -(recipe r40 (pattern 0 sx40)) -(recipe r40 (pattern 1 sy40)) -(recipe r40 (key (sx40 ing120))) -(recipe r40 (key (sy40 ing200))) -(recipe r40 (key (sx40 ing121))) -(recipe r40 (key (sy40 ing201))) -(recipe r40 (key (sx40 ing122))) -(recipe r40 (key (sy40 ing202))) -(recipe r40 (key (sx40 ing123))) -(recipe r40 (key (sy40 ing203))) -(recipe r40 (key (sx40 ing124))) -(recipe r40 (key (sy40 ing204))) -(recipe r40 (key (sx40 ing125))) -(recipe r40 (key (sy40 ing205))) -(recipe r40 (key (sx40 ing126))) -(recipe r40 (key (sy40 ing206))) -(recipe r40 (key (sx40 ing127))) -(recipe r40 (key (sy40 ing207))) -(recipe r40 (key (sx40 ing128))) -(recipe r40 (key (sy40 ing208))) -(recipe r40 (key (sx40 ing129))) -(recipe r40 (key (sy40 ing209))) -(recipe r40 (key (sx40 ing130))) -(recipe r40 (key (sy40 ing210))) -(recipe r40 (key (sx40 ing131))) -(recipe r40 (key (sy40 ing211))) -(recipe r41 (numIngredients 2)) -(recipe r41 (result (id item41))) -(recipe r41 (pattern 0 sx41)) -(recipe r41 (pattern 1 sy41)) -(recipe r41 (key (sx41 ing123))) -(recipe r41 (key (sy41 ing205))) -(recipe r41 (key (sx41 ing124))) -(recipe r41 (key (sy41 ing206))) -(recipe r41 (key (sx41 ing125))) -(recipe r41 (key (sy41 ing207))) -(recipe r41 (key (sx41 ing126))) -(recipe r41 (key (sy41 ing208))) -(recipe r41 (key (sx41 ing127))) -(recipe r41 (key (sy41 ing209))) -(recipe r41 (key (sx41 ing128))) -(recipe r41 (key (sy41 ing210))) -(recipe r41 (key (sx41 ing129))) -(recipe r41 (key (sy41 ing211))) -(recipe r41 (key (sx41 ing130))) -(recipe r41 (key (sy41 ing212))) -(recipe r41 (key (sx41 ing131))) -(recipe r41 (key (sy41 ing213))) -(recipe r41 (key (sx41 ing132))) -(recipe r41 (key (sy41 ing214))) -(recipe r41 (key (sx41 ing133))) -(recipe r41 (key (sy41 ing215))) -(recipe r41 (key (sx41 ing134))) -(recipe r41 (key (sy41 ing216))) -(recipe r42 (numIngredients 2)) -(recipe r42 (result (id item42))) -(recipe r42 (pattern 0 sx42)) -(recipe r42 (pattern 1 sy42)) -(recipe r42 (key (sx42 ing126))) -(recipe r42 (key (sy42 ing210))) -(recipe r42 (key (sx42 ing127))) -(recipe r42 (key (sy42 ing211))) -(recipe r42 (key (sx42 ing128))) -(recipe r42 (key (sy42 ing212))) -(recipe r42 (key (sx42 ing129))) -(recipe r42 (key (sy42 ing213))) -(recipe r42 (key (sx42 ing130))) -(recipe r42 (key (sy42 ing214))) -(recipe r42 (key (sx42 ing131))) -(recipe r42 (key (sy42 ing215))) -(recipe r42 (key (sx42 ing132))) -(recipe r42 (key (sy42 ing216))) -(recipe r42 (key (sx42 ing133))) -(recipe r42 (key (sy42 ing217))) -(recipe r42 (key (sx42 ing134))) -(recipe r42 (key (sy42 ing218))) -(recipe r42 (key (sx42 ing135))) -(recipe r42 (key (sy42 ing219))) -(recipe r42 (key (sx42 ing136))) -(recipe r42 (key (sy42 ing220))) -(recipe r42 (key (sx42 ing137))) -(recipe r42 (key (sy42 ing221))) -(recipe r43 (numIngredients 2)) -(recipe r43 (result (id item43))) -(recipe r43 (pattern 0 sx43)) -(recipe r43 (pattern 1 sy43)) -(recipe r43 (key (sx43 ing129))) -(recipe r43 (key (sy43 ing215))) -(recipe r43 (key (sx43 ing130))) -(recipe r43 (key (sy43 ing216))) -(recipe r43 (key (sx43 ing131))) -(recipe r43 (key (sy43 ing217))) -(recipe r43 (key (sx43 ing132))) -(recipe r43 (key (sy43 ing218))) -(recipe r43 (key (sx43 ing133))) -(recipe r43 (key (sy43 ing219))) -(recipe r43 (key (sx43 ing134))) -(recipe r43 (key (sy43 ing220))) -(recipe r43 (key (sx43 ing135))) -(recipe r43 (key (sy43 ing221))) -(recipe r43 (key (sx43 ing136))) -(recipe r43 (key (sy43 ing222))) -(recipe r43 (key (sx43 ing137))) -(recipe r43 (key (sy43 ing223))) -(recipe r43 (key (sx43 ing138))) -(recipe r43 (key (sy43 ing224))) -(recipe r43 (key (sx43 ing139))) -(recipe r43 (key (sy43 ing225))) -(recipe r43 (key (sx43 ing140))) -(recipe r43 (key (sy43 ing226))) -(recipe r44 (numIngredients 2)) -(recipe r44 (result (id item44))) -(recipe r44 (pattern 0 sx44)) -(recipe r44 (pattern 1 sy44)) -(recipe r44 (key (sx44 ing132))) -(recipe r44 (key (sy44 ing220))) -(recipe r44 (key (sx44 ing133))) -(recipe r44 (key (sy44 ing221))) -(recipe r44 (key (sx44 ing134))) -(recipe r44 (key (sy44 ing222))) -(recipe r44 (key (sx44 ing135))) -(recipe r44 (key (sy44 ing223))) -(recipe r44 (key (sx44 ing136))) -(recipe r44 (key (sy44 ing224))) -(recipe r44 (key (sx44 ing137))) -(recipe r44 (key (sy44 ing225))) -(recipe r44 (key (sx44 ing138))) -(recipe r44 (key (sy44 ing226))) -(recipe r44 (key (sx44 ing139))) -(recipe r44 (key (sy44 ing227))) -(recipe r44 (key (sx44 ing140))) -(recipe r44 (key (sy44 ing228))) -(recipe r44 (key (sx44 ing141))) -(recipe r44 (key (sy44 ing229))) -(recipe r44 (key (sx44 ing142))) -(recipe r44 (key (sy44 ing230))) -(recipe r44 (key (sx44 ing143))) -(recipe r44 (key (sy44 ing231))) -(recipe r45 (numIngredients 2)) -(recipe r45 (result (id item45))) -(recipe r45 (pattern 0 sx45)) -(recipe r45 (pattern 1 sy45)) -(recipe r45 (key (sx45 ing135))) -(recipe r45 (key (sy45 ing225))) -(recipe r45 (key (sx45 ing136))) -(recipe r45 (key (sy45 ing226))) -(recipe r45 (key (sx45 ing137))) -(recipe r45 (key (sy45 ing227))) -(recipe r45 (key (sx45 ing138))) -(recipe r45 (key (sy45 ing228))) -(recipe r45 (key (sx45 ing139))) -(recipe r45 (key (sy45 ing229))) -(recipe r45 (key (sx45 ing140))) -(recipe r45 (key (sy45 ing230))) -(recipe r45 (key (sx45 ing141))) -(recipe r45 (key (sy45 ing231))) -(recipe r45 (key (sx45 ing142))) -(recipe r45 (key (sy45 ing232))) -(recipe r45 (key (sx45 ing143))) -(recipe r45 (key (sy45 ing233))) -(recipe r45 (key (sx45 ing144))) -(recipe r45 (key (sy45 ing234))) -(recipe r45 (key (sx45 ing145))) -(recipe r45 (key (sy45 ing235))) -(recipe r45 (key (sx45 ing146))) -(recipe r45 (key (sy45 ing236))) -(recipe r46 (numIngredients 2)) -(recipe r46 (result (id item46))) -(recipe r46 (pattern 0 sx46)) -(recipe r46 (pattern 1 sy46)) -(recipe r46 (key (sx46 ing138))) -(recipe r46 (key (sy46 ing230))) -(recipe r46 (key (sx46 ing139))) -(recipe r46 (key (sy46 ing231))) -(recipe r46 (key (sx46 ing140))) -(recipe r46 (key (sy46 ing232))) -(recipe r46 (key (sx46 ing141))) -(recipe r46 (key (sy46 ing233))) -(recipe r46 (key (sx46 ing142))) -(recipe r46 (key (sy46 ing234))) -(recipe r46 (key (sx46 ing143))) -(recipe r46 (key (sy46 ing235))) -(recipe r46 (key (sx46 ing144))) -(recipe r46 (key (sy46 ing236))) -(recipe r46 (key (sx46 ing145))) -(recipe r46 (key (sy46 ing237))) -(recipe r46 (key (sx46 ing146))) -(recipe r46 (key (sy46 ing238))) -(recipe r46 (key (sx46 ing147))) -(recipe r46 (key (sy46 ing239))) -(recipe r46 (key (sx46 ing148))) -(recipe r46 (key (sy46 ing240))) -(recipe r46 (key (sx46 ing149))) -(recipe r46 (key (sy46 ing241))) -(recipe r47 (numIngredients 2)) -(recipe r47 (result (id item47))) -(recipe r47 (pattern 0 sx47)) -(recipe r47 (pattern 1 sy47)) -(recipe r47 (key (sx47 ing141))) -(recipe r47 (key (sy47 ing235))) -(recipe r47 (key (sx47 ing142))) -(recipe r47 (key (sy47 ing236))) -(recipe r47 (key (sx47 ing143))) -(recipe r47 (key (sy47 ing237))) -(recipe r47 (key (sx47 ing144))) -(recipe r47 (key (sy47 ing238))) -(recipe r47 (key (sx47 ing145))) -(recipe r47 (key (sy47 ing239))) -(recipe r47 (key (sx47 ing146))) -(recipe r47 (key (sy47 ing240))) -(recipe r47 (key (sx47 ing147))) -(recipe r47 (key (sy47 ing241))) -(recipe r47 (key (sx47 ing148))) -(recipe r47 (key (sy47 ing242))) -(recipe r47 (key (sx47 ing149))) -(recipe r47 (key (sy47 ing243))) -(recipe r47 (key (sx47 ing150))) -(recipe r47 (key (sy47 ing244))) -(recipe r47 (key (sx47 ing151))) -(recipe r47 (key (sy47 ing245))) -(recipe r47 (key (sx47 ing152))) -(recipe r47 (key (sy47 ing246))) -(recipe r48 (numIngredients 2)) -(recipe r48 (result (id item48))) -(recipe r48 (pattern 0 sx48)) -(recipe r48 (pattern 1 sy48)) -(recipe r48 (key (sx48 ing144))) -(recipe r48 (key (sy48 ing240))) -(recipe r48 (key (sx48 ing145))) -(recipe r48 (key (sy48 ing241))) -(recipe r48 (key (sx48 ing146))) -(recipe r48 (key (sy48 ing242))) -(recipe r48 (key (sx48 ing147))) -(recipe r48 (key (sy48 ing243))) -(recipe r48 (key (sx48 ing148))) -(recipe r48 (key (sy48 ing244))) -(recipe r48 (key (sx48 ing149))) -(recipe r48 (key (sy48 ing245))) -(recipe r48 (key (sx48 ing150))) -(recipe r48 (key (sy48 ing246))) -(recipe r48 (key (sx48 ing151))) -(recipe r48 (key (sy48 ing247))) -(recipe r48 (key (sx48 ing152))) -(recipe r48 (key (sy48 ing248))) -(recipe r48 (key (sx48 ing153))) -(recipe r48 (key (sy48 ing249))) -(recipe r48 (key (sx48 ing154))) -(recipe r48 (key (sy48 ing250))) -(recipe r48 (key (sx48 ing155))) -(recipe r48 (key (sy48 ing251))) -(recipe r49 (numIngredients 2)) -(recipe r49 (result (id item49))) -(recipe r49 (pattern 0 sx49)) -(recipe r49 (pattern 1 sy49)) -(recipe r49 (key (sx49 ing147))) -(recipe r49 (key (sy49 ing245))) -(recipe r49 (key (sx49 ing148))) -(recipe r49 (key (sy49 ing246))) -(recipe r49 (key (sx49 ing149))) -(recipe r49 (key (sy49 ing247))) -(recipe r49 (key (sx49 ing150))) -(recipe r49 (key (sy49 ing248))) -(recipe r49 (key (sx49 ing151))) -(recipe r49 (key (sy49 ing249))) -(recipe r49 (key (sx49 ing152))) -(recipe r49 (key (sy49 ing250))) -(recipe r49 (key (sx49 ing153))) -(recipe r49 (key (sy49 ing251))) -(recipe r49 (key (sx49 ing154))) -(recipe r49 (key (sy49 ing252))) -(recipe r49 (key (sx49 ing155))) -(recipe r49 (key (sy49 ing253))) -(recipe r49 (key (sx49 ing156))) -(recipe r49 (key (sy49 ing254))) -(recipe r49 (key (sx49 ing157))) -(recipe r49 (key (sy49 ing255))) -(recipe r49 (key (sx49 ing158))) -(recipe r49 (key (sy49 ing256))) -(recipe r50 (numIngredients 2)) -(recipe r50 (result (id item50))) -(recipe r50 (pattern 0 sx50)) -(recipe r50 (pattern 1 sy50)) -(recipe r50 (key (sx50 ing150))) -(recipe r50 (key (sy50 ing250))) -(recipe r50 (key (sx50 ing151))) -(recipe r50 (key (sy50 ing251))) -(recipe r50 (key (sx50 ing152))) -(recipe r50 (key (sy50 ing252))) -(recipe r50 (key (sx50 ing153))) -(recipe r50 (key (sy50 ing253))) -(recipe r50 (key (sx50 ing154))) -(recipe r50 (key (sy50 ing254))) -(recipe r50 (key (sx50 ing155))) -(recipe r50 (key (sy50 ing255))) -(recipe r50 (key (sx50 ing156))) -(recipe r50 (key (sy50 ing256))) -(recipe r50 (key (sx50 ing157))) -(recipe r50 (key (sy50 ing257))) -(recipe r50 (key (sx50 ing158))) -(recipe r50 (key (sy50 ing258))) -(recipe r50 (key (sx50 ing159))) -(recipe r50 (key (sy50 ing259))) -(recipe r50 (key (sx50 ing160))) -(recipe r50 (key (sy50 ing260))) -(recipe r50 (key (sx50 ing161))) -(recipe r50 (key (sy50 ing261))) -(recipe r51 (numIngredients 2)) -(recipe r51 (result (id item51))) -(recipe r51 (pattern 0 sx51)) -(recipe r51 (pattern 1 sy51)) -(recipe r51 (key (sx51 ing153))) -(recipe r51 (key (sy51 ing255))) -(recipe r51 (key (sx51 ing154))) -(recipe r51 (key (sy51 ing256))) -(recipe r51 (key (sx51 ing155))) -(recipe r51 (key (sy51 ing257))) -(recipe r51 (key (sx51 ing156))) -(recipe r51 (key (sy51 ing258))) -(recipe r51 (key (sx51 ing157))) -(recipe r51 (key (sy51 ing259))) -(recipe r51 (key (sx51 ing158))) -(recipe r51 (key (sy51 ing260))) -(recipe r51 (key (sx51 ing159))) -(recipe r51 (key (sy51 ing261))) -(recipe r51 (key (sx51 ing160))) -(recipe r51 (key (sy51 ing262))) -(recipe r51 (key (sx51 ing161))) -(recipe r51 (key (sy51 ing263))) -(recipe r51 (key (sx51 ing162))) -(recipe r51 (key (sy51 ing264))) -(recipe r51 (key (sx51 ing163))) -(recipe r51 (key (sy51 ing265))) -(recipe r51 (key (sx51 ing164))) -(recipe r51 (key (sy51 ing266))) -(recipe r52 (numIngredients 2)) -(recipe r52 (result (id item52))) -(recipe r52 (pattern 0 sx52)) -(recipe r52 (pattern 1 sy52)) -(recipe r52 (key (sx52 ing156))) -(recipe r52 (key (sy52 ing260))) -(recipe r52 (key (sx52 ing157))) -(recipe r52 (key (sy52 ing261))) -(recipe r52 (key (sx52 ing158))) -(recipe r52 (key (sy52 ing262))) -(recipe r52 (key (sx52 ing159))) -(recipe r52 (key (sy52 ing263))) -(recipe r52 (key (sx52 ing160))) -(recipe r52 (key (sy52 ing264))) -(recipe r52 (key (sx52 ing161))) -(recipe r52 (key (sy52 ing265))) -(recipe r52 (key (sx52 ing162))) -(recipe r52 (key (sy52 ing266))) -(recipe r52 (key (sx52 ing163))) -(recipe r52 (key (sy52 ing267))) -(recipe r52 (key (sx52 ing164))) -(recipe r52 (key (sy52 ing268))) -(recipe r52 (key (sx52 ing165))) -(recipe r52 (key (sy52 ing269))) -(recipe r52 (key (sx52 ing166))) -(recipe r52 (key (sy52 ing270))) -(recipe r52 (key (sx52 ing167))) -(recipe r52 (key (sy52 ing271))) -(recipe r53 (numIngredients 2)) -(recipe r53 (result (id item53))) -(recipe r53 (pattern 0 sx53)) -(recipe r53 (pattern 1 sy53)) -(recipe r53 (key (sx53 ing159))) -(recipe r53 (key (sy53 ing265))) -(recipe r53 (key (sx53 ing160))) -(recipe r53 (key (sy53 ing266))) -(recipe r53 (key (sx53 ing161))) -(recipe r53 (key (sy53 ing267))) -(recipe r53 (key (sx53 ing162))) -(recipe r53 (key (sy53 ing268))) -(recipe r53 (key (sx53 ing163))) -(recipe r53 (key (sy53 ing269))) -(recipe r53 (key (sx53 ing164))) -(recipe r53 (key (sy53 ing270))) -(recipe r53 (key (sx53 ing165))) -(recipe r53 (key (sy53 ing271))) -(recipe r53 (key (sx53 ing166))) -(recipe r53 (key (sy53 ing272))) -(recipe r53 (key (sx53 ing167))) -(recipe r53 (key (sy53 ing273))) -(recipe r53 (key (sx53 ing168))) -(recipe r53 (key (sy53 ing274))) -(recipe r53 (key (sx53 ing169))) -(recipe r53 (key (sy53 ing275))) -(recipe r53 (key (sx53 ing170))) -(recipe r53 (key (sy53 ing276))) -(recipe r54 (numIngredients 2)) -(recipe r54 (result (id item54))) -(recipe r54 (pattern 0 sx54)) -(recipe r54 (pattern 1 sy54)) -(recipe r54 (key (sx54 ing162))) -(recipe r54 (key (sy54 ing270))) -(recipe r54 (key (sx54 ing163))) -(recipe r54 (key (sy54 ing271))) -(recipe r54 (key (sx54 ing164))) -(recipe r54 (key (sy54 ing272))) -(recipe r54 (key (sx54 ing165))) -(recipe r54 (key (sy54 ing273))) -(recipe r54 (key (sx54 ing166))) -(recipe r54 (key (sy54 ing274))) -(recipe r54 (key (sx54 ing167))) -(recipe r54 (key (sy54 ing275))) -(recipe r54 (key (sx54 ing168))) -(recipe r54 (key (sy54 ing276))) -(recipe r54 (key (sx54 ing169))) -(recipe r54 (key (sy54 ing277))) -(recipe r54 (key (sx54 ing170))) -(recipe r54 (key (sy54 ing278))) -(recipe r54 (key (sx54 ing171))) -(recipe r54 (key (sy54 ing279))) -(recipe r54 (key (sx54 ing172))) -(recipe r54 (key (sy54 ing280))) -(recipe r54 (key (sx54 ing173))) -(recipe r54 (key (sy54 ing281))) -(recipe r55 (numIngredients 2)) -(recipe r55 (result (id item55))) -(recipe r55 (pattern 0 sx55)) -(recipe r55 (pattern 1 sy55)) -(recipe r55 (key (sx55 ing165))) -(recipe r55 (key (sy55 ing275))) -(recipe r55 (key (sx55 ing166))) -(recipe r55 (key (sy55 ing276))) -(recipe r55 (key (sx55 ing167))) -(recipe r55 (key (sy55 ing277))) -(recipe r55 (key (sx55 ing168))) -(recipe r55 (key (sy55 ing278))) -(recipe r55 (key (sx55 ing169))) -(recipe r55 (key (sy55 ing279))) -(recipe r55 (key (sx55 ing170))) -(recipe r55 (key (sy55 ing280))) -(recipe r55 (key (sx55 ing171))) -(recipe r55 (key (sy55 ing281))) -(recipe r55 (key (sx55 ing172))) -(recipe r55 (key (sy55 ing282))) -(recipe r55 (key (sx55 ing173))) -(recipe r55 (key (sy55 ing283))) -(recipe r55 (key (sx55 ing174))) -(recipe r55 (key (sy55 ing284))) -(recipe r55 (key (sx55 ing175))) -(recipe r55 (key (sy55 ing285))) -(recipe r55 (key (sx55 ing176))) -(recipe r55 (key (sy55 ing286))) -(recipe r56 (numIngredients 2)) -(recipe r56 (result (id item56))) -(recipe r56 (pattern 0 sx56)) -(recipe r56 (pattern 1 sy56)) -(recipe r56 (key (sx56 ing168))) -(recipe r56 (key (sy56 ing280))) -(recipe r56 (key (sx56 ing169))) -(recipe r56 (key (sy56 ing281))) -(recipe r56 (key (sx56 ing170))) -(recipe r56 (key (sy56 ing282))) -(recipe r56 (key (sx56 ing171))) -(recipe r56 (key (sy56 ing283))) -(recipe r56 (key (sx56 ing172))) -(recipe r56 (key (sy56 ing284))) -(recipe r56 (key (sx56 ing173))) -(recipe r56 (key (sy56 ing285))) -(recipe r56 (key (sx56 ing174))) -(recipe r56 (key (sy56 ing286))) -(recipe r56 (key (sx56 ing175))) -(recipe r56 (key (sy56 ing287))) -(recipe r56 (key (sx56 ing176))) -(recipe r56 (key (sy56 ing288))) -(recipe r56 (key (sx56 ing177))) -(recipe r56 (key (sy56 ing289))) -(recipe r56 (key (sx56 ing178))) -(recipe r56 (key (sy56 ing290))) -(recipe r56 (key (sx56 ing179))) -(recipe r56 (key (sy56 ing291))) -(recipe r57 (numIngredients 2)) -(recipe r57 (result (id item57))) -(recipe r57 (pattern 0 sx57)) -(recipe r57 (pattern 1 sy57)) -(recipe r57 (key (sx57 ing171))) -(recipe r57 (key (sy57 ing285))) -(recipe r57 (key (sx57 ing172))) -(recipe r57 (key (sy57 ing286))) -(recipe r57 (key (sx57 ing173))) -(recipe r57 (key (sy57 ing287))) -(recipe r57 (key (sx57 ing174))) -(recipe r57 (key (sy57 ing288))) -(recipe r57 (key (sx57 ing175))) -(recipe r57 (key (sy57 ing289))) -(recipe r57 (key (sx57 ing176))) -(recipe r57 (key (sy57 ing290))) -(recipe r57 (key (sx57 ing177))) -(recipe r57 (key (sy57 ing291))) -(recipe r57 (key (sx57 ing178))) -(recipe r57 (key (sy57 ing292))) -(recipe r57 (key (sx57 ing179))) -(recipe r57 (key (sy57 ing293))) -(recipe r57 (key (sx57 ing180))) -(recipe r57 (key (sy57 ing294))) -(recipe r57 (key (sx57 ing181))) -(recipe r57 (key (sy57 ing295))) -(recipe r57 (key (sx57 ing182))) -(recipe r57 (key (sy57 ing296))) -(recipe r58 (numIngredients 2)) -(recipe r58 (result (id item58))) -(recipe r58 (pattern 0 sx58)) -(recipe r58 (pattern 1 sy58)) -(recipe r58 (key (sx58 ing174))) -(recipe r58 (key (sy58 ing290))) -(recipe r58 (key (sx58 ing175))) -(recipe r58 (key (sy58 ing291))) -(recipe r58 (key (sx58 ing176))) -(recipe r58 (key (sy58 ing292))) -(recipe r58 (key (sx58 ing177))) -(recipe r58 (key (sy58 ing293))) -(recipe r58 (key (sx58 ing178))) -(recipe r58 (key (sy58 ing294))) -(recipe r58 (key (sx58 ing179))) -(recipe r58 (key (sy58 ing295))) -(recipe r58 (key (sx58 ing180))) -(recipe r58 (key (sy58 ing296))) -(recipe r58 (key (sx58 ing181))) -(recipe r58 (key (sy58 ing297))) -(recipe r58 (key (sx58 ing182))) -(recipe r58 (key (sy58 ing298))) -(recipe r58 (key (sx58 ing183))) -(recipe r58 (key (sy58 ing299))) -(recipe r58 (key (sx58 ing184))) -(recipe r58 (key (sy58 ing300))) -(recipe r58 (key (sx58 ing185))) -(recipe r58 (key (sy58 ing301))) -(recipe r59 (numIngredients 2)) -(recipe r59 (result (id item59))) -(recipe r59 (pattern 0 sx59)) -(recipe r59 (pattern 1 sy59)) -(recipe r59 (key (sx59 ing177))) -(recipe r59 (key (sy59 ing295))) -(recipe r59 (key (sx59 ing178))) -(recipe r59 (key (sy59 ing296))) -(recipe r59 (key (sx59 ing179))) -(recipe r59 (key (sy59 ing297))) -(recipe r59 (key (sx59 ing180))) -(recipe r59 (key (sy59 ing298))) -(recipe r59 (key (sx59 ing181))) -(recipe r59 (key (sy59 ing299))) -(recipe r59 (key (sx59 ing182))) -(recipe r59 (key (sy59 ing300))) -(recipe r59 (key (sx59 ing183))) -(recipe r59 (key (sy59 ing301))) -(recipe r59 (key (sx59 ing184))) -(recipe r59 (key (sy59 ing302))) -(recipe r59 (key (sx59 ing185))) -(recipe r59 (key (sy59 ing303))) -(recipe r59 (key (sx59 ing186))) -(recipe r59 (key (sy59 ing304))) -(recipe r59 (key (sx59 ing187))) -(recipe r59 (key (sy59 ing305))) -(recipe r59 (key (sx59 ing188))) -(recipe r59 (key (sy59 ing306))) -(recipe r60 (numIngredients 2)) -(recipe r60 (result (id item60))) -(recipe r60 (pattern 0 sx60)) -(recipe r60 (pattern 1 sy60)) -(recipe r60 (key (sx60 ing180))) -(recipe r60 (key (sy60 ing300))) -(recipe r60 (key (sx60 ing181))) -(recipe r60 (key (sy60 ing301))) -(recipe r60 (key (sx60 ing182))) -(recipe r60 (key (sy60 ing302))) -(recipe r60 (key (sx60 ing183))) -(recipe r60 (key (sy60 ing303))) -(recipe r60 (key (sx60 ing184))) -(recipe r60 (key (sy60 ing304))) -(recipe r60 (key (sx60 ing185))) -(recipe r60 (key (sy60 ing305))) -(recipe r60 (key (sx60 ing186))) -(recipe r60 (key (sy60 ing306))) -(recipe r60 (key (sx60 ing187))) -(recipe r60 (key (sy60 ing307))) -(recipe r60 (key (sx60 ing188))) -(recipe r60 (key (sy60 ing308))) -(recipe r60 (key (sx60 ing189))) -(recipe r60 (key (sy60 ing309))) -(recipe r60 (key (sx60 ing190))) -(recipe r60 (key (sy60 ing310))) -(recipe r60 (key (sx60 ing191))) -(recipe r60 (key (sy60 ing311))) -(recipe r61 (numIngredients 2)) -(recipe r61 (result (id item61))) -(recipe r61 (pattern 0 sx61)) -(recipe r61 (pattern 1 sy61)) -(recipe r61 (key (sx61 ing183))) -(recipe r61 (key (sy61 ing305))) -(recipe r61 (key (sx61 ing184))) -(recipe r61 (key (sy61 ing306))) -(recipe r61 (key (sx61 ing185))) -(recipe r61 (key (sy61 ing307))) -(recipe r61 (key (sx61 ing186))) -(recipe r61 (key (sy61 ing308))) -(recipe r61 (key (sx61 ing187))) -(recipe r61 (key (sy61 ing309))) -(recipe r61 (key (sx61 ing188))) -(recipe r61 (key (sy61 ing310))) -(recipe r61 (key (sx61 ing189))) -(recipe r61 (key (sy61 ing311))) -(recipe r61 (key (sx61 ing190))) -(recipe r61 (key (sy61 ing312))) -(recipe r61 (key (sx61 ing191))) -(recipe r61 (key (sy61 ing313))) -(recipe r61 (key (sx61 ing192))) -(recipe r61 (key (sy61 ing314))) -(recipe r61 (key (sx61 ing193))) -(recipe r61 (key (sy61 ing315))) -(recipe r61 (key (sx61 ing194))) -(recipe r61 (key (sy61 ing316))) -(recipe r62 (numIngredients 2)) -(recipe r62 (result (id item62))) -(recipe r62 (pattern 0 sx62)) -(recipe r62 (pattern 1 sy62)) -(recipe r62 (key (sx62 ing186))) -(recipe r62 (key (sy62 ing310))) -(recipe r62 (key (sx62 ing187))) -(recipe r62 (key (sy62 ing311))) -(recipe r62 (key (sx62 ing188))) -(recipe r62 (key (sy62 ing312))) -(recipe r62 (key (sx62 ing189))) -(recipe r62 (key (sy62 ing313))) -(recipe r62 (key (sx62 ing190))) -(recipe r62 (key (sy62 ing314))) -(recipe r62 (key (sx62 ing191))) -(recipe r62 (key (sy62 ing315))) -(recipe r62 (key (sx62 ing192))) -(recipe r62 (key (sy62 ing316))) -(recipe r62 (key (sx62 ing193))) -(recipe r62 (key (sy62 ing317))) -(recipe r62 (key (sx62 ing194))) -(recipe r62 (key (sy62 ing318))) -(recipe r62 (key (sx62 ing195))) -(recipe r62 (key (sy62 ing319))) -(recipe r62 (key (sx62 ing196))) -(recipe r62 (key (sy62 ing320))) -(recipe r62 (key (sx62 ing197))) -(recipe r62 (key (sy62 ing321))) -(recipe r63 (numIngredients 2)) -(recipe r63 (result (id item63))) -(recipe r63 (pattern 0 sx63)) -(recipe r63 (pattern 1 sy63)) -(recipe r63 (key (sx63 ing189))) -(recipe r63 (key (sy63 ing315))) -(recipe r63 (key (sx63 ing190))) -(recipe r63 (key (sy63 ing316))) -(recipe r63 (key (sx63 ing191))) -(recipe r63 (key (sy63 ing317))) -(recipe r63 (key (sx63 ing192))) -(recipe r63 (key (sy63 ing318))) -(recipe r63 (key (sx63 ing193))) -(recipe r63 (key (sy63 ing319))) -(recipe r63 (key (sx63 ing194))) -(recipe r63 (key (sy63 ing320))) -(recipe r63 (key (sx63 ing195))) -(recipe r63 (key (sy63 ing321))) -(recipe r63 (key (sx63 ing196))) -(recipe r63 (key (sy63 ing322))) -(recipe r63 (key (sx63 ing197))) -(recipe r63 (key (sy63 ing323))) -(recipe r63 (key (sx63 ing198))) -(recipe r63 (key (sy63 ing324))) -(recipe r63 (key (sx63 ing199))) -(recipe r63 (key (sy63 ing325))) -(recipe r63 (key (sx63 ing200))) -(recipe r63 (key (sy63 ing326))) -(recipe r64 (numIngredients 2)) -(recipe r64 (result (id item64))) -(recipe r64 (pattern 0 sx64)) -(recipe r64 (pattern 1 sy64)) -(recipe r64 (key (sx64 ing192))) -(recipe r64 (key (sy64 ing320))) -(recipe r64 (key (sx64 ing193))) -(recipe r64 (key (sy64 ing321))) -(recipe r64 (key (sx64 ing194))) -(recipe r64 (key (sy64 ing322))) -(recipe r64 (key (sx64 ing195))) -(recipe r64 (key (sy64 ing323))) -(recipe r64 (key (sx64 ing196))) -(recipe r64 (key (sy64 ing324))) -(recipe r64 (key (sx64 ing197))) -(recipe r64 (key (sy64 ing325))) -(recipe r64 (key (sx64 ing198))) -(recipe r64 (key (sy64 ing326))) -(recipe r64 (key (sx64 ing199))) -(recipe r64 (key (sy64 ing327))) -(recipe r64 (key (sx64 ing200))) -(recipe r64 (key (sy64 ing328))) -(recipe r64 (key (sx64 ing201))) -(recipe r64 (key (sy64 ing329))) -(recipe r64 (key (sx64 ing202))) -(recipe r64 (key (sy64 ing330))) -(recipe r64 (key (sx64 ing203))) -(recipe r64 (key (sy64 ing331))) -(recipe r65 (numIngredients 2)) -(recipe r65 (result (id item65))) -(recipe r65 (pattern 0 sx65)) -(recipe r65 (pattern 1 sy65)) -(recipe r65 (key (sx65 ing195))) -(recipe r65 (key (sy65 ing325))) -(recipe r65 (key (sx65 ing196))) -(recipe r65 (key (sy65 ing326))) -(recipe r65 (key (sx65 ing197))) -(recipe r65 (key (sy65 ing327))) -(recipe r65 (key (sx65 ing198))) -(recipe r65 (key (sy65 ing328))) -(recipe r65 (key (sx65 ing199))) -(recipe r65 (key (sy65 ing329))) -(recipe r65 (key (sx65 ing200))) -(recipe r65 (key (sy65 ing330))) -(recipe r65 (key (sx65 ing201))) -(recipe r65 (key (sy65 ing331))) -(recipe r65 (key (sx65 ing202))) -(recipe r65 (key (sy65 ing332))) -(recipe r65 (key (sx65 ing203))) -(recipe r65 (key (sy65 ing333))) -(recipe r65 (key (sx65 ing204))) -(recipe r65 (key (sy65 ing334))) -(recipe r65 (key (sx65 ing205))) -(recipe r65 (key (sy65 ing335))) -(recipe r65 (key (sx65 ing206))) -(recipe r65 (key (sy65 ing336))) -(recipe r66 (numIngredients 2)) -(recipe r66 (result (id item66))) -(recipe r66 (pattern 0 sx66)) -(recipe r66 (pattern 1 sy66)) -(recipe r66 (key (sx66 ing198))) -(recipe r66 (key (sy66 ing330))) -(recipe r66 (key (sx66 ing199))) -(recipe r66 (key (sy66 ing331))) -(recipe r66 (key (sx66 ing200))) -(recipe r66 (key (sy66 ing332))) -(recipe r66 (key (sx66 ing201))) -(recipe r66 (key (sy66 ing333))) -(recipe r66 (key (sx66 ing202))) -(recipe r66 (key (sy66 ing334))) -(recipe r66 (key (sx66 ing203))) -(recipe r66 (key (sy66 ing335))) -(recipe r66 (key (sx66 ing204))) -(recipe r66 (key (sy66 ing336))) -(recipe r66 (key (sx66 ing205))) -(recipe r66 (key (sy66 ing337))) -(recipe r66 (key (sx66 ing206))) -(recipe r66 (key (sy66 ing338))) -(recipe r66 (key (sx66 ing207))) -(recipe r66 (key (sy66 ing339))) -(recipe r66 (key (sx66 ing208))) -(recipe r66 (key (sy66 ing340))) -(recipe r66 (key (sx66 ing209))) -(recipe r66 (key (sy66 ing341))) -(recipe r67 (numIngredients 2)) -(recipe r67 (result (id item67))) -(recipe r67 (pattern 0 sx67)) -(recipe r67 (pattern 1 sy67)) -(recipe r67 (key (sx67 ing201))) -(recipe r67 (key (sy67 ing335))) -(recipe r67 (key (sx67 ing202))) -(recipe r67 (key (sy67 ing336))) -(recipe r67 (key (sx67 ing203))) -(recipe r67 (key (sy67 ing337))) -(recipe r67 (key (sx67 ing204))) -(recipe r67 (key (sy67 ing338))) -(recipe r67 (key (sx67 ing205))) -(recipe r67 (key (sy67 ing339))) -(recipe r67 (key (sx67 ing206))) -(recipe r67 (key (sy67 ing340))) -(recipe r67 (key (sx67 ing207))) -(recipe r67 (key (sy67 ing341))) -(recipe r67 (key (sx67 ing208))) -(recipe r67 (key (sy67 ing342))) -(recipe r67 (key (sx67 ing209))) -(recipe r67 (key (sy67 ing343))) -(recipe r67 (key (sx67 ing210))) -(recipe r67 (key (sy67 ing344))) -(recipe r67 (key (sx67 ing211))) -(recipe r67 (key (sy67 ing345))) -(recipe r67 (key (sx67 ing212))) -(recipe r67 (key (sy67 ing346))) -(recipe r68 (numIngredients 2)) -(recipe r68 (result (id item68))) -(recipe r68 (pattern 0 sx68)) -(recipe r68 (pattern 1 sy68)) -(recipe r68 (key (sx68 ing204))) -(recipe r68 (key (sy68 ing340))) -(recipe r68 (key (sx68 ing205))) -(recipe r68 (key (sy68 ing341))) -(recipe r68 (key (sx68 ing206))) -(recipe r68 (key (sy68 ing342))) -(recipe r68 (key (sx68 ing207))) -(recipe r68 (key (sy68 ing343))) -(recipe r68 (key (sx68 ing208))) -(recipe r68 (key (sy68 ing344))) -(recipe r68 (key (sx68 ing209))) -(recipe r68 (key (sy68 ing345))) -(recipe r68 (key (sx68 ing210))) -(recipe r68 (key (sy68 ing346))) -(recipe r68 (key (sx68 ing211))) -(recipe r68 (key (sy68 ing347))) -(recipe r68 (key (sx68 ing212))) -(recipe r68 (key (sy68 ing348))) -(recipe r68 (key (sx68 ing213))) -(recipe r68 (key (sy68 ing349))) -(recipe r68 (key (sx68 ing214))) -(recipe r68 (key (sy68 ing350))) -(recipe r68 (key (sx68 ing215))) -(recipe r68 (key (sy68 ing351))) -(recipe r69 (numIngredients 2)) -(recipe r69 (result (id item69))) -(recipe r69 (pattern 0 sx69)) -(recipe r69 (pattern 1 sy69)) -(recipe r69 (key (sx69 ing207))) -(recipe r69 (key (sy69 ing345))) -(recipe r69 (key (sx69 ing208))) -(recipe r69 (key (sy69 ing346))) -(recipe r69 (key (sx69 ing209))) -(recipe r69 (key (sy69 ing347))) -(recipe r69 (key (sx69 ing210))) -(recipe r69 (key (sy69 ing348))) -(recipe r69 (key (sx69 ing211))) -(recipe r69 (key (sy69 ing349))) -(recipe r69 (key (sx69 ing212))) -(recipe r69 (key (sy69 ing350))) -(recipe r69 (key (sx69 ing213))) -(recipe r69 (key (sy69 ing351))) -(recipe r69 (key (sx69 ing214))) -(recipe r69 (key (sy69 ing352))) -(recipe r69 (key (sx69 ing215))) -(recipe r69 (key (sy69 ing353))) -(recipe r69 (key (sx69 ing216))) -(recipe r69 (key (sy69 ing354))) -(recipe r69 (key (sx69 ing217))) -(recipe r69 (key (sy69 ing355))) -(recipe r69 (key (sx69 ing218))) -(recipe r69 (key (sy69 ing356))) -(recipe r70 (numIngredients 2)) -(recipe r70 (result (id item70))) -(recipe r70 (pattern 0 sx70)) -(recipe r70 (pattern 1 sy70)) -(recipe r70 (key (sx70 ing210))) -(recipe r70 (key (sy70 ing350))) -(recipe r70 (key (sx70 ing211))) -(recipe r70 (key (sy70 ing351))) -(recipe r70 (key (sx70 ing212))) -(recipe r70 (key (sy70 ing352))) -(recipe r70 (key (sx70 ing213))) -(recipe r70 (key (sy70 ing353))) -(recipe r70 (key (sx70 ing214))) -(recipe r70 (key (sy70 ing354))) -(recipe r70 (key (sx70 ing215))) -(recipe r70 (key (sy70 ing355))) -(recipe r70 (key (sx70 ing216))) -(recipe r70 (key (sy70 ing356))) -(recipe r70 (key (sx70 ing217))) -(recipe r70 (key (sy70 ing357))) -(recipe r70 (key (sx70 ing218))) -(recipe r70 (key (sy70 ing358))) -(recipe r70 (key (sx70 ing219))) -(recipe r70 (key (sy70 ing359))) -(recipe r70 (key (sx70 ing220))) -(recipe r70 (key (sy70 ing360))) -(recipe r70 (key (sx70 ing221))) -(recipe r70 (key (sy70 ing361))) -(recipe r71 (numIngredients 2)) -(recipe r71 (result (id item71))) -(recipe r71 (pattern 0 sx71)) -(recipe r71 (pattern 1 sy71)) -(recipe r71 (key (sx71 ing213))) -(recipe r71 (key (sy71 ing355))) -(recipe r71 (key (sx71 ing214))) -(recipe r71 (key (sy71 ing356))) -(recipe r71 (key (sx71 ing215))) -(recipe r71 (key (sy71 ing357))) -(recipe r71 (key (sx71 ing216))) -(recipe r71 (key (sy71 ing358))) -(recipe r71 (key (sx71 ing217))) -(recipe r71 (key (sy71 ing359))) -(recipe r71 (key (sx71 ing218))) -(recipe r71 (key (sy71 ing360))) -(recipe r71 (key (sx71 ing219))) -(recipe r71 (key (sy71 ing361))) -(recipe r71 (key (sx71 ing220))) -(recipe r71 (key (sy71 ing362))) -(recipe r71 (key (sx71 ing221))) -(recipe r71 (key (sy71 ing363))) -(recipe r71 (key (sx71 ing222))) -(recipe r71 (key (sy71 ing364))) -(recipe r71 (key (sx71 ing223))) -(recipe r71 (key (sy71 ing365))) -(recipe r71 (key (sx71 ing224))) -(recipe r71 (key (sy71 ing366))) -(recipe r72 (numIngredients 2)) -(recipe r72 (result (id item72))) -(recipe r72 (pattern 0 sx72)) -(recipe r72 (pattern 1 sy72)) -(recipe r72 (key (sx72 ing216))) -(recipe r72 (key (sy72 ing360))) -(recipe r72 (key (sx72 ing217))) -(recipe r72 (key (sy72 ing361))) -(recipe r72 (key (sx72 ing218))) -(recipe r72 (key (sy72 ing362))) -(recipe r72 (key (sx72 ing219))) -(recipe r72 (key (sy72 ing363))) -(recipe r72 (key (sx72 ing220))) -(recipe r72 (key (sy72 ing364))) -(recipe r72 (key (sx72 ing221))) -(recipe r72 (key (sy72 ing365))) -(recipe r72 (key (sx72 ing222))) -(recipe r72 (key (sy72 ing366))) -(recipe r72 (key (sx72 ing223))) -(recipe r72 (key (sy72 ing367))) -(recipe r72 (key (sx72 ing224))) -(recipe r72 (key (sy72 ing368))) -(recipe r72 (key (sx72 ing225))) -(recipe r72 (key (sy72 ing369))) -(recipe r72 (key (sx72 ing226))) -(recipe r72 (key (sy72 ing370))) -(recipe r72 (key (sx72 ing227))) -(recipe r72 (key (sy72 ing371))) -(recipe r73 (numIngredients 2)) -(recipe r73 (result (id item73))) -(recipe r73 (pattern 0 sx73)) -(recipe r73 (pattern 1 sy73)) -(recipe r73 (key (sx73 ing219))) -(recipe r73 (key (sy73 ing365))) -(recipe r73 (key (sx73 ing220))) -(recipe r73 (key (sy73 ing366))) -(recipe r73 (key (sx73 ing221))) -(recipe r73 (key (sy73 ing367))) -(recipe r73 (key (sx73 ing222))) -(recipe r73 (key (sy73 ing368))) -(recipe r73 (key (sx73 ing223))) -(recipe r73 (key (sy73 ing369))) -(recipe r73 (key (sx73 ing224))) -(recipe r73 (key (sy73 ing370))) -(recipe r73 (key (sx73 ing225))) -(recipe r73 (key (sy73 ing371))) -(recipe r73 (key (sx73 ing226))) -(recipe r73 (key (sy73 ing372))) -(recipe r73 (key (sx73 ing227))) -(recipe r73 (key (sy73 ing373))) -(recipe r73 (key (sx73 ing228))) -(recipe r73 (key (sy73 ing374))) -(recipe r73 (key (sx73 ing229))) -(recipe r73 (key (sy73 ing375))) -(recipe r73 (key (sx73 ing230))) -(recipe r73 (key (sy73 ing376))) -(recipe r74 (numIngredients 2)) -(recipe r74 (result (id item74))) -(recipe r74 (pattern 0 sx74)) -(recipe r74 (pattern 1 sy74)) -(recipe r74 (key (sx74 ing222))) -(recipe r74 (key (sy74 ing370))) -(recipe r74 (key (sx74 ing223))) -(recipe r74 (key (sy74 ing371))) -(recipe r74 (key (sx74 ing224))) -(recipe r74 (key (sy74 ing372))) -(recipe r74 (key (sx74 ing225))) -(recipe r74 (key (sy74 ing373))) -(recipe r74 (key (sx74 ing226))) -(recipe r74 (key (sy74 ing374))) -(recipe r74 (key (sx74 ing227))) -(recipe r74 (key (sy74 ing375))) -(recipe r74 (key (sx74 ing228))) -(recipe r74 (key (sy74 ing376))) -(recipe r74 (key (sx74 ing229))) -(recipe r74 (key (sy74 ing377))) -(recipe r74 (key (sx74 ing230))) -(recipe r74 (key (sy74 ing378))) -(recipe r74 (key (sx74 ing231))) -(recipe r74 (key (sy74 ing379))) -(recipe r74 (key (sx74 ing232))) -(recipe r74 (key (sy74 ing380))) -(recipe r74 (key (sx74 ing233))) -(recipe r74 (key (sy74 ing381))) -(recipe r75 (numIngredients 2)) -(recipe r75 (result (id item75))) -(recipe r75 (pattern 0 sx75)) -(recipe r75 (pattern 1 sy75)) -(recipe r75 (key (sx75 ing225))) -(recipe r75 (key (sy75 ing375))) -(recipe r75 (key (sx75 ing226))) -(recipe r75 (key (sy75 ing376))) -(recipe r75 (key (sx75 ing227))) -(recipe r75 (key (sy75 ing377))) -(recipe r75 (key (sx75 ing228))) -(recipe r75 (key (sy75 ing378))) -(recipe r75 (key (sx75 ing229))) -(recipe r75 (key (sy75 ing379))) -(recipe r75 (key (sx75 ing230))) -(recipe r75 (key (sy75 ing380))) -(recipe r75 (key (sx75 ing231))) -(recipe r75 (key (sy75 ing381))) -(recipe r75 (key (sx75 ing232))) -(recipe r75 (key (sy75 ing382))) -(recipe r75 (key (sx75 ing233))) -(recipe r75 (key (sy75 ing383))) -(recipe r75 (key (sx75 ing234))) -(recipe r75 (key (sy75 ing384))) -(recipe r75 (key (sx75 ing235))) -(recipe r75 (key (sy75 ing385))) -(recipe r75 (key (sx75 ing236))) -(recipe r75 (key (sy75 ing386))) -(recipe r76 (numIngredients 2)) -(recipe r76 (result (id item76))) -(recipe r76 (pattern 0 sx76)) -(recipe r76 (pattern 1 sy76)) -(recipe r76 (key (sx76 ing228))) -(recipe r76 (key (sy76 ing380))) -(recipe r76 (key (sx76 ing229))) -(recipe r76 (key (sy76 ing381))) -(recipe r76 (key (sx76 ing230))) -(recipe r76 (key (sy76 ing382))) -(recipe r76 (key (sx76 ing231))) -(recipe r76 (key (sy76 ing383))) -(recipe r76 (key (sx76 ing232))) -(recipe r76 (key (sy76 ing384))) -(recipe r76 (key (sx76 ing233))) -(recipe r76 (key (sy76 ing385))) -(recipe r76 (key (sx76 ing234))) -(recipe r76 (key (sy76 ing386))) -(recipe r76 (key (sx76 ing235))) -(recipe r76 (key (sy76 ing387))) -(recipe r76 (key (sx76 ing236))) -(recipe r76 (key (sy76 ing388))) -(recipe r76 (key (sx76 ing237))) -(recipe r76 (key (sy76 ing389))) -(recipe r76 (key (sx76 ing238))) -(recipe r76 (key (sy76 ing390))) -(recipe r76 (key (sx76 ing239))) -(recipe r76 (key (sy76 ing391))) -(recipe r77 (numIngredients 2)) -(recipe r77 (result (id item77))) -(recipe r77 (pattern 0 sx77)) -(recipe r77 (pattern 1 sy77)) -(recipe r77 (key (sx77 ing231))) -(recipe r77 (key (sy77 ing385))) -(recipe r77 (key (sx77 ing232))) -(recipe r77 (key (sy77 ing386))) -(recipe r77 (key (sx77 ing233))) -(recipe r77 (key (sy77 ing387))) -(recipe r77 (key (sx77 ing234))) -(recipe r77 (key (sy77 ing388))) -(recipe r77 (key (sx77 ing235))) -(recipe r77 (key (sy77 ing389))) -(recipe r77 (key (sx77 ing236))) -(recipe r77 (key (sy77 ing390))) -(recipe r77 (key (sx77 ing237))) -(recipe r77 (key (sy77 ing391))) -(recipe r77 (key (sx77 ing238))) -(recipe r77 (key (sy77 ing392))) -(recipe r77 (key (sx77 ing239))) -(recipe r77 (key (sy77 ing393))) -(recipe r77 (key (sx77 ing240))) -(recipe r77 (key (sy77 ing394))) -(recipe r77 (key (sx77 ing241))) -(recipe r77 (key (sy77 ing395))) -(recipe r77 (key (sx77 ing242))) -(recipe r77 (key (sy77 ing396))) -(recipe r78 (numIngredients 2)) -(recipe r78 (result (id item78))) -(recipe r78 (pattern 0 sx78)) -(recipe r78 (pattern 1 sy78)) -(recipe r78 (key (sx78 ing234))) -(recipe r78 (key (sy78 ing390))) -(recipe r78 (key (sx78 ing235))) -(recipe r78 (key (sy78 ing391))) -(recipe r78 (key (sx78 ing236))) -(recipe r78 (key (sy78 ing392))) -(recipe r78 (key (sx78 ing237))) -(recipe r78 (key (sy78 ing393))) -(recipe r78 (key (sx78 ing238))) -(recipe r78 (key (sy78 ing394))) -(recipe r78 (key (sx78 ing239))) -(recipe r78 (key (sy78 ing395))) -(recipe r78 (key (sx78 ing240))) -(recipe r78 (key (sy78 ing396))) -(recipe r78 (key (sx78 ing241))) -(recipe r78 (key (sy78 ing397))) -(recipe r78 (key (sx78 ing242))) -(recipe r78 (key (sy78 ing398))) -(recipe r78 (key (sx78 ing243))) -(recipe r78 (key (sy78 ing399))) -(recipe r78 (key (sx78 ing244))) -(recipe r78 (key (sy78 ing400))) -(recipe r78 (key (sx78 ing245))) -(recipe r78 (key (sy78 ing401))) -(recipe r79 (numIngredients 2)) -(recipe r79 (result (id item79))) -(recipe r79 (pattern 0 sx79)) -(recipe r79 (pattern 1 sy79)) -(recipe r79 (key (sx79 ing237))) -(recipe r79 (key (sy79 ing395))) -(recipe r79 (key (sx79 ing238))) -(recipe r79 (key (sy79 ing396))) -(recipe r79 (key (sx79 ing239))) -(recipe r79 (key (sy79 ing397))) -(recipe r79 (key (sx79 ing240))) -(recipe r79 (key (sy79 ing398))) -(recipe r79 (key (sx79 ing241))) -(recipe r79 (key (sy79 ing399))) -(recipe r79 (key (sx79 ing242))) -(recipe r79 (key (sy79 ing400))) -(recipe r79 (key (sx79 ing243))) -(recipe r79 (key (sy79 ing401))) -(recipe r79 (key (sx79 ing244))) -(recipe r79 (key (sy79 ing402))) -(recipe r79 (key (sx79 ing245))) -(recipe r79 (key (sy79 ing403))) -(recipe r79 (key (sx79 ing246))) -(recipe r79 (key (sy79 ing404))) -(recipe r79 (key (sx79 ing247))) -(recipe r79 (key (sy79 ing405))) -(recipe r79 (key (sx79 ing248))) -(recipe r79 (key (sy79 ing406))) -(recipe r80 (numIngredients 2)) -(recipe r80 (result (id item80))) -(recipe r80 (pattern 0 sx80)) -(recipe r80 (pattern 1 sy80)) -(recipe r80 (key (sx80 ing240))) -(recipe r80 (key (sy80 ing400))) -(recipe r80 (key (sx80 ing241))) -(recipe r80 (key (sy80 ing401))) -(recipe r80 (key (sx80 ing242))) -(recipe r80 (key (sy80 ing402))) -(recipe r80 (key (sx80 ing243))) -(recipe r80 (key (sy80 ing403))) -(recipe r80 (key (sx80 ing244))) -(recipe r80 (key (sy80 ing404))) -(recipe r80 (key (sx80 ing245))) -(recipe r80 (key (sy80 ing405))) -(recipe r80 (key (sx80 ing246))) -(recipe r80 (key (sy80 ing406))) -(recipe r80 (key (sx80 ing247))) -(recipe r80 (key (sy80 ing407))) -(recipe r80 (key (sx80 ing248))) -(recipe r80 (key (sy80 ing408))) -(recipe r80 (key (sx80 ing249))) -(recipe r80 (key (sy80 ing409))) -(recipe r80 (key (sx80 ing250))) -(recipe r80 (key (sy80 ing410))) -(recipe r80 (key (sx80 ing251))) -(recipe r80 (key (sy80 ing411))) -(recipe r81 (numIngredients 2)) -(recipe r81 (result (id item81))) -(recipe r81 (pattern 0 sx81)) -(recipe r81 (pattern 1 sy81)) -(recipe r81 (key (sx81 ing243))) -(recipe r81 (key (sy81 ing405))) -(recipe r81 (key (sx81 ing244))) -(recipe r81 (key (sy81 ing406))) -(recipe r81 (key (sx81 ing245))) -(recipe r81 (key (sy81 ing407))) -(recipe r81 (key (sx81 ing246))) -(recipe r81 (key (sy81 ing408))) -(recipe r81 (key (sx81 ing247))) -(recipe r81 (key (sy81 ing409))) -(recipe r81 (key (sx81 ing248))) -(recipe r81 (key (sy81 ing410))) -(recipe r81 (key (sx81 ing249))) -(recipe r81 (key (sy81 ing411))) -(recipe r81 (key (sx81 ing250))) -(recipe r81 (key (sy81 ing412))) -(recipe r81 (key (sx81 ing251))) -(recipe r81 (key (sy81 ing413))) -(recipe r81 (key (sx81 ing252))) -(recipe r81 (key (sy81 ing414))) -(recipe r81 (key (sx81 ing253))) -(recipe r81 (key (sy81 ing415))) -(recipe r81 (key (sx81 ing254))) -(recipe r81 (key (sy81 ing416))) -(recipe r82 (numIngredients 2)) -(recipe r82 (result (id item82))) -(recipe r82 (pattern 0 sx82)) -(recipe r82 (pattern 1 sy82)) -(recipe r82 (key (sx82 ing246))) -(recipe r82 (key (sy82 ing410))) -(recipe r82 (key (sx82 ing247))) -(recipe r82 (key (sy82 ing411))) -(recipe r82 (key (sx82 ing248))) -(recipe r82 (key (sy82 ing412))) -(recipe r82 (key (sx82 ing249))) -(recipe r82 (key (sy82 ing413))) -(recipe r82 (key (sx82 ing250))) -(recipe r82 (key (sy82 ing414))) -(recipe r82 (key (sx82 ing251))) -(recipe r82 (key (sy82 ing415))) -(recipe r82 (key (sx82 ing252))) -(recipe r82 (key (sy82 ing416))) -(recipe r82 (key (sx82 ing253))) -(recipe r82 (key (sy82 ing417))) -(recipe r82 (key (sx82 ing254))) -(recipe r82 (key (sy82 ing418))) -(recipe r82 (key (sx82 ing255))) -(recipe r82 (key (sy82 ing419))) -(recipe r82 (key (sx82 ing256))) -(recipe r82 (key (sy82 ing420))) -(recipe r82 (key (sx82 ing257))) -(recipe r82 (key (sy82 ing421))) -(recipe r83 (numIngredients 2)) -(recipe r83 (result (id item83))) -(recipe r83 (pattern 0 sx83)) -(recipe r83 (pattern 1 sy83)) -(recipe r83 (key (sx83 ing249))) -(recipe r83 (key (sy83 ing415))) -(recipe r83 (key (sx83 ing250))) -(recipe r83 (key (sy83 ing416))) -(recipe r83 (key (sx83 ing251))) -(recipe r83 (key (sy83 ing417))) -(recipe r83 (key (sx83 ing252))) -(recipe r83 (key (sy83 ing418))) -(recipe r83 (key (sx83 ing253))) -(recipe r83 (key (sy83 ing419))) -(recipe r83 (key (sx83 ing254))) -(recipe r83 (key (sy83 ing420))) -(recipe r83 (key (sx83 ing255))) -(recipe r83 (key (sy83 ing421))) -(recipe r83 (key (sx83 ing256))) -(recipe r83 (key (sy83 ing422))) -(recipe r83 (key (sx83 ing257))) -(recipe r83 (key (sy83 ing423))) -(recipe r83 (key (sx83 ing258))) -(recipe r83 (key (sy83 ing424))) -(recipe r83 (key (sx83 ing259))) -(recipe r83 (key (sy83 ing425))) -(recipe r83 (key (sx83 ing260))) -(recipe r83 (key (sy83 ing426))) -(recipe r84 (numIngredients 2)) -(recipe r84 (result (id item84))) -(recipe r84 (pattern 0 sx84)) -(recipe r84 (pattern 1 sy84)) -(recipe r84 (key (sx84 ing252))) -(recipe r84 (key (sy84 ing420))) -(recipe r84 (key (sx84 ing253))) -(recipe r84 (key (sy84 ing421))) -(recipe r84 (key (sx84 ing254))) -(recipe r84 (key (sy84 ing422))) -(recipe r84 (key (sx84 ing255))) -(recipe r84 (key (sy84 ing423))) -(recipe r84 (key (sx84 ing256))) -(recipe r84 (key (sy84 ing424))) -(recipe r84 (key (sx84 ing257))) -(recipe r84 (key (sy84 ing425))) -(recipe r84 (key (sx84 ing258))) -(recipe r84 (key (sy84 ing426))) -(recipe r84 (key (sx84 ing259))) -(recipe r84 (key (sy84 ing427))) -(recipe r84 (key (sx84 ing260))) -(recipe r84 (key (sy84 ing428))) -(recipe r84 (key (sx84 ing261))) -(recipe r84 (key (sy84 ing429))) -(recipe r84 (key (sx84 ing262))) -(recipe r84 (key (sy84 ing430))) -(recipe r84 (key (sx84 ing263))) -(recipe r84 (key (sy84 ing431))) -(recipe r85 (numIngredients 2)) -(recipe r85 (result (id item85))) -(recipe r85 (pattern 0 sx85)) -(recipe r85 (pattern 1 sy85)) -(recipe r85 (key (sx85 ing255))) -(recipe r85 (key (sy85 ing425))) -(recipe r85 (key (sx85 ing256))) -(recipe r85 (key (sy85 ing426))) -(recipe r85 (key (sx85 ing257))) -(recipe r85 (key (sy85 ing427))) -(recipe r85 (key (sx85 ing258))) -(recipe r85 (key (sy85 ing428))) -(recipe r85 (key (sx85 ing259))) -(recipe r85 (key (sy85 ing429))) -(recipe r85 (key (sx85 ing260))) -(recipe r85 (key (sy85 ing430))) -(recipe r85 (key (sx85 ing261))) -(recipe r85 (key (sy85 ing431))) -(recipe r85 (key (sx85 ing262))) -(recipe r85 (key (sy85 ing432))) -(recipe r85 (key (sx85 ing263))) -(recipe r85 (key (sy85 ing433))) -(recipe r85 (key (sx85 ing264))) -(recipe r85 (key (sy85 ing434))) -(recipe r85 (key (sx85 ing265))) -(recipe r85 (key (sy85 ing435))) -(recipe r85 (key (sx85 ing266))) -(recipe r85 (key (sy85 ing436))) -(recipe r86 (numIngredients 2)) -(recipe r86 (result (id item86))) -(recipe r86 (pattern 0 sx86)) -(recipe r86 (pattern 1 sy86)) -(recipe r86 (key (sx86 ing258))) -(recipe r86 (key (sy86 ing430))) -(recipe r86 (key (sx86 ing259))) -(recipe r86 (key (sy86 ing431))) -(recipe r86 (key (sx86 ing260))) -(recipe r86 (key (sy86 ing432))) -(recipe r86 (key (sx86 ing261))) -(recipe r86 (key (sy86 ing433))) -(recipe r86 (key (sx86 ing262))) -(recipe r86 (key (sy86 ing434))) -(recipe r86 (key (sx86 ing263))) -(recipe r86 (key (sy86 ing435))) -(recipe r86 (key (sx86 ing264))) -(recipe r86 (key (sy86 ing436))) -(recipe r86 (key (sx86 ing265))) -(recipe r86 (key (sy86 ing437))) -(recipe r86 (key (sx86 ing266))) -(recipe r86 (key (sy86 ing438))) -(recipe r86 (key (sx86 ing267))) -(recipe r86 (key (sy86 ing439))) -(recipe r86 (key (sx86 ing268))) -(recipe r86 (key (sy86 ing440))) -(recipe r86 (key (sx86 ing269))) -(recipe r86 (key (sy86 ing441))) -(recipe r87 (numIngredients 2)) -(recipe r87 (result (id item87))) -(recipe r87 (pattern 0 sx87)) -(recipe r87 (pattern 1 sy87)) -(recipe r87 (key (sx87 ing261))) -(recipe r87 (key (sy87 ing435))) -(recipe r87 (key (sx87 ing262))) -(recipe r87 (key (sy87 ing436))) -(recipe r87 (key (sx87 ing263))) -(recipe r87 (key (sy87 ing437))) -(recipe r87 (key (sx87 ing264))) -(recipe r87 (key (sy87 ing438))) -(recipe r87 (key (sx87 ing265))) -(recipe r87 (key (sy87 ing439))) -(recipe r87 (key (sx87 ing266))) -(recipe r87 (key (sy87 ing440))) -(recipe r87 (key (sx87 ing267))) -(recipe r87 (key (sy87 ing441))) -(recipe r87 (key (sx87 ing268))) -(recipe r87 (key (sy87 ing442))) -(recipe r87 (key (sx87 ing269))) -(recipe r87 (key (sy87 ing443))) -(recipe r87 (key (sx87 ing270))) -(recipe r87 (key (sy87 ing444))) -(recipe r87 (key (sx87 ing271))) -(recipe r87 (key (sy87 ing445))) -(recipe r87 (key (sx87 ing272))) -(recipe r87 (key (sy87 ing446))) -(recipe r88 (numIngredients 2)) -(recipe r88 (result (id item88))) -(recipe r88 (pattern 0 sx88)) -(recipe r88 (pattern 1 sy88)) -(recipe r88 (key (sx88 ing264))) -(recipe r88 (key (sy88 ing440))) -(recipe r88 (key (sx88 ing265))) -(recipe r88 (key (sy88 ing441))) -(recipe r88 (key (sx88 ing266))) -(recipe r88 (key (sy88 ing442))) -(recipe r88 (key (sx88 ing267))) -(recipe r88 (key (sy88 ing443))) -(recipe r88 (key (sx88 ing268))) -(recipe r88 (key (sy88 ing444))) -(recipe r88 (key (sx88 ing269))) -(recipe r88 (key (sy88 ing445))) -(recipe r88 (key (sx88 ing270))) -(recipe r88 (key (sy88 ing446))) -(recipe r88 (key (sx88 ing271))) -(recipe r88 (key (sy88 ing447))) -(recipe r88 (key (sx88 ing272))) -(recipe r88 (key (sy88 ing448))) -(recipe r88 (key (sx88 ing273))) -(recipe r88 (key (sy88 ing449))) -(recipe r88 (key (sx88 ing274))) -(recipe r88 (key (sy88 ing450))) -(recipe r88 (key (sx88 ing275))) -(recipe r88 (key (sy88 ing451))) -(recipe r89 (numIngredients 2)) -(recipe r89 (result (id item89))) -(recipe r89 (pattern 0 sx89)) -(recipe r89 (pattern 1 sy89)) -(recipe r89 (key (sx89 ing267))) -(recipe r89 (key (sy89 ing445))) -(recipe r89 (key (sx89 ing268))) -(recipe r89 (key (sy89 ing446))) -(recipe r89 (key (sx89 ing269))) -(recipe r89 (key (sy89 ing447))) -(recipe r89 (key (sx89 ing270))) -(recipe r89 (key (sy89 ing448))) -(recipe r89 (key (sx89 ing271))) -(recipe r89 (key (sy89 ing449))) -(recipe r89 (key (sx89 ing272))) -(recipe r89 (key (sy89 ing450))) -(recipe r89 (key (sx89 ing273))) -(recipe r89 (key (sy89 ing451))) -(recipe r89 (key (sx89 ing274))) -(recipe r89 (key (sy89 ing452))) -(recipe r89 (key (sx89 ing275))) -(recipe r89 (key (sy89 ing453))) -(recipe r89 (key (sx89 ing276))) -(recipe r89 (key (sy89 ing454))) -(recipe r89 (key (sx89 ing277))) -(recipe r89 (key (sy89 ing455))) -(recipe r89 (key (sx89 ing278))) -(recipe r89 (key (sy89 ing456))) -(recipe r90 (numIngredients 2)) -(recipe r90 (result (id item90))) -(recipe r90 (pattern 0 sx90)) -(recipe r90 (pattern 1 sy90)) -(recipe r90 (key (sx90 ing270))) -(recipe r90 (key (sy90 ing450))) -(recipe r90 (key (sx90 ing271))) -(recipe r90 (key (sy90 ing451))) -(recipe r90 (key (sx90 ing272))) -(recipe r90 (key (sy90 ing452))) -(recipe r90 (key (sx90 ing273))) -(recipe r90 (key (sy90 ing453))) -(recipe r90 (key (sx90 ing274))) -(recipe r90 (key (sy90 ing454))) -(recipe r90 (key (sx90 ing275))) -(recipe r90 (key (sy90 ing455))) -(recipe r90 (key (sx90 ing276))) -(recipe r90 (key (sy90 ing456))) -(recipe r90 (key (sx90 ing277))) -(recipe r90 (key (sy90 ing457))) -(recipe r90 (key (sx90 ing278))) -(recipe r90 (key (sy90 ing458))) -(recipe r90 (key (sx90 ing279))) -(recipe r90 (key (sy90 ing459))) -(recipe r90 (key (sx90 ing280))) -(recipe r90 (key (sy90 ing460))) -(recipe r90 (key (sx90 ing281))) -(recipe r90 (key (sy90 ing461))) -(recipe r91 (numIngredients 2)) -(recipe r91 (result (id item91))) -(recipe r91 (pattern 0 sx91)) -(recipe r91 (pattern 1 sy91)) -(recipe r91 (key (sx91 ing273))) -(recipe r91 (key (sy91 ing455))) -(recipe r91 (key (sx91 ing274))) -(recipe r91 (key (sy91 ing456))) -(recipe r91 (key (sx91 ing275))) -(recipe r91 (key (sy91 ing457))) -(recipe r91 (key (sx91 ing276))) -(recipe r91 (key (sy91 ing458))) -(recipe r91 (key (sx91 ing277))) -(recipe r91 (key (sy91 ing459))) -(recipe r91 (key (sx91 ing278))) -(recipe r91 (key (sy91 ing460))) -(recipe r91 (key (sx91 ing279))) -(recipe r91 (key (sy91 ing461))) -(recipe r91 (key (sx91 ing280))) -(recipe r91 (key (sy91 ing462))) -(recipe r91 (key (sx91 ing281))) -(recipe r91 (key (sy91 ing463))) -(recipe r91 (key (sx91 ing282))) -(recipe r91 (key (sy91 ing464))) -(recipe r91 (key (sx91 ing283))) -(recipe r91 (key (sy91 ing465))) -(recipe r91 (key (sx91 ing284))) -(recipe r91 (key (sy91 ing466))) -(recipe r92 (numIngredients 2)) -(recipe r92 (result (id item92))) -(recipe r92 (pattern 0 sx92)) -(recipe r92 (pattern 1 sy92)) -(recipe r92 (key (sx92 ing276))) -(recipe r92 (key (sy92 ing460))) -(recipe r92 (key (sx92 ing277))) -(recipe r92 (key (sy92 ing461))) -(recipe r92 (key (sx92 ing278))) -(recipe r92 (key (sy92 ing462))) -(recipe r92 (key (sx92 ing279))) -(recipe r92 (key (sy92 ing463))) -(recipe r92 (key (sx92 ing280))) -(recipe r92 (key (sy92 ing464))) -(recipe r92 (key (sx92 ing281))) -(recipe r92 (key (sy92 ing465))) -(recipe r92 (key (sx92 ing282))) -(recipe r92 (key (sy92 ing466))) -(recipe r92 (key (sx92 ing283))) -(recipe r92 (key (sy92 ing467))) -(recipe r92 (key (sx92 ing284))) -(recipe r92 (key (sy92 ing468))) -(recipe r92 (key (sx92 ing285))) -(recipe r92 (key (sy92 ing469))) -(recipe r92 (key (sx92 ing286))) -(recipe r92 (key (sy92 ing470))) -(recipe r92 (key (sx92 ing287))) -(recipe r92 (key (sy92 ing471))) -(recipe r93 (numIngredients 2)) -(recipe r93 (result (id item93))) -(recipe r93 (pattern 0 sx93)) -(recipe r93 (pattern 1 sy93)) -(recipe r93 (key (sx93 ing279))) -(recipe r93 (key (sy93 ing465))) -(recipe r93 (key (sx93 ing280))) -(recipe r93 (key (sy93 ing466))) -(recipe r93 (key (sx93 ing281))) -(recipe r93 (key (sy93 ing467))) -(recipe r93 (key (sx93 ing282))) -(recipe r93 (key (sy93 ing468))) -(recipe r93 (key (sx93 ing283))) -(recipe r93 (key (sy93 ing469))) -(recipe r93 (key (sx93 ing284))) -(recipe r93 (key (sy93 ing470))) -(recipe r93 (key (sx93 ing285))) -(recipe r93 (key (sy93 ing471))) -(recipe r93 (key (sx93 ing286))) -(recipe r93 (key (sy93 ing472))) -(recipe r93 (key (sx93 ing287))) -(recipe r93 (key (sy93 ing473))) -(recipe r93 (key (sx93 ing288))) -(recipe r93 (key (sy93 ing474))) -(recipe r93 (key (sx93 ing289))) -(recipe r93 (key (sy93 ing475))) -(recipe r93 (key (sx93 ing290))) -(recipe r93 (key (sy93 ing476))) -(recipe r94 (numIngredients 2)) -(recipe r94 (result (id item94))) -(recipe r94 (pattern 0 sx94)) -(recipe r94 (pattern 1 sy94)) -(recipe r94 (key (sx94 ing282))) -(recipe r94 (key (sy94 ing470))) -(recipe r94 (key (sx94 ing283))) -(recipe r94 (key (sy94 ing471))) -(recipe r94 (key (sx94 ing284))) -(recipe r94 (key (sy94 ing472))) -(recipe r94 (key (sx94 ing285))) -(recipe r94 (key (sy94 ing473))) -(recipe r94 (key (sx94 ing286))) -(recipe r94 (key (sy94 ing474))) -(recipe r94 (key (sx94 ing287))) -(recipe r94 (key (sy94 ing475))) -(recipe r94 (key (sx94 ing288))) -(recipe r94 (key (sy94 ing476))) -(recipe r94 (key (sx94 ing289))) -(recipe r94 (key (sy94 ing477))) -(recipe r94 (key (sx94 ing290))) -(recipe r94 (key (sy94 ing478))) -(recipe r94 (key (sx94 ing291))) -(recipe r94 (key (sy94 ing479))) -(recipe r94 (key (sx94 ing292))) -(recipe r94 (key (sy94 ing480))) -(recipe r94 (key (sx94 ing293))) -(recipe r94 (key (sy94 ing481))) -(recipe r95 (numIngredients 2)) -(recipe r95 (result (id item95))) -(recipe r95 (pattern 0 sx95)) -(recipe r95 (pattern 1 sy95)) -(recipe r95 (key (sx95 ing285))) -(recipe r95 (key (sy95 ing475))) -(recipe r95 (key (sx95 ing286))) -(recipe r95 (key (sy95 ing476))) -(recipe r95 (key (sx95 ing287))) -(recipe r95 (key (sy95 ing477))) -(recipe r95 (key (sx95 ing288))) -(recipe r95 (key (sy95 ing478))) -(recipe r95 (key (sx95 ing289))) -(recipe r95 (key (sy95 ing479))) -(recipe r95 (key (sx95 ing290))) -(recipe r95 (key (sy95 ing480))) -(recipe r95 (key (sx95 ing291))) -(recipe r95 (key (sy95 ing481))) -(recipe r95 (key (sx95 ing292))) -(recipe r95 (key (sy95 ing482))) -(recipe r95 (key (sx95 ing293))) -(recipe r95 (key (sy95 ing483))) -(recipe r95 (key (sx95 ing294))) -(recipe r95 (key (sy95 ing484))) -(recipe r95 (key (sx95 ing295))) -(recipe r95 (key (sy95 ing485))) -(recipe r95 (key (sx95 ing296))) -(recipe r95 (key (sy95 ing486))) -(recipe r96 (numIngredients 2)) -(recipe r96 (result (id item96))) -(recipe r96 (pattern 0 sx96)) -(recipe r96 (pattern 1 sy96)) -(recipe r96 (key (sx96 ing288))) -(recipe r96 (key (sy96 ing480))) -(recipe r96 (key (sx96 ing289))) -(recipe r96 (key (sy96 ing481))) -(recipe r96 (key (sx96 ing290))) -(recipe r96 (key (sy96 ing482))) -(recipe r96 (key (sx96 ing291))) -(recipe r96 (key (sy96 ing483))) -(recipe r96 (key (sx96 ing292))) -(recipe r96 (key (sy96 ing484))) -(recipe r96 (key (sx96 ing293))) -(recipe r96 (key (sy96 ing485))) -(recipe r96 (key (sx96 ing294))) -(recipe r96 (key (sy96 ing486))) -(recipe r96 (key (sx96 ing295))) -(recipe r96 (key (sy96 ing487))) -(recipe r96 (key (sx96 ing296))) -(recipe r96 (key (sy96 ing488))) -(recipe r96 (key (sx96 ing297))) -(recipe r96 (key (sy96 ing489))) -(recipe r96 (key (sx96 ing298))) -(recipe r96 (key (sy96 ing490))) -(recipe r96 (key (sx96 ing299))) -(recipe r96 (key (sy96 ing491))) -(recipe r97 (numIngredients 2)) -(recipe r97 (result (id item97))) -(recipe r97 (pattern 0 sx97)) -(recipe r97 (pattern 1 sy97)) -(recipe r97 (key (sx97 ing291))) -(recipe r97 (key (sy97 ing485))) -(recipe r97 (key (sx97 ing292))) -(recipe r97 (key (sy97 ing486))) -(recipe r97 (key (sx97 ing293))) -(recipe r97 (key (sy97 ing487))) -(recipe r97 (key (sx97 ing294))) -(recipe r97 (key (sy97 ing488))) -(recipe r97 (key (sx97 ing295))) -(recipe r97 (key (sy97 ing489))) -(recipe r97 (key (sx97 ing296))) -(recipe r97 (key (sy97 ing490))) -(recipe r97 (key (sx97 ing297))) -(recipe r97 (key (sy97 ing491))) -(recipe r97 (key (sx97 ing298))) -(recipe r97 (key (sy97 ing492))) -(recipe r97 (key (sx97 ing299))) -(recipe r97 (key (sy97 ing493))) -(recipe r97 (key (sx97 ing300))) -(recipe r97 (key (sy97 ing494))) -(recipe r97 (key (sx97 ing301))) -(recipe r97 (key (sy97 ing495))) -(recipe r97 (key (sx97 ing302))) -(recipe r97 (key (sy97 ing496))) -(recipe r98 (numIngredients 2)) -(recipe r98 (result (id item98))) -(recipe r98 (pattern 0 sx98)) -(recipe r98 (pattern 1 sy98)) -(recipe r98 (key (sx98 ing294))) -(recipe r98 (key (sy98 ing490))) -(recipe r98 (key (sx98 ing295))) -(recipe r98 (key (sy98 ing491))) -(recipe r98 (key (sx98 ing296))) -(recipe r98 (key (sy98 ing492))) -(recipe r98 (key (sx98 ing297))) -(recipe r98 (key (sy98 ing493))) -(recipe r98 (key (sx98 ing298))) -(recipe r98 (key (sy98 ing494))) -(recipe r98 (key (sx98 ing299))) -(recipe r98 (key (sy98 ing495))) -(recipe r98 (key (sx98 ing300))) -(recipe r98 (key (sy98 ing496))) -(recipe r98 (key (sx98 ing301))) -(recipe r98 (key (sy98 ing497))) -(recipe r98 (key (sx98 ing302))) -(recipe r98 (key (sy98 ing498))) -(recipe r98 (key (sx98 ing303))) -(recipe r98 (key (sy98 ing499))) -(recipe r98 (key (sx98 ing304))) -(recipe r98 (key (sy98 ing500))) -(recipe r98 (key (sx98 ing305))) -(recipe r98 (key (sy98 ing501))) -(recipe r99 (numIngredients 2)) -(recipe r99 (result (id item99))) -(recipe r99 (pattern 0 sx99)) -(recipe r99 (pattern 1 sy99)) -(recipe r99 (key (sx99 ing297))) -(recipe r99 (key (sy99 ing495))) -(recipe r99 (key (sx99 ing298))) -(recipe r99 (key (sy99 ing496))) -(recipe r99 (key (sx99 ing299))) -(recipe r99 (key (sy99 ing497))) -(recipe r99 (key (sx99 ing300))) -(recipe r99 (key (sy99 ing498))) -(recipe r99 (key (sx99 ing301))) -(recipe r99 (key (sy99 ing499))) -(recipe r99 (key (sx99 ing302))) -(recipe r99 (key (sy99 ing500))) -(recipe r99 (key (sx99 ing303))) -(recipe r99 (key (sy99 ing501))) -(recipe r99 (key (sx99 ing304))) -(recipe r99 (key (sy99 ing502))) -(recipe r99 (key (sx99 ing305))) -(recipe r99 (key (sy99 ing503))) -(recipe r99 (key (sx99 ing306))) -(recipe r99 (key (sy99 ing504))) -(recipe r99 (key (sx99 ing307))) -(recipe r99 (key (sy99 ing505))) -(recipe r99 (key (sx99 ing308))) -(recipe r99 (key (sy99 ing506))) -(recipe r100 (numIngredients 2)) -(recipe r100 (result (id item100))) -(recipe r100 (pattern 0 sx100)) -(recipe r100 (pattern 1 sy100)) -(recipe r100 (key (sx100 ing300))) -(recipe r100 (key (sy100 ing500))) -(recipe r100 (key (sx100 ing301))) -(recipe r100 (key (sy100 ing501))) -(recipe r100 (key (sx100 ing302))) -(recipe r100 (key (sy100 ing502))) -(recipe r100 (key (sx100 ing303))) -(recipe r100 (key (sy100 ing503))) -(recipe r100 (key (sx100 ing304))) -(recipe r100 (key (sy100 ing504))) -(recipe r100 (key (sx100 ing305))) -(recipe r100 (key (sy100 ing505))) -(recipe r100 (key (sx100 ing306))) -(recipe r100 (key (sy100 ing506))) -(recipe r100 (key (sx100 ing307))) -(recipe r100 (key (sy100 ing507))) -(recipe r100 (key (sx100 ing308))) -(recipe r100 (key (sy100 ing508))) -(recipe r100 (key (sx100 ing309))) -(recipe r100 (key (sy100 ing509))) -(recipe r100 (key (sx100 ing310))) -(recipe r100 (key (sy100 ing510))) -(recipe r100 (key (sx100 ing311))) -(recipe r100 (key (sy100 ing511))) -(recipe r101 (numIngredients 2)) -(recipe r101 (result (id item101))) -(recipe r101 (pattern 0 sx101)) -(recipe r101 (pattern 1 sy101)) -(recipe r101 (key (sx101 ing303))) -(recipe r101 (key (sy101 ing505))) -(recipe r101 (key (sx101 ing304))) -(recipe r101 (key (sy101 ing506))) -(recipe r101 (key (sx101 ing305))) -(recipe r101 (key (sy101 ing507))) -(recipe r101 (key (sx101 ing306))) -(recipe r101 (key (sy101 ing508))) -(recipe r101 (key (sx101 ing307))) -(recipe r101 (key (sy101 ing509))) -(recipe r101 (key (sx101 ing308))) -(recipe r101 (key (sy101 ing510))) -(recipe r101 (key (sx101 ing309))) -(recipe r101 (key (sy101 ing511))) -(recipe r101 (key (sx101 ing310))) -(recipe r101 (key (sy101 ing512))) -(recipe r101 (key (sx101 ing311))) -(recipe r101 (key (sy101 ing513))) -(recipe r101 (key (sx101 ing312))) -(recipe r101 (key (sy101 ing514))) -(recipe r101 (key (sx101 ing313))) -(recipe r101 (key (sy101 ing515))) -(recipe r101 (key (sx101 ing314))) -(recipe r101 (key (sy101 ing516))) -(recipe r102 (numIngredients 2)) -(recipe r102 (result (id item102))) -(recipe r102 (pattern 0 sx102)) -(recipe r102 (pattern 1 sy102)) -(recipe r102 (key (sx102 ing306))) -(recipe r102 (key (sy102 ing510))) -(recipe r102 (key (sx102 ing307))) -(recipe r102 (key (sy102 ing511))) -(recipe r102 (key (sx102 ing308))) -(recipe r102 (key (sy102 ing512))) -(recipe r102 (key (sx102 ing309))) -(recipe r102 (key (sy102 ing513))) -(recipe r102 (key (sx102 ing310))) -(recipe r102 (key (sy102 ing514))) -(recipe r102 (key (sx102 ing311))) -(recipe r102 (key (sy102 ing515))) -(recipe r102 (key (sx102 ing312))) -(recipe r102 (key (sy102 ing516))) -(recipe r102 (key (sx102 ing313))) -(recipe r102 (key (sy102 ing517))) -(recipe r102 (key (sx102 ing314))) -(recipe r102 (key (sy102 ing518))) -(recipe r102 (key (sx102 ing315))) -(recipe r102 (key (sy102 ing519))) -(recipe r102 (key (sx102 ing316))) -(recipe r102 (key (sy102 ing520))) -(recipe r102 (key (sx102 ing317))) -(recipe r102 (key (sy102 ing521))) -(recipe r103 (numIngredients 2)) -(recipe r103 (result (id item103))) -(recipe r103 (pattern 0 sx103)) -(recipe r103 (pattern 1 sy103)) -(recipe r103 (key (sx103 ing309))) -(recipe r103 (key (sy103 ing515))) -(recipe r103 (key (sx103 ing310))) -(recipe r103 (key (sy103 ing516))) -(recipe r103 (key (sx103 ing311))) -(recipe r103 (key (sy103 ing517))) -(recipe r103 (key (sx103 ing312))) -(recipe r103 (key (sy103 ing518))) -(recipe r103 (key (sx103 ing313))) -(recipe r103 (key (sy103 ing519))) -(recipe r103 (key (sx103 ing314))) -(recipe r103 (key (sy103 ing520))) -(recipe r103 (key (sx103 ing315))) -(recipe r103 (key (sy103 ing521))) -(recipe r103 (key (sx103 ing316))) -(recipe r103 (key (sy103 ing522))) -(recipe r103 (key (sx103 ing317))) -(recipe r103 (key (sy103 ing523))) -(recipe r103 (key (sx103 ing318))) -(recipe r103 (key (sy103 ing524))) -(recipe r103 (key (sx103 ing319))) -(recipe r103 (key (sy103 ing525))) -(recipe r103 (key (sx103 ing320))) -(recipe r103 (key (sy103 ing526))) -(recipe r104 (numIngredients 2)) -(recipe r104 (result (id item104))) -(recipe r104 (pattern 0 sx104)) -(recipe r104 (pattern 1 sy104)) -(recipe r104 (key (sx104 ing312))) -(recipe r104 (key (sy104 ing520))) -(recipe r104 (key (sx104 ing313))) -(recipe r104 (key (sy104 ing521))) -(recipe r104 (key (sx104 ing314))) -(recipe r104 (key (sy104 ing522))) -(recipe r104 (key (sx104 ing315))) -(recipe r104 (key (sy104 ing523))) -(recipe r104 (key (sx104 ing316))) -(recipe r104 (key (sy104 ing524))) -(recipe r104 (key (sx104 ing317))) -(recipe r104 (key (sy104 ing525))) -(recipe r104 (key (sx104 ing318))) -(recipe r104 (key (sy104 ing526))) -(recipe r104 (key (sx104 ing319))) -(recipe r104 (key (sy104 ing527))) -(recipe r104 (key (sx104 ing320))) -(recipe r104 (key (sy104 ing528))) -(recipe r104 (key (sx104 ing321))) -(recipe r104 (key (sy104 ing529))) -(recipe r104 (key (sx104 ing322))) -(recipe r104 (key (sy104 ing530))) -(recipe r104 (key (sx104 ing323))) -(recipe r104 (key (sy104 ing531))) -(recipe r105 (numIngredients 2)) -(recipe r105 (result (id item105))) -(recipe r105 (pattern 0 sx105)) -(recipe r105 (pattern 1 sy105)) -(recipe r105 (key (sx105 ing315))) -(recipe r105 (key (sy105 ing525))) -(recipe r105 (key (sx105 ing316))) -(recipe r105 (key (sy105 ing526))) -(recipe r105 (key (sx105 ing317))) -(recipe r105 (key (sy105 ing527))) -(recipe r105 (key (sx105 ing318))) -(recipe r105 (key (sy105 ing528))) -(recipe r105 (key (sx105 ing319))) -(recipe r105 (key (sy105 ing529))) -(recipe r105 (key (sx105 ing320))) -(recipe r105 (key (sy105 ing530))) -(recipe r105 (key (sx105 ing321))) -(recipe r105 (key (sy105 ing531))) -(recipe r105 (key (sx105 ing322))) -(recipe r105 (key (sy105 ing532))) -(recipe r105 (key (sx105 ing323))) -(recipe r105 (key (sy105 ing533))) -(recipe r105 (key (sx105 ing324))) -(recipe r105 (key (sy105 ing534))) -(recipe r105 (key (sx105 ing325))) -(recipe r105 (key (sy105 ing535))) -(recipe r105 (key (sx105 ing326))) -(recipe r105 (key (sy105 ing536))) -(recipe r106 (numIngredients 2)) -(recipe r106 (result (id item106))) -(recipe r106 (pattern 0 sx106)) -(recipe r106 (pattern 1 sy106)) -(recipe r106 (key (sx106 ing318))) -(recipe r106 (key (sy106 ing530))) -(recipe r106 (key (sx106 ing319))) -(recipe r106 (key (sy106 ing531))) -(recipe r106 (key (sx106 ing320))) -(recipe r106 (key (sy106 ing532))) -(recipe r106 (key (sx106 ing321))) -(recipe r106 (key (sy106 ing533))) -(recipe r106 (key (sx106 ing322))) -(recipe r106 (key (sy106 ing534))) -(recipe r106 (key (sx106 ing323))) -(recipe r106 (key (sy106 ing535))) -(recipe r106 (key (sx106 ing324))) -(recipe r106 (key (sy106 ing536))) -(recipe r106 (key (sx106 ing325))) -(recipe r106 (key (sy106 ing537))) -(recipe r106 (key (sx106 ing326))) -(recipe r106 (key (sy106 ing538))) -(recipe r106 (key (sx106 ing327))) -(recipe r106 (key (sy106 ing539))) -(recipe r106 (key (sx106 ing328))) -(recipe r106 (key (sy106 ing540))) -(recipe r106 (key (sx106 ing329))) -(recipe r106 (key (sy106 ing541))) -(recipe r107 (numIngredients 2)) -(recipe r107 (result (id item107))) -(recipe r107 (pattern 0 sx107)) -(recipe r107 (pattern 1 sy107)) -(recipe r107 (key (sx107 ing321))) -(recipe r107 (key (sy107 ing535))) -(recipe r107 (key (sx107 ing322))) -(recipe r107 (key (sy107 ing536))) -(recipe r107 (key (sx107 ing323))) -(recipe r107 (key (sy107 ing537))) -(recipe r107 (key (sx107 ing324))) -(recipe r107 (key (sy107 ing538))) -(recipe r107 (key (sx107 ing325))) -(recipe r107 (key (sy107 ing539))) -(recipe r107 (key (sx107 ing326))) -(recipe r107 (key (sy107 ing540))) -(recipe r107 (key (sx107 ing327))) -(recipe r107 (key (sy107 ing541))) -(recipe r107 (key (sx107 ing328))) -(recipe r107 (key (sy107 ing542))) -(recipe r107 (key (sx107 ing329))) -(recipe r107 (key (sy107 ing543))) -(recipe r107 (key (sx107 ing330))) -(recipe r107 (key (sy107 ing544))) -(recipe r107 (key (sx107 ing331))) -(recipe r107 (key (sy107 ing545))) -(recipe r107 (key (sx107 ing332))) -(recipe r107 (key (sy107 ing546))) -(recipe r108 (numIngredients 2)) -(recipe r108 (result (id item108))) -(recipe r108 (pattern 0 sx108)) -(recipe r108 (pattern 1 sy108)) -(recipe r108 (key (sx108 ing324))) -(recipe r108 (key (sy108 ing540))) -(recipe r108 (key (sx108 ing325))) -(recipe r108 (key (sy108 ing541))) -(recipe r108 (key (sx108 ing326))) -(recipe r108 (key (sy108 ing542))) -(recipe r108 (key (sx108 ing327))) -(recipe r108 (key (sy108 ing543))) -(recipe r108 (key (sx108 ing328))) -(recipe r108 (key (sy108 ing544))) -(recipe r108 (key (sx108 ing329))) -(recipe r108 (key (sy108 ing545))) -(recipe r108 (key (sx108 ing330))) -(recipe r108 (key (sy108 ing546))) -(recipe r108 (key (sx108 ing331))) -(recipe r108 (key (sy108 ing547))) -(recipe r108 (key (sx108 ing332))) -(recipe r108 (key (sy108 ing548))) -(recipe r108 (key (sx108 ing333))) -(recipe r108 (key (sy108 ing549))) -(recipe r108 (key (sx108 ing334))) -(recipe r108 (key (sy108 ing550))) -(recipe r108 (key (sx108 ing335))) -(recipe r108 (key (sy108 ing551))) -(recipe r109 (numIngredients 2)) -(recipe r109 (result (id item109))) -(recipe r109 (pattern 0 sx109)) -(recipe r109 (pattern 1 sy109)) -(recipe r109 (key (sx109 ing327))) -(recipe r109 (key (sy109 ing545))) -(recipe r109 (key (sx109 ing328))) -(recipe r109 (key (sy109 ing546))) -(recipe r109 (key (sx109 ing329))) -(recipe r109 (key (sy109 ing547))) -(recipe r109 (key (sx109 ing330))) -(recipe r109 (key (sy109 ing548))) -(recipe r109 (key (sx109 ing331))) -(recipe r109 (key (sy109 ing549))) -(recipe r109 (key (sx109 ing332))) -(recipe r109 (key (sy109 ing550))) -(recipe r109 (key (sx109 ing333))) -(recipe r109 (key (sy109 ing551))) -(recipe r109 (key (sx109 ing334))) -(recipe r109 (key (sy109 ing552))) -(recipe r109 (key (sx109 ing335))) -(recipe r109 (key (sy109 ing553))) -(recipe r109 (key (sx109 ing336))) -(recipe r109 (key (sy109 ing554))) -(recipe r109 (key (sx109 ing337))) -(recipe r109 (key (sy109 ing555))) -(recipe r109 (key (sx109 ing338))) -(recipe r109 (key (sy109 ing556))) -(recipe r110 (numIngredients 2)) -(recipe r110 (result (id item110))) -(recipe r110 (pattern 0 sx110)) -(recipe r110 (pattern 1 sy110)) -(recipe r110 (key (sx110 ing330))) -(recipe r110 (key (sy110 ing550))) -(recipe r110 (key (sx110 ing331))) -(recipe r110 (key (sy110 ing551))) -(recipe r110 (key (sx110 ing332))) -(recipe r110 (key (sy110 ing552))) -(recipe r110 (key (sx110 ing333))) -(recipe r110 (key (sy110 ing553))) -(recipe r110 (key (sx110 ing334))) -(recipe r110 (key (sy110 ing554))) -(recipe r110 (key (sx110 ing335))) -(recipe r110 (key (sy110 ing555))) -(recipe r110 (key (sx110 ing336))) -(recipe r110 (key (sy110 ing556))) -(recipe r110 (key (sx110 ing337))) -(recipe r110 (key (sy110 ing557))) -(recipe r110 (key (sx110 ing338))) -(recipe r110 (key (sy110 ing558))) -(recipe r110 (key (sx110 ing339))) -(recipe r110 (key (sy110 ing559))) -(recipe r110 (key (sx110 ing340))) -(recipe r110 (key (sy110 ing560))) -(recipe r110 (key (sx110 ing341))) -(recipe r110 (key (sy110 ing561))) -(recipe r111 (numIngredients 2)) -(recipe r111 (result (id item111))) -(recipe r111 (pattern 0 sx111)) -(recipe r111 (pattern 1 sy111)) -(recipe r111 (key (sx111 ing333))) -(recipe r111 (key (sy111 ing555))) -(recipe r111 (key (sx111 ing334))) -(recipe r111 (key (sy111 ing556))) -(recipe r111 (key (sx111 ing335))) -(recipe r111 (key (sy111 ing557))) -(recipe r111 (key (sx111 ing336))) -(recipe r111 (key (sy111 ing558))) -(recipe r111 (key (sx111 ing337))) -(recipe r111 (key (sy111 ing559))) -(recipe r111 (key (sx111 ing338))) -(recipe r111 (key (sy111 ing560))) -(recipe r111 (key (sx111 ing339))) -(recipe r111 (key (sy111 ing561))) -(recipe r111 (key (sx111 ing340))) -(recipe r111 (key (sy111 ing562))) -(recipe r111 (key (sx111 ing341))) -(recipe r111 (key (sy111 ing563))) -(recipe r111 (key (sx111 ing342))) -(recipe r111 (key (sy111 ing564))) -(recipe r111 (key (sx111 ing343))) -(recipe r111 (key (sy111 ing565))) -(recipe r111 (key (sx111 ing344))) -(recipe r111 (key (sy111 ing566))) -(recipe r112 (numIngredients 2)) -(recipe r112 (result (id item112))) -(recipe r112 (pattern 0 sx112)) -(recipe r112 (pattern 1 sy112)) -(recipe r112 (key (sx112 ing336))) -(recipe r112 (key (sy112 ing560))) -(recipe r112 (key (sx112 ing337))) -(recipe r112 (key (sy112 ing561))) -(recipe r112 (key (sx112 ing338))) -(recipe r112 (key (sy112 ing562))) -(recipe r112 (key (sx112 ing339))) -(recipe r112 (key (sy112 ing563))) -(recipe r112 (key (sx112 ing340))) -(recipe r112 (key (sy112 ing564))) -(recipe r112 (key (sx112 ing341))) -(recipe r112 (key (sy112 ing565))) -(recipe r112 (key (sx112 ing342))) -(recipe r112 (key (sy112 ing566))) -(recipe r112 (key (sx112 ing343))) -(recipe r112 (key (sy112 ing567))) -(recipe r112 (key (sx112 ing344))) -(recipe r112 (key (sy112 ing568))) -(recipe r112 (key (sx112 ing345))) -(recipe r112 (key (sy112 ing569))) -(recipe r112 (key (sx112 ing346))) -(recipe r112 (key (sy112 ing570))) -(recipe r112 (key (sx112 ing347))) -(recipe r112 (key (sy112 ing571))) -(recipe r113 (numIngredients 2)) -(recipe r113 (result (id item113))) -(recipe r113 (pattern 0 sx113)) -(recipe r113 (pattern 1 sy113)) -(recipe r113 (key (sx113 ing339))) -(recipe r113 (key (sy113 ing565))) -(recipe r113 (key (sx113 ing340))) -(recipe r113 (key (sy113 ing566))) -(recipe r113 (key (sx113 ing341))) -(recipe r113 (key (sy113 ing567))) -(recipe r113 (key (sx113 ing342))) -(recipe r113 (key (sy113 ing568))) -(recipe r113 (key (sx113 ing343))) -(recipe r113 (key (sy113 ing569))) -(recipe r113 (key (sx113 ing344))) -(recipe r113 (key (sy113 ing570))) -(recipe r113 (key (sx113 ing345))) -(recipe r113 (key (sy113 ing571))) -(recipe r113 (key (sx113 ing346))) -(recipe r113 (key (sy113 ing572))) -(recipe r113 (key (sx113 ing347))) -(recipe r113 (key (sy113 ing573))) -(recipe r113 (key (sx113 ing348))) -(recipe r113 (key (sy113 ing574))) -(recipe r113 (key (sx113 ing349))) -(recipe r113 (key (sy113 ing575))) -(recipe r113 (key (sx113 ing350))) -(recipe r113 (key (sy113 ing576))) -(recipe r114 (numIngredients 2)) -(recipe r114 (result (id item114))) -(recipe r114 (pattern 0 sx114)) -(recipe r114 (pattern 1 sy114)) -(recipe r114 (key (sx114 ing342))) -(recipe r114 (key (sy114 ing570))) -(recipe r114 (key (sx114 ing343))) -(recipe r114 (key (sy114 ing571))) -(recipe r114 (key (sx114 ing344))) -(recipe r114 (key (sy114 ing572))) -(recipe r114 (key (sx114 ing345))) -(recipe r114 (key (sy114 ing573))) -(recipe r114 (key (sx114 ing346))) -(recipe r114 (key (sy114 ing574))) -(recipe r114 (key (sx114 ing347))) -(recipe r114 (key (sy114 ing575))) -(recipe r114 (key (sx114 ing348))) -(recipe r114 (key (sy114 ing576))) -(recipe r114 (key (sx114 ing349))) -(recipe r114 (key (sy114 ing577))) -(recipe r114 (key (sx114 ing350))) -(recipe r114 (key (sy114 ing578))) -(recipe r114 (key (sx114 ing351))) -(recipe r114 (key (sy114 ing579))) -(recipe r114 (key (sx114 ing352))) -(recipe r114 (key (sy114 ing580))) -(recipe r114 (key (sx114 ing353))) -(recipe r114 (key (sy114 ing581))) -(recipe r115 (numIngredients 2)) -(recipe r115 (result (id item115))) -(recipe r115 (pattern 0 sx115)) -(recipe r115 (pattern 1 sy115)) -(recipe r115 (key (sx115 ing345))) -(recipe r115 (key (sy115 ing575))) -(recipe r115 (key (sx115 ing346))) -(recipe r115 (key (sy115 ing576))) -(recipe r115 (key (sx115 ing347))) -(recipe r115 (key (sy115 ing577))) -(recipe r115 (key (sx115 ing348))) -(recipe r115 (key (sy115 ing578))) -(recipe r115 (key (sx115 ing349))) -(recipe r115 (key (sy115 ing579))) -(recipe r115 (key (sx115 ing350))) -(recipe r115 (key (sy115 ing580))) -(recipe r115 (key (sx115 ing351))) -(recipe r115 (key (sy115 ing581))) -(recipe r115 (key (sx115 ing352))) -(recipe r115 (key (sy115 ing582))) -(recipe r115 (key (sx115 ing353))) -(recipe r115 (key (sy115 ing583))) -(recipe r115 (key (sx115 ing354))) -(recipe r115 (key (sy115 ing584))) -(recipe r115 (key (sx115 ing355))) -(recipe r115 (key (sy115 ing585))) -(recipe r115 (key (sx115 ing356))) -(recipe r115 (key (sy115 ing586))) -(recipe r116 (numIngredients 2)) -(recipe r116 (result (id item116))) -(recipe r116 (pattern 0 sx116)) -(recipe r116 (pattern 1 sy116)) -(recipe r116 (key (sx116 ing348))) -(recipe r116 (key (sy116 ing580))) -(recipe r116 (key (sx116 ing349))) -(recipe r116 (key (sy116 ing581))) -(recipe r116 (key (sx116 ing350))) -(recipe r116 (key (sy116 ing582))) -(recipe r116 (key (sx116 ing351))) -(recipe r116 (key (sy116 ing583))) -(recipe r116 (key (sx116 ing352))) -(recipe r116 (key (sy116 ing584))) -(recipe r116 (key (sx116 ing353))) -(recipe r116 (key (sy116 ing585))) -(recipe r116 (key (sx116 ing354))) -(recipe r116 (key (sy116 ing586))) -(recipe r116 (key (sx116 ing355))) -(recipe r116 (key (sy116 ing587))) -(recipe r116 (key (sx116 ing356))) -(recipe r116 (key (sy116 ing588))) -(recipe r116 (key (sx116 ing357))) -(recipe r116 (key (sy116 ing589))) -(recipe r116 (key (sx116 ing358))) -(recipe r116 (key (sy116 ing590))) -(recipe r116 (key (sx116 ing359))) -(recipe r116 (key (sy116 ing591))) -(recipe r117 (numIngredients 2)) -(recipe r117 (result (id item117))) -(recipe r117 (pattern 0 sx117)) -(recipe r117 (pattern 1 sy117)) -(recipe r117 (key (sx117 ing351))) -(recipe r117 (key (sy117 ing585))) -(recipe r117 (key (sx117 ing352))) -(recipe r117 (key (sy117 ing586))) -(recipe r117 (key (sx117 ing353))) -(recipe r117 (key (sy117 ing587))) -(recipe r117 (key (sx117 ing354))) -(recipe r117 (key (sy117 ing588))) -(recipe r117 (key (sx117 ing355))) -(recipe r117 (key (sy117 ing589))) -(recipe r117 (key (sx117 ing356))) -(recipe r117 (key (sy117 ing590))) -(recipe r117 (key (sx117 ing357))) -(recipe r117 (key (sy117 ing591))) -(recipe r117 (key (sx117 ing358))) -(recipe r117 (key (sy117 ing592))) -(recipe r117 (key (sx117 ing359))) -(recipe r117 (key (sy117 ing593))) -(recipe r117 (key (sx117 ing360))) -(recipe r117 (key (sy117 ing594))) -(recipe r117 (key (sx117 ing361))) -(recipe r117 (key (sy117 ing595))) -(recipe r117 (key (sx117 ing362))) -(recipe r117 (key (sy117 ing596))) -(recipe r118 (numIngredients 2)) -(recipe r118 (result (id item118))) -(recipe r118 (pattern 0 sx118)) -(recipe r118 (pattern 1 sy118)) -(recipe r118 (key (sx118 ing354))) -(recipe r118 (key (sy118 ing590))) -(recipe r118 (key (sx118 ing355))) -(recipe r118 (key (sy118 ing591))) -(recipe r118 (key (sx118 ing356))) -(recipe r118 (key (sy118 ing592))) -(recipe r118 (key (sx118 ing357))) -(recipe r118 (key (sy118 ing593))) -(recipe r118 (key (sx118 ing358))) -(recipe r118 (key (sy118 ing594))) -(recipe r118 (key (sx118 ing359))) -(recipe r118 (key (sy118 ing595))) -(recipe r118 (key (sx118 ing360))) -(recipe r118 (key (sy118 ing596))) -(recipe r118 (key (sx118 ing361))) -(recipe r118 (key (sy118 ing597))) -(recipe r118 (key (sx118 ing362))) -(recipe r118 (key (sy118 ing598))) -(recipe r118 (key (sx118 ing363))) -(recipe r118 (key (sy118 ing599))) -(recipe r118 (key (sx118 ing364))) -(recipe r118 (key (sy118 ing0))) -(recipe r118 (key (sx118 ing365))) -(recipe r118 (key (sy118 ing1))) -(recipe r119 (numIngredients 2)) -(recipe r119 (result (id item119))) -(recipe r119 (pattern 0 sx119)) -(recipe r119 (pattern 1 sy119)) -(recipe r119 (key (sx119 ing357))) -(recipe r119 (key (sy119 ing595))) -(recipe r119 (key (sx119 ing358))) -(recipe r119 (key (sy119 ing596))) -(recipe r119 (key (sx119 ing359))) -(recipe r119 (key (sy119 ing597))) -(recipe r119 (key (sx119 ing360))) -(recipe r119 (key (sy119 ing598))) -(recipe r119 (key (sx119 ing361))) -(recipe r119 (key (sy119 ing599))) -(recipe r119 (key (sx119 ing362))) -(recipe r119 (key (sy119 ing0))) -(recipe r119 (key (sx119 ing363))) -(recipe r119 (key (sy119 ing1))) -(recipe r119 (key (sx119 ing364))) -(recipe r119 (key (sy119 ing2))) -(recipe r119 (key (sx119 ing365))) -(recipe r119 (key (sy119 ing3))) -(recipe r119 (key (sx119 ing366))) -(recipe r119 (key (sy119 ing4))) -(recipe r119 (key (sx119 ing367))) -(recipe r119 (key (sy119 ing5))) -(recipe r119 (key (sx119 ing368))) -(recipe r119 (key (sy119 ing6))) -(recipe r120 (numIngredients 2)) -(recipe r120 (result (id item120))) -(recipe r120 (pattern 0 sx120)) -(recipe r120 (pattern 1 sy120)) -(recipe r120 (key (sx120 ing360))) -(recipe r120 (key (sy120 ing0))) -(recipe r120 (key (sx120 ing361))) -(recipe r120 (key (sy120 ing1))) -(recipe r120 (key (sx120 ing362))) -(recipe r120 (key (sy120 ing2))) -(recipe r120 (key (sx120 ing363))) -(recipe r120 (key (sy120 ing3))) -(recipe r120 (key (sx120 ing364))) -(recipe r120 (key (sy120 ing4))) -(recipe r120 (key (sx120 ing365))) -(recipe r120 (key (sy120 ing5))) -(recipe r120 (key (sx120 ing366))) -(recipe r120 (key (sy120 ing6))) -(recipe r120 (key (sx120 ing367))) -(recipe r120 (key (sy120 ing7))) -(recipe r120 (key (sx120 ing368))) -(recipe r120 (key (sy120 ing8))) -(recipe r120 (key (sx120 ing369))) -(recipe r120 (key (sy120 ing9))) -(recipe r120 (key (sx120 ing370))) -(recipe r120 (key (sy120 ing10))) -(recipe r120 (key (sx120 ing371))) -(recipe r120 (key (sy120 ing11))) -(recipe r121 (numIngredients 2)) -(recipe r121 (result (id item121))) -(recipe r121 (pattern 0 sx121)) -(recipe r121 (pattern 1 sy121)) -(recipe r121 (key (sx121 ing363))) -(recipe r121 (key (sy121 ing5))) -(recipe r121 (key (sx121 ing364))) -(recipe r121 (key (sy121 ing6))) -(recipe r121 (key (sx121 ing365))) -(recipe r121 (key (sy121 ing7))) -(recipe r121 (key (sx121 ing366))) -(recipe r121 (key (sy121 ing8))) -(recipe r121 (key (sx121 ing367))) -(recipe r121 (key (sy121 ing9))) -(recipe r121 (key (sx121 ing368))) -(recipe r121 (key (sy121 ing10))) -(recipe r121 (key (sx121 ing369))) -(recipe r121 (key (sy121 ing11))) -(recipe r121 (key (sx121 ing370))) -(recipe r121 (key (sy121 ing12))) -(recipe r121 (key (sx121 ing371))) -(recipe r121 (key (sy121 ing13))) -(recipe r121 (key (sx121 ing372))) -(recipe r121 (key (sy121 ing14))) -(recipe r121 (key (sx121 ing373))) -(recipe r121 (key (sy121 ing15))) -(recipe r121 (key (sx121 ing374))) -(recipe r121 (key (sy121 ing16))) -(recipe r122 (numIngredients 2)) -(recipe r122 (result (id item122))) -(recipe r122 (pattern 0 sx122)) -(recipe r122 (pattern 1 sy122)) -(recipe r122 (key (sx122 ing366))) -(recipe r122 (key (sy122 ing10))) -(recipe r122 (key (sx122 ing367))) -(recipe r122 (key (sy122 ing11))) -(recipe r122 (key (sx122 ing368))) -(recipe r122 (key (sy122 ing12))) -(recipe r122 (key (sx122 ing369))) -(recipe r122 (key (sy122 ing13))) -(recipe r122 (key (sx122 ing370))) -(recipe r122 (key (sy122 ing14))) -(recipe r122 (key (sx122 ing371))) -(recipe r122 (key (sy122 ing15))) -(recipe r122 (key (sx122 ing372))) -(recipe r122 (key (sy122 ing16))) -(recipe r122 (key (sx122 ing373))) -(recipe r122 (key (sy122 ing17))) -(recipe r122 (key (sx122 ing374))) -(recipe r122 (key (sy122 ing18))) -(recipe r122 (key (sx122 ing375))) -(recipe r122 (key (sy122 ing19))) -(recipe r122 (key (sx122 ing376))) -(recipe r122 (key (sy122 ing20))) -(recipe r122 (key (sx122 ing377))) -(recipe r122 (key (sy122 ing21))) -(recipe r123 (numIngredients 2)) -(recipe r123 (result (id item123))) -(recipe r123 (pattern 0 sx123)) -(recipe r123 (pattern 1 sy123)) -(recipe r123 (key (sx123 ing369))) -(recipe r123 (key (sy123 ing15))) -(recipe r123 (key (sx123 ing370))) -(recipe r123 (key (sy123 ing16))) -(recipe r123 (key (sx123 ing371))) -(recipe r123 (key (sy123 ing17))) -(recipe r123 (key (sx123 ing372))) -(recipe r123 (key (sy123 ing18))) -(recipe r123 (key (sx123 ing373))) -(recipe r123 (key (sy123 ing19))) -(recipe r123 (key (sx123 ing374))) -(recipe r123 (key (sy123 ing20))) -(recipe r123 (key (sx123 ing375))) -(recipe r123 (key (sy123 ing21))) -(recipe r123 (key (sx123 ing376))) -(recipe r123 (key (sy123 ing22))) -(recipe r123 (key (sx123 ing377))) -(recipe r123 (key (sy123 ing23))) -(recipe r123 (key (sx123 ing378))) -(recipe r123 (key (sy123 ing24))) -(recipe r123 (key (sx123 ing379))) -(recipe r123 (key (sy123 ing25))) -(recipe r123 (key (sx123 ing380))) -(recipe r123 (key (sy123 ing26))) -(recipe r124 (numIngredients 2)) -(recipe r124 (result (id item124))) -(recipe r124 (pattern 0 sx124)) -(recipe r124 (pattern 1 sy124)) -(recipe r124 (key (sx124 ing372))) -(recipe r124 (key (sy124 ing20))) -(recipe r124 (key (sx124 ing373))) -(recipe r124 (key (sy124 ing21))) -(recipe r124 (key (sx124 ing374))) -(recipe r124 (key (sy124 ing22))) -(recipe r124 (key (sx124 ing375))) -(recipe r124 (key (sy124 ing23))) -(recipe r124 (key (sx124 ing376))) -(recipe r124 (key (sy124 ing24))) -(recipe r124 (key (sx124 ing377))) -(recipe r124 (key (sy124 ing25))) -(recipe r124 (key (sx124 ing378))) -(recipe r124 (key (sy124 ing26))) -(recipe r124 (key (sx124 ing379))) -(recipe r124 (key (sy124 ing27))) -(recipe r124 (key (sx124 ing380))) -(recipe r124 (key (sy124 ing28))) -(recipe r124 (key (sx124 ing381))) -(recipe r124 (key (sy124 ing29))) -(recipe r124 (key (sx124 ing382))) -(recipe r124 (key (sy124 ing30))) -(recipe r124 (key (sx124 ing383))) -(recipe r124 (key (sy124 ing31))) -(recipe r125 (numIngredients 2)) -(recipe r125 (result (id item125))) -(recipe r125 (pattern 0 sx125)) -(recipe r125 (pattern 1 sy125)) -(recipe r125 (key (sx125 ing375))) -(recipe r125 (key (sy125 ing25))) -(recipe r125 (key (sx125 ing376))) -(recipe r125 (key (sy125 ing26))) -(recipe r125 (key (sx125 ing377))) -(recipe r125 (key (sy125 ing27))) -(recipe r125 (key (sx125 ing378))) -(recipe r125 (key (sy125 ing28))) -(recipe r125 (key (sx125 ing379))) -(recipe r125 (key (sy125 ing29))) -(recipe r125 (key (sx125 ing380))) -(recipe r125 (key (sy125 ing30))) -(recipe r125 (key (sx125 ing381))) -(recipe r125 (key (sy125 ing31))) -(recipe r125 (key (sx125 ing382))) -(recipe r125 (key (sy125 ing32))) -(recipe r125 (key (sx125 ing383))) -(recipe r125 (key (sy125 ing33))) -(recipe r125 (key (sx125 ing384))) -(recipe r125 (key (sy125 ing34))) -(recipe r125 (key (sx125 ing385))) -(recipe r125 (key (sy125 ing35))) -(recipe r125 (key (sx125 ing386))) -(recipe r125 (key (sy125 ing36))) -(recipe r126 (numIngredients 2)) -(recipe r126 (result (id item126))) -(recipe r126 (pattern 0 sx126)) -(recipe r126 (pattern 1 sy126)) -(recipe r126 (key (sx126 ing378))) -(recipe r126 (key (sy126 ing30))) -(recipe r126 (key (sx126 ing379))) -(recipe r126 (key (sy126 ing31))) -(recipe r126 (key (sx126 ing380))) -(recipe r126 (key (sy126 ing32))) -(recipe r126 (key (sx126 ing381))) -(recipe r126 (key (sy126 ing33))) -(recipe r126 (key (sx126 ing382))) -(recipe r126 (key (sy126 ing34))) -(recipe r126 (key (sx126 ing383))) -(recipe r126 (key (sy126 ing35))) -(recipe r126 (key (sx126 ing384))) -(recipe r126 (key (sy126 ing36))) -(recipe r126 (key (sx126 ing385))) -(recipe r126 (key (sy126 ing37))) -(recipe r126 (key (sx126 ing386))) -(recipe r126 (key (sy126 ing38))) -(recipe r126 (key (sx126 ing387))) -(recipe r126 (key (sy126 ing39))) -(recipe r126 (key (sx126 ing388))) -(recipe r126 (key (sy126 ing40))) -(recipe r126 (key (sx126 ing389))) -(recipe r126 (key (sy126 ing41))) -(recipe r127 (numIngredients 2)) -(recipe r127 (result (id item127))) -(recipe r127 (pattern 0 sx127)) -(recipe r127 (pattern 1 sy127)) -(recipe r127 (key (sx127 ing381))) -(recipe r127 (key (sy127 ing35))) -(recipe r127 (key (sx127 ing382))) -(recipe r127 (key (sy127 ing36))) -(recipe r127 (key (sx127 ing383))) -(recipe r127 (key (sy127 ing37))) -(recipe r127 (key (sx127 ing384))) -(recipe r127 (key (sy127 ing38))) -(recipe r127 (key (sx127 ing385))) -(recipe r127 (key (sy127 ing39))) -(recipe r127 (key (sx127 ing386))) -(recipe r127 (key (sy127 ing40))) -(recipe r127 (key (sx127 ing387))) -(recipe r127 (key (sy127 ing41))) -(recipe r127 (key (sx127 ing388))) -(recipe r127 (key (sy127 ing42))) -(recipe r127 (key (sx127 ing389))) -(recipe r127 (key (sy127 ing43))) -(recipe r127 (key (sx127 ing390))) -(recipe r127 (key (sy127 ing44))) -(recipe r127 (key (sx127 ing391))) -(recipe r127 (key (sy127 ing45))) -(recipe r127 (key (sx127 ing392))) -(recipe r127 (key (sy127 ing46))) -(recipe r128 (numIngredients 2)) -(recipe r128 (result (id item128))) -(recipe r128 (pattern 0 sx128)) -(recipe r128 (pattern 1 sy128)) -(recipe r128 (key (sx128 ing384))) -(recipe r128 (key (sy128 ing40))) -(recipe r128 (key (sx128 ing385))) -(recipe r128 (key (sy128 ing41))) -(recipe r128 (key (sx128 ing386))) -(recipe r128 (key (sy128 ing42))) -(recipe r128 (key (sx128 ing387))) -(recipe r128 (key (sy128 ing43))) -(recipe r128 (key (sx128 ing388))) -(recipe r128 (key (sy128 ing44))) -(recipe r128 (key (sx128 ing389))) -(recipe r128 (key (sy128 ing45))) -(recipe r128 (key (sx128 ing390))) -(recipe r128 (key (sy128 ing46))) -(recipe r128 (key (sx128 ing391))) -(recipe r128 (key (sy128 ing47))) -(recipe r128 (key (sx128 ing392))) -(recipe r128 (key (sy128 ing48))) -(recipe r128 (key (sx128 ing393))) -(recipe r128 (key (sy128 ing49))) -(recipe r128 (key (sx128 ing394))) -(recipe r128 (key (sy128 ing50))) -(recipe r128 (key (sx128 ing395))) -(recipe r128 (key (sy128 ing51))) -(recipe r129 (numIngredients 2)) -(recipe r129 (result (id item129))) -(recipe r129 (pattern 0 sx129)) -(recipe r129 (pattern 1 sy129)) -(recipe r129 (key (sx129 ing387))) -(recipe r129 (key (sy129 ing45))) -(recipe r129 (key (sx129 ing388))) -(recipe r129 (key (sy129 ing46))) -(recipe r129 (key (sx129 ing389))) -(recipe r129 (key (sy129 ing47))) -(recipe r129 (key (sx129 ing390))) -(recipe r129 (key (sy129 ing48))) -(recipe r129 (key (sx129 ing391))) -(recipe r129 (key (sy129 ing49))) -(recipe r129 (key (sx129 ing392))) -(recipe r129 (key (sy129 ing50))) -(recipe r129 (key (sx129 ing393))) -(recipe r129 (key (sy129 ing51))) -(recipe r129 (key (sx129 ing394))) -(recipe r129 (key (sy129 ing52))) -(recipe r129 (key (sx129 ing395))) -(recipe r129 (key (sy129 ing53))) -(recipe r129 (key (sx129 ing396))) -(recipe r129 (key (sy129 ing54))) -(recipe r129 (key (sx129 ing397))) -(recipe r129 (key (sy129 ing55))) -(recipe r129 (key (sx129 ing398))) -(recipe r129 (key (sy129 ing56))) -(recipe r130 (numIngredients 2)) -(recipe r130 (result (id item130))) -(recipe r130 (pattern 0 sx130)) -(recipe r130 (pattern 1 sy130)) -(recipe r130 (key (sx130 ing390))) -(recipe r130 (key (sy130 ing50))) -(recipe r130 (key (sx130 ing391))) -(recipe r130 (key (sy130 ing51))) -(recipe r130 (key (sx130 ing392))) -(recipe r130 (key (sy130 ing52))) -(recipe r130 (key (sx130 ing393))) -(recipe r130 (key (sy130 ing53))) -(recipe r130 (key (sx130 ing394))) -(recipe r130 (key (sy130 ing54))) -(recipe r130 (key (sx130 ing395))) -(recipe r130 (key (sy130 ing55))) -(recipe r130 (key (sx130 ing396))) -(recipe r130 (key (sy130 ing56))) -(recipe r130 (key (sx130 ing397))) -(recipe r130 (key (sy130 ing57))) -(recipe r130 (key (sx130 ing398))) -(recipe r130 (key (sy130 ing58))) -(recipe r130 (key (sx130 ing399))) -(recipe r130 (key (sy130 ing59))) -(recipe r130 (key (sx130 ing400))) -(recipe r130 (key (sy130 ing60))) -(recipe r130 (key (sx130 ing401))) -(recipe r130 (key (sy130 ing61))) -(recipe r131 (numIngredients 2)) -(recipe r131 (result (id item131))) -(recipe r131 (pattern 0 sx131)) -(recipe r131 (pattern 1 sy131)) -(recipe r131 (key (sx131 ing393))) -(recipe r131 (key (sy131 ing55))) -(recipe r131 (key (sx131 ing394))) -(recipe r131 (key (sy131 ing56))) -(recipe r131 (key (sx131 ing395))) -(recipe r131 (key (sy131 ing57))) -(recipe r131 (key (sx131 ing396))) -(recipe r131 (key (sy131 ing58))) -(recipe r131 (key (sx131 ing397))) -(recipe r131 (key (sy131 ing59))) -(recipe r131 (key (sx131 ing398))) -(recipe r131 (key (sy131 ing60))) -(recipe r131 (key (sx131 ing399))) -(recipe r131 (key (sy131 ing61))) -(recipe r131 (key (sx131 ing400))) -(recipe r131 (key (sy131 ing62))) -(recipe r131 (key (sx131 ing401))) -(recipe r131 (key (sy131 ing63))) -(recipe r131 (key (sx131 ing402))) -(recipe r131 (key (sy131 ing64))) -(recipe r131 (key (sx131 ing403))) -(recipe r131 (key (sy131 ing65))) -(recipe r131 (key (sx131 ing404))) -(recipe r131 (key (sy131 ing66))) -(recipe r132 (numIngredients 2)) -(recipe r132 (result (id item132))) -(recipe r132 (pattern 0 sx132)) -(recipe r132 (pattern 1 sy132)) -(recipe r132 (key (sx132 ing396))) -(recipe r132 (key (sy132 ing60))) -(recipe r132 (key (sx132 ing397))) -(recipe r132 (key (sy132 ing61))) -(recipe r132 (key (sx132 ing398))) -(recipe r132 (key (sy132 ing62))) -(recipe r132 (key (sx132 ing399))) -(recipe r132 (key (sy132 ing63))) -(recipe r132 (key (sx132 ing400))) -(recipe r132 (key (sy132 ing64))) -(recipe r132 (key (sx132 ing401))) -(recipe r132 (key (sy132 ing65))) -(recipe r132 (key (sx132 ing402))) -(recipe r132 (key (sy132 ing66))) -(recipe r132 (key (sx132 ing403))) -(recipe r132 (key (sy132 ing67))) -(recipe r132 (key (sx132 ing404))) -(recipe r132 (key (sy132 ing68))) -(recipe r132 (key (sx132 ing405))) -(recipe r132 (key (sy132 ing69))) -(recipe r132 (key (sx132 ing406))) -(recipe r132 (key (sy132 ing70))) -(recipe r132 (key (sx132 ing407))) -(recipe r132 (key (sy132 ing71))) -(recipe r133 (numIngredients 2)) -(recipe r133 (result (id item133))) -(recipe r133 (pattern 0 sx133)) -(recipe r133 (pattern 1 sy133)) -(recipe r133 (key (sx133 ing399))) -(recipe r133 (key (sy133 ing65))) -(recipe r133 (key (sx133 ing400))) -(recipe r133 (key (sy133 ing66))) -(recipe r133 (key (sx133 ing401))) -(recipe r133 (key (sy133 ing67))) -(recipe r133 (key (sx133 ing402))) -(recipe r133 (key (sy133 ing68))) -(recipe r133 (key (sx133 ing403))) -(recipe r133 (key (sy133 ing69))) -(recipe r133 (key (sx133 ing404))) -(recipe r133 (key (sy133 ing70))) -(recipe r133 (key (sx133 ing405))) -(recipe r133 (key (sy133 ing71))) -(recipe r133 (key (sx133 ing406))) -(recipe r133 (key (sy133 ing72))) -(recipe r133 (key (sx133 ing407))) -(recipe r133 (key (sy133 ing73))) -(recipe r133 (key (sx133 ing408))) -(recipe r133 (key (sy133 ing74))) -(recipe r133 (key (sx133 ing409))) -(recipe r133 (key (sy133 ing75))) -(recipe r133 (key (sx133 ing410))) -(recipe r133 (key (sy133 ing76))) -(recipe r134 (numIngredients 2)) -(recipe r134 (result (id item134))) -(recipe r134 (pattern 0 sx134)) -(recipe r134 (pattern 1 sy134)) -(recipe r134 (key (sx134 ing402))) -(recipe r134 (key (sy134 ing70))) -(recipe r134 (key (sx134 ing403))) -(recipe r134 (key (sy134 ing71))) -(recipe r134 (key (sx134 ing404))) -(recipe r134 (key (sy134 ing72))) -(recipe r134 (key (sx134 ing405))) -(recipe r134 (key (sy134 ing73))) -(recipe r134 (key (sx134 ing406))) -(recipe r134 (key (sy134 ing74))) -(recipe r134 (key (sx134 ing407))) -(recipe r134 (key (sy134 ing75))) -(recipe r134 (key (sx134 ing408))) -(recipe r134 (key (sy134 ing76))) -(recipe r134 (key (sx134 ing409))) -(recipe r134 (key (sy134 ing77))) -(recipe r134 (key (sx134 ing410))) -(recipe r134 (key (sy134 ing78))) -(recipe r134 (key (sx134 ing411))) -(recipe r134 (key (sy134 ing79))) -(recipe r134 (key (sx134 ing412))) -(recipe r134 (key (sy134 ing80))) -(recipe r134 (key (sx134 ing413))) -(recipe r134 (key (sy134 ing81))) -(recipe r135 (numIngredients 2)) -(recipe r135 (result (id item135))) -(recipe r135 (pattern 0 sx135)) -(recipe r135 (pattern 1 sy135)) -(recipe r135 (key (sx135 ing405))) -(recipe r135 (key (sy135 ing75))) -(recipe r135 (key (sx135 ing406))) -(recipe r135 (key (sy135 ing76))) -(recipe r135 (key (sx135 ing407))) -(recipe r135 (key (sy135 ing77))) -(recipe r135 (key (sx135 ing408))) -(recipe r135 (key (sy135 ing78))) -(recipe r135 (key (sx135 ing409))) -(recipe r135 (key (sy135 ing79))) -(recipe r135 (key (sx135 ing410))) -(recipe r135 (key (sy135 ing80))) -(recipe r135 (key (sx135 ing411))) -(recipe r135 (key (sy135 ing81))) -(recipe r135 (key (sx135 ing412))) -(recipe r135 (key (sy135 ing82))) -(recipe r135 (key (sx135 ing413))) -(recipe r135 (key (sy135 ing83))) -(recipe r135 (key (sx135 ing414))) -(recipe r135 (key (sy135 ing84))) -(recipe r135 (key (sx135 ing415))) -(recipe r135 (key (sy135 ing85))) -(recipe r135 (key (sx135 ing416))) -(recipe r135 (key (sy135 ing86))) -(recipe r136 (numIngredients 2)) -(recipe r136 (result (id item136))) -(recipe r136 (pattern 0 sx136)) -(recipe r136 (pattern 1 sy136)) -(recipe r136 (key (sx136 ing408))) -(recipe r136 (key (sy136 ing80))) -(recipe r136 (key (sx136 ing409))) -(recipe r136 (key (sy136 ing81))) -(recipe r136 (key (sx136 ing410))) -(recipe r136 (key (sy136 ing82))) -(recipe r136 (key (sx136 ing411))) -(recipe r136 (key (sy136 ing83))) -(recipe r136 (key (sx136 ing412))) -(recipe r136 (key (sy136 ing84))) -(recipe r136 (key (sx136 ing413))) -(recipe r136 (key (sy136 ing85))) -(recipe r136 (key (sx136 ing414))) -(recipe r136 (key (sy136 ing86))) -(recipe r136 (key (sx136 ing415))) -(recipe r136 (key (sy136 ing87))) -(recipe r136 (key (sx136 ing416))) -(recipe r136 (key (sy136 ing88))) -(recipe r136 (key (sx136 ing417))) -(recipe r136 (key (sy136 ing89))) -(recipe r136 (key (sx136 ing418))) -(recipe r136 (key (sy136 ing90))) -(recipe r136 (key (sx136 ing419))) -(recipe r136 (key (sy136 ing91))) -(recipe r137 (numIngredients 2)) -(recipe r137 (result (id item137))) -(recipe r137 (pattern 0 sx137)) -(recipe r137 (pattern 1 sy137)) -(recipe r137 (key (sx137 ing411))) -(recipe r137 (key (sy137 ing85))) -(recipe r137 (key (sx137 ing412))) -(recipe r137 (key (sy137 ing86))) -(recipe r137 (key (sx137 ing413))) -(recipe r137 (key (sy137 ing87))) -(recipe r137 (key (sx137 ing414))) -(recipe r137 (key (sy137 ing88))) -(recipe r137 (key (sx137 ing415))) -(recipe r137 (key (sy137 ing89))) -(recipe r137 (key (sx137 ing416))) -(recipe r137 (key (sy137 ing90))) -(recipe r137 (key (sx137 ing417))) -(recipe r137 (key (sy137 ing91))) -(recipe r137 (key (sx137 ing418))) -(recipe r137 (key (sy137 ing92))) -(recipe r137 (key (sx137 ing419))) -(recipe r137 (key (sy137 ing93))) -(recipe r137 (key (sx137 ing420))) -(recipe r137 (key (sy137 ing94))) -(recipe r137 (key (sx137 ing421))) -(recipe r137 (key (sy137 ing95))) -(recipe r137 (key (sx137 ing422))) -(recipe r137 (key (sy137 ing96))) -(recipe r138 (numIngredients 2)) -(recipe r138 (result (id item138))) -(recipe r138 (pattern 0 sx138)) -(recipe r138 (pattern 1 sy138)) -(recipe r138 (key (sx138 ing414))) -(recipe r138 (key (sy138 ing90))) -(recipe r138 (key (sx138 ing415))) -(recipe r138 (key (sy138 ing91))) -(recipe r138 (key (sx138 ing416))) -(recipe r138 (key (sy138 ing92))) -(recipe r138 (key (sx138 ing417))) -(recipe r138 (key (sy138 ing93))) -(recipe r138 (key (sx138 ing418))) -(recipe r138 (key (sy138 ing94))) -(recipe r138 (key (sx138 ing419))) -(recipe r138 (key (sy138 ing95))) -(recipe r138 (key (sx138 ing420))) -(recipe r138 (key (sy138 ing96))) -(recipe r138 (key (sx138 ing421))) -(recipe r138 (key (sy138 ing97))) -(recipe r138 (key (sx138 ing422))) -(recipe r138 (key (sy138 ing98))) -(recipe r138 (key (sx138 ing423))) -(recipe r138 (key (sy138 ing99))) -(recipe r138 (key (sx138 ing424))) -(recipe r138 (key (sy138 ing100))) -(recipe r138 (key (sx138 ing425))) -(recipe r138 (key (sy138 ing101))) -(recipe r139 (numIngredients 2)) -(recipe r139 (result (id item139))) -(recipe r139 (pattern 0 sx139)) -(recipe r139 (pattern 1 sy139)) -(recipe r139 (key (sx139 ing417))) -(recipe r139 (key (sy139 ing95))) -(recipe r139 (key (sx139 ing418))) -(recipe r139 (key (sy139 ing96))) -(recipe r139 (key (sx139 ing419))) -(recipe r139 (key (sy139 ing97))) -(recipe r139 (key (sx139 ing420))) -(recipe r139 (key (sy139 ing98))) -(recipe r139 (key (sx139 ing421))) -(recipe r139 (key (sy139 ing99))) -(recipe r139 (key (sx139 ing422))) -(recipe r139 (key (sy139 ing100))) -(recipe r139 (key (sx139 ing423))) -(recipe r139 (key (sy139 ing101))) -(recipe r139 (key (sx139 ing424))) -(recipe r139 (key (sy139 ing102))) -(recipe r139 (key (sx139 ing425))) -(recipe r139 (key (sy139 ing103))) -(recipe r139 (key (sx139 ing426))) -(recipe r139 (key (sy139 ing104))) -(recipe r139 (key (sx139 ing427))) -(recipe r139 (key (sy139 ing105))) -(recipe r139 (key (sx139 ing428))) -(recipe r139 (key (sy139 ing106))) -(recipe r140 (numIngredients 2)) -(recipe r140 (result (id item140))) -(recipe r140 (pattern 0 sx140)) -(recipe r140 (pattern 1 sy140)) -(recipe r140 (key (sx140 ing420))) -(recipe r140 (key (sy140 ing100))) -(recipe r140 (key (sx140 ing421))) -(recipe r140 (key (sy140 ing101))) -(recipe r140 (key (sx140 ing422))) -(recipe r140 (key (sy140 ing102))) -(recipe r140 (key (sx140 ing423))) -(recipe r140 (key (sy140 ing103))) -(recipe r140 (key (sx140 ing424))) -(recipe r140 (key (sy140 ing104))) -(recipe r140 (key (sx140 ing425))) -(recipe r140 (key (sy140 ing105))) -(recipe r140 (key (sx140 ing426))) -(recipe r140 (key (sy140 ing106))) -(recipe r140 (key (sx140 ing427))) -(recipe r140 (key (sy140 ing107))) -(recipe r140 (key (sx140 ing428))) -(recipe r140 (key (sy140 ing108))) -(recipe r140 (key (sx140 ing429))) -(recipe r140 (key (sy140 ing109))) -(recipe r140 (key (sx140 ing430))) -(recipe r140 (key (sy140 ing110))) -(recipe r140 (key (sx140 ing431))) -(recipe r140 (key (sy140 ing111))) -(recipe r141 (numIngredients 2)) -(recipe r141 (result (id item141))) -(recipe r141 (pattern 0 sx141)) -(recipe r141 (pattern 1 sy141)) -(recipe r141 (key (sx141 ing423))) -(recipe r141 (key (sy141 ing105))) -(recipe r141 (key (sx141 ing424))) -(recipe r141 (key (sy141 ing106))) -(recipe r141 (key (sx141 ing425))) -(recipe r141 (key (sy141 ing107))) -(recipe r141 (key (sx141 ing426))) -(recipe r141 (key (sy141 ing108))) -(recipe r141 (key (sx141 ing427))) -(recipe r141 (key (sy141 ing109))) -(recipe r141 (key (sx141 ing428))) -(recipe r141 (key (sy141 ing110))) -(recipe r141 (key (sx141 ing429))) -(recipe r141 (key (sy141 ing111))) -(recipe r141 (key (sx141 ing430))) -(recipe r141 (key (sy141 ing112))) -(recipe r141 (key (sx141 ing431))) -(recipe r141 (key (sy141 ing113))) -(recipe r141 (key (sx141 ing432))) -(recipe r141 (key (sy141 ing114))) -(recipe r141 (key (sx141 ing433))) -(recipe r141 (key (sy141 ing115))) -(recipe r141 (key (sx141 ing434))) -(recipe r141 (key (sy141 ing116))) -(recipe r142 (numIngredients 2)) -(recipe r142 (result (id item142))) -(recipe r142 (pattern 0 sx142)) -(recipe r142 (pattern 1 sy142)) -(recipe r142 (key (sx142 ing426))) -(recipe r142 (key (sy142 ing110))) -(recipe r142 (key (sx142 ing427))) -(recipe r142 (key (sy142 ing111))) -(recipe r142 (key (sx142 ing428))) -(recipe r142 (key (sy142 ing112))) -(recipe r142 (key (sx142 ing429))) -(recipe r142 (key (sy142 ing113))) -(recipe r142 (key (sx142 ing430))) -(recipe r142 (key (sy142 ing114))) -(recipe r142 (key (sx142 ing431))) -(recipe r142 (key (sy142 ing115))) -(recipe r142 (key (sx142 ing432))) -(recipe r142 (key (sy142 ing116))) -(recipe r142 (key (sx142 ing433))) -(recipe r142 (key (sy142 ing117))) -(recipe r142 (key (sx142 ing434))) -(recipe r142 (key (sy142 ing118))) -(recipe r142 (key (sx142 ing435))) -(recipe r142 (key (sy142 ing119))) -(recipe r142 (key (sx142 ing436))) -(recipe r142 (key (sy142 ing120))) -(recipe r142 (key (sx142 ing437))) -(recipe r142 (key (sy142 ing121))) -(recipe r143 (numIngredients 2)) -(recipe r143 (result (id item143))) -(recipe r143 (pattern 0 sx143)) -(recipe r143 (pattern 1 sy143)) -(recipe r143 (key (sx143 ing429))) -(recipe r143 (key (sy143 ing115))) -(recipe r143 (key (sx143 ing430))) -(recipe r143 (key (sy143 ing116))) -(recipe r143 (key (sx143 ing431))) -(recipe r143 (key (sy143 ing117))) -(recipe r143 (key (sx143 ing432))) -(recipe r143 (key (sy143 ing118))) -(recipe r143 (key (sx143 ing433))) -(recipe r143 (key (sy143 ing119))) -(recipe r143 (key (sx143 ing434))) -(recipe r143 (key (sy143 ing120))) -(recipe r143 (key (sx143 ing435))) -(recipe r143 (key (sy143 ing121))) -(recipe r143 (key (sx143 ing436))) -(recipe r143 (key (sy143 ing122))) -(recipe r143 (key (sx143 ing437))) -(recipe r143 (key (sy143 ing123))) -(recipe r143 (key (sx143 ing438))) -(recipe r143 (key (sy143 ing124))) -(recipe r143 (key (sx143 ing439))) -(recipe r143 (key (sy143 ing125))) -(recipe r143 (key (sx143 ing440))) -(recipe r143 (key (sy143 ing126))) -(recipe r144 (numIngredients 2)) -(recipe r144 (result (id item144))) -(recipe r144 (pattern 0 sx144)) -(recipe r144 (pattern 1 sy144)) -(recipe r144 (key (sx144 ing432))) -(recipe r144 (key (sy144 ing120))) -(recipe r144 (key (sx144 ing433))) -(recipe r144 (key (sy144 ing121))) -(recipe r144 (key (sx144 ing434))) -(recipe r144 (key (sy144 ing122))) -(recipe r144 (key (sx144 ing435))) -(recipe r144 (key (sy144 ing123))) -(recipe r144 (key (sx144 ing436))) -(recipe r144 (key (sy144 ing124))) -(recipe r144 (key (sx144 ing437))) -(recipe r144 (key (sy144 ing125))) -(recipe r144 (key (sx144 ing438))) -(recipe r144 (key (sy144 ing126))) -(recipe r144 (key (sx144 ing439))) -(recipe r144 (key (sy144 ing127))) -(recipe r144 (key (sx144 ing440))) -(recipe r144 (key (sy144 ing128))) -(recipe r144 (key (sx144 ing441))) -(recipe r144 (key (sy144 ing129))) -(recipe r144 (key (sx144 ing442))) -(recipe r144 (key (sy144 ing130))) -(recipe r144 (key (sx144 ing443))) -(recipe r144 (key (sy144 ing131))) -(recipe r145 (numIngredients 2)) -(recipe r145 (result (id item145))) -(recipe r145 (pattern 0 sx145)) -(recipe r145 (pattern 1 sy145)) -(recipe r145 (key (sx145 ing435))) -(recipe r145 (key (sy145 ing125))) -(recipe r145 (key (sx145 ing436))) -(recipe r145 (key (sy145 ing126))) -(recipe r145 (key (sx145 ing437))) -(recipe r145 (key (sy145 ing127))) -(recipe r145 (key (sx145 ing438))) -(recipe r145 (key (sy145 ing128))) -(recipe r145 (key (sx145 ing439))) -(recipe r145 (key (sy145 ing129))) -(recipe r145 (key (sx145 ing440))) -(recipe r145 (key (sy145 ing130))) -(recipe r145 (key (sx145 ing441))) -(recipe r145 (key (sy145 ing131))) -(recipe r145 (key (sx145 ing442))) -(recipe r145 (key (sy145 ing132))) -(recipe r145 (key (sx145 ing443))) -(recipe r145 (key (sy145 ing133))) -(recipe r145 (key (sx145 ing444))) -(recipe r145 (key (sy145 ing134))) -(recipe r145 (key (sx145 ing445))) -(recipe r145 (key (sy145 ing135))) -(recipe r145 (key (sx145 ing446))) -(recipe r145 (key (sy145 ing136))) -(recipe r146 (numIngredients 2)) -(recipe r146 (result (id item146))) -(recipe r146 (pattern 0 sx146)) -(recipe r146 (pattern 1 sy146)) -(recipe r146 (key (sx146 ing438))) -(recipe r146 (key (sy146 ing130))) -(recipe r146 (key (sx146 ing439))) -(recipe r146 (key (sy146 ing131))) -(recipe r146 (key (sx146 ing440))) -(recipe r146 (key (sy146 ing132))) -(recipe r146 (key (sx146 ing441))) -(recipe r146 (key (sy146 ing133))) -(recipe r146 (key (sx146 ing442))) -(recipe r146 (key (sy146 ing134))) -(recipe r146 (key (sx146 ing443))) -(recipe r146 (key (sy146 ing135))) -(recipe r146 (key (sx146 ing444))) -(recipe r146 (key (sy146 ing136))) -(recipe r146 (key (sx146 ing445))) -(recipe r146 (key (sy146 ing137))) -(recipe r146 (key (sx146 ing446))) -(recipe r146 (key (sy146 ing138))) -(recipe r146 (key (sx146 ing447))) -(recipe r146 (key (sy146 ing139))) -(recipe r146 (key (sx146 ing448))) -(recipe r146 (key (sy146 ing140))) -(recipe r146 (key (sx146 ing449))) -(recipe r146 (key (sy146 ing141))) -(recipe r147 (numIngredients 2)) -(recipe r147 (result (id item147))) -(recipe r147 (pattern 0 sx147)) -(recipe r147 (pattern 1 sy147)) -(recipe r147 (key (sx147 ing441))) -(recipe r147 (key (sy147 ing135))) -(recipe r147 (key (sx147 ing442))) -(recipe r147 (key (sy147 ing136))) -(recipe r147 (key (sx147 ing443))) -(recipe r147 (key (sy147 ing137))) -(recipe r147 (key (sx147 ing444))) -(recipe r147 (key (sy147 ing138))) -(recipe r147 (key (sx147 ing445))) -(recipe r147 (key (sy147 ing139))) -(recipe r147 (key (sx147 ing446))) -(recipe r147 (key (sy147 ing140))) -(recipe r147 (key (sx147 ing447))) -(recipe r147 (key (sy147 ing141))) -(recipe r147 (key (sx147 ing448))) -(recipe r147 (key (sy147 ing142))) -(recipe r147 (key (sx147 ing449))) -(recipe r147 (key (sy147 ing143))) -(recipe r147 (key (sx147 ing450))) -(recipe r147 (key (sy147 ing144))) -(recipe r147 (key (sx147 ing451))) -(recipe r147 (key (sy147 ing145))) -(recipe r147 (key (sx147 ing452))) -(recipe r147 (key (sy147 ing146))) -(recipe r148 (numIngredients 2)) -(recipe r148 (result (id item148))) -(recipe r148 (pattern 0 sx148)) -(recipe r148 (pattern 1 sy148)) -(recipe r148 (key (sx148 ing444))) -(recipe r148 (key (sy148 ing140))) -(recipe r148 (key (sx148 ing445))) -(recipe r148 (key (sy148 ing141))) -(recipe r148 (key (sx148 ing446))) -(recipe r148 (key (sy148 ing142))) -(recipe r148 (key (sx148 ing447))) -(recipe r148 (key (sy148 ing143))) -(recipe r148 (key (sx148 ing448))) -(recipe r148 (key (sy148 ing144))) -(recipe r148 (key (sx148 ing449))) -(recipe r148 (key (sy148 ing145))) -(recipe r148 (key (sx148 ing450))) -(recipe r148 (key (sy148 ing146))) -(recipe r148 (key (sx148 ing451))) -(recipe r148 (key (sy148 ing147))) -(recipe r148 (key (sx148 ing452))) -(recipe r148 (key (sy148 ing148))) -(recipe r148 (key (sx148 ing453))) -(recipe r148 (key (sy148 ing149))) -(recipe r148 (key (sx148 ing454))) -(recipe r148 (key (sy148 ing150))) -(recipe r148 (key (sx148 ing455))) -(recipe r148 (key (sy148 ing151))) -(recipe r149 (numIngredients 2)) -(recipe r149 (result (id item149))) -(recipe r149 (pattern 0 sx149)) -(recipe r149 (pattern 1 sy149)) -(recipe r149 (key (sx149 ing447))) -(recipe r149 (key (sy149 ing145))) -(recipe r149 (key (sx149 ing448))) -(recipe r149 (key (sy149 ing146))) -(recipe r149 (key (sx149 ing449))) -(recipe r149 (key (sy149 ing147))) -(recipe r149 (key (sx149 ing450))) -(recipe r149 (key (sy149 ing148))) -(recipe r149 (key (sx149 ing451))) -(recipe r149 (key (sy149 ing149))) -(recipe r149 (key (sx149 ing452))) -(recipe r149 (key (sy149 ing150))) -(recipe r149 (key (sx149 ing453))) -(recipe r149 (key (sy149 ing151))) -(recipe r149 (key (sx149 ing454))) -(recipe r149 (key (sy149 ing152))) -(recipe r149 (key (sx149 ing455))) -(recipe r149 (key (sy149 ing153))) -(recipe r149 (key (sx149 ing456))) -(recipe r149 (key (sy149 ing154))) -(recipe r149 (key (sx149 ing457))) -(recipe r149 (key (sy149 ing155))) -(recipe r149 (key (sx149 ing458))) -(recipe r149 (key (sy149 ing156))) -(recipe r150 (numIngredients 2)) -(recipe r150 (result (id item150))) -(recipe r150 (pattern 0 sx150)) -(recipe r150 (pattern 1 sy150)) -(recipe r150 (key (sx150 ing450))) -(recipe r150 (key (sy150 ing150))) -(recipe r150 (key (sx150 ing451))) -(recipe r150 (key (sy150 ing151))) -(recipe r150 (key (sx150 ing452))) -(recipe r150 (key (sy150 ing152))) -(recipe r150 (key (sx150 ing453))) -(recipe r150 (key (sy150 ing153))) -(recipe r150 (key (sx150 ing454))) -(recipe r150 (key (sy150 ing154))) -(recipe r150 (key (sx150 ing455))) -(recipe r150 (key (sy150 ing155))) -(recipe r150 (key (sx150 ing456))) -(recipe r150 (key (sy150 ing156))) -(recipe r150 (key (sx150 ing457))) -(recipe r150 (key (sy150 ing157))) -(recipe r150 (key (sx150 ing458))) -(recipe r150 (key (sy150 ing158))) -(recipe r150 (key (sx150 ing459))) -(recipe r150 (key (sy150 ing159))) -(recipe r150 (key (sx150 ing460))) -(recipe r150 (key (sy150 ing160))) -(recipe r150 (key (sx150 ing461))) -(recipe r150 (key (sy150 ing161))) -(recipe r151 (numIngredients 2)) -(recipe r151 (result (id item151))) -(recipe r151 (pattern 0 sx151)) -(recipe r151 (pattern 1 sy151)) -(recipe r151 (key (sx151 ing453))) -(recipe r151 (key (sy151 ing155))) -(recipe r151 (key (sx151 ing454))) -(recipe r151 (key (sy151 ing156))) -(recipe r151 (key (sx151 ing455))) -(recipe r151 (key (sy151 ing157))) -(recipe r151 (key (sx151 ing456))) -(recipe r151 (key (sy151 ing158))) -(recipe r151 (key (sx151 ing457))) -(recipe r151 (key (sy151 ing159))) -(recipe r151 (key (sx151 ing458))) -(recipe r151 (key (sy151 ing160))) -(recipe r151 (key (sx151 ing459))) -(recipe r151 (key (sy151 ing161))) -(recipe r151 (key (sx151 ing460))) -(recipe r151 (key (sy151 ing162))) -(recipe r151 (key (sx151 ing461))) -(recipe r151 (key (sy151 ing163))) -(recipe r151 (key (sx151 ing462))) -(recipe r151 (key (sy151 ing164))) -(recipe r151 (key (sx151 ing463))) -(recipe r151 (key (sy151 ing165))) -(recipe r151 (key (sx151 ing464))) -(recipe r151 (key (sy151 ing166))) -(recipe r152 (numIngredients 2)) -(recipe r152 (result (id item152))) -(recipe r152 (pattern 0 sx152)) -(recipe r152 (pattern 1 sy152)) -(recipe r152 (key (sx152 ing456))) -(recipe r152 (key (sy152 ing160))) -(recipe r152 (key (sx152 ing457))) -(recipe r152 (key (sy152 ing161))) -(recipe r152 (key (sx152 ing458))) -(recipe r152 (key (sy152 ing162))) -(recipe r152 (key (sx152 ing459))) -(recipe r152 (key (sy152 ing163))) -(recipe r152 (key (sx152 ing460))) -(recipe r152 (key (sy152 ing164))) -(recipe r152 (key (sx152 ing461))) -(recipe r152 (key (sy152 ing165))) -(recipe r152 (key (sx152 ing462))) -(recipe r152 (key (sy152 ing166))) -(recipe r152 (key (sx152 ing463))) -(recipe r152 (key (sy152 ing167))) -(recipe r152 (key (sx152 ing464))) -(recipe r152 (key (sy152 ing168))) -(recipe r152 (key (sx152 ing465))) -(recipe r152 (key (sy152 ing169))) -(recipe r152 (key (sx152 ing466))) -(recipe r152 (key (sy152 ing170))) -(recipe r152 (key (sx152 ing467))) -(recipe r152 (key (sy152 ing171))) -(recipe r153 (numIngredients 2)) -(recipe r153 (result (id item153))) -(recipe r153 (pattern 0 sx153)) -(recipe r153 (pattern 1 sy153)) -(recipe r153 (key (sx153 ing459))) -(recipe r153 (key (sy153 ing165))) -(recipe r153 (key (sx153 ing460))) -(recipe r153 (key (sy153 ing166))) -(recipe r153 (key (sx153 ing461))) -(recipe r153 (key (sy153 ing167))) -(recipe r153 (key (sx153 ing462))) -(recipe r153 (key (sy153 ing168))) -(recipe r153 (key (sx153 ing463))) -(recipe r153 (key (sy153 ing169))) -(recipe r153 (key (sx153 ing464))) -(recipe r153 (key (sy153 ing170))) -(recipe r153 (key (sx153 ing465))) -(recipe r153 (key (sy153 ing171))) -(recipe r153 (key (sx153 ing466))) -(recipe r153 (key (sy153 ing172))) -(recipe r153 (key (sx153 ing467))) -(recipe r153 (key (sy153 ing173))) -(recipe r153 (key (sx153 ing468))) -(recipe r153 (key (sy153 ing174))) -(recipe r153 (key (sx153 ing469))) -(recipe r153 (key (sy153 ing175))) -(recipe r153 (key (sx153 ing470))) -(recipe r153 (key (sy153 ing176))) -(recipe r154 (numIngredients 2)) -(recipe r154 (result (id item154))) -(recipe r154 (pattern 0 sx154)) -(recipe r154 (pattern 1 sy154)) -(recipe r154 (key (sx154 ing462))) -(recipe r154 (key (sy154 ing170))) -(recipe r154 (key (sx154 ing463))) -(recipe r154 (key (sy154 ing171))) -(recipe r154 (key (sx154 ing464))) -(recipe r154 (key (sy154 ing172))) -(recipe r154 (key (sx154 ing465))) -(recipe r154 (key (sy154 ing173))) -(recipe r154 (key (sx154 ing466))) -(recipe r154 (key (sy154 ing174))) -(recipe r154 (key (sx154 ing467))) -(recipe r154 (key (sy154 ing175))) -(recipe r154 (key (sx154 ing468))) -(recipe r154 (key (sy154 ing176))) -(recipe r154 (key (sx154 ing469))) -(recipe r154 (key (sy154 ing177))) -(recipe r154 (key (sx154 ing470))) -(recipe r154 (key (sy154 ing178))) -(recipe r154 (key (sx154 ing471))) -(recipe r154 (key (sy154 ing179))) -(recipe r154 (key (sx154 ing472))) -(recipe r154 (key (sy154 ing180))) -(recipe r154 (key (sx154 ing473))) -(recipe r154 (key (sy154 ing181))) -(recipe r155 (numIngredients 2)) -(recipe r155 (result (id item155))) -(recipe r155 (pattern 0 sx155)) -(recipe r155 (pattern 1 sy155)) -(recipe r155 (key (sx155 ing465))) -(recipe r155 (key (sy155 ing175))) -(recipe r155 (key (sx155 ing466))) -(recipe r155 (key (sy155 ing176))) -(recipe r155 (key (sx155 ing467))) -(recipe r155 (key (sy155 ing177))) -(recipe r155 (key (sx155 ing468))) -(recipe r155 (key (sy155 ing178))) -(recipe r155 (key (sx155 ing469))) -(recipe r155 (key (sy155 ing179))) -(recipe r155 (key (sx155 ing470))) -(recipe r155 (key (sy155 ing180))) -(recipe r155 (key (sx155 ing471))) -(recipe r155 (key (sy155 ing181))) -(recipe r155 (key (sx155 ing472))) -(recipe r155 (key (sy155 ing182))) -(recipe r155 (key (sx155 ing473))) -(recipe r155 (key (sy155 ing183))) -(recipe r155 (key (sx155 ing474))) -(recipe r155 (key (sy155 ing184))) -(recipe r155 (key (sx155 ing475))) -(recipe r155 (key (sy155 ing185))) -(recipe r155 (key (sx155 ing476))) -(recipe r155 (key (sy155 ing186))) -(recipe r156 (numIngredients 2)) -(recipe r156 (result (id item156))) -(recipe r156 (pattern 0 sx156)) -(recipe r156 (pattern 1 sy156)) -(recipe r156 (key (sx156 ing468))) -(recipe r156 (key (sy156 ing180))) -(recipe r156 (key (sx156 ing469))) -(recipe r156 (key (sy156 ing181))) -(recipe r156 (key (sx156 ing470))) -(recipe r156 (key (sy156 ing182))) -(recipe r156 (key (sx156 ing471))) -(recipe r156 (key (sy156 ing183))) -(recipe r156 (key (sx156 ing472))) -(recipe r156 (key (sy156 ing184))) -(recipe r156 (key (sx156 ing473))) -(recipe r156 (key (sy156 ing185))) -(recipe r156 (key (sx156 ing474))) -(recipe r156 (key (sy156 ing186))) -(recipe r156 (key (sx156 ing475))) -(recipe r156 (key (sy156 ing187))) -(recipe r156 (key (sx156 ing476))) -(recipe r156 (key (sy156 ing188))) -(recipe r156 (key (sx156 ing477))) -(recipe r156 (key (sy156 ing189))) -(recipe r156 (key (sx156 ing478))) -(recipe r156 (key (sy156 ing190))) -(recipe r156 (key (sx156 ing479))) -(recipe r156 (key (sy156 ing191))) -(recipe r157 (numIngredients 2)) -(recipe r157 (result (id item157))) -(recipe r157 (pattern 0 sx157)) -(recipe r157 (pattern 1 sy157)) -(recipe r157 (key (sx157 ing471))) -(recipe r157 (key (sy157 ing185))) -(recipe r157 (key (sx157 ing472))) -(recipe r157 (key (sy157 ing186))) -(recipe r157 (key (sx157 ing473))) -(recipe r157 (key (sy157 ing187))) -(recipe r157 (key (sx157 ing474))) -(recipe r157 (key (sy157 ing188))) -(recipe r157 (key (sx157 ing475))) -(recipe r157 (key (sy157 ing189))) -(recipe r157 (key (sx157 ing476))) -(recipe r157 (key (sy157 ing190))) -(recipe r157 (key (sx157 ing477))) -(recipe r157 (key (sy157 ing191))) -(recipe r157 (key (sx157 ing478))) -(recipe r157 (key (sy157 ing192))) -(recipe r157 (key (sx157 ing479))) -(recipe r157 (key (sy157 ing193))) -(recipe r157 (key (sx157 ing480))) -(recipe r157 (key (sy157 ing194))) -(recipe r157 (key (sx157 ing481))) -(recipe r157 (key (sy157 ing195))) -(recipe r157 (key (sx157 ing482))) -(recipe r157 (key (sy157 ing196))) -(recipe r158 (numIngredients 2)) -(recipe r158 (result (id item158))) -(recipe r158 (pattern 0 sx158)) -(recipe r158 (pattern 1 sy158)) -(recipe r158 (key (sx158 ing474))) -(recipe r158 (key (sy158 ing190))) -(recipe r158 (key (sx158 ing475))) -(recipe r158 (key (sy158 ing191))) -(recipe r158 (key (sx158 ing476))) -(recipe r158 (key (sy158 ing192))) -(recipe r158 (key (sx158 ing477))) -(recipe r158 (key (sy158 ing193))) -(recipe r158 (key (sx158 ing478))) -(recipe r158 (key (sy158 ing194))) -(recipe r158 (key (sx158 ing479))) -(recipe r158 (key (sy158 ing195))) -(recipe r158 (key (sx158 ing480))) -(recipe r158 (key (sy158 ing196))) -(recipe r158 (key (sx158 ing481))) -(recipe r158 (key (sy158 ing197))) -(recipe r158 (key (sx158 ing482))) -(recipe r158 (key (sy158 ing198))) -(recipe r158 (key (sx158 ing483))) -(recipe r158 (key (sy158 ing199))) -(recipe r158 (key (sx158 ing484))) -(recipe r158 (key (sy158 ing200))) -(recipe r158 (key (sx158 ing485))) -(recipe r158 (key (sy158 ing201))) -(recipe r159 (numIngredients 2)) -(recipe r159 (result (id item159))) -(recipe r159 (pattern 0 sx159)) -(recipe r159 (pattern 1 sy159)) -(recipe r159 (key (sx159 ing477))) -(recipe r159 (key (sy159 ing195))) -(recipe r159 (key (sx159 ing478))) -(recipe r159 (key (sy159 ing196))) -(recipe r159 (key (sx159 ing479))) -(recipe r159 (key (sy159 ing197))) -(recipe r159 (key (sx159 ing480))) -(recipe r159 (key (sy159 ing198))) -(recipe r159 (key (sx159 ing481))) -(recipe r159 (key (sy159 ing199))) -(recipe r159 (key (sx159 ing482))) -(recipe r159 (key (sy159 ing200))) -(recipe r159 (key (sx159 ing483))) -(recipe r159 (key (sy159 ing201))) -(recipe r159 (key (sx159 ing484))) -(recipe r159 (key (sy159 ing202))) -(recipe r159 (key (sx159 ing485))) -(recipe r159 (key (sy159 ing203))) -(recipe r159 (key (sx159 ing486))) -(recipe r159 (key (sy159 ing204))) -(recipe r159 (key (sx159 ing487))) -(recipe r159 (key (sy159 ing205))) -(recipe r159 (key (sx159 ing488))) -(recipe r159 (key (sy159 ing206))) -(recipe r160 (numIngredients 2)) -(recipe r160 (result (id item160))) -(recipe r160 (pattern 0 sx160)) -(recipe r160 (pattern 1 sy160)) -(recipe r160 (key (sx160 ing480))) -(recipe r160 (key (sy160 ing200))) -(recipe r160 (key (sx160 ing481))) -(recipe r160 (key (sy160 ing201))) -(recipe r160 (key (sx160 ing482))) -(recipe r160 (key (sy160 ing202))) -(recipe r160 (key (sx160 ing483))) -(recipe r160 (key (sy160 ing203))) -(recipe r160 (key (sx160 ing484))) -(recipe r160 (key (sy160 ing204))) -(recipe r160 (key (sx160 ing485))) -(recipe r160 (key (sy160 ing205))) -(recipe r160 (key (sx160 ing486))) -(recipe r160 (key (sy160 ing206))) -(recipe r160 (key (sx160 ing487))) -(recipe r160 (key (sy160 ing207))) -(recipe r160 (key (sx160 ing488))) -(recipe r160 (key (sy160 ing208))) -(recipe r160 (key (sx160 ing489))) -(recipe r160 (key (sy160 ing209))) -(recipe r160 (key (sx160 ing490))) -(recipe r160 (key (sy160 ing210))) -(recipe r160 (key (sx160 ing491))) -(recipe r160 (key (sy160 ing211))) -(recipe r161 (numIngredients 2)) -(recipe r161 (result (id item161))) -(recipe r161 (pattern 0 sx161)) -(recipe r161 (pattern 1 sy161)) -(recipe r161 (key (sx161 ing483))) -(recipe r161 (key (sy161 ing205))) -(recipe r161 (key (sx161 ing484))) -(recipe r161 (key (sy161 ing206))) -(recipe r161 (key (sx161 ing485))) -(recipe r161 (key (sy161 ing207))) -(recipe r161 (key (sx161 ing486))) -(recipe r161 (key (sy161 ing208))) -(recipe r161 (key (sx161 ing487))) -(recipe r161 (key (sy161 ing209))) -(recipe r161 (key (sx161 ing488))) -(recipe r161 (key (sy161 ing210))) -(recipe r161 (key (sx161 ing489))) -(recipe r161 (key (sy161 ing211))) -(recipe r161 (key (sx161 ing490))) -(recipe r161 (key (sy161 ing212))) -(recipe r161 (key (sx161 ing491))) -(recipe r161 (key (sy161 ing213))) -(recipe r161 (key (sx161 ing492))) -(recipe r161 (key (sy161 ing214))) -(recipe r161 (key (sx161 ing493))) -(recipe r161 (key (sy161 ing215))) -(recipe r161 (key (sx161 ing494))) -(recipe r161 (key (sy161 ing216))) -(recipe r162 (numIngredients 2)) -(recipe r162 (result (id item162))) -(recipe r162 (pattern 0 sx162)) -(recipe r162 (pattern 1 sy162)) -(recipe r162 (key (sx162 ing486))) -(recipe r162 (key (sy162 ing210))) -(recipe r162 (key (sx162 ing487))) -(recipe r162 (key (sy162 ing211))) -(recipe r162 (key (sx162 ing488))) -(recipe r162 (key (sy162 ing212))) -(recipe r162 (key (sx162 ing489))) -(recipe r162 (key (sy162 ing213))) -(recipe r162 (key (sx162 ing490))) -(recipe r162 (key (sy162 ing214))) -(recipe r162 (key (sx162 ing491))) -(recipe r162 (key (sy162 ing215))) -(recipe r162 (key (sx162 ing492))) -(recipe r162 (key (sy162 ing216))) -(recipe r162 (key (sx162 ing493))) -(recipe r162 (key (sy162 ing217))) -(recipe r162 (key (sx162 ing494))) -(recipe r162 (key (sy162 ing218))) -(recipe r162 (key (sx162 ing495))) -(recipe r162 (key (sy162 ing219))) -(recipe r162 (key (sx162 ing496))) -(recipe r162 (key (sy162 ing220))) -(recipe r162 (key (sx162 ing497))) -(recipe r162 (key (sy162 ing221))) -(recipe r163 (numIngredients 2)) -(recipe r163 (result (id item163))) -(recipe r163 (pattern 0 sx163)) -(recipe r163 (pattern 1 sy163)) -(recipe r163 (key (sx163 ing489))) -(recipe r163 (key (sy163 ing215))) -(recipe r163 (key (sx163 ing490))) -(recipe r163 (key (sy163 ing216))) -(recipe r163 (key (sx163 ing491))) -(recipe r163 (key (sy163 ing217))) -(recipe r163 (key (sx163 ing492))) -(recipe r163 (key (sy163 ing218))) -(recipe r163 (key (sx163 ing493))) -(recipe r163 (key (sy163 ing219))) -(recipe r163 (key (sx163 ing494))) -(recipe r163 (key (sy163 ing220))) -(recipe r163 (key (sx163 ing495))) -(recipe r163 (key (sy163 ing221))) -(recipe r163 (key (sx163 ing496))) -(recipe r163 (key (sy163 ing222))) -(recipe r163 (key (sx163 ing497))) -(recipe r163 (key (sy163 ing223))) -(recipe r163 (key (sx163 ing498))) -(recipe r163 (key (sy163 ing224))) -(recipe r163 (key (sx163 ing499))) -(recipe r163 (key (sy163 ing225))) -(recipe r163 (key (sx163 ing500))) -(recipe r163 (key (sy163 ing226))) -(recipe r164 (numIngredients 2)) -(recipe r164 (result (id item164))) -(recipe r164 (pattern 0 sx164)) -(recipe r164 (pattern 1 sy164)) -(recipe r164 (key (sx164 ing492))) -(recipe r164 (key (sy164 ing220))) -(recipe r164 (key (sx164 ing493))) -(recipe r164 (key (sy164 ing221))) -(recipe r164 (key (sx164 ing494))) -(recipe r164 (key (sy164 ing222))) -(recipe r164 (key (sx164 ing495))) -(recipe r164 (key (sy164 ing223))) -(recipe r164 (key (sx164 ing496))) -(recipe r164 (key (sy164 ing224))) -(recipe r164 (key (sx164 ing497))) -(recipe r164 (key (sy164 ing225))) -(recipe r164 (key (sx164 ing498))) -(recipe r164 (key (sy164 ing226))) -(recipe r164 (key (sx164 ing499))) -(recipe r164 (key (sy164 ing227))) -(recipe r164 (key (sx164 ing500))) -(recipe r164 (key (sy164 ing228))) -(recipe r164 (key (sx164 ing501))) -(recipe r164 (key (sy164 ing229))) -(recipe r164 (key (sx164 ing502))) -(recipe r164 (key (sy164 ing230))) -(recipe r164 (key (sx164 ing503))) -(recipe r164 (key (sy164 ing231))) -(recipe r165 (numIngredients 2)) -(recipe r165 (result (id item165))) -(recipe r165 (pattern 0 sx165)) -(recipe r165 (pattern 1 sy165)) -(recipe r165 (key (sx165 ing495))) -(recipe r165 (key (sy165 ing225))) -(recipe r165 (key (sx165 ing496))) -(recipe r165 (key (sy165 ing226))) -(recipe r165 (key (sx165 ing497))) -(recipe r165 (key (sy165 ing227))) -(recipe r165 (key (sx165 ing498))) -(recipe r165 (key (sy165 ing228))) -(recipe r165 (key (sx165 ing499))) -(recipe r165 (key (sy165 ing229))) -(recipe r165 (key (sx165 ing500))) -(recipe r165 (key (sy165 ing230))) -(recipe r165 (key (sx165 ing501))) -(recipe r165 (key (sy165 ing231))) -(recipe r165 (key (sx165 ing502))) -(recipe r165 (key (sy165 ing232))) -(recipe r165 (key (sx165 ing503))) -(recipe r165 (key (sy165 ing233))) -(recipe r165 (key (sx165 ing504))) -(recipe r165 (key (sy165 ing234))) -(recipe r165 (key (sx165 ing505))) -(recipe r165 (key (sy165 ing235))) -(recipe r165 (key (sx165 ing506))) -(recipe r165 (key (sy165 ing236))) -(recipe r166 (numIngredients 2)) -(recipe r166 (result (id item166))) -(recipe r166 (pattern 0 sx166)) -(recipe r166 (pattern 1 sy166)) -(recipe r166 (key (sx166 ing498))) -(recipe r166 (key (sy166 ing230))) -(recipe r166 (key (sx166 ing499))) -(recipe r166 (key (sy166 ing231))) -(recipe r166 (key (sx166 ing500))) -(recipe r166 (key (sy166 ing232))) -(recipe r166 (key (sx166 ing501))) -(recipe r166 (key (sy166 ing233))) -(recipe r166 (key (sx166 ing502))) -(recipe r166 (key (sy166 ing234))) -(recipe r166 (key (sx166 ing503))) -(recipe r166 (key (sy166 ing235))) -(recipe r166 (key (sx166 ing504))) -(recipe r166 (key (sy166 ing236))) -(recipe r166 (key (sx166 ing505))) -(recipe r166 (key (sy166 ing237))) -(recipe r166 (key (sx166 ing506))) -(recipe r166 (key (sy166 ing238))) -(recipe r166 (key (sx166 ing507))) -(recipe r166 (key (sy166 ing239))) -(recipe r166 (key (sx166 ing508))) -(recipe r166 (key (sy166 ing240))) -(recipe r166 (key (sx166 ing509))) -(recipe r166 (key (sy166 ing241))) -(recipe r167 (numIngredients 2)) -(recipe r167 (result (id item167))) -(recipe r167 (pattern 0 sx167)) -(recipe r167 (pattern 1 sy167)) -(recipe r167 (key (sx167 ing501))) -(recipe r167 (key (sy167 ing235))) -(recipe r167 (key (sx167 ing502))) -(recipe r167 (key (sy167 ing236))) -(recipe r167 (key (sx167 ing503))) -(recipe r167 (key (sy167 ing237))) -(recipe r167 (key (sx167 ing504))) -(recipe r167 (key (sy167 ing238))) -(recipe r167 (key (sx167 ing505))) -(recipe r167 (key (sy167 ing239))) -(recipe r167 (key (sx167 ing506))) -(recipe r167 (key (sy167 ing240))) -(recipe r167 (key (sx167 ing507))) -(recipe r167 (key (sy167 ing241))) -(recipe r167 (key (sx167 ing508))) -(recipe r167 (key (sy167 ing242))) -(recipe r167 (key (sx167 ing509))) -(recipe r167 (key (sy167 ing243))) -(recipe r167 (key (sx167 ing510))) -(recipe r167 (key (sy167 ing244))) -(recipe r167 (key (sx167 ing511))) -(recipe r167 (key (sy167 ing245))) -(recipe r167 (key (sx167 ing512))) -(recipe r167 (key (sy167 ing246))) -(recipe r168 (numIngredients 2)) -(recipe r168 (result (id item168))) -(recipe r168 (pattern 0 sx168)) -(recipe r168 (pattern 1 sy168)) -(recipe r168 (key (sx168 ing504))) -(recipe r168 (key (sy168 ing240))) -(recipe r168 (key (sx168 ing505))) -(recipe r168 (key (sy168 ing241))) -(recipe r168 (key (sx168 ing506))) -(recipe r168 (key (sy168 ing242))) -(recipe r168 (key (sx168 ing507))) -(recipe r168 (key (sy168 ing243))) -(recipe r168 (key (sx168 ing508))) -(recipe r168 (key (sy168 ing244))) -(recipe r168 (key (sx168 ing509))) -(recipe r168 (key (sy168 ing245))) -(recipe r168 (key (sx168 ing510))) -(recipe r168 (key (sy168 ing246))) -(recipe r168 (key (sx168 ing511))) -(recipe r168 (key (sy168 ing247))) -(recipe r168 (key (sx168 ing512))) -(recipe r168 (key (sy168 ing248))) -(recipe r168 (key (sx168 ing513))) -(recipe r168 (key (sy168 ing249))) -(recipe r168 (key (sx168 ing514))) -(recipe r168 (key (sy168 ing250))) -(recipe r168 (key (sx168 ing515))) -(recipe r168 (key (sy168 ing251))) -(recipe r169 (numIngredients 2)) -(recipe r169 (result (id item169))) -(recipe r169 (pattern 0 sx169)) -(recipe r169 (pattern 1 sy169)) -(recipe r169 (key (sx169 ing507))) -(recipe r169 (key (sy169 ing245))) -(recipe r169 (key (sx169 ing508))) -(recipe r169 (key (sy169 ing246))) -(recipe r169 (key (sx169 ing509))) -(recipe r169 (key (sy169 ing247))) -(recipe r169 (key (sx169 ing510))) -(recipe r169 (key (sy169 ing248))) -(recipe r169 (key (sx169 ing511))) -(recipe r169 (key (sy169 ing249))) -(recipe r169 (key (sx169 ing512))) -(recipe r169 (key (sy169 ing250))) -(recipe r169 (key (sx169 ing513))) -(recipe r169 (key (sy169 ing251))) -(recipe r169 (key (sx169 ing514))) -(recipe r169 (key (sy169 ing252))) -(recipe r169 (key (sx169 ing515))) -(recipe r169 (key (sy169 ing253))) -(recipe r169 (key (sx169 ing516))) -(recipe r169 (key (sy169 ing254))) -(recipe r169 (key (sx169 ing517))) -(recipe r169 (key (sy169 ing255))) -(recipe r169 (key (sx169 ing518))) -(recipe r169 (key (sy169 ing256))) -(recipe r170 (numIngredients 2)) -(recipe r170 (result (id item170))) -(recipe r170 (pattern 0 sx170)) -(recipe r170 (pattern 1 sy170)) -(recipe r170 (key (sx170 ing510))) -(recipe r170 (key (sy170 ing250))) -(recipe r170 (key (sx170 ing511))) -(recipe r170 (key (sy170 ing251))) -(recipe r170 (key (sx170 ing512))) -(recipe r170 (key (sy170 ing252))) -(recipe r170 (key (sx170 ing513))) -(recipe r170 (key (sy170 ing253))) -(recipe r170 (key (sx170 ing514))) -(recipe r170 (key (sy170 ing254))) -(recipe r170 (key (sx170 ing515))) -(recipe r170 (key (sy170 ing255))) -(recipe r170 (key (sx170 ing516))) -(recipe r170 (key (sy170 ing256))) -(recipe r170 (key (sx170 ing517))) -(recipe r170 (key (sy170 ing257))) -(recipe r170 (key (sx170 ing518))) -(recipe r170 (key (sy170 ing258))) -(recipe r170 (key (sx170 ing519))) -(recipe r170 (key (sy170 ing259))) -(recipe r170 (key (sx170 ing520))) -(recipe r170 (key (sy170 ing260))) -(recipe r170 (key (sx170 ing521))) -(recipe r170 (key (sy170 ing261))) -(recipe r171 (numIngredients 2)) -(recipe r171 (result (id item171))) -(recipe r171 (pattern 0 sx171)) -(recipe r171 (pattern 1 sy171)) -(recipe r171 (key (sx171 ing513))) -(recipe r171 (key (sy171 ing255))) -(recipe r171 (key (sx171 ing514))) -(recipe r171 (key (sy171 ing256))) -(recipe r171 (key (sx171 ing515))) -(recipe r171 (key (sy171 ing257))) -(recipe r171 (key (sx171 ing516))) -(recipe r171 (key (sy171 ing258))) -(recipe r171 (key (sx171 ing517))) -(recipe r171 (key (sy171 ing259))) -(recipe r171 (key (sx171 ing518))) -(recipe r171 (key (sy171 ing260))) -(recipe r171 (key (sx171 ing519))) -(recipe r171 (key (sy171 ing261))) -(recipe r171 (key (sx171 ing520))) -(recipe r171 (key (sy171 ing262))) -(recipe r171 (key (sx171 ing521))) -(recipe r171 (key (sy171 ing263))) -(recipe r171 (key (sx171 ing522))) -(recipe r171 (key (sy171 ing264))) -(recipe r171 (key (sx171 ing523))) -(recipe r171 (key (sy171 ing265))) -(recipe r171 (key (sx171 ing524))) -(recipe r171 (key (sy171 ing266))) -(recipe r172 (numIngredients 2)) -(recipe r172 (result (id item172))) -(recipe r172 (pattern 0 sx172)) -(recipe r172 (pattern 1 sy172)) -(recipe r172 (key (sx172 ing516))) -(recipe r172 (key (sy172 ing260))) -(recipe r172 (key (sx172 ing517))) -(recipe r172 (key (sy172 ing261))) -(recipe r172 (key (sx172 ing518))) -(recipe r172 (key (sy172 ing262))) -(recipe r172 (key (sx172 ing519))) -(recipe r172 (key (sy172 ing263))) -(recipe r172 (key (sx172 ing520))) -(recipe r172 (key (sy172 ing264))) -(recipe r172 (key (sx172 ing521))) -(recipe r172 (key (sy172 ing265))) -(recipe r172 (key (sx172 ing522))) -(recipe r172 (key (sy172 ing266))) -(recipe r172 (key (sx172 ing523))) -(recipe r172 (key (sy172 ing267))) -(recipe r172 (key (sx172 ing524))) -(recipe r172 (key (sy172 ing268))) -(recipe r172 (key (sx172 ing525))) -(recipe r172 (key (sy172 ing269))) -(recipe r172 (key (sx172 ing526))) -(recipe r172 (key (sy172 ing270))) -(recipe r172 (key (sx172 ing527))) -(recipe r172 (key (sy172 ing271))) -(recipe r173 (numIngredients 2)) -(recipe r173 (result (id item173))) -(recipe r173 (pattern 0 sx173)) -(recipe r173 (pattern 1 sy173)) -(recipe r173 (key (sx173 ing519))) -(recipe r173 (key (sy173 ing265))) -(recipe r173 (key (sx173 ing520))) -(recipe r173 (key (sy173 ing266))) -(recipe r173 (key (sx173 ing521))) -(recipe r173 (key (sy173 ing267))) -(recipe r173 (key (sx173 ing522))) -(recipe r173 (key (sy173 ing268))) -(recipe r173 (key (sx173 ing523))) -(recipe r173 (key (sy173 ing269))) -(recipe r173 (key (sx173 ing524))) -(recipe r173 (key (sy173 ing270))) -(recipe r173 (key (sx173 ing525))) -(recipe r173 (key (sy173 ing271))) -(recipe r173 (key (sx173 ing526))) -(recipe r173 (key (sy173 ing272))) -(recipe r173 (key (sx173 ing527))) -(recipe r173 (key (sy173 ing273))) -(recipe r173 (key (sx173 ing528))) -(recipe r173 (key (sy173 ing274))) -(recipe r173 (key (sx173 ing529))) -(recipe r173 (key (sy173 ing275))) -(recipe r173 (key (sx173 ing530))) -(recipe r173 (key (sy173 ing276))) -(recipe r174 (numIngredients 2)) -(recipe r174 (result (id item174))) -(recipe r174 (pattern 0 sx174)) -(recipe r174 (pattern 1 sy174)) -(recipe r174 (key (sx174 ing522))) -(recipe r174 (key (sy174 ing270))) -(recipe r174 (key (sx174 ing523))) -(recipe r174 (key (sy174 ing271))) -(recipe r174 (key (sx174 ing524))) -(recipe r174 (key (sy174 ing272))) -(recipe r174 (key (sx174 ing525))) -(recipe r174 (key (sy174 ing273))) -(recipe r174 (key (sx174 ing526))) -(recipe r174 (key (sy174 ing274))) -(recipe r174 (key (sx174 ing527))) -(recipe r174 (key (sy174 ing275))) -(recipe r174 (key (sx174 ing528))) -(recipe r174 (key (sy174 ing276))) -(recipe r174 (key (sx174 ing529))) -(recipe r174 (key (sy174 ing277))) -(recipe r174 (key (sx174 ing530))) -(recipe r174 (key (sy174 ing278))) -(recipe r174 (key (sx174 ing531))) -(recipe r174 (key (sy174 ing279))) -(recipe r174 (key (sx174 ing532))) -(recipe r174 (key (sy174 ing280))) -(recipe r174 (key (sx174 ing533))) -(recipe r174 (key (sy174 ing281))) -(recipe r175 (numIngredients 2)) -(recipe r175 (result (id item175))) -(recipe r175 (pattern 0 sx175)) -(recipe r175 (pattern 1 sy175)) -(recipe r175 (key (sx175 ing525))) -(recipe r175 (key (sy175 ing275))) -(recipe r175 (key (sx175 ing526))) -(recipe r175 (key (sy175 ing276))) -(recipe r175 (key (sx175 ing527))) -(recipe r175 (key (sy175 ing277))) -(recipe r175 (key (sx175 ing528))) -(recipe r175 (key (sy175 ing278))) -(recipe r175 (key (sx175 ing529))) -(recipe r175 (key (sy175 ing279))) -(recipe r175 (key (sx175 ing530))) -(recipe r175 (key (sy175 ing280))) -(recipe r175 (key (sx175 ing531))) -(recipe r175 (key (sy175 ing281))) -(recipe r175 (key (sx175 ing532))) -(recipe r175 (key (sy175 ing282))) -(recipe r175 (key (sx175 ing533))) -(recipe r175 (key (sy175 ing283))) -(recipe r175 (key (sx175 ing534))) -(recipe r175 (key (sy175 ing284))) -(recipe r175 (key (sx175 ing535))) -(recipe r175 (key (sy175 ing285))) -(recipe r175 (key (sx175 ing536))) -(recipe r175 (key (sy175 ing286))) -(recipe r176 (numIngredients 2)) -(recipe r176 (result (id item176))) -(recipe r176 (pattern 0 sx176)) -(recipe r176 (pattern 1 sy176)) -(recipe r176 (key (sx176 ing528))) -(recipe r176 (key (sy176 ing280))) -(recipe r176 (key (sx176 ing529))) -(recipe r176 (key (sy176 ing281))) -(recipe r176 (key (sx176 ing530))) -(recipe r176 (key (sy176 ing282))) -(recipe r176 (key (sx176 ing531))) -(recipe r176 (key (sy176 ing283))) -(recipe r176 (key (sx176 ing532))) -(recipe r176 (key (sy176 ing284))) -(recipe r176 (key (sx176 ing533))) -(recipe r176 (key (sy176 ing285))) -(recipe r176 (key (sx176 ing534))) -(recipe r176 (key (sy176 ing286))) -(recipe r176 (key (sx176 ing535))) -(recipe r176 (key (sy176 ing287))) -(recipe r176 (key (sx176 ing536))) -(recipe r176 (key (sy176 ing288))) -(recipe r176 (key (sx176 ing537))) -(recipe r176 (key (sy176 ing289))) -(recipe r176 (key (sx176 ing538))) -(recipe r176 (key (sy176 ing290))) -(recipe r176 (key (sx176 ing539))) -(recipe r176 (key (sy176 ing291))) -(recipe r177 (numIngredients 2)) -(recipe r177 (result (id item177))) -(recipe r177 (pattern 0 sx177)) -(recipe r177 (pattern 1 sy177)) -(recipe r177 (key (sx177 ing531))) -(recipe r177 (key (sy177 ing285))) -(recipe r177 (key (sx177 ing532))) -(recipe r177 (key (sy177 ing286))) -(recipe r177 (key (sx177 ing533))) -(recipe r177 (key (sy177 ing287))) -(recipe r177 (key (sx177 ing534))) -(recipe r177 (key (sy177 ing288))) -(recipe r177 (key (sx177 ing535))) -(recipe r177 (key (sy177 ing289))) -(recipe r177 (key (sx177 ing536))) -(recipe r177 (key (sy177 ing290))) -(recipe r177 (key (sx177 ing537))) -(recipe r177 (key (sy177 ing291))) -(recipe r177 (key (sx177 ing538))) -(recipe r177 (key (sy177 ing292))) -(recipe r177 (key (sx177 ing539))) -(recipe r177 (key (sy177 ing293))) -(recipe r177 (key (sx177 ing540))) -(recipe r177 (key (sy177 ing294))) -(recipe r177 (key (sx177 ing541))) -(recipe r177 (key (sy177 ing295))) -(recipe r177 (key (sx177 ing542))) -(recipe r177 (key (sy177 ing296))) -(recipe r178 (numIngredients 2)) -(recipe r178 (result (id item178))) -(recipe r178 (pattern 0 sx178)) -(recipe r178 (pattern 1 sy178)) -(recipe r178 (key (sx178 ing534))) -(recipe r178 (key (sy178 ing290))) -(recipe r178 (key (sx178 ing535))) -(recipe r178 (key (sy178 ing291))) -(recipe r178 (key (sx178 ing536))) -(recipe r178 (key (sy178 ing292))) -(recipe r178 (key (sx178 ing537))) -(recipe r178 (key (sy178 ing293))) -(recipe r178 (key (sx178 ing538))) -(recipe r178 (key (sy178 ing294))) -(recipe r178 (key (sx178 ing539))) -(recipe r178 (key (sy178 ing295))) -(recipe r178 (key (sx178 ing540))) -(recipe r178 (key (sy178 ing296))) -(recipe r178 (key (sx178 ing541))) -(recipe r178 (key (sy178 ing297))) -(recipe r178 (key (sx178 ing542))) -(recipe r178 (key (sy178 ing298))) -(recipe r178 (key (sx178 ing543))) -(recipe r178 (key (sy178 ing299))) -(recipe r178 (key (sx178 ing544))) -(recipe r178 (key (sy178 ing300))) -(recipe r178 (key (sx178 ing545))) -(recipe r178 (key (sy178 ing301))) -(recipe r179 (numIngredients 2)) -(recipe r179 (result (id item179))) -(recipe r179 (pattern 0 sx179)) -(recipe r179 (pattern 1 sy179)) -(recipe r179 (key (sx179 ing537))) -(recipe r179 (key (sy179 ing295))) -(recipe r179 (key (sx179 ing538))) -(recipe r179 (key (sy179 ing296))) -(recipe r179 (key (sx179 ing539))) -(recipe r179 (key (sy179 ing297))) -(recipe r179 (key (sx179 ing540))) -(recipe r179 (key (sy179 ing298))) -(recipe r179 (key (sx179 ing541))) -(recipe r179 (key (sy179 ing299))) -(recipe r179 (key (sx179 ing542))) -(recipe r179 (key (sy179 ing300))) -(recipe r179 (key (sx179 ing543))) -(recipe r179 (key (sy179 ing301))) -(recipe r179 (key (sx179 ing544))) -(recipe r179 (key (sy179 ing302))) -(recipe r179 (key (sx179 ing545))) -(recipe r179 (key (sy179 ing303))) -(recipe r179 (key (sx179 ing546))) -(recipe r179 (key (sy179 ing304))) -(recipe r179 (key (sx179 ing547))) -(recipe r179 (key (sy179 ing305))) -(recipe r179 (key (sx179 ing548))) -(recipe r179 (key (sy179 ing306))) -(recipe r180 (numIngredients 2)) -(recipe r180 (result (id item180))) -(recipe r180 (pattern 0 sx180)) -(recipe r180 (pattern 1 sy180)) -(recipe r180 (key (sx180 ing540))) -(recipe r180 (key (sy180 ing300))) -(recipe r180 (key (sx180 ing541))) -(recipe r180 (key (sy180 ing301))) -(recipe r180 (key (sx180 ing542))) -(recipe r180 (key (sy180 ing302))) -(recipe r180 (key (sx180 ing543))) -(recipe r180 (key (sy180 ing303))) -(recipe r180 (key (sx180 ing544))) -(recipe r180 (key (sy180 ing304))) -(recipe r180 (key (sx180 ing545))) -(recipe r180 (key (sy180 ing305))) -(recipe r180 (key (sx180 ing546))) -(recipe r180 (key (sy180 ing306))) -(recipe r180 (key (sx180 ing547))) -(recipe r180 (key (sy180 ing307))) -(recipe r180 (key (sx180 ing548))) -(recipe r180 (key (sy180 ing308))) -(recipe r180 (key (sx180 ing549))) -(recipe r180 (key (sy180 ing309))) -(recipe r180 (key (sx180 ing550))) -(recipe r180 (key (sy180 ing310))) -(recipe r180 (key (sx180 ing551))) -(recipe r180 (key (sy180 ing311))) -(recipe r181 (numIngredients 2)) -(recipe r181 (result (id item181))) -(recipe r181 (pattern 0 sx181)) -(recipe r181 (pattern 1 sy181)) -(recipe r181 (key (sx181 ing543))) -(recipe r181 (key (sy181 ing305))) -(recipe r181 (key (sx181 ing544))) -(recipe r181 (key (sy181 ing306))) -(recipe r181 (key (sx181 ing545))) -(recipe r181 (key (sy181 ing307))) -(recipe r181 (key (sx181 ing546))) -(recipe r181 (key (sy181 ing308))) -(recipe r181 (key (sx181 ing547))) -(recipe r181 (key (sy181 ing309))) -(recipe r181 (key (sx181 ing548))) -(recipe r181 (key (sy181 ing310))) -(recipe r181 (key (sx181 ing549))) -(recipe r181 (key (sy181 ing311))) -(recipe r181 (key (sx181 ing550))) -(recipe r181 (key (sy181 ing312))) -(recipe r181 (key (sx181 ing551))) -(recipe r181 (key (sy181 ing313))) -(recipe r181 (key (sx181 ing552))) -(recipe r181 (key (sy181 ing314))) -(recipe r181 (key (sx181 ing553))) -(recipe r181 (key (sy181 ing315))) -(recipe r181 (key (sx181 ing554))) -(recipe r181 (key (sy181 ing316))) -(recipe r182 (numIngredients 2)) -(recipe r182 (result (id item182))) -(recipe r182 (pattern 0 sx182)) -(recipe r182 (pattern 1 sy182)) -(recipe r182 (key (sx182 ing546))) -(recipe r182 (key (sy182 ing310))) -(recipe r182 (key (sx182 ing547))) -(recipe r182 (key (sy182 ing311))) -(recipe r182 (key (sx182 ing548))) -(recipe r182 (key (sy182 ing312))) -(recipe r182 (key (sx182 ing549))) -(recipe r182 (key (sy182 ing313))) -(recipe r182 (key (sx182 ing550))) -(recipe r182 (key (sy182 ing314))) -(recipe r182 (key (sx182 ing551))) -(recipe r182 (key (sy182 ing315))) -(recipe r182 (key (sx182 ing552))) -(recipe r182 (key (sy182 ing316))) -(recipe r182 (key (sx182 ing553))) -(recipe r182 (key (sy182 ing317))) -(recipe r182 (key (sx182 ing554))) -(recipe r182 (key (sy182 ing318))) -(recipe r182 (key (sx182 ing555))) -(recipe r182 (key (sy182 ing319))) -(recipe r182 (key (sx182 ing556))) -(recipe r182 (key (sy182 ing320))) -(recipe r182 (key (sx182 ing557))) -(recipe r182 (key (sy182 ing321))) -(recipe r183 (numIngredients 2)) -(recipe r183 (result (id item183))) -(recipe r183 (pattern 0 sx183)) -(recipe r183 (pattern 1 sy183)) -(recipe r183 (key (sx183 ing549))) -(recipe r183 (key (sy183 ing315))) -(recipe r183 (key (sx183 ing550))) -(recipe r183 (key (sy183 ing316))) -(recipe r183 (key (sx183 ing551))) -(recipe r183 (key (sy183 ing317))) -(recipe r183 (key (sx183 ing552))) -(recipe r183 (key (sy183 ing318))) -(recipe r183 (key (sx183 ing553))) -(recipe r183 (key (sy183 ing319))) -(recipe r183 (key (sx183 ing554))) -(recipe r183 (key (sy183 ing320))) -(recipe r183 (key (sx183 ing555))) -(recipe r183 (key (sy183 ing321))) -(recipe r183 (key (sx183 ing556))) -(recipe r183 (key (sy183 ing322))) -(recipe r183 (key (sx183 ing557))) -(recipe r183 (key (sy183 ing323))) -(recipe r183 (key (sx183 ing558))) -(recipe r183 (key (sy183 ing324))) -(recipe r183 (key (sx183 ing559))) -(recipe r183 (key (sy183 ing325))) -(recipe r183 (key (sx183 ing560))) -(recipe r183 (key (sy183 ing326))) -(recipe r184 (numIngredients 2)) -(recipe r184 (result (id item184))) -(recipe r184 (pattern 0 sx184)) -(recipe r184 (pattern 1 sy184)) -(recipe r184 (key (sx184 ing552))) -(recipe r184 (key (sy184 ing320))) -(recipe r184 (key (sx184 ing553))) -(recipe r184 (key (sy184 ing321))) -(recipe r184 (key (sx184 ing554))) -(recipe r184 (key (sy184 ing322))) -(recipe r184 (key (sx184 ing555))) -(recipe r184 (key (sy184 ing323))) -(recipe r184 (key (sx184 ing556))) -(recipe r184 (key (sy184 ing324))) -(recipe r184 (key (sx184 ing557))) -(recipe r184 (key (sy184 ing325))) -(recipe r184 (key (sx184 ing558))) -(recipe r184 (key (sy184 ing326))) -(recipe r184 (key (sx184 ing559))) -(recipe r184 (key (sy184 ing327))) -(recipe r184 (key (sx184 ing560))) -(recipe r184 (key (sy184 ing328))) -(recipe r184 (key (sx184 ing561))) -(recipe r184 (key (sy184 ing329))) -(recipe r184 (key (sx184 ing562))) -(recipe r184 (key (sy184 ing330))) -(recipe r184 (key (sx184 ing563))) -(recipe r184 (key (sy184 ing331))) -(recipe r185 (numIngredients 2)) -(recipe r185 (result (id item185))) -(recipe r185 (pattern 0 sx185)) -(recipe r185 (pattern 1 sy185)) -(recipe r185 (key (sx185 ing555))) -(recipe r185 (key (sy185 ing325))) -(recipe r185 (key (sx185 ing556))) -(recipe r185 (key (sy185 ing326))) -(recipe r185 (key (sx185 ing557))) -(recipe r185 (key (sy185 ing327))) -(recipe r185 (key (sx185 ing558))) -(recipe r185 (key (sy185 ing328))) -(recipe r185 (key (sx185 ing559))) -(recipe r185 (key (sy185 ing329))) -(recipe r185 (key (sx185 ing560))) -(recipe r185 (key (sy185 ing330))) -(recipe r185 (key (sx185 ing561))) -(recipe r185 (key (sy185 ing331))) -(recipe r185 (key (sx185 ing562))) -(recipe r185 (key (sy185 ing332))) -(recipe r185 (key (sx185 ing563))) -(recipe r185 (key (sy185 ing333))) -(recipe r185 (key (sx185 ing564))) -(recipe r185 (key (sy185 ing334))) -(recipe r185 (key (sx185 ing565))) -(recipe r185 (key (sy185 ing335))) -(recipe r185 (key (sx185 ing566))) -(recipe r185 (key (sy185 ing336))) -(recipe r186 (numIngredients 2)) -(recipe r186 (result (id item186))) -(recipe r186 (pattern 0 sx186)) -(recipe r186 (pattern 1 sy186)) -(recipe r186 (key (sx186 ing558))) -(recipe r186 (key (sy186 ing330))) -(recipe r186 (key (sx186 ing559))) -(recipe r186 (key (sy186 ing331))) -(recipe r186 (key (sx186 ing560))) -(recipe r186 (key (sy186 ing332))) -(recipe r186 (key (sx186 ing561))) -(recipe r186 (key (sy186 ing333))) -(recipe r186 (key (sx186 ing562))) -(recipe r186 (key (sy186 ing334))) -(recipe r186 (key (sx186 ing563))) -(recipe r186 (key (sy186 ing335))) -(recipe r186 (key (sx186 ing564))) -(recipe r186 (key (sy186 ing336))) -(recipe r186 (key (sx186 ing565))) -(recipe r186 (key (sy186 ing337))) -(recipe r186 (key (sx186 ing566))) -(recipe r186 (key (sy186 ing338))) -(recipe r186 (key (sx186 ing567))) -(recipe r186 (key (sy186 ing339))) -(recipe r186 (key (sx186 ing568))) -(recipe r186 (key (sy186 ing340))) -(recipe r186 (key (sx186 ing569))) -(recipe r186 (key (sy186 ing341))) -(recipe r187 (numIngredients 2)) -(recipe r187 (result (id item187))) -(recipe r187 (pattern 0 sx187)) -(recipe r187 (pattern 1 sy187)) -(recipe r187 (key (sx187 ing561))) -(recipe r187 (key (sy187 ing335))) -(recipe r187 (key (sx187 ing562))) -(recipe r187 (key (sy187 ing336))) -(recipe r187 (key (sx187 ing563))) -(recipe r187 (key (sy187 ing337))) -(recipe r187 (key (sx187 ing564))) -(recipe r187 (key (sy187 ing338))) -(recipe r187 (key (sx187 ing565))) -(recipe r187 (key (sy187 ing339))) -(recipe r187 (key (sx187 ing566))) -(recipe r187 (key (sy187 ing340))) -(recipe r187 (key (sx187 ing567))) -(recipe r187 (key (sy187 ing341))) -(recipe r187 (key (sx187 ing568))) -(recipe r187 (key (sy187 ing342))) -(recipe r187 (key (sx187 ing569))) -(recipe r187 (key (sy187 ing343))) -(recipe r187 (key (sx187 ing570))) -(recipe r187 (key (sy187 ing344))) -(recipe r187 (key (sx187 ing571))) -(recipe r187 (key (sy187 ing345))) -(recipe r187 (key (sx187 ing572))) -(recipe r187 (key (sy187 ing346))) -(recipe r188 (numIngredients 2)) -(recipe r188 (result (id item188))) -(recipe r188 (pattern 0 sx188)) -(recipe r188 (pattern 1 sy188)) -(recipe r188 (key (sx188 ing564))) -(recipe r188 (key (sy188 ing340))) -(recipe r188 (key (sx188 ing565))) -(recipe r188 (key (sy188 ing341))) -(recipe r188 (key (sx188 ing566))) -(recipe r188 (key (sy188 ing342))) -(recipe r188 (key (sx188 ing567))) -(recipe r188 (key (sy188 ing343))) -(recipe r188 (key (sx188 ing568))) -(recipe r188 (key (sy188 ing344))) -(recipe r188 (key (sx188 ing569))) -(recipe r188 (key (sy188 ing345))) -(recipe r188 (key (sx188 ing570))) -(recipe r188 (key (sy188 ing346))) -(recipe r188 (key (sx188 ing571))) -(recipe r188 (key (sy188 ing347))) -(recipe r188 (key (sx188 ing572))) -(recipe r188 (key (sy188 ing348))) -(recipe r188 (key (sx188 ing573))) -(recipe r188 (key (sy188 ing349))) -(recipe r188 (key (sx188 ing574))) -(recipe r188 (key (sy188 ing350))) -(recipe r188 (key (sx188 ing575))) -(recipe r188 (key (sy188 ing351))) -(recipe r189 (numIngredients 2)) -(recipe r189 (result (id item189))) -(recipe r189 (pattern 0 sx189)) -(recipe r189 (pattern 1 sy189)) -(recipe r189 (key (sx189 ing567))) -(recipe r189 (key (sy189 ing345))) -(recipe r189 (key (sx189 ing568))) -(recipe r189 (key (sy189 ing346))) -(recipe r189 (key (sx189 ing569))) -(recipe r189 (key (sy189 ing347))) -(recipe r189 (key (sx189 ing570))) -(recipe r189 (key (sy189 ing348))) -(recipe r189 (key (sx189 ing571))) -(recipe r189 (key (sy189 ing349))) -(recipe r189 (key (sx189 ing572))) -(recipe r189 (key (sy189 ing350))) -(recipe r189 (key (sx189 ing573))) -(recipe r189 (key (sy189 ing351))) -(recipe r189 (key (sx189 ing574))) -(recipe r189 (key (sy189 ing352))) -(recipe r189 (key (sx189 ing575))) -(recipe r189 (key (sy189 ing353))) -(recipe r189 (key (sx189 ing576))) -(recipe r189 (key (sy189 ing354))) -(recipe r189 (key (sx189 ing577))) -(recipe r189 (key (sy189 ing355))) -(recipe r189 (key (sx189 ing578))) -(recipe r189 (key (sy189 ing356))) -(recipe r190 (numIngredients 2)) -(recipe r190 (result (id item190))) -(recipe r190 (pattern 0 sx190)) -(recipe r190 (pattern 1 sy190)) -(recipe r190 (key (sx190 ing570))) -(recipe r190 (key (sy190 ing350))) -(recipe r190 (key (sx190 ing571))) -(recipe r190 (key (sy190 ing351))) -(recipe r190 (key (sx190 ing572))) -(recipe r190 (key (sy190 ing352))) -(recipe r190 (key (sx190 ing573))) -(recipe r190 (key (sy190 ing353))) -(recipe r190 (key (sx190 ing574))) -(recipe r190 (key (sy190 ing354))) -(recipe r190 (key (sx190 ing575))) -(recipe r190 (key (sy190 ing355))) -(recipe r190 (key (sx190 ing576))) -(recipe r190 (key (sy190 ing356))) -(recipe r190 (key (sx190 ing577))) -(recipe r190 (key (sy190 ing357))) -(recipe r190 (key (sx190 ing578))) -(recipe r190 (key (sy190 ing358))) -(recipe r190 (key (sx190 ing579))) -(recipe r190 (key (sy190 ing359))) -(recipe r190 (key (sx190 ing580))) -(recipe r190 (key (sy190 ing360))) -(recipe r190 (key (sx190 ing581))) -(recipe r190 (key (sy190 ing361))) -(recipe r191 (numIngredients 2)) -(recipe r191 (result (id item191))) -(recipe r191 (pattern 0 sx191)) -(recipe r191 (pattern 1 sy191)) -(recipe r191 (key (sx191 ing573))) -(recipe r191 (key (sy191 ing355))) -(recipe r191 (key (sx191 ing574))) -(recipe r191 (key (sy191 ing356))) -(recipe r191 (key (sx191 ing575))) -(recipe r191 (key (sy191 ing357))) -(recipe r191 (key (sx191 ing576))) -(recipe r191 (key (sy191 ing358))) -(recipe r191 (key (sx191 ing577))) -(recipe r191 (key (sy191 ing359))) -(recipe r191 (key (sx191 ing578))) -(recipe r191 (key (sy191 ing360))) -(recipe r191 (key (sx191 ing579))) -(recipe r191 (key (sy191 ing361))) -(recipe r191 (key (sx191 ing580))) -(recipe r191 (key (sy191 ing362))) -(recipe r191 (key (sx191 ing581))) -(recipe r191 (key (sy191 ing363))) -(recipe r191 (key (sx191 ing582))) -(recipe r191 (key (sy191 ing364))) -(recipe r191 (key (sx191 ing583))) -(recipe r191 (key (sy191 ing365))) -(recipe r191 (key (sx191 ing584))) -(recipe r191 (key (sy191 ing366))) -(recipe r192 (numIngredients 2)) -(recipe r192 (result (id item192))) -(recipe r192 (pattern 0 sx192)) -(recipe r192 (pattern 1 sy192)) -(recipe r192 (key (sx192 ing576))) -(recipe r192 (key (sy192 ing360))) -(recipe r192 (key (sx192 ing577))) -(recipe r192 (key (sy192 ing361))) -(recipe r192 (key (sx192 ing578))) -(recipe r192 (key (sy192 ing362))) -(recipe r192 (key (sx192 ing579))) -(recipe r192 (key (sy192 ing363))) -(recipe r192 (key (sx192 ing580))) -(recipe r192 (key (sy192 ing364))) -(recipe r192 (key (sx192 ing581))) -(recipe r192 (key (sy192 ing365))) -(recipe r192 (key (sx192 ing582))) -(recipe r192 (key (sy192 ing366))) -(recipe r192 (key (sx192 ing583))) -(recipe r192 (key (sy192 ing367))) -(recipe r192 (key (sx192 ing584))) -(recipe r192 (key (sy192 ing368))) -(recipe r192 (key (sx192 ing585))) -(recipe r192 (key (sy192 ing369))) -(recipe r192 (key (sx192 ing586))) -(recipe r192 (key (sy192 ing370))) -(recipe r192 (key (sx192 ing587))) -(recipe r192 (key (sy192 ing371))) -(recipe r193 (numIngredients 2)) -(recipe r193 (result (id item193))) -(recipe r193 (pattern 0 sx193)) -(recipe r193 (pattern 1 sy193)) -(recipe r193 (key (sx193 ing579))) -(recipe r193 (key (sy193 ing365))) -(recipe r193 (key (sx193 ing580))) -(recipe r193 (key (sy193 ing366))) -(recipe r193 (key (sx193 ing581))) -(recipe r193 (key (sy193 ing367))) -(recipe r193 (key (sx193 ing582))) -(recipe r193 (key (sy193 ing368))) -(recipe r193 (key (sx193 ing583))) -(recipe r193 (key (sy193 ing369))) -(recipe r193 (key (sx193 ing584))) -(recipe r193 (key (sy193 ing370))) -(recipe r193 (key (sx193 ing585))) -(recipe r193 (key (sy193 ing371))) -(recipe r193 (key (sx193 ing586))) -(recipe r193 (key (sy193 ing372))) -(recipe r193 (key (sx193 ing587))) -(recipe r193 (key (sy193 ing373))) -(recipe r193 (key (sx193 ing588))) -(recipe r193 (key (sy193 ing374))) -(recipe r193 (key (sx193 ing589))) -(recipe r193 (key (sy193 ing375))) -(recipe r193 (key (sx193 ing590))) -(recipe r193 (key (sy193 ing376))) -(recipe r194 (numIngredients 2)) -(recipe r194 (result (id item194))) -(recipe r194 (pattern 0 sx194)) -(recipe r194 (pattern 1 sy194)) -(recipe r194 (key (sx194 ing582))) -(recipe r194 (key (sy194 ing370))) -(recipe r194 (key (sx194 ing583))) -(recipe r194 (key (sy194 ing371))) -(recipe r194 (key (sx194 ing584))) -(recipe r194 (key (sy194 ing372))) -(recipe r194 (key (sx194 ing585))) -(recipe r194 (key (sy194 ing373))) -(recipe r194 (key (sx194 ing586))) -(recipe r194 (key (sy194 ing374))) -(recipe r194 (key (sx194 ing587))) -(recipe r194 (key (sy194 ing375))) -(recipe r194 (key (sx194 ing588))) -(recipe r194 (key (sy194 ing376))) -(recipe r194 (key (sx194 ing589))) -(recipe r194 (key (sy194 ing377))) -(recipe r194 (key (sx194 ing590))) -(recipe r194 (key (sy194 ing378))) -(recipe r194 (key (sx194 ing591))) -(recipe r194 (key (sy194 ing379))) -(recipe r194 (key (sx194 ing592))) -(recipe r194 (key (sy194 ing380))) -(recipe r194 (key (sx194 ing593))) -(recipe r194 (key (sy194 ing381))) -(recipe r195 (numIngredients 2)) -(recipe r195 (result (id item195))) -(recipe r195 (pattern 0 sx195)) -(recipe r195 (pattern 1 sy195)) -(recipe r195 (key (sx195 ing585))) -(recipe r195 (key (sy195 ing375))) -(recipe r195 (key (sx195 ing586))) -(recipe r195 (key (sy195 ing376))) -(recipe r195 (key (sx195 ing587))) -(recipe r195 (key (sy195 ing377))) -(recipe r195 (key (sx195 ing588))) -(recipe r195 (key (sy195 ing378))) -(recipe r195 (key (sx195 ing589))) -(recipe r195 (key (sy195 ing379))) -(recipe r195 (key (sx195 ing590))) -(recipe r195 (key (sy195 ing380))) -(recipe r195 (key (sx195 ing591))) -(recipe r195 (key (sy195 ing381))) -(recipe r195 (key (sx195 ing592))) -(recipe r195 (key (sy195 ing382))) -(recipe r195 (key (sx195 ing593))) -(recipe r195 (key (sy195 ing383))) -(recipe r195 (key (sx195 ing594))) -(recipe r195 (key (sy195 ing384))) -(recipe r195 (key (sx195 ing595))) -(recipe r195 (key (sy195 ing385))) -(recipe r195 (key (sx195 ing596))) -(recipe r195 (key (sy195 ing386))) -(recipe r196 (numIngredients 2)) -(recipe r196 (result (id item196))) -(recipe r196 (pattern 0 sx196)) -(recipe r196 (pattern 1 sy196)) -(recipe r196 (key (sx196 ing588))) -(recipe r196 (key (sy196 ing380))) -(recipe r196 (key (sx196 ing589))) -(recipe r196 (key (sy196 ing381))) -(recipe r196 (key (sx196 ing590))) -(recipe r196 (key (sy196 ing382))) -(recipe r196 (key (sx196 ing591))) -(recipe r196 (key (sy196 ing383))) -(recipe r196 (key (sx196 ing592))) -(recipe r196 (key (sy196 ing384))) -(recipe r196 (key (sx196 ing593))) -(recipe r196 (key (sy196 ing385))) -(recipe r196 (key (sx196 ing594))) -(recipe r196 (key (sy196 ing386))) -(recipe r196 (key (sx196 ing595))) -(recipe r196 (key (sy196 ing387))) -(recipe r196 (key (sx196 ing596))) -(recipe r196 (key (sy196 ing388))) -(recipe r196 (key (sx196 ing597))) -(recipe r196 (key (sy196 ing389))) -(recipe r196 (key (sx196 ing598))) -(recipe r196 (key (sy196 ing390))) -(recipe r196 (key (sx196 ing599))) -(recipe r196 (key (sy196 ing391))) -(recipe r197 (numIngredients 2)) -(recipe r197 (result (id item197))) -(recipe r197 (pattern 0 sx197)) -(recipe r197 (pattern 1 sy197)) -(recipe r197 (key (sx197 ing591))) -(recipe r197 (key (sy197 ing385))) -(recipe r197 (key (sx197 ing592))) -(recipe r197 (key (sy197 ing386))) -(recipe r197 (key (sx197 ing593))) -(recipe r197 (key (sy197 ing387))) -(recipe r197 (key (sx197 ing594))) -(recipe r197 (key (sy197 ing388))) -(recipe r197 (key (sx197 ing595))) -(recipe r197 (key (sy197 ing389))) -(recipe r197 (key (sx197 ing596))) -(recipe r197 (key (sy197 ing390))) -(recipe r197 (key (sx197 ing597))) -(recipe r197 (key (sy197 ing391))) -(recipe r197 (key (sx197 ing598))) -(recipe r197 (key (sy197 ing392))) -(recipe r197 (key (sx197 ing599))) -(recipe r197 (key (sy197 ing393))) -(recipe r197 (key (sx197 ing0))) -(recipe r197 (key (sy197 ing394))) -(recipe r197 (key (sx197 ing1))) -(recipe r197 (key (sy197 ing395))) -(recipe r197 (key (sx197 ing2))) -(recipe r197 (key (sy197 ing396))) -(recipe r198 (numIngredients 2)) -(recipe r198 (result (id item198))) -(recipe r198 (pattern 0 sx198)) -(recipe r198 (pattern 1 sy198)) -(recipe r198 (key (sx198 ing594))) -(recipe r198 (key (sy198 ing390))) -(recipe r198 (key (sx198 ing595))) -(recipe r198 (key (sy198 ing391))) -(recipe r198 (key (sx198 ing596))) -(recipe r198 (key (sy198 ing392))) -(recipe r198 (key (sx198 ing597))) -(recipe r198 (key (sy198 ing393))) -(recipe r198 (key (sx198 ing598))) -(recipe r198 (key (sy198 ing394))) -(recipe r198 (key (sx198 ing599))) -(recipe r198 (key (sy198 ing395))) -(recipe r198 (key (sx198 ing0))) -(recipe r198 (key (sy198 ing396))) -(recipe r198 (key (sx198 ing1))) -(recipe r198 (key (sy198 ing397))) -(recipe r198 (key (sx198 ing2))) -(recipe r198 (key (sy198 ing398))) -(recipe r198 (key (sx198 ing3))) -(recipe r198 (key (sy198 ing399))) -(recipe r198 (key (sx198 ing4))) -(recipe r198 (key (sy198 ing400))) -(recipe r198 (key (sx198 ing5))) -(recipe r198 (key (sy198 ing401))) -(recipe r199 (numIngredients 2)) -(recipe r199 (result (id item199))) -(recipe r199 (pattern 0 sx199)) -(recipe r199 (pattern 1 sy199)) -(recipe r199 (key (sx199 ing597))) -(recipe r199 (key (sy199 ing395))) -(recipe r199 (key (sx199 ing598))) -(recipe r199 (key (sy199 ing396))) -(recipe r199 (key (sx199 ing599))) -(recipe r199 (key (sy199 ing397))) -(recipe r199 (key (sx199 ing0))) -(recipe r199 (key (sy199 ing398))) -(recipe r199 (key (sx199 ing1))) -(recipe r199 (key (sy199 ing399))) -(recipe r199 (key (sx199 ing2))) -(recipe r199 (key (sy199 ing400))) -(recipe r199 (key (sx199 ing3))) -(recipe r199 (key (sy199 ing401))) -(recipe r199 (key (sx199 ing4))) -(recipe r199 (key (sy199 ing402))) -(recipe r199 (key (sx199 ing5))) -(recipe r199 (key (sy199 ing403))) -(recipe r199 (key (sx199 ing6))) -(recipe r199 (key (sy199 ing404))) -(recipe r199 (key (sx199 ing7))) -(recipe r199 (key (sy199 ing405))) -(recipe r199 (key (sx199 ing8))) -(recipe r199 (key (sy199 ing406))) -(recipe r200 (numIngredients 2)) -(recipe r200 (result (id item200))) -(recipe r200 (pattern 0 sx200)) -(recipe r200 (pattern 1 sy200)) -(recipe r200 (key (sx200 ing0))) -(recipe r200 (key (sy200 ing400))) -(recipe r200 (key (sx200 ing1))) -(recipe r200 (key (sy200 ing401))) -(recipe r200 (key (sx200 ing2))) -(recipe r200 (key (sy200 ing402))) -(recipe r200 (key (sx200 ing3))) -(recipe r200 (key (sy200 ing403))) -(recipe r200 (key (sx200 ing4))) -(recipe r200 (key (sy200 ing404))) -(recipe r200 (key (sx200 ing5))) -(recipe r200 (key (sy200 ing405))) -(recipe r200 (key (sx200 ing6))) -(recipe r200 (key (sy200 ing406))) -(recipe r200 (key (sx200 ing7))) -(recipe r200 (key (sy200 ing407))) -(recipe r200 (key (sx200 ing8))) -(recipe r200 (key (sy200 ing408))) -(recipe r200 (key (sx200 ing9))) -(recipe r200 (key (sy200 ing409))) -(recipe r200 (key (sx200 ing10))) -(recipe r200 (key (sy200 ing410))) -(recipe r200 (key (sx200 ing11))) -(recipe r200 (key (sy200 ing411))) -(recipe r201 (numIngredients 2)) -(recipe r201 (result (id item201))) -(recipe r201 (pattern 0 sx201)) -(recipe r201 (pattern 1 sy201)) -(recipe r201 (key (sx201 ing3))) -(recipe r201 (key (sy201 ing405))) -(recipe r201 (key (sx201 ing4))) -(recipe r201 (key (sy201 ing406))) -(recipe r201 (key (sx201 ing5))) -(recipe r201 (key (sy201 ing407))) -(recipe r201 (key (sx201 ing6))) -(recipe r201 (key (sy201 ing408))) -(recipe r201 (key (sx201 ing7))) -(recipe r201 (key (sy201 ing409))) -(recipe r201 (key (sx201 ing8))) -(recipe r201 (key (sy201 ing410))) -(recipe r201 (key (sx201 ing9))) -(recipe r201 (key (sy201 ing411))) -(recipe r201 (key (sx201 ing10))) -(recipe r201 (key (sy201 ing412))) -(recipe r201 (key (sx201 ing11))) -(recipe r201 (key (sy201 ing413))) -(recipe r201 (key (sx201 ing12))) -(recipe r201 (key (sy201 ing414))) -(recipe r201 (key (sx201 ing13))) -(recipe r201 (key (sy201 ing415))) -(recipe r201 (key (sx201 ing14))) -(recipe r201 (key (sy201 ing416))) -(recipe r202 (numIngredients 2)) -(recipe r202 (result (id item202))) -(recipe r202 (pattern 0 sx202)) -(recipe r202 (pattern 1 sy202)) -(recipe r202 (key (sx202 ing6))) -(recipe r202 (key (sy202 ing410))) -(recipe r202 (key (sx202 ing7))) -(recipe r202 (key (sy202 ing411))) -(recipe r202 (key (sx202 ing8))) -(recipe r202 (key (sy202 ing412))) -(recipe r202 (key (sx202 ing9))) -(recipe r202 (key (sy202 ing413))) -(recipe r202 (key (sx202 ing10))) -(recipe r202 (key (sy202 ing414))) -(recipe r202 (key (sx202 ing11))) -(recipe r202 (key (sy202 ing415))) -(recipe r202 (key (sx202 ing12))) -(recipe r202 (key (sy202 ing416))) -(recipe r202 (key (sx202 ing13))) -(recipe r202 (key (sy202 ing417))) -(recipe r202 (key (sx202 ing14))) -(recipe r202 (key (sy202 ing418))) -(recipe r202 (key (sx202 ing15))) -(recipe r202 (key (sy202 ing419))) -(recipe r202 (key (sx202 ing16))) -(recipe r202 (key (sy202 ing420))) -(recipe r202 (key (sx202 ing17))) -(recipe r202 (key (sy202 ing421))) -(recipe r203 (numIngredients 2)) -(recipe r203 (result (id item203))) -(recipe r203 (pattern 0 sx203)) -(recipe r203 (pattern 1 sy203)) -(recipe r203 (key (sx203 ing9))) -(recipe r203 (key (sy203 ing415))) -(recipe r203 (key (sx203 ing10))) -(recipe r203 (key (sy203 ing416))) -(recipe r203 (key (sx203 ing11))) -(recipe r203 (key (sy203 ing417))) -(recipe r203 (key (sx203 ing12))) -(recipe r203 (key (sy203 ing418))) -(recipe r203 (key (sx203 ing13))) -(recipe r203 (key (sy203 ing419))) -(recipe r203 (key (sx203 ing14))) -(recipe r203 (key (sy203 ing420))) -(recipe r203 (key (sx203 ing15))) -(recipe r203 (key (sy203 ing421))) -(recipe r203 (key (sx203 ing16))) -(recipe r203 (key (sy203 ing422))) -(recipe r203 (key (sx203 ing17))) -(recipe r203 (key (sy203 ing423))) -(recipe r203 (key (sx203 ing18))) -(recipe r203 (key (sy203 ing424))) -(recipe r203 (key (sx203 ing19))) -(recipe r203 (key (sy203 ing425))) -(recipe r203 (key (sx203 ing20))) -(recipe r203 (key (sy203 ing426))) -(recipe r204 (numIngredients 2)) -(recipe r204 (result (id item204))) -(recipe r204 (pattern 0 sx204)) -(recipe r204 (pattern 1 sy204)) -(recipe r204 (key (sx204 ing12))) -(recipe r204 (key (sy204 ing420))) -(recipe r204 (key (sx204 ing13))) -(recipe r204 (key (sy204 ing421))) -(recipe r204 (key (sx204 ing14))) -(recipe r204 (key (sy204 ing422))) -(recipe r204 (key (sx204 ing15))) -(recipe r204 (key (sy204 ing423))) -(recipe r204 (key (sx204 ing16))) -(recipe r204 (key (sy204 ing424))) -(recipe r204 (key (sx204 ing17))) -(recipe r204 (key (sy204 ing425))) -(recipe r204 (key (sx204 ing18))) -(recipe r204 (key (sy204 ing426))) -(recipe r204 (key (sx204 ing19))) -(recipe r204 (key (sy204 ing427))) -(recipe r204 (key (sx204 ing20))) -(recipe r204 (key (sy204 ing428))) -(recipe r204 (key (sx204 ing21))) -(recipe r204 (key (sy204 ing429))) -(recipe r204 (key (sx204 ing22))) -(recipe r204 (key (sy204 ing430))) -(recipe r204 (key (sx204 ing23))) -(recipe r204 (key (sy204 ing431))) -(recipe r205 (numIngredients 2)) -(recipe r205 (result (id item205))) -(recipe r205 (pattern 0 sx205)) -(recipe r205 (pattern 1 sy205)) -(recipe r205 (key (sx205 ing15))) -(recipe r205 (key (sy205 ing425))) -(recipe r205 (key (sx205 ing16))) -(recipe r205 (key (sy205 ing426))) -(recipe r205 (key (sx205 ing17))) -(recipe r205 (key (sy205 ing427))) -(recipe r205 (key (sx205 ing18))) -(recipe r205 (key (sy205 ing428))) -(recipe r205 (key (sx205 ing19))) -(recipe r205 (key (sy205 ing429))) -(recipe r205 (key (sx205 ing20))) -(recipe r205 (key (sy205 ing430))) -(recipe r205 (key (sx205 ing21))) -(recipe r205 (key (sy205 ing431))) -(recipe r205 (key (sx205 ing22))) -(recipe r205 (key (sy205 ing432))) -(recipe r205 (key (sx205 ing23))) -(recipe r205 (key (sy205 ing433))) -(recipe r205 (key (sx205 ing24))) -(recipe r205 (key (sy205 ing434))) -(recipe r205 (key (sx205 ing25))) -(recipe r205 (key (sy205 ing435))) -(recipe r205 (key (sx205 ing26))) -(recipe r205 (key (sy205 ing436))) -(recipe r206 (numIngredients 2)) -(recipe r206 (result (id item206))) -(recipe r206 (pattern 0 sx206)) -(recipe r206 (pattern 1 sy206)) -(recipe r206 (key (sx206 ing18))) -(recipe r206 (key (sy206 ing430))) -(recipe r206 (key (sx206 ing19))) -(recipe r206 (key (sy206 ing431))) -(recipe r206 (key (sx206 ing20))) -(recipe r206 (key (sy206 ing432))) -(recipe r206 (key (sx206 ing21))) -(recipe r206 (key (sy206 ing433))) -(recipe r206 (key (sx206 ing22))) -(recipe r206 (key (sy206 ing434))) -(recipe r206 (key (sx206 ing23))) -(recipe r206 (key (sy206 ing435))) -(recipe r206 (key (sx206 ing24))) -(recipe r206 (key (sy206 ing436))) -(recipe r206 (key (sx206 ing25))) -(recipe r206 (key (sy206 ing437))) -(recipe r206 (key (sx206 ing26))) -(recipe r206 (key (sy206 ing438))) -(recipe r206 (key (sx206 ing27))) -(recipe r206 (key (sy206 ing439))) -(recipe r206 (key (sx206 ing28))) -(recipe r206 (key (sy206 ing440))) -(recipe r206 (key (sx206 ing29))) -(recipe r206 (key (sy206 ing441))) -(recipe r207 (numIngredients 2)) -(recipe r207 (result (id item207))) -(recipe r207 (pattern 0 sx207)) -(recipe r207 (pattern 1 sy207)) -(recipe r207 (key (sx207 ing21))) -(recipe r207 (key (sy207 ing435))) -(recipe r207 (key (sx207 ing22))) -(recipe r207 (key (sy207 ing436))) -(recipe r207 (key (sx207 ing23))) -(recipe r207 (key (sy207 ing437))) -(recipe r207 (key (sx207 ing24))) -(recipe r207 (key (sy207 ing438))) -(recipe r207 (key (sx207 ing25))) -(recipe r207 (key (sy207 ing439))) -(recipe r207 (key (sx207 ing26))) -(recipe r207 (key (sy207 ing440))) -(recipe r207 (key (sx207 ing27))) -(recipe r207 (key (sy207 ing441))) -(recipe r207 (key (sx207 ing28))) -(recipe r207 (key (sy207 ing442))) -(recipe r207 (key (sx207 ing29))) -(recipe r207 (key (sy207 ing443))) -(recipe r207 (key (sx207 ing30))) -(recipe r207 (key (sy207 ing444))) -(recipe r207 (key (sx207 ing31))) -(recipe r207 (key (sy207 ing445))) -(recipe r207 (key (sx207 ing32))) -(recipe r207 (key (sy207 ing446))) -(recipe r208 (numIngredients 2)) -(recipe r208 (result (id item208))) -(recipe r208 (pattern 0 sx208)) -(recipe r208 (pattern 1 sy208)) -(recipe r208 (key (sx208 ing24))) -(recipe r208 (key (sy208 ing440))) -(recipe r208 (key (sx208 ing25))) -(recipe r208 (key (sy208 ing441))) -(recipe r208 (key (sx208 ing26))) -(recipe r208 (key (sy208 ing442))) -(recipe r208 (key (sx208 ing27))) -(recipe r208 (key (sy208 ing443))) -(recipe r208 (key (sx208 ing28))) -(recipe r208 (key (sy208 ing444))) -(recipe r208 (key (sx208 ing29))) -(recipe r208 (key (sy208 ing445))) -(recipe r208 (key (sx208 ing30))) -(recipe r208 (key (sy208 ing446))) -(recipe r208 (key (sx208 ing31))) -(recipe r208 (key (sy208 ing447))) -(recipe r208 (key (sx208 ing32))) -(recipe r208 (key (sy208 ing448))) -(recipe r208 (key (sx208 ing33))) -(recipe r208 (key (sy208 ing449))) -(recipe r208 (key (sx208 ing34))) -(recipe r208 (key (sy208 ing450))) -(recipe r208 (key (sx208 ing35))) -(recipe r208 (key (sy208 ing451))) -(recipe r209 (numIngredients 2)) -(recipe r209 (result (id item209))) -(recipe r209 (pattern 0 sx209)) -(recipe r209 (pattern 1 sy209)) -(recipe r209 (key (sx209 ing27))) -(recipe r209 (key (sy209 ing445))) -(recipe r209 (key (sx209 ing28))) -(recipe r209 (key (sy209 ing446))) -(recipe r209 (key (sx209 ing29))) -(recipe r209 (key (sy209 ing447))) -(recipe r209 (key (sx209 ing30))) -(recipe r209 (key (sy209 ing448))) -(recipe r209 (key (sx209 ing31))) -(recipe r209 (key (sy209 ing449))) -(recipe r209 (key (sx209 ing32))) -(recipe r209 (key (sy209 ing450))) -(recipe r209 (key (sx209 ing33))) -(recipe r209 (key (sy209 ing451))) -(recipe r209 (key (sx209 ing34))) -(recipe r209 (key (sy209 ing452))) -(recipe r209 (key (sx209 ing35))) -(recipe r209 (key (sy209 ing453))) -(recipe r209 (key (sx209 ing36))) -(recipe r209 (key (sy209 ing454))) -(recipe r209 (key (sx209 ing37))) -(recipe r209 (key (sy209 ing455))) -(recipe r209 (key (sx209 ing38))) -(recipe r209 (key (sy209 ing456))) -(recipe r210 (numIngredients 2)) -(recipe r210 (result (id item210))) -(recipe r210 (pattern 0 sx210)) -(recipe r210 (pattern 1 sy210)) -(recipe r210 (key (sx210 ing30))) -(recipe r210 (key (sy210 ing450))) -(recipe r210 (key (sx210 ing31))) -(recipe r210 (key (sy210 ing451))) -(recipe r210 (key (sx210 ing32))) -(recipe r210 (key (sy210 ing452))) -(recipe r210 (key (sx210 ing33))) -(recipe r210 (key (sy210 ing453))) -(recipe r210 (key (sx210 ing34))) -(recipe r210 (key (sy210 ing454))) -(recipe r210 (key (sx210 ing35))) -(recipe r210 (key (sy210 ing455))) -(recipe r210 (key (sx210 ing36))) -(recipe r210 (key (sy210 ing456))) -(recipe r210 (key (sx210 ing37))) -(recipe r210 (key (sy210 ing457))) -(recipe r210 (key (sx210 ing38))) -(recipe r210 (key (sy210 ing458))) -(recipe r210 (key (sx210 ing39))) -(recipe r210 (key (sy210 ing459))) -(recipe r210 (key (sx210 ing40))) -(recipe r210 (key (sy210 ing460))) -(recipe r210 (key (sx210 ing41))) -(recipe r210 (key (sy210 ing461))) -(recipe r211 (numIngredients 2)) -(recipe r211 (result (id item211))) -(recipe r211 (pattern 0 sx211)) -(recipe r211 (pattern 1 sy211)) -(recipe r211 (key (sx211 ing33))) -(recipe r211 (key (sy211 ing455))) -(recipe r211 (key (sx211 ing34))) -(recipe r211 (key (sy211 ing456))) -(recipe r211 (key (sx211 ing35))) -(recipe r211 (key (sy211 ing457))) -(recipe r211 (key (sx211 ing36))) -(recipe r211 (key (sy211 ing458))) -(recipe r211 (key (sx211 ing37))) -(recipe r211 (key (sy211 ing459))) -(recipe r211 (key (sx211 ing38))) -(recipe r211 (key (sy211 ing460))) -(recipe r211 (key (sx211 ing39))) -(recipe r211 (key (sy211 ing461))) -(recipe r211 (key (sx211 ing40))) -(recipe r211 (key (sy211 ing462))) -(recipe r211 (key (sx211 ing41))) -(recipe r211 (key (sy211 ing463))) -(recipe r211 (key (sx211 ing42))) -(recipe r211 (key (sy211 ing464))) -(recipe r211 (key (sx211 ing43))) -(recipe r211 (key (sy211 ing465))) -(recipe r211 (key (sx211 ing44))) -(recipe r211 (key (sy211 ing466))) -(recipe r212 (numIngredients 2)) -(recipe r212 (result (id item212))) -(recipe r212 (pattern 0 sx212)) -(recipe r212 (pattern 1 sy212)) -(recipe r212 (key (sx212 ing36))) -(recipe r212 (key (sy212 ing460))) -(recipe r212 (key (sx212 ing37))) -(recipe r212 (key (sy212 ing461))) -(recipe r212 (key (sx212 ing38))) -(recipe r212 (key (sy212 ing462))) -(recipe r212 (key (sx212 ing39))) -(recipe r212 (key (sy212 ing463))) -(recipe r212 (key (sx212 ing40))) -(recipe r212 (key (sy212 ing464))) -(recipe r212 (key (sx212 ing41))) -(recipe r212 (key (sy212 ing465))) -(recipe r212 (key (sx212 ing42))) -(recipe r212 (key (sy212 ing466))) -(recipe r212 (key (sx212 ing43))) -(recipe r212 (key (sy212 ing467))) -(recipe r212 (key (sx212 ing44))) -(recipe r212 (key (sy212 ing468))) -(recipe r212 (key (sx212 ing45))) -(recipe r212 (key (sy212 ing469))) -(recipe r212 (key (sx212 ing46))) -(recipe r212 (key (sy212 ing470))) -(recipe r212 (key (sx212 ing47))) -(recipe r212 (key (sy212 ing471))) -(recipe r213 (numIngredients 2)) -(recipe r213 (result (id item213))) -(recipe r213 (pattern 0 sx213)) -(recipe r213 (pattern 1 sy213)) -(recipe r213 (key (sx213 ing39))) -(recipe r213 (key (sy213 ing465))) -(recipe r213 (key (sx213 ing40))) -(recipe r213 (key (sy213 ing466))) -(recipe r213 (key (sx213 ing41))) -(recipe r213 (key (sy213 ing467))) -(recipe r213 (key (sx213 ing42))) -(recipe r213 (key (sy213 ing468))) -(recipe r213 (key (sx213 ing43))) -(recipe r213 (key (sy213 ing469))) -(recipe r213 (key (sx213 ing44))) -(recipe r213 (key (sy213 ing470))) -(recipe r213 (key (sx213 ing45))) -(recipe r213 (key (sy213 ing471))) -(recipe r213 (key (sx213 ing46))) -(recipe r213 (key (sy213 ing472))) -(recipe r213 (key (sx213 ing47))) -(recipe r213 (key (sy213 ing473))) -(recipe r213 (key (sx213 ing48))) -(recipe r213 (key (sy213 ing474))) -(recipe r213 (key (sx213 ing49))) -(recipe r213 (key (sy213 ing475))) -(recipe r213 (key (sx213 ing50))) -(recipe r213 (key (sy213 ing476))) -(recipe r214 (numIngredients 2)) -(recipe r214 (result (id item214))) -(recipe r214 (pattern 0 sx214)) -(recipe r214 (pattern 1 sy214)) -(recipe r214 (key (sx214 ing42))) -(recipe r214 (key (sy214 ing470))) -(recipe r214 (key (sx214 ing43))) -(recipe r214 (key (sy214 ing471))) -(recipe r214 (key (sx214 ing44))) -(recipe r214 (key (sy214 ing472))) -(recipe r214 (key (sx214 ing45))) -(recipe r214 (key (sy214 ing473))) -(recipe r214 (key (sx214 ing46))) -(recipe r214 (key (sy214 ing474))) -(recipe r214 (key (sx214 ing47))) -(recipe r214 (key (sy214 ing475))) -(recipe r214 (key (sx214 ing48))) -(recipe r214 (key (sy214 ing476))) -(recipe r214 (key (sx214 ing49))) -(recipe r214 (key (sy214 ing477))) -(recipe r214 (key (sx214 ing50))) -(recipe r214 (key (sy214 ing478))) -(recipe r214 (key (sx214 ing51))) -(recipe r214 (key (sy214 ing479))) -(recipe r214 (key (sx214 ing52))) -(recipe r214 (key (sy214 ing480))) -(recipe r214 (key (sx214 ing53))) -(recipe r214 (key (sy214 ing481))) -(recipe r215 (numIngredients 2)) -(recipe r215 (result (id item215))) -(recipe r215 (pattern 0 sx215)) -(recipe r215 (pattern 1 sy215)) -(recipe r215 (key (sx215 ing45))) -(recipe r215 (key (sy215 ing475))) -(recipe r215 (key (sx215 ing46))) -(recipe r215 (key (sy215 ing476))) -(recipe r215 (key (sx215 ing47))) -(recipe r215 (key (sy215 ing477))) -(recipe r215 (key (sx215 ing48))) -(recipe r215 (key (sy215 ing478))) -(recipe r215 (key (sx215 ing49))) -(recipe r215 (key (sy215 ing479))) -(recipe r215 (key (sx215 ing50))) -(recipe r215 (key (sy215 ing480))) -(recipe r215 (key (sx215 ing51))) -(recipe r215 (key (sy215 ing481))) -(recipe r215 (key (sx215 ing52))) -(recipe r215 (key (sy215 ing482))) -(recipe r215 (key (sx215 ing53))) -(recipe r215 (key (sy215 ing483))) -(recipe r215 (key (sx215 ing54))) -(recipe r215 (key (sy215 ing484))) -(recipe r215 (key (sx215 ing55))) -(recipe r215 (key (sy215 ing485))) -(recipe r215 (key (sx215 ing56))) -(recipe r215 (key (sy215 ing486))) -(recipe r216 (numIngredients 2)) -(recipe r216 (result (id item216))) -(recipe r216 (pattern 0 sx216)) -(recipe r216 (pattern 1 sy216)) -(recipe r216 (key (sx216 ing48))) -(recipe r216 (key (sy216 ing480))) -(recipe r216 (key (sx216 ing49))) -(recipe r216 (key (sy216 ing481))) -(recipe r216 (key (sx216 ing50))) -(recipe r216 (key (sy216 ing482))) -(recipe r216 (key (sx216 ing51))) -(recipe r216 (key (sy216 ing483))) -(recipe r216 (key (sx216 ing52))) -(recipe r216 (key (sy216 ing484))) -(recipe r216 (key (sx216 ing53))) -(recipe r216 (key (sy216 ing485))) -(recipe r216 (key (sx216 ing54))) -(recipe r216 (key (sy216 ing486))) -(recipe r216 (key (sx216 ing55))) -(recipe r216 (key (sy216 ing487))) -(recipe r216 (key (sx216 ing56))) -(recipe r216 (key (sy216 ing488))) -(recipe r216 (key (sx216 ing57))) -(recipe r216 (key (sy216 ing489))) -(recipe r216 (key (sx216 ing58))) -(recipe r216 (key (sy216 ing490))) -(recipe r216 (key (sx216 ing59))) -(recipe r216 (key (sy216 ing491))) -(recipe r217 (numIngredients 2)) -(recipe r217 (result (id item217))) -(recipe r217 (pattern 0 sx217)) -(recipe r217 (pattern 1 sy217)) -(recipe r217 (key (sx217 ing51))) -(recipe r217 (key (sy217 ing485))) -(recipe r217 (key (sx217 ing52))) -(recipe r217 (key (sy217 ing486))) -(recipe r217 (key (sx217 ing53))) -(recipe r217 (key (sy217 ing487))) -(recipe r217 (key (sx217 ing54))) -(recipe r217 (key (sy217 ing488))) -(recipe r217 (key (sx217 ing55))) -(recipe r217 (key (sy217 ing489))) -(recipe r217 (key (sx217 ing56))) -(recipe r217 (key (sy217 ing490))) -(recipe r217 (key (sx217 ing57))) -(recipe r217 (key (sy217 ing491))) -(recipe r217 (key (sx217 ing58))) -(recipe r217 (key (sy217 ing492))) -(recipe r217 (key (sx217 ing59))) -(recipe r217 (key (sy217 ing493))) -(recipe r217 (key (sx217 ing60))) -(recipe r217 (key (sy217 ing494))) -(recipe r217 (key (sx217 ing61))) -(recipe r217 (key (sy217 ing495))) -(recipe r217 (key (sx217 ing62))) -(recipe r217 (key (sy217 ing496))) -(recipe r218 (numIngredients 2)) -(recipe r218 (result (id item218))) -(recipe r218 (pattern 0 sx218)) -(recipe r218 (pattern 1 sy218)) -(recipe r218 (key (sx218 ing54))) -(recipe r218 (key (sy218 ing490))) -(recipe r218 (key (sx218 ing55))) -(recipe r218 (key (sy218 ing491))) -(recipe r218 (key (sx218 ing56))) -(recipe r218 (key (sy218 ing492))) -(recipe r218 (key (sx218 ing57))) -(recipe r218 (key (sy218 ing493))) -(recipe r218 (key (sx218 ing58))) -(recipe r218 (key (sy218 ing494))) -(recipe r218 (key (sx218 ing59))) -(recipe r218 (key (sy218 ing495))) -(recipe r218 (key (sx218 ing60))) -(recipe r218 (key (sy218 ing496))) -(recipe r218 (key (sx218 ing61))) -(recipe r218 (key (sy218 ing497))) -(recipe r218 (key (sx218 ing62))) -(recipe r218 (key (sy218 ing498))) -(recipe r218 (key (sx218 ing63))) -(recipe r218 (key (sy218 ing499))) -(recipe r218 (key (sx218 ing64))) -(recipe r218 (key (sy218 ing500))) -(recipe r218 (key (sx218 ing65))) -(recipe r218 (key (sy218 ing501))) -(recipe r219 (numIngredients 2)) -(recipe r219 (result (id item219))) -(recipe r219 (pattern 0 sx219)) -(recipe r219 (pattern 1 sy219)) -(recipe r219 (key (sx219 ing57))) -(recipe r219 (key (sy219 ing495))) -(recipe r219 (key (sx219 ing58))) -(recipe r219 (key (sy219 ing496))) -(recipe r219 (key (sx219 ing59))) -(recipe r219 (key (sy219 ing497))) -(recipe r219 (key (sx219 ing60))) -(recipe r219 (key (sy219 ing498))) -(recipe r219 (key (sx219 ing61))) -(recipe r219 (key (sy219 ing499))) -(recipe r219 (key (sx219 ing62))) -(recipe r219 (key (sy219 ing500))) -(recipe r219 (key (sx219 ing63))) -(recipe r219 (key (sy219 ing501))) -(recipe r219 (key (sx219 ing64))) -(recipe r219 (key (sy219 ing502))) -(recipe r219 (key (sx219 ing65))) -(recipe r219 (key (sy219 ing503))) -(recipe r219 (key (sx219 ing66))) -(recipe r219 (key (sy219 ing504))) -(recipe r219 (key (sx219 ing67))) -(recipe r219 (key (sy219 ing505))) -(recipe r219 (key (sx219 ing68))) -(recipe r219 (key (sy219 ing506))) -(recipe r220 (numIngredients 2)) -(recipe r220 (result (id item220))) -(recipe r220 (pattern 0 sx220)) -(recipe r220 (pattern 1 sy220)) -(recipe r220 (key (sx220 ing60))) -(recipe r220 (key (sy220 ing500))) -(recipe r220 (key (sx220 ing61))) -(recipe r220 (key (sy220 ing501))) -(recipe r220 (key (sx220 ing62))) -(recipe r220 (key (sy220 ing502))) -(recipe r220 (key (sx220 ing63))) -(recipe r220 (key (sy220 ing503))) -(recipe r220 (key (sx220 ing64))) -(recipe r220 (key (sy220 ing504))) -(recipe r220 (key (sx220 ing65))) -(recipe r220 (key (sy220 ing505))) -(recipe r220 (key (sx220 ing66))) -(recipe r220 (key (sy220 ing506))) -(recipe r220 (key (sx220 ing67))) -(recipe r220 (key (sy220 ing507))) -(recipe r220 (key (sx220 ing68))) -(recipe r220 (key (sy220 ing508))) -(recipe r220 (key (sx220 ing69))) -(recipe r220 (key (sy220 ing509))) -(recipe r220 (key (sx220 ing70))) -(recipe r220 (key (sy220 ing510))) -(recipe r220 (key (sx220 ing71))) -(recipe r220 (key (sy220 ing511))) -(recipe r221 (numIngredients 2)) -(recipe r221 (result (id item221))) -(recipe r221 (pattern 0 sx221)) -(recipe r221 (pattern 1 sy221)) -(recipe r221 (key (sx221 ing63))) -(recipe r221 (key (sy221 ing505))) -(recipe r221 (key (sx221 ing64))) -(recipe r221 (key (sy221 ing506))) -(recipe r221 (key (sx221 ing65))) -(recipe r221 (key (sy221 ing507))) -(recipe r221 (key (sx221 ing66))) -(recipe r221 (key (sy221 ing508))) -(recipe r221 (key (sx221 ing67))) -(recipe r221 (key (sy221 ing509))) -(recipe r221 (key (sx221 ing68))) -(recipe r221 (key (sy221 ing510))) -(recipe r221 (key (sx221 ing69))) -(recipe r221 (key (sy221 ing511))) -(recipe r221 (key (sx221 ing70))) -(recipe r221 (key (sy221 ing512))) -(recipe r221 (key (sx221 ing71))) -(recipe r221 (key (sy221 ing513))) -(recipe r221 (key (sx221 ing72))) -(recipe r221 (key (sy221 ing514))) -(recipe r221 (key (sx221 ing73))) -(recipe r221 (key (sy221 ing515))) -(recipe r221 (key (sx221 ing74))) -(recipe r221 (key (sy221 ing516))) -(recipe r222 (numIngredients 2)) -(recipe r222 (result (id item222))) -(recipe r222 (pattern 0 sx222)) -(recipe r222 (pattern 1 sy222)) -(recipe r222 (key (sx222 ing66))) -(recipe r222 (key (sy222 ing510))) -(recipe r222 (key (sx222 ing67))) -(recipe r222 (key (sy222 ing511))) -(recipe r222 (key (sx222 ing68))) -(recipe r222 (key (sy222 ing512))) -(recipe r222 (key (sx222 ing69))) -(recipe r222 (key (sy222 ing513))) -(recipe r222 (key (sx222 ing70))) -(recipe r222 (key (sy222 ing514))) -(recipe r222 (key (sx222 ing71))) -(recipe r222 (key (sy222 ing515))) -(recipe r222 (key (sx222 ing72))) -(recipe r222 (key (sy222 ing516))) -(recipe r222 (key (sx222 ing73))) -(recipe r222 (key (sy222 ing517))) -(recipe r222 (key (sx222 ing74))) -(recipe r222 (key (sy222 ing518))) -(recipe r222 (key (sx222 ing75))) -(recipe r222 (key (sy222 ing519))) -(recipe r222 (key (sx222 ing76))) -(recipe r222 (key (sy222 ing520))) -(recipe r222 (key (sx222 ing77))) -(recipe r222 (key (sy222 ing521))) -(recipe r223 (numIngredients 2)) -(recipe r223 (result (id item223))) -(recipe r223 (pattern 0 sx223)) -(recipe r223 (pattern 1 sy223)) -(recipe r223 (key (sx223 ing69))) -(recipe r223 (key (sy223 ing515))) -(recipe r223 (key (sx223 ing70))) -(recipe r223 (key (sy223 ing516))) -(recipe r223 (key (sx223 ing71))) -(recipe r223 (key (sy223 ing517))) -(recipe r223 (key (sx223 ing72))) -(recipe r223 (key (sy223 ing518))) -(recipe r223 (key (sx223 ing73))) -(recipe r223 (key (sy223 ing519))) -(recipe r223 (key (sx223 ing74))) -(recipe r223 (key (sy223 ing520))) -(recipe r223 (key (sx223 ing75))) -(recipe r223 (key (sy223 ing521))) -(recipe r223 (key (sx223 ing76))) -(recipe r223 (key (sy223 ing522))) -(recipe r223 (key (sx223 ing77))) -(recipe r223 (key (sy223 ing523))) -(recipe r223 (key (sx223 ing78))) -(recipe r223 (key (sy223 ing524))) -(recipe r223 (key (sx223 ing79))) -(recipe r223 (key (sy223 ing525))) -(recipe r223 (key (sx223 ing80))) -(recipe r223 (key (sy223 ing526))) -(recipe r224 (numIngredients 2)) -(recipe r224 (result (id item224))) -(recipe r224 (pattern 0 sx224)) -(recipe r224 (pattern 1 sy224)) -(recipe r224 (key (sx224 ing72))) -(recipe r224 (key (sy224 ing520))) -(recipe r224 (key (sx224 ing73))) -(recipe r224 (key (sy224 ing521))) -(recipe r224 (key (sx224 ing74))) -(recipe r224 (key (sy224 ing522))) -(recipe r224 (key (sx224 ing75))) -(recipe r224 (key (sy224 ing523))) -(recipe r224 (key (sx224 ing76))) -(recipe r224 (key (sy224 ing524))) -(recipe r224 (key (sx224 ing77))) -(recipe r224 (key (sy224 ing525))) -(recipe r224 (key (sx224 ing78))) -(recipe r224 (key (sy224 ing526))) -(recipe r224 (key (sx224 ing79))) -(recipe r224 (key (sy224 ing527))) -(recipe r224 (key (sx224 ing80))) -(recipe r224 (key (sy224 ing528))) -(recipe r224 (key (sx224 ing81))) -(recipe r224 (key (sy224 ing529))) -(recipe r224 (key (sx224 ing82))) -(recipe r224 (key (sy224 ing530))) -(recipe r224 (key (sx224 ing83))) -(recipe r224 (key (sy224 ing531))) -(recipe r225 (numIngredients 2)) -(recipe r225 (result (id item225))) -(recipe r225 (pattern 0 sx225)) -(recipe r225 (pattern 1 sy225)) -(recipe r225 (key (sx225 ing75))) -(recipe r225 (key (sy225 ing525))) -(recipe r225 (key (sx225 ing76))) -(recipe r225 (key (sy225 ing526))) -(recipe r225 (key (sx225 ing77))) -(recipe r225 (key (sy225 ing527))) -(recipe r225 (key (sx225 ing78))) -(recipe r225 (key (sy225 ing528))) -(recipe r225 (key (sx225 ing79))) -(recipe r225 (key (sy225 ing529))) -(recipe r225 (key (sx225 ing80))) -(recipe r225 (key (sy225 ing530))) -(recipe r225 (key (sx225 ing81))) -(recipe r225 (key (sy225 ing531))) -(recipe r225 (key (sx225 ing82))) -(recipe r225 (key (sy225 ing532))) -(recipe r225 (key (sx225 ing83))) -(recipe r225 (key (sy225 ing533))) -(recipe r225 (key (sx225 ing84))) -(recipe r225 (key (sy225 ing534))) -(recipe r225 (key (sx225 ing85))) -(recipe r225 (key (sy225 ing535))) -(recipe r225 (key (sx225 ing86))) -(recipe r225 (key (sy225 ing536))) -(recipe r226 (numIngredients 2)) -(recipe r226 (result (id item226))) -(recipe r226 (pattern 0 sx226)) -(recipe r226 (pattern 1 sy226)) -(recipe r226 (key (sx226 ing78))) -(recipe r226 (key (sy226 ing530))) -(recipe r226 (key (sx226 ing79))) -(recipe r226 (key (sy226 ing531))) -(recipe r226 (key (sx226 ing80))) -(recipe r226 (key (sy226 ing532))) -(recipe r226 (key (sx226 ing81))) -(recipe r226 (key (sy226 ing533))) -(recipe r226 (key (sx226 ing82))) -(recipe r226 (key (sy226 ing534))) -(recipe r226 (key (sx226 ing83))) -(recipe r226 (key (sy226 ing535))) -(recipe r226 (key (sx226 ing84))) -(recipe r226 (key (sy226 ing536))) -(recipe r226 (key (sx226 ing85))) -(recipe r226 (key (sy226 ing537))) -(recipe r226 (key (sx226 ing86))) -(recipe r226 (key (sy226 ing538))) -(recipe r226 (key (sx226 ing87))) -(recipe r226 (key (sy226 ing539))) -(recipe r226 (key (sx226 ing88))) -(recipe r226 (key (sy226 ing540))) -(recipe r226 (key (sx226 ing89))) -(recipe r226 (key (sy226 ing541))) -(recipe r227 (numIngredients 2)) -(recipe r227 (result (id item227))) -(recipe r227 (pattern 0 sx227)) -(recipe r227 (pattern 1 sy227)) -(recipe r227 (key (sx227 ing81))) -(recipe r227 (key (sy227 ing535))) -(recipe r227 (key (sx227 ing82))) -(recipe r227 (key (sy227 ing536))) -(recipe r227 (key (sx227 ing83))) -(recipe r227 (key (sy227 ing537))) -(recipe r227 (key (sx227 ing84))) -(recipe r227 (key (sy227 ing538))) -(recipe r227 (key (sx227 ing85))) -(recipe r227 (key (sy227 ing539))) -(recipe r227 (key (sx227 ing86))) -(recipe r227 (key (sy227 ing540))) -(recipe r227 (key (sx227 ing87))) -(recipe r227 (key (sy227 ing541))) -(recipe r227 (key (sx227 ing88))) -(recipe r227 (key (sy227 ing542))) -(recipe r227 (key (sx227 ing89))) -(recipe r227 (key (sy227 ing543))) -(recipe r227 (key (sx227 ing90))) -(recipe r227 (key (sy227 ing544))) -(recipe r227 (key (sx227 ing91))) -(recipe r227 (key (sy227 ing545))) -(recipe r227 (key (sx227 ing92))) -(recipe r227 (key (sy227 ing546))) -(recipe r228 (numIngredients 2)) -(recipe r228 (result (id item228))) -(recipe r228 (pattern 0 sx228)) -(recipe r228 (pattern 1 sy228)) -(recipe r228 (key (sx228 ing84))) -(recipe r228 (key (sy228 ing540))) -(recipe r228 (key (sx228 ing85))) -(recipe r228 (key (sy228 ing541))) -(recipe r228 (key (sx228 ing86))) -(recipe r228 (key (sy228 ing542))) -(recipe r228 (key (sx228 ing87))) -(recipe r228 (key (sy228 ing543))) -(recipe r228 (key (sx228 ing88))) -(recipe r228 (key (sy228 ing544))) -(recipe r228 (key (sx228 ing89))) -(recipe r228 (key (sy228 ing545))) -(recipe r228 (key (sx228 ing90))) -(recipe r228 (key (sy228 ing546))) -(recipe r228 (key (sx228 ing91))) -(recipe r228 (key (sy228 ing547))) -(recipe r228 (key (sx228 ing92))) -(recipe r228 (key (sy228 ing548))) -(recipe r228 (key (sx228 ing93))) -(recipe r228 (key (sy228 ing549))) -(recipe r228 (key (sx228 ing94))) -(recipe r228 (key (sy228 ing550))) -(recipe r228 (key (sx228 ing95))) -(recipe r228 (key (sy228 ing551))) -(recipe r229 (numIngredients 2)) -(recipe r229 (result (id item229))) -(recipe r229 (pattern 0 sx229)) -(recipe r229 (pattern 1 sy229)) -(recipe r229 (key (sx229 ing87))) -(recipe r229 (key (sy229 ing545))) -(recipe r229 (key (sx229 ing88))) -(recipe r229 (key (sy229 ing546))) -(recipe r229 (key (sx229 ing89))) -(recipe r229 (key (sy229 ing547))) -(recipe r229 (key (sx229 ing90))) -(recipe r229 (key (sy229 ing548))) -(recipe r229 (key (sx229 ing91))) -(recipe r229 (key (sy229 ing549))) -(recipe r229 (key (sx229 ing92))) -(recipe r229 (key (sy229 ing550))) -(recipe r229 (key (sx229 ing93))) -(recipe r229 (key (sy229 ing551))) -(recipe r229 (key (sx229 ing94))) -(recipe r229 (key (sy229 ing552))) -(recipe r229 (key (sx229 ing95))) -(recipe r229 (key (sy229 ing553))) -(recipe r229 (key (sx229 ing96))) -(recipe r229 (key (sy229 ing554))) -(recipe r229 (key (sx229 ing97))) -(recipe r229 (key (sy229 ing555))) -(recipe r229 (key (sx229 ing98))) -(recipe r229 (key (sy229 ing556))) -(recipe r230 (numIngredients 2)) -(recipe r230 (result (id item230))) -(recipe r230 (pattern 0 sx230)) -(recipe r230 (pattern 1 sy230)) -(recipe r230 (key (sx230 ing90))) -(recipe r230 (key (sy230 ing550))) -(recipe r230 (key (sx230 ing91))) -(recipe r230 (key (sy230 ing551))) -(recipe r230 (key (sx230 ing92))) -(recipe r230 (key (sy230 ing552))) -(recipe r230 (key (sx230 ing93))) -(recipe r230 (key (sy230 ing553))) -(recipe r230 (key (sx230 ing94))) -(recipe r230 (key (sy230 ing554))) -(recipe r230 (key (sx230 ing95))) -(recipe r230 (key (sy230 ing555))) -(recipe r230 (key (sx230 ing96))) -(recipe r230 (key (sy230 ing556))) -(recipe r230 (key (sx230 ing97))) -(recipe r230 (key (sy230 ing557))) -(recipe r230 (key (sx230 ing98))) -(recipe r230 (key (sy230 ing558))) -(recipe r230 (key (sx230 ing99))) -(recipe r230 (key (sy230 ing559))) -(recipe r230 (key (sx230 ing100))) -(recipe r230 (key (sy230 ing560))) -(recipe r230 (key (sx230 ing101))) -(recipe r230 (key (sy230 ing561))) -(recipe r231 (numIngredients 2)) -(recipe r231 (result (id item231))) -(recipe r231 (pattern 0 sx231)) -(recipe r231 (pattern 1 sy231)) -(recipe r231 (key (sx231 ing93))) -(recipe r231 (key (sy231 ing555))) -(recipe r231 (key (sx231 ing94))) -(recipe r231 (key (sy231 ing556))) -(recipe r231 (key (sx231 ing95))) -(recipe r231 (key (sy231 ing557))) -(recipe r231 (key (sx231 ing96))) -(recipe r231 (key (sy231 ing558))) -(recipe r231 (key (sx231 ing97))) -(recipe r231 (key (sy231 ing559))) -(recipe r231 (key (sx231 ing98))) -(recipe r231 (key (sy231 ing560))) -(recipe r231 (key (sx231 ing99))) -(recipe r231 (key (sy231 ing561))) -(recipe r231 (key (sx231 ing100))) -(recipe r231 (key (sy231 ing562))) -(recipe r231 (key (sx231 ing101))) -(recipe r231 (key (sy231 ing563))) -(recipe r231 (key (sx231 ing102))) -(recipe r231 (key (sy231 ing564))) -(recipe r231 (key (sx231 ing103))) -(recipe r231 (key (sy231 ing565))) -(recipe r231 (key (sx231 ing104))) -(recipe r231 (key (sy231 ing566))) -(recipe r232 (numIngredients 2)) -(recipe r232 (result (id item232))) -(recipe r232 (pattern 0 sx232)) -(recipe r232 (pattern 1 sy232)) -(recipe r232 (key (sx232 ing96))) -(recipe r232 (key (sy232 ing560))) -(recipe r232 (key (sx232 ing97))) -(recipe r232 (key (sy232 ing561))) -(recipe r232 (key (sx232 ing98))) -(recipe r232 (key (sy232 ing562))) -(recipe r232 (key (sx232 ing99))) -(recipe r232 (key (sy232 ing563))) -(recipe r232 (key (sx232 ing100))) -(recipe r232 (key (sy232 ing564))) -(recipe r232 (key (sx232 ing101))) -(recipe r232 (key (sy232 ing565))) -(recipe r232 (key (sx232 ing102))) -(recipe r232 (key (sy232 ing566))) -(recipe r232 (key (sx232 ing103))) -(recipe r232 (key (sy232 ing567))) -(recipe r232 (key (sx232 ing104))) -(recipe r232 (key (sy232 ing568))) -(recipe r232 (key (sx232 ing105))) -(recipe r232 (key (sy232 ing569))) -(recipe r232 (key (sx232 ing106))) -(recipe r232 (key (sy232 ing570))) -(recipe r232 (key (sx232 ing107))) -(recipe r232 (key (sy232 ing571))) -(recipe r233 (numIngredients 2)) -(recipe r233 (result (id item233))) -(recipe r233 (pattern 0 sx233)) -(recipe r233 (pattern 1 sy233)) -(recipe r233 (key (sx233 ing99))) -(recipe r233 (key (sy233 ing565))) -(recipe r233 (key (sx233 ing100))) -(recipe r233 (key (sy233 ing566))) -(recipe r233 (key (sx233 ing101))) -(recipe r233 (key (sy233 ing567))) -(recipe r233 (key (sx233 ing102))) -(recipe r233 (key (sy233 ing568))) -(recipe r233 (key (sx233 ing103))) -(recipe r233 (key (sy233 ing569))) -(recipe r233 (key (sx233 ing104))) -(recipe r233 (key (sy233 ing570))) -(recipe r233 (key (sx233 ing105))) -(recipe r233 (key (sy233 ing571))) -(recipe r233 (key (sx233 ing106))) -(recipe r233 (key (sy233 ing572))) -(recipe r233 (key (sx233 ing107))) -(recipe r233 (key (sy233 ing573))) -(recipe r233 (key (sx233 ing108))) -(recipe r233 (key (sy233 ing574))) -(recipe r233 (key (sx233 ing109))) -(recipe r233 (key (sy233 ing575))) -(recipe r233 (key (sx233 ing110))) -(recipe r233 (key (sy233 ing576))) -(recipe r234 (numIngredients 2)) -(recipe r234 (result (id item234))) -(recipe r234 (pattern 0 sx234)) -(recipe r234 (pattern 1 sy234)) -(recipe r234 (key (sx234 ing102))) -(recipe r234 (key (sy234 ing570))) -(recipe r234 (key (sx234 ing103))) -(recipe r234 (key (sy234 ing571))) -(recipe r234 (key (sx234 ing104))) -(recipe r234 (key (sy234 ing572))) -(recipe r234 (key (sx234 ing105))) -(recipe r234 (key (sy234 ing573))) -(recipe r234 (key (sx234 ing106))) -(recipe r234 (key (sy234 ing574))) -(recipe r234 (key (sx234 ing107))) -(recipe r234 (key (sy234 ing575))) -(recipe r234 (key (sx234 ing108))) -(recipe r234 (key (sy234 ing576))) -(recipe r234 (key (sx234 ing109))) -(recipe r234 (key (sy234 ing577))) -(recipe r234 (key (sx234 ing110))) -(recipe r234 (key (sy234 ing578))) -(recipe r234 (key (sx234 ing111))) -(recipe r234 (key (sy234 ing579))) -(recipe r234 (key (sx234 ing112))) -(recipe r234 (key (sy234 ing580))) -(recipe r234 (key (sx234 ing113))) -(recipe r234 (key (sy234 ing581))) -(recipe r235 (numIngredients 2)) -(recipe r235 (result (id item235))) -(recipe r235 (pattern 0 sx235)) -(recipe r235 (pattern 1 sy235)) -(recipe r235 (key (sx235 ing105))) -(recipe r235 (key (sy235 ing575))) -(recipe r235 (key (sx235 ing106))) -(recipe r235 (key (sy235 ing576))) -(recipe r235 (key (sx235 ing107))) -(recipe r235 (key (sy235 ing577))) -(recipe r235 (key (sx235 ing108))) -(recipe r235 (key (sy235 ing578))) -(recipe r235 (key (sx235 ing109))) -(recipe r235 (key (sy235 ing579))) -(recipe r235 (key (sx235 ing110))) -(recipe r235 (key (sy235 ing580))) -(recipe r235 (key (sx235 ing111))) -(recipe r235 (key (sy235 ing581))) -(recipe r235 (key (sx235 ing112))) -(recipe r235 (key (sy235 ing582))) -(recipe r235 (key (sx235 ing113))) -(recipe r235 (key (sy235 ing583))) -(recipe r235 (key (sx235 ing114))) -(recipe r235 (key (sy235 ing584))) -(recipe r235 (key (sx235 ing115))) -(recipe r235 (key (sy235 ing585))) -(recipe r235 (key (sx235 ing116))) -(recipe r235 (key (sy235 ing586))) -(recipe r236 (numIngredients 2)) -(recipe r236 (result (id item236))) -(recipe r236 (pattern 0 sx236)) -(recipe r236 (pattern 1 sy236)) -(recipe r236 (key (sx236 ing108))) -(recipe r236 (key (sy236 ing580))) -(recipe r236 (key (sx236 ing109))) -(recipe r236 (key (sy236 ing581))) -(recipe r236 (key (sx236 ing110))) -(recipe r236 (key (sy236 ing582))) -(recipe r236 (key (sx236 ing111))) -(recipe r236 (key (sy236 ing583))) -(recipe r236 (key (sx236 ing112))) -(recipe r236 (key (sy236 ing584))) -(recipe r236 (key (sx236 ing113))) -(recipe r236 (key (sy236 ing585))) -(recipe r236 (key (sx236 ing114))) -(recipe r236 (key (sy236 ing586))) -(recipe r236 (key (sx236 ing115))) -(recipe r236 (key (sy236 ing587))) -(recipe r236 (key (sx236 ing116))) -(recipe r236 (key (sy236 ing588))) -(recipe r236 (key (sx236 ing117))) -(recipe r236 (key (sy236 ing589))) -(recipe r236 (key (sx236 ing118))) -(recipe r236 (key (sy236 ing590))) -(recipe r236 (key (sx236 ing119))) -(recipe r236 (key (sy236 ing591))) -(recipe r237 (numIngredients 2)) -(recipe r237 (result (id item237))) -(recipe r237 (pattern 0 sx237)) -(recipe r237 (pattern 1 sy237)) -(recipe r237 (key (sx237 ing111))) -(recipe r237 (key (sy237 ing585))) -(recipe r237 (key (sx237 ing112))) -(recipe r237 (key (sy237 ing586))) -(recipe r237 (key (sx237 ing113))) -(recipe r237 (key (sy237 ing587))) -(recipe r237 (key (sx237 ing114))) -(recipe r237 (key (sy237 ing588))) -(recipe r237 (key (sx237 ing115))) -(recipe r237 (key (sy237 ing589))) -(recipe r237 (key (sx237 ing116))) -(recipe r237 (key (sy237 ing590))) -(recipe r237 (key (sx237 ing117))) -(recipe r237 (key (sy237 ing591))) -(recipe r237 (key (sx237 ing118))) -(recipe r237 (key (sy237 ing592))) -(recipe r237 (key (sx237 ing119))) -(recipe r237 (key (sy237 ing593))) -(recipe r237 (key (sx237 ing120))) -(recipe r237 (key (sy237 ing594))) -(recipe r237 (key (sx237 ing121))) -(recipe r237 (key (sy237 ing595))) -(recipe r237 (key (sx237 ing122))) -(recipe r237 (key (sy237 ing596))) -(recipe r238 (numIngredients 2)) -(recipe r238 (result (id item238))) -(recipe r238 (pattern 0 sx238)) -(recipe r238 (pattern 1 sy238)) -(recipe r238 (key (sx238 ing114))) -(recipe r238 (key (sy238 ing590))) -(recipe r238 (key (sx238 ing115))) -(recipe r238 (key (sy238 ing591))) -(recipe r238 (key (sx238 ing116))) -(recipe r238 (key (sy238 ing592))) -(recipe r238 (key (sx238 ing117))) -(recipe r238 (key (sy238 ing593))) -(recipe r238 (key (sx238 ing118))) -(recipe r238 (key (sy238 ing594))) -(recipe r238 (key (sx238 ing119))) -(recipe r238 (key (sy238 ing595))) -(recipe r238 (key (sx238 ing120))) -(recipe r238 (key (sy238 ing596))) -(recipe r238 (key (sx238 ing121))) -(recipe r238 (key (sy238 ing597))) -(recipe r238 (key (sx238 ing122))) -(recipe r238 (key (sy238 ing598))) -(recipe r238 (key (sx238 ing123))) -(recipe r238 (key (sy238 ing599))) -(recipe r238 (key (sx238 ing124))) -(recipe r238 (key (sy238 ing0))) -(recipe r238 (key (sx238 ing125))) -(recipe r238 (key (sy238 ing1))) -(recipe r239 (numIngredients 2)) -(recipe r239 (result (id item239))) -(recipe r239 (pattern 0 sx239)) -(recipe r239 (pattern 1 sy239)) -(recipe r239 (key (sx239 ing117))) -(recipe r239 (key (sy239 ing595))) -(recipe r239 (key (sx239 ing118))) -(recipe r239 (key (sy239 ing596))) -(recipe r239 (key (sx239 ing119))) -(recipe r239 (key (sy239 ing597))) -(recipe r239 (key (sx239 ing120))) -(recipe r239 (key (sy239 ing598))) -(recipe r239 (key (sx239 ing121))) -(recipe r239 (key (sy239 ing599))) -(recipe r239 (key (sx239 ing122))) -(recipe r239 (key (sy239 ing0))) -(recipe r239 (key (sx239 ing123))) -(recipe r239 (key (sy239 ing1))) -(recipe r239 (key (sx239 ing124))) -(recipe r239 (key (sy239 ing2))) -(recipe r239 (key (sx239 ing125))) -(recipe r239 (key (sy239 ing3))) -(recipe r239 (key (sx239 ing126))) -(recipe r239 (key (sy239 ing4))) -(recipe r239 (key (sx239 ing127))) -(recipe r239 (key (sy239 ing5))) -(recipe r239 (key (sx239 ing128))) -(recipe r239 (key (sy239 ing6))) -(recipe r240 (numIngredients 2)) -(recipe r240 (result (id item240))) -(recipe r240 (pattern 0 sx240)) -(recipe r240 (pattern 1 sy240)) -(recipe r240 (key (sx240 ing120))) -(recipe r240 (key (sy240 ing0))) -(recipe r240 (key (sx240 ing121))) -(recipe r240 (key (sy240 ing1))) -(recipe r240 (key (sx240 ing122))) -(recipe r240 (key (sy240 ing2))) -(recipe r240 (key (sx240 ing123))) -(recipe r240 (key (sy240 ing3))) -(recipe r240 (key (sx240 ing124))) -(recipe r240 (key (sy240 ing4))) -(recipe r240 (key (sx240 ing125))) -(recipe r240 (key (sy240 ing5))) -(recipe r240 (key (sx240 ing126))) -(recipe r240 (key (sy240 ing6))) -(recipe r240 (key (sx240 ing127))) -(recipe r240 (key (sy240 ing7))) -(recipe r240 (key (sx240 ing128))) -(recipe r240 (key (sy240 ing8))) -(recipe r240 (key (sx240 ing129))) -(recipe r240 (key (sy240 ing9))) -(recipe r240 (key (sx240 ing130))) -(recipe r240 (key (sy240 ing10))) -(recipe r240 (key (sx240 ing131))) -(recipe r240 (key (sy240 ing11))) -(recipe r241 (numIngredients 2)) -(recipe r241 (result (id item241))) -(recipe r241 (pattern 0 sx241)) -(recipe r241 (pattern 1 sy241)) -(recipe r241 (key (sx241 ing123))) -(recipe r241 (key (sy241 ing5))) -(recipe r241 (key (sx241 ing124))) -(recipe r241 (key (sy241 ing6))) -(recipe r241 (key (sx241 ing125))) -(recipe r241 (key (sy241 ing7))) -(recipe r241 (key (sx241 ing126))) -(recipe r241 (key (sy241 ing8))) -(recipe r241 (key (sx241 ing127))) -(recipe r241 (key (sy241 ing9))) -(recipe r241 (key (sx241 ing128))) -(recipe r241 (key (sy241 ing10))) -(recipe r241 (key (sx241 ing129))) -(recipe r241 (key (sy241 ing11))) -(recipe r241 (key (sx241 ing130))) -(recipe r241 (key (sy241 ing12))) -(recipe r241 (key (sx241 ing131))) -(recipe r241 (key (sy241 ing13))) -(recipe r241 (key (sx241 ing132))) -(recipe r241 (key (sy241 ing14))) -(recipe r241 (key (sx241 ing133))) -(recipe r241 (key (sy241 ing15))) -(recipe r241 (key (sx241 ing134))) -(recipe r241 (key (sy241 ing16))) -(recipe r242 (numIngredients 2)) -(recipe r242 (result (id item242))) -(recipe r242 (pattern 0 sx242)) -(recipe r242 (pattern 1 sy242)) -(recipe r242 (key (sx242 ing126))) -(recipe r242 (key (sy242 ing10))) -(recipe r242 (key (sx242 ing127))) -(recipe r242 (key (sy242 ing11))) -(recipe r242 (key (sx242 ing128))) -(recipe r242 (key (sy242 ing12))) -(recipe r242 (key (sx242 ing129))) -(recipe r242 (key (sy242 ing13))) -(recipe r242 (key (sx242 ing130))) -(recipe r242 (key (sy242 ing14))) -(recipe r242 (key (sx242 ing131))) -(recipe r242 (key (sy242 ing15))) -(recipe r242 (key (sx242 ing132))) -(recipe r242 (key (sy242 ing16))) -(recipe r242 (key (sx242 ing133))) -(recipe r242 (key (sy242 ing17))) -(recipe r242 (key (sx242 ing134))) -(recipe r242 (key (sy242 ing18))) -(recipe r242 (key (sx242 ing135))) -(recipe r242 (key (sy242 ing19))) -(recipe r242 (key (sx242 ing136))) -(recipe r242 (key (sy242 ing20))) -(recipe r242 (key (sx242 ing137))) -(recipe r242 (key (sy242 ing21))) -(recipe r243 (numIngredients 2)) -(recipe r243 (result (id item243))) -(recipe r243 (pattern 0 sx243)) -(recipe r243 (pattern 1 sy243)) -(recipe r243 (key (sx243 ing129))) -(recipe r243 (key (sy243 ing15))) -(recipe r243 (key (sx243 ing130))) -(recipe r243 (key (sy243 ing16))) -(recipe r243 (key (sx243 ing131))) -(recipe r243 (key (sy243 ing17))) -(recipe r243 (key (sx243 ing132))) -(recipe r243 (key (sy243 ing18))) -(recipe r243 (key (sx243 ing133))) -(recipe r243 (key (sy243 ing19))) -(recipe r243 (key (sx243 ing134))) -(recipe r243 (key (sy243 ing20))) -(recipe r243 (key (sx243 ing135))) -(recipe r243 (key (sy243 ing21))) -(recipe r243 (key (sx243 ing136))) -(recipe r243 (key (sy243 ing22))) -(recipe r243 (key (sx243 ing137))) -(recipe r243 (key (sy243 ing23))) -(recipe r243 (key (sx243 ing138))) -(recipe r243 (key (sy243 ing24))) -(recipe r243 (key (sx243 ing139))) -(recipe r243 (key (sy243 ing25))) -(recipe r243 (key (sx243 ing140))) -(recipe r243 (key (sy243 ing26))) -(recipe r244 (numIngredients 2)) -(recipe r244 (result (id item244))) -(recipe r244 (pattern 0 sx244)) -(recipe r244 (pattern 1 sy244)) -(recipe r244 (key (sx244 ing132))) -(recipe r244 (key (sy244 ing20))) -(recipe r244 (key (sx244 ing133))) -(recipe r244 (key (sy244 ing21))) -(recipe r244 (key (sx244 ing134))) -(recipe r244 (key (sy244 ing22))) -(recipe r244 (key (sx244 ing135))) -(recipe r244 (key (sy244 ing23))) -(recipe r244 (key (sx244 ing136))) -(recipe r244 (key (sy244 ing24))) -(recipe r244 (key (sx244 ing137))) -(recipe r244 (key (sy244 ing25))) -(recipe r244 (key (sx244 ing138))) -(recipe r244 (key (sy244 ing26))) -(recipe r244 (key (sx244 ing139))) -(recipe r244 (key (sy244 ing27))) -(recipe r244 (key (sx244 ing140))) -(recipe r244 (key (sy244 ing28))) -(recipe r244 (key (sx244 ing141))) -(recipe r244 (key (sy244 ing29))) -(recipe r244 (key (sx244 ing142))) -(recipe r244 (key (sy244 ing30))) -(recipe r244 (key (sx244 ing143))) -(recipe r244 (key (sy244 ing31))) -(recipe r245 (numIngredients 2)) -(recipe r245 (result (id item245))) -(recipe r245 (pattern 0 sx245)) -(recipe r245 (pattern 1 sy245)) -(recipe r245 (key (sx245 ing135))) -(recipe r245 (key (sy245 ing25))) -(recipe r245 (key (sx245 ing136))) -(recipe r245 (key (sy245 ing26))) -(recipe r245 (key (sx245 ing137))) -(recipe r245 (key (sy245 ing27))) -(recipe r245 (key (sx245 ing138))) -(recipe r245 (key (sy245 ing28))) -(recipe r245 (key (sx245 ing139))) -(recipe r245 (key (sy245 ing29))) -(recipe r245 (key (sx245 ing140))) -(recipe r245 (key (sy245 ing30))) -(recipe r245 (key (sx245 ing141))) -(recipe r245 (key (sy245 ing31))) -(recipe r245 (key (sx245 ing142))) -(recipe r245 (key (sy245 ing32))) -(recipe r245 (key (sx245 ing143))) -(recipe r245 (key (sy245 ing33))) -(recipe r245 (key (sx245 ing144))) -(recipe r245 (key (sy245 ing34))) -(recipe r245 (key (sx245 ing145))) -(recipe r245 (key (sy245 ing35))) -(recipe r245 (key (sx245 ing146))) -(recipe r245 (key (sy245 ing36))) -(recipe r246 (numIngredients 2)) -(recipe r246 (result (id item246))) -(recipe r246 (pattern 0 sx246)) -(recipe r246 (pattern 1 sy246)) -(recipe r246 (key (sx246 ing138))) -(recipe r246 (key (sy246 ing30))) -(recipe r246 (key (sx246 ing139))) -(recipe r246 (key (sy246 ing31))) -(recipe r246 (key (sx246 ing140))) -(recipe r246 (key (sy246 ing32))) -(recipe r246 (key (sx246 ing141))) -(recipe r246 (key (sy246 ing33))) -(recipe r246 (key (sx246 ing142))) -(recipe r246 (key (sy246 ing34))) -(recipe r246 (key (sx246 ing143))) -(recipe r246 (key (sy246 ing35))) -(recipe r246 (key (sx246 ing144))) -(recipe r246 (key (sy246 ing36))) -(recipe r246 (key (sx246 ing145))) -(recipe r246 (key (sy246 ing37))) -(recipe r246 (key (sx246 ing146))) -(recipe r246 (key (sy246 ing38))) -(recipe r246 (key (sx246 ing147))) -(recipe r246 (key (sy246 ing39))) -(recipe r246 (key (sx246 ing148))) -(recipe r246 (key (sy246 ing40))) -(recipe r246 (key (sx246 ing149))) -(recipe r246 (key (sy246 ing41))) -(recipe r247 (numIngredients 2)) -(recipe r247 (result (id item247))) -(recipe r247 (pattern 0 sx247)) -(recipe r247 (pattern 1 sy247)) -(recipe r247 (key (sx247 ing141))) -(recipe r247 (key (sy247 ing35))) -(recipe r247 (key (sx247 ing142))) -(recipe r247 (key (sy247 ing36))) -(recipe r247 (key (sx247 ing143))) -(recipe r247 (key (sy247 ing37))) -(recipe r247 (key (sx247 ing144))) -(recipe r247 (key (sy247 ing38))) -(recipe r247 (key (sx247 ing145))) -(recipe r247 (key (sy247 ing39))) -(recipe r247 (key (sx247 ing146))) -(recipe r247 (key (sy247 ing40))) -(recipe r247 (key (sx247 ing147))) -(recipe r247 (key (sy247 ing41))) -(recipe r247 (key (sx247 ing148))) -(recipe r247 (key (sy247 ing42))) -(recipe r247 (key (sx247 ing149))) -(recipe r247 (key (sy247 ing43))) -(recipe r247 (key (sx247 ing150))) -(recipe r247 (key (sy247 ing44))) -(recipe r247 (key (sx247 ing151))) -(recipe r247 (key (sy247 ing45))) -(recipe r247 (key (sx247 ing152))) -(recipe r247 (key (sy247 ing46))) -(recipe r248 (numIngredients 2)) -(recipe r248 (result (id item248))) -(recipe r248 (pattern 0 sx248)) -(recipe r248 (pattern 1 sy248)) -(recipe r248 (key (sx248 ing144))) -(recipe r248 (key (sy248 ing40))) -(recipe r248 (key (sx248 ing145))) -(recipe r248 (key (sy248 ing41))) -(recipe r248 (key (sx248 ing146))) -(recipe r248 (key (sy248 ing42))) -(recipe r248 (key (sx248 ing147))) -(recipe r248 (key (sy248 ing43))) -(recipe r248 (key (sx248 ing148))) -(recipe r248 (key (sy248 ing44))) -(recipe r248 (key (sx248 ing149))) -(recipe r248 (key (sy248 ing45))) -(recipe r248 (key (sx248 ing150))) -(recipe r248 (key (sy248 ing46))) -(recipe r248 (key (sx248 ing151))) -(recipe r248 (key (sy248 ing47))) -(recipe r248 (key (sx248 ing152))) -(recipe r248 (key (sy248 ing48))) -(recipe r248 (key (sx248 ing153))) -(recipe r248 (key (sy248 ing49))) -(recipe r248 (key (sx248 ing154))) -(recipe r248 (key (sy248 ing50))) -(recipe r248 (key (sx248 ing155))) -(recipe r248 (key (sy248 ing51))) -(recipe r249 (numIngredients 2)) -(recipe r249 (result (id item249))) -(recipe r249 (pattern 0 sx249)) -(recipe r249 (pattern 1 sy249)) -(recipe r249 (key (sx249 ing147))) -(recipe r249 (key (sy249 ing45))) -(recipe r249 (key (sx249 ing148))) -(recipe r249 (key (sy249 ing46))) -(recipe r249 (key (sx249 ing149))) -(recipe r249 (key (sy249 ing47))) -(recipe r249 (key (sx249 ing150))) -(recipe r249 (key (sy249 ing48))) -(recipe r249 (key (sx249 ing151))) -(recipe r249 (key (sy249 ing49))) -(recipe r249 (key (sx249 ing152))) -(recipe r249 (key (sy249 ing50))) -(recipe r249 (key (sx249 ing153))) -(recipe r249 (key (sy249 ing51))) -(recipe r249 (key (sx249 ing154))) -(recipe r249 (key (sy249 ing52))) -(recipe r249 (key (sx249 ing155))) -(recipe r249 (key (sy249 ing53))) -(recipe r249 (key (sx249 ing156))) -(recipe r249 (key (sy249 ing54))) -(recipe r249 (key (sx249 ing157))) -(recipe r249 (key (sy249 ing55))) -(recipe r249 (key (sx249 ing158))) -(recipe r249 (key (sy249 ing56))) -(recipe r250 (numIngredients 2)) -(recipe r250 (result (id item250))) -(recipe r250 (pattern 0 sx250)) -(recipe r250 (pattern 1 sy250)) -(recipe r250 (key (sx250 ing150))) -(recipe r250 (key (sy250 ing50))) -(recipe r250 (key (sx250 ing151))) -(recipe r250 (key (sy250 ing51))) -(recipe r250 (key (sx250 ing152))) -(recipe r250 (key (sy250 ing52))) -(recipe r250 (key (sx250 ing153))) -(recipe r250 (key (sy250 ing53))) -(recipe r250 (key (sx250 ing154))) -(recipe r250 (key (sy250 ing54))) -(recipe r250 (key (sx250 ing155))) -(recipe r250 (key (sy250 ing55))) -(recipe r250 (key (sx250 ing156))) -(recipe r250 (key (sy250 ing56))) -(recipe r250 (key (sx250 ing157))) -(recipe r250 (key (sy250 ing57))) -(recipe r250 (key (sx250 ing158))) -(recipe r250 (key (sy250 ing58))) -(recipe r250 (key (sx250 ing159))) -(recipe r250 (key (sy250 ing59))) -(recipe r250 (key (sx250 ing160))) -(recipe r250 (key (sy250 ing60))) -(recipe r250 (key (sx250 ing161))) -(recipe r250 (key (sy250 ing61))) -(recipe r251 (numIngredients 2)) -(recipe r251 (result (id item251))) -(recipe r251 (pattern 0 sx251)) -(recipe r251 (pattern 1 sy251)) -(recipe r251 (key (sx251 ing153))) -(recipe r251 (key (sy251 ing55))) -(recipe r251 (key (sx251 ing154))) -(recipe r251 (key (sy251 ing56))) -(recipe r251 (key (sx251 ing155))) -(recipe r251 (key (sy251 ing57))) -(recipe r251 (key (sx251 ing156))) -(recipe r251 (key (sy251 ing58))) -(recipe r251 (key (sx251 ing157))) -(recipe r251 (key (sy251 ing59))) -(recipe r251 (key (sx251 ing158))) -(recipe r251 (key (sy251 ing60))) -(recipe r251 (key (sx251 ing159))) -(recipe r251 (key (sy251 ing61))) -(recipe r251 (key (sx251 ing160))) -(recipe r251 (key (sy251 ing62))) -(recipe r251 (key (sx251 ing161))) -(recipe r251 (key (sy251 ing63))) -(recipe r251 (key (sx251 ing162))) -(recipe r251 (key (sy251 ing64))) -(recipe r251 (key (sx251 ing163))) -(recipe r251 (key (sy251 ing65))) -(recipe r251 (key (sx251 ing164))) -(recipe r251 (key (sy251 ing66))) -(recipe r252 (numIngredients 2)) -(recipe r252 (result (id item252))) -(recipe r252 (pattern 0 sx252)) -(recipe r252 (pattern 1 sy252)) -(recipe r252 (key (sx252 ing156))) -(recipe r252 (key (sy252 ing60))) -(recipe r252 (key (sx252 ing157))) -(recipe r252 (key (sy252 ing61))) -(recipe r252 (key (sx252 ing158))) -(recipe r252 (key (sy252 ing62))) -(recipe r252 (key (sx252 ing159))) -(recipe r252 (key (sy252 ing63))) -(recipe r252 (key (sx252 ing160))) -(recipe r252 (key (sy252 ing64))) -(recipe r252 (key (sx252 ing161))) -(recipe r252 (key (sy252 ing65))) -(recipe r252 (key (sx252 ing162))) -(recipe r252 (key (sy252 ing66))) -(recipe r252 (key (sx252 ing163))) -(recipe r252 (key (sy252 ing67))) -(recipe r252 (key (sx252 ing164))) -(recipe r252 (key (sy252 ing68))) -(recipe r252 (key (sx252 ing165))) -(recipe r252 (key (sy252 ing69))) -(recipe r252 (key (sx252 ing166))) -(recipe r252 (key (sy252 ing70))) -(recipe r252 (key (sx252 ing167))) -(recipe r252 (key (sy252 ing71))) -(recipe r253 (numIngredients 2)) -(recipe r253 (result (id item253))) -(recipe r253 (pattern 0 sx253)) -(recipe r253 (pattern 1 sy253)) -(recipe r253 (key (sx253 ing159))) -(recipe r253 (key (sy253 ing65))) -(recipe r253 (key (sx253 ing160))) -(recipe r253 (key (sy253 ing66))) -(recipe r253 (key (sx253 ing161))) -(recipe r253 (key (sy253 ing67))) -(recipe r253 (key (sx253 ing162))) -(recipe r253 (key (sy253 ing68))) -(recipe r253 (key (sx253 ing163))) -(recipe r253 (key (sy253 ing69))) -(recipe r253 (key (sx253 ing164))) -(recipe r253 (key (sy253 ing70))) -(recipe r253 (key (sx253 ing165))) -(recipe r253 (key (sy253 ing71))) -(recipe r253 (key (sx253 ing166))) -(recipe r253 (key (sy253 ing72))) -(recipe r253 (key (sx253 ing167))) -(recipe r253 (key (sy253 ing73))) -(recipe r253 (key (sx253 ing168))) -(recipe r253 (key (sy253 ing74))) -(recipe r253 (key (sx253 ing169))) -(recipe r253 (key (sy253 ing75))) -(recipe r253 (key (sx253 ing170))) -(recipe r253 (key (sy253 ing76))) -(recipe r254 (numIngredients 2)) -(recipe r254 (result (id item254))) -(recipe r254 (pattern 0 sx254)) -(recipe r254 (pattern 1 sy254)) -(recipe r254 (key (sx254 ing162))) -(recipe r254 (key (sy254 ing70))) -(recipe r254 (key (sx254 ing163))) -(recipe r254 (key (sy254 ing71))) -(recipe r254 (key (sx254 ing164))) -(recipe r254 (key (sy254 ing72))) -(recipe r254 (key (sx254 ing165))) -(recipe r254 (key (sy254 ing73))) -(recipe r254 (key (sx254 ing166))) -(recipe r254 (key (sy254 ing74))) -(recipe r254 (key (sx254 ing167))) -(recipe r254 (key (sy254 ing75))) -(recipe r254 (key (sx254 ing168))) -(recipe r254 (key (sy254 ing76))) -(recipe r254 (key (sx254 ing169))) -(recipe r254 (key (sy254 ing77))) -(recipe r254 (key (sx254 ing170))) -(recipe r254 (key (sy254 ing78))) -(recipe r254 (key (sx254 ing171))) -(recipe r254 (key (sy254 ing79))) -(recipe r254 (key (sx254 ing172))) -(recipe r254 (key (sy254 ing80))) -(recipe r254 (key (sx254 ing173))) -(recipe r254 (key (sy254 ing81))) -(recipe r255 (numIngredients 2)) -(recipe r255 (result (id item255))) -(recipe r255 (pattern 0 sx255)) -(recipe r255 (pattern 1 sy255)) -(recipe r255 (key (sx255 ing165))) -(recipe r255 (key (sy255 ing75))) -(recipe r255 (key (sx255 ing166))) -(recipe r255 (key (sy255 ing76))) -(recipe r255 (key (sx255 ing167))) -(recipe r255 (key (sy255 ing77))) -(recipe r255 (key (sx255 ing168))) -(recipe r255 (key (sy255 ing78))) -(recipe r255 (key (sx255 ing169))) -(recipe r255 (key (sy255 ing79))) -(recipe r255 (key (sx255 ing170))) -(recipe r255 (key (sy255 ing80))) -(recipe r255 (key (sx255 ing171))) -(recipe r255 (key (sy255 ing81))) -(recipe r255 (key (sx255 ing172))) -(recipe r255 (key (sy255 ing82))) -(recipe r255 (key (sx255 ing173))) -(recipe r255 (key (sy255 ing83))) -(recipe r255 (key (sx255 ing174))) -(recipe r255 (key (sy255 ing84))) -(recipe r255 (key (sx255 ing175))) -(recipe r255 (key (sy255 ing85))) -(recipe r255 (key (sx255 ing176))) -(recipe r255 (key (sy255 ing86))) -(recipe r256 (numIngredients 2)) -(recipe r256 (result (id item256))) -(recipe r256 (pattern 0 sx256)) -(recipe r256 (pattern 1 sy256)) -(recipe r256 (key (sx256 ing168))) -(recipe r256 (key (sy256 ing80))) -(recipe r256 (key (sx256 ing169))) -(recipe r256 (key (sy256 ing81))) -(recipe r256 (key (sx256 ing170))) -(recipe r256 (key (sy256 ing82))) -(recipe r256 (key (sx256 ing171))) -(recipe r256 (key (sy256 ing83))) -(recipe r256 (key (sx256 ing172))) -(recipe r256 (key (sy256 ing84))) -(recipe r256 (key (sx256 ing173))) -(recipe r256 (key (sy256 ing85))) -(recipe r256 (key (sx256 ing174))) -(recipe r256 (key (sy256 ing86))) -(recipe r256 (key (sx256 ing175))) -(recipe r256 (key (sy256 ing87))) -(recipe r256 (key (sx256 ing176))) -(recipe r256 (key (sy256 ing88))) -(recipe r256 (key (sx256 ing177))) -(recipe r256 (key (sy256 ing89))) -(recipe r256 (key (sx256 ing178))) -(recipe r256 (key (sy256 ing90))) -(recipe r256 (key (sx256 ing179))) -(recipe r256 (key (sy256 ing91))) -(recipe r257 (numIngredients 2)) -(recipe r257 (result (id item257))) -(recipe r257 (pattern 0 sx257)) -(recipe r257 (pattern 1 sy257)) -(recipe r257 (key (sx257 ing171))) -(recipe r257 (key (sy257 ing85))) -(recipe r257 (key (sx257 ing172))) -(recipe r257 (key (sy257 ing86))) -(recipe r257 (key (sx257 ing173))) -(recipe r257 (key (sy257 ing87))) -(recipe r257 (key (sx257 ing174))) -(recipe r257 (key (sy257 ing88))) -(recipe r257 (key (sx257 ing175))) -(recipe r257 (key (sy257 ing89))) -(recipe r257 (key (sx257 ing176))) -(recipe r257 (key (sy257 ing90))) -(recipe r257 (key (sx257 ing177))) -(recipe r257 (key (sy257 ing91))) -(recipe r257 (key (sx257 ing178))) -(recipe r257 (key (sy257 ing92))) -(recipe r257 (key (sx257 ing179))) -(recipe r257 (key (sy257 ing93))) -(recipe r257 (key (sx257 ing180))) -(recipe r257 (key (sy257 ing94))) -(recipe r257 (key (sx257 ing181))) -(recipe r257 (key (sy257 ing95))) -(recipe r257 (key (sx257 ing182))) -(recipe r257 (key (sy257 ing96))) -(recipe r258 (numIngredients 2)) -(recipe r258 (result (id item258))) -(recipe r258 (pattern 0 sx258)) -(recipe r258 (pattern 1 sy258)) -(recipe r258 (key (sx258 ing174))) -(recipe r258 (key (sy258 ing90))) -(recipe r258 (key (sx258 ing175))) -(recipe r258 (key (sy258 ing91))) -(recipe r258 (key (sx258 ing176))) -(recipe r258 (key (sy258 ing92))) -(recipe r258 (key (sx258 ing177))) -(recipe r258 (key (sy258 ing93))) -(recipe r258 (key (sx258 ing178))) -(recipe r258 (key (sy258 ing94))) -(recipe r258 (key (sx258 ing179))) -(recipe r258 (key (sy258 ing95))) -(recipe r258 (key (sx258 ing180))) -(recipe r258 (key (sy258 ing96))) -(recipe r258 (key (sx258 ing181))) -(recipe r258 (key (sy258 ing97))) -(recipe r258 (key (sx258 ing182))) -(recipe r258 (key (sy258 ing98))) -(recipe r258 (key (sx258 ing183))) -(recipe r258 (key (sy258 ing99))) -(recipe r258 (key (sx258 ing184))) -(recipe r258 (key (sy258 ing100))) -(recipe r258 (key (sx258 ing185))) -(recipe r258 (key (sy258 ing101))) -(recipe r259 (numIngredients 2)) -(recipe r259 (result (id item259))) -(recipe r259 (pattern 0 sx259)) -(recipe r259 (pattern 1 sy259)) -(recipe r259 (key (sx259 ing177))) -(recipe r259 (key (sy259 ing95))) -(recipe r259 (key (sx259 ing178))) -(recipe r259 (key (sy259 ing96))) -(recipe r259 (key (sx259 ing179))) -(recipe r259 (key (sy259 ing97))) -(recipe r259 (key (sx259 ing180))) -(recipe r259 (key (sy259 ing98))) -(recipe r259 (key (sx259 ing181))) -(recipe r259 (key (sy259 ing99))) -(recipe r259 (key (sx259 ing182))) -(recipe r259 (key (sy259 ing100))) -(recipe r259 (key (sx259 ing183))) -(recipe r259 (key (sy259 ing101))) -(recipe r259 (key (sx259 ing184))) -(recipe r259 (key (sy259 ing102))) -(recipe r259 (key (sx259 ing185))) -(recipe r259 (key (sy259 ing103))) -(recipe r259 (key (sx259 ing186))) -(recipe r259 (key (sy259 ing104))) -(recipe r259 (key (sx259 ing187))) -(recipe r259 (key (sy259 ing105))) -(recipe r259 (key (sx259 ing188))) -(recipe r259 (key (sy259 ing106))) -(recipe r260 (numIngredients 2)) -(recipe r260 (result (id item260))) -(recipe r260 (pattern 0 sx260)) -(recipe r260 (pattern 1 sy260)) -(recipe r260 (key (sx260 ing180))) -(recipe r260 (key (sy260 ing100))) -(recipe r260 (key (sx260 ing181))) -(recipe r260 (key (sy260 ing101))) -(recipe r260 (key (sx260 ing182))) -(recipe r260 (key (sy260 ing102))) -(recipe r260 (key (sx260 ing183))) -(recipe r260 (key (sy260 ing103))) -(recipe r260 (key (sx260 ing184))) -(recipe r260 (key (sy260 ing104))) -(recipe r260 (key (sx260 ing185))) -(recipe r260 (key (sy260 ing105))) -(recipe r260 (key (sx260 ing186))) -(recipe r260 (key (sy260 ing106))) -(recipe r260 (key (sx260 ing187))) -(recipe r260 (key (sy260 ing107))) -(recipe r260 (key (sx260 ing188))) -(recipe r260 (key (sy260 ing108))) -(recipe r260 (key (sx260 ing189))) -(recipe r260 (key (sy260 ing109))) -(recipe r260 (key (sx260 ing190))) -(recipe r260 (key (sy260 ing110))) -(recipe r260 (key (sx260 ing191))) -(recipe r260 (key (sy260 ing111))) -(recipe r261 (numIngredients 2)) -(recipe r261 (result (id item261))) -(recipe r261 (pattern 0 sx261)) -(recipe r261 (pattern 1 sy261)) -(recipe r261 (key (sx261 ing183))) -(recipe r261 (key (sy261 ing105))) -(recipe r261 (key (sx261 ing184))) -(recipe r261 (key (sy261 ing106))) -(recipe r261 (key (sx261 ing185))) -(recipe r261 (key (sy261 ing107))) -(recipe r261 (key (sx261 ing186))) -(recipe r261 (key (sy261 ing108))) -(recipe r261 (key (sx261 ing187))) -(recipe r261 (key (sy261 ing109))) -(recipe r261 (key (sx261 ing188))) -(recipe r261 (key (sy261 ing110))) -(recipe r261 (key (sx261 ing189))) -(recipe r261 (key (sy261 ing111))) -(recipe r261 (key (sx261 ing190))) -(recipe r261 (key (sy261 ing112))) -(recipe r261 (key (sx261 ing191))) -(recipe r261 (key (sy261 ing113))) -(recipe r261 (key (sx261 ing192))) -(recipe r261 (key (sy261 ing114))) -(recipe r261 (key (sx261 ing193))) -(recipe r261 (key (sy261 ing115))) -(recipe r261 (key (sx261 ing194))) -(recipe r261 (key (sy261 ing116))) -(recipe r262 (numIngredients 2)) -(recipe r262 (result (id item262))) -(recipe r262 (pattern 0 sx262)) -(recipe r262 (pattern 1 sy262)) -(recipe r262 (key (sx262 ing186))) -(recipe r262 (key (sy262 ing110))) -(recipe r262 (key (sx262 ing187))) -(recipe r262 (key (sy262 ing111))) -(recipe r262 (key (sx262 ing188))) -(recipe r262 (key (sy262 ing112))) -(recipe r262 (key (sx262 ing189))) -(recipe r262 (key (sy262 ing113))) -(recipe r262 (key (sx262 ing190))) -(recipe r262 (key (sy262 ing114))) -(recipe r262 (key (sx262 ing191))) -(recipe r262 (key (sy262 ing115))) -(recipe r262 (key (sx262 ing192))) -(recipe r262 (key (sy262 ing116))) -(recipe r262 (key (sx262 ing193))) -(recipe r262 (key (sy262 ing117))) -(recipe r262 (key (sx262 ing194))) -(recipe r262 (key (sy262 ing118))) -(recipe r262 (key (sx262 ing195))) -(recipe r262 (key (sy262 ing119))) -(recipe r262 (key (sx262 ing196))) -(recipe r262 (key (sy262 ing120))) -(recipe r262 (key (sx262 ing197))) -(recipe r262 (key (sy262 ing121))) -(recipe r263 (numIngredients 2)) -(recipe r263 (result (id item263))) -(recipe r263 (pattern 0 sx263)) -(recipe r263 (pattern 1 sy263)) -(recipe r263 (key (sx263 ing189))) -(recipe r263 (key (sy263 ing115))) -(recipe r263 (key (sx263 ing190))) -(recipe r263 (key (sy263 ing116))) -(recipe r263 (key (sx263 ing191))) -(recipe r263 (key (sy263 ing117))) -(recipe r263 (key (sx263 ing192))) -(recipe r263 (key (sy263 ing118))) -(recipe r263 (key (sx263 ing193))) -(recipe r263 (key (sy263 ing119))) -(recipe r263 (key (sx263 ing194))) -(recipe r263 (key (sy263 ing120))) -(recipe r263 (key (sx263 ing195))) -(recipe r263 (key (sy263 ing121))) -(recipe r263 (key (sx263 ing196))) -(recipe r263 (key (sy263 ing122))) -(recipe r263 (key (sx263 ing197))) -(recipe r263 (key (sy263 ing123))) -(recipe r263 (key (sx263 ing198))) -(recipe r263 (key (sy263 ing124))) -(recipe r263 (key (sx263 ing199))) -(recipe r263 (key (sy263 ing125))) -(recipe r263 (key (sx263 ing200))) -(recipe r263 (key (sy263 ing126))) -(recipe r264 (numIngredients 2)) -(recipe r264 (result (id item264))) -(recipe r264 (pattern 0 sx264)) -(recipe r264 (pattern 1 sy264)) -(recipe r264 (key (sx264 ing192))) -(recipe r264 (key (sy264 ing120))) -(recipe r264 (key (sx264 ing193))) -(recipe r264 (key (sy264 ing121))) -(recipe r264 (key (sx264 ing194))) -(recipe r264 (key (sy264 ing122))) -(recipe r264 (key (sx264 ing195))) -(recipe r264 (key (sy264 ing123))) -(recipe r264 (key (sx264 ing196))) -(recipe r264 (key (sy264 ing124))) -(recipe r264 (key (sx264 ing197))) -(recipe r264 (key (sy264 ing125))) -(recipe r264 (key (sx264 ing198))) -(recipe r264 (key (sy264 ing126))) -(recipe r264 (key (sx264 ing199))) -(recipe r264 (key (sy264 ing127))) -(recipe r264 (key (sx264 ing200))) -(recipe r264 (key (sy264 ing128))) -(recipe r264 (key (sx264 ing201))) -(recipe r264 (key (sy264 ing129))) -(recipe r264 (key (sx264 ing202))) -(recipe r264 (key (sy264 ing130))) -(recipe r264 (key (sx264 ing203))) -(recipe r264 (key (sy264 ing131))) -(recipe r265 (numIngredients 2)) -(recipe r265 (result (id item265))) -(recipe r265 (pattern 0 sx265)) -(recipe r265 (pattern 1 sy265)) -(recipe r265 (key (sx265 ing195))) -(recipe r265 (key (sy265 ing125))) -(recipe r265 (key (sx265 ing196))) -(recipe r265 (key (sy265 ing126))) -(recipe r265 (key (sx265 ing197))) -(recipe r265 (key (sy265 ing127))) -(recipe r265 (key (sx265 ing198))) -(recipe r265 (key (sy265 ing128))) -(recipe r265 (key (sx265 ing199))) -(recipe r265 (key (sy265 ing129))) -(recipe r265 (key (sx265 ing200))) -(recipe r265 (key (sy265 ing130))) -(recipe r265 (key (sx265 ing201))) -(recipe r265 (key (sy265 ing131))) -(recipe r265 (key (sx265 ing202))) -(recipe r265 (key (sy265 ing132))) -(recipe r265 (key (sx265 ing203))) -(recipe r265 (key (sy265 ing133))) -(recipe r265 (key (sx265 ing204))) -(recipe r265 (key (sy265 ing134))) -(recipe r265 (key (sx265 ing205))) -(recipe r265 (key (sy265 ing135))) -(recipe r265 (key (sx265 ing206))) -(recipe r265 (key (sy265 ing136))) -(recipe r266 (numIngredients 2)) -(recipe r266 (result (id item266))) -(recipe r266 (pattern 0 sx266)) -(recipe r266 (pattern 1 sy266)) -(recipe r266 (key (sx266 ing198))) -(recipe r266 (key (sy266 ing130))) -(recipe r266 (key (sx266 ing199))) -(recipe r266 (key (sy266 ing131))) -(recipe r266 (key (sx266 ing200))) -(recipe r266 (key (sy266 ing132))) -(recipe r266 (key (sx266 ing201))) -(recipe r266 (key (sy266 ing133))) -(recipe r266 (key (sx266 ing202))) -(recipe r266 (key (sy266 ing134))) -(recipe r266 (key (sx266 ing203))) -(recipe r266 (key (sy266 ing135))) -(recipe r266 (key (sx266 ing204))) -(recipe r266 (key (sy266 ing136))) -(recipe r266 (key (sx266 ing205))) -(recipe r266 (key (sy266 ing137))) -(recipe r266 (key (sx266 ing206))) -(recipe r266 (key (sy266 ing138))) -(recipe r266 (key (sx266 ing207))) -(recipe r266 (key (sy266 ing139))) -(recipe r266 (key (sx266 ing208))) -(recipe r266 (key (sy266 ing140))) -(recipe r266 (key (sx266 ing209))) -(recipe r266 (key (sy266 ing141))) -(recipe r267 (numIngredients 2)) -(recipe r267 (result (id item267))) -(recipe r267 (pattern 0 sx267)) -(recipe r267 (pattern 1 sy267)) -(recipe r267 (key (sx267 ing201))) -(recipe r267 (key (sy267 ing135))) -(recipe r267 (key (sx267 ing202))) -(recipe r267 (key (sy267 ing136))) -(recipe r267 (key (sx267 ing203))) -(recipe r267 (key (sy267 ing137))) -(recipe r267 (key (sx267 ing204))) -(recipe r267 (key (sy267 ing138))) -(recipe r267 (key (sx267 ing205))) -(recipe r267 (key (sy267 ing139))) -(recipe r267 (key (sx267 ing206))) -(recipe r267 (key (sy267 ing140))) -(recipe r267 (key (sx267 ing207))) -(recipe r267 (key (sy267 ing141))) -(recipe r267 (key (sx267 ing208))) -(recipe r267 (key (sy267 ing142))) -(recipe r267 (key (sx267 ing209))) -(recipe r267 (key (sy267 ing143))) -(recipe r267 (key (sx267 ing210))) -(recipe r267 (key (sy267 ing144))) -(recipe r267 (key (sx267 ing211))) -(recipe r267 (key (sy267 ing145))) -(recipe r267 (key (sx267 ing212))) -(recipe r267 (key (sy267 ing146))) -(recipe r268 (numIngredients 2)) -(recipe r268 (result (id item268))) -(recipe r268 (pattern 0 sx268)) -(recipe r268 (pattern 1 sy268)) -(recipe r268 (key (sx268 ing204))) -(recipe r268 (key (sy268 ing140))) -(recipe r268 (key (sx268 ing205))) -(recipe r268 (key (sy268 ing141))) -(recipe r268 (key (sx268 ing206))) -(recipe r268 (key (sy268 ing142))) -(recipe r268 (key (sx268 ing207))) -(recipe r268 (key (sy268 ing143))) -(recipe r268 (key (sx268 ing208))) -(recipe r268 (key (sy268 ing144))) -(recipe r268 (key (sx268 ing209))) -(recipe r268 (key (sy268 ing145))) -(recipe r268 (key (sx268 ing210))) -(recipe r268 (key (sy268 ing146))) -(recipe r268 (key (sx268 ing211))) -(recipe r268 (key (sy268 ing147))) -(recipe r268 (key (sx268 ing212))) -(recipe r268 (key (sy268 ing148))) -(recipe r268 (key (sx268 ing213))) -(recipe r268 (key (sy268 ing149))) -(recipe r268 (key (sx268 ing214))) -(recipe r268 (key (sy268 ing150))) -(recipe r268 (key (sx268 ing215))) -(recipe r268 (key (sy268 ing151))) -(recipe r269 (numIngredients 2)) -(recipe r269 (result (id item269))) -(recipe r269 (pattern 0 sx269)) -(recipe r269 (pattern 1 sy269)) -(recipe r269 (key (sx269 ing207))) -(recipe r269 (key (sy269 ing145))) -(recipe r269 (key (sx269 ing208))) -(recipe r269 (key (sy269 ing146))) -(recipe r269 (key (sx269 ing209))) -(recipe r269 (key (sy269 ing147))) -(recipe r269 (key (sx269 ing210))) -(recipe r269 (key (sy269 ing148))) -(recipe r269 (key (sx269 ing211))) -(recipe r269 (key (sy269 ing149))) -(recipe r269 (key (sx269 ing212))) -(recipe r269 (key (sy269 ing150))) -(recipe r269 (key (sx269 ing213))) -(recipe r269 (key (sy269 ing151))) -(recipe r269 (key (sx269 ing214))) -(recipe r269 (key (sy269 ing152))) -(recipe r269 (key (sx269 ing215))) -(recipe r269 (key (sy269 ing153))) -(recipe r269 (key (sx269 ing216))) -(recipe r269 (key (sy269 ing154))) -(recipe r269 (key (sx269 ing217))) -(recipe r269 (key (sy269 ing155))) -(recipe r269 (key (sx269 ing218))) -(recipe r269 (key (sy269 ing156))) -(recipe r270 (numIngredients 2)) -(recipe r270 (result (id item270))) -(recipe r270 (pattern 0 sx270)) -(recipe r270 (pattern 1 sy270)) -(recipe r270 (key (sx270 ing210))) -(recipe r270 (key (sy270 ing150))) -(recipe r270 (key (sx270 ing211))) -(recipe r270 (key (sy270 ing151))) -(recipe r270 (key (sx270 ing212))) -(recipe r270 (key (sy270 ing152))) -(recipe r270 (key (sx270 ing213))) -(recipe r270 (key (sy270 ing153))) -(recipe r270 (key (sx270 ing214))) -(recipe r270 (key (sy270 ing154))) -(recipe r270 (key (sx270 ing215))) -(recipe r270 (key (sy270 ing155))) -(recipe r270 (key (sx270 ing216))) -(recipe r270 (key (sy270 ing156))) -(recipe r270 (key (sx270 ing217))) -(recipe r270 (key (sy270 ing157))) -(recipe r270 (key (sx270 ing218))) -(recipe r270 (key (sy270 ing158))) -(recipe r270 (key (sx270 ing219))) -(recipe r270 (key (sy270 ing159))) -(recipe r270 (key (sx270 ing220))) -(recipe r270 (key (sy270 ing160))) -(recipe r270 (key (sx270 ing221))) -(recipe r270 (key (sy270 ing161))) -(recipe r271 (numIngredients 2)) -(recipe r271 (result (id item271))) -(recipe r271 (pattern 0 sx271)) -(recipe r271 (pattern 1 sy271)) -(recipe r271 (key (sx271 ing213))) -(recipe r271 (key (sy271 ing155))) -(recipe r271 (key (sx271 ing214))) -(recipe r271 (key (sy271 ing156))) -(recipe r271 (key (sx271 ing215))) -(recipe r271 (key (sy271 ing157))) -(recipe r271 (key (sx271 ing216))) -(recipe r271 (key (sy271 ing158))) -(recipe r271 (key (sx271 ing217))) -(recipe r271 (key (sy271 ing159))) -(recipe r271 (key (sx271 ing218))) -(recipe r271 (key (sy271 ing160))) -(recipe r271 (key (sx271 ing219))) -(recipe r271 (key (sy271 ing161))) -(recipe r271 (key (sx271 ing220))) -(recipe r271 (key (sy271 ing162))) -(recipe r271 (key (sx271 ing221))) -(recipe r271 (key (sy271 ing163))) -(recipe r271 (key (sx271 ing222))) -(recipe r271 (key (sy271 ing164))) -(recipe r271 (key (sx271 ing223))) -(recipe r271 (key (sy271 ing165))) -(recipe r271 (key (sx271 ing224))) -(recipe r271 (key (sy271 ing166))) -(recipe r272 (numIngredients 2)) -(recipe r272 (result (id item272))) -(recipe r272 (pattern 0 sx272)) -(recipe r272 (pattern 1 sy272)) -(recipe r272 (key (sx272 ing216))) -(recipe r272 (key (sy272 ing160))) -(recipe r272 (key (sx272 ing217))) -(recipe r272 (key (sy272 ing161))) -(recipe r272 (key (sx272 ing218))) -(recipe r272 (key (sy272 ing162))) -(recipe r272 (key (sx272 ing219))) -(recipe r272 (key (sy272 ing163))) -(recipe r272 (key (sx272 ing220))) -(recipe r272 (key (sy272 ing164))) -(recipe r272 (key (sx272 ing221))) -(recipe r272 (key (sy272 ing165))) -(recipe r272 (key (sx272 ing222))) -(recipe r272 (key (sy272 ing166))) -(recipe r272 (key (sx272 ing223))) -(recipe r272 (key (sy272 ing167))) -(recipe r272 (key (sx272 ing224))) -(recipe r272 (key (sy272 ing168))) -(recipe r272 (key (sx272 ing225))) -(recipe r272 (key (sy272 ing169))) -(recipe r272 (key (sx272 ing226))) -(recipe r272 (key (sy272 ing170))) -(recipe r272 (key (sx272 ing227))) -(recipe r272 (key (sy272 ing171))) -(recipe r273 (numIngredients 2)) -(recipe r273 (result (id item273))) -(recipe r273 (pattern 0 sx273)) -(recipe r273 (pattern 1 sy273)) -(recipe r273 (key (sx273 ing219))) -(recipe r273 (key (sy273 ing165))) -(recipe r273 (key (sx273 ing220))) -(recipe r273 (key (sy273 ing166))) -(recipe r273 (key (sx273 ing221))) -(recipe r273 (key (sy273 ing167))) -(recipe r273 (key (sx273 ing222))) -(recipe r273 (key (sy273 ing168))) -(recipe r273 (key (sx273 ing223))) -(recipe r273 (key (sy273 ing169))) -(recipe r273 (key (sx273 ing224))) -(recipe r273 (key (sy273 ing170))) -(recipe r273 (key (sx273 ing225))) -(recipe r273 (key (sy273 ing171))) -(recipe r273 (key (sx273 ing226))) -(recipe r273 (key (sy273 ing172))) -(recipe r273 (key (sx273 ing227))) -(recipe r273 (key (sy273 ing173))) -(recipe r273 (key (sx273 ing228))) -(recipe r273 (key (sy273 ing174))) -(recipe r273 (key (sx273 ing229))) -(recipe r273 (key (sy273 ing175))) -(recipe r273 (key (sx273 ing230))) -(recipe r273 (key (sy273 ing176))) -(recipe r274 (numIngredients 2)) -(recipe r274 (result (id item274))) -(recipe r274 (pattern 0 sx274)) -(recipe r274 (pattern 1 sy274)) -(recipe r274 (key (sx274 ing222))) -(recipe r274 (key (sy274 ing170))) -(recipe r274 (key (sx274 ing223))) -(recipe r274 (key (sy274 ing171))) -(recipe r274 (key (sx274 ing224))) -(recipe r274 (key (sy274 ing172))) -(recipe r274 (key (sx274 ing225))) -(recipe r274 (key (sy274 ing173))) -(recipe r274 (key (sx274 ing226))) -(recipe r274 (key (sy274 ing174))) -(recipe r274 (key (sx274 ing227))) -(recipe r274 (key (sy274 ing175))) -(recipe r274 (key (sx274 ing228))) -(recipe r274 (key (sy274 ing176))) -(recipe r274 (key (sx274 ing229))) -(recipe r274 (key (sy274 ing177))) -(recipe r274 (key (sx274 ing230))) -(recipe r274 (key (sy274 ing178))) -(recipe r274 (key (sx274 ing231))) -(recipe r274 (key (sy274 ing179))) -(recipe r274 (key (sx274 ing232))) -(recipe r274 (key (sy274 ing180))) -(recipe r274 (key (sx274 ing233))) -(recipe r274 (key (sy274 ing181))) -(recipe r275 (numIngredients 2)) -(recipe r275 (result (id item275))) -(recipe r275 (pattern 0 sx275)) -(recipe r275 (pattern 1 sy275)) -(recipe r275 (key (sx275 ing225))) -(recipe r275 (key (sy275 ing175))) -(recipe r275 (key (sx275 ing226))) -(recipe r275 (key (sy275 ing176))) -(recipe r275 (key (sx275 ing227))) -(recipe r275 (key (sy275 ing177))) -(recipe r275 (key (sx275 ing228))) -(recipe r275 (key (sy275 ing178))) -(recipe r275 (key (sx275 ing229))) -(recipe r275 (key (sy275 ing179))) -(recipe r275 (key (sx275 ing230))) -(recipe r275 (key (sy275 ing180))) -(recipe r275 (key (sx275 ing231))) -(recipe r275 (key (sy275 ing181))) -(recipe r275 (key (sx275 ing232))) -(recipe r275 (key (sy275 ing182))) -(recipe r275 (key (sx275 ing233))) -(recipe r275 (key (sy275 ing183))) -(recipe r275 (key (sx275 ing234))) -(recipe r275 (key (sy275 ing184))) -(recipe r275 (key (sx275 ing235))) -(recipe r275 (key (sy275 ing185))) -(recipe r275 (key (sx275 ing236))) -(recipe r275 (key (sy275 ing186))) -(recipe r276 (numIngredients 2)) -(recipe r276 (result (id item276))) -(recipe r276 (pattern 0 sx276)) -(recipe r276 (pattern 1 sy276)) -(recipe r276 (key (sx276 ing228))) -(recipe r276 (key (sy276 ing180))) -(recipe r276 (key (sx276 ing229))) -(recipe r276 (key (sy276 ing181))) -(recipe r276 (key (sx276 ing230))) -(recipe r276 (key (sy276 ing182))) -(recipe r276 (key (sx276 ing231))) -(recipe r276 (key (sy276 ing183))) -(recipe r276 (key (sx276 ing232))) -(recipe r276 (key (sy276 ing184))) -(recipe r276 (key (sx276 ing233))) -(recipe r276 (key (sy276 ing185))) -(recipe r276 (key (sx276 ing234))) -(recipe r276 (key (sy276 ing186))) -(recipe r276 (key (sx276 ing235))) -(recipe r276 (key (sy276 ing187))) -(recipe r276 (key (sx276 ing236))) -(recipe r276 (key (sy276 ing188))) -(recipe r276 (key (sx276 ing237))) -(recipe r276 (key (sy276 ing189))) -(recipe r276 (key (sx276 ing238))) -(recipe r276 (key (sy276 ing190))) -(recipe r276 (key (sx276 ing239))) -(recipe r276 (key (sy276 ing191))) -(recipe r277 (numIngredients 2)) -(recipe r277 (result (id item277))) -(recipe r277 (pattern 0 sx277)) -(recipe r277 (pattern 1 sy277)) -(recipe r277 (key (sx277 ing231))) -(recipe r277 (key (sy277 ing185))) -(recipe r277 (key (sx277 ing232))) -(recipe r277 (key (sy277 ing186))) -(recipe r277 (key (sx277 ing233))) -(recipe r277 (key (sy277 ing187))) -(recipe r277 (key (sx277 ing234))) -(recipe r277 (key (sy277 ing188))) -(recipe r277 (key (sx277 ing235))) -(recipe r277 (key (sy277 ing189))) -(recipe r277 (key (sx277 ing236))) -(recipe r277 (key (sy277 ing190))) -(recipe r277 (key (sx277 ing237))) -(recipe r277 (key (sy277 ing191))) -(recipe r277 (key (sx277 ing238))) -(recipe r277 (key (sy277 ing192))) -(recipe r277 (key (sx277 ing239))) -(recipe r277 (key (sy277 ing193))) -(recipe r277 (key (sx277 ing240))) -(recipe r277 (key (sy277 ing194))) -(recipe r277 (key (sx277 ing241))) -(recipe r277 (key (sy277 ing195))) -(recipe r277 (key (sx277 ing242))) -(recipe r277 (key (sy277 ing196))) -(recipe r278 (numIngredients 2)) -(recipe r278 (result (id item278))) -(recipe r278 (pattern 0 sx278)) -(recipe r278 (pattern 1 sy278)) -(recipe r278 (key (sx278 ing234))) -(recipe r278 (key (sy278 ing190))) -(recipe r278 (key (sx278 ing235))) -(recipe r278 (key (sy278 ing191))) -(recipe r278 (key (sx278 ing236))) -(recipe r278 (key (sy278 ing192))) -(recipe r278 (key (sx278 ing237))) -(recipe r278 (key (sy278 ing193))) -(recipe r278 (key (sx278 ing238))) -(recipe r278 (key (sy278 ing194))) -(recipe r278 (key (sx278 ing239))) -(recipe r278 (key (sy278 ing195))) -(recipe r278 (key (sx278 ing240))) -(recipe r278 (key (sy278 ing196))) -(recipe r278 (key (sx278 ing241))) -(recipe r278 (key (sy278 ing197))) -(recipe r278 (key (sx278 ing242))) -(recipe r278 (key (sy278 ing198))) -(recipe r278 (key (sx278 ing243))) -(recipe r278 (key (sy278 ing199))) -(recipe r278 (key (sx278 ing244))) -(recipe r278 (key (sy278 ing200))) -(recipe r278 (key (sx278 ing245))) -(recipe r278 (key (sy278 ing201))) -(recipe r279 (numIngredients 2)) -(recipe r279 (result (id item279))) -(recipe r279 (pattern 0 sx279)) -(recipe r279 (pattern 1 sy279)) -(recipe r279 (key (sx279 ing237))) -(recipe r279 (key (sy279 ing195))) -(recipe r279 (key (sx279 ing238))) -(recipe r279 (key (sy279 ing196))) -(recipe r279 (key (sx279 ing239))) -(recipe r279 (key (sy279 ing197))) -(recipe r279 (key (sx279 ing240))) -(recipe r279 (key (sy279 ing198))) -(recipe r279 (key (sx279 ing241))) -(recipe r279 (key (sy279 ing199))) -(recipe r279 (key (sx279 ing242))) -(recipe r279 (key (sy279 ing200))) -(recipe r279 (key (sx279 ing243))) -(recipe r279 (key (sy279 ing201))) -(recipe r279 (key (sx279 ing244))) -(recipe r279 (key (sy279 ing202))) -(recipe r279 (key (sx279 ing245))) -(recipe r279 (key (sy279 ing203))) -(recipe r279 (key (sx279 ing246))) -(recipe r279 (key (sy279 ing204))) -(recipe r279 (key (sx279 ing247))) -(recipe r279 (key (sy279 ing205))) -(recipe r279 (key (sx279 ing248))) -(recipe r279 (key (sy279 ing206))) -(recipe r280 (numIngredients 2)) -(recipe r280 (result (id item280))) -(recipe r280 (pattern 0 sx280)) -(recipe r280 (pattern 1 sy280)) -(recipe r280 (key (sx280 ing240))) -(recipe r280 (key (sy280 ing200))) -(recipe r280 (key (sx280 ing241))) -(recipe r280 (key (sy280 ing201))) -(recipe r280 (key (sx280 ing242))) -(recipe r280 (key (sy280 ing202))) -(recipe r280 (key (sx280 ing243))) -(recipe r280 (key (sy280 ing203))) -(recipe r280 (key (sx280 ing244))) -(recipe r280 (key (sy280 ing204))) -(recipe r280 (key (sx280 ing245))) -(recipe r280 (key (sy280 ing205))) -(recipe r280 (key (sx280 ing246))) -(recipe r280 (key (sy280 ing206))) -(recipe r280 (key (sx280 ing247))) -(recipe r280 (key (sy280 ing207))) -(recipe r280 (key (sx280 ing248))) -(recipe r280 (key (sy280 ing208))) -(recipe r280 (key (sx280 ing249))) -(recipe r280 (key (sy280 ing209))) -(recipe r280 (key (sx280 ing250))) -(recipe r280 (key (sy280 ing210))) -(recipe r280 (key (sx280 ing251))) -(recipe r280 (key (sy280 ing211))) -(recipe r281 (numIngredients 2)) -(recipe r281 (result (id item281))) -(recipe r281 (pattern 0 sx281)) -(recipe r281 (pattern 1 sy281)) -(recipe r281 (key (sx281 ing243))) -(recipe r281 (key (sy281 ing205))) -(recipe r281 (key (sx281 ing244))) -(recipe r281 (key (sy281 ing206))) -(recipe r281 (key (sx281 ing245))) -(recipe r281 (key (sy281 ing207))) -(recipe r281 (key (sx281 ing246))) -(recipe r281 (key (sy281 ing208))) -(recipe r281 (key (sx281 ing247))) -(recipe r281 (key (sy281 ing209))) -(recipe r281 (key (sx281 ing248))) -(recipe r281 (key (sy281 ing210))) -(recipe r281 (key (sx281 ing249))) -(recipe r281 (key (sy281 ing211))) -(recipe r281 (key (sx281 ing250))) -(recipe r281 (key (sy281 ing212))) -(recipe r281 (key (sx281 ing251))) -(recipe r281 (key (sy281 ing213))) -(recipe r281 (key (sx281 ing252))) -(recipe r281 (key (sy281 ing214))) -(recipe r281 (key (sx281 ing253))) -(recipe r281 (key (sy281 ing215))) -(recipe r281 (key (sx281 ing254))) -(recipe r281 (key (sy281 ing216))) -(recipe r282 (numIngredients 2)) -(recipe r282 (result (id item282))) -(recipe r282 (pattern 0 sx282)) -(recipe r282 (pattern 1 sy282)) -(recipe r282 (key (sx282 ing246))) -(recipe r282 (key (sy282 ing210))) -(recipe r282 (key (sx282 ing247))) -(recipe r282 (key (sy282 ing211))) -(recipe r282 (key (sx282 ing248))) -(recipe r282 (key (sy282 ing212))) -(recipe r282 (key (sx282 ing249))) -(recipe r282 (key (sy282 ing213))) -(recipe r282 (key (sx282 ing250))) -(recipe r282 (key (sy282 ing214))) -(recipe r282 (key (sx282 ing251))) -(recipe r282 (key (sy282 ing215))) -(recipe r282 (key (sx282 ing252))) -(recipe r282 (key (sy282 ing216))) -(recipe r282 (key (sx282 ing253))) -(recipe r282 (key (sy282 ing217))) -(recipe r282 (key (sx282 ing254))) -(recipe r282 (key (sy282 ing218))) -(recipe r282 (key (sx282 ing255))) -(recipe r282 (key (sy282 ing219))) -(recipe r282 (key (sx282 ing256))) -(recipe r282 (key (sy282 ing220))) -(recipe r282 (key (sx282 ing257))) -(recipe r282 (key (sy282 ing221))) -(recipe r283 (numIngredients 2)) -(recipe r283 (result (id item283))) -(recipe r283 (pattern 0 sx283)) -(recipe r283 (pattern 1 sy283)) -(recipe r283 (key (sx283 ing249))) -(recipe r283 (key (sy283 ing215))) -(recipe r283 (key (sx283 ing250))) -(recipe r283 (key (sy283 ing216))) -(recipe r283 (key (sx283 ing251))) -(recipe r283 (key (sy283 ing217))) -(recipe r283 (key (sx283 ing252))) -(recipe r283 (key (sy283 ing218))) -(recipe r283 (key (sx283 ing253))) -(recipe r283 (key (sy283 ing219))) -(recipe r283 (key (sx283 ing254))) -(recipe r283 (key (sy283 ing220))) -(recipe r283 (key (sx283 ing255))) -(recipe r283 (key (sy283 ing221))) -(recipe r283 (key (sx283 ing256))) -(recipe r283 (key (sy283 ing222))) -(recipe r283 (key (sx283 ing257))) -(recipe r283 (key (sy283 ing223))) -(recipe r283 (key (sx283 ing258))) -(recipe r283 (key (sy283 ing224))) -(recipe r283 (key (sx283 ing259))) -(recipe r283 (key (sy283 ing225))) -(recipe r283 (key (sx283 ing260))) -(recipe r283 (key (sy283 ing226))) -(recipe r284 (numIngredients 2)) -(recipe r284 (result (id item284))) -(recipe r284 (pattern 0 sx284)) -(recipe r284 (pattern 1 sy284)) -(recipe r284 (key (sx284 ing252))) -(recipe r284 (key (sy284 ing220))) -(recipe r284 (key (sx284 ing253))) -(recipe r284 (key (sy284 ing221))) -(recipe r284 (key (sx284 ing254))) -(recipe r284 (key (sy284 ing222))) -(recipe r284 (key (sx284 ing255))) -(recipe r284 (key (sy284 ing223))) -(recipe r284 (key (sx284 ing256))) -(recipe r284 (key (sy284 ing224))) -(recipe r284 (key (sx284 ing257))) -(recipe r284 (key (sy284 ing225))) -(recipe r284 (key (sx284 ing258))) -(recipe r284 (key (sy284 ing226))) -(recipe r284 (key (sx284 ing259))) -(recipe r284 (key (sy284 ing227))) -(recipe r284 (key (sx284 ing260))) -(recipe r284 (key (sy284 ing228))) -(recipe r284 (key (sx284 ing261))) -(recipe r284 (key (sy284 ing229))) -(recipe r284 (key (sx284 ing262))) -(recipe r284 (key (sy284 ing230))) -(recipe r284 (key (sx284 ing263))) -(recipe r284 (key (sy284 ing231))) -(recipe r285 (numIngredients 2)) -(recipe r285 (result (id item285))) -(recipe r285 (pattern 0 sx285)) -(recipe r285 (pattern 1 sy285)) -(recipe r285 (key (sx285 ing255))) -(recipe r285 (key (sy285 ing225))) -(recipe r285 (key (sx285 ing256))) -(recipe r285 (key (sy285 ing226))) -(recipe r285 (key (sx285 ing257))) -(recipe r285 (key (sy285 ing227))) -(recipe r285 (key (sx285 ing258))) -(recipe r285 (key (sy285 ing228))) -(recipe r285 (key (sx285 ing259))) -(recipe r285 (key (sy285 ing229))) -(recipe r285 (key (sx285 ing260))) -(recipe r285 (key (sy285 ing230))) -(recipe r285 (key (sx285 ing261))) -(recipe r285 (key (sy285 ing231))) -(recipe r285 (key (sx285 ing262))) -(recipe r285 (key (sy285 ing232))) -(recipe r285 (key (sx285 ing263))) -(recipe r285 (key (sy285 ing233))) -(recipe r285 (key (sx285 ing264))) -(recipe r285 (key (sy285 ing234))) -(recipe r285 (key (sx285 ing265))) -(recipe r285 (key (sy285 ing235))) -(recipe r285 (key (sx285 ing266))) -(recipe r285 (key (sy285 ing236))) -(recipe r286 (numIngredients 2)) -(recipe r286 (result (id item286))) -(recipe r286 (pattern 0 sx286)) -(recipe r286 (pattern 1 sy286)) -(recipe r286 (key (sx286 ing258))) -(recipe r286 (key (sy286 ing230))) -(recipe r286 (key (sx286 ing259))) -(recipe r286 (key (sy286 ing231))) -(recipe r286 (key (sx286 ing260))) -(recipe r286 (key (sy286 ing232))) -(recipe r286 (key (sx286 ing261))) -(recipe r286 (key (sy286 ing233))) -(recipe r286 (key (sx286 ing262))) -(recipe r286 (key (sy286 ing234))) -(recipe r286 (key (sx286 ing263))) -(recipe r286 (key (sy286 ing235))) -(recipe r286 (key (sx286 ing264))) -(recipe r286 (key (sy286 ing236))) -(recipe r286 (key (sx286 ing265))) -(recipe r286 (key (sy286 ing237))) -(recipe r286 (key (sx286 ing266))) -(recipe r286 (key (sy286 ing238))) -(recipe r286 (key (sx286 ing267))) -(recipe r286 (key (sy286 ing239))) -(recipe r286 (key (sx286 ing268))) -(recipe r286 (key (sy286 ing240))) -(recipe r286 (key (sx286 ing269))) -(recipe r286 (key (sy286 ing241))) -(recipe r287 (numIngredients 2)) -(recipe r287 (result (id item287))) -(recipe r287 (pattern 0 sx287)) -(recipe r287 (pattern 1 sy287)) -(recipe r287 (key (sx287 ing261))) -(recipe r287 (key (sy287 ing235))) -(recipe r287 (key (sx287 ing262))) -(recipe r287 (key (sy287 ing236))) -(recipe r287 (key (sx287 ing263))) -(recipe r287 (key (sy287 ing237))) -(recipe r287 (key (sx287 ing264))) -(recipe r287 (key (sy287 ing238))) -(recipe r287 (key (sx287 ing265))) -(recipe r287 (key (sy287 ing239))) -(recipe r287 (key (sx287 ing266))) -(recipe r287 (key (sy287 ing240))) -(recipe r287 (key (sx287 ing267))) -(recipe r287 (key (sy287 ing241))) -(recipe r287 (key (sx287 ing268))) -(recipe r287 (key (sy287 ing242))) -(recipe r287 (key (sx287 ing269))) -(recipe r287 (key (sy287 ing243))) -(recipe r287 (key (sx287 ing270))) -(recipe r287 (key (sy287 ing244))) -(recipe r287 (key (sx287 ing271))) -(recipe r287 (key (sy287 ing245))) -(recipe r287 (key (sx287 ing272))) -(recipe r287 (key (sy287 ing246))) -(recipe r288 (numIngredients 2)) -(recipe r288 (result (id item288))) -(recipe r288 (pattern 0 sx288)) -(recipe r288 (pattern 1 sy288)) -(recipe r288 (key (sx288 ing264))) -(recipe r288 (key (sy288 ing240))) -(recipe r288 (key (sx288 ing265))) -(recipe r288 (key (sy288 ing241))) -(recipe r288 (key (sx288 ing266))) -(recipe r288 (key (sy288 ing242))) -(recipe r288 (key (sx288 ing267))) -(recipe r288 (key (sy288 ing243))) -(recipe r288 (key (sx288 ing268))) -(recipe r288 (key (sy288 ing244))) -(recipe r288 (key (sx288 ing269))) -(recipe r288 (key (sy288 ing245))) -(recipe r288 (key (sx288 ing270))) -(recipe r288 (key (sy288 ing246))) -(recipe r288 (key (sx288 ing271))) -(recipe r288 (key (sy288 ing247))) -(recipe r288 (key (sx288 ing272))) -(recipe r288 (key (sy288 ing248))) -(recipe r288 (key (sx288 ing273))) -(recipe r288 (key (sy288 ing249))) -(recipe r288 (key (sx288 ing274))) -(recipe r288 (key (sy288 ing250))) -(recipe r288 (key (sx288 ing275))) -(recipe r288 (key (sy288 ing251))) -(recipe r289 (numIngredients 2)) -(recipe r289 (result (id item289))) -(recipe r289 (pattern 0 sx289)) -(recipe r289 (pattern 1 sy289)) -(recipe r289 (key (sx289 ing267))) -(recipe r289 (key (sy289 ing245))) -(recipe r289 (key (sx289 ing268))) -(recipe r289 (key (sy289 ing246))) -(recipe r289 (key (sx289 ing269))) -(recipe r289 (key (sy289 ing247))) -(recipe r289 (key (sx289 ing270))) -(recipe r289 (key (sy289 ing248))) -(recipe r289 (key (sx289 ing271))) -(recipe r289 (key (sy289 ing249))) -(recipe r289 (key (sx289 ing272))) -(recipe r289 (key (sy289 ing250))) -(recipe r289 (key (sx289 ing273))) -(recipe r289 (key (sy289 ing251))) -(recipe r289 (key (sx289 ing274))) -(recipe r289 (key (sy289 ing252))) -(recipe r289 (key (sx289 ing275))) -(recipe r289 (key (sy289 ing253))) -(recipe r289 (key (sx289 ing276))) -(recipe r289 (key (sy289 ing254))) -(recipe r289 (key (sx289 ing277))) -(recipe r289 (key (sy289 ing255))) -(recipe r289 (key (sx289 ing278))) -(recipe r289 (key (sy289 ing256))) -(recipe r290 (numIngredients 2)) -(recipe r290 (result (id item290))) -(recipe r290 (pattern 0 sx290)) -(recipe r290 (pattern 1 sy290)) -(recipe r290 (key (sx290 ing270))) -(recipe r290 (key (sy290 ing250))) -(recipe r290 (key (sx290 ing271))) -(recipe r290 (key (sy290 ing251))) -(recipe r290 (key (sx290 ing272))) -(recipe r290 (key (sy290 ing252))) -(recipe r290 (key (sx290 ing273))) -(recipe r290 (key (sy290 ing253))) -(recipe r290 (key (sx290 ing274))) -(recipe r290 (key (sy290 ing254))) -(recipe r290 (key (sx290 ing275))) -(recipe r290 (key (sy290 ing255))) -(recipe r290 (key (sx290 ing276))) -(recipe r290 (key (sy290 ing256))) -(recipe r290 (key (sx290 ing277))) -(recipe r290 (key (sy290 ing257))) -(recipe r290 (key (sx290 ing278))) -(recipe r290 (key (sy290 ing258))) -(recipe r290 (key (sx290 ing279))) -(recipe r290 (key (sy290 ing259))) -(recipe r290 (key (sx290 ing280))) -(recipe r290 (key (sy290 ing260))) -(recipe r290 (key (sx290 ing281))) -(recipe r290 (key (sy290 ing261))) -(recipe r291 (numIngredients 2)) -(recipe r291 (result (id item291))) -(recipe r291 (pattern 0 sx291)) -(recipe r291 (pattern 1 sy291)) -(recipe r291 (key (sx291 ing273))) -(recipe r291 (key (sy291 ing255))) -(recipe r291 (key (sx291 ing274))) -(recipe r291 (key (sy291 ing256))) -(recipe r291 (key (sx291 ing275))) -(recipe r291 (key (sy291 ing257))) -(recipe r291 (key (sx291 ing276))) -(recipe r291 (key (sy291 ing258))) -(recipe r291 (key (sx291 ing277))) -(recipe r291 (key (sy291 ing259))) -(recipe r291 (key (sx291 ing278))) -(recipe r291 (key (sy291 ing260))) -(recipe r291 (key (sx291 ing279))) -(recipe r291 (key (sy291 ing261))) -(recipe r291 (key (sx291 ing280))) -(recipe r291 (key (sy291 ing262))) -(recipe r291 (key (sx291 ing281))) -(recipe r291 (key (sy291 ing263))) -(recipe r291 (key (sx291 ing282))) -(recipe r291 (key (sy291 ing264))) -(recipe r291 (key (sx291 ing283))) -(recipe r291 (key (sy291 ing265))) -(recipe r291 (key (sx291 ing284))) -(recipe r291 (key (sy291 ing266))) -(recipe r292 (numIngredients 2)) -(recipe r292 (result (id item292))) -(recipe r292 (pattern 0 sx292)) -(recipe r292 (pattern 1 sy292)) -(recipe r292 (key (sx292 ing276))) -(recipe r292 (key (sy292 ing260))) -(recipe r292 (key (sx292 ing277))) -(recipe r292 (key (sy292 ing261))) -(recipe r292 (key (sx292 ing278))) -(recipe r292 (key (sy292 ing262))) -(recipe r292 (key (sx292 ing279))) -(recipe r292 (key (sy292 ing263))) -(recipe r292 (key (sx292 ing280))) -(recipe r292 (key (sy292 ing264))) -(recipe r292 (key (sx292 ing281))) -(recipe r292 (key (sy292 ing265))) -(recipe r292 (key (sx292 ing282))) -(recipe r292 (key (sy292 ing266))) -(recipe r292 (key (sx292 ing283))) -(recipe r292 (key (sy292 ing267))) -(recipe r292 (key (sx292 ing284))) -(recipe r292 (key (sy292 ing268))) -(recipe r292 (key (sx292 ing285))) -(recipe r292 (key (sy292 ing269))) -(recipe r292 (key (sx292 ing286))) -(recipe r292 (key (sy292 ing270))) -(recipe r292 (key (sx292 ing287))) -(recipe r292 (key (sy292 ing271))) -(recipe r293 (numIngredients 2)) -(recipe r293 (result (id item293))) -(recipe r293 (pattern 0 sx293)) -(recipe r293 (pattern 1 sy293)) -(recipe r293 (key (sx293 ing279))) -(recipe r293 (key (sy293 ing265))) -(recipe r293 (key (sx293 ing280))) -(recipe r293 (key (sy293 ing266))) -(recipe r293 (key (sx293 ing281))) -(recipe r293 (key (sy293 ing267))) -(recipe r293 (key (sx293 ing282))) -(recipe r293 (key (sy293 ing268))) -(recipe r293 (key (sx293 ing283))) -(recipe r293 (key (sy293 ing269))) -(recipe r293 (key (sx293 ing284))) -(recipe r293 (key (sy293 ing270))) -(recipe r293 (key (sx293 ing285))) -(recipe r293 (key (sy293 ing271))) -(recipe r293 (key (sx293 ing286))) -(recipe r293 (key (sy293 ing272))) -(recipe r293 (key (sx293 ing287))) -(recipe r293 (key (sy293 ing273))) -(recipe r293 (key (sx293 ing288))) -(recipe r293 (key (sy293 ing274))) -(recipe r293 (key (sx293 ing289))) -(recipe r293 (key (sy293 ing275))) -(recipe r293 (key (sx293 ing290))) -(recipe r293 (key (sy293 ing276))) -(recipe r294 (numIngredients 2)) -(recipe r294 (result (id item294))) -(recipe r294 (pattern 0 sx294)) -(recipe r294 (pattern 1 sy294)) -(recipe r294 (key (sx294 ing282))) -(recipe r294 (key (sy294 ing270))) -(recipe r294 (key (sx294 ing283))) -(recipe r294 (key (sy294 ing271))) -(recipe r294 (key (sx294 ing284))) -(recipe r294 (key (sy294 ing272))) -(recipe r294 (key (sx294 ing285))) -(recipe r294 (key (sy294 ing273))) -(recipe r294 (key (sx294 ing286))) -(recipe r294 (key (sy294 ing274))) -(recipe r294 (key (sx294 ing287))) -(recipe r294 (key (sy294 ing275))) -(recipe r294 (key (sx294 ing288))) -(recipe r294 (key (sy294 ing276))) -(recipe r294 (key (sx294 ing289))) -(recipe r294 (key (sy294 ing277))) -(recipe r294 (key (sx294 ing290))) -(recipe r294 (key (sy294 ing278))) -(recipe r294 (key (sx294 ing291))) -(recipe r294 (key (sy294 ing279))) -(recipe r294 (key (sx294 ing292))) -(recipe r294 (key (sy294 ing280))) -(recipe r294 (key (sx294 ing293))) -(recipe r294 (key (sy294 ing281))) -(recipe r295 (numIngredients 2)) -(recipe r295 (result (id item295))) -(recipe r295 (pattern 0 sx295)) -(recipe r295 (pattern 1 sy295)) -(recipe r295 (key (sx295 ing285))) -(recipe r295 (key (sy295 ing275))) -(recipe r295 (key (sx295 ing286))) -(recipe r295 (key (sy295 ing276))) -(recipe r295 (key (sx295 ing287))) -(recipe r295 (key (sy295 ing277))) -(recipe r295 (key (sx295 ing288))) -(recipe r295 (key (sy295 ing278))) -(recipe r295 (key (sx295 ing289))) -(recipe r295 (key (sy295 ing279))) -(recipe r295 (key (sx295 ing290))) -(recipe r295 (key (sy295 ing280))) -(recipe r295 (key (sx295 ing291))) -(recipe r295 (key (sy295 ing281))) -(recipe r295 (key (sx295 ing292))) -(recipe r295 (key (sy295 ing282))) -(recipe r295 (key (sx295 ing293))) -(recipe r295 (key (sy295 ing283))) -(recipe r295 (key (sx295 ing294))) -(recipe r295 (key (sy295 ing284))) -(recipe r295 (key (sx295 ing295))) -(recipe r295 (key (sy295 ing285))) -(recipe r295 (key (sx295 ing296))) -(recipe r295 (key (sy295 ing286))) -(recipe r296 (numIngredients 2)) -(recipe r296 (result (id item296))) -(recipe r296 (pattern 0 sx296)) -(recipe r296 (pattern 1 sy296)) -(recipe r296 (key (sx296 ing288))) -(recipe r296 (key (sy296 ing280))) -(recipe r296 (key (sx296 ing289))) -(recipe r296 (key (sy296 ing281))) -(recipe r296 (key (sx296 ing290))) -(recipe r296 (key (sy296 ing282))) -(recipe r296 (key (sx296 ing291))) -(recipe r296 (key (sy296 ing283))) -(recipe r296 (key (sx296 ing292))) -(recipe r296 (key (sy296 ing284))) -(recipe r296 (key (sx296 ing293))) -(recipe r296 (key (sy296 ing285))) -(recipe r296 (key (sx296 ing294))) -(recipe r296 (key (sy296 ing286))) -(recipe r296 (key (sx296 ing295))) -(recipe r296 (key (sy296 ing287))) -(recipe r296 (key (sx296 ing296))) -(recipe r296 (key (sy296 ing288))) -(recipe r296 (key (sx296 ing297))) -(recipe r296 (key (sy296 ing289))) -(recipe r296 (key (sx296 ing298))) -(recipe r296 (key (sy296 ing290))) -(recipe r296 (key (sx296 ing299))) -(recipe r296 (key (sy296 ing291))) -(recipe r297 (numIngredients 2)) -(recipe r297 (result (id item297))) -(recipe r297 (pattern 0 sx297)) -(recipe r297 (pattern 1 sy297)) -(recipe r297 (key (sx297 ing291))) -(recipe r297 (key (sy297 ing285))) -(recipe r297 (key (sx297 ing292))) -(recipe r297 (key (sy297 ing286))) -(recipe r297 (key (sx297 ing293))) -(recipe r297 (key (sy297 ing287))) -(recipe r297 (key (sx297 ing294))) -(recipe r297 (key (sy297 ing288))) -(recipe r297 (key (sx297 ing295))) -(recipe r297 (key (sy297 ing289))) -(recipe r297 (key (sx297 ing296))) -(recipe r297 (key (sy297 ing290))) -(recipe r297 (key (sx297 ing297))) -(recipe r297 (key (sy297 ing291))) -(recipe r297 (key (sx297 ing298))) -(recipe r297 (key (sy297 ing292))) -(recipe r297 (key (sx297 ing299))) -(recipe r297 (key (sy297 ing293))) -(recipe r297 (key (sx297 ing300))) -(recipe r297 (key (sy297 ing294))) -(recipe r297 (key (sx297 ing301))) -(recipe r297 (key (sy297 ing295))) -(recipe r297 (key (sx297 ing302))) -(recipe r297 (key (sy297 ing296))) -(recipe r298 (numIngredients 2)) -(recipe r298 (result (id item298))) -(recipe r298 (pattern 0 sx298)) -(recipe r298 (pattern 1 sy298)) -(recipe r298 (key (sx298 ing294))) -(recipe r298 (key (sy298 ing290))) -(recipe r298 (key (sx298 ing295))) -(recipe r298 (key (sy298 ing291))) -(recipe r298 (key (sx298 ing296))) -(recipe r298 (key (sy298 ing292))) -(recipe r298 (key (sx298 ing297))) -(recipe r298 (key (sy298 ing293))) -(recipe r298 (key (sx298 ing298))) -(recipe r298 (key (sy298 ing294))) -(recipe r298 (key (sx298 ing299))) -(recipe r298 (key (sy298 ing295))) -(recipe r298 (key (sx298 ing300))) -(recipe r298 (key (sy298 ing296))) -(recipe r298 (key (sx298 ing301))) -(recipe r298 (key (sy298 ing297))) -(recipe r298 (key (sx298 ing302))) -(recipe r298 (key (sy298 ing298))) -(recipe r298 (key (sx298 ing303))) -(recipe r298 (key (sy298 ing299))) -(recipe r298 (key (sx298 ing304))) -(recipe r298 (key (sy298 ing300))) -(recipe r298 (key (sx298 ing305))) -(recipe r298 (key (sy298 ing301))) -(recipe r299 (numIngredients 2)) -(recipe r299 (result (id item299))) -(recipe r299 (pattern 0 sx299)) -(recipe r299 (pattern 1 sy299)) -(recipe r299 (key (sx299 ing297))) -(recipe r299 (key (sy299 ing295))) -(recipe r299 (key (sx299 ing298))) -(recipe r299 (key (sy299 ing296))) -(recipe r299 (key (sx299 ing299))) -(recipe r299 (key (sy299 ing297))) -(recipe r299 (key (sx299 ing300))) -(recipe r299 (key (sy299 ing298))) -(recipe r299 (key (sx299 ing301))) -(recipe r299 (key (sy299 ing299))) -(recipe r299 (key (sx299 ing302))) -(recipe r299 (key (sy299 ing300))) -(recipe r299 (key (sx299 ing303))) -(recipe r299 (key (sy299 ing301))) -(recipe r299 (key (sx299 ing304))) -(recipe r299 (key (sy299 ing302))) -(recipe r299 (key (sx299 ing305))) -(recipe r299 (key (sy299 ing303))) -(recipe r299 (key (sx299 ing306))) -(recipe r299 (key (sy299 ing304))) -(recipe r299 (key (sx299 ing307))) -(recipe r299 (key (sy299 ing305))) -(recipe r299 (key (sx299 ing308))) -(recipe r299 (key (sy299 ing306))) -(recipe r300 (numIngredients 2)) -(recipe r300 (result (id item300))) -(recipe r300 (pattern 0 sx300)) -(recipe r300 (pattern 1 sy300)) -(recipe r300 (key (sx300 ing300))) -(recipe r300 (key (sy300 ing300))) -(recipe r300 (key (sx300 ing301))) -(recipe r300 (key (sy300 ing301))) -(recipe r300 (key (sx300 ing302))) -(recipe r300 (key (sy300 ing302))) -(recipe r300 (key (sx300 ing303))) -(recipe r300 (key (sy300 ing303))) -(recipe r300 (key (sx300 ing304))) -(recipe r300 (key (sy300 ing304))) -(recipe r300 (key (sx300 ing305))) -(recipe r300 (key (sy300 ing305))) -(recipe r300 (key (sx300 ing306))) -(recipe r300 (key (sy300 ing306))) -(recipe r300 (key (sx300 ing307))) -(recipe r300 (key (sy300 ing307))) -(recipe r300 (key (sx300 ing308))) -(recipe r300 (key (sy300 ing308))) -(recipe r300 (key (sx300 ing309))) -(recipe r300 (key (sy300 ing309))) -(recipe r300 (key (sx300 ing310))) -(recipe r300 (key (sy300 ing310))) -(recipe r300 (key (sx300 ing311))) -(recipe r300 (key (sy300 ing311))) -(recipe r301 (numIngredients 2)) -(recipe r301 (result (id item301))) -(recipe r301 (pattern 0 sx301)) -(recipe r301 (pattern 1 sy301)) -(recipe r301 (key (sx301 ing303))) -(recipe r301 (key (sy301 ing305))) -(recipe r301 (key (sx301 ing304))) -(recipe r301 (key (sy301 ing306))) -(recipe r301 (key (sx301 ing305))) -(recipe r301 (key (sy301 ing307))) -(recipe r301 (key (sx301 ing306))) -(recipe r301 (key (sy301 ing308))) -(recipe r301 (key (sx301 ing307))) -(recipe r301 (key (sy301 ing309))) -(recipe r301 (key (sx301 ing308))) -(recipe r301 (key (sy301 ing310))) -(recipe r301 (key (sx301 ing309))) -(recipe r301 (key (sy301 ing311))) -(recipe r301 (key (sx301 ing310))) -(recipe r301 (key (sy301 ing312))) -(recipe r301 (key (sx301 ing311))) -(recipe r301 (key (sy301 ing313))) -(recipe r301 (key (sx301 ing312))) -(recipe r301 (key (sy301 ing314))) -(recipe r301 (key (sx301 ing313))) -(recipe r301 (key (sy301 ing315))) -(recipe r301 (key (sx301 ing314))) -(recipe r301 (key (sy301 ing316))) -(recipe r302 (numIngredients 2)) -(recipe r302 (result (id item302))) -(recipe r302 (pattern 0 sx302)) -(recipe r302 (pattern 1 sy302)) -(recipe r302 (key (sx302 ing306))) -(recipe r302 (key (sy302 ing310))) -(recipe r302 (key (sx302 ing307))) -(recipe r302 (key (sy302 ing311))) -(recipe r302 (key (sx302 ing308))) -(recipe r302 (key (sy302 ing312))) -(recipe r302 (key (sx302 ing309))) -(recipe r302 (key (sy302 ing313))) -(recipe r302 (key (sx302 ing310))) -(recipe r302 (key (sy302 ing314))) -(recipe r302 (key (sx302 ing311))) -(recipe r302 (key (sy302 ing315))) -(recipe r302 (key (sx302 ing312))) -(recipe r302 (key (sy302 ing316))) -(recipe r302 (key (sx302 ing313))) -(recipe r302 (key (sy302 ing317))) -(recipe r302 (key (sx302 ing314))) -(recipe r302 (key (sy302 ing318))) -(recipe r302 (key (sx302 ing315))) -(recipe r302 (key (sy302 ing319))) -(recipe r302 (key (sx302 ing316))) -(recipe r302 (key (sy302 ing320))) -(recipe r302 (key (sx302 ing317))) -(recipe r302 (key (sy302 ing321))) -(recipe r303 (numIngredients 2)) -(recipe r303 (result (id item303))) -(recipe r303 (pattern 0 sx303)) -(recipe r303 (pattern 1 sy303)) -(recipe r303 (key (sx303 ing309))) -(recipe r303 (key (sy303 ing315))) -(recipe r303 (key (sx303 ing310))) -(recipe r303 (key (sy303 ing316))) -(recipe r303 (key (sx303 ing311))) -(recipe r303 (key (sy303 ing317))) -(recipe r303 (key (sx303 ing312))) -(recipe r303 (key (sy303 ing318))) -(recipe r303 (key (sx303 ing313))) -(recipe r303 (key (sy303 ing319))) -(recipe r303 (key (sx303 ing314))) -(recipe r303 (key (sy303 ing320))) -(recipe r303 (key (sx303 ing315))) -(recipe r303 (key (sy303 ing321))) -(recipe r303 (key (sx303 ing316))) -(recipe r303 (key (sy303 ing322))) -(recipe r303 (key (sx303 ing317))) -(recipe r303 (key (sy303 ing323))) -(recipe r303 (key (sx303 ing318))) -(recipe r303 (key (sy303 ing324))) -(recipe r303 (key (sx303 ing319))) -(recipe r303 (key (sy303 ing325))) -(recipe r303 (key (sx303 ing320))) -(recipe r303 (key (sy303 ing326))) -(recipe r304 (numIngredients 2)) -(recipe r304 (result (id item304))) -(recipe r304 (pattern 0 sx304)) -(recipe r304 (pattern 1 sy304)) -(recipe r304 (key (sx304 ing312))) -(recipe r304 (key (sy304 ing320))) -(recipe r304 (key (sx304 ing313))) -(recipe r304 (key (sy304 ing321))) -(recipe r304 (key (sx304 ing314))) -(recipe r304 (key (sy304 ing322))) -(recipe r304 (key (sx304 ing315))) -(recipe r304 (key (sy304 ing323))) -(recipe r304 (key (sx304 ing316))) -(recipe r304 (key (sy304 ing324))) -(recipe r304 (key (sx304 ing317))) -(recipe r304 (key (sy304 ing325))) -(recipe r304 (key (sx304 ing318))) -(recipe r304 (key (sy304 ing326))) -(recipe r304 (key (sx304 ing319))) -(recipe r304 (key (sy304 ing327))) -(recipe r304 (key (sx304 ing320))) -(recipe r304 (key (sy304 ing328))) -(recipe r304 (key (sx304 ing321))) -(recipe r304 (key (sy304 ing329))) -(recipe r304 (key (sx304 ing322))) -(recipe r304 (key (sy304 ing330))) -(recipe r304 (key (sx304 ing323))) -(recipe r304 (key (sy304 ing331))) -(recipe r305 (numIngredients 2)) -(recipe r305 (result (id item305))) -(recipe r305 (pattern 0 sx305)) -(recipe r305 (pattern 1 sy305)) -(recipe r305 (key (sx305 ing315))) -(recipe r305 (key (sy305 ing325))) -(recipe r305 (key (sx305 ing316))) -(recipe r305 (key (sy305 ing326))) -(recipe r305 (key (sx305 ing317))) -(recipe r305 (key (sy305 ing327))) -(recipe r305 (key (sx305 ing318))) -(recipe r305 (key (sy305 ing328))) -(recipe r305 (key (sx305 ing319))) -(recipe r305 (key (sy305 ing329))) -(recipe r305 (key (sx305 ing320))) -(recipe r305 (key (sy305 ing330))) -(recipe r305 (key (sx305 ing321))) -(recipe r305 (key (sy305 ing331))) -(recipe r305 (key (sx305 ing322))) -(recipe r305 (key (sy305 ing332))) -(recipe r305 (key (sx305 ing323))) -(recipe r305 (key (sy305 ing333))) -(recipe r305 (key (sx305 ing324))) -(recipe r305 (key (sy305 ing334))) -(recipe r305 (key (sx305 ing325))) -(recipe r305 (key (sy305 ing335))) -(recipe r305 (key (sx305 ing326))) -(recipe r305 (key (sy305 ing336))) -(recipe r306 (numIngredients 2)) -(recipe r306 (result (id item306))) -(recipe r306 (pattern 0 sx306)) -(recipe r306 (pattern 1 sy306)) -(recipe r306 (key (sx306 ing318))) -(recipe r306 (key (sy306 ing330))) -(recipe r306 (key (sx306 ing319))) -(recipe r306 (key (sy306 ing331))) -(recipe r306 (key (sx306 ing320))) -(recipe r306 (key (sy306 ing332))) -(recipe r306 (key (sx306 ing321))) -(recipe r306 (key (sy306 ing333))) -(recipe r306 (key (sx306 ing322))) -(recipe r306 (key (sy306 ing334))) -(recipe r306 (key (sx306 ing323))) -(recipe r306 (key (sy306 ing335))) -(recipe r306 (key (sx306 ing324))) -(recipe r306 (key (sy306 ing336))) -(recipe r306 (key (sx306 ing325))) -(recipe r306 (key (sy306 ing337))) -(recipe r306 (key (sx306 ing326))) -(recipe r306 (key (sy306 ing338))) -(recipe r306 (key (sx306 ing327))) -(recipe r306 (key (sy306 ing339))) -(recipe r306 (key (sx306 ing328))) -(recipe r306 (key (sy306 ing340))) -(recipe r306 (key (sx306 ing329))) -(recipe r306 (key (sy306 ing341))) -(recipe r307 (numIngredients 2)) -(recipe r307 (result (id item307))) -(recipe r307 (pattern 0 sx307)) -(recipe r307 (pattern 1 sy307)) -(recipe r307 (key (sx307 ing321))) -(recipe r307 (key (sy307 ing335))) -(recipe r307 (key (sx307 ing322))) -(recipe r307 (key (sy307 ing336))) -(recipe r307 (key (sx307 ing323))) -(recipe r307 (key (sy307 ing337))) -(recipe r307 (key (sx307 ing324))) -(recipe r307 (key (sy307 ing338))) -(recipe r307 (key (sx307 ing325))) -(recipe r307 (key (sy307 ing339))) -(recipe r307 (key (sx307 ing326))) -(recipe r307 (key (sy307 ing340))) -(recipe r307 (key (sx307 ing327))) -(recipe r307 (key (sy307 ing341))) -(recipe r307 (key (sx307 ing328))) -(recipe r307 (key (sy307 ing342))) -(recipe r307 (key (sx307 ing329))) -(recipe r307 (key (sy307 ing343))) -(recipe r307 (key (sx307 ing330))) -(recipe r307 (key (sy307 ing344))) -(recipe r307 (key (sx307 ing331))) -(recipe r307 (key (sy307 ing345))) -(recipe r307 (key (sx307 ing332))) -(recipe r307 (key (sy307 ing346))) -(recipe r308 (numIngredients 2)) -(recipe r308 (result (id item308))) -(recipe r308 (pattern 0 sx308)) -(recipe r308 (pattern 1 sy308)) -(recipe r308 (key (sx308 ing324))) -(recipe r308 (key (sy308 ing340))) -(recipe r308 (key (sx308 ing325))) -(recipe r308 (key (sy308 ing341))) -(recipe r308 (key (sx308 ing326))) -(recipe r308 (key (sy308 ing342))) -(recipe r308 (key (sx308 ing327))) -(recipe r308 (key (sy308 ing343))) -(recipe r308 (key (sx308 ing328))) -(recipe r308 (key (sy308 ing344))) -(recipe r308 (key (sx308 ing329))) -(recipe r308 (key (sy308 ing345))) -(recipe r308 (key (sx308 ing330))) -(recipe r308 (key (sy308 ing346))) -(recipe r308 (key (sx308 ing331))) -(recipe r308 (key (sy308 ing347))) -(recipe r308 (key (sx308 ing332))) -(recipe r308 (key (sy308 ing348))) -(recipe r308 (key (sx308 ing333))) -(recipe r308 (key (sy308 ing349))) -(recipe r308 (key (sx308 ing334))) -(recipe r308 (key (sy308 ing350))) -(recipe r308 (key (sx308 ing335))) -(recipe r308 (key (sy308 ing351))) -(recipe r309 (numIngredients 2)) -(recipe r309 (result (id item309))) -(recipe r309 (pattern 0 sx309)) -(recipe r309 (pattern 1 sy309)) -(recipe r309 (key (sx309 ing327))) -(recipe r309 (key (sy309 ing345))) -(recipe r309 (key (sx309 ing328))) -(recipe r309 (key (sy309 ing346))) -(recipe r309 (key (sx309 ing329))) -(recipe r309 (key (sy309 ing347))) -(recipe r309 (key (sx309 ing330))) -(recipe r309 (key (sy309 ing348))) -(recipe r309 (key (sx309 ing331))) -(recipe r309 (key (sy309 ing349))) -(recipe r309 (key (sx309 ing332))) -(recipe r309 (key (sy309 ing350))) -(recipe r309 (key (sx309 ing333))) -(recipe r309 (key (sy309 ing351))) -(recipe r309 (key (sx309 ing334))) -(recipe r309 (key (sy309 ing352))) -(recipe r309 (key (sx309 ing335))) -(recipe r309 (key (sy309 ing353))) -(recipe r309 (key (sx309 ing336))) -(recipe r309 (key (sy309 ing354))) -(recipe r309 (key (sx309 ing337))) -(recipe r309 (key (sy309 ing355))) -(recipe r309 (key (sx309 ing338))) -(recipe r309 (key (sy309 ing356))) -(recipe r310 (numIngredients 2)) -(recipe r310 (result (id item310))) -(recipe r310 (pattern 0 sx310)) -(recipe r310 (pattern 1 sy310)) -(recipe r310 (key (sx310 ing330))) -(recipe r310 (key (sy310 ing350))) -(recipe r310 (key (sx310 ing331))) -(recipe r310 (key (sy310 ing351))) -(recipe r310 (key (sx310 ing332))) -(recipe r310 (key (sy310 ing352))) -(recipe r310 (key (sx310 ing333))) -(recipe r310 (key (sy310 ing353))) -(recipe r310 (key (sx310 ing334))) -(recipe r310 (key (sy310 ing354))) -(recipe r310 (key (sx310 ing335))) -(recipe r310 (key (sy310 ing355))) -(recipe r310 (key (sx310 ing336))) -(recipe r310 (key (sy310 ing356))) -(recipe r310 (key (sx310 ing337))) -(recipe r310 (key (sy310 ing357))) -(recipe r310 (key (sx310 ing338))) -(recipe r310 (key (sy310 ing358))) -(recipe r310 (key (sx310 ing339))) -(recipe r310 (key (sy310 ing359))) -(recipe r310 (key (sx310 ing340))) -(recipe r310 (key (sy310 ing360))) -(recipe r310 (key (sx310 ing341))) -(recipe r310 (key (sy310 ing361))) -(recipe r311 (numIngredients 2)) -(recipe r311 (result (id item311))) -(recipe r311 (pattern 0 sx311)) -(recipe r311 (pattern 1 sy311)) -(recipe r311 (key (sx311 ing333))) -(recipe r311 (key (sy311 ing355))) -(recipe r311 (key (sx311 ing334))) -(recipe r311 (key (sy311 ing356))) -(recipe r311 (key (sx311 ing335))) -(recipe r311 (key (sy311 ing357))) -(recipe r311 (key (sx311 ing336))) -(recipe r311 (key (sy311 ing358))) -(recipe r311 (key (sx311 ing337))) -(recipe r311 (key (sy311 ing359))) -(recipe r311 (key (sx311 ing338))) -(recipe r311 (key (sy311 ing360))) -(recipe r311 (key (sx311 ing339))) -(recipe r311 (key (sy311 ing361))) -(recipe r311 (key (sx311 ing340))) -(recipe r311 (key (sy311 ing362))) -(recipe r311 (key (sx311 ing341))) -(recipe r311 (key (sy311 ing363))) -(recipe r311 (key (sx311 ing342))) -(recipe r311 (key (sy311 ing364))) -(recipe r311 (key (sx311 ing343))) -(recipe r311 (key (sy311 ing365))) -(recipe r311 (key (sx311 ing344))) -(recipe r311 (key (sy311 ing366))) -(recipe r312 (numIngredients 2)) -(recipe r312 (result (id item312))) -(recipe r312 (pattern 0 sx312)) -(recipe r312 (pattern 1 sy312)) -(recipe r312 (key (sx312 ing336))) -(recipe r312 (key (sy312 ing360))) -(recipe r312 (key (sx312 ing337))) -(recipe r312 (key (sy312 ing361))) -(recipe r312 (key (sx312 ing338))) -(recipe r312 (key (sy312 ing362))) -(recipe r312 (key (sx312 ing339))) -(recipe r312 (key (sy312 ing363))) -(recipe r312 (key (sx312 ing340))) -(recipe r312 (key (sy312 ing364))) -(recipe r312 (key (sx312 ing341))) -(recipe r312 (key (sy312 ing365))) -(recipe r312 (key (sx312 ing342))) -(recipe r312 (key (sy312 ing366))) -(recipe r312 (key (sx312 ing343))) -(recipe r312 (key (sy312 ing367))) -(recipe r312 (key (sx312 ing344))) -(recipe r312 (key (sy312 ing368))) -(recipe r312 (key (sx312 ing345))) -(recipe r312 (key (sy312 ing369))) -(recipe r312 (key (sx312 ing346))) -(recipe r312 (key (sy312 ing370))) -(recipe r312 (key (sx312 ing347))) -(recipe r312 (key (sy312 ing371))) -(recipe r313 (numIngredients 2)) -(recipe r313 (result (id item313))) -(recipe r313 (pattern 0 sx313)) -(recipe r313 (pattern 1 sy313)) -(recipe r313 (key (sx313 ing339))) -(recipe r313 (key (sy313 ing365))) -(recipe r313 (key (sx313 ing340))) -(recipe r313 (key (sy313 ing366))) -(recipe r313 (key (sx313 ing341))) -(recipe r313 (key (sy313 ing367))) -(recipe r313 (key (sx313 ing342))) -(recipe r313 (key (sy313 ing368))) -(recipe r313 (key (sx313 ing343))) -(recipe r313 (key (sy313 ing369))) -(recipe r313 (key (sx313 ing344))) -(recipe r313 (key (sy313 ing370))) -(recipe r313 (key (sx313 ing345))) -(recipe r313 (key (sy313 ing371))) -(recipe r313 (key (sx313 ing346))) -(recipe r313 (key (sy313 ing372))) -(recipe r313 (key (sx313 ing347))) -(recipe r313 (key (sy313 ing373))) -(recipe r313 (key (sx313 ing348))) -(recipe r313 (key (sy313 ing374))) -(recipe r313 (key (sx313 ing349))) -(recipe r313 (key (sy313 ing375))) -(recipe r313 (key (sx313 ing350))) -(recipe r313 (key (sy313 ing376))) -(recipe r314 (numIngredients 2)) -(recipe r314 (result (id item314))) -(recipe r314 (pattern 0 sx314)) -(recipe r314 (pattern 1 sy314)) -(recipe r314 (key (sx314 ing342))) -(recipe r314 (key (sy314 ing370))) -(recipe r314 (key (sx314 ing343))) -(recipe r314 (key (sy314 ing371))) -(recipe r314 (key (sx314 ing344))) -(recipe r314 (key (sy314 ing372))) -(recipe r314 (key (sx314 ing345))) -(recipe r314 (key (sy314 ing373))) -(recipe r314 (key (sx314 ing346))) -(recipe r314 (key (sy314 ing374))) -(recipe r314 (key (sx314 ing347))) -(recipe r314 (key (sy314 ing375))) -(recipe r314 (key (sx314 ing348))) -(recipe r314 (key (sy314 ing376))) -(recipe r314 (key (sx314 ing349))) -(recipe r314 (key (sy314 ing377))) -(recipe r314 (key (sx314 ing350))) -(recipe r314 (key (sy314 ing378))) -(recipe r314 (key (sx314 ing351))) -(recipe r314 (key (sy314 ing379))) -(recipe r314 (key (sx314 ing352))) -(recipe r314 (key (sy314 ing380))) -(recipe r314 (key (sx314 ing353))) -(recipe r314 (key (sy314 ing381))) -(recipe r315 (numIngredients 2)) -(recipe r315 (result (id item315))) -(recipe r315 (pattern 0 sx315)) -(recipe r315 (pattern 1 sy315)) -(recipe r315 (key (sx315 ing345))) -(recipe r315 (key (sy315 ing375))) -(recipe r315 (key (sx315 ing346))) -(recipe r315 (key (sy315 ing376))) -(recipe r315 (key (sx315 ing347))) -(recipe r315 (key (sy315 ing377))) -(recipe r315 (key (sx315 ing348))) -(recipe r315 (key (sy315 ing378))) -(recipe r315 (key (sx315 ing349))) -(recipe r315 (key (sy315 ing379))) -(recipe r315 (key (sx315 ing350))) -(recipe r315 (key (sy315 ing380))) -(recipe r315 (key (sx315 ing351))) -(recipe r315 (key (sy315 ing381))) -(recipe r315 (key (sx315 ing352))) -(recipe r315 (key (sy315 ing382))) -(recipe r315 (key (sx315 ing353))) -(recipe r315 (key (sy315 ing383))) -(recipe r315 (key (sx315 ing354))) -(recipe r315 (key (sy315 ing384))) -(recipe r315 (key (sx315 ing355))) -(recipe r315 (key (sy315 ing385))) -(recipe r315 (key (sx315 ing356))) -(recipe r315 (key (sy315 ing386))) -(recipe r316 (numIngredients 2)) -(recipe r316 (result (id item316))) -(recipe r316 (pattern 0 sx316)) -(recipe r316 (pattern 1 sy316)) -(recipe r316 (key (sx316 ing348))) -(recipe r316 (key (sy316 ing380))) -(recipe r316 (key (sx316 ing349))) -(recipe r316 (key (sy316 ing381))) -(recipe r316 (key (sx316 ing350))) -(recipe r316 (key (sy316 ing382))) -(recipe r316 (key (sx316 ing351))) -(recipe r316 (key (sy316 ing383))) -(recipe r316 (key (sx316 ing352))) -(recipe r316 (key (sy316 ing384))) -(recipe r316 (key (sx316 ing353))) -(recipe r316 (key (sy316 ing385))) -(recipe r316 (key (sx316 ing354))) -(recipe r316 (key (sy316 ing386))) -(recipe r316 (key (sx316 ing355))) -(recipe r316 (key (sy316 ing387))) -(recipe r316 (key (sx316 ing356))) -(recipe r316 (key (sy316 ing388))) -(recipe r316 (key (sx316 ing357))) -(recipe r316 (key (sy316 ing389))) -(recipe r316 (key (sx316 ing358))) -(recipe r316 (key (sy316 ing390))) -(recipe r316 (key (sx316 ing359))) -(recipe r316 (key (sy316 ing391))) -(recipe r317 (numIngredients 2)) -(recipe r317 (result (id item317))) -(recipe r317 (pattern 0 sx317)) -(recipe r317 (pattern 1 sy317)) -(recipe r317 (key (sx317 ing351))) -(recipe r317 (key (sy317 ing385))) -(recipe r317 (key (sx317 ing352))) -(recipe r317 (key (sy317 ing386))) -(recipe r317 (key (sx317 ing353))) -(recipe r317 (key (sy317 ing387))) -(recipe r317 (key (sx317 ing354))) -(recipe r317 (key (sy317 ing388))) -(recipe r317 (key (sx317 ing355))) -(recipe r317 (key (sy317 ing389))) -(recipe r317 (key (sx317 ing356))) -(recipe r317 (key (sy317 ing390))) -(recipe r317 (key (sx317 ing357))) -(recipe r317 (key (sy317 ing391))) -(recipe r317 (key (sx317 ing358))) -(recipe r317 (key (sy317 ing392))) -(recipe r317 (key (sx317 ing359))) -(recipe r317 (key (sy317 ing393))) -(recipe r317 (key (sx317 ing360))) -(recipe r317 (key (sy317 ing394))) -(recipe r317 (key (sx317 ing361))) -(recipe r317 (key (sy317 ing395))) -(recipe r317 (key (sx317 ing362))) -(recipe r317 (key (sy317 ing396))) -(recipe r318 (numIngredients 2)) -(recipe r318 (result (id item318))) -(recipe r318 (pattern 0 sx318)) -(recipe r318 (pattern 1 sy318)) -(recipe r318 (key (sx318 ing354))) -(recipe r318 (key (sy318 ing390))) -(recipe r318 (key (sx318 ing355))) -(recipe r318 (key (sy318 ing391))) -(recipe r318 (key (sx318 ing356))) -(recipe r318 (key (sy318 ing392))) -(recipe r318 (key (sx318 ing357))) -(recipe r318 (key (sy318 ing393))) -(recipe r318 (key (sx318 ing358))) -(recipe r318 (key (sy318 ing394))) -(recipe r318 (key (sx318 ing359))) -(recipe r318 (key (sy318 ing395))) -(recipe r318 (key (sx318 ing360))) -(recipe r318 (key (sy318 ing396))) -(recipe r318 (key (sx318 ing361))) -(recipe r318 (key (sy318 ing397))) -(recipe r318 (key (sx318 ing362))) -(recipe r318 (key (sy318 ing398))) -(recipe r318 (key (sx318 ing363))) -(recipe r318 (key (sy318 ing399))) -(recipe r318 (key (sx318 ing364))) -(recipe r318 (key (sy318 ing400))) -(recipe r318 (key (sx318 ing365))) -(recipe r318 (key (sy318 ing401))) -(recipe r319 (numIngredients 2)) -(recipe r319 (result (id item319))) -(recipe r319 (pattern 0 sx319)) -(recipe r319 (pattern 1 sy319)) -(recipe r319 (key (sx319 ing357))) -(recipe r319 (key (sy319 ing395))) -(recipe r319 (key (sx319 ing358))) -(recipe r319 (key (sy319 ing396))) -(recipe r319 (key (sx319 ing359))) -(recipe r319 (key (sy319 ing397))) -(recipe r319 (key (sx319 ing360))) -(recipe r319 (key (sy319 ing398))) -(recipe r319 (key (sx319 ing361))) -(recipe r319 (key (sy319 ing399))) -(recipe r319 (key (sx319 ing362))) -(recipe r319 (key (sy319 ing400))) -(recipe r319 (key (sx319 ing363))) -(recipe r319 (key (sy319 ing401))) -(recipe r319 (key (sx319 ing364))) -(recipe r319 (key (sy319 ing402))) -(recipe r319 (key (sx319 ing365))) -(recipe r319 (key (sy319 ing403))) -(recipe r319 (key (sx319 ing366))) -(recipe r319 (key (sy319 ing404))) -(recipe r319 (key (sx319 ing367))) -(recipe r319 (key (sy319 ing405))) -(recipe r319 (key (sx319 ing368))) -(recipe r319 (key (sy319 ing406))) -(recipe r320 (numIngredients 2)) -(recipe r320 (result (id item320))) -(recipe r320 (pattern 0 sx320)) -(recipe r320 (pattern 1 sy320)) -(recipe r320 (key (sx320 ing360))) -(recipe r320 (key (sy320 ing400))) -(recipe r320 (key (sx320 ing361))) -(recipe r320 (key (sy320 ing401))) -(recipe r320 (key (sx320 ing362))) -(recipe r320 (key (sy320 ing402))) -(recipe r320 (key (sx320 ing363))) -(recipe r320 (key (sy320 ing403))) -(recipe r320 (key (sx320 ing364))) -(recipe r320 (key (sy320 ing404))) -(recipe r320 (key (sx320 ing365))) -(recipe r320 (key (sy320 ing405))) -(recipe r320 (key (sx320 ing366))) -(recipe r320 (key (sy320 ing406))) -(recipe r320 (key (sx320 ing367))) -(recipe r320 (key (sy320 ing407))) -(recipe r320 (key (sx320 ing368))) -(recipe r320 (key (sy320 ing408))) -(recipe r320 (key (sx320 ing369))) -(recipe r320 (key (sy320 ing409))) -(recipe r320 (key (sx320 ing370))) -(recipe r320 (key (sy320 ing410))) -(recipe r320 (key (sx320 ing371))) -(recipe r320 (key (sy320 ing411))) -(recipe r321 (numIngredients 2)) -(recipe r321 (result (id item321))) -(recipe r321 (pattern 0 sx321)) -(recipe r321 (pattern 1 sy321)) -(recipe r321 (key (sx321 ing363))) -(recipe r321 (key (sy321 ing405))) -(recipe r321 (key (sx321 ing364))) -(recipe r321 (key (sy321 ing406))) -(recipe r321 (key (sx321 ing365))) -(recipe r321 (key (sy321 ing407))) -(recipe r321 (key (sx321 ing366))) -(recipe r321 (key (sy321 ing408))) -(recipe r321 (key (sx321 ing367))) -(recipe r321 (key (sy321 ing409))) -(recipe r321 (key (sx321 ing368))) -(recipe r321 (key (sy321 ing410))) -(recipe r321 (key (sx321 ing369))) -(recipe r321 (key (sy321 ing411))) -(recipe r321 (key (sx321 ing370))) -(recipe r321 (key (sy321 ing412))) -(recipe r321 (key (sx321 ing371))) -(recipe r321 (key (sy321 ing413))) -(recipe r321 (key (sx321 ing372))) -(recipe r321 (key (sy321 ing414))) -(recipe r321 (key (sx321 ing373))) -(recipe r321 (key (sy321 ing415))) -(recipe r321 (key (sx321 ing374))) -(recipe r321 (key (sy321 ing416))) -(recipe r322 (numIngredients 2)) -(recipe r322 (result (id item322))) -(recipe r322 (pattern 0 sx322)) -(recipe r322 (pattern 1 sy322)) -(recipe r322 (key (sx322 ing366))) -(recipe r322 (key (sy322 ing410))) -(recipe r322 (key (sx322 ing367))) -(recipe r322 (key (sy322 ing411))) -(recipe r322 (key (sx322 ing368))) -(recipe r322 (key (sy322 ing412))) -(recipe r322 (key (sx322 ing369))) -(recipe r322 (key (sy322 ing413))) -(recipe r322 (key (sx322 ing370))) -(recipe r322 (key (sy322 ing414))) -(recipe r322 (key (sx322 ing371))) -(recipe r322 (key (sy322 ing415))) -(recipe r322 (key (sx322 ing372))) -(recipe r322 (key (sy322 ing416))) -(recipe r322 (key (sx322 ing373))) -(recipe r322 (key (sy322 ing417))) -(recipe r322 (key (sx322 ing374))) -(recipe r322 (key (sy322 ing418))) -(recipe r322 (key (sx322 ing375))) -(recipe r322 (key (sy322 ing419))) -(recipe r322 (key (sx322 ing376))) -(recipe r322 (key (sy322 ing420))) -(recipe r322 (key (sx322 ing377))) -(recipe r322 (key (sy322 ing421))) -(recipe r323 (numIngredients 2)) -(recipe r323 (result (id item323))) -(recipe r323 (pattern 0 sx323)) -(recipe r323 (pattern 1 sy323)) -(recipe r323 (key (sx323 ing369))) -(recipe r323 (key (sy323 ing415))) -(recipe r323 (key (sx323 ing370))) -(recipe r323 (key (sy323 ing416))) -(recipe r323 (key (sx323 ing371))) -(recipe r323 (key (sy323 ing417))) -(recipe r323 (key (sx323 ing372))) -(recipe r323 (key (sy323 ing418))) -(recipe r323 (key (sx323 ing373))) -(recipe r323 (key (sy323 ing419))) -(recipe r323 (key (sx323 ing374))) -(recipe r323 (key (sy323 ing420))) -(recipe r323 (key (sx323 ing375))) -(recipe r323 (key (sy323 ing421))) -(recipe r323 (key (sx323 ing376))) -(recipe r323 (key (sy323 ing422))) -(recipe r323 (key (sx323 ing377))) -(recipe r323 (key (sy323 ing423))) -(recipe r323 (key (sx323 ing378))) -(recipe r323 (key (sy323 ing424))) -(recipe r323 (key (sx323 ing379))) -(recipe r323 (key (sy323 ing425))) -(recipe r323 (key (sx323 ing380))) -(recipe r323 (key (sy323 ing426))) -(recipe r324 (numIngredients 2)) -(recipe r324 (result (id item324))) -(recipe r324 (pattern 0 sx324)) -(recipe r324 (pattern 1 sy324)) -(recipe r324 (key (sx324 ing372))) -(recipe r324 (key (sy324 ing420))) -(recipe r324 (key (sx324 ing373))) -(recipe r324 (key (sy324 ing421))) -(recipe r324 (key (sx324 ing374))) -(recipe r324 (key (sy324 ing422))) -(recipe r324 (key (sx324 ing375))) -(recipe r324 (key (sy324 ing423))) -(recipe r324 (key (sx324 ing376))) -(recipe r324 (key (sy324 ing424))) -(recipe r324 (key (sx324 ing377))) -(recipe r324 (key (sy324 ing425))) -(recipe r324 (key (sx324 ing378))) -(recipe r324 (key (sy324 ing426))) -(recipe r324 (key (sx324 ing379))) -(recipe r324 (key (sy324 ing427))) -(recipe r324 (key (sx324 ing380))) -(recipe r324 (key (sy324 ing428))) -(recipe r324 (key (sx324 ing381))) -(recipe r324 (key (sy324 ing429))) -(recipe r324 (key (sx324 ing382))) -(recipe r324 (key (sy324 ing430))) -(recipe r324 (key (sx324 ing383))) -(recipe r324 (key (sy324 ing431))) -(recipe r325 (numIngredients 2)) -(recipe r325 (result (id item325))) -(recipe r325 (pattern 0 sx325)) -(recipe r325 (pattern 1 sy325)) -(recipe r325 (key (sx325 ing375))) -(recipe r325 (key (sy325 ing425))) -(recipe r325 (key (sx325 ing376))) -(recipe r325 (key (sy325 ing426))) -(recipe r325 (key (sx325 ing377))) -(recipe r325 (key (sy325 ing427))) -(recipe r325 (key (sx325 ing378))) -(recipe r325 (key (sy325 ing428))) -(recipe r325 (key (sx325 ing379))) -(recipe r325 (key (sy325 ing429))) -(recipe r325 (key (sx325 ing380))) -(recipe r325 (key (sy325 ing430))) -(recipe r325 (key (sx325 ing381))) -(recipe r325 (key (sy325 ing431))) -(recipe r325 (key (sx325 ing382))) -(recipe r325 (key (sy325 ing432))) -(recipe r325 (key (sx325 ing383))) -(recipe r325 (key (sy325 ing433))) -(recipe r325 (key (sx325 ing384))) -(recipe r325 (key (sy325 ing434))) -(recipe r325 (key (sx325 ing385))) -(recipe r325 (key (sy325 ing435))) -(recipe r325 (key (sx325 ing386))) -(recipe r325 (key (sy325 ing436))) -(recipe r326 (numIngredients 2)) -(recipe r326 (result (id item326))) -(recipe r326 (pattern 0 sx326)) -(recipe r326 (pattern 1 sy326)) -(recipe r326 (key (sx326 ing378))) -(recipe r326 (key (sy326 ing430))) -(recipe r326 (key (sx326 ing379))) -(recipe r326 (key (sy326 ing431))) -(recipe r326 (key (sx326 ing380))) -(recipe r326 (key (sy326 ing432))) -(recipe r326 (key (sx326 ing381))) -(recipe r326 (key (sy326 ing433))) -(recipe r326 (key (sx326 ing382))) -(recipe r326 (key (sy326 ing434))) -(recipe r326 (key (sx326 ing383))) -(recipe r326 (key (sy326 ing435))) -(recipe r326 (key (sx326 ing384))) -(recipe r326 (key (sy326 ing436))) -(recipe r326 (key (sx326 ing385))) -(recipe r326 (key (sy326 ing437))) -(recipe r326 (key (sx326 ing386))) -(recipe r326 (key (sy326 ing438))) -(recipe r326 (key (sx326 ing387))) -(recipe r326 (key (sy326 ing439))) -(recipe r326 (key (sx326 ing388))) -(recipe r326 (key (sy326 ing440))) -(recipe r326 (key (sx326 ing389))) -(recipe r326 (key (sy326 ing441))) -(recipe r327 (numIngredients 2)) -(recipe r327 (result (id item327))) -(recipe r327 (pattern 0 sx327)) -(recipe r327 (pattern 1 sy327)) -(recipe r327 (key (sx327 ing381))) -(recipe r327 (key (sy327 ing435))) -(recipe r327 (key (sx327 ing382))) -(recipe r327 (key (sy327 ing436))) -(recipe r327 (key (sx327 ing383))) -(recipe r327 (key (sy327 ing437))) -(recipe r327 (key (sx327 ing384))) -(recipe r327 (key (sy327 ing438))) -(recipe r327 (key (sx327 ing385))) -(recipe r327 (key (sy327 ing439))) -(recipe r327 (key (sx327 ing386))) -(recipe r327 (key (sy327 ing440))) -(recipe r327 (key (sx327 ing387))) -(recipe r327 (key (sy327 ing441))) -(recipe r327 (key (sx327 ing388))) -(recipe r327 (key (sy327 ing442))) -(recipe r327 (key (sx327 ing389))) -(recipe r327 (key (sy327 ing443))) -(recipe r327 (key (sx327 ing390))) -(recipe r327 (key (sy327 ing444))) -(recipe r327 (key (sx327 ing391))) -(recipe r327 (key (sy327 ing445))) -(recipe r327 (key (sx327 ing392))) -(recipe r327 (key (sy327 ing446))) -(recipe r328 (numIngredients 2)) -(recipe r328 (result (id item328))) -(recipe r328 (pattern 0 sx328)) -(recipe r328 (pattern 1 sy328)) -(recipe r328 (key (sx328 ing384))) -(recipe r328 (key (sy328 ing440))) -(recipe r328 (key (sx328 ing385))) -(recipe r328 (key (sy328 ing441))) -(recipe r328 (key (sx328 ing386))) -(recipe r328 (key (sy328 ing442))) -(recipe r328 (key (sx328 ing387))) -(recipe r328 (key (sy328 ing443))) -(recipe r328 (key (sx328 ing388))) -(recipe r328 (key (sy328 ing444))) -(recipe r328 (key (sx328 ing389))) -(recipe r328 (key (sy328 ing445))) -(recipe r328 (key (sx328 ing390))) -(recipe r328 (key (sy328 ing446))) -(recipe r328 (key (sx328 ing391))) -(recipe r328 (key (sy328 ing447))) -(recipe r328 (key (sx328 ing392))) -(recipe r328 (key (sy328 ing448))) -(recipe r328 (key (sx328 ing393))) -(recipe r328 (key (sy328 ing449))) -(recipe r328 (key (sx328 ing394))) -(recipe r328 (key (sy328 ing450))) -(recipe r328 (key (sx328 ing395))) -(recipe r328 (key (sy328 ing451))) -(recipe r329 (numIngredients 2)) -(recipe r329 (result (id item329))) -(recipe r329 (pattern 0 sx329)) -(recipe r329 (pattern 1 sy329)) -(recipe r329 (key (sx329 ing387))) -(recipe r329 (key (sy329 ing445))) -(recipe r329 (key (sx329 ing388))) -(recipe r329 (key (sy329 ing446))) -(recipe r329 (key (sx329 ing389))) -(recipe r329 (key (sy329 ing447))) -(recipe r329 (key (sx329 ing390))) -(recipe r329 (key (sy329 ing448))) -(recipe r329 (key (sx329 ing391))) -(recipe r329 (key (sy329 ing449))) -(recipe r329 (key (sx329 ing392))) -(recipe r329 (key (sy329 ing450))) -(recipe r329 (key (sx329 ing393))) -(recipe r329 (key (sy329 ing451))) -(recipe r329 (key (sx329 ing394))) -(recipe r329 (key (sy329 ing452))) -(recipe r329 (key (sx329 ing395))) -(recipe r329 (key (sy329 ing453))) -(recipe r329 (key (sx329 ing396))) -(recipe r329 (key (sy329 ing454))) -(recipe r329 (key (sx329 ing397))) -(recipe r329 (key (sy329 ing455))) -(recipe r329 (key (sx329 ing398))) -(recipe r329 (key (sy329 ing456))) -(recipe r330 (numIngredients 2)) -(recipe r330 (result (id item330))) -(recipe r330 (pattern 0 sx330)) -(recipe r330 (pattern 1 sy330)) -(recipe r330 (key (sx330 ing390))) -(recipe r330 (key (sy330 ing450))) -(recipe r330 (key (sx330 ing391))) -(recipe r330 (key (sy330 ing451))) -(recipe r330 (key (sx330 ing392))) -(recipe r330 (key (sy330 ing452))) -(recipe r330 (key (sx330 ing393))) -(recipe r330 (key (sy330 ing453))) -(recipe r330 (key (sx330 ing394))) -(recipe r330 (key (sy330 ing454))) -(recipe r330 (key (sx330 ing395))) -(recipe r330 (key (sy330 ing455))) -(recipe r330 (key (sx330 ing396))) -(recipe r330 (key (sy330 ing456))) -(recipe r330 (key (sx330 ing397))) -(recipe r330 (key (sy330 ing457))) -(recipe r330 (key (sx330 ing398))) -(recipe r330 (key (sy330 ing458))) -(recipe r330 (key (sx330 ing399))) -(recipe r330 (key (sy330 ing459))) -(recipe r330 (key (sx330 ing400))) -(recipe r330 (key (sy330 ing460))) -(recipe r330 (key (sx330 ing401))) -(recipe r330 (key (sy330 ing461))) -(recipe r331 (numIngredients 2)) -(recipe r331 (result (id item331))) -(recipe r331 (pattern 0 sx331)) -(recipe r331 (pattern 1 sy331)) -(recipe r331 (key (sx331 ing393))) -(recipe r331 (key (sy331 ing455))) -(recipe r331 (key (sx331 ing394))) -(recipe r331 (key (sy331 ing456))) -(recipe r331 (key (sx331 ing395))) -(recipe r331 (key (sy331 ing457))) -(recipe r331 (key (sx331 ing396))) -(recipe r331 (key (sy331 ing458))) -(recipe r331 (key (sx331 ing397))) -(recipe r331 (key (sy331 ing459))) -(recipe r331 (key (sx331 ing398))) -(recipe r331 (key (sy331 ing460))) -(recipe r331 (key (sx331 ing399))) -(recipe r331 (key (sy331 ing461))) -(recipe r331 (key (sx331 ing400))) -(recipe r331 (key (sy331 ing462))) -(recipe r331 (key (sx331 ing401))) -(recipe r331 (key (sy331 ing463))) -(recipe r331 (key (sx331 ing402))) -(recipe r331 (key (sy331 ing464))) -(recipe r331 (key (sx331 ing403))) -(recipe r331 (key (sy331 ing465))) -(recipe r331 (key (sx331 ing404))) -(recipe r331 (key (sy331 ing466))) -(recipe r332 (numIngredients 2)) -(recipe r332 (result (id item332))) -(recipe r332 (pattern 0 sx332)) -(recipe r332 (pattern 1 sy332)) -(recipe r332 (key (sx332 ing396))) -(recipe r332 (key (sy332 ing460))) -(recipe r332 (key (sx332 ing397))) -(recipe r332 (key (sy332 ing461))) -(recipe r332 (key (sx332 ing398))) -(recipe r332 (key (sy332 ing462))) -(recipe r332 (key (sx332 ing399))) -(recipe r332 (key (sy332 ing463))) -(recipe r332 (key (sx332 ing400))) -(recipe r332 (key (sy332 ing464))) -(recipe r332 (key (sx332 ing401))) -(recipe r332 (key (sy332 ing465))) -(recipe r332 (key (sx332 ing402))) -(recipe r332 (key (sy332 ing466))) -(recipe r332 (key (sx332 ing403))) -(recipe r332 (key (sy332 ing467))) -(recipe r332 (key (sx332 ing404))) -(recipe r332 (key (sy332 ing468))) -(recipe r332 (key (sx332 ing405))) -(recipe r332 (key (sy332 ing469))) -(recipe r332 (key (sx332 ing406))) -(recipe r332 (key (sy332 ing470))) -(recipe r332 (key (sx332 ing407))) -(recipe r332 (key (sy332 ing471))) -(recipe r333 (numIngredients 2)) -(recipe r333 (result (id item333))) -(recipe r333 (pattern 0 sx333)) -(recipe r333 (pattern 1 sy333)) -(recipe r333 (key (sx333 ing399))) -(recipe r333 (key (sy333 ing465))) -(recipe r333 (key (sx333 ing400))) -(recipe r333 (key (sy333 ing466))) -(recipe r333 (key (sx333 ing401))) -(recipe r333 (key (sy333 ing467))) -(recipe r333 (key (sx333 ing402))) -(recipe r333 (key (sy333 ing468))) -(recipe r333 (key (sx333 ing403))) -(recipe r333 (key (sy333 ing469))) -(recipe r333 (key (sx333 ing404))) -(recipe r333 (key (sy333 ing470))) -(recipe r333 (key (sx333 ing405))) -(recipe r333 (key (sy333 ing471))) -(recipe r333 (key (sx333 ing406))) -(recipe r333 (key (sy333 ing472))) -(recipe r333 (key (sx333 ing407))) -(recipe r333 (key (sy333 ing473))) -(recipe r333 (key (sx333 ing408))) -(recipe r333 (key (sy333 ing474))) -(recipe r333 (key (sx333 ing409))) -(recipe r333 (key (sy333 ing475))) -(recipe r333 (key (sx333 ing410))) -(recipe r333 (key (sy333 ing476))) -(recipe r334 (numIngredients 2)) -(recipe r334 (result (id item334))) -(recipe r334 (pattern 0 sx334)) -(recipe r334 (pattern 1 sy334)) -(recipe r334 (key (sx334 ing402))) -(recipe r334 (key (sy334 ing470))) -(recipe r334 (key (sx334 ing403))) -(recipe r334 (key (sy334 ing471))) -(recipe r334 (key (sx334 ing404))) -(recipe r334 (key (sy334 ing472))) -(recipe r334 (key (sx334 ing405))) -(recipe r334 (key (sy334 ing473))) -(recipe r334 (key (sx334 ing406))) -(recipe r334 (key (sy334 ing474))) -(recipe r334 (key (sx334 ing407))) -(recipe r334 (key (sy334 ing475))) -(recipe r334 (key (sx334 ing408))) -(recipe r334 (key (sy334 ing476))) -(recipe r334 (key (sx334 ing409))) -(recipe r334 (key (sy334 ing477))) -(recipe r334 (key (sx334 ing410))) -(recipe r334 (key (sy334 ing478))) -(recipe r334 (key (sx334 ing411))) -(recipe r334 (key (sy334 ing479))) -(recipe r334 (key (sx334 ing412))) -(recipe r334 (key (sy334 ing480))) -(recipe r334 (key (sx334 ing413))) -(recipe r334 (key (sy334 ing481))) -(recipe r335 (numIngredients 2)) -(recipe r335 (result (id item335))) -(recipe r335 (pattern 0 sx335)) -(recipe r335 (pattern 1 sy335)) -(recipe r335 (key (sx335 ing405))) -(recipe r335 (key (sy335 ing475))) -(recipe r335 (key (sx335 ing406))) -(recipe r335 (key (sy335 ing476))) -(recipe r335 (key (sx335 ing407))) -(recipe r335 (key (sy335 ing477))) -(recipe r335 (key (sx335 ing408))) -(recipe r335 (key (sy335 ing478))) -(recipe r335 (key (sx335 ing409))) -(recipe r335 (key (sy335 ing479))) -(recipe r335 (key (sx335 ing410))) -(recipe r335 (key (sy335 ing480))) -(recipe r335 (key (sx335 ing411))) -(recipe r335 (key (sy335 ing481))) -(recipe r335 (key (sx335 ing412))) -(recipe r335 (key (sy335 ing482))) -(recipe r335 (key (sx335 ing413))) -(recipe r335 (key (sy335 ing483))) -(recipe r335 (key (sx335 ing414))) -(recipe r335 (key (sy335 ing484))) -(recipe r335 (key (sx335 ing415))) -(recipe r335 (key (sy335 ing485))) -(recipe r335 (key (sx335 ing416))) -(recipe r335 (key (sy335 ing486))) -(recipe r336 (numIngredients 2)) -(recipe r336 (result (id item336))) -(recipe r336 (pattern 0 sx336)) -(recipe r336 (pattern 1 sy336)) -(recipe r336 (key (sx336 ing408))) -(recipe r336 (key (sy336 ing480))) -(recipe r336 (key (sx336 ing409))) -(recipe r336 (key (sy336 ing481))) -(recipe r336 (key (sx336 ing410))) -(recipe r336 (key (sy336 ing482))) -(recipe r336 (key (sx336 ing411))) -(recipe r336 (key (sy336 ing483))) -(recipe r336 (key (sx336 ing412))) -(recipe r336 (key (sy336 ing484))) -(recipe r336 (key (sx336 ing413))) -(recipe r336 (key (sy336 ing485))) -(recipe r336 (key (sx336 ing414))) -(recipe r336 (key (sy336 ing486))) -(recipe r336 (key (sx336 ing415))) -(recipe r336 (key (sy336 ing487))) -(recipe r336 (key (sx336 ing416))) -(recipe r336 (key (sy336 ing488))) -(recipe r336 (key (sx336 ing417))) -(recipe r336 (key (sy336 ing489))) -(recipe r336 (key (sx336 ing418))) -(recipe r336 (key (sy336 ing490))) -(recipe r336 (key (sx336 ing419))) -(recipe r336 (key (sy336 ing491))) -(recipe r337 (numIngredients 2)) -(recipe r337 (result (id item337))) -(recipe r337 (pattern 0 sx337)) -(recipe r337 (pattern 1 sy337)) -(recipe r337 (key (sx337 ing411))) -(recipe r337 (key (sy337 ing485))) -(recipe r337 (key (sx337 ing412))) -(recipe r337 (key (sy337 ing486))) -(recipe r337 (key (sx337 ing413))) -(recipe r337 (key (sy337 ing487))) -(recipe r337 (key (sx337 ing414))) -(recipe r337 (key (sy337 ing488))) -(recipe r337 (key (sx337 ing415))) -(recipe r337 (key (sy337 ing489))) -(recipe r337 (key (sx337 ing416))) -(recipe r337 (key (sy337 ing490))) -(recipe r337 (key (sx337 ing417))) -(recipe r337 (key (sy337 ing491))) -(recipe r337 (key (sx337 ing418))) -(recipe r337 (key (sy337 ing492))) -(recipe r337 (key (sx337 ing419))) -(recipe r337 (key (sy337 ing493))) -(recipe r337 (key (sx337 ing420))) -(recipe r337 (key (sy337 ing494))) -(recipe r337 (key (sx337 ing421))) -(recipe r337 (key (sy337 ing495))) -(recipe r337 (key (sx337 ing422))) -(recipe r337 (key (sy337 ing496))) -(recipe r338 (numIngredients 2)) -(recipe r338 (result (id item338))) -(recipe r338 (pattern 0 sx338)) -(recipe r338 (pattern 1 sy338)) -(recipe r338 (key (sx338 ing414))) -(recipe r338 (key (sy338 ing490))) -(recipe r338 (key (sx338 ing415))) -(recipe r338 (key (sy338 ing491))) -(recipe r338 (key (sx338 ing416))) -(recipe r338 (key (sy338 ing492))) -(recipe r338 (key (sx338 ing417))) -(recipe r338 (key (sy338 ing493))) -(recipe r338 (key (sx338 ing418))) -(recipe r338 (key (sy338 ing494))) -(recipe r338 (key (sx338 ing419))) -(recipe r338 (key (sy338 ing495))) -(recipe r338 (key (sx338 ing420))) -(recipe r338 (key (sy338 ing496))) -(recipe r338 (key (sx338 ing421))) -(recipe r338 (key (sy338 ing497))) -(recipe r338 (key (sx338 ing422))) -(recipe r338 (key (sy338 ing498))) -(recipe r338 (key (sx338 ing423))) -(recipe r338 (key (sy338 ing499))) -(recipe r338 (key (sx338 ing424))) -(recipe r338 (key (sy338 ing500))) -(recipe r338 (key (sx338 ing425))) -(recipe r338 (key (sy338 ing501))) -(recipe r339 (numIngredients 2)) -(recipe r339 (result (id item339))) -(recipe r339 (pattern 0 sx339)) -(recipe r339 (pattern 1 sy339)) -(recipe r339 (key (sx339 ing417))) -(recipe r339 (key (sy339 ing495))) -(recipe r339 (key (sx339 ing418))) -(recipe r339 (key (sy339 ing496))) -(recipe r339 (key (sx339 ing419))) -(recipe r339 (key (sy339 ing497))) -(recipe r339 (key (sx339 ing420))) -(recipe r339 (key (sy339 ing498))) -(recipe r339 (key (sx339 ing421))) -(recipe r339 (key (sy339 ing499))) -(recipe r339 (key (sx339 ing422))) -(recipe r339 (key (sy339 ing500))) -(recipe r339 (key (sx339 ing423))) -(recipe r339 (key (sy339 ing501))) -(recipe r339 (key (sx339 ing424))) -(recipe r339 (key (sy339 ing502))) -(recipe r339 (key (sx339 ing425))) -(recipe r339 (key (sy339 ing503))) -(recipe r339 (key (sx339 ing426))) -(recipe r339 (key (sy339 ing504))) -(recipe r339 (key (sx339 ing427))) -(recipe r339 (key (sy339 ing505))) -(recipe r339 (key (sx339 ing428))) -(recipe r339 (key (sy339 ing506))) -(recipe r340 (numIngredients 2)) -(recipe r340 (result (id item340))) -(recipe r340 (pattern 0 sx340)) -(recipe r340 (pattern 1 sy340)) -(recipe r340 (key (sx340 ing420))) -(recipe r340 (key (sy340 ing500))) -(recipe r340 (key (sx340 ing421))) -(recipe r340 (key (sy340 ing501))) -(recipe r340 (key (sx340 ing422))) -(recipe r340 (key (sy340 ing502))) -(recipe r340 (key (sx340 ing423))) -(recipe r340 (key (sy340 ing503))) -(recipe r340 (key (sx340 ing424))) -(recipe r340 (key (sy340 ing504))) -(recipe r340 (key (sx340 ing425))) -(recipe r340 (key (sy340 ing505))) -(recipe r340 (key (sx340 ing426))) -(recipe r340 (key (sy340 ing506))) -(recipe r340 (key (sx340 ing427))) -(recipe r340 (key (sy340 ing507))) -(recipe r340 (key (sx340 ing428))) -(recipe r340 (key (sy340 ing508))) -(recipe r340 (key (sx340 ing429))) -(recipe r340 (key (sy340 ing509))) -(recipe r340 (key (sx340 ing430))) -(recipe r340 (key (sy340 ing510))) -(recipe r340 (key (sx340 ing431))) -(recipe r340 (key (sy340 ing511))) -(recipe r341 (numIngredients 2)) -(recipe r341 (result (id item341))) -(recipe r341 (pattern 0 sx341)) -(recipe r341 (pattern 1 sy341)) -(recipe r341 (key (sx341 ing423))) -(recipe r341 (key (sy341 ing505))) -(recipe r341 (key (sx341 ing424))) -(recipe r341 (key (sy341 ing506))) -(recipe r341 (key (sx341 ing425))) -(recipe r341 (key (sy341 ing507))) -(recipe r341 (key (sx341 ing426))) -(recipe r341 (key (sy341 ing508))) -(recipe r341 (key (sx341 ing427))) -(recipe r341 (key (sy341 ing509))) -(recipe r341 (key (sx341 ing428))) -(recipe r341 (key (sy341 ing510))) -(recipe r341 (key (sx341 ing429))) -(recipe r341 (key (sy341 ing511))) -(recipe r341 (key (sx341 ing430))) -(recipe r341 (key (sy341 ing512))) -(recipe r341 (key (sx341 ing431))) -(recipe r341 (key (sy341 ing513))) -(recipe r341 (key (sx341 ing432))) -(recipe r341 (key (sy341 ing514))) -(recipe r341 (key (sx341 ing433))) -(recipe r341 (key (sy341 ing515))) -(recipe r341 (key (sx341 ing434))) -(recipe r341 (key (sy341 ing516))) -(recipe r342 (numIngredients 2)) -(recipe r342 (result (id item342))) -(recipe r342 (pattern 0 sx342)) -(recipe r342 (pattern 1 sy342)) -(recipe r342 (key (sx342 ing426))) -(recipe r342 (key (sy342 ing510))) -(recipe r342 (key (sx342 ing427))) -(recipe r342 (key (sy342 ing511))) -(recipe r342 (key (sx342 ing428))) -(recipe r342 (key (sy342 ing512))) -(recipe r342 (key (sx342 ing429))) -(recipe r342 (key (sy342 ing513))) -(recipe r342 (key (sx342 ing430))) -(recipe r342 (key (sy342 ing514))) -(recipe r342 (key (sx342 ing431))) -(recipe r342 (key (sy342 ing515))) -(recipe r342 (key (sx342 ing432))) -(recipe r342 (key (sy342 ing516))) -(recipe r342 (key (sx342 ing433))) -(recipe r342 (key (sy342 ing517))) -(recipe r342 (key (sx342 ing434))) -(recipe r342 (key (sy342 ing518))) -(recipe r342 (key (sx342 ing435))) -(recipe r342 (key (sy342 ing519))) -(recipe r342 (key (sx342 ing436))) -(recipe r342 (key (sy342 ing520))) -(recipe r342 (key (sx342 ing437))) -(recipe r342 (key (sy342 ing521))) -(recipe r343 (numIngredients 2)) -(recipe r343 (result (id item343))) -(recipe r343 (pattern 0 sx343)) -(recipe r343 (pattern 1 sy343)) -(recipe r343 (key (sx343 ing429))) -(recipe r343 (key (sy343 ing515))) -(recipe r343 (key (sx343 ing430))) -(recipe r343 (key (sy343 ing516))) -(recipe r343 (key (sx343 ing431))) -(recipe r343 (key (sy343 ing517))) -(recipe r343 (key (sx343 ing432))) -(recipe r343 (key (sy343 ing518))) -(recipe r343 (key (sx343 ing433))) -(recipe r343 (key (sy343 ing519))) -(recipe r343 (key (sx343 ing434))) -(recipe r343 (key (sy343 ing520))) -(recipe r343 (key (sx343 ing435))) -(recipe r343 (key (sy343 ing521))) -(recipe r343 (key (sx343 ing436))) -(recipe r343 (key (sy343 ing522))) -(recipe r343 (key (sx343 ing437))) -(recipe r343 (key (sy343 ing523))) -(recipe r343 (key (sx343 ing438))) -(recipe r343 (key (sy343 ing524))) -(recipe r343 (key (sx343 ing439))) -(recipe r343 (key (sy343 ing525))) -(recipe r343 (key (sx343 ing440))) -(recipe r343 (key (sy343 ing526))) -(recipe r344 (numIngredients 2)) -(recipe r344 (result (id item344))) -(recipe r344 (pattern 0 sx344)) -(recipe r344 (pattern 1 sy344)) -(recipe r344 (key (sx344 ing432))) -(recipe r344 (key (sy344 ing520))) -(recipe r344 (key (sx344 ing433))) -(recipe r344 (key (sy344 ing521))) -(recipe r344 (key (sx344 ing434))) -(recipe r344 (key (sy344 ing522))) -(recipe r344 (key (sx344 ing435))) -(recipe r344 (key (sy344 ing523))) -(recipe r344 (key (sx344 ing436))) -(recipe r344 (key (sy344 ing524))) -(recipe r344 (key (sx344 ing437))) -(recipe r344 (key (sy344 ing525))) -(recipe r344 (key (sx344 ing438))) -(recipe r344 (key (sy344 ing526))) -(recipe r344 (key (sx344 ing439))) -(recipe r344 (key (sy344 ing527))) -(recipe r344 (key (sx344 ing440))) -(recipe r344 (key (sy344 ing528))) -(recipe r344 (key (sx344 ing441))) -(recipe r344 (key (sy344 ing529))) -(recipe r344 (key (sx344 ing442))) -(recipe r344 (key (sy344 ing530))) -(recipe r344 (key (sx344 ing443))) -(recipe r344 (key (sy344 ing531))) -(recipe r345 (numIngredients 2)) -(recipe r345 (result (id item345))) -(recipe r345 (pattern 0 sx345)) -(recipe r345 (pattern 1 sy345)) -(recipe r345 (key (sx345 ing435))) -(recipe r345 (key (sy345 ing525))) -(recipe r345 (key (sx345 ing436))) -(recipe r345 (key (sy345 ing526))) -(recipe r345 (key (sx345 ing437))) -(recipe r345 (key (sy345 ing527))) -(recipe r345 (key (sx345 ing438))) -(recipe r345 (key (sy345 ing528))) -(recipe r345 (key (sx345 ing439))) -(recipe r345 (key (sy345 ing529))) -(recipe r345 (key (sx345 ing440))) -(recipe r345 (key (sy345 ing530))) -(recipe r345 (key (sx345 ing441))) -(recipe r345 (key (sy345 ing531))) -(recipe r345 (key (sx345 ing442))) -(recipe r345 (key (sy345 ing532))) -(recipe r345 (key (sx345 ing443))) -(recipe r345 (key (sy345 ing533))) -(recipe r345 (key (sx345 ing444))) -(recipe r345 (key (sy345 ing534))) -(recipe r345 (key (sx345 ing445))) -(recipe r345 (key (sy345 ing535))) -(recipe r345 (key (sx345 ing446))) -(recipe r345 (key (sy345 ing536))) -(recipe r346 (numIngredients 2)) -(recipe r346 (result (id item346))) -(recipe r346 (pattern 0 sx346)) -(recipe r346 (pattern 1 sy346)) -(recipe r346 (key (sx346 ing438))) -(recipe r346 (key (sy346 ing530))) -(recipe r346 (key (sx346 ing439))) -(recipe r346 (key (sy346 ing531))) -(recipe r346 (key (sx346 ing440))) -(recipe r346 (key (sy346 ing532))) -(recipe r346 (key (sx346 ing441))) -(recipe r346 (key (sy346 ing533))) -(recipe r346 (key (sx346 ing442))) -(recipe r346 (key (sy346 ing534))) -(recipe r346 (key (sx346 ing443))) -(recipe r346 (key (sy346 ing535))) -(recipe r346 (key (sx346 ing444))) -(recipe r346 (key (sy346 ing536))) -(recipe r346 (key (sx346 ing445))) -(recipe r346 (key (sy346 ing537))) -(recipe r346 (key (sx346 ing446))) -(recipe r346 (key (sy346 ing538))) -(recipe r346 (key (sx346 ing447))) -(recipe r346 (key (sy346 ing539))) -(recipe r346 (key (sx346 ing448))) -(recipe r346 (key (sy346 ing540))) -(recipe r346 (key (sx346 ing449))) -(recipe r346 (key (sy346 ing541))) -(recipe r347 (numIngredients 2)) -(recipe r347 (result (id item347))) -(recipe r347 (pattern 0 sx347)) -(recipe r347 (pattern 1 sy347)) -(recipe r347 (key (sx347 ing441))) -(recipe r347 (key (sy347 ing535))) -(recipe r347 (key (sx347 ing442))) -(recipe r347 (key (sy347 ing536))) -(recipe r347 (key (sx347 ing443))) -(recipe r347 (key (sy347 ing537))) -(recipe r347 (key (sx347 ing444))) -(recipe r347 (key (sy347 ing538))) -(recipe r347 (key (sx347 ing445))) -(recipe r347 (key (sy347 ing539))) -(recipe r347 (key (sx347 ing446))) -(recipe r347 (key (sy347 ing540))) -(recipe r347 (key (sx347 ing447))) -(recipe r347 (key (sy347 ing541))) -(recipe r347 (key (sx347 ing448))) -(recipe r347 (key (sy347 ing542))) -(recipe r347 (key (sx347 ing449))) -(recipe r347 (key (sy347 ing543))) -(recipe r347 (key (sx347 ing450))) -(recipe r347 (key (sy347 ing544))) -(recipe r347 (key (sx347 ing451))) -(recipe r347 (key (sy347 ing545))) -(recipe r347 (key (sx347 ing452))) -(recipe r347 (key (sy347 ing546))) -(recipe r348 (numIngredients 2)) -(recipe r348 (result (id item348))) -(recipe r348 (pattern 0 sx348)) -(recipe r348 (pattern 1 sy348)) -(recipe r348 (key (sx348 ing444))) -(recipe r348 (key (sy348 ing540))) -(recipe r348 (key (sx348 ing445))) -(recipe r348 (key (sy348 ing541))) -(recipe r348 (key (sx348 ing446))) -(recipe r348 (key (sy348 ing542))) -(recipe r348 (key (sx348 ing447))) -(recipe r348 (key (sy348 ing543))) -(recipe r348 (key (sx348 ing448))) -(recipe r348 (key (sy348 ing544))) -(recipe r348 (key (sx348 ing449))) -(recipe r348 (key (sy348 ing545))) -(recipe r348 (key (sx348 ing450))) -(recipe r348 (key (sy348 ing546))) -(recipe r348 (key (sx348 ing451))) -(recipe r348 (key (sy348 ing547))) -(recipe r348 (key (sx348 ing452))) -(recipe r348 (key (sy348 ing548))) -(recipe r348 (key (sx348 ing453))) -(recipe r348 (key (sy348 ing549))) -(recipe r348 (key (sx348 ing454))) -(recipe r348 (key (sy348 ing550))) -(recipe r348 (key (sx348 ing455))) -(recipe r348 (key (sy348 ing551))) -(recipe r349 (numIngredients 2)) -(recipe r349 (result (id item349))) -(recipe r349 (pattern 0 sx349)) -(recipe r349 (pattern 1 sy349)) -(recipe r349 (key (sx349 ing447))) -(recipe r349 (key (sy349 ing545))) -(recipe r349 (key (sx349 ing448))) -(recipe r349 (key (sy349 ing546))) -(recipe r349 (key (sx349 ing449))) -(recipe r349 (key (sy349 ing547))) -(recipe r349 (key (sx349 ing450))) -(recipe r349 (key (sy349 ing548))) -(recipe r349 (key (sx349 ing451))) -(recipe r349 (key (sy349 ing549))) -(recipe r349 (key (sx349 ing452))) -(recipe r349 (key (sy349 ing550))) -(recipe r349 (key (sx349 ing453))) -(recipe r349 (key (sy349 ing551))) -(recipe r349 (key (sx349 ing454))) -(recipe r349 (key (sy349 ing552))) -(recipe r349 (key (sx349 ing455))) -(recipe r349 (key (sy349 ing553))) -(recipe r349 (key (sx349 ing456))) -(recipe r349 (key (sy349 ing554))) -(recipe r349 (key (sx349 ing457))) -(recipe r349 (key (sy349 ing555))) -(recipe r349 (key (sx349 ing458))) -(recipe r349 (key (sy349 ing556))) -(recipe r350 (numIngredients 2)) -(recipe r350 (result (id item350))) -(recipe r350 (pattern 0 sx350)) -(recipe r350 (pattern 1 sy350)) -(recipe r350 (key (sx350 ing450))) -(recipe r350 (key (sy350 ing550))) -(recipe r350 (key (sx350 ing451))) -(recipe r350 (key (sy350 ing551))) -(recipe r350 (key (sx350 ing452))) -(recipe r350 (key (sy350 ing552))) -(recipe r350 (key (sx350 ing453))) -(recipe r350 (key (sy350 ing553))) -(recipe r350 (key (sx350 ing454))) -(recipe r350 (key (sy350 ing554))) -(recipe r350 (key (sx350 ing455))) -(recipe r350 (key (sy350 ing555))) -(recipe r350 (key (sx350 ing456))) -(recipe r350 (key (sy350 ing556))) -(recipe r350 (key (sx350 ing457))) -(recipe r350 (key (sy350 ing557))) -(recipe r350 (key (sx350 ing458))) -(recipe r350 (key (sy350 ing558))) -(recipe r350 (key (sx350 ing459))) -(recipe r350 (key (sy350 ing559))) -(recipe r350 (key (sx350 ing460))) -(recipe r350 (key (sy350 ing560))) -(recipe r350 (key (sx350 ing461))) -(recipe r350 (key (sy350 ing561))) -(recipe r351 (numIngredients 2)) -(recipe r351 (result (id item351))) -(recipe r351 (pattern 0 sx351)) -(recipe r351 (pattern 1 sy351)) -(recipe r351 (key (sx351 ing453))) -(recipe r351 (key (sy351 ing555))) -(recipe r351 (key (sx351 ing454))) -(recipe r351 (key (sy351 ing556))) -(recipe r351 (key (sx351 ing455))) -(recipe r351 (key (sy351 ing557))) -(recipe r351 (key (sx351 ing456))) -(recipe r351 (key (sy351 ing558))) -(recipe r351 (key (sx351 ing457))) -(recipe r351 (key (sy351 ing559))) -(recipe r351 (key (sx351 ing458))) -(recipe r351 (key (sy351 ing560))) -(recipe r351 (key (sx351 ing459))) -(recipe r351 (key (sy351 ing561))) -(recipe r351 (key (sx351 ing460))) -(recipe r351 (key (sy351 ing562))) -(recipe r351 (key (sx351 ing461))) -(recipe r351 (key (sy351 ing563))) -(recipe r351 (key (sx351 ing462))) -(recipe r351 (key (sy351 ing564))) -(recipe r351 (key (sx351 ing463))) -(recipe r351 (key (sy351 ing565))) -(recipe r351 (key (sx351 ing464))) -(recipe r351 (key (sy351 ing566))) -(recipe r352 (numIngredients 2)) -(recipe r352 (result (id item352))) -(recipe r352 (pattern 0 sx352)) -(recipe r352 (pattern 1 sy352)) -(recipe r352 (key (sx352 ing456))) -(recipe r352 (key (sy352 ing560))) -(recipe r352 (key (sx352 ing457))) -(recipe r352 (key (sy352 ing561))) -(recipe r352 (key (sx352 ing458))) -(recipe r352 (key (sy352 ing562))) -(recipe r352 (key (sx352 ing459))) -(recipe r352 (key (sy352 ing563))) -(recipe r352 (key (sx352 ing460))) -(recipe r352 (key (sy352 ing564))) -(recipe r352 (key (sx352 ing461))) -(recipe r352 (key (sy352 ing565))) -(recipe r352 (key (sx352 ing462))) -(recipe r352 (key (sy352 ing566))) -(recipe r352 (key (sx352 ing463))) -(recipe r352 (key (sy352 ing567))) -(recipe r352 (key (sx352 ing464))) -(recipe r352 (key (sy352 ing568))) -(recipe r352 (key (sx352 ing465))) -(recipe r352 (key (sy352 ing569))) -(recipe r352 (key (sx352 ing466))) -(recipe r352 (key (sy352 ing570))) -(recipe r352 (key (sx352 ing467))) -(recipe r352 (key (sy352 ing571))) -(recipe r353 (numIngredients 2)) -(recipe r353 (result (id item353))) -(recipe r353 (pattern 0 sx353)) -(recipe r353 (pattern 1 sy353)) -(recipe r353 (key (sx353 ing459))) -(recipe r353 (key (sy353 ing565))) -(recipe r353 (key (sx353 ing460))) -(recipe r353 (key (sy353 ing566))) -(recipe r353 (key (sx353 ing461))) -(recipe r353 (key (sy353 ing567))) -(recipe r353 (key (sx353 ing462))) -(recipe r353 (key (sy353 ing568))) -(recipe r353 (key (sx353 ing463))) -(recipe r353 (key (sy353 ing569))) -(recipe r353 (key (sx353 ing464))) -(recipe r353 (key (sy353 ing570))) -(recipe r353 (key (sx353 ing465))) -(recipe r353 (key (sy353 ing571))) -(recipe r353 (key (sx353 ing466))) -(recipe r353 (key (sy353 ing572))) -(recipe r353 (key (sx353 ing467))) -(recipe r353 (key (sy353 ing573))) -(recipe r353 (key (sx353 ing468))) -(recipe r353 (key (sy353 ing574))) -(recipe r353 (key (sx353 ing469))) -(recipe r353 (key (sy353 ing575))) -(recipe r353 (key (sx353 ing470))) -(recipe r353 (key (sy353 ing576))) -(recipe r354 (numIngredients 2)) -(recipe r354 (result (id item354))) -(recipe r354 (pattern 0 sx354)) -(recipe r354 (pattern 1 sy354)) -(recipe r354 (key (sx354 ing462))) -(recipe r354 (key (sy354 ing570))) -(recipe r354 (key (sx354 ing463))) -(recipe r354 (key (sy354 ing571))) -(recipe r354 (key (sx354 ing464))) -(recipe r354 (key (sy354 ing572))) -(recipe r354 (key (sx354 ing465))) -(recipe r354 (key (sy354 ing573))) -(recipe r354 (key (sx354 ing466))) -(recipe r354 (key (sy354 ing574))) -(recipe r354 (key (sx354 ing467))) -(recipe r354 (key (sy354 ing575))) -(recipe r354 (key (sx354 ing468))) -(recipe r354 (key (sy354 ing576))) -(recipe r354 (key (sx354 ing469))) -(recipe r354 (key (sy354 ing577))) -(recipe r354 (key (sx354 ing470))) -(recipe r354 (key (sy354 ing578))) -(recipe r354 (key (sx354 ing471))) -(recipe r354 (key (sy354 ing579))) -(recipe r354 (key (sx354 ing472))) -(recipe r354 (key (sy354 ing580))) -(recipe r354 (key (sx354 ing473))) -(recipe r354 (key (sy354 ing581))) -(recipe r355 (numIngredients 2)) -(recipe r355 (result (id item355))) -(recipe r355 (pattern 0 sx355)) -(recipe r355 (pattern 1 sy355)) -(recipe r355 (key (sx355 ing465))) -(recipe r355 (key (sy355 ing575))) -(recipe r355 (key (sx355 ing466))) -(recipe r355 (key (sy355 ing576))) -(recipe r355 (key (sx355 ing467))) -(recipe r355 (key (sy355 ing577))) -(recipe r355 (key (sx355 ing468))) -(recipe r355 (key (sy355 ing578))) -(recipe r355 (key (sx355 ing469))) -(recipe r355 (key (sy355 ing579))) -(recipe r355 (key (sx355 ing470))) -(recipe r355 (key (sy355 ing580))) -(recipe r355 (key (sx355 ing471))) -(recipe r355 (key (sy355 ing581))) -(recipe r355 (key (sx355 ing472))) -(recipe r355 (key (sy355 ing582))) -(recipe r355 (key (sx355 ing473))) -(recipe r355 (key (sy355 ing583))) -(recipe r355 (key (sx355 ing474))) -(recipe r355 (key (sy355 ing584))) -(recipe r355 (key (sx355 ing475))) -(recipe r355 (key (sy355 ing585))) -(recipe r355 (key (sx355 ing476))) -(recipe r355 (key (sy355 ing586))) -(recipe r356 (numIngredients 2)) -(recipe r356 (result (id item356))) -(recipe r356 (pattern 0 sx356)) -(recipe r356 (pattern 1 sy356)) -(recipe r356 (key (sx356 ing468))) -(recipe r356 (key (sy356 ing580))) -(recipe r356 (key (sx356 ing469))) -(recipe r356 (key (sy356 ing581))) -(recipe r356 (key (sx356 ing470))) -(recipe r356 (key (sy356 ing582))) -(recipe r356 (key (sx356 ing471))) -(recipe r356 (key (sy356 ing583))) -(recipe r356 (key (sx356 ing472))) -(recipe r356 (key (sy356 ing584))) -(recipe r356 (key (sx356 ing473))) -(recipe r356 (key (sy356 ing585))) -(recipe r356 (key (sx356 ing474))) -(recipe r356 (key (sy356 ing586))) -(recipe r356 (key (sx356 ing475))) -(recipe r356 (key (sy356 ing587))) -(recipe r356 (key (sx356 ing476))) -(recipe r356 (key (sy356 ing588))) -(recipe r356 (key (sx356 ing477))) -(recipe r356 (key (sy356 ing589))) -(recipe r356 (key (sx356 ing478))) -(recipe r356 (key (sy356 ing590))) -(recipe r356 (key (sx356 ing479))) -(recipe r356 (key (sy356 ing591))) -(recipe r357 (numIngredients 2)) -(recipe r357 (result (id item357))) -(recipe r357 (pattern 0 sx357)) -(recipe r357 (pattern 1 sy357)) -(recipe r357 (key (sx357 ing471))) -(recipe r357 (key (sy357 ing585))) -(recipe r357 (key (sx357 ing472))) -(recipe r357 (key (sy357 ing586))) -(recipe r357 (key (sx357 ing473))) -(recipe r357 (key (sy357 ing587))) -(recipe r357 (key (sx357 ing474))) -(recipe r357 (key (sy357 ing588))) -(recipe r357 (key (sx357 ing475))) -(recipe r357 (key (sy357 ing589))) -(recipe r357 (key (sx357 ing476))) -(recipe r357 (key (sy357 ing590))) -(recipe r357 (key (sx357 ing477))) -(recipe r357 (key (sy357 ing591))) -(recipe r357 (key (sx357 ing478))) -(recipe r357 (key (sy357 ing592))) -(recipe r357 (key (sx357 ing479))) -(recipe r357 (key (sy357 ing593))) -(recipe r357 (key (sx357 ing480))) -(recipe r357 (key (sy357 ing594))) -(recipe r357 (key (sx357 ing481))) -(recipe r357 (key (sy357 ing595))) -(recipe r357 (key (sx357 ing482))) -(recipe r357 (key (sy357 ing596))) -(recipe r358 (numIngredients 2)) -(recipe r358 (result (id item358))) -(recipe r358 (pattern 0 sx358)) -(recipe r358 (pattern 1 sy358)) -(recipe r358 (key (sx358 ing474))) -(recipe r358 (key (sy358 ing590))) -(recipe r358 (key (sx358 ing475))) -(recipe r358 (key (sy358 ing591))) -(recipe r358 (key (sx358 ing476))) -(recipe r358 (key (sy358 ing592))) -(recipe r358 (key (sx358 ing477))) -(recipe r358 (key (sy358 ing593))) -(recipe r358 (key (sx358 ing478))) -(recipe r358 (key (sy358 ing594))) -(recipe r358 (key (sx358 ing479))) -(recipe r358 (key (sy358 ing595))) -(recipe r358 (key (sx358 ing480))) -(recipe r358 (key (sy358 ing596))) -(recipe r358 (key (sx358 ing481))) -(recipe r358 (key (sy358 ing597))) -(recipe r358 (key (sx358 ing482))) -(recipe r358 (key (sy358 ing598))) -(recipe r358 (key (sx358 ing483))) -(recipe r358 (key (sy358 ing599))) -(recipe r358 (key (sx358 ing484))) -(recipe r358 (key (sy358 ing0))) -(recipe r358 (key (sx358 ing485))) -(recipe r358 (key (sy358 ing1))) -(recipe r359 (numIngredients 2)) -(recipe r359 (result (id item359))) -(recipe r359 (pattern 0 sx359)) -(recipe r359 (pattern 1 sy359)) -(recipe r359 (key (sx359 ing477))) -(recipe r359 (key (sy359 ing595))) -(recipe r359 (key (sx359 ing478))) -(recipe r359 (key (sy359 ing596))) -(recipe r359 (key (sx359 ing479))) -(recipe r359 (key (sy359 ing597))) -(recipe r359 (key (sx359 ing480))) -(recipe r359 (key (sy359 ing598))) -(recipe r359 (key (sx359 ing481))) -(recipe r359 (key (sy359 ing599))) -(recipe r359 (key (sx359 ing482))) -(recipe r359 (key (sy359 ing0))) -(recipe r359 (key (sx359 ing483))) -(recipe r359 (key (sy359 ing1))) -(recipe r359 (key (sx359 ing484))) -(recipe r359 (key (sy359 ing2))) -(recipe r359 (key (sx359 ing485))) -(recipe r359 (key (sy359 ing3))) -(recipe r359 (key (sx359 ing486))) -(recipe r359 (key (sy359 ing4))) -(recipe r359 (key (sx359 ing487))) -(recipe r359 (key (sy359 ing5))) -(recipe r359 (key (sx359 ing488))) -(recipe r359 (key (sy359 ing6))) -(recipe r360 (numIngredients 2)) -(recipe r360 (result (id item360))) -(recipe r360 (pattern 0 sx360)) -(recipe r360 (pattern 1 sy360)) -(recipe r360 (key (sx360 ing480))) -(recipe r360 (key (sy360 ing0))) -(recipe r360 (key (sx360 ing481))) -(recipe r360 (key (sy360 ing1))) -(recipe r360 (key (sx360 ing482))) -(recipe r360 (key (sy360 ing2))) -(recipe r360 (key (sx360 ing483))) -(recipe r360 (key (sy360 ing3))) -(recipe r360 (key (sx360 ing484))) -(recipe r360 (key (sy360 ing4))) -(recipe r360 (key (sx360 ing485))) -(recipe r360 (key (sy360 ing5))) -(recipe r360 (key (sx360 ing486))) -(recipe r360 (key (sy360 ing6))) -(recipe r360 (key (sx360 ing487))) -(recipe r360 (key (sy360 ing7))) -(recipe r360 (key (sx360 ing488))) -(recipe r360 (key (sy360 ing8))) -(recipe r360 (key (sx360 ing489))) -(recipe r360 (key (sy360 ing9))) -(recipe r360 (key (sx360 ing490))) -(recipe r360 (key (sy360 ing10))) -(recipe r360 (key (sx360 ing491))) -(recipe r360 (key (sy360 ing11))) -(recipe r361 (numIngredients 2)) -(recipe r361 (result (id item361))) -(recipe r361 (pattern 0 sx361)) -(recipe r361 (pattern 1 sy361)) -(recipe r361 (key (sx361 ing483))) -(recipe r361 (key (sy361 ing5))) -(recipe r361 (key (sx361 ing484))) -(recipe r361 (key (sy361 ing6))) -(recipe r361 (key (sx361 ing485))) -(recipe r361 (key (sy361 ing7))) -(recipe r361 (key (sx361 ing486))) -(recipe r361 (key (sy361 ing8))) -(recipe r361 (key (sx361 ing487))) -(recipe r361 (key (sy361 ing9))) -(recipe r361 (key (sx361 ing488))) -(recipe r361 (key (sy361 ing10))) -(recipe r361 (key (sx361 ing489))) -(recipe r361 (key (sy361 ing11))) -(recipe r361 (key (sx361 ing490))) -(recipe r361 (key (sy361 ing12))) -(recipe r361 (key (sx361 ing491))) -(recipe r361 (key (sy361 ing13))) -(recipe r361 (key (sx361 ing492))) -(recipe r361 (key (sy361 ing14))) -(recipe r361 (key (sx361 ing493))) -(recipe r361 (key (sy361 ing15))) -(recipe r361 (key (sx361 ing494))) -(recipe r361 (key (sy361 ing16))) -(recipe r362 (numIngredients 2)) -(recipe r362 (result (id item362))) -(recipe r362 (pattern 0 sx362)) -(recipe r362 (pattern 1 sy362)) -(recipe r362 (key (sx362 ing486))) -(recipe r362 (key (sy362 ing10))) -(recipe r362 (key (sx362 ing487))) -(recipe r362 (key (sy362 ing11))) -(recipe r362 (key (sx362 ing488))) -(recipe r362 (key (sy362 ing12))) -(recipe r362 (key (sx362 ing489))) -(recipe r362 (key (sy362 ing13))) -(recipe r362 (key (sx362 ing490))) -(recipe r362 (key (sy362 ing14))) -(recipe r362 (key (sx362 ing491))) -(recipe r362 (key (sy362 ing15))) -(recipe r362 (key (sx362 ing492))) -(recipe r362 (key (sy362 ing16))) -(recipe r362 (key (sx362 ing493))) -(recipe r362 (key (sy362 ing17))) -(recipe r362 (key (sx362 ing494))) -(recipe r362 (key (sy362 ing18))) -(recipe r362 (key (sx362 ing495))) -(recipe r362 (key (sy362 ing19))) -(recipe r362 (key (sx362 ing496))) -(recipe r362 (key (sy362 ing20))) -(recipe r362 (key (sx362 ing497))) -(recipe r362 (key (sy362 ing21))) -(recipe r363 (numIngredients 2)) -(recipe r363 (result (id item363))) -(recipe r363 (pattern 0 sx363)) -(recipe r363 (pattern 1 sy363)) -(recipe r363 (key (sx363 ing489))) -(recipe r363 (key (sy363 ing15))) -(recipe r363 (key (sx363 ing490))) -(recipe r363 (key (sy363 ing16))) -(recipe r363 (key (sx363 ing491))) -(recipe r363 (key (sy363 ing17))) -(recipe r363 (key (sx363 ing492))) -(recipe r363 (key (sy363 ing18))) -(recipe r363 (key (sx363 ing493))) -(recipe r363 (key (sy363 ing19))) -(recipe r363 (key (sx363 ing494))) -(recipe r363 (key (sy363 ing20))) -(recipe r363 (key (sx363 ing495))) -(recipe r363 (key (sy363 ing21))) -(recipe r363 (key (sx363 ing496))) -(recipe r363 (key (sy363 ing22))) -(recipe r363 (key (sx363 ing497))) -(recipe r363 (key (sy363 ing23))) -(recipe r363 (key (sx363 ing498))) -(recipe r363 (key (sy363 ing24))) -(recipe r363 (key (sx363 ing499))) -(recipe r363 (key (sy363 ing25))) -(recipe r363 (key (sx363 ing500))) -(recipe r363 (key (sy363 ing26))) -(recipe r364 (numIngredients 2)) -(recipe r364 (result (id item364))) -(recipe r364 (pattern 0 sx364)) -(recipe r364 (pattern 1 sy364)) -(recipe r364 (key (sx364 ing492))) -(recipe r364 (key (sy364 ing20))) -(recipe r364 (key (sx364 ing493))) -(recipe r364 (key (sy364 ing21))) -(recipe r364 (key (sx364 ing494))) -(recipe r364 (key (sy364 ing22))) -(recipe r364 (key (sx364 ing495))) -(recipe r364 (key (sy364 ing23))) -(recipe r364 (key (sx364 ing496))) -(recipe r364 (key (sy364 ing24))) -(recipe r364 (key (sx364 ing497))) -(recipe r364 (key (sy364 ing25))) -(recipe r364 (key (sx364 ing498))) -(recipe r364 (key (sy364 ing26))) -(recipe r364 (key (sx364 ing499))) -(recipe r364 (key (sy364 ing27))) -(recipe r364 (key (sx364 ing500))) -(recipe r364 (key (sy364 ing28))) -(recipe r364 (key (sx364 ing501))) -(recipe r364 (key (sy364 ing29))) -(recipe r364 (key (sx364 ing502))) -(recipe r364 (key (sy364 ing30))) -(recipe r364 (key (sx364 ing503))) -(recipe r364 (key (sy364 ing31))) -(recipe r365 (numIngredients 2)) -(recipe r365 (result (id item365))) -(recipe r365 (pattern 0 sx365)) -(recipe r365 (pattern 1 sy365)) -(recipe r365 (key (sx365 ing495))) -(recipe r365 (key (sy365 ing25))) -(recipe r365 (key (sx365 ing496))) -(recipe r365 (key (sy365 ing26))) -(recipe r365 (key (sx365 ing497))) -(recipe r365 (key (sy365 ing27))) -(recipe r365 (key (sx365 ing498))) -(recipe r365 (key (sy365 ing28))) -(recipe r365 (key (sx365 ing499))) -(recipe r365 (key (sy365 ing29))) -(recipe r365 (key (sx365 ing500))) -(recipe r365 (key (sy365 ing30))) -(recipe r365 (key (sx365 ing501))) -(recipe r365 (key (sy365 ing31))) -(recipe r365 (key (sx365 ing502))) -(recipe r365 (key (sy365 ing32))) -(recipe r365 (key (sx365 ing503))) -(recipe r365 (key (sy365 ing33))) -(recipe r365 (key (sx365 ing504))) -(recipe r365 (key (sy365 ing34))) -(recipe r365 (key (sx365 ing505))) -(recipe r365 (key (sy365 ing35))) -(recipe r365 (key (sx365 ing506))) -(recipe r365 (key (sy365 ing36))) -(recipe r366 (numIngredients 2)) -(recipe r366 (result (id item366))) -(recipe r366 (pattern 0 sx366)) -(recipe r366 (pattern 1 sy366)) -(recipe r366 (key (sx366 ing498))) -(recipe r366 (key (sy366 ing30))) -(recipe r366 (key (sx366 ing499))) -(recipe r366 (key (sy366 ing31))) -(recipe r366 (key (sx366 ing500))) -(recipe r366 (key (sy366 ing32))) -(recipe r366 (key (sx366 ing501))) -(recipe r366 (key (sy366 ing33))) -(recipe r366 (key (sx366 ing502))) -(recipe r366 (key (sy366 ing34))) -(recipe r366 (key (sx366 ing503))) -(recipe r366 (key (sy366 ing35))) -(recipe r366 (key (sx366 ing504))) -(recipe r366 (key (sy366 ing36))) -(recipe r366 (key (sx366 ing505))) -(recipe r366 (key (sy366 ing37))) -(recipe r366 (key (sx366 ing506))) -(recipe r366 (key (sy366 ing38))) -(recipe r366 (key (sx366 ing507))) -(recipe r366 (key (sy366 ing39))) -(recipe r366 (key (sx366 ing508))) -(recipe r366 (key (sy366 ing40))) -(recipe r366 (key (sx366 ing509))) -(recipe r366 (key (sy366 ing41))) -(recipe r367 (numIngredients 2)) -(recipe r367 (result (id item367))) -(recipe r367 (pattern 0 sx367)) -(recipe r367 (pattern 1 sy367)) -(recipe r367 (key (sx367 ing501))) -(recipe r367 (key (sy367 ing35))) -(recipe r367 (key (sx367 ing502))) -(recipe r367 (key (sy367 ing36))) -(recipe r367 (key (sx367 ing503))) -(recipe r367 (key (sy367 ing37))) -(recipe r367 (key (sx367 ing504))) -(recipe r367 (key (sy367 ing38))) -(recipe r367 (key (sx367 ing505))) -(recipe r367 (key (sy367 ing39))) -(recipe r367 (key (sx367 ing506))) -(recipe r367 (key (sy367 ing40))) -(recipe r367 (key (sx367 ing507))) -(recipe r367 (key (sy367 ing41))) -(recipe r367 (key (sx367 ing508))) -(recipe r367 (key (sy367 ing42))) -(recipe r367 (key (sx367 ing509))) -(recipe r367 (key (sy367 ing43))) -(recipe r367 (key (sx367 ing510))) -(recipe r367 (key (sy367 ing44))) -(recipe r367 (key (sx367 ing511))) -(recipe r367 (key (sy367 ing45))) -(recipe r367 (key (sx367 ing512))) -(recipe r367 (key (sy367 ing46))) -(recipe r368 (numIngredients 2)) -(recipe r368 (result (id item368))) -(recipe r368 (pattern 0 sx368)) -(recipe r368 (pattern 1 sy368)) -(recipe r368 (key (sx368 ing504))) -(recipe r368 (key (sy368 ing40))) -(recipe r368 (key (sx368 ing505))) -(recipe r368 (key (sy368 ing41))) -(recipe r368 (key (sx368 ing506))) -(recipe r368 (key (sy368 ing42))) -(recipe r368 (key (sx368 ing507))) -(recipe r368 (key (sy368 ing43))) -(recipe r368 (key (sx368 ing508))) -(recipe r368 (key (sy368 ing44))) -(recipe r368 (key (sx368 ing509))) -(recipe r368 (key (sy368 ing45))) -(recipe r368 (key (sx368 ing510))) -(recipe r368 (key (sy368 ing46))) -(recipe r368 (key (sx368 ing511))) -(recipe r368 (key (sy368 ing47))) -(recipe r368 (key (sx368 ing512))) -(recipe r368 (key (sy368 ing48))) -(recipe r368 (key (sx368 ing513))) -(recipe r368 (key (sy368 ing49))) -(recipe r368 (key (sx368 ing514))) -(recipe r368 (key (sy368 ing50))) -(recipe r368 (key (sx368 ing515))) -(recipe r368 (key (sy368 ing51))) -(recipe r369 (numIngredients 2)) -(recipe r369 (result (id item369))) -(recipe r369 (pattern 0 sx369)) -(recipe r369 (pattern 1 sy369)) -(recipe r369 (key (sx369 ing507))) -(recipe r369 (key (sy369 ing45))) -(recipe r369 (key (sx369 ing508))) -(recipe r369 (key (sy369 ing46))) -(recipe r369 (key (sx369 ing509))) -(recipe r369 (key (sy369 ing47))) -(recipe r369 (key (sx369 ing510))) -(recipe r369 (key (sy369 ing48))) -(recipe r369 (key (sx369 ing511))) -(recipe r369 (key (sy369 ing49))) -(recipe r369 (key (sx369 ing512))) -(recipe r369 (key (sy369 ing50))) -(recipe r369 (key (sx369 ing513))) -(recipe r369 (key (sy369 ing51))) -(recipe r369 (key (sx369 ing514))) -(recipe r369 (key (sy369 ing52))) -(recipe r369 (key (sx369 ing515))) -(recipe r369 (key (sy369 ing53))) -(recipe r369 (key (sx369 ing516))) -(recipe r369 (key (sy369 ing54))) -(recipe r369 (key (sx369 ing517))) -(recipe r369 (key (sy369 ing55))) -(recipe r369 (key (sx369 ing518))) -(recipe r369 (key (sy369 ing56))) -(recipe r370 (numIngredients 2)) -(recipe r370 (result (id item370))) -(recipe r370 (pattern 0 sx370)) -(recipe r370 (pattern 1 sy370)) -(recipe r370 (key (sx370 ing510))) -(recipe r370 (key (sy370 ing50))) -(recipe r370 (key (sx370 ing511))) -(recipe r370 (key (sy370 ing51))) -(recipe r370 (key (sx370 ing512))) -(recipe r370 (key (sy370 ing52))) -(recipe r370 (key (sx370 ing513))) -(recipe r370 (key (sy370 ing53))) -(recipe r370 (key (sx370 ing514))) -(recipe r370 (key (sy370 ing54))) -(recipe r370 (key (sx370 ing515))) -(recipe r370 (key (sy370 ing55))) -(recipe r370 (key (sx370 ing516))) -(recipe r370 (key (sy370 ing56))) -(recipe r370 (key (sx370 ing517))) -(recipe r370 (key (sy370 ing57))) -(recipe r370 (key (sx370 ing518))) -(recipe r370 (key (sy370 ing58))) -(recipe r370 (key (sx370 ing519))) -(recipe r370 (key (sy370 ing59))) -(recipe r370 (key (sx370 ing520))) -(recipe r370 (key (sy370 ing60))) -(recipe r370 (key (sx370 ing521))) -(recipe r370 (key (sy370 ing61))) -(recipe r371 (numIngredients 2)) -(recipe r371 (result (id item371))) -(recipe r371 (pattern 0 sx371)) -(recipe r371 (pattern 1 sy371)) -(recipe r371 (key (sx371 ing513))) -(recipe r371 (key (sy371 ing55))) -(recipe r371 (key (sx371 ing514))) -(recipe r371 (key (sy371 ing56))) -(recipe r371 (key (sx371 ing515))) -(recipe r371 (key (sy371 ing57))) -(recipe r371 (key (sx371 ing516))) -(recipe r371 (key (sy371 ing58))) -(recipe r371 (key (sx371 ing517))) -(recipe r371 (key (sy371 ing59))) -(recipe r371 (key (sx371 ing518))) -(recipe r371 (key (sy371 ing60))) -(recipe r371 (key (sx371 ing519))) -(recipe r371 (key (sy371 ing61))) -(recipe r371 (key (sx371 ing520))) -(recipe r371 (key (sy371 ing62))) -(recipe r371 (key (sx371 ing521))) -(recipe r371 (key (sy371 ing63))) -(recipe r371 (key (sx371 ing522))) -(recipe r371 (key (sy371 ing64))) -(recipe r371 (key (sx371 ing523))) -(recipe r371 (key (sy371 ing65))) -(recipe r371 (key (sx371 ing524))) -(recipe r371 (key (sy371 ing66))) -(recipe r372 (numIngredients 2)) -(recipe r372 (result (id item372))) -(recipe r372 (pattern 0 sx372)) -(recipe r372 (pattern 1 sy372)) -(recipe r372 (key (sx372 ing516))) -(recipe r372 (key (sy372 ing60))) -(recipe r372 (key (sx372 ing517))) -(recipe r372 (key (sy372 ing61))) -(recipe r372 (key (sx372 ing518))) -(recipe r372 (key (sy372 ing62))) -(recipe r372 (key (sx372 ing519))) -(recipe r372 (key (sy372 ing63))) -(recipe r372 (key (sx372 ing520))) -(recipe r372 (key (sy372 ing64))) -(recipe r372 (key (sx372 ing521))) -(recipe r372 (key (sy372 ing65))) -(recipe r372 (key (sx372 ing522))) -(recipe r372 (key (sy372 ing66))) -(recipe r372 (key (sx372 ing523))) -(recipe r372 (key (sy372 ing67))) -(recipe r372 (key (sx372 ing524))) -(recipe r372 (key (sy372 ing68))) -(recipe r372 (key (sx372 ing525))) -(recipe r372 (key (sy372 ing69))) -(recipe r372 (key (sx372 ing526))) -(recipe r372 (key (sy372 ing70))) -(recipe r372 (key (sx372 ing527))) -(recipe r372 (key (sy372 ing71))) -(recipe r373 (numIngredients 2)) -(recipe r373 (result (id item373))) -(recipe r373 (pattern 0 sx373)) -(recipe r373 (pattern 1 sy373)) -(recipe r373 (key (sx373 ing519))) -(recipe r373 (key (sy373 ing65))) -(recipe r373 (key (sx373 ing520))) -(recipe r373 (key (sy373 ing66))) -(recipe r373 (key (sx373 ing521))) -(recipe r373 (key (sy373 ing67))) -(recipe r373 (key (sx373 ing522))) -(recipe r373 (key (sy373 ing68))) -(recipe r373 (key (sx373 ing523))) -(recipe r373 (key (sy373 ing69))) -(recipe r373 (key (sx373 ing524))) -(recipe r373 (key (sy373 ing70))) -(recipe r373 (key (sx373 ing525))) -(recipe r373 (key (sy373 ing71))) -(recipe r373 (key (sx373 ing526))) -(recipe r373 (key (sy373 ing72))) -(recipe r373 (key (sx373 ing527))) -(recipe r373 (key (sy373 ing73))) -(recipe r373 (key (sx373 ing528))) -(recipe r373 (key (sy373 ing74))) -(recipe r373 (key (sx373 ing529))) -(recipe r373 (key (sy373 ing75))) -(recipe r373 (key (sx373 ing530))) -(recipe r373 (key (sy373 ing76))) -(recipe r374 (numIngredients 2)) -(recipe r374 (result (id item374))) -(recipe r374 (pattern 0 sx374)) -(recipe r374 (pattern 1 sy374)) -(recipe r374 (key (sx374 ing522))) -(recipe r374 (key (sy374 ing70))) -(recipe r374 (key (sx374 ing523))) -(recipe r374 (key (sy374 ing71))) -(recipe r374 (key (sx374 ing524))) -(recipe r374 (key (sy374 ing72))) -(recipe r374 (key (sx374 ing525))) -(recipe r374 (key (sy374 ing73))) -(recipe r374 (key (sx374 ing526))) -(recipe r374 (key (sy374 ing74))) -(recipe r374 (key (sx374 ing527))) -(recipe r374 (key (sy374 ing75))) -(recipe r374 (key (sx374 ing528))) -(recipe r374 (key (sy374 ing76))) -(recipe r374 (key (sx374 ing529))) -(recipe r374 (key (sy374 ing77))) -(recipe r374 (key (sx374 ing530))) -(recipe r374 (key (sy374 ing78))) -(recipe r374 (key (sx374 ing531))) -(recipe r374 (key (sy374 ing79))) -(recipe r374 (key (sx374 ing532))) -(recipe r374 (key (sy374 ing80))) -(recipe r374 (key (sx374 ing533))) -(recipe r374 (key (sy374 ing81))) -(recipe r375 (numIngredients 2)) -(recipe r375 (result (id item375))) -(recipe r375 (pattern 0 sx375)) -(recipe r375 (pattern 1 sy375)) -(recipe r375 (key (sx375 ing525))) -(recipe r375 (key (sy375 ing75))) -(recipe r375 (key (sx375 ing526))) -(recipe r375 (key (sy375 ing76))) -(recipe r375 (key (sx375 ing527))) -(recipe r375 (key (sy375 ing77))) -(recipe r375 (key (sx375 ing528))) -(recipe r375 (key (sy375 ing78))) -(recipe r375 (key (sx375 ing529))) -(recipe r375 (key (sy375 ing79))) -(recipe r375 (key (sx375 ing530))) -(recipe r375 (key (sy375 ing80))) -(recipe r375 (key (sx375 ing531))) -(recipe r375 (key (sy375 ing81))) -(recipe r375 (key (sx375 ing532))) -(recipe r375 (key (sy375 ing82))) -(recipe r375 (key (sx375 ing533))) -(recipe r375 (key (sy375 ing83))) -(recipe r375 (key (sx375 ing534))) -(recipe r375 (key (sy375 ing84))) -(recipe r375 (key (sx375 ing535))) -(recipe r375 (key (sy375 ing85))) -(recipe r375 (key (sx375 ing536))) -(recipe r375 (key (sy375 ing86))) -(recipe r376 (numIngredients 2)) -(recipe r376 (result (id item376))) -(recipe r376 (pattern 0 sx376)) -(recipe r376 (pattern 1 sy376)) -(recipe r376 (key (sx376 ing528))) -(recipe r376 (key (sy376 ing80))) -(recipe r376 (key (sx376 ing529))) -(recipe r376 (key (sy376 ing81))) -(recipe r376 (key (sx376 ing530))) -(recipe r376 (key (sy376 ing82))) -(recipe r376 (key (sx376 ing531))) -(recipe r376 (key (sy376 ing83))) -(recipe r376 (key (sx376 ing532))) -(recipe r376 (key (sy376 ing84))) -(recipe r376 (key (sx376 ing533))) -(recipe r376 (key (sy376 ing85))) -(recipe r376 (key (sx376 ing534))) -(recipe r376 (key (sy376 ing86))) -(recipe r376 (key (sx376 ing535))) -(recipe r376 (key (sy376 ing87))) -(recipe r376 (key (sx376 ing536))) -(recipe r376 (key (sy376 ing88))) -(recipe r376 (key (sx376 ing537))) -(recipe r376 (key (sy376 ing89))) -(recipe r376 (key (sx376 ing538))) -(recipe r376 (key (sy376 ing90))) -(recipe r376 (key (sx376 ing539))) -(recipe r376 (key (sy376 ing91))) -(recipe r377 (numIngredients 2)) -(recipe r377 (result (id item377))) -(recipe r377 (pattern 0 sx377)) -(recipe r377 (pattern 1 sy377)) -(recipe r377 (key (sx377 ing531))) -(recipe r377 (key (sy377 ing85))) -(recipe r377 (key (sx377 ing532))) -(recipe r377 (key (sy377 ing86))) -(recipe r377 (key (sx377 ing533))) -(recipe r377 (key (sy377 ing87))) -(recipe r377 (key (sx377 ing534))) -(recipe r377 (key (sy377 ing88))) -(recipe r377 (key (sx377 ing535))) -(recipe r377 (key (sy377 ing89))) -(recipe r377 (key (sx377 ing536))) -(recipe r377 (key (sy377 ing90))) -(recipe r377 (key (sx377 ing537))) -(recipe r377 (key (sy377 ing91))) -(recipe r377 (key (sx377 ing538))) -(recipe r377 (key (sy377 ing92))) -(recipe r377 (key (sx377 ing539))) -(recipe r377 (key (sy377 ing93))) -(recipe r377 (key (sx377 ing540))) -(recipe r377 (key (sy377 ing94))) -(recipe r377 (key (sx377 ing541))) -(recipe r377 (key (sy377 ing95))) -(recipe r377 (key (sx377 ing542))) -(recipe r377 (key (sy377 ing96))) -(recipe r378 (numIngredients 2)) -(recipe r378 (result (id item378))) -(recipe r378 (pattern 0 sx378)) -(recipe r378 (pattern 1 sy378)) -(recipe r378 (key (sx378 ing534))) -(recipe r378 (key (sy378 ing90))) -(recipe r378 (key (sx378 ing535))) -(recipe r378 (key (sy378 ing91))) -(recipe r378 (key (sx378 ing536))) -(recipe r378 (key (sy378 ing92))) -(recipe r378 (key (sx378 ing537))) -(recipe r378 (key (sy378 ing93))) -(recipe r378 (key (sx378 ing538))) -(recipe r378 (key (sy378 ing94))) -(recipe r378 (key (sx378 ing539))) -(recipe r378 (key (sy378 ing95))) -(recipe r378 (key (sx378 ing540))) -(recipe r378 (key (sy378 ing96))) -(recipe r378 (key (sx378 ing541))) -(recipe r378 (key (sy378 ing97))) -(recipe r378 (key (sx378 ing542))) -(recipe r378 (key (sy378 ing98))) -(recipe r378 (key (sx378 ing543))) -(recipe r378 (key (sy378 ing99))) -(recipe r378 (key (sx378 ing544))) -(recipe r378 (key (sy378 ing100))) -(recipe r378 (key (sx378 ing545))) -(recipe r378 (key (sy378 ing101))) -(recipe r379 (numIngredients 2)) -(recipe r379 (result (id item379))) -(recipe r379 (pattern 0 sx379)) -(recipe r379 (pattern 1 sy379)) -(recipe r379 (key (sx379 ing537))) -(recipe r379 (key (sy379 ing95))) -(recipe r379 (key (sx379 ing538))) -(recipe r379 (key (sy379 ing96))) -(recipe r379 (key (sx379 ing539))) -(recipe r379 (key (sy379 ing97))) -(recipe r379 (key (sx379 ing540))) -(recipe r379 (key (sy379 ing98))) -(recipe r379 (key (sx379 ing541))) -(recipe r379 (key (sy379 ing99))) -(recipe r379 (key (sx379 ing542))) -(recipe r379 (key (sy379 ing100))) -(recipe r379 (key (sx379 ing543))) -(recipe r379 (key (sy379 ing101))) -(recipe r379 (key (sx379 ing544))) -(recipe r379 (key (sy379 ing102))) -(recipe r379 (key (sx379 ing545))) -(recipe r379 (key (sy379 ing103))) -(recipe r379 (key (sx379 ing546))) -(recipe r379 (key (sy379 ing104))) -(recipe r379 (key (sx379 ing547))) -(recipe r379 (key (sy379 ing105))) -(recipe r379 (key (sx379 ing548))) -(recipe r379 (key (sy379 ing106))) -(recipe r380 (numIngredients 2)) -(recipe r380 (result (id item380))) -(recipe r380 (pattern 0 sx380)) -(recipe r380 (pattern 1 sy380)) -(recipe r380 (key (sx380 ing540))) -(recipe r380 (key (sy380 ing100))) -(recipe r380 (key (sx380 ing541))) -(recipe r380 (key (sy380 ing101))) -(recipe r380 (key (sx380 ing542))) -(recipe r380 (key (sy380 ing102))) -(recipe r380 (key (sx380 ing543))) -(recipe r380 (key (sy380 ing103))) -(recipe r380 (key (sx380 ing544))) -(recipe r380 (key (sy380 ing104))) -(recipe r380 (key (sx380 ing545))) -(recipe r380 (key (sy380 ing105))) -(recipe r380 (key (sx380 ing546))) -(recipe r380 (key (sy380 ing106))) -(recipe r380 (key (sx380 ing547))) -(recipe r380 (key (sy380 ing107))) -(recipe r380 (key (sx380 ing548))) -(recipe r380 (key (sy380 ing108))) -(recipe r380 (key (sx380 ing549))) -(recipe r380 (key (sy380 ing109))) -(recipe r380 (key (sx380 ing550))) -(recipe r380 (key (sy380 ing110))) -(recipe r380 (key (sx380 ing551))) -(recipe r380 (key (sy380 ing111))) -(recipe r381 (numIngredients 2)) -(recipe r381 (result (id item381))) -(recipe r381 (pattern 0 sx381)) -(recipe r381 (pattern 1 sy381)) -(recipe r381 (key (sx381 ing543))) -(recipe r381 (key (sy381 ing105))) -(recipe r381 (key (sx381 ing544))) -(recipe r381 (key (sy381 ing106))) -(recipe r381 (key (sx381 ing545))) -(recipe r381 (key (sy381 ing107))) -(recipe r381 (key (sx381 ing546))) -(recipe r381 (key (sy381 ing108))) -(recipe r381 (key (sx381 ing547))) -(recipe r381 (key (sy381 ing109))) -(recipe r381 (key (sx381 ing548))) -(recipe r381 (key (sy381 ing110))) -(recipe r381 (key (sx381 ing549))) -(recipe r381 (key (sy381 ing111))) -(recipe r381 (key (sx381 ing550))) -(recipe r381 (key (sy381 ing112))) -(recipe r381 (key (sx381 ing551))) -(recipe r381 (key (sy381 ing113))) -(recipe r381 (key (sx381 ing552))) -(recipe r381 (key (sy381 ing114))) -(recipe r381 (key (sx381 ing553))) -(recipe r381 (key (sy381 ing115))) -(recipe r381 (key (sx381 ing554))) -(recipe r381 (key (sy381 ing116))) -(recipe r382 (numIngredients 2)) -(recipe r382 (result (id item382))) -(recipe r382 (pattern 0 sx382)) -(recipe r382 (pattern 1 sy382)) -(recipe r382 (key (sx382 ing546))) -(recipe r382 (key (sy382 ing110))) -(recipe r382 (key (sx382 ing547))) -(recipe r382 (key (sy382 ing111))) -(recipe r382 (key (sx382 ing548))) -(recipe r382 (key (sy382 ing112))) -(recipe r382 (key (sx382 ing549))) -(recipe r382 (key (sy382 ing113))) -(recipe r382 (key (sx382 ing550))) -(recipe r382 (key (sy382 ing114))) -(recipe r382 (key (sx382 ing551))) -(recipe r382 (key (sy382 ing115))) -(recipe r382 (key (sx382 ing552))) -(recipe r382 (key (sy382 ing116))) -(recipe r382 (key (sx382 ing553))) -(recipe r382 (key (sy382 ing117))) -(recipe r382 (key (sx382 ing554))) -(recipe r382 (key (sy382 ing118))) -(recipe r382 (key (sx382 ing555))) -(recipe r382 (key (sy382 ing119))) -(recipe r382 (key (sx382 ing556))) -(recipe r382 (key (sy382 ing120))) -(recipe r382 (key (sx382 ing557))) -(recipe r382 (key (sy382 ing121))) -(recipe r383 (numIngredients 2)) -(recipe r383 (result (id item383))) -(recipe r383 (pattern 0 sx383)) -(recipe r383 (pattern 1 sy383)) -(recipe r383 (key (sx383 ing549))) -(recipe r383 (key (sy383 ing115))) -(recipe r383 (key (sx383 ing550))) -(recipe r383 (key (sy383 ing116))) -(recipe r383 (key (sx383 ing551))) -(recipe r383 (key (sy383 ing117))) -(recipe r383 (key (sx383 ing552))) -(recipe r383 (key (sy383 ing118))) -(recipe r383 (key (sx383 ing553))) -(recipe r383 (key (sy383 ing119))) -(recipe r383 (key (sx383 ing554))) -(recipe r383 (key (sy383 ing120))) -(recipe r383 (key (sx383 ing555))) -(recipe r383 (key (sy383 ing121))) -(recipe r383 (key (sx383 ing556))) -(recipe r383 (key (sy383 ing122))) -(recipe r383 (key (sx383 ing557))) -(recipe r383 (key (sy383 ing123))) -(recipe r383 (key (sx383 ing558))) -(recipe r383 (key (sy383 ing124))) -(recipe r383 (key (sx383 ing559))) -(recipe r383 (key (sy383 ing125))) -(recipe r383 (key (sx383 ing560))) -(recipe r383 (key (sy383 ing126))) -(recipe r384 (numIngredients 2)) -(recipe r384 (result (id item384))) -(recipe r384 (pattern 0 sx384)) -(recipe r384 (pattern 1 sy384)) -(recipe r384 (key (sx384 ing552))) -(recipe r384 (key (sy384 ing120))) -(recipe r384 (key (sx384 ing553))) -(recipe r384 (key (sy384 ing121))) -(recipe r384 (key (sx384 ing554))) -(recipe r384 (key (sy384 ing122))) -(recipe r384 (key (sx384 ing555))) -(recipe r384 (key (sy384 ing123))) -(recipe r384 (key (sx384 ing556))) -(recipe r384 (key (sy384 ing124))) -(recipe r384 (key (sx384 ing557))) -(recipe r384 (key (sy384 ing125))) -(recipe r384 (key (sx384 ing558))) -(recipe r384 (key (sy384 ing126))) -(recipe r384 (key (sx384 ing559))) -(recipe r384 (key (sy384 ing127))) -(recipe r384 (key (sx384 ing560))) -(recipe r384 (key (sy384 ing128))) -(recipe r384 (key (sx384 ing561))) -(recipe r384 (key (sy384 ing129))) -(recipe r384 (key (sx384 ing562))) -(recipe r384 (key (sy384 ing130))) -(recipe r384 (key (sx384 ing563))) -(recipe r384 (key (sy384 ing131))) -(recipe r385 (numIngredients 2)) -(recipe r385 (result (id item385))) -(recipe r385 (pattern 0 sx385)) -(recipe r385 (pattern 1 sy385)) -(recipe r385 (key (sx385 ing555))) -(recipe r385 (key (sy385 ing125))) -(recipe r385 (key (sx385 ing556))) -(recipe r385 (key (sy385 ing126))) -(recipe r385 (key (sx385 ing557))) -(recipe r385 (key (sy385 ing127))) -(recipe r385 (key (sx385 ing558))) -(recipe r385 (key (sy385 ing128))) -(recipe r385 (key (sx385 ing559))) -(recipe r385 (key (sy385 ing129))) -(recipe r385 (key (sx385 ing560))) -(recipe r385 (key (sy385 ing130))) -(recipe r385 (key (sx385 ing561))) -(recipe r385 (key (sy385 ing131))) -(recipe r385 (key (sx385 ing562))) -(recipe r385 (key (sy385 ing132))) -(recipe r385 (key (sx385 ing563))) -(recipe r385 (key (sy385 ing133))) -(recipe r385 (key (sx385 ing564))) -(recipe r385 (key (sy385 ing134))) -(recipe r385 (key (sx385 ing565))) -(recipe r385 (key (sy385 ing135))) -(recipe r385 (key (sx385 ing566))) -(recipe r385 (key (sy385 ing136))) -(recipe r386 (numIngredients 2)) -(recipe r386 (result (id item386))) -(recipe r386 (pattern 0 sx386)) -(recipe r386 (pattern 1 sy386)) -(recipe r386 (key (sx386 ing558))) -(recipe r386 (key (sy386 ing130))) -(recipe r386 (key (sx386 ing559))) -(recipe r386 (key (sy386 ing131))) -(recipe r386 (key (sx386 ing560))) -(recipe r386 (key (sy386 ing132))) -(recipe r386 (key (sx386 ing561))) -(recipe r386 (key (sy386 ing133))) -(recipe r386 (key (sx386 ing562))) -(recipe r386 (key (sy386 ing134))) -(recipe r386 (key (sx386 ing563))) -(recipe r386 (key (sy386 ing135))) -(recipe r386 (key (sx386 ing564))) -(recipe r386 (key (sy386 ing136))) -(recipe r386 (key (sx386 ing565))) -(recipe r386 (key (sy386 ing137))) -(recipe r386 (key (sx386 ing566))) -(recipe r386 (key (sy386 ing138))) -(recipe r386 (key (sx386 ing567))) -(recipe r386 (key (sy386 ing139))) -(recipe r386 (key (sx386 ing568))) -(recipe r386 (key (sy386 ing140))) -(recipe r386 (key (sx386 ing569))) -(recipe r386 (key (sy386 ing141))) -(recipe r387 (numIngredients 2)) -(recipe r387 (result (id item387))) -(recipe r387 (pattern 0 sx387)) -(recipe r387 (pattern 1 sy387)) -(recipe r387 (key (sx387 ing561))) -(recipe r387 (key (sy387 ing135))) -(recipe r387 (key (sx387 ing562))) -(recipe r387 (key (sy387 ing136))) -(recipe r387 (key (sx387 ing563))) -(recipe r387 (key (sy387 ing137))) -(recipe r387 (key (sx387 ing564))) -(recipe r387 (key (sy387 ing138))) -(recipe r387 (key (sx387 ing565))) -(recipe r387 (key (sy387 ing139))) -(recipe r387 (key (sx387 ing566))) -(recipe r387 (key (sy387 ing140))) -(recipe r387 (key (sx387 ing567))) -(recipe r387 (key (sy387 ing141))) -(recipe r387 (key (sx387 ing568))) -(recipe r387 (key (sy387 ing142))) -(recipe r387 (key (sx387 ing569))) -(recipe r387 (key (sy387 ing143))) -(recipe r387 (key (sx387 ing570))) -(recipe r387 (key (sy387 ing144))) -(recipe r387 (key (sx387 ing571))) -(recipe r387 (key (sy387 ing145))) -(recipe r387 (key (sx387 ing572))) -(recipe r387 (key (sy387 ing146))) -(recipe r388 (numIngredients 2)) -(recipe r388 (result (id item388))) -(recipe r388 (pattern 0 sx388)) -(recipe r388 (pattern 1 sy388)) -(recipe r388 (key (sx388 ing564))) -(recipe r388 (key (sy388 ing140))) -(recipe r388 (key (sx388 ing565))) -(recipe r388 (key (sy388 ing141))) -(recipe r388 (key (sx388 ing566))) -(recipe r388 (key (sy388 ing142))) -(recipe r388 (key (sx388 ing567))) -(recipe r388 (key (sy388 ing143))) -(recipe r388 (key (sx388 ing568))) -(recipe r388 (key (sy388 ing144))) -(recipe r388 (key (sx388 ing569))) -(recipe r388 (key (sy388 ing145))) -(recipe r388 (key (sx388 ing570))) -(recipe r388 (key (sy388 ing146))) -(recipe r388 (key (sx388 ing571))) -(recipe r388 (key (sy388 ing147))) -(recipe r388 (key (sx388 ing572))) -(recipe r388 (key (sy388 ing148))) -(recipe r388 (key (sx388 ing573))) -(recipe r388 (key (sy388 ing149))) -(recipe r388 (key (sx388 ing574))) -(recipe r388 (key (sy388 ing150))) -(recipe r388 (key (sx388 ing575))) -(recipe r388 (key (sy388 ing151))) -(recipe r389 (numIngredients 2)) -(recipe r389 (result (id item389))) -(recipe r389 (pattern 0 sx389)) -(recipe r389 (pattern 1 sy389)) -(recipe r389 (key (sx389 ing567))) -(recipe r389 (key (sy389 ing145))) -(recipe r389 (key (sx389 ing568))) -(recipe r389 (key (sy389 ing146))) -(recipe r389 (key (sx389 ing569))) -(recipe r389 (key (sy389 ing147))) -(recipe r389 (key (sx389 ing570))) -(recipe r389 (key (sy389 ing148))) -(recipe r389 (key (sx389 ing571))) -(recipe r389 (key (sy389 ing149))) -(recipe r389 (key (sx389 ing572))) -(recipe r389 (key (sy389 ing150))) -(recipe r389 (key (sx389 ing573))) -(recipe r389 (key (sy389 ing151))) -(recipe r389 (key (sx389 ing574))) -(recipe r389 (key (sy389 ing152))) -(recipe r389 (key (sx389 ing575))) -(recipe r389 (key (sy389 ing153))) -(recipe r389 (key (sx389 ing576))) -(recipe r389 (key (sy389 ing154))) -(recipe r389 (key (sx389 ing577))) -(recipe r389 (key (sy389 ing155))) -(recipe r389 (key (sx389 ing578))) -(recipe r389 (key (sy389 ing156))) -(recipe r390 (numIngredients 2)) -(recipe r390 (result (id item390))) -(recipe r390 (pattern 0 sx390)) -(recipe r390 (pattern 1 sy390)) -(recipe r390 (key (sx390 ing570))) -(recipe r390 (key (sy390 ing150))) -(recipe r390 (key (sx390 ing571))) -(recipe r390 (key (sy390 ing151))) -(recipe r390 (key (sx390 ing572))) -(recipe r390 (key (sy390 ing152))) -(recipe r390 (key (sx390 ing573))) -(recipe r390 (key (sy390 ing153))) -(recipe r390 (key (sx390 ing574))) -(recipe r390 (key (sy390 ing154))) -(recipe r390 (key (sx390 ing575))) -(recipe r390 (key (sy390 ing155))) -(recipe r390 (key (sx390 ing576))) -(recipe r390 (key (sy390 ing156))) -(recipe r390 (key (sx390 ing577))) -(recipe r390 (key (sy390 ing157))) -(recipe r390 (key (sx390 ing578))) -(recipe r390 (key (sy390 ing158))) -(recipe r390 (key (sx390 ing579))) -(recipe r390 (key (sy390 ing159))) -(recipe r390 (key (sx390 ing580))) -(recipe r390 (key (sy390 ing160))) -(recipe r390 (key (sx390 ing581))) -(recipe r390 (key (sy390 ing161))) -(recipe r391 (numIngredients 2)) -(recipe r391 (result (id item391))) -(recipe r391 (pattern 0 sx391)) -(recipe r391 (pattern 1 sy391)) -(recipe r391 (key (sx391 ing573))) -(recipe r391 (key (sy391 ing155))) -(recipe r391 (key (sx391 ing574))) -(recipe r391 (key (sy391 ing156))) -(recipe r391 (key (sx391 ing575))) -(recipe r391 (key (sy391 ing157))) -(recipe r391 (key (sx391 ing576))) -(recipe r391 (key (sy391 ing158))) -(recipe r391 (key (sx391 ing577))) -(recipe r391 (key (sy391 ing159))) -(recipe r391 (key (sx391 ing578))) -(recipe r391 (key (sy391 ing160))) -(recipe r391 (key (sx391 ing579))) -(recipe r391 (key (sy391 ing161))) -(recipe r391 (key (sx391 ing580))) -(recipe r391 (key (sy391 ing162))) -(recipe r391 (key (sx391 ing581))) -(recipe r391 (key (sy391 ing163))) -(recipe r391 (key (sx391 ing582))) -(recipe r391 (key (sy391 ing164))) -(recipe r391 (key (sx391 ing583))) -(recipe r391 (key (sy391 ing165))) -(recipe r391 (key (sx391 ing584))) -(recipe r391 (key (sy391 ing166))) -(recipe r392 (numIngredients 2)) -(recipe r392 (result (id item392))) -(recipe r392 (pattern 0 sx392)) -(recipe r392 (pattern 1 sy392)) -(recipe r392 (key (sx392 ing576))) -(recipe r392 (key (sy392 ing160))) -(recipe r392 (key (sx392 ing577))) -(recipe r392 (key (sy392 ing161))) -(recipe r392 (key (sx392 ing578))) -(recipe r392 (key (sy392 ing162))) -(recipe r392 (key (sx392 ing579))) -(recipe r392 (key (sy392 ing163))) -(recipe r392 (key (sx392 ing580))) -(recipe r392 (key (sy392 ing164))) -(recipe r392 (key (sx392 ing581))) -(recipe r392 (key (sy392 ing165))) -(recipe r392 (key (sx392 ing582))) -(recipe r392 (key (sy392 ing166))) -(recipe r392 (key (sx392 ing583))) -(recipe r392 (key (sy392 ing167))) -(recipe r392 (key (sx392 ing584))) -(recipe r392 (key (sy392 ing168))) -(recipe r392 (key (sx392 ing585))) -(recipe r392 (key (sy392 ing169))) -(recipe r392 (key (sx392 ing586))) -(recipe r392 (key (sy392 ing170))) -(recipe r392 (key (sx392 ing587))) -(recipe r392 (key (sy392 ing171))) -(recipe r393 (numIngredients 2)) -(recipe r393 (result (id item393))) -(recipe r393 (pattern 0 sx393)) -(recipe r393 (pattern 1 sy393)) -(recipe r393 (key (sx393 ing579))) -(recipe r393 (key (sy393 ing165))) -(recipe r393 (key (sx393 ing580))) -(recipe r393 (key (sy393 ing166))) -(recipe r393 (key (sx393 ing581))) -(recipe r393 (key (sy393 ing167))) -(recipe r393 (key (sx393 ing582))) -(recipe r393 (key (sy393 ing168))) -(recipe r393 (key (sx393 ing583))) -(recipe r393 (key (sy393 ing169))) -(recipe r393 (key (sx393 ing584))) -(recipe r393 (key (sy393 ing170))) -(recipe r393 (key (sx393 ing585))) -(recipe r393 (key (sy393 ing171))) -(recipe r393 (key (sx393 ing586))) -(recipe r393 (key (sy393 ing172))) -(recipe r393 (key (sx393 ing587))) -(recipe r393 (key (sy393 ing173))) -(recipe r393 (key (sx393 ing588))) -(recipe r393 (key (sy393 ing174))) -(recipe r393 (key (sx393 ing589))) -(recipe r393 (key (sy393 ing175))) -(recipe r393 (key (sx393 ing590))) -(recipe r393 (key (sy393 ing176))) -(recipe r394 (numIngredients 2)) -(recipe r394 (result (id item394))) -(recipe r394 (pattern 0 sx394)) -(recipe r394 (pattern 1 sy394)) -(recipe r394 (key (sx394 ing582))) -(recipe r394 (key (sy394 ing170))) -(recipe r394 (key (sx394 ing583))) -(recipe r394 (key (sy394 ing171))) -(recipe r394 (key (sx394 ing584))) -(recipe r394 (key (sy394 ing172))) -(recipe r394 (key (sx394 ing585))) -(recipe r394 (key (sy394 ing173))) -(recipe r394 (key (sx394 ing586))) -(recipe r394 (key (sy394 ing174))) -(recipe r394 (key (sx394 ing587))) -(recipe r394 (key (sy394 ing175))) -(recipe r394 (key (sx394 ing588))) -(recipe r394 (key (sy394 ing176))) -(recipe r394 (key (sx394 ing589))) -(recipe r394 (key (sy394 ing177))) -(recipe r394 (key (sx394 ing590))) -(recipe r394 (key (sy394 ing178))) -(recipe r394 (key (sx394 ing591))) -(recipe r394 (key (sy394 ing179))) -(recipe r394 (key (sx394 ing592))) -(recipe r394 (key (sy394 ing180))) -(recipe r394 (key (sx394 ing593))) -(recipe r394 (key (sy394 ing181))) -(recipe r395 (numIngredients 2)) -(recipe r395 (result (id item395))) -(recipe r395 (pattern 0 sx395)) -(recipe r395 (pattern 1 sy395)) -(recipe r395 (key (sx395 ing585))) -(recipe r395 (key (sy395 ing175))) -(recipe r395 (key (sx395 ing586))) -(recipe r395 (key (sy395 ing176))) -(recipe r395 (key (sx395 ing587))) -(recipe r395 (key (sy395 ing177))) -(recipe r395 (key (sx395 ing588))) -(recipe r395 (key (sy395 ing178))) -(recipe r395 (key (sx395 ing589))) -(recipe r395 (key (sy395 ing179))) -(recipe r395 (key (sx395 ing590))) -(recipe r395 (key (sy395 ing180))) -(recipe r395 (key (sx395 ing591))) -(recipe r395 (key (sy395 ing181))) -(recipe r395 (key (sx395 ing592))) -(recipe r395 (key (sy395 ing182))) -(recipe r395 (key (sx395 ing593))) -(recipe r395 (key (sy395 ing183))) -(recipe r395 (key (sx395 ing594))) -(recipe r395 (key (sy395 ing184))) -(recipe r395 (key (sx395 ing595))) -(recipe r395 (key (sy395 ing185))) -(recipe r395 (key (sx395 ing596))) -(recipe r395 (key (sy395 ing186))) -(recipe r396 (numIngredients 2)) -(recipe r396 (result (id item396))) -(recipe r396 (pattern 0 sx396)) -(recipe r396 (pattern 1 sy396)) -(recipe r396 (key (sx396 ing588))) -(recipe r396 (key (sy396 ing180))) -(recipe r396 (key (sx396 ing589))) -(recipe r396 (key (sy396 ing181))) -(recipe r396 (key (sx396 ing590))) -(recipe r396 (key (sy396 ing182))) -(recipe r396 (key (sx396 ing591))) -(recipe r396 (key (sy396 ing183))) -(recipe r396 (key (sx396 ing592))) -(recipe r396 (key (sy396 ing184))) -(recipe r396 (key (sx396 ing593))) -(recipe r396 (key (sy396 ing185))) -(recipe r396 (key (sx396 ing594))) -(recipe r396 (key (sy396 ing186))) -(recipe r396 (key (sx396 ing595))) -(recipe r396 (key (sy396 ing187))) -(recipe r396 (key (sx396 ing596))) -(recipe r396 (key (sy396 ing188))) -(recipe r396 (key (sx396 ing597))) -(recipe r396 (key (sy396 ing189))) -(recipe r396 (key (sx396 ing598))) -(recipe r396 (key (sy396 ing190))) -(recipe r396 (key (sx396 ing599))) -(recipe r396 (key (sy396 ing191))) -(recipe r397 (numIngredients 2)) -(recipe r397 (result (id item397))) -(recipe r397 (pattern 0 sx397)) -(recipe r397 (pattern 1 sy397)) -(recipe r397 (key (sx397 ing591))) -(recipe r397 (key (sy397 ing185))) -(recipe r397 (key (sx397 ing592))) -(recipe r397 (key (sy397 ing186))) -(recipe r397 (key (sx397 ing593))) -(recipe r397 (key (sy397 ing187))) -(recipe r397 (key (sx397 ing594))) -(recipe r397 (key (sy397 ing188))) -(recipe r397 (key (sx397 ing595))) -(recipe r397 (key (sy397 ing189))) -(recipe r397 (key (sx397 ing596))) -(recipe r397 (key (sy397 ing190))) -(recipe r397 (key (sx397 ing597))) -(recipe r397 (key (sy397 ing191))) -(recipe r397 (key (sx397 ing598))) -(recipe r397 (key (sy397 ing192))) -(recipe r397 (key (sx397 ing599))) -(recipe r397 (key (sy397 ing193))) -(recipe r397 (key (sx397 ing0))) -(recipe r397 (key (sy397 ing194))) -(recipe r397 (key (sx397 ing1))) -(recipe r397 (key (sy397 ing195))) -(recipe r397 (key (sx397 ing2))) -(recipe r397 (key (sy397 ing196))) -(recipe r398 (numIngredients 2)) -(recipe r398 (result (id item398))) -(recipe r398 (pattern 0 sx398)) -(recipe r398 (pattern 1 sy398)) -(recipe r398 (key (sx398 ing594))) -(recipe r398 (key (sy398 ing190))) -(recipe r398 (key (sx398 ing595))) -(recipe r398 (key (sy398 ing191))) -(recipe r398 (key (sx398 ing596))) -(recipe r398 (key (sy398 ing192))) -(recipe r398 (key (sx398 ing597))) -(recipe r398 (key (sy398 ing193))) -(recipe r398 (key (sx398 ing598))) -(recipe r398 (key (sy398 ing194))) -(recipe r398 (key (sx398 ing599))) -(recipe r398 (key (sy398 ing195))) -(recipe r398 (key (sx398 ing0))) -(recipe r398 (key (sy398 ing196))) -(recipe r398 (key (sx398 ing1))) -(recipe r398 (key (sy398 ing197))) -(recipe r398 (key (sx398 ing2))) -(recipe r398 (key (sy398 ing198))) -(recipe r398 (key (sx398 ing3))) -(recipe r398 (key (sy398 ing199))) -(recipe r398 (key (sx398 ing4))) -(recipe r398 (key (sy398 ing200))) -(recipe r398 (key (sx398 ing5))) -(recipe r398 (key (sy398 ing201))) -(recipe r399 (numIngredients 2)) -(recipe r399 (result (id item399))) -(recipe r399 (pattern 0 sx399)) -(recipe r399 (pattern 1 sy399)) -(recipe r399 (key (sx399 ing597))) -(recipe r399 (key (sy399 ing195))) -(recipe r399 (key (sx399 ing598))) -(recipe r399 (key (sy399 ing196))) -(recipe r399 (key (sx399 ing599))) -(recipe r399 (key (sy399 ing197))) -(recipe r399 (key (sx399 ing0))) -(recipe r399 (key (sy399 ing198))) -(recipe r399 (key (sx399 ing1))) -(recipe r399 (key (sy399 ing199))) -(recipe r399 (key (sx399 ing2))) -(recipe r399 (key (sy399 ing200))) -(recipe r399 (key (sx399 ing3))) -(recipe r399 (key (sy399 ing201))) -(recipe r399 (key (sx399 ing4))) -(recipe r399 (key (sy399 ing202))) -(recipe r399 (key (sx399 ing5))) -(recipe r399 (key (sy399 ing203))) -(recipe r399 (key (sx399 ing6))) -(recipe r399 (key (sy399 ing204))) -(recipe r399 (key (sx399 ing7))) -(recipe r399 (key (sy399 ing205))) -(recipe r399 (key (sx399 ing8))) -(recipe r399 (key (sy399 ing206))) -(inventory ing0) -(inventory ing1) -(inventory ing2) -(inventory ing3) -(inventory ing4) -(inventory ing5) -(inventory ing6) -(inventory ing7) -(inventory ing8) -(inventory ing9) -(inventory ing10) -(inventory ing11) -(inventory ing12) -(inventory ing13) -(inventory ing14) -(inventory ing15) -(inventory ing16) -(inventory ing17) -(inventory ing18) -(inventory ing19) -(inventory ing20) -(inventory ing21) -(inventory ing22) -(inventory ing23) -(inventory ing24) -(inventory ing25) -(inventory ing26) -(inventory ing27) -(inventory ing28) -(inventory ing29) -(inventory ing30) -(inventory ing31) -(inventory ing32) -(inventory ing33) -(inventory ing34) -(inventory ing35) -(inventory ing36) -(inventory ing37) -(inventory ing38) -(inventory ing39) -(inventory ing40) -(inventory ing41) -(inventory ing42) -(inventory ing43) -(inventory ing44) -(inventory ing45) -(inventory ing46) -(inventory ing47) -(inventory ing48) -(inventory ing49) -(inventory ing50) -(inventory ing51) -(inventory ing52) -(inventory ing53) -(inventory ing54) -(inventory ing55) -(inventory ing56) -(inventory ing57) -(inventory ing58) -(inventory ing59) -(inventory ing60) -(inventory ing61) -(inventory ing62) -(inventory ing63) -(inventory ing64) -(inventory ing65) -(inventory ing66) -(inventory ing67) -(inventory ing68) -(inventory ing69) -(inventory ing70) -(inventory ing71) -(inventory ing72) -(inventory ing73) -(inventory ing74) -(inventory ing75) -(inventory ing76) -(inventory ing77) -(inventory ing78) -(inventory ing79) -(inventory ing80) -(inventory ing81) -(inventory ing82) -(inventory ing83) -(inventory ing84) -(inventory ing85) -(inventory ing86) -(inventory ing87) -(inventory ing88) -(inventory ing89) -(inventory ing90) -(inventory ing91) -(inventory ing92) -(inventory ing93) -(inventory ing94) -(inventory ing95) -(inventory ing96) -(inventory ing97) -(inventory ing98) -(inventory ing99) -(inventory ing100) -(inventory ing101) -(inventory ing102) -(inventory ing103) -(inventory ing104) -(inventory ing105) -(inventory ing106) -(inventory ing107) -(inventory ing108) -(inventory ing109) -(inventory ing110) -(inventory ing111) -(inventory ing112) -(inventory ing113) -(inventory ing114) -(inventory ing115) -(inventory ing116) -(inventory ing117) -(inventory ing118) -(inventory ing119) -(inventory ing120) -(inventory ing121) -(inventory ing122) -(inventory ing123) -(inventory ing124) -(inventory ing125) -(inventory ing126) -(inventory ing127) -(inventory ing128) -(inventory ing129) -(inventory ing130) -(inventory ing131) -(inventory ing132) -(inventory ing133) -(inventory ing134) -(inventory ing135) -(inventory ing136) -(inventory ing137) -(inventory ing138) -(inventory ing139) -(inventory ing140) -(inventory ing141) -(inventory ing142) -(inventory ing143) -(inventory ing144) -(inventory ing145) -(inventory ing146) -(inventory ing147) -(inventory ing148) -(inventory ing149) -(inventory ing150) -(inventory ing151) -(inventory ing152) -(inventory ing153) -(inventory ing154) -(inventory ing155) -(inventory ing156) -(inventory ing157) -(inventory ing158) -(inventory ing159) -(inventory ing160) -(inventory ing161) -(inventory ing162) -(inventory ing163) -(inventory ing164) -(inventory ing165) -(inventory ing166) -(inventory ing167) -(inventory ing168) -(inventory ing169) -(inventory ing170) -(inventory ing171) -(inventory ing172) -(inventory ing173) -(inventory ing174) -(inventory ing175) -(inventory ing176) -(inventory ing177) -(inventory ing178) -(inventory ing179) -(inventory ing180) -(inventory ing181) -(inventory ing182) -(inventory ing183) -(inventory ing184) -(inventory ing185) -(inventory ing186) -(inventory ing187) -(inventory ing188) -(inventory ing189) -(inventory ing190) -(inventory ing191) -(inventory ing192) -(inventory ing193) -(inventory ing194) -(inventory ing195) -(inventory ing196) -(inventory ing197) -(inventory ing198) -(inventory ing199) -(inventory ing200) -(inventory ing201) -(inventory ing202) -(inventory ing203) -(inventory ing204) -(inventory ing205) -(inventory ing206) -(inventory ing207) -(inventory ing208) -(inventory ing209) -(inventory ing210) -(inventory ing211) -(inventory ing212) -(inventory ing213) -(inventory ing214) -(inventory ing215) -(inventory ing216) -(inventory ing217) -(inventory ing218) -(inventory ing219) -(inventory ing220) -(inventory ing221) -(inventory ing222) -(inventory ing223) -(inventory ing224) -(inventory ing225) -(inventory ing226) -(inventory ing227) -(inventory ing228) -(inventory ing229) -(inventory ing230) -(inventory ing231) -(inventory ing232) -(inventory ing233) -(inventory ing234) -(inventory ing235) -(inventory ing236) -(inventory ing237) -(inventory ing238) -(inventory ing239) -(inventory ing240) -(inventory ing241) -(inventory ing242) -(inventory ing243) -(inventory ing244) -(inventory ing245) -(inventory ing246) -(inventory ing247) -(inventory ing248) -(inventory ing249) -(inventory ing250) -(inventory ing251) -(inventory ing252) -(inventory ing253) -(inventory ing254) -(inventory ing255) -(inventory ing256) -(inventory ing257) -(inventory ing258) -(inventory ing259) -(inventory ing260) -(inventory ing261) -(inventory ing262) -(inventory ing263) -(inventory ing264) -(inventory ing265) -(inventory ing266) -(inventory ing267) -(inventory ing268) -(inventory ing269) -(inventory ing270) -(inventory ing271) -(inventory ing272) -(inventory ing273) -(inventory ing274) -(inventory ing275) -(inventory ing276) -(inventory ing277) -(inventory ing278) -(inventory ing279) -(inventory ing280) -(inventory ing281) -(inventory ing282) -(inventory ing283) -(inventory ing284) -(inventory ing285) -(inventory ing286) -(inventory ing287) -(inventory ing288) -(inventory ing289) -(inventory ing290) -(inventory ing291) -(inventory ing292) -(inventory ing293) -(inventory ing294) -(inventory ing295) -(inventory ing296) -(inventory ing297) -(inventory ing298) -(inventory ing299) -(inventory ing300) -(inventory ing301) -(inventory ing302) -(inventory ing303) -(inventory ing304) -(inventory ing305) -(inventory ing306) -(inventory ing307) -(inventory ing308) -(inventory ing309) -(inventory ing310) -(inventory ing311) -(inventory ing312) -(inventory ing313) -(inventory ing314) -(inventory ing315) -(inventory ing316) -(inventory ing317) -(inventory ing318) -(inventory ing319) -(inventory ing320) -(inventory ing321) -(inventory ing322) -(inventory ing323) -(inventory ing324) -(inventory ing325) -(inventory ing326) -(inventory ing327) -(inventory ing328) -(inventory ing329) -(inventory ing330) -(inventory ing331) -(inventory ing332) -(inventory ing333) -(inventory ing334) -(inventory ing335) -(inventory ing336) -(inventory ing337) -(inventory ing338) -(inventory ing339) -(inventory ing340) -(inventory ing341) -(inventory ing342) -(inventory ing343) -(inventory ing344) -(inventory ing345) -(inventory ing346) -(inventory ing347) -(inventory ing348) -(inventory ing349) -(inventory ing350) -(inventory ing351) -(inventory ing352) -(inventory ing353) -(inventory ing354) -(inventory ing355) -(inventory ing356) -(inventory ing357) -(inventory ing358) -(inventory ing359) -(inventory ing360) -(inventory ing361) -(inventory ing362) -(inventory ing363) -(inventory ing364) -(inventory ing365) -(inventory ing366) -(inventory ing367) -(inventory ing368) -(inventory ing369) -(inventory ing370) -(inventory ing371) -(inventory ing372) -(inventory ing373) -(inventory ing374) -(inventory ing375) -(inventory ing376) -(inventory ing377) -(inventory ing378) -(inventory ing379) -(inventory ing380) -(inventory ing381) -(inventory ing382) -(inventory ing383) -(inventory ing384) -(inventory ing385) -(inventory ing386) -(inventory ing387) -(inventory ing388) -(inventory ing389) -(inventory ing390) -(inventory ing391) -(inventory ing392) -(inventory ing393) -(inventory ing394) -(inventory ing395) -(inventory ing396) -(inventory ing397) -(inventory ing398) -(inventory ing399) -(inventory ing400) -(inventory ing401) -(inventory ing402) -(inventory ing403) -(inventory ing404) -(inventory ing405) -(inventory ing406) -(inventory ing407) -(inventory ing408) -(inventory ing409) -(inventory ing410) -(inventory ing411) -(inventory ing412) -(inventory ing413) -(inventory ing414) -(inventory ing415) -(inventory ing416) -(inventory ing417) -(inventory ing418) -(inventory ing419) -(inventory ing420) -(inventory ing421) -(inventory ing422) -(inventory ing423) -(inventory ing424) -(inventory ing425) -(inventory ing426) -(inventory ing427) -(inventory ing428) -(inventory ing429) -(inventory ing430) -(inventory ing431) -(inventory ing432) -(inventory ing433) -(inventory ing434) -(inventory ing435) -(inventory ing436) -(inventory ing437) -(inventory ing438) -(inventory ing439) -(inventory ing440) -(inventory ing441) -(inventory ing442) -(inventory ing443) -(inventory ing444) -(inventory ing445) -(inventory ing446) -(inventory ing447) -(inventory ing448) -(inventory ing449) -(inventory ing450) -(inventory ing451) -(inventory ing452) -(inventory ing453) -(inventory ing454) -(inventory ing455) -(inventory ing456) -(inventory ing457) -(inventory ing458) -(inventory ing459) -(inventory ing460) -(inventory ing461) -(inventory ing462) -(inventory ing463) -(inventory ing464) -(inventory ing465) -(inventory ing466) -(inventory ing467) -(inventory ing468) -(inventory ing469) -(inventory ing470) -(inventory ing471) -(inventory ing472) -(inventory ing473) -(inventory ing474) -(inventory ing475) -(inventory ing476) -(inventory ing477) -(inventory ing478) -(inventory ing479) -(inventory ing480) -(inventory ing481) -(inventory ing482) -(inventory ing483) -(inventory ing484) -(inventory ing485) -(inventory ing486) -(inventory ing487) -(inventory ing488) -(inventory ing489) -(inventory ing490) -(inventory ing491) -(inventory ing492) -(inventory ing493) -(inventory ing494) -(inventory ing495) -(inventory ing496) -(inventory ing497) -(inventory ing498) -(inventory ing499) -(inventory ing500) -(inventory ing501) -(inventory ing502) -(inventory ing503) -(inventory ing504) -(inventory ing505) -(inventory ing506) -(inventory ing507) -(inventory ing508) -(inventory ing509) -(inventory ing510) -(inventory ing511) -(inventory ing512) -(inventory ing513) -(inventory ing514) -(inventory ing515) -(inventory ing516) -(inventory ing517) -(inventory ing518) -(inventory ing519) -(inventory ing520) -(inventory ing521) -(inventory ing522) -(inventory ing523) -(inventory ing524) -(inventory ing525) -(inventory ing526) -(inventory ing527) -(inventory ing528) -(inventory ing529) -(inventory ing530) -(inventory ing531) -(inventory ing532) -(inventory ing533) -(inventory ing534) -(inventory ing535) -(inventory ing536) -(inventory ing537) -(inventory ing538) -(inventory ing539) -(inventory ing540) -(inventory ing541) -(inventory ing542) -(inventory ing543) -(inventory ing544) -(inventory ing545) -(inventory ing546) -(inventory ing547) -(inventory ing548) -(inventory ing549) -(inventory ing550) -(inventory ing551) -(inventory ing552) -(inventory ing553) -(inventory ing554) -(inventory ing555) -(inventory ing556) -(inventory ing557) -(inventory ing558) -(inventory ing559) -(inventory ing560) -(inventory ing561) -(inventory ing562) -(inventory ing563) -(inventory ing564) -(inventory ing565) -(inventory ing566) -(inventory ing567) -(inventory ing568) -(inventory ing569) -(inventory ing570) -(inventory ing571) -(inventory ing572) -(inventory ing573) -(inventory ing574) -(inventory ing575) -(inventory ing576) -(inventory ing577) -(inventory ing578) -(inventory ing579) -(inventory ing580) -(inventory ing581) -(inventory ing582) -(inventory ing583) -(inventory ing584) -(inventory ing585) -(inventory ing586) -(inventory ing587) -(inventory ing588) -(inventory ing589) -(inventory ing590) -(inventory ing591) -(inventory ing592) -(inventory ing593) -(inventory ing594) -(inventory ing595) -(inventory ing596) -(inventory ing597) -(inventory ing598) -(inventory ing599) - -(exec 9 (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n))) - (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) - (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) - (inventory $xi) (inventory $yi)) - (, (craftable $n))) diff --git a/examples/transforms/craft_staged.mm2 b/examples/transforms/craft_staged.mm2 deleted file mode 100644 index 80536e62..00000000 --- a/examples/transforms/craft_staged.mm2 +++ /dev/null @@ -1,11805 +0,0 @@ -(recipe r0 (numIngredients 2)) -(recipe r0 (result (id item0))) -(recipe r0 (pattern 0 sx0)) -(recipe r0 (pattern 1 sy0)) -(recipe r0 (key (sx0 ing0))) -(recipe r0 (key (sy0 ing0))) -(recipe r0 (key (sx0 ing1))) -(recipe r0 (key (sy0 ing1))) -(recipe r0 (key (sx0 ing2))) -(recipe r0 (key (sy0 ing2))) -(recipe r0 (key (sx0 ing3))) -(recipe r0 (key (sy0 ing3))) -(recipe r0 (key (sx0 ing4))) -(recipe r0 (key (sy0 ing4))) -(recipe r0 (key (sx0 ing5))) -(recipe r0 (key (sy0 ing5))) -(recipe r0 (key (sx0 ing6))) -(recipe r0 (key (sy0 ing6))) -(recipe r0 (key (sx0 ing7))) -(recipe r0 (key (sy0 ing7))) -(recipe r0 (key (sx0 ing8))) -(recipe r0 (key (sy0 ing8))) -(recipe r0 (key (sx0 ing9))) -(recipe r0 (key (sy0 ing9))) -(recipe r0 (key (sx0 ing10))) -(recipe r0 (key (sy0 ing10))) -(recipe r0 (key (sx0 ing11))) -(recipe r0 (key (sy0 ing11))) -(recipe r1 (numIngredients 2)) -(recipe r1 (result (id item1))) -(recipe r1 (pattern 0 sx1)) -(recipe r1 (pattern 1 sy1)) -(recipe r1 (key (sx1 ing3))) -(recipe r1 (key (sy1 ing5))) -(recipe r1 (key (sx1 ing4))) -(recipe r1 (key (sy1 ing6))) -(recipe r1 (key (sx1 ing5))) -(recipe r1 (key (sy1 ing7))) -(recipe r1 (key (sx1 ing6))) -(recipe r1 (key (sy1 ing8))) -(recipe r1 (key (sx1 ing7))) -(recipe r1 (key (sy1 ing9))) -(recipe r1 (key (sx1 ing8))) -(recipe r1 (key (sy1 ing10))) -(recipe r1 (key (sx1 ing9))) -(recipe r1 (key (sy1 ing11))) -(recipe r1 (key (sx1 ing10))) -(recipe r1 (key (sy1 ing12))) -(recipe r1 (key (sx1 ing11))) -(recipe r1 (key (sy1 ing13))) -(recipe r1 (key (sx1 ing12))) -(recipe r1 (key (sy1 ing14))) -(recipe r1 (key (sx1 ing13))) -(recipe r1 (key (sy1 ing15))) -(recipe r1 (key (sx1 ing14))) -(recipe r1 (key (sy1 ing16))) -(recipe r2 (numIngredients 2)) -(recipe r2 (result (id item2))) -(recipe r2 (pattern 0 sx2)) -(recipe r2 (pattern 1 sy2)) -(recipe r2 (key (sx2 ing6))) -(recipe r2 (key (sy2 ing10))) -(recipe r2 (key (sx2 ing7))) -(recipe r2 (key (sy2 ing11))) -(recipe r2 (key (sx2 ing8))) -(recipe r2 (key (sy2 ing12))) -(recipe r2 (key (sx2 ing9))) -(recipe r2 (key (sy2 ing13))) -(recipe r2 (key (sx2 ing10))) -(recipe r2 (key (sy2 ing14))) -(recipe r2 (key (sx2 ing11))) -(recipe r2 (key (sy2 ing15))) -(recipe r2 (key (sx2 ing12))) -(recipe r2 (key (sy2 ing16))) -(recipe r2 (key (sx2 ing13))) -(recipe r2 (key (sy2 ing17))) -(recipe r2 (key (sx2 ing14))) -(recipe r2 (key (sy2 ing18))) -(recipe r2 (key (sx2 ing15))) -(recipe r2 (key (sy2 ing19))) -(recipe r2 (key (sx2 ing16))) -(recipe r2 (key (sy2 ing20))) -(recipe r2 (key (sx2 ing17))) -(recipe r2 (key (sy2 ing21))) -(recipe r3 (numIngredients 2)) -(recipe r3 (result (id item3))) -(recipe r3 (pattern 0 sx3)) -(recipe r3 (pattern 1 sy3)) -(recipe r3 (key (sx3 ing9))) -(recipe r3 (key (sy3 ing15))) -(recipe r3 (key (sx3 ing10))) -(recipe r3 (key (sy3 ing16))) -(recipe r3 (key (sx3 ing11))) -(recipe r3 (key (sy3 ing17))) -(recipe r3 (key (sx3 ing12))) -(recipe r3 (key (sy3 ing18))) -(recipe r3 (key (sx3 ing13))) -(recipe r3 (key (sy3 ing19))) -(recipe r3 (key (sx3 ing14))) -(recipe r3 (key (sy3 ing20))) -(recipe r3 (key (sx3 ing15))) -(recipe r3 (key (sy3 ing21))) -(recipe r3 (key (sx3 ing16))) -(recipe r3 (key (sy3 ing22))) -(recipe r3 (key (sx3 ing17))) -(recipe r3 (key (sy3 ing23))) -(recipe r3 (key (sx3 ing18))) -(recipe r3 (key (sy3 ing24))) -(recipe r3 (key (sx3 ing19))) -(recipe r3 (key (sy3 ing25))) -(recipe r3 (key (sx3 ing20))) -(recipe r3 (key (sy3 ing26))) -(recipe r4 (numIngredients 2)) -(recipe r4 (result (id item4))) -(recipe r4 (pattern 0 sx4)) -(recipe r4 (pattern 1 sy4)) -(recipe r4 (key (sx4 ing12))) -(recipe r4 (key (sy4 ing20))) -(recipe r4 (key (sx4 ing13))) -(recipe r4 (key (sy4 ing21))) -(recipe r4 (key (sx4 ing14))) -(recipe r4 (key (sy4 ing22))) -(recipe r4 (key (sx4 ing15))) -(recipe r4 (key (sy4 ing23))) -(recipe r4 (key (sx4 ing16))) -(recipe r4 (key (sy4 ing24))) -(recipe r4 (key (sx4 ing17))) -(recipe r4 (key (sy4 ing25))) -(recipe r4 (key (sx4 ing18))) -(recipe r4 (key (sy4 ing26))) -(recipe r4 (key (sx4 ing19))) -(recipe r4 (key (sy4 ing27))) -(recipe r4 (key (sx4 ing20))) -(recipe r4 (key (sy4 ing28))) -(recipe r4 (key (sx4 ing21))) -(recipe r4 (key (sy4 ing29))) -(recipe r4 (key (sx4 ing22))) -(recipe r4 (key (sy4 ing30))) -(recipe r4 (key (sx4 ing23))) -(recipe r4 (key (sy4 ing31))) -(recipe r5 (numIngredients 2)) -(recipe r5 (result (id item5))) -(recipe r5 (pattern 0 sx5)) -(recipe r5 (pattern 1 sy5)) -(recipe r5 (key (sx5 ing15))) -(recipe r5 (key (sy5 ing25))) -(recipe r5 (key (sx5 ing16))) -(recipe r5 (key (sy5 ing26))) -(recipe r5 (key (sx5 ing17))) -(recipe r5 (key (sy5 ing27))) -(recipe r5 (key (sx5 ing18))) -(recipe r5 (key (sy5 ing28))) -(recipe r5 (key (sx5 ing19))) -(recipe r5 (key (sy5 ing29))) -(recipe r5 (key (sx5 ing20))) -(recipe r5 (key (sy5 ing30))) -(recipe r5 (key (sx5 ing21))) -(recipe r5 (key (sy5 ing31))) -(recipe r5 (key (sx5 ing22))) -(recipe r5 (key (sy5 ing32))) -(recipe r5 (key (sx5 ing23))) -(recipe r5 (key (sy5 ing33))) -(recipe r5 (key (sx5 ing24))) -(recipe r5 (key (sy5 ing34))) -(recipe r5 (key (sx5 ing25))) -(recipe r5 (key (sy5 ing35))) -(recipe r5 (key (sx5 ing26))) -(recipe r5 (key (sy5 ing36))) -(recipe r6 (numIngredients 2)) -(recipe r6 (result (id item6))) -(recipe r6 (pattern 0 sx6)) -(recipe r6 (pattern 1 sy6)) -(recipe r6 (key (sx6 ing18))) -(recipe r6 (key (sy6 ing30))) -(recipe r6 (key (sx6 ing19))) -(recipe r6 (key (sy6 ing31))) -(recipe r6 (key (sx6 ing20))) -(recipe r6 (key (sy6 ing32))) -(recipe r6 (key (sx6 ing21))) -(recipe r6 (key (sy6 ing33))) -(recipe r6 (key (sx6 ing22))) -(recipe r6 (key (sy6 ing34))) -(recipe r6 (key (sx6 ing23))) -(recipe r6 (key (sy6 ing35))) -(recipe r6 (key (sx6 ing24))) -(recipe r6 (key (sy6 ing36))) -(recipe r6 (key (sx6 ing25))) -(recipe r6 (key (sy6 ing37))) -(recipe r6 (key (sx6 ing26))) -(recipe r6 (key (sy6 ing38))) -(recipe r6 (key (sx6 ing27))) -(recipe r6 (key (sy6 ing39))) -(recipe r6 (key (sx6 ing28))) -(recipe r6 (key (sy6 ing40))) -(recipe r6 (key (sx6 ing29))) -(recipe r6 (key (sy6 ing41))) -(recipe r7 (numIngredients 2)) -(recipe r7 (result (id item7))) -(recipe r7 (pattern 0 sx7)) -(recipe r7 (pattern 1 sy7)) -(recipe r7 (key (sx7 ing21))) -(recipe r7 (key (sy7 ing35))) -(recipe r7 (key (sx7 ing22))) -(recipe r7 (key (sy7 ing36))) -(recipe r7 (key (sx7 ing23))) -(recipe r7 (key (sy7 ing37))) -(recipe r7 (key (sx7 ing24))) -(recipe r7 (key (sy7 ing38))) -(recipe r7 (key (sx7 ing25))) -(recipe r7 (key (sy7 ing39))) -(recipe r7 (key (sx7 ing26))) -(recipe r7 (key (sy7 ing40))) -(recipe r7 (key (sx7 ing27))) -(recipe r7 (key (sy7 ing41))) -(recipe r7 (key (sx7 ing28))) -(recipe r7 (key (sy7 ing42))) -(recipe r7 (key (sx7 ing29))) -(recipe r7 (key (sy7 ing43))) -(recipe r7 (key (sx7 ing30))) -(recipe r7 (key (sy7 ing44))) -(recipe r7 (key (sx7 ing31))) -(recipe r7 (key (sy7 ing45))) -(recipe r7 (key (sx7 ing32))) -(recipe r7 (key (sy7 ing46))) -(recipe r8 (numIngredients 2)) -(recipe r8 (result (id item8))) -(recipe r8 (pattern 0 sx8)) -(recipe r8 (pattern 1 sy8)) -(recipe r8 (key (sx8 ing24))) -(recipe r8 (key (sy8 ing40))) -(recipe r8 (key (sx8 ing25))) -(recipe r8 (key (sy8 ing41))) -(recipe r8 (key (sx8 ing26))) -(recipe r8 (key (sy8 ing42))) -(recipe r8 (key (sx8 ing27))) -(recipe r8 (key (sy8 ing43))) -(recipe r8 (key (sx8 ing28))) -(recipe r8 (key (sy8 ing44))) -(recipe r8 (key (sx8 ing29))) -(recipe r8 (key (sy8 ing45))) -(recipe r8 (key (sx8 ing30))) -(recipe r8 (key (sy8 ing46))) -(recipe r8 (key (sx8 ing31))) -(recipe r8 (key (sy8 ing47))) -(recipe r8 (key (sx8 ing32))) -(recipe r8 (key (sy8 ing48))) -(recipe r8 (key (sx8 ing33))) -(recipe r8 (key (sy8 ing49))) -(recipe r8 (key (sx8 ing34))) -(recipe r8 (key (sy8 ing50))) -(recipe r8 (key (sx8 ing35))) -(recipe r8 (key (sy8 ing51))) -(recipe r9 (numIngredients 2)) -(recipe r9 (result (id item9))) -(recipe r9 (pattern 0 sx9)) -(recipe r9 (pattern 1 sy9)) -(recipe r9 (key (sx9 ing27))) -(recipe r9 (key (sy9 ing45))) -(recipe r9 (key (sx9 ing28))) -(recipe r9 (key (sy9 ing46))) -(recipe r9 (key (sx9 ing29))) -(recipe r9 (key (sy9 ing47))) -(recipe r9 (key (sx9 ing30))) -(recipe r9 (key (sy9 ing48))) -(recipe r9 (key (sx9 ing31))) -(recipe r9 (key (sy9 ing49))) -(recipe r9 (key (sx9 ing32))) -(recipe r9 (key (sy9 ing50))) -(recipe r9 (key (sx9 ing33))) -(recipe r9 (key (sy9 ing51))) -(recipe r9 (key (sx9 ing34))) -(recipe r9 (key (sy9 ing52))) -(recipe r9 (key (sx9 ing35))) -(recipe r9 (key (sy9 ing53))) -(recipe r9 (key (sx9 ing36))) -(recipe r9 (key (sy9 ing54))) -(recipe r9 (key (sx9 ing37))) -(recipe r9 (key (sy9 ing55))) -(recipe r9 (key (sx9 ing38))) -(recipe r9 (key (sy9 ing56))) -(recipe r10 (numIngredients 2)) -(recipe r10 (result (id item10))) -(recipe r10 (pattern 0 sx10)) -(recipe r10 (pattern 1 sy10)) -(recipe r10 (key (sx10 ing30))) -(recipe r10 (key (sy10 ing50))) -(recipe r10 (key (sx10 ing31))) -(recipe r10 (key (sy10 ing51))) -(recipe r10 (key (sx10 ing32))) -(recipe r10 (key (sy10 ing52))) -(recipe r10 (key (sx10 ing33))) -(recipe r10 (key (sy10 ing53))) -(recipe r10 (key (sx10 ing34))) -(recipe r10 (key (sy10 ing54))) -(recipe r10 (key (sx10 ing35))) -(recipe r10 (key (sy10 ing55))) -(recipe r10 (key (sx10 ing36))) -(recipe r10 (key (sy10 ing56))) -(recipe r10 (key (sx10 ing37))) -(recipe r10 (key (sy10 ing57))) -(recipe r10 (key (sx10 ing38))) -(recipe r10 (key (sy10 ing58))) -(recipe r10 (key (sx10 ing39))) -(recipe r10 (key (sy10 ing59))) -(recipe r10 (key (sx10 ing40))) -(recipe r10 (key (sy10 ing60))) -(recipe r10 (key (sx10 ing41))) -(recipe r10 (key (sy10 ing61))) -(recipe r11 (numIngredients 2)) -(recipe r11 (result (id item11))) -(recipe r11 (pattern 0 sx11)) -(recipe r11 (pattern 1 sy11)) -(recipe r11 (key (sx11 ing33))) -(recipe r11 (key (sy11 ing55))) -(recipe r11 (key (sx11 ing34))) -(recipe r11 (key (sy11 ing56))) -(recipe r11 (key (sx11 ing35))) -(recipe r11 (key (sy11 ing57))) -(recipe r11 (key (sx11 ing36))) -(recipe r11 (key (sy11 ing58))) -(recipe r11 (key (sx11 ing37))) -(recipe r11 (key (sy11 ing59))) -(recipe r11 (key (sx11 ing38))) -(recipe r11 (key (sy11 ing60))) -(recipe r11 (key (sx11 ing39))) -(recipe r11 (key (sy11 ing61))) -(recipe r11 (key (sx11 ing40))) -(recipe r11 (key (sy11 ing62))) -(recipe r11 (key (sx11 ing41))) -(recipe r11 (key (sy11 ing63))) -(recipe r11 (key (sx11 ing42))) -(recipe r11 (key (sy11 ing64))) -(recipe r11 (key (sx11 ing43))) -(recipe r11 (key (sy11 ing65))) -(recipe r11 (key (sx11 ing44))) -(recipe r11 (key (sy11 ing66))) -(recipe r12 (numIngredients 2)) -(recipe r12 (result (id item12))) -(recipe r12 (pattern 0 sx12)) -(recipe r12 (pattern 1 sy12)) -(recipe r12 (key (sx12 ing36))) -(recipe r12 (key (sy12 ing60))) -(recipe r12 (key (sx12 ing37))) -(recipe r12 (key (sy12 ing61))) -(recipe r12 (key (sx12 ing38))) -(recipe r12 (key (sy12 ing62))) -(recipe r12 (key (sx12 ing39))) -(recipe r12 (key (sy12 ing63))) -(recipe r12 (key (sx12 ing40))) -(recipe r12 (key (sy12 ing64))) -(recipe r12 (key (sx12 ing41))) -(recipe r12 (key (sy12 ing65))) -(recipe r12 (key (sx12 ing42))) -(recipe r12 (key (sy12 ing66))) -(recipe r12 (key (sx12 ing43))) -(recipe r12 (key (sy12 ing67))) -(recipe r12 (key (sx12 ing44))) -(recipe r12 (key (sy12 ing68))) -(recipe r12 (key (sx12 ing45))) -(recipe r12 (key (sy12 ing69))) -(recipe r12 (key (sx12 ing46))) -(recipe r12 (key (sy12 ing70))) -(recipe r12 (key (sx12 ing47))) -(recipe r12 (key (sy12 ing71))) -(recipe r13 (numIngredients 2)) -(recipe r13 (result (id item13))) -(recipe r13 (pattern 0 sx13)) -(recipe r13 (pattern 1 sy13)) -(recipe r13 (key (sx13 ing39))) -(recipe r13 (key (sy13 ing65))) -(recipe r13 (key (sx13 ing40))) -(recipe r13 (key (sy13 ing66))) -(recipe r13 (key (sx13 ing41))) -(recipe r13 (key (sy13 ing67))) -(recipe r13 (key (sx13 ing42))) -(recipe r13 (key (sy13 ing68))) -(recipe r13 (key (sx13 ing43))) -(recipe r13 (key (sy13 ing69))) -(recipe r13 (key (sx13 ing44))) -(recipe r13 (key (sy13 ing70))) -(recipe r13 (key (sx13 ing45))) -(recipe r13 (key (sy13 ing71))) -(recipe r13 (key (sx13 ing46))) -(recipe r13 (key (sy13 ing72))) -(recipe r13 (key (sx13 ing47))) -(recipe r13 (key (sy13 ing73))) -(recipe r13 (key (sx13 ing48))) -(recipe r13 (key (sy13 ing74))) -(recipe r13 (key (sx13 ing49))) -(recipe r13 (key (sy13 ing75))) -(recipe r13 (key (sx13 ing50))) -(recipe r13 (key (sy13 ing76))) -(recipe r14 (numIngredients 2)) -(recipe r14 (result (id item14))) -(recipe r14 (pattern 0 sx14)) -(recipe r14 (pattern 1 sy14)) -(recipe r14 (key (sx14 ing42))) -(recipe r14 (key (sy14 ing70))) -(recipe r14 (key (sx14 ing43))) -(recipe r14 (key (sy14 ing71))) -(recipe r14 (key (sx14 ing44))) -(recipe r14 (key (sy14 ing72))) -(recipe r14 (key (sx14 ing45))) -(recipe r14 (key (sy14 ing73))) -(recipe r14 (key (sx14 ing46))) -(recipe r14 (key (sy14 ing74))) -(recipe r14 (key (sx14 ing47))) -(recipe r14 (key (sy14 ing75))) -(recipe r14 (key (sx14 ing48))) -(recipe r14 (key (sy14 ing76))) -(recipe r14 (key (sx14 ing49))) -(recipe r14 (key (sy14 ing77))) -(recipe r14 (key (sx14 ing50))) -(recipe r14 (key (sy14 ing78))) -(recipe r14 (key (sx14 ing51))) -(recipe r14 (key (sy14 ing79))) -(recipe r14 (key (sx14 ing52))) -(recipe r14 (key (sy14 ing80))) -(recipe r14 (key (sx14 ing53))) -(recipe r14 (key (sy14 ing81))) -(recipe r15 (numIngredients 2)) -(recipe r15 (result (id item15))) -(recipe r15 (pattern 0 sx15)) -(recipe r15 (pattern 1 sy15)) -(recipe r15 (key (sx15 ing45))) -(recipe r15 (key (sy15 ing75))) -(recipe r15 (key (sx15 ing46))) -(recipe r15 (key (sy15 ing76))) -(recipe r15 (key (sx15 ing47))) -(recipe r15 (key (sy15 ing77))) -(recipe r15 (key (sx15 ing48))) -(recipe r15 (key (sy15 ing78))) -(recipe r15 (key (sx15 ing49))) -(recipe r15 (key (sy15 ing79))) -(recipe r15 (key (sx15 ing50))) -(recipe r15 (key (sy15 ing80))) -(recipe r15 (key (sx15 ing51))) -(recipe r15 (key (sy15 ing81))) -(recipe r15 (key (sx15 ing52))) -(recipe r15 (key (sy15 ing82))) -(recipe r15 (key (sx15 ing53))) -(recipe r15 (key (sy15 ing83))) -(recipe r15 (key (sx15 ing54))) -(recipe r15 (key (sy15 ing84))) -(recipe r15 (key (sx15 ing55))) -(recipe r15 (key (sy15 ing85))) -(recipe r15 (key (sx15 ing56))) -(recipe r15 (key (sy15 ing86))) -(recipe r16 (numIngredients 2)) -(recipe r16 (result (id item16))) -(recipe r16 (pattern 0 sx16)) -(recipe r16 (pattern 1 sy16)) -(recipe r16 (key (sx16 ing48))) -(recipe r16 (key (sy16 ing80))) -(recipe r16 (key (sx16 ing49))) -(recipe r16 (key (sy16 ing81))) -(recipe r16 (key (sx16 ing50))) -(recipe r16 (key (sy16 ing82))) -(recipe r16 (key (sx16 ing51))) -(recipe r16 (key (sy16 ing83))) -(recipe r16 (key (sx16 ing52))) -(recipe r16 (key (sy16 ing84))) -(recipe r16 (key (sx16 ing53))) -(recipe r16 (key (sy16 ing85))) -(recipe r16 (key (sx16 ing54))) -(recipe r16 (key (sy16 ing86))) -(recipe r16 (key (sx16 ing55))) -(recipe r16 (key (sy16 ing87))) -(recipe r16 (key (sx16 ing56))) -(recipe r16 (key (sy16 ing88))) -(recipe r16 (key (sx16 ing57))) -(recipe r16 (key (sy16 ing89))) -(recipe r16 (key (sx16 ing58))) -(recipe r16 (key (sy16 ing90))) -(recipe r16 (key (sx16 ing59))) -(recipe r16 (key (sy16 ing91))) -(recipe r17 (numIngredients 2)) -(recipe r17 (result (id item17))) -(recipe r17 (pattern 0 sx17)) -(recipe r17 (pattern 1 sy17)) -(recipe r17 (key (sx17 ing51))) -(recipe r17 (key (sy17 ing85))) -(recipe r17 (key (sx17 ing52))) -(recipe r17 (key (sy17 ing86))) -(recipe r17 (key (sx17 ing53))) -(recipe r17 (key (sy17 ing87))) -(recipe r17 (key (sx17 ing54))) -(recipe r17 (key (sy17 ing88))) -(recipe r17 (key (sx17 ing55))) -(recipe r17 (key (sy17 ing89))) -(recipe r17 (key (sx17 ing56))) -(recipe r17 (key (sy17 ing90))) -(recipe r17 (key (sx17 ing57))) -(recipe r17 (key (sy17 ing91))) -(recipe r17 (key (sx17 ing58))) -(recipe r17 (key (sy17 ing92))) -(recipe r17 (key (sx17 ing59))) -(recipe r17 (key (sy17 ing93))) -(recipe r17 (key (sx17 ing60))) -(recipe r17 (key (sy17 ing94))) -(recipe r17 (key (sx17 ing61))) -(recipe r17 (key (sy17 ing95))) -(recipe r17 (key (sx17 ing62))) -(recipe r17 (key (sy17 ing96))) -(recipe r18 (numIngredients 2)) -(recipe r18 (result (id item18))) -(recipe r18 (pattern 0 sx18)) -(recipe r18 (pattern 1 sy18)) -(recipe r18 (key (sx18 ing54))) -(recipe r18 (key (sy18 ing90))) -(recipe r18 (key (sx18 ing55))) -(recipe r18 (key (sy18 ing91))) -(recipe r18 (key (sx18 ing56))) -(recipe r18 (key (sy18 ing92))) -(recipe r18 (key (sx18 ing57))) -(recipe r18 (key (sy18 ing93))) -(recipe r18 (key (sx18 ing58))) -(recipe r18 (key (sy18 ing94))) -(recipe r18 (key (sx18 ing59))) -(recipe r18 (key (sy18 ing95))) -(recipe r18 (key (sx18 ing60))) -(recipe r18 (key (sy18 ing96))) -(recipe r18 (key (sx18 ing61))) -(recipe r18 (key (sy18 ing97))) -(recipe r18 (key (sx18 ing62))) -(recipe r18 (key (sy18 ing98))) -(recipe r18 (key (sx18 ing63))) -(recipe r18 (key (sy18 ing99))) -(recipe r18 (key (sx18 ing64))) -(recipe r18 (key (sy18 ing100))) -(recipe r18 (key (sx18 ing65))) -(recipe r18 (key (sy18 ing101))) -(recipe r19 (numIngredients 2)) -(recipe r19 (result (id item19))) -(recipe r19 (pattern 0 sx19)) -(recipe r19 (pattern 1 sy19)) -(recipe r19 (key (sx19 ing57))) -(recipe r19 (key (sy19 ing95))) -(recipe r19 (key (sx19 ing58))) -(recipe r19 (key (sy19 ing96))) -(recipe r19 (key (sx19 ing59))) -(recipe r19 (key (sy19 ing97))) -(recipe r19 (key (sx19 ing60))) -(recipe r19 (key (sy19 ing98))) -(recipe r19 (key (sx19 ing61))) -(recipe r19 (key (sy19 ing99))) -(recipe r19 (key (sx19 ing62))) -(recipe r19 (key (sy19 ing100))) -(recipe r19 (key (sx19 ing63))) -(recipe r19 (key (sy19 ing101))) -(recipe r19 (key (sx19 ing64))) -(recipe r19 (key (sy19 ing102))) -(recipe r19 (key (sx19 ing65))) -(recipe r19 (key (sy19 ing103))) -(recipe r19 (key (sx19 ing66))) -(recipe r19 (key (sy19 ing104))) -(recipe r19 (key (sx19 ing67))) -(recipe r19 (key (sy19 ing105))) -(recipe r19 (key (sx19 ing68))) -(recipe r19 (key (sy19 ing106))) -(recipe r20 (numIngredients 2)) -(recipe r20 (result (id item20))) -(recipe r20 (pattern 0 sx20)) -(recipe r20 (pattern 1 sy20)) -(recipe r20 (key (sx20 ing60))) -(recipe r20 (key (sy20 ing100))) -(recipe r20 (key (sx20 ing61))) -(recipe r20 (key (sy20 ing101))) -(recipe r20 (key (sx20 ing62))) -(recipe r20 (key (sy20 ing102))) -(recipe r20 (key (sx20 ing63))) -(recipe r20 (key (sy20 ing103))) -(recipe r20 (key (sx20 ing64))) -(recipe r20 (key (sy20 ing104))) -(recipe r20 (key (sx20 ing65))) -(recipe r20 (key (sy20 ing105))) -(recipe r20 (key (sx20 ing66))) -(recipe r20 (key (sy20 ing106))) -(recipe r20 (key (sx20 ing67))) -(recipe r20 (key (sy20 ing107))) -(recipe r20 (key (sx20 ing68))) -(recipe r20 (key (sy20 ing108))) -(recipe r20 (key (sx20 ing69))) -(recipe r20 (key (sy20 ing109))) -(recipe r20 (key (sx20 ing70))) -(recipe r20 (key (sy20 ing110))) -(recipe r20 (key (sx20 ing71))) -(recipe r20 (key (sy20 ing111))) -(recipe r21 (numIngredients 2)) -(recipe r21 (result (id item21))) -(recipe r21 (pattern 0 sx21)) -(recipe r21 (pattern 1 sy21)) -(recipe r21 (key (sx21 ing63))) -(recipe r21 (key (sy21 ing105))) -(recipe r21 (key (sx21 ing64))) -(recipe r21 (key (sy21 ing106))) -(recipe r21 (key (sx21 ing65))) -(recipe r21 (key (sy21 ing107))) -(recipe r21 (key (sx21 ing66))) -(recipe r21 (key (sy21 ing108))) -(recipe r21 (key (sx21 ing67))) -(recipe r21 (key (sy21 ing109))) -(recipe r21 (key (sx21 ing68))) -(recipe r21 (key (sy21 ing110))) -(recipe r21 (key (sx21 ing69))) -(recipe r21 (key (sy21 ing111))) -(recipe r21 (key (sx21 ing70))) -(recipe r21 (key (sy21 ing112))) -(recipe r21 (key (sx21 ing71))) -(recipe r21 (key (sy21 ing113))) -(recipe r21 (key (sx21 ing72))) -(recipe r21 (key (sy21 ing114))) -(recipe r21 (key (sx21 ing73))) -(recipe r21 (key (sy21 ing115))) -(recipe r21 (key (sx21 ing74))) -(recipe r21 (key (sy21 ing116))) -(recipe r22 (numIngredients 2)) -(recipe r22 (result (id item22))) -(recipe r22 (pattern 0 sx22)) -(recipe r22 (pattern 1 sy22)) -(recipe r22 (key (sx22 ing66))) -(recipe r22 (key (sy22 ing110))) -(recipe r22 (key (sx22 ing67))) -(recipe r22 (key (sy22 ing111))) -(recipe r22 (key (sx22 ing68))) -(recipe r22 (key (sy22 ing112))) -(recipe r22 (key (sx22 ing69))) -(recipe r22 (key (sy22 ing113))) -(recipe r22 (key (sx22 ing70))) -(recipe r22 (key (sy22 ing114))) -(recipe r22 (key (sx22 ing71))) -(recipe r22 (key (sy22 ing115))) -(recipe r22 (key (sx22 ing72))) -(recipe r22 (key (sy22 ing116))) -(recipe r22 (key (sx22 ing73))) -(recipe r22 (key (sy22 ing117))) -(recipe r22 (key (sx22 ing74))) -(recipe r22 (key (sy22 ing118))) -(recipe r22 (key (sx22 ing75))) -(recipe r22 (key (sy22 ing119))) -(recipe r22 (key (sx22 ing76))) -(recipe r22 (key (sy22 ing120))) -(recipe r22 (key (sx22 ing77))) -(recipe r22 (key (sy22 ing121))) -(recipe r23 (numIngredients 2)) -(recipe r23 (result (id item23))) -(recipe r23 (pattern 0 sx23)) -(recipe r23 (pattern 1 sy23)) -(recipe r23 (key (sx23 ing69))) -(recipe r23 (key (sy23 ing115))) -(recipe r23 (key (sx23 ing70))) -(recipe r23 (key (sy23 ing116))) -(recipe r23 (key (sx23 ing71))) -(recipe r23 (key (sy23 ing117))) -(recipe r23 (key (sx23 ing72))) -(recipe r23 (key (sy23 ing118))) -(recipe r23 (key (sx23 ing73))) -(recipe r23 (key (sy23 ing119))) -(recipe r23 (key (sx23 ing74))) -(recipe r23 (key (sy23 ing120))) -(recipe r23 (key (sx23 ing75))) -(recipe r23 (key (sy23 ing121))) -(recipe r23 (key (sx23 ing76))) -(recipe r23 (key (sy23 ing122))) -(recipe r23 (key (sx23 ing77))) -(recipe r23 (key (sy23 ing123))) -(recipe r23 (key (sx23 ing78))) -(recipe r23 (key (sy23 ing124))) -(recipe r23 (key (sx23 ing79))) -(recipe r23 (key (sy23 ing125))) -(recipe r23 (key (sx23 ing80))) -(recipe r23 (key (sy23 ing126))) -(recipe r24 (numIngredients 2)) -(recipe r24 (result (id item24))) -(recipe r24 (pattern 0 sx24)) -(recipe r24 (pattern 1 sy24)) -(recipe r24 (key (sx24 ing72))) -(recipe r24 (key (sy24 ing120))) -(recipe r24 (key (sx24 ing73))) -(recipe r24 (key (sy24 ing121))) -(recipe r24 (key (sx24 ing74))) -(recipe r24 (key (sy24 ing122))) -(recipe r24 (key (sx24 ing75))) -(recipe r24 (key (sy24 ing123))) -(recipe r24 (key (sx24 ing76))) -(recipe r24 (key (sy24 ing124))) -(recipe r24 (key (sx24 ing77))) -(recipe r24 (key (sy24 ing125))) -(recipe r24 (key (sx24 ing78))) -(recipe r24 (key (sy24 ing126))) -(recipe r24 (key (sx24 ing79))) -(recipe r24 (key (sy24 ing127))) -(recipe r24 (key (sx24 ing80))) -(recipe r24 (key (sy24 ing128))) -(recipe r24 (key (sx24 ing81))) -(recipe r24 (key (sy24 ing129))) -(recipe r24 (key (sx24 ing82))) -(recipe r24 (key (sy24 ing130))) -(recipe r24 (key (sx24 ing83))) -(recipe r24 (key (sy24 ing131))) -(recipe r25 (numIngredients 2)) -(recipe r25 (result (id item25))) -(recipe r25 (pattern 0 sx25)) -(recipe r25 (pattern 1 sy25)) -(recipe r25 (key (sx25 ing75))) -(recipe r25 (key (sy25 ing125))) -(recipe r25 (key (sx25 ing76))) -(recipe r25 (key (sy25 ing126))) -(recipe r25 (key (sx25 ing77))) -(recipe r25 (key (sy25 ing127))) -(recipe r25 (key (sx25 ing78))) -(recipe r25 (key (sy25 ing128))) -(recipe r25 (key (sx25 ing79))) -(recipe r25 (key (sy25 ing129))) -(recipe r25 (key (sx25 ing80))) -(recipe r25 (key (sy25 ing130))) -(recipe r25 (key (sx25 ing81))) -(recipe r25 (key (sy25 ing131))) -(recipe r25 (key (sx25 ing82))) -(recipe r25 (key (sy25 ing132))) -(recipe r25 (key (sx25 ing83))) -(recipe r25 (key (sy25 ing133))) -(recipe r25 (key (sx25 ing84))) -(recipe r25 (key (sy25 ing134))) -(recipe r25 (key (sx25 ing85))) -(recipe r25 (key (sy25 ing135))) -(recipe r25 (key (sx25 ing86))) -(recipe r25 (key (sy25 ing136))) -(recipe r26 (numIngredients 2)) -(recipe r26 (result (id item26))) -(recipe r26 (pattern 0 sx26)) -(recipe r26 (pattern 1 sy26)) -(recipe r26 (key (sx26 ing78))) -(recipe r26 (key (sy26 ing130))) -(recipe r26 (key (sx26 ing79))) -(recipe r26 (key (sy26 ing131))) -(recipe r26 (key (sx26 ing80))) -(recipe r26 (key (sy26 ing132))) -(recipe r26 (key (sx26 ing81))) -(recipe r26 (key (sy26 ing133))) -(recipe r26 (key (sx26 ing82))) -(recipe r26 (key (sy26 ing134))) -(recipe r26 (key (sx26 ing83))) -(recipe r26 (key (sy26 ing135))) -(recipe r26 (key (sx26 ing84))) -(recipe r26 (key (sy26 ing136))) -(recipe r26 (key (sx26 ing85))) -(recipe r26 (key (sy26 ing137))) -(recipe r26 (key (sx26 ing86))) -(recipe r26 (key (sy26 ing138))) -(recipe r26 (key (sx26 ing87))) -(recipe r26 (key (sy26 ing139))) -(recipe r26 (key (sx26 ing88))) -(recipe r26 (key (sy26 ing140))) -(recipe r26 (key (sx26 ing89))) -(recipe r26 (key (sy26 ing141))) -(recipe r27 (numIngredients 2)) -(recipe r27 (result (id item27))) -(recipe r27 (pattern 0 sx27)) -(recipe r27 (pattern 1 sy27)) -(recipe r27 (key (sx27 ing81))) -(recipe r27 (key (sy27 ing135))) -(recipe r27 (key (sx27 ing82))) -(recipe r27 (key (sy27 ing136))) -(recipe r27 (key (sx27 ing83))) -(recipe r27 (key (sy27 ing137))) -(recipe r27 (key (sx27 ing84))) -(recipe r27 (key (sy27 ing138))) -(recipe r27 (key (sx27 ing85))) -(recipe r27 (key (sy27 ing139))) -(recipe r27 (key (sx27 ing86))) -(recipe r27 (key (sy27 ing140))) -(recipe r27 (key (sx27 ing87))) -(recipe r27 (key (sy27 ing141))) -(recipe r27 (key (sx27 ing88))) -(recipe r27 (key (sy27 ing142))) -(recipe r27 (key (sx27 ing89))) -(recipe r27 (key (sy27 ing143))) -(recipe r27 (key (sx27 ing90))) -(recipe r27 (key (sy27 ing144))) -(recipe r27 (key (sx27 ing91))) -(recipe r27 (key (sy27 ing145))) -(recipe r27 (key (sx27 ing92))) -(recipe r27 (key (sy27 ing146))) -(recipe r28 (numIngredients 2)) -(recipe r28 (result (id item28))) -(recipe r28 (pattern 0 sx28)) -(recipe r28 (pattern 1 sy28)) -(recipe r28 (key (sx28 ing84))) -(recipe r28 (key (sy28 ing140))) -(recipe r28 (key (sx28 ing85))) -(recipe r28 (key (sy28 ing141))) -(recipe r28 (key (sx28 ing86))) -(recipe r28 (key (sy28 ing142))) -(recipe r28 (key (sx28 ing87))) -(recipe r28 (key (sy28 ing143))) -(recipe r28 (key (sx28 ing88))) -(recipe r28 (key (sy28 ing144))) -(recipe r28 (key (sx28 ing89))) -(recipe r28 (key (sy28 ing145))) -(recipe r28 (key (sx28 ing90))) -(recipe r28 (key (sy28 ing146))) -(recipe r28 (key (sx28 ing91))) -(recipe r28 (key (sy28 ing147))) -(recipe r28 (key (sx28 ing92))) -(recipe r28 (key (sy28 ing148))) -(recipe r28 (key (sx28 ing93))) -(recipe r28 (key (sy28 ing149))) -(recipe r28 (key (sx28 ing94))) -(recipe r28 (key (sy28 ing150))) -(recipe r28 (key (sx28 ing95))) -(recipe r28 (key (sy28 ing151))) -(recipe r29 (numIngredients 2)) -(recipe r29 (result (id item29))) -(recipe r29 (pattern 0 sx29)) -(recipe r29 (pattern 1 sy29)) -(recipe r29 (key (sx29 ing87))) -(recipe r29 (key (sy29 ing145))) -(recipe r29 (key (sx29 ing88))) -(recipe r29 (key (sy29 ing146))) -(recipe r29 (key (sx29 ing89))) -(recipe r29 (key (sy29 ing147))) -(recipe r29 (key (sx29 ing90))) -(recipe r29 (key (sy29 ing148))) -(recipe r29 (key (sx29 ing91))) -(recipe r29 (key (sy29 ing149))) -(recipe r29 (key (sx29 ing92))) -(recipe r29 (key (sy29 ing150))) -(recipe r29 (key (sx29 ing93))) -(recipe r29 (key (sy29 ing151))) -(recipe r29 (key (sx29 ing94))) -(recipe r29 (key (sy29 ing152))) -(recipe r29 (key (sx29 ing95))) -(recipe r29 (key (sy29 ing153))) -(recipe r29 (key (sx29 ing96))) -(recipe r29 (key (sy29 ing154))) -(recipe r29 (key (sx29 ing97))) -(recipe r29 (key (sy29 ing155))) -(recipe r29 (key (sx29 ing98))) -(recipe r29 (key (sy29 ing156))) -(recipe r30 (numIngredients 2)) -(recipe r30 (result (id item30))) -(recipe r30 (pattern 0 sx30)) -(recipe r30 (pattern 1 sy30)) -(recipe r30 (key (sx30 ing90))) -(recipe r30 (key (sy30 ing150))) -(recipe r30 (key (sx30 ing91))) -(recipe r30 (key (sy30 ing151))) -(recipe r30 (key (sx30 ing92))) -(recipe r30 (key (sy30 ing152))) -(recipe r30 (key (sx30 ing93))) -(recipe r30 (key (sy30 ing153))) -(recipe r30 (key (sx30 ing94))) -(recipe r30 (key (sy30 ing154))) -(recipe r30 (key (sx30 ing95))) -(recipe r30 (key (sy30 ing155))) -(recipe r30 (key (sx30 ing96))) -(recipe r30 (key (sy30 ing156))) -(recipe r30 (key (sx30 ing97))) -(recipe r30 (key (sy30 ing157))) -(recipe r30 (key (sx30 ing98))) -(recipe r30 (key (sy30 ing158))) -(recipe r30 (key (sx30 ing99))) -(recipe r30 (key (sy30 ing159))) -(recipe r30 (key (sx30 ing100))) -(recipe r30 (key (sy30 ing160))) -(recipe r30 (key (sx30 ing101))) -(recipe r30 (key (sy30 ing161))) -(recipe r31 (numIngredients 2)) -(recipe r31 (result (id item31))) -(recipe r31 (pattern 0 sx31)) -(recipe r31 (pattern 1 sy31)) -(recipe r31 (key (sx31 ing93))) -(recipe r31 (key (sy31 ing155))) -(recipe r31 (key (sx31 ing94))) -(recipe r31 (key (sy31 ing156))) -(recipe r31 (key (sx31 ing95))) -(recipe r31 (key (sy31 ing157))) -(recipe r31 (key (sx31 ing96))) -(recipe r31 (key (sy31 ing158))) -(recipe r31 (key (sx31 ing97))) -(recipe r31 (key (sy31 ing159))) -(recipe r31 (key (sx31 ing98))) -(recipe r31 (key (sy31 ing160))) -(recipe r31 (key (sx31 ing99))) -(recipe r31 (key (sy31 ing161))) -(recipe r31 (key (sx31 ing100))) -(recipe r31 (key (sy31 ing162))) -(recipe r31 (key (sx31 ing101))) -(recipe r31 (key (sy31 ing163))) -(recipe r31 (key (sx31 ing102))) -(recipe r31 (key (sy31 ing164))) -(recipe r31 (key (sx31 ing103))) -(recipe r31 (key (sy31 ing165))) -(recipe r31 (key (sx31 ing104))) -(recipe r31 (key (sy31 ing166))) -(recipe r32 (numIngredients 2)) -(recipe r32 (result (id item32))) -(recipe r32 (pattern 0 sx32)) -(recipe r32 (pattern 1 sy32)) -(recipe r32 (key (sx32 ing96))) -(recipe r32 (key (sy32 ing160))) -(recipe r32 (key (sx32 ing97))) -(recipe r32 (key (sy32 ing161))) -(recipe r32 (key (sx32 ing98))) -(recipe r32 (key (sy32 ing162))) -(recipe r32 (key (sx32 ing99))) -(recipe r32 (key (sy32 ing163))) -(recipe r32 (key (sx32 ing100))) -(recipe r32 (key (sy32 ing164))) -(recipe r32 (key (sx32 ing101))) -(recipe r32 (key (sy32 ing165))) -(recipe r32 (key (sx32 ing102))) -(recipe r32 (key (sy32 ing166))) -(recipe r32 (key (sx32 ing103))) -(recipe r32 (key (sy32 ing167))) -(recipe r32 (key (sx32 ing104))) -(recipe r32 (key (sy32 ing168))) -(recipe r32 (key (sx32 ing105))) -(recipe r32 (key (sy32 ing169))) -(recipe r32 (key (sx32 ing106))) -(recipe r32 (key (sy32 ing170))) -(recipe r32 (key (sx32 ing107))) -(recipe r32 (key (sy32 ing171))) -(recipe r33 (numIngredients 2)) -(recipe r33 (result (id item33))) -(recipe r33 (pattern 0 sx33)) -(recipe r33 (pattern 1 sy33)) -(recipe r33 (key (sx33 ing99))) -(recipe r33 (key (sy33 ing165))) -(recipe r33 (key (sx33 ing100))) -(recipe r33 (key (sy33 ing166))) -(recipe r33 (key (sx33 ing101))) -(recipe r33 (key (sy33 ing167))) -(recipe r33 (key (sx33 ing102))) -(recipe r33 (key (sy33 ing168))) -(recipe r33 (key (sx33 ing103))) -(recipe r33 (key (sy33 ing169))) -(recipe r33 (key (sx33 ing104))) -(recipe r33 (key (sy33 ing170))) -(recipe r33 (key (sx33 ing105))) -(recipe r33 (key (sy33 ing171))) -(recipe r33 (key (sx33 ing106))) -(recipe r33 (key (sy33 ing172))) -(recipe r33 (key (sx33 ing107))) -(recipe r33 (key (sy33 ing173))) -(recipe r33 (key (sx33 ing108))) -(recipe r33 (key (sy33 ing174))) -(recipe r33 (key (sx33 ing109))) -(recipe r33 (key (sy33 ing175))) -(recipe r33 (key (sx33 ing110))) -(recipe r33 (key (sy33 ing176))) -(recipe r34 (numIngredients 2)) -(recipe r34 (result (id item34))) -(recipe r34 (pattern 0 sx34)) -(recipe r34 (pattern 1 sy34)) -(recipe r34 (key (sx34 ing102))) -(recipe r34 (key (sy34 ing170))) -(recipe r34 (key (sx34 ing103))) -(recipe r34 (key (sy34 ing171))) -(recipe r34 (key (sx34 ing104))) -(recipe r34 (key (sy34 ing172))) -(recipe r34 (key (sx34 ing105))) -(recipe r34 (key (sy34 ing173))) -(recipe r34 (key (sx34 ing106))) -(recipe r34 (key (sy34 ing174))) -(recipe r34 (key (sx34 ing107))) -(recipe r34 (key (sy34 ing175))) -(recipe r34 (key (sx34 ing108))) -(recipe r34 (key (sy34 ing176))) -(recipe r34 (key (sx34 ing109))) -(recipe r34 (key (sy34 ing177))) -(recipe r34 (key (sx34 ing110))) -(recipe r34 (key (sy34 ing178))) -(recipe r34 (key (sx34 ing111))) -(recipe r34 (key (sy34 ing179))) -(recipe r34 (key (sx34 ing112))) -(recipe r34 (key (sy34 ing180))) -(recipe r34 (key (sx34 ing113))) -(recipe r34 (key (sy34 ing181))) -(recipe r35 (numIngredients 2)) -(recipe r35 (result (id item35))) -(recipe r35 (pattern 0 sx35)) -(recipe r35 (pattern 1 sy35)) -(recipe r35 (key (sx35 ing105))) -(recipe r35 (key (sy35 ing175))) -(recipe r35 (key (sx35 ing106))) -(recipe r35 (key (sy35 ing176))) -(recipe r35 (key (sx35 ing107))) -(recipe r35 (key (sy35 ing177))) -(recipe r35 (key (sx35 ing108))) -(recipe r35 (key (sy35 ing178))) -(recipe r35 (key (sx35 ing109))) -(recipe r35 (key (sy35 ing179))) -(recipe r35 (key (sx35 ing110))) -(recipe r35 (key (sy35 ing180))) -(recipe r35 (key (sx35 ing111))) -(recipe r35 (key (sy35 ing181))) -(recipe r35 (key (sx35 ing112))) -(recipe r35 (key (sy35 ing182))) -(recipe r35 (key (sx35 ing113))) -(recipe r35 (key (sy35 ing183))) -(recipe r35 (key (sx35 ing114))) -(recipe r35 (key (sy35 ing184))) -(recipe r35 (key (sx35 ing115))) -(recipe r35 (key (sy35 ing185))) -(recipe r35 (key (sx35 ing116))) -(recipe r35 (key (sy35 ing186))) -(recipe r36 (numIngredients 2)) -(recipe r36 (result (id item36))) -(recipe r36 (pattern 0 sx36)) -(recipe r36 (pattern 1 sy36)) -(recipe r36 (key (sx36 ing108))) -(recipe r36 (key (sy36 ing180))) -(recipe r36 (key (sx36 ing109))) -(recipe r36 (key (sy36 ing181))) -(recipe r36 (key (sx36 ing110))) -(recipe r36 (key (sy36 ing182))) -(recipe r36 (key (sx36 ing111))) -(recipe r36 (key (sy36 ing183))) -(recipe r36 (key (sx36 ing112))) -(recipe r36 (key (sy36 ing184))) -(recipe r36 (key (sx36 ing113))) -(recipe r36 (key (sy36 ing185))) -(recipe r36 (key (sx36 ing114))) -(recipe r36 (key (sy36 ing186))) -(recipe r36 (key (sx36 ing115))) -(recipe r36 (key (sy36 ing187))) -(recipe r36 (key (sx36 ing116))) -(recipe r36 (key (sy36 ing188))) -(recipe r36 (key (sx36 ing117))) -(recipe r36 (key (sy36 ing189))) -(recipe r36 (key (sx36 ing118))) -(recipe r36 (key (sy36 ing190))) -(recipe r36 (key (sx36 ing119))) -(recipe r36 (key (sy36 ing191))) -(recipe r37 (numIngredients 2)) -(recipe r37 (result (id item37))) -(recipe r37 (pattern 0 sx37)) -(recipe r37 (pattern 1 sy37)) -(recipe r37 (key (sx37 ing111))) -(recipe r37 (key (sy37 ing185))) -(recipe r37 (key (sx37 ing112))) -(recipe r37 (key (sy37 ing186))) -(recipe r37 (key (sx37 ing113))) -(recipe r37 (key (sy37 ing187))) -(recipe r37 (key (sx37 ing114))) -(recipe r37 (key (sy37 ing188))) -(recipe r37 (key (sx37 ing115))) -(recipe r37 (key (sy37 ing189))) -(recipe r37 (key (sx37 ing116))) -(recipe r37 (key (sy37 ing190))) -(recipe r37 (key (sx37 ing117))) -(recipe r37 (key (sy37 ing191))) -(recipe r37 (key (sx37 ing118))) -(recipe r37 (key (sy37 ing192))) -(recipe r37 (key (sx37 ing119))) -(recipe r37 (key (sy37 ing193))) -(recipe r37 (key (sx37 ing120))) -(recipe r37 (key (sy37 ing194))) -(recipe r37 (key (sx37 ing121))) -(recipe r37 (key (sy37 ing195))) -(recipe r37 (key (sx37 ing122))) -(recipe r37 (key (sy37 ing196))) -(recipe r38 (numIngredients 2)) -(recipe r38 (result (id item38))) -(recipe r38 (pattern 0 sx38)) -(recipe r38 (pattern 1 sy38)) -(recipe r38 (key (sx38 ing114))) -(recipe r38 (key (sy38 ing190))) -(recipe r38 (key (sx38 ing115))) -(recipe r38 (key (sy38 ing191))) -(recipe r38 (key (sx38 ing116))) -(recipe r38 (key (sy38 ing192))) -(recipe r38 (key (sx38 ing117))) -(recipe r38 (key (sy38 ing193))) -(recipe r38 (key (sx38 ing118))) -(recipe r38 (key (sy38 ing194))) -(recipe r38 (key (sx38 ing119))) -(recipe r38 (key (sy38 ing195))) -(recipe r38 (key (sx38 ing120))) -(recipe r38 (key (sy38 ing196))) -(recipe r38 (key (sx38 ing121))) -(recipe r38 (key (sy38 ing197))) -(recipe r38 (key (sx38 ing122))) -(recipe r38 (key (sy38 ing198))) -(recipe r38 (key (sx38 ing123))) -(recipe r38 (key (sy38 ing199))) -(recipe r38 (key (sx38 ing124))) -(recipe r38 (key (sy38 ing200))) -(recipe r38 (key (sx38 ing125))) -(recipe r38 (key (sy38 ing201))) -(recipe r39 (numIngredients 2)) -(recipe r39 (result (id item39))) -(recipe r39 (pattern 0 sx39)) -(recipe r39 (pattern 1 sy39)) -(recipe r39 (key (sx39 ing117))) -(recipe r39 (key (sy39 ing195))) -(recipe r39 (key (sx39 ing118))) -(recipe r39 (key (sy39 ing196))) -(recipe r39 (key (sx39 ing119))) -(recipe r39 (key (sy39 ing197))) -(recipe r39 (key (sx39 ing120))) -(recipe r39 (key (sy39 ing198))) -(recipe r39 (key (sx39 ing121))) -(recipe r39 (key (sy39 ing199))) -(recipe r39 (key (sx39 ing122))) -(recipe r39 (key (sy39 ing200))) -(recipe r39 (key (sx39 ing123))) -(recipe r39 (key (sy39 ing201))) -(recipe r39 (key (sx39 ing124))) -(recipe r39 (key (sy39 ing202))) -(recipe r39 (key (sx39 ing125))) -(recipe r39 (key (sy39 ing203))) -(recipe r39 (key (sx39 ing126))) -(recipe r39 (key (sy39 ing204))) -(recipe r39 (key (sx39 ing127))) -(recipe r39 (key (sy39 ing205))) -(recipe r39 (key (sx39 ing128))) -(recipe r39 (key (sy39 ing206))) -(recipe r40 (numIngredients 2)) -(recipe r40 (result (id item40))) -(recipe r40 (pattern 0 sx40)) -(recipe r40 (pattern 1 sy40)) -(recipe r40 (key (sx40 ing120))) -(recipe r40 (key (sy40 ing200))) -(recipe r40 (key (sx40 ing121))) -(recipe r40 (key (sy40 ing201))) -(recipe r40 (key (sx40 ing122))) -(recipe r40 (key (sy40 ing202))) -(recipe r40 (key (sx40 ing123))) -(recipe r40 (key (sy40 ing203))) -(recipe r40 (key (sx40 ing124))) -(recipe r40 (key (sy40 ing204))) -(recipe r40 (key (sx40 ing125))) -(recipe r40 (key (sy40 ing205))) -(recipe r40 (key (sx40 ing126))) -(recipe r40 (key (sy40 ing206))) -(recipe r40 (key (sx40 ing127))) -(recipe r40 (key (sy40 ing207))) -(recipe r40 (key (sx40 ing128))) -(recipe r40 (key (sy40 ing208))) -(recipe r40 (key (sx40 ing129))) -(recipe r40 (key (sy40 ing209))) -(recipe r40 (key (sx40 ing130))) -(recipe r40 (key (sy40 ing210))) -(recipe r40 (key (sx40 ing131))) -(recipe r40 (key (sy40 ing211))) -(recipe r41 (numIngredients 2)) -(recipe r41 (result (id item41))) -(recipe r41 (pattern 0 sx41)) -(recipe r41 (pattern 1 sy41)) -(recipe r41 (key (sx41 ing123))) -(recipe r41 (key (sy41 ing205))) -(recipe r41 (key (sx41 ing124))) -(recipe r41 (key (sy41 ing206))) -(recipe r41 (key (sx41 ing125))) -(recipe r41 (key (sy41 ing207))) -(recipe r41 (key (sx41 ing126))) -(recipe r41 (key (sy41 ing208))) -(recipe r41 (key (sx41 ing127))) -(recipe r41 (key (sy41 ing209))) -(recipe r41 (key (sx41 ing128))) -(recipe r41 (key (sy41 ing210))) -(recipe r41 (key (sx41 ing129))) -(recipe r41 (key (sy41 ing211))) -(recipe r41 (key (sx41 ing130))) -(recipe r41 (key (sy41 ing212))) -(recipe r41 (key (sx41 ing131))) -(recipe r41 (key (sy41 ing213))) -(recipe r41 (key (sx41 ing132))) -(recipe r41 (key (sy41 ing214))) -(recipe r41 (key (sx41 ing133))) -(recipe r41 (key (sy41 ing215))) -(recipe r41 (key (sx41 ing134))) -(recipe r41 (key (sy41 ing216))) -(recipe r42 (numIngredients 2)) -(recipe r42 (result (id item42))) -(recipe r42 (pattern 0 sx42)) -(recipe r42 (pattern 1 sy42)) -(recipe r42 (key (sx42 ing126))) -(recipe r42 (key (sy42 ing210))) -(recipe r42 (key (sx42 ing127))) -(recipe r42 (key (sy42 ing211))) -(recipe r42 (key (sx42 ing128))) -(recipe r42 (key (sy42 ing212))) -(recipe r42 (key (sx42 ing129))) -(recipe r42 (key (sy42 ing213))) -(recipe r42 (key (sx42 ing130))) -(recipe r42 (key (sy42 ing214))) -(recipe r42 (key (sx42 ing131))) -(recipe r42 (key (sy42 ing215))) -(recipe r42 (key (sx42 ing132))) -(recipe r42 (key (sy42 ing216))) -(recipe r42 (key (sx42 ing133))) -(recipe r42 (key (sy42 ing217))) -(recipe r42 (key (sx42 ing134))) -(recipe r42 (key (sy42 ing218))) -(recipe r42 (key (sx42 ing135))) -(recipe r42 (key (sy42 ing219))) -(recipe r42 (key (sx42 ing136))) -(recipe r42 (key (sy42 ing220))) -(recipe r42 (key (sx42 ing137))) -(recipe r42 (key (sy42 ing221))) -(recipe r43 (numIngredients 2)) -(recipe r43 (result (id item43))) -(recipe r43 (pattern 0 sx43)) -(recipe r43 (pattern 1 sy43)) -(recipe r43 (key (sx43 ing129))) -(recipe r43 (key (sy43 ing215))) -(recipe r43 (key (sx43 ing130))) -(recipe r43 (key (sy43 ing216))) -(recipe r43 (key (sx43 ing131))) -(recipe r43 (key (sy43 ing217))) -(recipe r43 (key (sx43 ing132))) -(recipe r43 (key (sy43 ing218))) -(recipe r43 (key (sx43 ing133))) -(recipe r43 (key (sy43 ing219))) -(recipe r43 (key (sx43 ing134))) -(recipe r43 (key (sy43 ing220))) -(recipe r43 (key (sx43 ing135))) -(recipe r43 (key (sy43 ing221))) -(recipe r43 (key (sx43 ing136))) -(recipe r43 (key (sy43 ing222))) -(recipe r43 (key (sx43 ing137))) -(recipe r43 (key (sy43 ing223))) -(recipe r43 (key (sx43 ing138))) -(recipe r43 (key (sy43 ing224))) -(recipe r43 (key (sx43 ing139))) -(recipe r43 (key (sy43 ing225))) -(recipe r43 (key (sx43 ing140))) -(recipe r43 (key (sy43 ing226))) -(recipe r44 (numIngredients 2)) -(recipe r44 (result (id item44))) -(recipe r44 (pattern 0 sx44)) -(recipe r44 (pattern 1 sy44)) -(recipe r44 (key (sx44 ing132))) -(recipe r44 (key (sy44 ing220))) -(recipe r44 (key (sx44 ing133))) -(recipe r44 (key (sy44 ing221))) -(recipe r44 (key (sx44 ing134))) -(recipe r44 (key (sy44 ing222))) -(recipe r44 (key (sx44 ing135))) -(recipe r44 (key (sy44 ing223))) -(recipe r44 (key (sx44 ing136))) -(recipe r44 (key (sy44 ing224))) -(recipe r44 (key (sx44 ing137))) -(recipe r44 (key (sy44 ing225))) -(recipe r44 (key (sx44 ing138))) -(recipe r44 (key (sy44 ing226))) -(recipe r44 (key (sx44 ing139))) -(recipe r44 (key (sy44 ing227))) -(recipe r44 (key (sx44 ing140))) -(recipe r44 (key (sy44 ing228))) -(recipe r44 (key (sx44 ing141))) -(recipe r44 (key (sy44 ing229))) -(recipe r44 (key (sx44 ing142))) -(recipe r44 (key (sy44 ing230))) -(recipe r44 (key (sx44 ing143))) -(recipe r44 (key (sy44 ing231))) -(recipe r45 (numIngredients 2)) -(recipe r45 (result (id item45))) -(recipe r45 (pattern 0 sx45)) -(recipe r45 (pattern 1 sy45)) -(recipe r45 (key (sx45 ing135))) -(recipe r45 (key (sy45 ing225))) -(recipe r45 (key (sx45 ing136))) -(recipe r45 (key (sy45 ing226))) -(recipe r45 (key (sx45 ing137))) -(recipe r45 (key (sy45 ing227))) -(recipe r45 (key (sx45 ing138))) -(recipe r45 (key (sy45 ing228))) -(recipe r45 (key (sx45 ing139))) -(recipe r45 (key (sy45 ing229))) -(recipe r45 (key (sx45 ing140))) -(recipe r45 (key (sy45 ing230))) -(recipe r45 (key (sx45 ing141))) -(recipe r45 (key (sy45 ing231))) -(recipe r45 (key (sx45 ing142))) -(recipe r45 (key (sy45 ing232))) -(recipe r45 (key (sx45 ing143))) -(recipe r45 (key (sy45 ing233))) -(recipe r45 (key (sx45 ing144))) -(recipe r45 (key (sy45 ing234))) -(recipe r45 (key (sx45 ing145))) -(recipe r45 (key (sy45 ing235))) -(recipe r45 (key (sx45 ing146))) -(recipe r45 (key (sy45 ing236))) -(recipe r46 (numIngredients 2)) -(recipe r46 (result (id item46))) -(recipe r46 (pattern 0 sx46)) -(recipe r46 (pattern 1 sy46)) -(recipe r46 (key (sx46 ing138))) -(recipe r46 (key (sy46 ing230))) -(recipe r46 (key (sx46 ing139))) -(recipe r46 (key (sy46 ing231))) -(recipe r46 (key (sx46 ing140))) -(recipe r46 (key (sy46 ing232))) -(recipe r46 (key (sx46 ing141))) -(recipe r46 (key (sy46 ing233))) -(recipe r46 (key (sx46 ing142))) -(recipe r46 (key (sy46 ing234))) -(recipe r46 (key (sx46 ing143))) -(recipe r46 (key (sy46 ing235))) -(recipe r46 (key (sx46 ing144))) -(recipe r46 (key (sy46 ing236))) -(recipe r46 (key (sx46 ing145))) -(recipe r46 (key (sy46 ing237))) -(recipe r46 (key (sx46 ing146))) -(recipe r46 (key (sy46 ing238))) -(recipe r46 (key (sx46 ing147))) -(recipe r46 (key (sy46 ing239))) -(recipe r46 (key (sx46 ing148))) -(recipe r46 (key (sy46 ing240))) -(recipe r46 (key (sx46 ing149))) -(recipe r46 (key (sy46 ing241))) -(recipe r47 (numIngredients 2)) -(recipe r47 (result (id item47))) -(recipe r47 (pattern 0 sx47)) -(recipe r47 (pattern 1 sy47)) -(recipe r47 (key (sx47 ing141))) -(recipe r47 (key (sy47 ing235))) -(recipe r47 (key (sx47 ing142))) -(recipe r47 (key (sy47 ing236))) -(recipe r47 (key (sx47 ing143))) -(recipe r47 (key (sy47 ing237))) -(recipe r47 (key (sx47 ing144))) -(recipe r47 (key (sy47 ing238))) -(recipe r47 (key (sx47 ing145))) -(recipe r47 (key (sy47 ing239))) -(recipe r47 (key (sx47 ing146))) -(recipe r47 (key (sy47 ing240))) -(recipe r47 (key (sx47 ing147))) -(recipe r47 (key (sy47 ing241))) -(recipe r47 (key (sx47 ing148))) -(recipe r47 (key (sy47 ing242))) -(recipe r47 (key (sx47 ing149))) -(recipe r47 (key (sy47 ing243))) -(recipe r47 (key (sx47 ing150))) -(recipe r47 (key (sy47 ing244))) -(recipe r47 (key (sx47 ing151))) -(recipe r47 (key (sy47 ing245))) -(recipe r47 (key (sx47 ing152))) -(recipe r47 (key (sy47 ing246))) -(recipe r48 (numIngredients 2)) -(recipe r48 (result (id item48))) -(recipe r48 (pattern 0 sx48)) -(recipe r48 (pattern 1 sy48)) -(recipe r48 (key (sx48 ing144))) -(recipe r48 (key (sy48 ing240))) -(recipe r48 (key (sx48 ing145))) -(recipe r48 (key (sy48 ing241))) -(recipe r48 (key (sx48 ing146))) -(recipe r48 (key (sy48 ing242))) -(recipe r48 (key (sx48 ing147))) -(recipe r48 (key (sy48 ing243))) -(recipe r48 (key (sx48 ing148))) -(recipe r48 (key (sy48 ing244))) -(recipe r48 (key (sx48 ing149))) -(recipe r48 (key (sy48 ing245))) -(recipe r48 (key (sx48 ing150))) -(recipe r48 (key (sy48 ing246))) -(recipe r48 (key (sx48 ing151))) -(recipe r48 (key (sy48 ing247))) -(recipe r48 (key (sx48 ing152))) -(recipe r48 (key (sy48 ing248))) -(recipe r48 (key (sx48 ing153))) -(recipe r48 (key (sy48 ing249))) -(recipe r48 (key (sx48 ing154))) -(recipe r48 (key (sy48 ing250))) -(recipe r48 (key (sx48 ing155))) -(recipe r48 (key (sy48 ing251))) -(recipe r49 (numIngredients 2)) -(recipe r49 (result (id item49))) -(recipe r49 (pattern 0 sx49)) -(recipe r49 (pattern 1 sy49)) -(recipe r49 (key (sx49 ing147))) -(recipe r49 (key (sy49 ing245))) -(recipe r49 (key (sx49 ing148))) -(recipe r49 (key (sy49 ing246))) -(recipe r49 (key (sx49 ing149))) -(recipe r49 (key (sy49 ing247))) -(recipe r49 (key (sx49 ing150))) -(recipe r49 (key (sy49 ing248))) -(recipe r49 (key (sx49 ing151))) -(recipe r49 (key (sy49 ing249))) -(recipe r49 (key (sx49 ing152))) -(recipe r49 (key (sy49 ing250))) -(recipe r49 (key (sx49 ing153))) -(recipe r49 (key (sy49 ing251))) -(recipe r49 (key (sx49 ing154))) -(recipe r49 (key (sy49 ing252))) -(recipe r49 (key (sx49 ing155))) -(recipe r49 (key (sy49 ing253))) -(recipe r49 (key (sx49 ing156))) -(recipe r49 (key (sy49 ing254))) -(recipe r49 (key (sx49 ing157))) -(recipe r49 (key (sy49 ing255))) -(recipe r49 (key (sx49 ing158))) -(recipe r49 (key (sy49 ing256))) -(recipe r50 (numIngredients 2)) -(recipe r50 (result (id item50))) -(recipe r50 (pattern 0 sx50)) -(recipe r50 (pattern 1 sy50)) -(recipe r50 (key (sx50 ing150))) -(recipe r50 (key (sy50 ing250))) -(recipe r50 (key (sx50 ing151))) -(recipe r50 (key (sy50 ing251))) -(recipe r50 (key (sx50 ing152))) -(recipe r50 (key (sy50 ing252))) -(recipe r50 (key (sx50 ing153))) -(recipe r50 (key (sy50 ing253))) -(recipe r50 (key (sx50 ing154))) -(recipe r50 (key (sy50 ing254))) -(recipe r50 (key (sx50 ing155))) -(recipe r50 (key (sy50 ing255))) -(recipe r50 (key (sx50 ing156))) -(recipe r50 (key (sy50 ing256))) -(recipe r50 (key (sx50 ing157))) -(recipe r50 (key (sy50 ing257))) -(recipe r50 (key (sx50 ing158))) -(recipe r50 (key (sy50 ing258))) -(recipe r50 (key (sx50 ing159))) -(recipe r50 (key (sy50 ing259))) -(recipe r50 (key (sx50 ing160))) -(recipe r50 (key (sy50 ing260))) -(recipe r50 (key (sx50 ing161))) -(recipe r50 (key (sy50 ing261))) -(recipe r51 (numIngredients 2)) -(recipe r51 (result (id item51))) -(recipe r51 (pattern 0 sx51)) -(recipe r51 (pattern 1 sy51)) -(recipe r51 (key (sx51 ing153))) -(recipe r51 (key (sy51 ing255))) -(recipe r51 (key (sx51 ing154))) -(recipe r51 (key (sy51 ing256))) -(recipe r51 (key (sx51 ing155))) -(recipe r51 (key (sy51 ing257))) -(recipe r51 (key (sx51 ing156))) -(recipe r51 (key (sy51 ing258))) -(recipe r51 (key (sx51 ing157))) -(recipe r51 (key (sy51 ing259))) -(recipe r51 (key (sx51 ing158))) -(recipe r51 (key (sy51 ing260))) -(recipe r51 (key (sx51 ing159))) -(recipe r51 (key (sy51 ing261))) -(recipe r51 (key (sx51 ing160))) -(recipe r51 (key (sy51 ing262))) -(recipe r51 (key (sx51 ing161))) -(recipe r51 (key (sy51 ing263))) -(recipe r51 (key (sx51 ing162))) -(recipe r51 (key (sy51 ing264))) -(recipe r51 (key (sx51 ing163))) -(recipe r51 (key (sy51 ing265))) -(recipe r51 (key (sx51 ing164))) -(recipe r51 (key (sy51 ing266))) -(recipe r52 (numIngredients 2)) -(recipe r52 (result (id item52))) -(recipe r52 (pattern 0 sx52)) -(recipe r52 (pattern 1 sy52)) -(recipe r52 (key (sx52 ing156))) -(recipe r52 (key (sy52 ing260))) -(recipe r52 (key (sx52 ing157))) -(recipe r52 (key (sy52 ing261))) -(recipe r52 (key (sx52 ing158))) -(recipe r52 (key (sy52 ing262))) -(recipe r52 (key (sx52 ing159))) -(recipe r52 (key (sy52 ing263))) -(recipe r52 (key (sx52 ing160))) -(recipe r52 (key (sy52 ing264))) -(recipe r52 (key (sx52 ing161))) -(recipe r52 (key (sy52 ing265))) -(recipe r52 (key (sx52 ing162))) -(recipe r52 (key (sy52 ing266))) -(recipe r52 (key (sx52 ing163))) -(recipe r52 (key (sy52 ing267))) -(recipe r52 (key (sx52 ing164))) -(recipe r52 (key (sy52 ing268))) -(recipe r52 (key (sx52 ing165))) -(recipe r52 (key (sy52 ing269))) -(recipe r52 (key (sx52 ing166))) -(recipe r52 (key (sy52 ing270))) -(recipe r52 (key (sx52 ing167))) -(recipe r52 (key (sy52 ing271))) -(recipe r53 (numIngredients 2)) -(recipe r53 (result (id item53))) -(recipe r53 (pattern 0 sx53)) -(recipe r53 (pattern 1 sy53)) -(recipe r53 (key (sx53 ing159))) -(recipe r53 (key (sy53 ing265))) -(recipe r53 (key (sx53 ing160))) -(recipe r53 (key (sy53 ing266))) -(recipe r53 (key (sx53 ing161))) -(recipe r53 (key (sy53 ing267))) -(recipe r53 (key (sx53 ing162))) -(recipe r53 (key (sy53 ing268))) -(recipe r53 (key (sx53 ing163))) -(recipe r53 (key (sy53 ing269))) -(recipe r53 (key (sx53 ing164))) -(recipe r53 (key (sy53 ing270))) -(recipe r53 (key (sx53 ing165))) -(recipe r53 (key (sy53 ing271))) -(recipe r53 (key (sx53 ing166))) -(recipe r53 (key (sy53 ing272))) -(recipe r53 (key (sx53 ing167))) -(recipe r53 (key (sy53 ing273))) -(recipe r53 (key (sx53 ing168))) -(recipe r53 (key (sy53 ing274))) -(recipe r53 (key (sx53 ing169))) -(recipe r53 (key (sy53 ing275))) -(recipe r53 (key (sx53 ing170))) -(recipe r53 (key (sy53 ing276))) -(recipe r54 (numIngredients 2)) -(recipe r54 (result (id item54))) -(recipe r54 (pattern 0 sx54)) -(recipe r54 (pattern 1 sy54)) -(recipe r54 (key (sx54 ing162))) -(recipe r54 (key (sy54 ing270))) -(recipe r54 (key (sx54 ing163))) -(recipe r54 (key (sy54 ing271))) -(recipe r54 (key (sx54 ing164))) -(recipe r54 (key (sy54 ing272))) -(recipe r54 (key (sx54 ing165))) -(recipe r54 (key (sy54 ing273))) -(recipe r54 (key (sx54 ing166))) -(recipe r54 (key (sy54 ing274))) -(recipe r54 (key (sx54 ing167))) -(recipe r54 (key (sy54 ing275))) -(recipe r54 (key (sx54 ing168))) -(recipe r54 (key (sy54 ing276))) -(recipe r54 (key (sx54 ing169))) -(recipe r54 (key (sy54 ing277))) -(recipe r54 (key (sx54 ing170))) -(recipe r54 (key (sy54 ing278))) -(recipe r54 (key (sx54 ing171))) -(recipe r54 (key (sy54 ing279))) -(recipe r54 (key (sx54 ing172))) -(recipe r54 (key (sy54 ing280))) -(recipe r54 (key (sx54 ing173))) -(recipe r54 (key (sy54 ing281))) -(recipe r55 (numIngredients 2)) -(recipe r55 (result (id item55))) -(recipe r55 (pattern 0 sx55)) -(recipe r55 (pattern 1 sy55)) -(recipe r55 (key (sx55 ing165))) -(recipe r55 (key (sy55 ing275))) -(recipe r55 (key (sx55 ing166))) -(recipe r55 (key (sy55 ing276))) -(recipe r55 (key (sx55 ing167))) -(recipe r55 (key (sy55 ing277))) -(recipe r55 (key (sx55 ing168))) -(recipe r55 (key (sy55 ing278))) -(recipe r55 (key (sx55 ing169))) -(recipe r55 (key (sy55 ing279))) -(recipe r55 (key (sx55 ing170))) -(recipe r55 (key (sy55 ing280))) -(recipe r55 (key (sx55 ing171))) -(recipe r55 (key (sy55 ing281))) -(recipe r55 (key (sx55 ing172))) -(recipe r55 (key (sy55 ing282))) -(recipe r55 (key (sx55 ing173))) -(recipe r55 (key (sy55 ing283))) -(recipe r55 (key (sx55 ing174))) -(recipe r55 (key (sy55 ing284))) -(recipe r55 (key (sx55 ing175))) -(recipe r55 (key (sy55 ing285))) -(recipe r55 (key (sx55 ing176))) -(recipe r55 (key (sy55 ing286))) -(recipe r56 (numIngredients 2)) -(recipe r56 (result (id item56))) -(recipe r56 (pattern 0 sx56)) -(recipe r56 (pattern 1 sy56)) -(recipe r56 (key (sx56 ing168))) -(recipe r56 (key (sy56 ing280))) -(recipe r56 (key (sx56 ing169))) -(recipe r56 (key (sy56 ing281))) -(recipe r56 (key (sx56 ing170))) -(recipe r56 (key (sy56 ing282))) -(recipe r56 (key (sx56 ing171))) -(recipe r56 (key (sy56 ing283))) -(recipe r56 (key (sx56 ing172))) -(recipe r56 (key (sy56 ing284))) -(recipe r56 (key (sx56 ing173))) -(recipe r56 (key (sy56 ing285))) -(recipe r56 (key (sx56 ing174))) -(recipe r56 (key (sy56 ing286))) -(recipe r56 (key (sx56 ing175))) -(recipe r56 (key (sy56 ing287))) -(recipe r56 (key (sx56 ing176))) -(recipe r56 (key (sy56 ing288))) -(recipe r56 (key (sx56 ing177))) -(recipe r56 (key (sy56 ing289))) -(recipe r56 (key (sx56 ing178))) -(recipe r56 (key (sy56 ing290))) -(recipe r56 (key (sx56 ing179))) -(recipe r56 (key (sy56 ing291))) -(recipe r57 (numIngredients 2)) -(recipe r57 (result (id item57))) -(recipe r57 (pattern 0 sx57)) -(recipe r57 (pattern 1 sy57)) -(recipe r57 (key (sx57 ing171))) -(recipe r57 (key (sy57 ing285))) -(recipe r57 (key (sx57 ing172))) -(recipe r57 (key (sy57 ing286))) -(recipe r57 (key (sx57 ing173))) -(recipe r57 (key (sy57 ing287))) -(recipe r57 (key (sx57 ing174))) -(recipe r57 (key (sy57 ing288))) -(recipe r57 (key (sx57 ing175))) -(recipe r57 (key (sy57 ing289))) -(recipe r57 (key (sx57 ing176))) -(recipe r57 (key (sy57 ing290))) -(recipe r57 (key (sx57 ing177))) -(recipe r57 (key (sy57 ing291))) -(recipe r57 (key (sx57 ing178))) -(recipe r57 (key (sy57 ing292))) -(recipe r57 (key (sx57 ing179))) -(recipe r57 (key (sy57 ing293))) -(recipe r57 (key (sx57 ing180))) -(recipe r57 (key (sy57 ing294))) -(recipe r57 (key (sx57 ing181))) -(recipe r57 (key (sy57 ing295))) -(recipe r57 (key (sx57 ing182))) -(recipe r57 (key (sy57 ing296))) -(recipe r58 (numIngredients 2)) -(recipe r58 (result (id item58))) -(recipe r58 (pattern 0 sx58)) -(recipe r58 (pattern 1 sy58)) -(recipe r58 (key (sx58 ing174))) -(recipe r58 (key (sy58 ing290))) -(recipe r58 (key (sx58 ing175))) -(recipe r58 (key (sy58 ing291))) -(recipe r58 (key (sx58 ing176))) -(recipe r58 (key (sy58 ing292))) -(recipe r58 (key (sx58 ing177))) -(recipe r58 (key (sy58 ing293))) -(recipe r58 (key (sx58 ing178))) -(recipe r58 (key (sy58 ing294))) -(recipe r58 (key (sx58 ing179))) -(recipe r58 (key (sy58 ing295))) -(recipe r58 (key (sx58 ing180))) -(recipe r58 (key (sy58 ing296))) -(recipe r58 (key (sx58 ing181))) -(recipe r58 (key (sy58 ing297))) -(recipe r58 (key (sx58 ing182))) -(recipe r58 (key (sy58 ing298))) -(recipe r58 (key (sx58 ing183))) -(recipe r58 (key (sy58 ing299))) -(recipe r58 (key (sx58 ing184))) -(recipe r58 (key (sy58 ing300))) -(recipe r58 (key (sx58 ing185))) -(recipe r58 (key (sy58 ing301))) -(recipe r59 (numIngredients 2)) -(recipe r59 (result (id item59))) -(recipe r59 (pattern 0 sx59)) -(recipe r59 (pattern 1 sy59)) -(recipe r59 (key (sx59 ing177))) -(recipe r59 (key (sy59 ing295))) -(recipe r59 (key (sx59 ing178))) -(recipe r59 (key (sy59 ing296))) -(recipe r59 (key (sx59 ing179))) -(recipe r59 (key (sy59 ing297))) -(recipe r59 (key (sx59 ing180))) -(recipe r59 (key (sy59 ing298))) -(recipe r59 (key (sx59 ing181))) -(recipe r59 (key (sy59 ing299))) -(recipe r59 (key (sx59 ing182))) -(recipe r59 (key (sy59 ing300))) -(recipe r59 (key (sx59 ing183))) -(recipe r59 (key (sy59 ing301))) -(recipe r59 (key (sx59 ing184))) -(recipe r59 (key (sy59 ing302))) -(recipe r59 (key (sx59 ing185))) -(recipe r59 (key (sy59 ing303))) -(recipe r59 (key (sx59 ing186))) -(recipe r59 (key (sy59 ing304))) -(recipe r59 (key (sx59 ing187))) -(recipe r59 (key (sy59 ing305))) -(recipe r59 (key (sx59 ing188))) -(recipe r59 (key (sy59 ing306))) -(recipe r60 (numIngredients 2)) -(recipe r60 (result (id item60))) -(recipe r60 (pattern 0 sx60)) -(recipe r60 (pattern 1 sy60)) -(recipe r60 (key (sx60 ing180))) -(recipe r60 (key (sy60 ing300))) -(recipe r60 (key (sx60 ing181))) -(recipe r60 (key (sy60 ing301))) -(recipe r60 (key (sx60 ing182))) -(recipe r60 (key (sy60 ing302))) -(recipe r60 (key (sx60 ing183))) -(recipe r60 (key (sy60 ing303))) -(recipe r60 (key (sx60 ing184))) -(recipe r60 (key (sy60 ing304))) -(recipe r60 (key (sx60 ing185))) -(recipe r60 (key (sy60 ing305))) -(recipe r60 (key (sx60 ing186))) -(recipe r60 (key (sy60 ing306))) -(recipe r60 (key (sx60 ing187))) -(recipe r60 (key (sy60 ing307))) -(recipe r60 (key (sx60 ing188))) -(recipe r60 (key (sy60 ing308))) -(recipe r60 (key (sx60 ing189))) -(recipe r60 (key (sy60 ing309))) -(recipe r60 (key (sx60 ing190))) -(recipe r60 (key (sy60 ing310))) -(recipe r60 (key (sx60 ing191))) -(recipe r60 (key (sy60 ing311))) -(recipe r61 (numIngredients 2)) -(recipe r61 (result (id item61))) -(recipe r61 (pattern 0 sx61)) -(recipe r61 (pattern 1 sy61)) -(recipe r61 (key (sx61 ing183))) -(recipe r61 (key (sy61 ing305))) -(recipe r61 (key (sx61 ing184))) -(recipe r61 (key (sy61 ing306))) -(recipe r61 (key (sx61 ing185))) -(recipe r61 (key (sy61 ing307))) -(recipe r61 (key (sx61 ing186))) -(recipe r61 (key (sy61 ing308))) -(recipe r61 (key (sx61 ing187))) -(recipe r61 (key (sy61 ing309))) -(recipe r61 (key (sx61 ing188))) -(recipe r61 (key (sy61 ing310))) -(recipe r61 (key (sx61 ing189))) -(recipe r61 (key (sy61 ing311))) -(recipe r61 (key (sx61 ing190))) -(recipe r61 (key (sy61 ing312))) -(recipe r61 (key (sx61 ing191))) -(recipe r61 (key (sy61 ing313))) -(recipe r61 (key (sx61 ing192))) -(recipe r61 (key (sy61 ing314))) -(recipe r61 (key (sx61 ing193))) -(recipe r61 (key (sy61 ing315))) -(recipe r61 (key (sx61 ing194))) -(recipe r61 (key (sy61 ing316))) -(recipe r62 (numIngredients 2)) -(recipe r62 (result (id item62))) -(recipe r62 (pattern 0 sx62)) -(recipe r62 (pattern 1 sy62)) -(recipe r62 (key (sx62 ing186))) -(recipe r62 (key (sy62 ing310))) -(recipe r62 (key (sx62 ing187))) -(recipe r62 (key (sy62 ing311))) -(recipe r62 (key (sx62 ing188))) -(recipe r62 (key (sy62 ing312))) -(recipe r62 (key (sx62 ing189))) -(recipe r62 (key (sy62 ing313))) -(recipe r62 (key (sx62 ing190))) -(recipe r62 (key (sy62 ing314))) -(recipe r62 (key (sx62 ing191))) -(recipe r62 (key (sy62 ing315))) -(recipe r62 (key (sx62 ing192))) -(recipe r62 (key (sy62 ing316))) -(recipe r62 (key (sx62 ing193))) -(recipe r62 (key (sy62 ing317))) -(recipe r62 (key (sx62 ing194))) -(recipe r62 (key (sy62 ing318))) -(recipe r62 (key (sx62 ing195))) -(recipe r62 (key (sy62 ing319))) -(recipe r62 (key (sx62 ing196))) -(recipe r62 (key (sy62 ing320))) -(recipe r62 (key (sx62 ing197))) -(recipe r62 (key (sy62 ing321))) -(recipe r63 (numIngredients 2)) -(recipe r63 (result (id item63))) -(recipe r63 (pattern 0 sx63)) -(recipe r63 (pattern 1 sy63)) -(recipe r63 (key (sx63 ing189))) -(recipe r63 (key (sy63 ing315))) -(recipe r63 (key (sx63 ing190))) -(recipe r63 (key (sy63 ing316))) -(recipe r63 (key (sx63 ing191))) -(recipe r63 (key (sy63 ing317))) -(recipe r63 (key (sx63 ing192))) -(recipe r63 (key (sy63 ing318))) -(recipe r63 (key (sx63 ing193))) -(recipe r63 (key (sy63 ing319))) -(recipe r63 (key (sx63 ing194))) -(recipe r63 (key (sy63 ing320))) -(recipe r63 (key (sx63 ing195))) -(recipe r63 (key (sy63 ing321))) -(recipe r63 (key (sx63 ing196))) -(recipe r63 (key (sy63 ing322))) -(recipe r63 (key (sx63 ing197))) -(recipe r63 (key (sy63 ing323))) -(recipe r63 (key (sx63 ing198))) -(recipe r63 (key (sy63 ing324))) -(recipe r63 (key (sx63 ing199))) -(recipe r63 (key (sy63 ing325))) -(recipe r63 (key (sx63 ing200))) -(recipe r63 (key (sy63 ing326))) -(recipe r64 (numIngredients 2)) -(recipe r64 (result (id item64))) -(recipe r64 (pattern 0 sx64)) -(recipe r64 (pattern 1 sy64)) -(recipe r64 (key (sx64 ing192))) -(recipe r64 (key (sy64 ing320))) -(recipe r64 (key (sx64 ing193))) -(recipe r64 (key (sy64 ing321))) -(recipe r64 (key (sx64 ing194))) -(recipe r64 (key (sy64 ing322))) -(recipe r64 (key (sx64 ing195))) -(recipe r64 (key (sy64 ing323))) -(recipe r64 (key (sx64 ing196))) -(recipe r64 (key (sy64 ing324))) -(recipe r64 (key (sx64 ing197))) -(recipe r64 (key (sy64 ing325))) -(recipe r64 (key (sx64 ing198))) -(recipe r64 (key (sy64 ing326))) -(recipe r64 (key (sx64 ing199))) -(recipe r64 (key (sy64 ing327))) -(recipe r64 (key (sx64 ing200))) -(recipe r64 (key (sy64 ing328))) -(recipe r64 (key (sx64 ing201))) -(recipe r64 (key (sy64 ing329))) -(recipe r64 (key (sx64 ing202))) -(recipe r64 (key (sy64 ing330))) -(recipe r64 (key (sx64 ing203))) -(recipe r64 (key (sy64 ing331))) -(recipe r65 (numIngredients 2)) -(recipe r65 (result (id item65))) -(recipe r65 (pattern 0 sx65)) -(recipe r65 (pattern 1 sy65)) -(recipe r65 (key (sx65 ing195))) -(recipe r65 (key (sy65 ing325))) -(recipe r65 (key (sx65 ing196))) -(recipe r65 (key (sy65 ing326))) -(recipe r65 (key (sx65 ing197))) -(recipe r65 (key (sy65 ing327))) -(recipe r65 (key (sx65 ing198))) -(recipe r65 (key (sy65 ing328))) -(recipe r65 (key (sx65 ing199))) -(recipe r65 (key (sy65 ing329))) -(recipe r65 (key (sx65 ing200))) -(recipe r65 (key (sy65 ing330))) -(recipe r65 (key (sx65 ing201))) -(recipe r65 (key (sy65 ing331))) -(recipe r65 (key (sx65 ing202))) -(recipe r65 (key (sy65 ing332))) -(recipe r65 (key (sx65 ing203))) -(recipe r65 (key (sy65 ing333))) -(recipe r65 (key (sx65 ing204))) -(recipe r65 (key (sy65 ing334))) -(recipe r65 (key (sx65 ing205))) -(recipe r65 (key (sy65 ing335))) -(recipe r65 (key (sx65 ing206))) -(recipe r65 (key (sy65 ing336))) -(recipe r66 (numIngredients 2)) -(recipe r66 (result (id item66))) -(recipe r66 (pattern 0 sx66)) -(recipe r66 (pattern 1 sy66)) -(recipe r66 (key (sx66 ing198))) -(recipe r66 (key (sy66 ing330))) -(recipe r66 (key (sx66 ing199))) -(recipe r66 (key (sy66 ing331))) -(recipe r66 (key (sx66 ing200))) -(recipe r66 (key (sy66 ing332))) -(recipe r66 (key (sx66 ing201))) -(recipe r66 (key (sy66 ing333))) -(recipe r66 (key (sx66 ing202))) -(recipe r66 (key (sy66 ing334))) -(recipe r66 (key (sx66 ing203))) -(recipe r66 (key (sy66 ing335))) -(recipe r66 (key (sx66 ing204))) -(recipe r66 (key (sy66 ing336))) -(recipe r66 (key (sx66 ing205))) -(recipe r66 (key (sy66 ing337))) -(recipe r66 (key (sx66 ing206))) -(recipe r66 (key (sy66 ing338))) -(recipe r66 (key (sx66 ing207))) -(recipe r66 (key (sy66 ing339))) -(recipe r66 (key (sx66 ing208))) -(recipe r66 (key (sy66 ing340))) -(recipe r66 (key (sx66 ing209))) -(recipe r66 (key (sy66 ing341))) -(recipe r67 (numIngredients 2)) -(recipe r67 (result (id item67))) -(recipe r67 (pattern 0 sx67)) -(recipe r67 (pattern 1 sy67)) -(recipe r67 (key (sx67 ing201))) -(recipe r67 (key (sy67 ing335))) -(recipe r67 (key (sx67 ing202))) -(recipe r67 (key (sy67 ing336))) -(recipe r67 (key (sx67 ing203))) -(recipe r67 (key (sy67 ing337))) -(recipe r67 (key (sx67 ing204))) -(recipe r67 (key (sy67 ing338))) -(recipe r67 (key (sx67 ing205))) -(recipe r67 (key (sy67 ing339))) -(recipe r67 (key (sx67 ing206))) -(recipe r67 (key (sy67 ing340))) -(recipe r67 (key (sx67 ing207))) -(recipe r67 (key (sy67 ing341))) -(recipe r67 (key (sx67 ing208))) -(recipe r67 (key (sy67 ing342))) -(recipe r67 (key (sx67 ing209))) -(recipe r67 (key (sy67 ing343))) -(recipe r67 (key (sx67 ing210))) -(recipe r67 (key (sy67 ing344))) -(recipe r67 (key (sx67 ing211))) -(recipe r67 (key (sy67 ing345))) -(recipe r67 (key (sx67 ing212))) -(recipe r67 (key (sy67 ing346))) -(recipe r68 (numIngredients 2)) -(recipe r68 (result (id item68))) -(recipe r68 (pattern 0 sx68)) -(recipe r68 (pattern 1 sy68)) -(recipe r68 (key (sx68 ing204))) -(recipe r68 (key (sy68 ing340))) -(recipe r68 (key (sx68 ing205))) -(recipe r68 (key (sy68 ing341))) -(recipe r68 (key (sx68 ing206))) -(recipe r68 (key (sy68 ing342))) -(recipe r68 (key (sx68 ing207))) -(recipe r68 (key (sy68 ing343))) -(recipe r68 (key (sx68 ing208))) -(recipe r68 (key (sy68 ing344))) -(recipe r68 (key (sx68 ing209))) -(recipe r68 (key (sy68 ing345))) -(recipe r68 (key (sx68 ing210))) -(recipe r68 (key (sy68 ing346))) -(recipe r68 (key (sx68 ing211))) -(recipe r68 (key (sy68 ing347))) -(recipe r68 (key (sx68 ing212))) -(recipe r68 (key (sy68 ing348))) -(recipe r68 (key (sx68 ing213))) -(recipe r68 (key (sy68 ing349))) -(recipe r68 (key (sx68 ing214))) -(recipe r68 (key (sy68 ing350))) -(recipe r68 (key (sx68 ing215))) -(recipe r68 (key (sy68 ing351))) -(recipe r69 (numIngredients 2)) -(recipe r69 (result (id item69))) -(recipe r69 (pattern 0 sx69)) -(recipe r69 (pattern 1 sy69)) -(recipe r69 (key (sx69 ing207))) -(recipe r69 (key (sy69 ing345))) -(recipe r69 (key (sx69 ing208))) -(recipe r69 (key (sy69 ing346))) -(recipe r69 (key (sx69 ing209))) -(recipe r69 (key (sy69 ing347))) -(recipe r69 (key (sx69 ing210))) -(recipe r69 (key (sy69 ing348))) -(recipe r69 (key (sx69 ing211))) -(recipe r69 (key (sy69 ing349))) -(recipe r69 (key (sx69 ing212))) -(recipe r69 (key (sy69 ing350))) -(recipe r69 (key (sx69 ing213))) -(recipe r69 (key (sy69 ing351))) -(recipe r69 (key (sx69 ing214))) -(recipe r69 (key (sy69 ing352))) -(recipe r69 (key (sx69 ing215))) -(recipe r69 (key (sy69 ing353))) -(recipe r69 (key (sx69 ing216))) -(recipe r69 (key (sy69 ing354))) -(recipe r69 (key (sx69 ing217))) -(recipe r69 (key (sy69 ing355))) -(recipe r69 (key (sx69 ing218))) -(recipe r69 (key (sy69 ing356))) -(recipe r70 (numIngredients 2)) -(recipe r70 (result (id item70))) -(recipe r70 (pattern 0 sx70)) -(recipe r70 (pattern 1 sy70)) -(recipe r70 (key (sx70 ing210))) -(recipe r70 (key (sy70 ing350))) -(recipe r70 (key (sx70 ing211))) -(recipe r70 (key (sy70 ing351))) -(recipe r70 (key (sx70 ing212))) -(recipe r70 (key (sy70 ing352))) -(recipe r70 (key (sx70 ing213))) -(recipe r70 (key (sy70 ing353))) -(recipe r70 (key (sx70 ing214))) -(recipe r70 (key (sy70 ing354))) -(recipe r70 (key (sx70 ing215))) -(recipe r70 (key (sy70 ing355))) -(recipe r70 (key (sx70 ing216))) -(recipe r70 (key (sy70 ing356))) -(recipe r70 (key (sx70 ing217))) -(recipe r70 (key (sy70 ing357))) -(recipe r70 (key (sx70 ing218))) -(recipe r70 (key (sy70 ing358))) -(recipe r70 (key (sx70 ing219))) -(recipe r70 (key (sy70 ing359))) -(recipe r70 (key (sx70 ing220))) -(recipe r70 (key (sy70 ing360))) -(recipe r70 (key (sx70 ing221))) -(recipe r70 (key (sy70 ing361))) -(recipe r71 (numIngredients 2)) -(recipe r71 (result (id item71))) -(recipe r71 (pattern 0 sx71)) -(recipe r71 (pattern 1 sy71)) -(recipe r71 (key (sx71 ing213))) -(recipe r71 (key (sy71 ing355))) -(recipe r71 (key (sx71 ing214))) -(recipe r71 (key (sy71 ing356))) -(recipe r71 (key (sx71 ing215))) -(recipe r71 (key (sy71 ing357))) -(recipe r71 (key (sx71 ing216))) -(recipe r71 (key (sy71 ing358))) -(recipe r71 (key (sx71 ing217))) -(recipe r71 (key (sy71 ing359))) -(recipe r71 (key (sx71 ing218))) -(recipe r71 (key (sy71 ing360))) -(recipe r71 (key (sx71 ing219))) -(recipe r71 (key (sy71 ing361))) -(recipe r71 (key (sx71 ing220))) -(recipe r71 (key (sy71 ing362))) -(recipe r71 (key (sx71 ing221))) -(recipe r71 (key (sy71 ing363))) -(recipe r71 (key (sx71 ing222))) -(recipe r71 (key (sy71 ing364))) -(recipe r71 (key (sx71 ing223))) -(recipe r71 (key (sy71 ing365))) -(recipe r71 (key (sx71 ing224))) -(recipe r71 (key (sy71 ing366))) -(recipe r72 (numIngredients 2)) -(recipe r72 (result (id item72))) -(recipe r72 (pattern 0 sx72)) -(recipe r72 (pattern 1 sy72)) -(recipe r72 (key (sx72 ing216))) -(recipe r72 (key (sy72 ing360))) -(recipe r72 (key (sx72 ing217))) -(recipe r72 (key (sy72 ing361))) -(recipe r72 (key (sx72 ing218))) -(recipe r72 (key (sy72 ing362))) -(recipe r72 (key (sx72 ing219))) -(recipe r72 (key (sy72 ing363))) -(recipe r72 (key (sx72 ing220))) -(recipe r72 (key (sy72 ing364))) -(recipe r72 (key (sx72 ing221))) -(recipe r72 (key (sy72 ing365))) -(recipe r72 (key (sx72 ing222))) -(recipe r72 (key (sy72 ing366))) -(recipe r72 (key (sx72 ing223))) -(recipe r72 (key (sy72 ing367))) -(recipe r72 (key (sx72 ing224))) -(recipe r72 (key (sy72 ing368))) -(recipe r72 (key (sx72 ing225))) -(recipe r72 (key (sy72 ing369))) -(recipe r72 (key (sx72 ing226))) -(recipe r72 (key (sy72 ing370))) -(recipe r72 (key (sx72 ing227))) -(recipe r72 (key (sy72 ing371))) -(recipe r73 (numIngredients 2)) -(recipe r73 (result (id item73))) -(recipe r73 (pattern 0 sx73)) -(recipe r73 (pattern 1 sy73)) -(recipe r73 (key (sx73 ing219))) -(recipe r73 (key (sy73 ing365))) -(recipe r73 (key (sx73 ing220))) -(recipe r73 (key (sy73 ing366))) -(recipe r73 (key (sx73 ing221))) -(recipe r73 (key (sy73 ing367))) -(recipe r73 (key (sx73 ing222))) -(recipe r73 (key (sy73 ing368))) -(recipe r73 (key (sx73 ing223))) -(recipe r73 (key (sy73 ing369))) -(recipe r73 (key (sx73 ing224))) -(recipe r73 (key (sy73 ing370))) -(recipe r73 (key (sx73 ing225))) -(recipe r73 (key (sy73 ing371))) -(recipe r73 (key (sx73 ing226))) -(recipe r73 (key (sy73 ing372))) -(recipe r73 (key (sx73 ing227))) -(recipe r73 (key (sy73 ing373))) -(recipe r73 (key (sx73 ing228))) -(recipe r73 (key (sy73 ing374))) -(recipe r73 (key (sx73 ing229))) -(recipe r73 (key (sy73 ing375))) -(recipe r73 (key (sx73 ing230))) -(recipe r73 (key (sy73 ing376))) -(recipe r74 (numIngredients 2)) -(recipe r74 (result (id item74))) -(recipe r74 (pattern 0 sx74)) -(recipe r74 (pattern 1 sy74)) -(recipe r74 (key (sx74 ing222))) -(recipe r74 (key (sy74 ing370))) -(recipe r74 (key (sx74 ing223))) -(recipe r74 (key (sy74 ing371))) -(recipe r74 (key (sx74 ing224))) -(recipe r74 (key (sy74 ing372))) -(recipe r74 (key (sx74 ing225))) -(recipe r74 (key (sy74 ing373))) -(recipe r74 (key (sx74 ing226))) -(recipe r74 (key (sy74 ing374))) -(recipe r74 (key (sx74 ing227))) -(recipe r74 (key (sy74 ing375))) -(recipe r74 (key (sx74 ing228))) -(recipe r74 (key (sy74 ing376))) -(recipe r74 (key (sx74 ing229))) -(recipe r74 (key (sy74 ing377))) -(recipe r74 (key (sx74 ing230))) -(recipe r74 (key (sy74 ing378))) -(recipe r74 (key (sx74 ing231))) -(recipe r74 (key (sy74 ing379))) -(recipe r74 (key (sx74 ing232))) -(recipe r74 (key (sy74 ing380))) -(recipe r74 (key (sx74 ing233))) -(recipe r74 (key (sy74 ing381))) -(recipe r75 (numIngredients 2)) -(recipe r75 (result (id item75))) -(recipe r75 (pattern 0 sx75)) -(recipe r75 (pattern 1 sy75)) -(recipe r75 (key (sx75 ing225))) -(recipe r75 (key (sy75 ing375))) -(recipe r75 (key (sx75 ing226))) -(recipe r75 (key (sy75 ing376))) -(recipe r75 (key (sx75 ing227))) -(recipe r75 (key (sy75 ing377))) -(recipe r75 (key (sx75 ing228))) -(recipe r75 (key (sy75 ing378))) -(recipe r75 (key (sx75 ing229))) -(recipe r75 (key (sy75 ing379))) -(recipe r75 (key (sx75 ing230))) -(recipe r75 (key (sy75 ing380))) -(recipe r75 (key (sx75 ing231))) -(recipe r75 (key (sy75 ing381))) -(recipe r75 (key (sx75 ing232))) -(recipe r75 (key (sy75 ing382))) -(recipe r75 (key (sx75 ing233))) -(recipe r75 (key (sy75 ing383))) -(recipe r75 (key (sx75 ing234))) -(recipe r75 (key (sy75 ing384))) -(recipe r75 (key (sx75 ing235))) -(recipe r75 (key (sy75 ing385))) -(recipe r75 (key (sx75 ing236))) -(recipe r75 (key (sy75 ing386))) -(recipe r76 (numIngredients 2)) -(recipe r76 (result (id item76))) -(recipe r76 (pattern 0 sx76)) -(recipe r76 (pattern 1 sy76)) -(recipe r76 (key (sx76 ing228))) -(recipe r76 (key (sy76 ing380))) -(recipe r76 (key (sx76 ing229))) -(recipe r76 (key (sy76 ing381))) -(recipe r76 (key (sx76 ing230))) -(recipe r76 (key (sy76 ing382))) -(recipe r76 (key (sx76 ing231))) -(recipe r76 (key (sy76 ing383))) -(recipe r76 (key (sx76 ing232))) -(recipe r76 (key (sy76 ing384))) -(recipe r76 (key (sx76 ing233))) -(recipe r76 (key (sy76 ing385))) -(recipe r76 (key (sx76 ing234))) -(recipe r76 (key (sy76 ing386))) -(recipe r76 (key (sx76 ing235))) -(recipe r76 (key (sy76 ing387))) -(recipe r76 (key (sx76 ing236))) -(recipe r76 (key (sy76 ing388))) -(recipe r76 (key (sx76 ing237))) -(recipe r76 (key (sy76 ing389))) -(recipe r76 (key (sx76 ing238))) -(recipe r76 (key (sy76 ing390))) -(recipe r76 (key (sx76 ing239))) -(recipe r76 (key (sy76 ing391))) -(recipe r77 (numIngredients 2)) -(recipe r77 (result (id item77))) -(recipe r77 (pattern 0 sx77)) -(recipe r77 (pattern 1 sy77)) -(recipe r77 (key (sx77 ing231))) -(recipe r77 (key (sy77 ing385))) -(recipe r77 (key (sx77 ing232))) -(recipe r77 (key (sy77 ing386))) -(recipe r77 (key (sx77 ing233))) -(recipe r77 (key (sy77 ing387))) -(recipe r77 (key (sx77 ing234))) -(recipe r77 (key (sy77 ing388))) -(recipe r77 (key (sx77 ing235))) -(recipe r77 (key (sy77 ing389))) -(recipe r77 (key (sx77 ing236))) -(recipe r77 (key (sy77 ing390))) -(recipe r77 (key (sx77 ing237))) -(recipe r77 (key (sy77 ing391))) -(recipe r77 (key (sx77 ing238))) -(recipe r77 (key (sy77 ing392))) -(recipe r77 (key (sx77 ing239))) -(recipe r77 (key (sy77 ing393))) -(recipe r77 (key (sx77 ing240))) -(recipe r77 (key (sy77 ing394))) -(recipe r77 (key (sx77 ing241))) -(recipe r77 (key (sy77 ing395))) -(recipe r77 (key (sx77 ing242))) -(recipe r77 (key (sy77 ing396))) -(recipe r78 (numIngredients 2)) -(recipe r78 (result (id item78))) -(recipe r78 (pattern 0 sx78)) -(recipe r78 (pattern 1 sy78)) -(recipe r78 (key (sx78 ing234))) -(recipe r78 (key (sy78 ing390))) -(recipe r78 (key (sx78 ing235))) -(recipe r78 (key (sy78 ing391))) -(recipe r78 (key (sx78 ing236))) -(recipe r78 (key (sy78 ing392))) -(recipe r78 (key (sx78 ing237))) -(recipe r78 (key (sy78 ing393))) -(recipe r78 (key (sx78 ing238))) -(recipe r78 (key (sy78 ing394))) -(recipe r78 (key (sx78 ing239))) -(recipe r78 (key (sy78 ing395))) -(recipe r78 (key (sx78 ing240))) -(recipe r78 (key (sy78 ing396))) -(recipe r78 (key (sx78 ing241))) -(recipe r78 (key (sy78 ing397))) -(recipe r78 (key (sx78 ing242))) -(recipe r78 (key (sy78 ing398))) -(recipe r78 (key (sx78 ing243))) -(recipe r78 (key (sy78 ing399))) -(recipe r78 (key (sx78 ing244))) -(recipe r78 (key (sy78 ing400))) -(recipe r78 (key (sx78 ing245))) -(recipe r78 (key (sy78 ing401))) -(recipe r79 (numIngredients 2)) -(recipe r79 (result (id item79))) -(recipe r79 (pattern 0 sx79)) -(recipe r79 (pattern 1 sy79)) -(recipe r79 (key (sx79 ing237))) -(recipe r79 (key (sy79 ing395))) -(recipe r79 (key (sx79 ing238))) -(recipe r79 (key (sy79 ing396))) -(recipe r79 (key (sx79 ing239))) -(recipe r79 (key (sy79 ing397))) -(recipe r79 (key (sx79 ing240))) -(recipe r79 (key (sy79 ing398))) -(recipe r79 (key (sx79 ing241))) -(recipe r79 (key (sy79 ing399))) -(recipe r79 (key (sx79 ing242))) -(recipe r79 (key (sy79 ing400))) -(recipe r79 (key (sx79 ing243))) -(recipe r79 (key (sy79 ing401))) -(recipe r79 (key (sx79 ing244))) -(recipe r79 (key (sy79 ing402))) -(recipe r79 (key (sx79 ing245))) -(recipe r79 (key (sy79 ing403))) -(recipe r79 (key (sx79 ing246))) -(recipe r79 (key (sy79 ing404))) -(recipe r79 (key (sx79 ing247))) -(recipe r79 (key (sy79 ing405))) -(recipe r79 (key (sx79 ing248))) -(recipe r79 (key (sy79 ing406))) -(recipe r80 (numIngredients 2)) -(recipe r80 (result (id item80))) -(recipe r80 (pattern 0 sx80)) -(recipe r80 (pattern 1 sy80)) -(recipe r80 (key (sx80 ing240))) -(recipe r80 (key (sy80 ing400))) -(recipe r80 (key (sx80 ing241))) -(recipe r80 (key (sy80 ing401))) -(recipe r80 (key (sx80 ing242))) -(recipe r80 (key (sy80 ing402))) -(recipe r80 (key (sx80 ing243))) -(recipe r80 (key (sy80 ing403))) -(recipe r80 (key (sx80 ing244))) -(recipe r80 (key (sy80 ing404))) -(recipe r80 (key (sx80 ing245))) -(recipe r80 (key (sy80 ing405))) -(recipe r80 (key (sx80 ing246))) -(recipe r80 (key (sy80 ing406))) -(recipe r80 (key (sx80 ing247))) -(recipe r80 (key (sy80 ing407))) -(recipe r80 (key (sx80 ing248))) -(recipe r80 (key (sy80 ing408))) -(recipe r80 (key (sx80 ing249))) -(recipe r80 (key (sy80 ing409))) -(recipe r80 (key (sx80 ing250))) -(recipe r80 (key (sy80 ing410))) -(recipe r80 (key (sx80 ing251))) -(recipe r80 (key (sy80 ing411))) -(recipe r81 (numIngredients 2)) -(recipe r81 (result (id item81))) -(recipe r81 (pattern 0 sx81)) -(recipe r81 (pattern 1 sy81)) -(recipe r81 (key (sx81 ing243))) -(recipe r81 (key (sy81 ing405))) -(recipe r81 (key (sx81 ing244))) -(recipe r81 (key (sy81 ing406))) -(recipe r81 (key (sx81 ing245))) -(recipe r81 (key (sy81 ing407))) -(recipe r81 (key (sx81 ing246))) -(recipe r81 (key (sy81 ing408))) -(recipe r81 (key (sx81 ing247))) -(recipe r81 (key (sy81 ing409))) -(recipe r81 (key (sx81 ing248))) -(recipe r81 (key (sy81 ing410))) -(recipe r81 (key (sx81 ing249))) -(recipe r81 (key (sy81 ing411))) -(recipe r81 (key (sx81 ing250))) -(recipe r81 (key (sy81 ing412))) -(recipe r81 (key (sx81 ing251))) -(recipe r81 (key (sy81 ing413))) -(recipe r81 (key (sx81 ing252))) -(recipe r81 (key (sy81 ing414))) -(recipe r81 (key (sx81 ing253))) -(recipe r81 (key (sy81 ing415))) -(recipe r81 (key (sx81 ing254))) -(recipe r81 (key (sy81 ing416))) -(recipe r82 (numIngredients 2)) -(recipe r82 (result (id item82))) -(recipe r82 (pattern 0 sx82)) -(recipe r82 (pattern 1 sy82)) -(recipe r82 (key (sx82 ing246))) -(recipe r82 (key (sy82 ing410))) -(recipe r82 (key (sx82 ing247))) -(recipe r82 (key (sy82 ing411))) -(recipe r82 (key (sx82 ing248))) -(recipe r82 (key (sy82 ing412))) -(recipe r82 (key (sx82 ing249))) -(recipe r82 (key (sy82 ing413))) -(recipe r82 (key (sx82 ing250))) -(recipe r82 (key (sy82 ing414))) -(recipe r82 (key (sx82 ing251))) -(recipe r82 (key (sy82 ing415))) -(recipe r82 (key (sx82 ing252))) -(recipe r82 (key (sy82 ing416))) -(recipe r82 (key (sx82 ing253))) -(recipe r82 (key (sy82 ing417))) -(recipe r82 (key (sx82 ing254))) -(recipe r82 (key (sy82 ing418))) -(recipe r82 (key (sx82 ing255))) -(recipe r82 (key (sy82 ing419))) -(recipe r82 (key (sx82 ing256))) -(recipe r82 (key (sy82 ing420))) -(recipe r82 (key (sx82 ing257))) -(recipe r82 (key (sy82 ing421))) -(recipe r83 (numIngredients 2)) -(recipe r83 (result (id item83))) -(recipe r83 (pattern 0 sx83)) -(recipe r83 (pattern 1 sy83)) -(recipe r83 (key (sx83 ing249))) -(recipe r83 (key (sy83 ing415))) -(recipe r83 (key (sx83 ing250))) -(recipe r83 (key (sy83 ing416))) -(recipe r83 (key (sx83 ing251))) -(recipe r83 (key (sy83 ing417))) -(recipe r83 (key (sx83 ing252))) -(recipe r83 (key (sy83 ing418))) -(recipe r83 (key (sx83 ing253))) -(recipe r83 (key (sy83 ing419))) -(recipe r83 (key (sx83 ing254))) -(recipe r83 (key (sy83 ing420))) -(recipe r83 (key (sx83 ing255))) -(recipe r83 (key (sy83 ing421))) -(recipe r83 (key (sx83 ing256))) -(recipe r83 (key (sy83 ing422))) -(recipe r83 (key (sx83 ing257))) -(recipe r83 (key (sy83 ing423))) -(recipe r83 (key (sx83 ing258))) -(recipe r83 (key (sy83 ing424))) -(recipe r83 (key (sx83 ing259))) -(recipe r83 (key (sy83 ing425))) -(recipe r83 (key (sx83 ing260))) -(recipe r83 (key (sy83 ing426))) -(recipe r84 (numIngredients 2)) -(recipe r84 (result (id item84))) -(recipe r84 (pattern 0 sx84)) -(recipe r84 (pattern 1 sy84)) -(recipe r84 (key (sx84 ing252))) -(recipe r84 (key (sy84 ing420))) -(recipe r84 (key (sx84 ing253))) -(recipe r84 (key (sy84 ing421))) -(recipe r84 (key (sx84 ing254))) -(recipe r84 (key (sy84 ing422))) -(recipe r84 (key (sx84 ing255))) -(recipe r84 (key (sy84 ing423))) -(recipe r84 (key (sx84 ing256))) -(recipe r84 (key (sy84 ing424))) -(recipe r84 (key (sx84 ing257))) -(recipe r84 (key (sy84 ing425))) -(recipe r84 (key (sx84 ing258))) -(recipe r84 (key (sy84 ing426))) -(recipe r84 (key (sx84 ing259))) -(recipe r84 (key (sy84 ing427))) -(recipe r84 (key (sx84 ing260))) -(recipe r84 (key (sy84 ing428))) -(recipe r84 (key (sx84 ing261))) -(recipe r84 (key (sy84 ing429))) -(recipe r84 (key (sx84 ing262))) -(recipe r84 (key (sy84 ing430))) -(recipe r84 (key (sx84 ing263))) -(recipe r84 (key (sy84 ing431))) -(recipe r85 (numIngredients 2)) -(recipe r85 (result (id item85))) -(recipe r85 (pattern 0 sx85)) -(recipe r85 (pattern 1 sy85)) -(recipe r85 (key (sx85 ing255))) -(recipe r85 (key (sy85 ing425))) -(recipe r85 (key (sx85 ing256))) -(recipe r85 (key (sy85 ing426))) -(recipe r85 (key (sx85 ing257))) -(recipe r85 (key (sy85 ing427))) -(recipe r85 (key (sx85 ing258))) -(recipe r85 (key (sy85 ing428))) -(recipe r85 (key (sx85 ing259))) -(recipe r85 (key (sy85 ing429))) -(recipe r85 (key (sx85 ing260))) -(recipe r85 (key (sy85 ing430))) -(recipe r85 (key (sx85 ing261))) -(recipe r85 (key (sy85 ing431))) -(recipe r85 (key (sx85 ing262))) -(recipe r85 (key (sy85 ing432))) -(recipe r85 (key (sx85 ing263))) -(recipe r85 (key (sy85 ing433))) -(recipe r85 (key (sx85 ing264))) -(recipe r85 (key (sy85 ing434))) -(recipe r85 (key (sx85 ing265))) -(recipe r85 (key (sy85 ing435))) -(recipe r85 (key (sx85 ing266))) -(recipe r85 (key (sy85 ing436))) -(recipe r86 (numIngredients 2)) -(recipe r86 (result (id item86))) -(recipe r86 (pattern 0 sx86)) -(recipe r86 (pattern 1 sy86)) -(recipe r86 (key (sx86 ing258))) -(recipe r86 (key (sy86 ing430))) -(recipe r86 (key (sx86 ing259))) -(recipe r86 (key (sy86 ing431))) -(recipe r86 (key (sx86 ing260))) -(recipe r86 (key (sy86 ing432))) -(recipe r86 (key (sx86 ing261))) -(recipe r86 (key (sy86 ing433))) -(recipe r86 (key (sx86 ing262))) -(recipe r86 (key (sy86 ing434))) -(recipe r86 (key (sx86 ing263))) -(recipe r86 (key (sy86 ing435))) -(recipe r86 (key (sx86 ing264))) -(recipe r86 (key (sy86 ing436))) -(recipe r86 (key (sx86 ing265))) -(recipe r86 (key (sy86 ing437))) -(recipe r86 (key (sx86 ing266))) -(recipe r86 (key (sy86 ing438))) -(recipe r86 (key (sx86 ing267))) -(recipe r86 (key (sy86 ing439))) -(recipe r86 (key (sx86 ing268))) -(recipe r86 (key (sy86 ing440))) -(recipe r86 (key (sx86 ing269))) -(recipe r86 (key (sy86 ing441))) -(recipe r87 (numIngredients 2)) -(recipe r87 (result (id item87))) -(recipe r87 (pattern 0 sx87)) -(recipe r87 (pattern 1 sy87)) -(recipe r87 (key (sx87 ing261))) -(recipe r87 (key (sy87 ing435))) -(recipe r87 (key (sx87 ing262))) -(recipe r87 (key (sy87 ing436))) -(recipe r87 (key (sx87 ing263))) -(recipe r87 (key (sy87 ing437))) -(recipe r87 (key (sx87 ing264))) -(recipe r87 (key (sy87 ing438))) -(recipe r87 (key (sx87 ing265))) -(recipe r87 (key (sy87 ing439))) -(recipe r87 (key (sx87 ing266))) -(recipe r87 (key (sy87 ing440))) -(recipe r87 (key (sx87 ing267))) -(recipe r87 (key (sy87 ing441))) -(recipe r87 (key (sx87 ing268))) -(recipe r87 (key (sy87 ing442))) -(recipe r87 (key (sx87 ing269))) -(recipe r87 (key (sy87 ing443))) -(recipe r87 (key (sx87 ing270))) -(recipe r87 (key (sy87 ing444))) -(recipe r87 (key (sx87 ing271))) -(recipe r87 (key (sy87 ing445))) -(recipe r87 (key (sx87 ing272))) -(recipe r87 (key (sy87 ing446))) -(recipe r88 (numIngredients 2)) -(recipe r88 (result (id item88))) -(recipe r88 (pattern 0 sx88)) -(recipe r88 (pattern 1 sy88)) -(recipe r88 (key (sx88 ing264))) -(recipe r88 (key (sy88 ing440))) -(recipe r88 (key (sx88 ing265))) -(recipe r88 (key (sy88 ing441))) -(recipe r88 (key (sx88 ing266))) -(recipe r88 (key (sy88 ing442))) -(recipe r88 (key (sx88 ing267))) -(recipe r88 (key (sy88 ing443))) -(recipe r88 (key (sx88 ing268))) -(recipe r88 (key (sy88 ing444))) -(recipe r88 (key (sx88 ing269))) -(recipe r88 (key (sy88 ing445))) -(recipe r88 (key (sx88 ing270))) -(recipe r88 (key (sy88 ing446))) -(recipe r88 (key (sx88 ing271))) -(recipe r88 (key (sy88 ing447))) -(recipe r88 (key (sx88 ing272))) -(recipe r88 (key (sy88 ing448))) -(recipe r88 (key (sx88 ing273))) -(recipe r88 (key (sy88 ing449))) -(recipe r88 (key (sx88 ing274))) -(recipe r88 (key (sy88 ing450))) -(recipe r88 (key (sx88 ing275))) -(recipe r88 (key (sy88 ing451))) -(recipe r89 (numIngredients 2)) -(recipe r89 (result (id item89))) -(recipe r89 (pattern 0 sx89)) -(recipe r89 (pattern 1 sy89)) -(recipe r89 (key (sx89 ing267))) -(recipe r89 (key (sy89 ing445))) -(recipe r89 (key (sx89 ing268))) -(recipe r89 (key (sy89 ing446))) -(recipe r89 (key (sx89 ing269))) -(recipe r89 (key (sy89 ing447))) -(recipe r89 (key (sx89 ing270))) -(recipe r89 (key (sy89 ing448))) -(recipe r89 (key (sx89 ing271))) -(recipe r89 (key (sy89 ing449))) -(recipe r89 (key (sx89 ing272))) -(recipe r89 (key (sy89 ing450))) -(recipe r89 (key (sx89 ing273))) -(recipe r89 (key (sy89 ing451))) -(recipe r89 (key (sx89 ing274))) -(recipe r89 (key (sy89 ing452))) -(recipe r89 (key (sx89 ing275))) -(recipe r89 (key (sy89 ing453))) -(recipe r89 (key (sx89 ing276))) -(recipe r89 (key (sy89 ing454))) -(recipe r89 (key (sx89 ing277))) -(recipe r89 (key (sy89 ing455))) -(recipe r89 (key (sx89 ing278))) -(recipe r89 (key (sy89 ing456))) -(recipe r90 (numIngredients 2)) -(recipe r90 (result (id item90))) -(recipe r90 (pattern 0 sx90)) -(recipe r90 (pattern 1 sy90)) -(recipe r90 (key (sx90 ing270))) -(recipe r90 (key (sy90 ing450))) -(recipe r90 (key (sx90 ing271))) -(recipe r90 (key (sy90 ing451))) -(recipe r90 (key (sx90 ing272))) -(recipe r90 (key (sy90 ing452))) -(recipe r90 (key (sx90 ing273))) -(recipe r90 (key (sy90 ing453))) -(recipe r90 (key (sx90 ing274))) -(recipe r90 (key (sy90 ing454))) -(recipe r90 (key (sx90 ing275))) -(recipe r90 (key (sy90 ing455))) -(recipe r90 (key (sx90 ing276))) -(recipe r90 (key (sy90 ing456))) -(recipe r90 (key (sx90 ing277))) -(recipe r90 (key (sy90 ing457))) -(recipe r90 (key (sx90 ing278))) -(recipe r90 (key (sy90 ing458))) -(recipe r90 (key (sx90 ing279))) -(recipe r90 (key (sy90 ing459))) -(recipe r90 (key (sx90 ing280))) -(recipe r90 (key (sy90 ing460))) -(recipe r90 (key (sx90 ing281))) -(recipe r90 (key (sy90 ing461))) -(recipe r91 (numIngredients 2)) -(recipe r91 (result (id item91))) -(recipe r91 (pattern 0 sx91)) -(recipe r91 (pattern 1 sy91)) -(recipe r91 (key (sx91 ing273))) -(recipe r91 (key (sy91 ing455))) -(recipe r91 (key (sx91 ing274))) -(recipe r91 (key (sy91 ing456))) -(recipe r91 (key (sx91 ing275))) -(recipe r91 (key (sy91 ing457))) -(recipe r91 (key (sx91 ing276))) -(recipe r91 (key (sy91 ing458))) -(recipe r91 (key (sx91 ing277))) -(recipe r91 (key (sy91 ing459))) -(recipe r91 (key (sx91 ing278))) -(recipe r91 (key (sy91 ing460))) -(recipe r91 (key (sx91 ing279))) -(recipe r91 (key (sy91 ing461))) -(recipe r91 (key (sx91 ing280))) -(recipe r91 (key (sy91 ing462))) -(recipe r91 (key (sx91 ing281))) -(recipe r91 (key (sy91 ing463))) -(recipe r91 (key (sx91 ing282))) -(recipe r91 (key (sy91 ing464))) -(recipe r91 (key (sx91 ing283))) -(recipe r91 (key (sy91 ing465))) -(recipe r91 (key (sx91 ing284))) -(recipe r91 (key (sy91 ing466))) -(recipe r92 (numIngredients 2)) -(recipe r92 (result (id item92))) -(recipe r92 (pattern 0 sx92)) -(recipe r92 (pattern 1 sy92)) -(recipe r92 (key (sx92 ing276))) -(recipe r92 (key (sy92 ing460))) -(recipe r92 (key (sx92 ing277))) -(recipe r92 (key (sy92 ing461))) -(recipe r92 (key (sx92 ing278))) -(recipe r92 (key (sy92 ing462))) -(recipe r92 (key (sx92 ing279))) -(recipe r92 (key (sy92 ing463))) -(recipe r92 (key (sx92 ing280))) -(recipe r92 (key (sy92 ing464))) -(recipe r92 (key (sx92 ing281))) -(recipe r92 (key (sy92 ing465))) -(recipe r92 (key (sx92 ing282))) -(recipe r92 (key (sy92 ing466))) -(recipe r92 (key (sx92 ing283))) -(recipe r92 (key (sy92 ing467))) -(recipe r92 (key (sx92 ing284))) -(recipe r92 (key (sy92 ing468))) -(recipe r92 (key (sx92 ing285))) -(recipe r92 (key (sy92 ing469))) -(recipe r92 (key (sx92 ing286))) -(recipe r92 (key (sy92 ing470))) -(recipe r92 (key (sx92 ing287))) -(recipe r92 (key (sy92 ing471))) -(recipe r93 (numIngredients 2)) -(recipe r93 (result (id item93))) -(recipe r93 (pattern 0 sx93)) -(recipe r93 (pattern 1 sy93)) -(recipe r93 (key (sx93 ing279))) -(recipe r93 (key (sy93 ing465))) -(recipe r93 (key (sx93 ing280))) -(recipe r93 (key (sy93 ing466))) -(recipe r93 (key (sx93 ing281))) -(recipe r93 (key (sy93 ing467))) -(recipe r93 (key (sx93 ing282))) -(recipe r93 (key (sy93 ing468))) -(recipe r93 (key (sx93 ing283))) -(recipe r93 (key (sy93 ing469))) -(recipe r93 (key (sx93 ing284))) -(recipe r93 (key (sy93 ing470))) -(recipe r93 (key (sx93 ing285))) -(recipe r93 (key (sy93 ing471))) -(recipe r93 (key (sx93 ing286))) -(recipe r93 (key (sy93 ing472))) -(recipe r93 (key (sx93 ing287))) -(recipe r93 (key (sy93 ing473))) -(recipe r93 (key (sx93 ing288))) -(recipe r93 (key (sy93 ing474))) -(recipe r93 (key (sx93 ing289))) -(recipe r93 (key (sy93 ing475))) -(recipe r93 (key (sx93 ing290))) -(recipe r93 (key (sy93 ing476))) -(recipe r94 (numIngredients 2)) -(recipe r94 (result (id item94))) -(recipe r94 (pattern 0 sx94)) -(recipe r94 (pattern 1 sy94)) -(recipe r94 (key (sx94 ing282))) -(recipe r94 (key (sy94 ing470))) -(recipe r94 (key (sx94 ing283))) -(recipe r94 (key (sy94 ing471))) -(recipe r94 (key (sx94 ing284))) -(recipe r94 (key (sy94 ing472))) -(recipe r94 (key (sx94 ing285))) -(recipe r94 (key (sy94 ing473))) -(recipe r94 (key (sx94 ing286))) -(recipe r94 (key (sy94 ing474))) -(recipe r94 (key (sx94 ing287))) -(recipe r94 (key (sy94 ing475))) -(recipe r94 (key (sx94 ing288))) -(recipe r94 (key (sy94 ing476))) -(recipe r94 (key (sx94 ing289))) -(recipe r94 (key (sy94 ing477))) -(recipe r94 (key (sx94 ing290))) -(recipe r94 (key (sy94 ing478))) -(recipe r94 (key (sx94 ing291))) -(recipe r94 (key (sy94 ing479))) -(recipe r94 (key (sx94 ing292))) -(recipe r94 (key (sy94 ing480))) -(recipe r94 (key (sx94 ing293))) -(recipe r94 (key (sy94 ing481))) -(recipe r95 (numIngredients 2)) -(recipe r95 (result (id item95))) -(recipe r95 (pattern 0 sx95)) -(recipe r95 (pattern 1 sy95)) -(recipe r95 (key (sx95 ing285))) -(recipe r95 (key (sy95 ing475))) -(recipe r95 (key (sx95 ing286))) -(recipe r95 (key (sy95 ing476))) -(recipe r95 (key (sx95 ing287))) -(recipe r95 (key (sy95 ing477))) -(recipe r95 (key (sx95 ing288))) -(recipe r95 (key (sy95 ing478))) -(recipe r95 (key (sx95 ing289))) -(recipe r95 (key (sy95 ing479))) -(recipe r95 (key (sx95 ing290))) -(recipe r95 (key (sy95 ing480))) -(recipe r95 (key (sx95 ing291))) -(recipe r95 (key (sy95 ing481))) -(recipe r95 (key (sx95 ing292))) -(recipe r95 (key (sy95 ing482))) -(recipe r95 (key (sx95 ing293))) -(recipe r95 (key (sy95 ing483))) -(recipe r95 (key (sx95 ing294))) -(recipe r95 (key (sy95 ing484))) -(recipe r95 (key (sx95 ing295))) -(recipe r95 (key (sy95 ing485))) -(recipe r95 (key (sx95 ing296))) -(recipe r95 (key (sy95 ing486))) -(recipe r96 (numIngredients 2)) -(recipe r96 (result (id item96))) -(recipe r96 (pattern 0 sx96)) -(recipe r96 (pattern 1 sy96)) -(recipe r96 (key (sx96 ing288))) -(recipe r96 (key (sy96 ing480))) -(recipe r96 (key (sx96 ing289))) -(recipe r96 (key (sy96 ing481))) -(recipe r96 (key (sx96 ing290))) -(recipe r96 (key (sy96 ing482))) -(recipe r96 (key (sx96 ing291))) -(recipe r96 (key (sy96 ing483))) -(recipe r96 (key (sx96 ing292))) -(recipe r96 (key (sy96 ing484))) -(recipe r96 (key (sx96 ing293))) -(recipe r96 (key (sy96 ing485))) -(recipe r96 (key (sx96 ing294))) -(recipe r96 (key (sy96 ing486))) -(recipe r96 (key (sx96 ing295))) -(recipe r96 (key (sy96 ing487))) -(recipe r96 (key (sx96 ing296))) -(recipe r96 (key (sy96 ing488))) -(recipe r96 (key (sx96 ing297))) -(recipe r96 (key (sy96 ing489))) -(recipe r96 (key (sx96 ing298))) -(recipe r96 (key (sy96 ing490))) -(recipe r96 (key (sx96 ing299))) -(recipe r96 (key (sy96 ing491))) -(recipe r97 (numIngredients 2)) -(recipe r97 (result (id item97))) -(recipe r97 (pattern 0 sx97)) -(recipe r97 (pattern 1 sy97)) -(recipe r97 (key (sx97 ing291))) -(recipe r97 (key (sy97 ing485))) -(recipe r97 (key (sx97 ing292))) -(recipe r97 (key (sy97 ing486))) -(recipe r97 (key (sx97 ing293))) -(recipe r97 (key (sy97 ing487))) -(recipe r97 (key (sx97 ing294))) -(recipe r97 (key (sy97 ing488))) -(recipe r97 (key (sx97 ing295))) -(recipe r97 (key (sy97 ing489))) -(recipe r97 (key (sx97 ing296))) -(recipe r97 (key (sy97 ing490))) -(recipe r97 (key (sx97 ing297))) -(recipe r97 (key (sy97 ing491))) -(recipe r97 (key (sx97 ing298))) -(recipe r97 (key (sy97 ing492))) -(recipe r97 (key (sx97 ing299))) -(recipe r97 (key (sy97 ing493))) -(recipe r97 (key (sx97 ing300))) -(recipe r97 (key (sy97 ing494))) -(recipe r97 (key (sx97 ing301))) -(recipe r97 (key (sy97 ing495))) -(recipe r97 (key (sx97 ing302))) -(recipe r97 (key (sy97 ing496))) -(recipe r98 (numIngredients 2)) -(recipe r98 (result (id item98))) -(recipe r98 (pattern 0 sx98)) -(recipe r98 (pattern 1 sy98)) -(recipe r98 (key (sx98 ing294))) -(recipe r98 (key (sy98 ing490))) -(recipe r98 (key (sx98 ing295))) -(recipe r98 (key (sy98 ing491))) -(recipe r98 (key (sx98 ing296))) -(recipe r98 (key (sy98 ing492))) -(recipe r98 (key (sx98 ing297))) -(recipe r98 (key (sy98 ing493))) -(recipe r98 (key (sx98 ing298))) -(recipe r98 (key (sy98 ing494))) -(recipe r98 (key (sx98 ing299))) -(recipe r98 (key (sy98 ing495))) -(recipe r98 (key (sx98 ing300))) -(recipe r98 (key (sy98 ing496))) -(recipe r98 (key (sx98 ing301))) -(recipe r98 (key (sy98 ing497))) -(recipe r98 (key (sx98 ing302))) -(recipe r98 (key (sy98 ing498))) -(recipe r98 (key (sx98 ing303))) -(recipe r98 (key (sy98 ing499))) -(recipe r98 (key (sx98 ing304))) -(recipe r98 (key (sy98 ing500))) -(recipe r98 (key (sx98 ing305))) -(recipe r98 (key (sy98 ing501))) -(recipe r99 (numIngredients 2)) -(recipe r99 (result (id item99))) -(recipe r99 (pattern 0 sx99)) -(recipe r99 (pattern 1 sy99)) -(recipe r99 (key (sx99 ing297))) -(recipe r99 (key (sy99 ing495))) -(recipe r99 (key (sx99 ing298))) -(recipe r99 (key (sy99 ing496))) -(recipe r99 (key (sx99 ing299))) -(recipe r99 (key (sy99 ing497))) -(recipe r99 (key (sx99 ing300))) -(recipe r99 (key (sy99 ing498))) -(recipe r99 (key (sx99 ing301))) -(recipe r99 (key (sy99 ing499))) -(recipe r99 (key (sx99 ing302))) -(recipe r99 (key (sy99 ing500))) -(recipe r99 (key (sx99 ing303))) -(recipe r99 (key (sy99 ing501))) -(recipe r99 (key (sx99 ing304))) -(recipe r99 (key (sy99 ing502))) -(recipe r99 (key (sx99 ing305))) -(recipe r99 (key (sy99 ing503))) -(recipe r99 (key (sx99 ing306))) -(recipe r99 (key (sy99 ing504))) -(recipe r99 (key (sx99 ing307))) -(recipe r99 (key (sy99 ing505))) -(recipe r99 (key (sx99 ing308))) -(recipe r99 (key (sy99 ing506))) -(recipe r100 (numIngredients 2)) -(recipe r100 (result (id item100))) -(recipe r100 (pattern 0 sx100)) -(recipe r100 (pattern 1 sy100)) -(recipe r100 (key (sx100 ing300))) -(recipe r100 (key (sy100 ing500))) -(recipe r100 (key (sx100 ing301))) -(recipe r100 (key (sy100 ing501))) -(recipe r100 (key (sx100 ing302))) -(recipe r100 (key (sy100 ing502))) -(recipe r100 (key (sx100 ing303))) -(recipe r100 (key (sy100 ing503))) -(recipe r100 (key (sx100 ing304))) -(recipe r100 (key (sy100 ing504))) -(recipe r100 (key (sx100 ing305))) -(recipe r100 (key (sy100 ing505))) -(recipe r100 (key (sx100 ing306))) -(recipe r100 (key (sy100 ing506))) -(recipe r100 (key (sx100 ing307))) -(recipe r100 (key (sy100 ing507))) -(recipe r100 (key (sx100 ing308))) -(recipe r100 (key (sy100 ing508))) -(recipe r100 (key (sx100 ing309))) -(recipe r100 (key (sy100 ing509))) -(recipe r100 (key (sx100 ing310))) -(recipe r100 (key (sy100 ing510))) -(recipe r100 (key (sx100 ing311))) -(recipe r100 (key (sy100 ing511))) -(recipe r101 (numIngredients 2)) -(recipe r101 (result (id item101))) -(recipe r101 (pattern 0 sx101)) -(recipe r101 (pattern 1 sy101)) -(recipe r101 (key (sx101 ing303))) -(recipe r101 (key (sy101 ing505))) -(recipe r101 (key (sx101 ing304))) -(recipe r101 (key (sy101 ing506))) -(recipe r101 (key (sx101 ing305))) -(recipe r101 (key (sy101 ing507))) -(recipe r101 (key (sx101 ing306))) -(recipe r101 (key (sy101 ing508))) -(recipe r101 (key (sx101 ing307))) -(recipe r101 (key (sy101 ing509))) -(recipe r101 (key (sx101 ing308))) -(recipe r101 (key (sy101 ing510))) -(recipe r101 (key (sx101 ing309))) -(recipe r101 (key (sy101 ing511))) -(recipe r101 (key (sx101 ing310))) -(recipe r101 (key (sy101 ing512))) -(recipe r101 (key (sx101 ing311))) -(recipe r101 (key (sy101 ing513))) -(recipe r101 (key (sx101 ing312))) -(recipe r101 (key (sy101 ing514))) -(recipe r101 (key (sx101 ing313))) -(recipe r101 (key (sy101 ing515))) -(recipe r101 (key (sx101 ing314))) -(recipe r101 (key (sy101 ing516))) -(recipe r102 (numIngredients 2)) -(recipe r102 (result (id item102))) -(recipe r102 (pattern 0 sx102)) -(recipe r102 (pattern 1 sy102)) -(recipe r102 (key (sx102 ing306))) -(recipe r102 (key (sy102 ing510))) -(recipe r102 (key (sx102 ing307))) -(recipe r102 (key (sy102 ing511))) -(recipe r102 (key (sx102 ing308))) -(recipe r102 (key (sy102 ing512))) -(recipe r102 (key (sx102 ing309))) -(recipe r102 (key (sy102 ing513))) -(recipe r102 (key (sx102 ing310))) -(recipe r102 (key (sy102 ing514))) -(recipe r102 (key (sx102 ing311))) -(recipe r102 (key (sy102 ing515))) -(recipe r102 (key (sx102 ing312))) -(recipe r102 (key (sy102 ing516))) -(recipe r102 (key (sx102 ing313))) -(recipe r102 (key (sy102 ing517))) -(recipe r102 (key (sx102 ing314))) -(recipe r102 (key (sy102 ing518))) -(recipe r102 (key (sx102 ing315))) -(recipe r102 (key (sy102 ing519))) -(recipe r102 (key (sx102 ing316))) -(recipe r102 (key (sy102 ing520))) -(recipe r102 (key (sx102 ing317))) -(recipe r102 (key (sy102 ing521))) -(recipe r103 (numIngredients 2)) -(recipe r103 (result (id item103))) -(recipe r103 (pattern 0 sx103)) -(recipe r103 (pattern 1 sy103)) -(recipe r103 (key (sx103 ing309))) -(recipe r103 (key (sy103 ing515))) -(recipe r103 (key (sx103 ing310))) -(recipe r103 (key (sy103 ing516))) -(recipe r103 (key (sx103 ing311))) -(recipe r103 (key (sy103 ing517))) -(recipe r103 (key (sx103 ing312))) -(recipe r103 (key (sy103 ing518))) -(recipe r103 (key (sx103 ing313))) -(recipe r103 (key (sy103 ing519))) -(recipe r103 (key (sx103 ing314))) -(recipe r103 (key (sy103 ing520))) -(recipe r103 (key (sx103 ing315))) -(recipe r103 (key (sy103 ing521))) -(recipe r103 (key (sx103 ing316))) -(recipe r103 (key (sy103 ing522))) -(recipe r103 (key (sx103 ing317))) -(recipe r103 (key (sy103 ing523))) -(recipe r103 (key (sx103 ing318))) -(recipe r103 (key (sy103 ing524))) -(recipe r103 (key (sx103 ing319))) -(recipe r103 (key (sy103 ing525))) -(recipe r103 (key (sx103 ing320))) -(recipe r103 (key (sy103 ing526))) -(recipe r104 (numIngredients 2)) -(recipe r104 (result (id item104))) -(recipe r104 (pattern 0 sx104)) -(recipe r104 (pattern 1 sy104)) -(recipe r104 (key (sx104 ing312))) -(recipe r104 (key (sy104 ing520))) -(recipe r104 (key (sx104 ing313))) -(recipe r104 (key (sy104 ing521))) -(recipe r104 (key (sx104 ing314))) -(recipe r104 (key (sy104 ing522))) -(recipe r104 (key (sx104 ing315))) -(recipe r104 (key (sy104 ing523))) -(recipe r104 (key (sx104 ing316))) -(recipe r104 (key (sy104 ing524))) -(recipe r104 (key (sx104 ing317))) -(recipe r104 (key (sy104 ing525))) -(recipe r104 (key (sx104 ing318))) -(recipe r104 (key (sy104 ing526))) -(recipe r104 (key (sx104 ing319))) -(recipe r104 (key (sy104 ing527))) -(recipe r104 (key (sx104 ing320))) -(recipe r104 (key (sy104 ing528))) -(recipe r104 (key (sx104 ing321))) -(recipe r104 (key (sy104 ing529))) -(recipe r104 (key (sx104 ing322))) -(recipe r104 (key (sy104 ing530))) -(recipe r104 (key (sx104 ing323))) -(recipe r104 (key (sy104 ing531))) -(recipe r105 (numIngredients 2)) -(recipe r105 (result (id item105))) -(recipe r105 (pattern 0 sx105)) -(recipe r105 (pattern 1 sy105)) -(recipe r105 (key (sx105 ing315))) -(recipe r105 (key (sy105 ing525))) -(recipe r105 (key (sx105 ing316))) -(recipe r105 (key (sy105 ing526))) -(recipe r105 (key (sx105 ing317))) -(recipe r105 (key (sy105 ing527))) -(recipe r105 (key (sx105 ing318))) -(recipe r105 (key (sy105 ing528))) -(recipe r105 (key (sx105 ing319))) -(recipe r105 (key (sy105 ing529))) -(recipe r105 (key (sx105 ing320))) -(recipe r105 (key (sy105 ing530))) -(recipe r105 (key (sx105 ing321))) -(recipe r105 (key (sy105 ing531))) -(recipe r105 (key (sx105 ing322))) -(recipe r105 (key (sy105 ing532))) -(recipe r105 (key (sx105 ing323))) -(recipe r105 (key (sy105 ing533))) -(recipe r105 (key (sx105 ing324))) -(recipe r105 (key (sy105 ing534))) -(recipe r105 (key (sx105 ing325))) -(recipe r105 (key (sy105 ing535))) -(recipe r105 (key (sx105 ing326))) -(recipe r105 (key (sy105 ing536))) -(recipe r106 (numIngredients 2)) -(recipe r106 (result (id item106))) -(recipe r106 (pattern 0 sx106)) -(recipe r106 (pattern 1 sy106)) -(recipe r106 (key (sx106 ing318))) -(recipe r106 (key (sy106 ing530))) -(recipe r106 (key (sx106 ing319))) -(recipe r106 (key (sy106 ing531))) -(recipe r106 (key (sx106 ing320))) -(recipe r106 (key (sy106 ing532))) -(recipe r106 (key (sx106 ing321))) -(recipe r106 (key (sy106 ing533))) -(recipe r106 (key (sx106 ing322))) -(recipe r106 (key (sy106 ing534))) -(recipe r106 (key (sx106 ing323))) -(recipe r106 (key (sy106 ing535))) -(recipe r106 (key (sx106 ing324))) -(recipe r106 (key (sy106 ing536))) -(recipe r106 (key (sx106 ing325))) -(recipe r106 (key (sy106 ing537))) -(recipe r106 (key (sx106 ing326))) -(recipe r106 (key (sy106 ing538))) -(recipe r106 (key (sx106 ing327))) -(recipe r106 (key (sy106 ing539))) -(recipe r106 (key (sx106 ing328))) -(recipe r106 (key (sy106 ing540))) -(recipe r106 (key (sx106 ing329))) -(recipe r106 (key (sy106 ing541))) -(recipe r107 (numIngredients 2)) -(recipe r107 (result (id item107))) -(recipe r107 (pattern 0 sx107)) -(recipe r107 (pattern 1 sy107)) -(recipe r107 (key (sx107 ing321))) -(recipe r107 (key (sy107 ing535))) -(recipe r107 (key (sx107 ing322))) -(recipe r107 (key (sy107 ing536))) -(recipe r107 (key (sx107 ing323))) -(recipe r107 (key (sy107 ing537))) -(recipe r107 (key (sx107 ing324))) -(recipe r107 (key (sy107 ing538))) -(recipe r107 (key (sx107 ing325))) -(recipe r107 (key (sy107 ing539))) -(recipe r107 (key (sx107 ing326))) -(recipe r107 (key (sy107 ing540))) -(recipe r107 (key (sx107 ing327))) -(recipe r107 (key (sy107 ing541))) -(recipe r107 (key (sx107 ing328))) -(recipe r107 (key (sy107 ing542))) -(recipe r107 (key (sx107 ing329))) -(recipe r107 (key (sy107 ing543))) -(recipe r107 (key (sx107 ing330))) -(recipe r107 (key (sy107 ing544))) -(recipe r107 (key (sx107 ing331))) -(recipe r107 (key (sy107 ing545))) -(recipe r107 (key (sx107 ing332))) -(recipe r107 (key (sy107 ing546))) -(recipe r108 (numIngredients 2)) -(recipe r108 (result (id item108))) -(recipe r108 (pattern 0 sx108)) -(recipe r108 (pattern 1 sy108)) -(recipe r108 (key (sx108 ing324))) -(recipe r108 (key (sy108 ing540))) -(recipe r108 (key (sx108 ing325))) -(recipe r108 (key (sy108 ing541))) -(recipe r108 (key (sx108 ing326))) -(recipe r108 (key (sy108 ing542))) -(recipe r108 (key (sx108 ing327))) -(recipe r108 (key (sy108 ing543))) -(recipe r108 (key (sx108 ing328))) -(recipe r108 (key (sy108 ing544))) -(recipe r108 (key (sx108 ing329))) -(recipe r108 (key (sy108 ing545))) -(recipe r108 (key (sx108 ing330))) -(recipe r108 (key (sy108 ing546))) -(recipe r108 (key (sx108 ing331))) -(recipe r108 (key (sy108 ing547))) -(recipe r108 (key (sx108 ing332))) -(recipe r108 (key (sy108 ing548))) -(recipe r108 (key (sx108 ing333))) -(recipe r108 (key (sy108 ing549))) -(recipe r108 (key (sx108 ing334))) -(recipe r108 (key (sy108 ing550))) -(recipe r108 (key (sx108 ing335))) -(recipe r108 (key (sy108 ing551))) -(recipe r109 (numIngredients 2)) -(recipe r109 (result (id item109))) -(recipe r109 (pattern 0 sx109)) -(recipe r109 (pattern 1 sy109)) -(recipe r109 (key (sx109 ing327))) -(recipe r109 (key (sy109 ing545))) -(recipe r109 (key (sx109 ing328))) -(recipe r109 (key (sy109 ing546))) -(recipe r109 (key (sx109 ing329))) -(recipe r109 (key (sy109 ing547))) -(recipe r109 (key (sx109 ing330))) -(recipe r109 (key (sy109 ing548))) -(recipe r109 (key (sx109 ing331))) -(recipe r109 (key (sy109 ing549))) -(recipe r109 (key (sx109 ing332))) -(recipe r109 (key (sy109 ing550))) -(recipe r109 (key (sx109 ing333))) -(recipe r109 (key (sy109 ing551))) -(recipe r109 (key (sx109 ing334))) -(recipe r109 (key (sy109 ing552))) -(recipe r109 (key (sx109 ing335))) -(recipe r109 (key (sy109 ing553))) -(recipe r109 (key (sx109 ing336))) -(recipe r109 (key (sy109 ing554))) -(recipe r109 (key (sx109 ing337))) -(recipe r109 (key (sy109 ing555))) -(recipe r109 (key (sx109 ing338))) -(recipe r109 (key (sy109 ing556))) -(recipe r110 (numIngredients 2)) -(recipe r110 (result (id item110))) -(recipe r110 (pattern 0 sx110)) -(recipe r110 (pattern 1 sy110)) -(recipe r110 (key (sx110 ing330))) -(recipe r110 (key (sy110 ing550))) -(recipe r110 (key (sx110 ing331))) -(recipe r110 (key (sy110 ing551))) -(recipe r110 (key (sx110 ing332))) -(recipe r110 (key (sy110 ing552))) -(recipe r110 (key (sx110 ing333))) -(recipe r110 (key (sy110 ing553))) -(recipe r110 (key (sx110 ing334))) -(recipe r110 (key (sy110 ing554))) -(recipe r110 (key (sx110 ing335))) -(recipe r110 (key (sy110 ing555))) -(recipe r110 (key (sx110 ing336))) -(recipe r110 (key (sy110 ing556))) -(recipe r110 (key (sx110 ing337))) -(recipe r110 (key (sy110 ing557))) -(recipe r110 (key (sx110 ing338))) -(recipe r110 (key (sy110 ing558))) -(recipe r110 (key (sx110 ing339))) -(recipe r110 (key (sy110 ing559))) -(recipe r110 (key (sx110 ing340))) -(recipe r110 (key (sy110 ing560))) -(recipe r110 (key (sx110 ing341))) -(recipe r110 (key (sy110 ing561))) -(recipe r111 (numIngredients 2)) -(recipe r111 (result (id item111))) -(recipe r111 (pattern 0 sx111)) -(recipe r111 (pattern 1 sy111)) -(recipe r111 (key (sx111 ing333))) -(recipe r111 (key (sy111 ing555))) -(recipe r111 (key (sx111 ing334))) -(recipe r111 (key (sy111 ing556))) -(recipe r111 (key (sx111 ing335))) -(recipe r111 (key (sy111 ing557))) -(recipe r111 (key (sx111 ing336))) -(recipe r111 (key (sy111 ing558))) -(recipe r111 (key (sx111 ing337))) -(recipe r111 (key (sy111 ing559))) -(recipe r111 (key (sx111 ing338))) -(recipe r111 (key (sy111 ing560))) -(recipe r111 (key (sx111 ing339))) -(recipe r111 (key (sy111 ing561))) -(recipe r111 (key (sx111 ing340))) -(recipe r111 (key (sy111 ing562))) -(recipe r111 (key (sx111 ing341))) -(recipe r111 (key (sy111 ing563))) -(recipe r111 (key (sx111 ing342))) -(recipe r111 (key (sy111 ing564))) -(recipe r111 (key (sx111 ing343))) -(recipe r111 (key (sy111 ing565))) -(recipe r111 (key (sx111 ing344))) -(recipe r111 (key (sy111 ing566))) -(recipe r112 (numIngredients 2)) -(recipe r112 (result (id item112))) -(recipe r112 (pattern 0 sx112)) -(recipe r112 (pattern 1 sy112)) -(recipe r112 (key (sx112 ing336))) -(recipe r112 (key (sy112 ing560))) -(recipe r112 (key (sx112 ing337))) -(recipe r112 (key (sy112 ing561))) -(recipe r112 (key (sx112 ing338))) -(recipe r112 (key (sy112 ing562))) -(recipe r112 (key (sx112 ing339))) -(recipe r112 (key (sy112 ing563))) -(recipe r112 (key (sx112 ing340))) -(recipe r112 (key (sy112 ing564))) -(recipe r112 (key (sx112 ing341))) -(recipe r112 (key (sy112 ing565))) -(recipe r112 (key (sx112 ing342))) -(recipe r112 (key (sy112 ing566))) -(recipe r112 (key (sx112 ing343))) -(recipe r112 (key (sy112 ing567))) -(recipe r112 (key (sx112 ing344))) -(recipe r112 (key (sy112 ing568))) -(recipe r112 (key (sx112 ing345))) -(recipe r112 (key (sy112 ing569))) -(recipe r112 (key (sx112 ing346))) -(recipe r112 (key (sy112 ing570))) -(recipe r112 (key (sx112 ing347))) -(recipe r112 (key (sy112 ing571))) -(recipe r113 (numIngredients 2)) -(recipe r113 (result (id item113))) -(recipe r113 (pattern 0 sx113)) -(recipe r113 (pattern 1 sy113)) -(recipe r113 (key (sx113 ing339))) -(recipe r113 (key (sy113 ing565))) -(recipe r113 (key (sx113 ing340))) -(recipe r113 (key (sy113 ing566))) -(recipe r113 (key (sx113 ing341))) -(recipe r113 (key (sy113 ing567))) -(recipe r113 (key (sx113 ing342))) -(recipe r113 (key (sy113 ing568))) -(recipe r113 (key (sx113 ing343))) -(recipe r113 (key (sy113 ing569))) -(recipe r113 (key (sx113 ing344))) -(recipe r113 (key (sy113 ing570))) -(recipe r113 (key (sx113 ing345))) -(recipe r113 (key (sy113 ing571))) -(recipe r113 (key (sx113 ing346))) -(recipe r113 (key (sy113 ing572))) -(recipe r113 (key (sx113 ing347))) -(recipe r113 (key (sy113 ing573))) -(recipe r113 (key (sx113 ing348))) -(recipe r113 (key (sy113 ing574))) -(recipe r113 (key (sx113 ing349))) -(recipe r113 (key (sy113 ing575))) -(recipe r113 (key (sx113 ing350))) -(recipe r113 (key (sy113 ing576))) -(recipe r114 (numIngredients 2)) -(recipe r114 (result (id item114))) -(recipe r114 (pattern 0 sx114)) -(recipe r114 (pattern 1 sy114)) -(recipe r114 (key (sx114 ing342))) -(recipe r114 (key (sy114 ing570))) -(recipe r114 (key (sx114 ing343))) -(recipe r114 (key (sy114 ing571))) -(recipe r114 (key (sx114 ing344))) -(recipe r114 (key (sy114 ing572))) -(recipe r114 (key (sx114 ing345))) -(recipe r114 (key (sy114 ing573))) -(recipe r114 (key (sx114 ing346))) -(recipe r114 (key (sy114 ing574))) -(recipe r114 (key (sx114 ing347))) -(recipe r114 (key (sy114 ing575))) -(recipe r114 (key (sx114 ing348))) -(recipe r114 (key (sy114 ing576))) -(recipe r114 (key (sx114 ing349))) -(recipe r114 (key (sy114 ing577))) -(recipe r114 (key (sx114 ing350))) -(recipe r114 (key (sy114 ing578))) -(recipe r114 (key (sx114 ing351))) -(recipe r114 (key (sy114 ing579))) -(recipe r114 (key (sx114 ing352))) -(recipe r114 (key (sy114 ing580))) -(recipe r114 (key (sx114 ing353))) -(recipe r114 (key (sy114 ing581))) -(recipe r115 (numIngredients 2)) -(recipe r115 (result (id item115))) -(recipe r115 (pattern 0 sx115)) -(recipe r115 (pattern 1 sy115)) -(recipe r115 (key (sx115 ing345))) -(recipe r115 (key (sy115 ing575))) -(recipe r115 (key (sx115 ing346))) -(recipe r115 (key (sy115 ing576))) -(recipe r115 (key (sx115 ing347))) -(recipe r115 (key (sy115 ing577))) -(recipe r115 (key (sx115 ing348))) -(recipe r115 (key (sy115 ing578))) -(recipe r115 (key (sx115 ing349))) -(recipe r115 (key (sy115 ing579))) -(recipe r115 (key (sx115 ing350))) -(recipe r115 (key (sy115 ing580))) -(recipe r115 (key (sx115 ing351))) -(recipe r115 (key (sy115 ing581))) -(recipe r115 (key (sx115 ing352))) -(recipe r115 (key (sy115 ing582))) -(recipe r115 (key (sx115 ing353))) -(recipe r115 (key (sy115 ing583))) -(recipe r115 (key (sx115 ing354))) -(recipe r115 (key (sy115 ing584))) -(recipe r115 (key (sx115 ing355))) -(recipe r115 (key (sy115 ing585))) -(recipe r115 (key (sx115 ing356))) -(recipe r115 (key (sy115 ing586))) -(recipe r116 (numIngredients 2)) -(recipe r116 (result (id item116))) -(recipe r116 (pattern 0 sx116)) -(recipe r116 (pattern 1 sy116)) -(recipe r116 (key (sx116 ing348))) -(recipe r116 (key (sy116 ing580))) -(recipe r116 (key (sx116 ing349))) -(recipe r116 (key (sy116 ing581))) -(recipe r116 (key (sx116 ing350))) -(recipe r116 (key (sy116 ing582))) -(recipe r116 (key (sx116 ing351))) -(recipe r116 (key (sy116 ing583))) -(recipe r116 (key (sx116 ing352))) -(recipe r116 (key (sy116 ing584))) -(recipe r116 (key (sx116 ing353))) -(recipe r116 (key (sy116 ing585))) -(recipe r116 (key (sx116 ing354))) -(recipe r116 (key (sy116 ing586))) -(recipe r116 (key (sx116 ing355))) -(recipe r116 (key (sy116 ing587))) -(recipe r116 (key (sx116 ing356))) -(recipe r116 (key (sy116 ing588))) -(recipe r116 (key (sx116 ing357))) -(recipe r116 (key (sy116 ing589))) -(recipe r116 (key (sx116 ing358))) -(recipe r116 (key (sy116 ing590))) -(recipe r116 (key (sx116 ing359))) -(recipe r116 (key (sy116 ing591))) -(recipe r117 (numIngredients 2)) -(recipe r117 (result (id item117))) -(recipe r117 (pattern 0 sx117)) -(recipe r117 (pattern 1 sy117)) -(recipe r117 (key (sx117 ing351))) -(recipe r117 (key (sy117 ing585))) -(recipe r117 (key (sx117 ing352))) -(recipe r117 (key (sy117 ing586))) -(recipe r117 (key (sx117 ing353))) -(recipe r117 (key (sy117 ing587))) -(recipe r117 (key (sx117 ing354))) -(recipe r117 (key (sy117 ing588))) -(recipe r117 (key (sx117 ing355))) -(recipe r117 (key (sy117 ing589))) -(recipe r117 (key (sx117 ing356))) -(recipe r117 (key (sy117 ing590))) -(recipe r117 (key (sx117 ing357))) -(recipe r117 (key (sy117 ing591))) -(recipe r117 (key (sx117 ing358))) -(recipe r117 (key (sy117 ing592))) -(recipe r117 (key (sx117 ing359))) -(recipe r117 (key (sy117 ing593))) -(recipe r117 (key (sx117 ing360))) -(recipe r117 (key (sy117 ing594))) -(recipe r117 (key (sx117 ing361))) -(recipe r117 (key (sy117 ing595))) -(recipe r117 (key (sx117 ing362))) -(recipe r117 (key (sy117 ing596))) -(recipe r118 (numIngredients 2)) -(recipe r118 (result (id item118))) -(recipe r118 (pattern 0 sx118)) -(recipe r118 (pattern 1 sy118)) -(recipe r118 (key (sx118 ing354))) -(recipe r118 (key (sy118 ing590))) -(recipe r118 (key (sx118 ing355))) -(recipe r118 (key (sy118 ing591))) -(recipe r118 (key (sx118 ing356))) -(recipe r118 (key (sy118 ing592))) -(recipe r118 (key (sx118 ing357))) -(recipe r118 (key (sy118 ing593))) -(recipe r118 (key (sx118 ing358))) -(recipe r118 (key (sy118 ing594))) -(recipe r118 (key (sx118 ing359))) -(recipe r118 (key (sy118 ing595))) -(recipe r118 (key (sx118 ing360))) -(recipe r118 (key (sy118 ing596))) -(recipe r118 (key (sx118 ing361))) -(recipe r118 (key (sy118 ing597))) -(recipe r118 (key (sx118 ing362))) -(recipe r118 (key (sy118 ing598))) -(recipe r118 (key (sx118 ing363))) -(recipe r118 (key (sy118 ing599))) -(recipe r118 (key (sx118 ing364))) -(recipe r118 (key (sy118 ing0))) -(recipe r118 (key (sx118 ing365))) -(recipe r118 (key (sy118 ing1))) -(recipe r119 (numIngredients 2)) -(recipe r119 (result (id item119))) -(recipe r119 (pattern 0 sx119)) -(recipe r119 (pattern 1 sy119)) -(recipe r119 (key (sx119 ing357))) -(recipe r119 (key (sy119 ing595))) -(recipe r119 (key (sx119 ing358))) -(recipe r119 (key (sy119 ing596))) -(recipe r119 (key (sx119 ing359))) -(recipe r119 (key (sy119 ing597))) -(recipe r119 (key (sx119 ing360))) -(recipe r119 (key (sy119 ing598))) -(recipe r119 (key (sx119 ing361))) -(recipe r119 (key (sy119 ing599))) -(recipe r119 (key (sx119 ing362))) -(recipe r119 (key (sy119 ing0))) -(recipe r119 (key (sx119 ing363))) -(recipe r119 (key (sy119 ing1))) -(recipe r119 (key (sx119 ing364))) -(recipe r119 (key (sy119 ing2))) -(recipe r119 (key (sx119 ing365))) -(recipe r119 (key (sy119 ing3))) -(recipe r119 (key (sx119 ing366))) -(recipe r119 (key (sy119 ing4))) -(recipe r119 (key (sx119 ing367))) -(recipe r119 (key (sy119 ing5))) -(recipe r119 (key (sx119 ing368))) -(recipe r119 (key (sy119 ing6))) -(recipe r120 (numIngredients 2)) -(recipe r120 (result (id item120))) -(recipe r120 (pattern 0 sx120)) -(recipe r120 (pattern 1 sy120)) -(recipe r120 (key (sx120 ing360))) -(recipe r120 (key (sy120 ing0))) -(recipe r120 (key (sx120 ing361))) -(recipe r120 (key (sy120 ing1))) -(recipe r120 (key (sx120 ing362))) -(recipe r120 (key (sy120 ing2))) -(recipe r120 (key (sx120 ing363))) -(recipe r120 (key (sy120 ing3))) -(recipe r120 (key (sx120 ing364))) -(recipe r120 (key (sy120 ing4))) -(recipe r120 (key (sx120 ing365))) -(recipe r120 (key (sy120 ing5))) -(recipe r120 (key (sx120 ing366))) -(recipe r120 (key (sy120 ing6))) -(recipe r120 (key (sx120 ing367))) -(recipe r120 (key (sy120 ing7))) -(recipe r120 (key (sx120 ing368))) -(recipe r120 (key (sy120 ing8))) -(recipe r120 (key (sx120 ing369))) -(recipe r120 (key (sy120 ing9))) -(recipe r120 (key (sx120 ing370))) -(recipe r120 (key (sy120 ing10))) -(recipe r120 (key (sx120 ing371))) -(recipe r120 (key (sy120 ing11))) -(recipe r121 (numIngredients 2)) -(recipe r121 (result (id item121))) -(recipe r121 (pattern 0 sx121)) -(recipe r121 (pattern 1 sy121)) -(recipe r121 (key (sx121 ing363))) -(recipe r121 (key (sy121 ing5))) -(recipe r121 (key (sx121 ing364))) -(recipe r121 (key (sy121 ing6))) -(recipe r121 (key (sx121 ing365))) -(recipe r121 (key (sy121 ing7))) -(recipe r121 (key (sx121 ing366))) -(recipe r121 (key (sy121 ing8))) -(recipe r121 (key (sx121 ing367))) -(recipe r121 (key (sy121 ing9))) -(recipe r121 (key (sx121 ing368))) -(recipe r121 (key (sy121 ing10))) -(recipe r121 (key (sx121 ing369))) -(recipe r121 (key (sy121 ing11))) -(recipe r121 (key (sx121 ing370))) -(recipe r121 (key (sy121 ing12))) -(recipe r121 (key (sx121 ing371))) -(recipe r121 (key (sy121 ing13))) -(recipe r121 (key (sx121 ing372))) -(recipe r121 (key (sy121 ing14))) -(recipe r121 (key (sx121 ing373))) -(recipe r121 (key (sy121 ing15))) -(recipe r121 (key (sx121 ing374))) -(recipe r121 (key (sy121 ing16))) -(recipe r122 (numIngredients 2)) -(recipe r122 (result (id item122))) -(recipe r122 (pattern 0 sx122)) -(recipe r122 (pattern 1 sy122)) -(recipe r122 (key (sx122 ing366))) -(recipe r122 (key (sy122 ing10))) -(recipe r122 (key (sx122 ing367))) -(recipe r122 (key (sy122 ing11))) -(recipe r122 (key (sx122 ing368))) -(recipe r122 (key (sy122 ing12))) -(recipe r122 (key (sx122 ing369))) -(recipe r122 (key (sy122 ing13))) -(recipe r122 (key (sx122 ing370))) -(recipe r122 (key (sy122 ing14))) -(recipe r122 (key (sx122 ing371))) -(recipe r122 (key (sy122 ing15))) -(recipe r122 (key (sx122 ing372))) -(recipe r122 (key (sy122 ing16))) -(recipe r122 (key (sx122 ing373))) -(recipe r122 (key (sy122 ing17))) -(recipe r122 (key (sx122 ing374))) -(recipe r122 (key (sy122 ing18))) -(recipe r122 (key (sx122 ing375))) -(recipe r122 (key (sy122 ing19))) -(recipe r122 (key (sx122 ing376))) -(recipe r122 (key (sy122 ing20))) -(recipe r122 (key (sx122 ing377))) -(recipe r122 (key (sy122 ing21))) -(recipe r123 (numIngredients 2)) -(recipe r123 (result (id item123))) -(recipe r123 (pattern 0 sx123)) -(recipe r123 (pattern 1 sy123)) -(recipe r123 (key (sx123 ing369))) -(recipe r123 (key (sy123 ing15))) -(recipe r123 (key (sx123 ing370))) -(recipe r123 (key (sy123 ing16))) -(recipe r123 (key (sx123 ing371))) -(recipe r123 (key (sy123 ing17))) -(recipe r123 (key (sx123 ing372))) -(recipe r123 (key (sy123 ing18))) -(recipe r123 (key (sx123 ing373))) -(recipe r123 (key (sy123 ing19))) -(recipe r123 (key (sx123 ing374))) -(recipe r123 (key (sy123 ing20))) -(recipe r123 (key (sx123 ing375))) -(recipe r123 (key (sy123 ing21))) -(recipe r123 (key (sx123 ing376))) -(recipe r123 (key (sy123 ing22))) -(recipe r123 (key (sx123 ing377))) -(recipe r123 (key (sy123 ing23))) -(recipe r123 (key (sx123 ing378))) -(recipe r123 (key (sy123 ing24))) -(recipe r123 (key (sx123 ing379))) -(recipe r123 (key (sy123 ing25))) -(recipe r123 (key (sx123 ing380))) -(recipe r123 (key (sy123 ing26))) -(recipe r124 (numIngredients 2)) -(recipe r124 (result (id item124))) -(recipe r124 (pattern 0 sx124)) -(recipe r124 (pattern 1 sy124)) -(recipe r124 (key (sx124 ing372))) -(recipe r124 (key (sy124 ing20))) -(recipe r124 (key (sx124 ing373))) -(recipe r124 (key (sy124 ing21))) -(recipe r124 (key (sx124 ing374))) -(recipe r124 (key (sy124 ing22))) -(recipe r124 (key (sx124 ing375))) -(recipe r124 (key (sy124 ing23))) -(recipe r124 (key (sx124 ing376))) -(recipe r124 (key (sy124 ing24))) -(recipe r124 (key (sx124 ing377))) -(recipe r124 (key (sy124 ing25))) -(recipe r124 (key (sx124 ing378))) -(recipe r124 (key (sy124 ing26))) -(recipe r124 (key (sx124 ing379))) -(recipe r124 (key (sy124 ing27))) -(recipe r124 (key (sx124 ing380))) -(recipe r124 (key (sy124 ing28))) -(recipe r124 (key (sx124 ing381))) -(recipe r124 (key (sy124 ing29))) -(recipe r124 (key (sx124 ing382))) -(recipe r124 (key (sy124 ing30))) -(recipe r124 (key (sx124 ing383))) -(recipe r124 (key (sy124 ing31))) -(recipe r125 (numIngredients 2)) -(recipe r125 (result (id item125))) -(recipe r125 (pattern 0 sx125)) -(recipe r125 (pattern 1 sy125)) -(recipe r125 (key (sx125 ing375))) -(recipe r125 (key (sy125 ing25))) -(recipe r125 (key (sx125 ing376))) -(recipe r125 (key (sy125 ing26))) -(recipe r125 (key (sx125 ing377))) -(recipe r125 (key (sy125 ing27))) -(recipe r125 (key (sx125 ing378))) -(recipe r125 (key (sy125 ing28))) -(recipe r125 (key (sx125 ing379))) -(recipe r125 (key (sy125 ing29))) -(recipe r125 (key (sx125 ing380))) -(recipe r125 (key (sy125 ing30))) -(recipe r125 (key (sx125 ing381))) -(recipe r125 (key (sy125 ing31))) -(recipe r125 (key (sx125 ing382))) -(recipe r125 (key (sy125 ing32))) -(recipe r125 (key (sx125 ing383))) -(recipe r125 (key (sy125 ing33))) -(recipe r125 (key (sx125 ing384))) -(recipe r125 (key (sy125 ing34))) -(recipe r125 (key (sx125 ing385))) -(recipe r125 (key (sy125 ing35))) -(recipe r125 (key (sx125 ing386))) -(recipe r125 (key (sy125 ing36))) -(recipe r126 (numIngredients 2)) -(recipe r126 (result (id item126))) -(recipe r126 (pattern 0 sx126)) -(recipe r126 (pattern 1 sy126)) -(recipe r126 (key (sx126 ing378))) -(recipe r126 (key (sy126 ing30))) -(recipe r126 (key (sx126 ing379))) -(recipe r126 (key (sy126 ing31))) -(recipe r126 (key (sx126 ing380))) -(recipe r126 (key (sy126 ing32))) -(recipe r126 (key (sx126 ing381))) -(recipe r126 (key (sy126 ing33))) -(recipe r126 (key (sx126 ing382))) -(recipe r126 (key (sy126 ing34))) -(recipe r126 (key (sx126 ing383))) -(recipe r126 (key (sy126 ing35))) -(recipe r126 (key (sx126 ing384))) -(recipe r126 (key (sy126 ing36))) -(recipe r126 (key (sx126 ing385))) -(recipe r126 (key (sy126 ing37))) -(recipe r126 (key (sx126 ing386))) -(recipe r126 (key (sy126 ing38))) -(recipe r126 (key (sx126 ing387))) -(recipe r126 (key (sy126 ing39))) -(recipe r126 (key (sx126 ing388))) -(recipe r126 (key (sy126 ing40))) -(recipe r126 (key (sx126 ing389))) -(recipe r126 (key (sy126 ing41))) -(recipe r127 (numIngredients 2)) -(recipe r127 (result (id item127))) -(recipe r127 (pattern 0 sx127)) -(recipe r127 (pattern 1 sy127)) -(recipe r127 (key (sx127 ing381))) -(recipe r127 (key (sy127 ing35))) -(recipe r127 (key (sx127 ing382))) -(recipe r127 (key (sy127 ing36))) -(recipe r127 (key (sx127 ing383))) -(recipe r127 (key (sy127 ing37))) -(recipe r127 (key (sx127 ing384))) -(recipe r127 (key (sy127 ing38))) -(recipe r127 (key (sx127 ing385))) -(recipe r127 (key (sy127 ing39))) -(recipe r127 (key (sx127 ing386))) -(recipe r127 (key (sy127 ing40))) -(recipe r127 (key (sx127 ing387))) -(recipe r127 (key (sy127 ing41))) -(recipe r127 (key (sx127 ing388))) -(recipe r127 (key (sy127 ing42))) -(recipe r127 (key (sx127 ing389))) -(recipe r127 (key (sy127 ing43))) -(recipe r127 (key (sx127 ing390))) -(recipe r127 (key (sy127 ing44))) -(recipe r127 (key (sx127 ing391))) -(recipe r127 (key (sy127 ing45))) -(recipe r127 (key (sx127 ing392))) -(recipe r127 (key (sy127 ing46))) -(recipe r128 (numIngredients 2)) -(recipe r128 (result (id item128))) -(recipe r128 (pattern 0 sx128)) -(recipe r128 (pattern 1 sy128)) -(recipe r128 (key (sx128 ing384))) -(recipe r128 (key (sy128 ing40))) -(recipe r128 (key (sx128 ing385))) -(recipe r128 (key (sy128 ing41))) -(recipe r128 (key (sx128 ing386))) -(recipe r128 (key (sy128 ing42))) -(recipe r128 (key (sx128 ing387))) -(recipe r128 (key (sy128 ing43))) -(recipe r128 (key (sx128 ing388))) -(recipe r128 (key (sy128 ing44))) -(recipe r128 (key (sx128 ing389))) -(recipe r128 (key (sy128 ing45))) -(recipe r128 (key (sx128 ing390))) -(recipe r128 (key (sy128 ing46))) -(recipe r128 (key (sx128 ing391))) -(recipe r128 (key (sy128 ing47))) -(recipe r128 (key (sx128 ing392))) -(recipe r128 (key (sy128 ing48))) -(recipe r128 (key (sx128 ing393))) -(recipe r128 (key (sy128 ing49))) -(recipe r128 (key (sx128 ing394))) -(recipe r128 (key (sy128 ing50))) -(recipe r128 (key (sx128 ing395))) -(recipe r128 (key (sy128 ing51))) -(recipe r129 (numIngredients 2)) -(recipe r129 (result (id item129))) -(recipe r129 (pattern 0 sx129)) -(recipe r129 (pattern 1 sy129)) -(recipe r129 (key (sx129 ing387))) -(recipe r129 (key (sy129 ing45))) -(recipe r129 (key (sx129 ing388))) -(recipe r129 (key (sy129 ing46))) -(recipe r129 (key (sx129 ing389))) -(recipe r129 (key (sy129 ing47))) -(recipe r129 (key (sx129 ing390))) -(recipe r129 (key (sy129 ing48))) -(recipe r129 (key (sx129 ing391))) -(recipe r129 (key (sy129 ing49))) -(recipe r129 (key (sx129 ing392))) -(recipe r129 (key (sy129 ing50))) -(recipe r129 (key (sx129 ing393))) -(recipe r129 (key (sy129 ing51))) -(recipe r129 (key (sx129 ing394))) -(recipe r129 (key (sy129 ing52))) -(recipe r129 (key (sx129 ing395))) -(recipe r129 (key (sy129 ing53))) -(recipe r129 (key (sx129 ing396))) -(recipe r129 (key (sy129 ing54))) -(recipe r129 (key (sx129 ing397))) -(recipe r129 (key (sy129 ing55))) -(recipe r129 (key (sx129 ing398))) -(recipe r129 (key (sy129 ing56))) -(recipe r130 (numIngredients 2)) -(recipe r130 (result (id item130))) -(recipe r130 (pattern 0 sx130)) -(recipe r130 (pattern 1 sy130)) -(recipe r130 (key (sx130 ing390))) -(recipe r130 (key (sy130 ing50))) -(recipe r130 (key (sx130 ing391))) -(recipe r130 (key (sy130 ing51))) -(recipe r130 (key (sx130 ing392))) -(recipe r130 (key (sy130 ing52))) -(recipe r130 (key (sx130 ing393))) -(recipe r130 (key (sy130 ing53))) -(recipe r130 (key (sx130 ing394))) -(recipe r130 (key (sy130 ing54))) -(recipe r130 (key (sx130 ing395))) -(recipe r130 (key (sy130 ing55))) -(recipe r130 (key (sx130 ing396))) -(recipe r130 (key (sy130 ing56))) -(recipe r130 (key (sx130 ing397))) -(recipe r130 (key (sy130 ing57))) -(recipe r130 (key (sx130 ing398))) -(recipe r130 (key (sy130 ing58))) -(recipe r130 (key (sx130 ing399))) -(recipe r130 (key (sy130 ing59))) -(recipe r130 (key (sx130 ing400))) -(recipe r130 (key (sy130 ing60))) -(recipe r130 (key (sx130 ing401))) -(recipe r130 (key (sy130 ing61))) -(recipe r131 (numIngredients 2)) -(recipe r131 (result (id item131))) -(recipe r131 (pattern 0 sx131)) -(recipe r131 (pattern 1 sy131)) -(recipe r131 (key (sx131 ing393))) -(recipe r131 (key (sy131 ing55))) -(recipe r131 (key (sx131 ing394))) -(recipe r131 (key (sy131 ing56))) -(recipe r131 (key (sx131 ing395))) -(recipe r131 (key (sy131 ing57))) -(recipe r131 (key (sx131 ing396))) -(recipe r131 (key (sy131 ing58))) -(recipe r131 (key (sx131 ing397))) -(recipe r131 (key (sy131 ing59))) -(recipe r131 (key (sx131 ing398))) -(recipe r131 (key (sy131 ing60))) -(recipe r131 (key (sx131 ing399))) -(recipe r131 (key (sy131 ing61))) -(recipe r131 (key (sx131 ing400))) -(recipe r131 (key (sy131 ing62))) -(recipe r131 (key (sx131 ing401))) -(recipe r131 (key (sy131 ing63))) -(recipe r131 (key (sx131 ing402))) -(recipe r131 (key (sy131 ing64))) -(recipe r131 (key (sx131 ing403))) -(recipe r131 (key (sy131 ing65))) -(recipe r131 (key (sx131 ing404))) -(recipe r131 (key (sy131 ing66))) -(recipe r132 (numIngredients 2)) -(recipe r132 (result (id item132))) -(recipe r132 (pattern 0 sx132)) -(recipe r132 (pattern 1 sy132)) -(recipe r132 (key (sx132 ing396))) -(recipe r132 (key (sy132 ing60))) -(recipe r132 (key (sx132 ing397))) -(recipe r132 (key (sy132 ing61))) -(recipe r132 (key (sx132 ing398))) -(recipe r132 (key (sy132 ing62))) -(recipe r132 (key (sx132 ing399))) -(recipe r132 (key (sy132 ing63))) -(recipe r132 (key (sx132 ing400))) -(recipe r132 (key (sy132 ing64))) -(recipe r132 (key (sx132 ing401))) -(recipe r132 (key (sy132 ing65))) -(recipe r132 (key (sx132 ing402))) -(recipe r132 (key (sy132 ing66))) -(recipe r132 (key (sx132 ing403))) -(recipe r132 (key (sy132 ing67))) -(recipe r132 (key (sx132 ing404))) -(recipe r132 (key (sy132 ing68))) -(recipe r132 (key (sx132 ing405))) -(recipe r132 (key (sy132 ing69))) -(recipe r132 (key (sx132 ing406))) -(recipe r132 (key (sy132 ing70))) -(recipe r132 (key (sx132 ing407))) -(recipe r132 (key (sy132 ing71))) -(recipe r133 (numIngredients 2)) -(recipe r133 (result (id item133))) -(recipe r133 (pattern 0 sx133)) -(recipe r133 (pattern 1 sy133)) -(recipe r133 (key (sx133 ing399))) -(recipe r133 (key (sy133 ing65))) -(recipe r133 (key (sx133 ing400))) -(recipe r133 (key (sy133 ing66))) -(recipe r133 (key (sx133 ing401))) -(recipe r133 (key (sy133 ing67))) -(recipe r133 (key (sx133 ing402))) -(recipe r133 (key (sy133 ing68))) -(recipe r133 (key (sx133 ing403))) -(recipe r133 (key (sy133 ing69))) -(recipe r133 (key (sx133 ing404))) -(recipe r133 (key (sy133 ing70))) -(recipe r133 (key (sx133 ing405))) -(recipe r133 (key (sy133 ing71))) -(recipe r133 (key (sx133 ing406))) -(recipe r133 (key (sy133 ing72))) -(recipe r133 (key (sx133 ing407))) -(recipe r133 (key (sy133 ing73))) -(recipe r133 (key (sx133 ing408))) -(recipe r133 (key (sy133 ing74))) -(recipe r133 (key (sx133 ing409))) -(recipe r133 (key (sy133 ing75))) -(recipe r133 (key (sx133 ing410))) -(recipe r133 (key (sy133 ing76))) -(recipe r134 (numIngredients 2)) -(recipe r134 (result (id item134))) -(recipe r134 (pattern 0 sx134)) -(recipe r134 (pattern 1 sy134)) -(recipe r134 (key (sx134 ing402))) -(recipe r134 (key (sy134 ing70))) -(recipe r134 (key (sx134 ing403))) -(recipe r134 (key (sy134 ing71))) -(recipe r134 (key (sx134 ing404))) -(recipe r134 (key (sy134 ing72))) -(recipe r134 (key (sx134 ing405))) -(recipe r134 (key (sy134 ing73))) -(recipe r134 (key (sx134 ing406))) -(recipe r134 (key (sy134 ing74))) -(recipe r134 (key (sx134 ing407))) -(recipe r134 (key (sy134 ing75))) -(recipe r134 (key (sx134 ing408))) -(recipe r134 (key (sy134 ing76))) -(recipe r134 (key (sx134 ing409))) -(recipe r134 (key (sy134 ing77))) -(recipe r134 (key (sx134 ing410))) -(recipe r134 (key (sy134 ing78))) -(recipe r134 (key (sx134 ing411))) -(recipe r134 (key (sy134 ing79))) -(recipe r134 (key (sx134 ing412))) -(recipe r134 (key (sy134 ing80))) -(recipe r134 (key (sx134 ing413))) -(recipe r134 (key (sy134 ing81))) -(recipe r135 (numIngredients 2)) -(recipe r135 (result (id item135))) -(recipe r135 (pattern 0 sx135)) -(recipe r135 (pattern 1 sy135)) -(recipe r135 (key (sx135 ing405))) -(recipe r135 (key (sy135 ing75))) -(recipe r135 (key (sx135 ing406))) -(recipe r135 (key (sy135 ing76))) -(recipe r135 (key (sx135 ing407))) -(recipe r135 (key (sy135 ing77))) -(recipe r135 (key (sx135 ing408))) -(recipe r135 (key (sy135 ing78))) -(recipe r135 (key (sx135 ing409))) -(recipe r135 (key (sy135 ing79))) -(recipe r135 (key (sx135 ing410))) -(recipe r135 (key (sy135 ing80))) -(recipe r135 (key (sx135 ing411))) -(recipe r135 (key (sy135 ing81))) -(recipe r135 (key (sx135 ing412))) -(recipe r135 (key (sy135 ing82))) -(recipe r135 (key (sx135 ing413))) -(recipe r135 (key (sy135 ing83))) -(recipe r135 (key (sx135 ing414))) -(recipe r135 (key (sy135 ing84))) -(recipe r135 (key (sx135 ing415))) -(recipe r135 (key (sy135 ing85))) -(recipe r135 (key (sx135 ing416))) -(recipe r135 (key (sy135 ing86))) -(recipe r136 (numIngredients 2)) -(recipe r136 (result (id item136))) -(recipe r136 (pattern 0 sx136)) -(recipe r136 (pattern 1 sy136)) -(recipe r136 (key (sx136 ing408))) -(recipe r136 (key (sy136 ing80))) -(recipe r136 (key (sx136 ing409))) -(recipe r136 (key (sy136 ing81))) -(recipe r136 (key (sx136 ing410))) -(recipe r136 (key (sy136 ing82))) -(recipe r136 (key (sx136 ing411))) -(recipe r136 (key (sy136 ing83))) -(recipe r136 (key (sx136 ing412))) -(recipe r136 (key (sy136 ing84))) -(recipe r136 (key (sx136 ing413))) -(recipe r136 (key (sy136 ing85))) -(recipe r136 (key (sx136 ing414))) -(recipe r136 (key (sy136 ing86))) -(recipe r136 (key (sx136 ing415))) -(recipe r136 (key (sy136 ing87))) -(recipe r136 (key (sx136 ing416))) -(recipe r136 (key (sy136 ing88))) -(recipe r136 (key (sx136 ing417))) -(recipe r136 (key (sy136 ing89))) -(recipe r136 (key (sx136 ing418))) -(recipe r136 (key (sy136 ing90))) -(recipe r136 (key (sx136 ing419))) -(recipe r136 (key (sy136 ing91))) -(recipe r137 (numIngredients 2)) -(recipe r137 (result (id item137))) -(recipe r137 (pattern 0 sx137)) -(recipe r137 (pattern 1 sy137)) -(recipe r137 (key (sx137 ing411))) -(recipe r137 (key (sy137 ing85))) -(recipe r137 (key (sx137 ing412))) -(recipe r137 (key (sy137 ing86))) -(recipe r137 (key (sx137 ing413))) -(recipe r137 (key (sy137 ing87))) -(recipe r137 (key (sx137 ing414))) -(recipe r137 (key (sy137 ing88))) -(recipe r137 (key (sx137 ing415))) -(recipe r137 (key (sy137 ing89))) -(recipe r137 (key (sx137 ing416))) -(recipe r137 (key (sy137 ing90))) -(recipe r137 (key (sx137 ing417))) -(recipe r137 (key (sy137 ing91))) -(recipe r137 (key (sx137 ing418))) -(recipe r137 (key (sy137 ing92))) -(recipe r137 (key (sx137 ing419))) -(recipe r137 (key (sy137 ing93))) -(recipe r137 (key (sx137 ing420))) -(recipe r137 (key (sy137 ing94))) -(recipe r137 (key (sx137 ing421))) -(recipe r137 (key (sy137 ing95))) -(recipe r137 (key (sx137 ing422))) -(recipe r137 (key (sy137 ing96))) -(recipe r138 (numIngredients 2)) -(recipe r138 (result (id item138))) -(recipe r138 (pattern 0 sx138)) -(recipe r138 (pattern 1 sy138)) -(recipe r138 (key (sx138 ing414))) -(recipe r138 (key (sy138 ing90))) -(recipe r138 (key (sx138 ing415))) -(recipe r138 (key (sy138 ing91))) -(recipe r138 (key (sx138 ing416))) -(recipe r138 (key (sy138 ing92))) -(recipe r138 (key (sx138 ing417))) -(recipe r138 (key (sy138 ing93))) -(recipe r138 (key (sx138 ing418))) -(recipe r138 (key (sy138 ing94))) -(recipe r138 (key (sx138 ing419))) -(recipe r138 (key (sy138 ing95))) -(recipe r138 (key (sx138 ing420))) -(recipe r138 (key (sy138 ing96))) -(recipe r138 (key (sx138 ing421))) -(recipe r138 (key (sy138 ing97))) -(recipe r138 (key (sx138 ing422))) -(recipe r138 (key (sy138 ing98))) -(recipe r138 (key (sx138 ing423))) -(recipe r138 (key (sy138 ing99))) -(recipe r138 (key (sx138 ing424))) -(recipe r138 (key (sy138 ing100))) -(recipe r138 (key (sx138 ing425))) -(recipe r138 (key (sy138 ing101))) -(recipe r139 (numIngredients 2)) -(recipe r139 (result (id item139))) -(recipe r139 (pattern 0 sx139)) -(recipe r139 (pattern 1 sy139)) -(recipe r139 (key (sx139 ing417))) -(recipe r139 (key (sy139 ing95))) -(recipe r139 (key (sx139 ing418))) -(recipe r139 (key (sy139 ing96))) -(recipe r139 (key (sx139 ing419))) -(recipe r139 (key (sy139 ing97))) -(recipe r139 (key (sx139 ing420))) -(recipe r139 (key (sy139 ing98))) -(recipe r139 (key (sx139 ing421))) -(recipe r139 (key (sy139 ing99))) -(recipe r139 (key (sx139 ing422))) -(recipe r139 (key (sy139 ing100))) -(recipe r139 (key (sx139 ing423))) -(recipe r139 (key (sy139 ing101))) -(recipe r139 (key (sx139 ing424))) -(recipe r139 (key (sy139 ing102))) -(recipe r139 (key (sx139 ing425))) -(recipe r139 (key (sy139 ing103))) -(recipe r139 (key (sx139 ing426))) -(recipe r139 (key (sy139 ing104))) -(recipe r139 (key (sx139 ing427))) -(recipe r139 (key (sy139 ing105))) -(recipe r139 (key (sx139 ing428))) -(recipe r139 (key (sy139 ing106))) -(recipe r140 (numIngredients 2)) -(recipe r140 (result (id item140))) -(recipe r140 (pattern 0 sx140)) -(recipe r140 (pattern 1 sy140)) -(recipe r140 (key (sx140 ing420))) -(recipe r140 (key (sy140 ing100))) -(recipe r140 (key (sx140 ing421))) -(recipe r140 (key (sy140 ing101))) -(recipe r140 (key (sx140 ing422))) -(recipe r140 (key (sy140 ing102))) -(recipe r140 (key (sx140 ing423))) -(recipe r140 (key (sy140 ing103))) -(recipe r140 (key (sx140 ing424))) -(recipe r140 (key (sy140 ing104))) -(recipe r140 (key (sx140 ing425))) -(recipe r140 (key (sy140 ing105))) -(recipe r140 (key (sx140 ing426))) -(recipe r140 (key (sy140 ing106))) -(recipe r140 (key (sx140 ing427))) -(recipe r140 (key (sy140 ing107))) -(recipe r140 (key (sx140 ing428))) -(recipe r140 (key (sy140 ing108))) -(recipe r140 (key (sx140 ing429))) -(recipe r140 (key (sy140 ing109))) -(recipe r140 (key (sx140 ing430))) -(recipe r140 (key (sy140 ing110))) -(recipe r140 (key (sx140 ing431))) -(recipe r140 (key (sy140 ing111))) -(recipe r141 (numIngredients 2)) -(recipe r141 (result (id item141))) -(recipe r141 (pattern 0 sx141)) -(recipe r141 (pattern 1 sy141)) -(recipe r141 (key (sx141 ing423))) -(recipe r141 (key (sy141 ing105))) -(recipe r141 (key (sx141 ing424))) -(recipe r141 (key (sy141 ing106))) -(recipe r141 (key (sx141 ing425))) -(recipe r141 (key (sy141 ing107))) -(recipe r141 (key (sx141 ing426))) -(recipe r141 (key (sy141 ing108))) -(recipe r141 (key (sx141 ing427))) -(recipe r141 (key (sy141 ing109))) -(recipe r141 (key (sx141 ing428))) -(recipe r141 (key (sy141 ing110))) -(recipe r141 (key (sx141 ing429))) -(recipe r141 (key (sy141 ing111))) -(recipe r141 (key (sx141 ing430))) -(recipe r141 (key (sy141 ing112))) -(recipe r141 (key (sx141 ing431))) -(recipe r141 (key (sy141 ing113))) -(recipe r141 (key (sx141 ing432))) -(recipe r141 (key (sy141 ing114))) -(recipe r141 (key (sx141 ing433))) -(recipe r141 (key (sy141 ing115))) -(recipe r141 (key (sx141 ing434))) -(recipe r141 (key (sy141 ing116))) -(recipe r142 (numIngredients 2)) -(recipe r142 (result (id item142))) -(recipe r142 (pattern 0 sx142)) -(recipe r142 (pattern 1 sy142)) -(recipe r142 (key (sx142 ing426))) -(recipe r142 (key (sy142 ing110))) -(recipe r142 (key (sx142 ing427))) -(recipe r142 (key (sy142 ing111))) -(recipe r142 (key (sx142 ing428))) -(recipe r142 (key (sy142 ing112))) -(recipe r142 (key (sx142 ing429))) -(recipe r142 (key (sy142 ing113))) -(recipe r142 (key (sx142 ing430))) -(recipe r142 (key (sy142 ing114))) -(recipe r142 (key (sx142 ing431))) -(recipe r142 (key (sy142 ing115))) -(recipe r142 (key (sx142 ing432))) -(recipe r142 (key (sy142 ing116))) -(recipe r142 (key (sx142 ing433))) -(recipe r142 (key (sy142 ing117))) -(recipe r142 (key (sx142 ing434))) -(recipe r142 (key (sy142 ing118))) -(recipe r142 (key (sx142 ing435))) -(recipe r142 (key (sy142 ing119))) -(recipe r142 (key (sx142 ing436))) -(recipe r142 (key (sy142 ing120))) -(recipe r142 (key (sx142 ing437))) -(recipe r142 (key (sy142 ing121))) -(recipe r143 (numIngredients 2)) -(recipe r143 (result (id item143))) -(recipe r143 (pattern 0 sx143)) -(recipe r143 (pattern 1 sy143)) -(recipe r143 (key (sx143 ing429))) -(recipe r143 (key (sy143 ing115))) -(recipe r143 (key (sx143 ing430))) -(recipe r143 (key (sy143 ing116))) -(recipe r143 (key (sx143 ing431))) -(recipe r143 (key (sy143 ing117))) -(recipe r143 (key (sx143 ing432))) -(recipe r143 (key (sy143 ing118))) -(recipe r143 (key (sx143 ing433))) -(recipe r143 (key (sy143 ing119))) -(recipe r143 (key (sx143 ing434))) -(recipe r143 (key (sy143 ing120))) -(recipe r143 (key (sx143 ing435))) -(recipe r143 (key (sy143 ing121))) -(recipe r143 (key (sx143 ing436))) -(recipe r143 (key (sy143 ing122))) -(recipe r143 (key (sx143 ing437))) -(recipe r143 (key (sy143 ing123))) -(recipe r143 (key (sx143 ing438))) -(recipe r143 (key (sy143 ing124))) -(recipe r143 (key (sx143 ing439))) -(recipe r143 (key (sy143 ing125))) -(recipe r143 (key (sx143 ing440))) -(recipe r143 (key (sy143 ing126))) -(recipe r144 (numIngredients 2)) -(recipe r144 (result (id item144))) -(recipe r144 (pattern 0 sx144)) -(recipe r144 (pattern 1 sy144)) -(recipe r144 (key (sx144 ing432))) -(recipe r144 (key (sy144 ing120))) -(recipe r144 (key (sx144 ing433))) -(recipe r144 (key (sy144 ing121))) -(recipe r144 (key (sx144 ing434))) -(recipe r144 (key (sy144 ing122))) -(recipe r144 (key (sx144 ing435))) -(recipe r144 (key (sy144 ing123))) -(recipe r144 (key (sx144 ing436))) -(recipe r144 (key (sy144 ing124))) -(recipe r144 (key (sx144 ing437))) -(recipe r144 (key (sy144 ing125))) -(recipe r144 (key (sx144 ing438))) -(recipe r144 (key (sy144 ing126))) -(recipe r144 (key (sx144 ing439))) -(recipe r144 (key (sy144 ing127))) -(recipe r144 (key (sx144 ing440))) -(recipe r144 (key (sy144 ing128))) -(recipe r144 (key (sx144 ing441))) -(recipe r144 (key (sy144 ing129))) -(recipe r144 (key (sx144 ing442))) -(recipe r144 (key (sy144 ing130))) -(recipe r144 (key (sx144 ing443))) -(recipe r144 (key (sy144 ing131))) -(recipe r145 (numIngredients 2)) -(recipe r145 (result (id item145))) -(recipe r145 (pattern 0 sx145)) -(recipe r145 (pattern 1 sy145)) -(recipe r145 (key (sx145 ing435))) -(recipe r145 (key (sy145 ing125))) -(recipe r145 (key (sx145 ing436))) -(recipe r145 (key (sy145 ing126))) -(recipe r145 (key (sx145 ing437))) -(recipe r145 (key (sy145 ing127))) -(recipe r145 (key (sx145 ing438))) -(recipe r145 (key (sy145 ing128))) -(recipe r145 (key (sx145 ing439))) -(recipe r145 (key (sy145 ing129))) -(recipe r145 (key (sx145 ing440))) -(recipe r145 (key (sy145 ing130))) -(recipe r145 (key (sx145 ing441))) -(recipe r145 (key (sy145 ing131))) -(recipe r145 (key (sx145 ing442))) -(recipe r145 (key (sy145 ing132))) -(recipe r145 (key (sx145 ing443))) -(recipe r145 (key (sy145 ing133))) -(recipe r145 (key (sx145 ing444))) -(recipe r145 (key (sy145 ing134))) -(recipe r145 (key (sx145 ing445))) -(recipe r145 (key (sy145 ing135))) -(recipe r145 (key (sx145 ing446))) -(recipe r145 (key (sy145 ing136))) -(recipe r146 (numIngredients 2)) -(recipe r146 (result (id item146))) -(recipe r146 (pattern 0 sx146)) -(recipe r146 (pattern 1 sy146)) -(recipe r146 (key (sx146 ing438))) -(recipe r146 (key (sy146 ing130))) -(recipe r146 (key (sx146 ing439))) -(recipe r146 (key (sy146 ing131))) -(recipe r146 (key (sx146 ing440))) -(recipe r146 (key (sy146 ing132))) -(recipe r146 (key (sx146 ing441))) -(recipe r146 (key (sy146 ing133))) -(recipe r146 (key (sx146 ing442))) -(recipe r146 (key (sy146 ing134))) -(recipe r146 (key (sx146 ing443))) -(recipe r146 (key (sy146 ing135))) -(recipe r146 (key (sx146 ing444))) -(recipe r146 (key (sy146 ing136))) -(recipe r146 (key (sx146 ing445))) -(recipe r146 (key (sy146 ing137))) -(recipe r146 (key (sx146 ing446))) -(recipe r146 (key (sy146 ing138))) -(recipe r146 (key (sx146 ing447))) -(recipe r146 (key (sy146 ing139))) -(recipe r146 (key (sx146 ing448))) -(recipe r146 (key (sy146 ing140))) -(recipe r146 (key (sx146 ing449))) -(recipe r146 (key (sy146 ing141))) -(recipe r147 (numIngredients 2)) -(recipe r147 (result (id item147))) -(recipe r147 (pattern 0 sx147)) -(recipe r147 (pattern 1 sy147)) -(recipe r147 (key (sx147 ing441))) -(recipe r147 (key (sy147 ing135))) -(recipe r147 (key (sx147 ing442))) -(recipe r147 (key (sy147 ing136))) -(recipe r147 (key (sx147 ing443))) -(recipe r147 (key (sy147 ing137))) -(recipe r147 (key (sx147 ing444))) -(recipe r147 (key (sy147 ing138))) -(recipe r147 (key (sx147 ing445))) -(recipe r147 (key (sy147 ing139))) -(recipe r147 (key (sx147 ing446))) -(recipe r147 (key (sy147 ing140))) -(recipe r147 (key (sx147 ing447))) -(recipe r147 (key (sy147 ing141))) -(recipe r147 (key (sx147 ing448))) -(recipe r147 (key (sy147 ing142))) -(recipe r147 (key (sx147 ing449))) -(recipe r147 (key (sy147 ing143))) -(recipe r147 (key (sx147 ing450))) -(recipe r147 (key (sy147 ing144))) -(recipe r147 (key (sx147 ing451))) -(recipe r147 (key (sy147 ing145))) -(recipe r147 (key (sx147 ing452))) -(recipe r147 (key (sy147 ing146))) -(recipe r148 (numIngredients 2)) -(recipe r148 (result (id item148))) -(recipe r148 (pattern 0 sx148)) -(recipe r148 (pattern 1 sy148)) -(recipe r148 (key (sx148 ing444))) -(recipe r148 (key (sy148 ing140))) -(recipe r148 (key (sx148 ing445))) -(recipe r148 (key (sy148 ing141))) -(recipe r148 (key (sx148 ing446))) -(recipe r148 (key (sy148 ing142))) -(recipe r148 (key (sx148 ing447))) -(recipe r148 (key (sy148 ing143))) -(recipe r148 (key (sx148 ing448))) -(recipe r148 (key (sy148 ing144))) -(recipe r148 (key (sx148 ing449))) -(recipe r148 (key (sy148 ing145))) -(recipe r148 (key (sx148 ing450))) -(recipe r148 (key (sy148 ing146))) -(recipe r148 (key (sx148 ing451))) -(recipe r148 (key (sy148 ing147))) -(recipe r148 (key (sx148 ing452))) -(recipe r148 (key (sy148 ing148))) -(recipe r148 (key (sx148 ing453))) -(recipe r148 (key (sy148 ing149))) -(recipe r148 (key (sx148 ing454))) -(recipe r148 (key (sy148 ing150))) -(recipe r148 (key (sx148 ing455))) -(recipe r148 (key (sy148 ing151))) -(recipe r149 (numIngredients 2)) -(recipe r149 (result (id item149))) -(recipe r149 (pattern 0 sx149)) -(recipe r149 (pattern 1 sy149)) -(recipe r149 (key (sx149 ing447))) -(recipe r149 (key (sy149 ing145))) -(recipe r149 (key (sx149 ing448))) -(recipe r149 (key (sy149 ing146))) -(recipe r149 (key (sx149 ing449))) -(recipe r149 (key (sy149 ing147))) -(recipe r149 (key (sx149 ing450))) -(recipe r149 (key (sy149 ing148))) -(recipe r149 (key (sx149 ing451))) -(recipe r149 (key (sy149 ing149))) -(recipe r149 (key (sx149 ing452))) -(recipe r149 (key (sy149 ing150))) -(recipe r149 (key (sx149 ing453))) -(recipe r149 (key (sy149 ing151))) -(recipe r149 (key (sx149 ing454))) -(recipe r149 (key (sy149 ing152))) -(recipe r149 (key (sx149 ing455))) -(recipe r149 (key (sy149 ing153))) -(recipe r149 (key (sx149 ing456))) -(recipe r149 (key (sy149 ing154))) -(recipe r149 (key (sx149 ing457))) -(recipe r149 (key (sy149 ing155))) -(recipe r149 (key (sx149 ing458))) -(recipe r149 (key (sy149 ing156))) -(recipe r150 (numIngredients 2)) -(recipe r150 (result (id item150))) -(recipe r150 (pattern 0 sx150)) -(recipe r150 (pattern 1 sy150)) -(recipe r150 (key (sx150 ing450))) -(recipe r150 (key (sy150 ing150))) -(recipe r150 (key (sx150 ing451))) -(recipe r150 (key (sy150 ing151))) -(recipe r150 (key (sx150 ing452))) -(recipe r150 (key (sy150 ing152))) -(recipe r150 (key (sx150 ing453))) -(recipe r150 (key (sy150 ing153))) -(recipe r150 (key (sx150 ing454))) -(recipe r150 (key (sy150 ing154))) -(recipe r150 (key (sx150 ing455))) -(recipe r150 (key (sy150 ing155))) -(recipe r150 (key (sx150 ing456))) -(recipe r150 (key (sy150 ing156))) -(recipe r150 (key (sx150 ing457))) -(recipe r150 (key (sy150 ing157))) -(recipe r150 (key (sx150 ing458))) -(recipe r150 (key (sy150 ing158))) -(recipe r150 (key (sx150 ing459))) -(recipe r150 (key (sy150 ing159))) -(recipe r150 (key (sx150 ing460))) -(recipe r150 (key (sy150 ing160))) -(recipe r150 (key (sx150 ing461))) -(recipe r150 (key (sy150 ing161))) -(recipe r151 (numIngredients 2)) -(recipe r151 (result (id item151))) -(recipe r151 (pattern 0 sx151)) -(recipe r151 (pattern 1 sy151)) -(recipe r151 (key (sx151 ing453))) -(recipe r151 (key (sy151 ing155))) -(recipe r151 (key (sx151 ing454))) -(recipe r151 (key (sy151 ing156))) -(recipe r151 (key (sx151 ing455))) -(recipe r151 (key (sy151 ing157))) -(recipe r151 (key (sx151 ing456))) -(recipe r151 (key (sy151 ing158))) -(recipe r151 (key (sx151 ing457))) -(recipe r151 (key (sy151 ing159))) -(recipe r151 (key (sx151 ing458))) -(recipe r151 (key (sy151 ing160))) -(recipe r151 (key (sx151 ing459))) -(recipe r151 (key (sy151 ing161))) -(recipe r151 (key (sx151 ing460))) -(recipe r151 (key (sy151 ing162))) -(recipe r151 (key (sx151 ing461))) -(recipe r151 (key (sy151 ing163))) -(recipe r151 (key (sx151 ing462))) -(recipe r151 (key (sy151 ing164))) -(recipe r151 (key (sx151 ing463))) -(recipe r151 (key (sy151 ing165))) -(recipe r151 (key (sx151 ing464))) -(recipe r151 (key (sy151 ing166))) -(recipe r152 (numIngredients 2)) -(recipe r152 (result (id item152))) -(recipe r152 (pattern 0 sx152)) -(recipe r152 (pattern 1 sy152)) -(recipe r152 (key (sx152 ing456))) -(recipe r152 (key (sy152 ing160))) -(recipe r152 (key (sx152 ing457))) -(recipe r152 (key (sy152 ing161))) -(recipe r152 (key (sx152 ing458))) -(recipe r152 (key (sy152 ing162))) -(recipe r152 (key (sx152 ing459))) -(recipe r152 (key (sy152 ing163))) -(recipe r152 (key (sx152 ing460))) -(recipe r152 (key (sy152 ing164))) -(recipe r152 (key (sx152 ing461))) -(recipe r152 (key (sy152 ing165))) -(recipe r152 (key (sx152 ing462))) -(recipe r152 (key (sy152 ing166))) -(recipe r152 (key (sx152 ing463))) -(recipe r152 (key (sy152 ing167))) -(recipe r152 (key (sx152 ing464))) -(recipe r152 (key (sy152 ing168))) -(recipe r152 (key (sx152 ing465))) -(recipe r152 (key (sy152 ing169))) -(recipe r152 (key (sx152 ing466))) -(recipe r152 (key (sy152 ing170))) -(recipe r152 (key (sx152 ing467))) -(recipe r152 (key (sy152 ing171))) -(recipe r153 (numIngredients 2)) -(recipe r153 (result (id item153))) -(recipe r153 (pattern 0 sx153)) -(recipe r153 (pattern 1 sy153)) -(recipe r153 (key (sx153 ing459))) -(recipe r153 (key (sy153 ing165))) -(recipe r153 (key (sx153 ing460))) -(recipe r153 (key (sy153 ing166))) -(recipe r153 (key (sx153 ing461))) -(recipe r153 (key (sy153 ing167))) -(recipe r153 (key (sx153 ing462))) -(recipe r153 (key (sy153 ing168))) -(recipe r153 (key (sx153 ing463))) -(recipe r153 (key (sy153 ing169))) -(recipe r153 (key (sx153 ing464))) -(recipe r153 (key (sy153 ing170))) -(recipe r153 (key (sx153 ing465))) -(recipe r153 (key (sy153 ing171))) -(recipe r153 (key (sx153 ing466))) -(recipe r153 (key (sy153 ing172))) -(recipe r153 (key (sx153 ing467))) -(recipe r153 (key (sy153 ing173))) -(recipe r153 (key (sx153 ing468))) -(recipe r153 (key (sy153 ing174))) -(recipe r153 (key (sx153 ing469))) -(recipe r153 (key (sy153 ing175))) -(recipe r153 (key (sx153 ing470))) -(recipe r153 (key (sy153 ing176))) -(recipe r154 (numIngredients 2)) -(recipe r154 (result (id item154))) -(recipe r154 (pattern 0 sx154)) -(recipe r154 (pattern 1 sy154)) -(recipe r154 (key (sx154 ing462))) -(recipe r154 (key (sy154 ing170))) -(recipe r154 (key (sx154 ing463))) -(recipe r154 (key (sy154 ing171))) -(recipe r154 (key (sx154 ing464))) -(recipe r154 (key (sy154 ing172))) -(recipe r154 (key (sx154 ing465))) -(recipe r154 (key (sy154 ing173))) -(recipe r154 (key (sx154 ing466))) -(recipe r154 (key (sy154 ing174))) -(recipe r154 (key (sx154 ing467))) -(recipe r154 (key (sy154 ing175))) -(recipe r154 (key (sx154 ing468))) -(recipe r154 (key (sy154 ing176))) -(recipe r154 (key (sx154 ing469))) -(recipe r154 (key (sy154 ing177))) -(recipe r154 (key (sx154 ing470))) -(recipe r154 (key (sy154 ing178))) -(recipe r154 (key (sx154 ing471))) -(recipe r154 (key (sy154 ing179))) -(recipe r154 (key (sx154 ing472))) -(recipe r154 (key (sy154 ing180))) -(recipe r154 (key (sx154 ing473))) -(recipe r154 (key (sy154 ing181))) -(recipe r155 (numIngredients 2)) -(recipe r155 (result (id item155))) -(recipe r155 (pattern 0 sx155)) -(recipe r155 (pattern 1 sy155)) -(recipe r155 (key (sx155 ing465))) -(recipe r155 (key (sy155 ing175))) -(recipe r155 (key (sx155 ing466))) -(recipe r155 (key (sy155 ing176))) -(recipe r155 (key (sx155 ing467))) -(recipe r155 (key (sy155 ing177))) -(recipe r155 (key (sx155 ing468))) -(recipe r155 (key (sy155 ing178))) -(recipe r155 (key (sx155 ing469))) -(recipe r155 (key (sy155 ing179))) -(recipe r155 (key (sx155 ing470))) -(recipe r155 (key (sy155 ing180))) -(recipe r155 (key (sx155 ing471))) -(recipe r155 (key (sy155 ing181))) -(recipe r155 (key (sx155 ing472))) -(recipe r155 (key (sy155 ing182))) -(recipe r155 (key (sx155 ing473))) -(recipe r155 (key (sy155 ing183))) -(recipe r155 (key (sx155 ing474))) -(recipe r155 (key (sy155 ing184))) -(recipe r155 (key (sx155 ing475))) -(recipe r155 (key (sy155 ing185))) -(recipe r155 (key (sx155 ing476))) -(recipe r155 (key (sy155 ing186))) -(recipe r156 (numIngredients 2)) -(recipe r156 (result (id item156))) -(recipe r156 (pattern 0 sx156)) -(recipe r156 (pattern 1 sy156)) -(recipe r156 (key (sx156 ing468))) -(recipe r156 (key (sy156 ing180))) -(recipe r156 (key (sx156 ing469))) -(recipe r156 (key (sy156 ing181))) -(recipe r156 (key (sx156 ing470))) -(recipe r156 (key (sy156 ing182))) -(recipe r156 (key (sx156 ing471))) -(recipe r156 (key (sy156 ing183))) -(recipe r156 (key (sx156 ing472))) -(recipe r156 (key (sy156 ing184))) -(recipe r156 (key (sx156 ing473))) -(recipe r156 (key (sy156 ing185))) -(recipe r156 (key (sx156 ing474))) -(recipe r156 (key (sy156 ing186))) -(recipe r156 (key (sx156 ing475))) -(recipe r156 (key (sy156 ing187))) -(recipe r156 (key (sx156 ing476))) -(recipe r156 (key (sy156 ing188))) -(recipe r156 (key (sx156 ing477))) -(recipe r156 (key (sy156 ing189))) -(recipe r156 (key (sx156 ing478))) -(recipe r156 (key (sy156 ing190))) -(recipe r156 (key (sx156 ing479))) -(recipe r156 (key (sy156 ing191))) -(recipe r157 (numIngredients 2)) -(recipe r157 (result (id item157))) -(recipe r157 (pattern 0 sx157)) -(recipe r157 (pattern 1 sy157)) -(recipe r157 (key (sx157 ing471))) -(recipe r157 (key (sy157 ing185))) -(recipe r157 (key (sx157 ing472))) -(recipe r157 (key (sy157 ing186))) -(recipe r157 (key (sx157 ing473))) -(recipe r157 (key (sy157 ing187))) -(recipe r157 (key (sx157 ing474))) -(recipe r157 (key (sy157 ing188))) -(recipe r157 (key (sx157 ing475))) -(recipe r157 (key (sy157 ing189))) -(recipe r157 (key (sx157 ing476))) -(recipe r157 (key (sy157 ing190))) -(recipe r157 (key (sx157 ing477))) -(recipe r157 (key (sy157 ing191))) -(recipe r157 (key (sx157 ing478))) -(recipe r157 (key (sy157 ing192))) -(recipe r157 (key (sx157 ing479))) -(recipe r157 (key (sy157 ing193))) -(recipe r157 (key (sx157 ing480))) -(recipe r157 (key (sy157 ing194))) -(recipe r157 (key (sx157 ing481))) -(recipe r157 (key (sy157 ing195))) -(recipe r157 (key (sx157 ing482))) -(recipe r157 (key (sy157 ing196))) -(recipe r158 (numIngredients 2)) -(recipe r158 (result (id item158))) -(recipe r158 (pattern 0 sx158)) -(recipe r158 (pattern 1 sy158)) -(recipe r158 (key (sx158 ing474))) -(recipe r158 (key (sy158 ing190))) -(recipe r158 (key (sx158 ing475))) -(recipe r158 (key (sy158 ing191))) -(recipe r158 (key (sx158 ing476))) -(recipe r158 (key (sy158 ing192))) -(recipe r158 (key (sx158 ing477))) -(recipe r158 (key (sy158 ing193))) -(recipe r158 (key (sx158 ing478))) -(recipe r158 (key (sy158 ing194))) -(recipe r158 (key (sx158 ing479))) -(recipe r158 (key (sy158 ing195))) -(recipe r158 (key (sx158 ing480))) -(recipe r158 (key (sy158 ing196))) -(recipe r158 (key (sx158 ing481))) -(recipe r158 (key (sy158 ing197))) -(recipe r158 (key (sx158 ing482))) -(recipe r158 (key (sy158 ing198))) -(recipe r158 (key (sx158 ing483))) -(recipe r158 (key (sy158 ing199))) -(recipe r158 (key (sx158 ing484))) -(recipe r158 (key (sy158 ing200))) -(recipe r158 (key (sx158 ing485))) -(recipe r158 (key (sy158 ing201))) -(recipe r159 (numIngredients 2)) -(recipe r159 (result (id item159))) -(recipe r159 (pattern 0 sx159)) -(recipe r159 (pattern 1 sy159)) -(recipe r159 (key (sx159 ing477))) -(recipe r159 (key (sy159 ing195))) -(recipe r159 (key (sx159 ing478))) -(recipe r159 (key (sy159 ing196))) -(recipe r159 (key (sx159 ing479))) -(recipe r159 (key (sy159 ing197))) -(recipe r159 (key (sx159 ing480))) -(recipe r159 (key (sy159 ing198))) -(recipe r159 (key (sx159 ing481))) -(recipe r159 (key (sy159 ing199))) -(recipe r159 (key (sx159 ing482))) -(recipe r159 (key (sy159 ing200))) -(recipe r159 (key (sx159 ing483))) -(recipe r159 (key (sy159 ing201))) -(recipe r159 (key (sx159 ing484))) -(recipe r159 (key (sy159 ing202))) -(recipe r159 (key (sx159 ing485))) -(recipe r159 (key (sy159 ing203))) -(recipe r159 (key (sx159 ing486))) -(recipe r159 (key (sy159 ing204))) -(recipe r159 (key (sx159 ing487))) -(recipe r159 (key (sy159 ing205))) -(recipe r159 (key (sx159 ing488))) -(recipe r159 (key (sy159 ing206))) -(recipe r160 (numIngredients 2)) -(recipe r160 (result (id item160))) -(recipe r160 (pattern 0 sx160)) -(recipe r160 (pattern 1 sy160)) -(recipe r160 (key (sx160 ing480))) -(recipe r160 (key (sy160 ing200))) -(recipe r160 (key (sx160 ing481))) -(recipe r160 (key (sy160 ing201))) -(recipe r160 (key (sx160 ing482))) -(recipe r160 (key (sy160 ing202))) -(recipe r160 (key (sx160 ing483))) -(recipe r160 (key (sy160 ing203))) -(recipe r160 (key (sx160 ing484))) -(recipe r160 (key (sy160 ing204))) -(recipe r160 (key (sx160 ing485))) -(recipe r160 (key (sy160 ing205))) -(recipe r160 (key (sx160 ing486))) -(recipe r160 (key (sy160 ing206))) -(recipe r160 (key (sx160 ing487))) -(recipe r160 (key (sy160 ing207))) -(recipe r160 (key (sx160 ing488))) -(recipe r160 (key (sy160 ing208))) -(recipe r160 (key (sx160 ing489))) -(recipe r160 (key (sy160 ing209))) -(recipe r160 (key (sx160 ing490))) -(recipe r160 (key (sy160 ing210))) -(recipe r160 (key (sx160 ing491))) -(recipe r160 (key (sy160 ing211))) -(recipe r161 (numIngredients 2)) -(recipe r161 (result (id item161))) -(recipe r161 (pattern 0 sx161)) -(recipe r161 (pattern 1 sy161)) -(recipe r161 (key (sx161 ing483))) -(recipe r161 (key (sy161 ing205))) -(recipe r161 (key (sx161 ing484))) -(recipe r161 (key (sy161 ing206))) -(recipe r161 (key (sx161 ing485))) -(recipe r161 (key (sy161 ing207))) -(recipe r161 (key (sx161 ing486))) -(recipe r161 (key (sy161 ing208))) -(recipe r161 (key (sx161 ing487))) -(recipe r161 (key (sy161 ing209))) -(recipe r161 (key (sx161 ing488))) -(recipe r161 (key (sy161 ing210))) -(recipe r161 (key (sx161 ing489))) -(recipe r161 (key (sy161 ing211))) -(recipe r161 (key (sx161 ing490))) -(recipe r161 (key (sy161 ing212))) -(recipe r161 (key (sx161 ing491))) -(recipe r161 (key (sy161 ing213))) -(recipe r161 (key (sx161 ing492))) -(recipe r161 (key (sy161 ing214))) -(recipe r161 (key (sx161 ing493))) -(recipe r161 (key (sy161 ing215))) -(recipe r161 (key (sx161 ing494))) -(recipe r161 (key (sy161 ing216))) -(recipe r162 (numIngredients 2)) -(recipe r162 (result (id item162))) -(recipe r162 (pattern 0 sx162)) -(recipe r162 (pattern 1 sy162)) -(recipe r162 (key (sx162 ing486))) -(recipe r162 (key (sy162 ing210))) -(recipe r162 (key (sx162 ing487))) -(recipe r162 (key (sy162 ing211))) -(recipe r162 (key (sx162 ing488))) -(recipe r162 (key (sy162 ing212))) -(recipe r162 (key (sx162 ing489))) -(recipe r162 (key (sy162 ing213))) -(recipe r162 (key (sx162 ing490))) -(recipe r162 (key (sy162 ing214))) -(recipe r162 (key (sx162 ing491))) -(recipe r162 (key (sy162 ing215))) -(recipe r162 (key (sx162 ing492))) -(recipe r162 (key (sy162 ing216))) -(recipe r162 (key (sx162 ing493))) -(recipe r162 (key (sy162 ing217))) -(recipe r162 (key (sx162 ing494))) -(recipe r162 (key (sy162 ing218))) -(recipe r162 (key (sx162 ing495))) -(recipe r162 (key (sy162 ing219))) -(recipe r162 (key (sx162 ing496))) -(recipe r162 (key (sy162 ing220))) -(recipe r162 (key (sx162 ing497))) -(recipe r162 (key (sy162 ing221))) -(recipe r163 (numIngredients 2)) -(recipe r163 (result (id item163))) -(recipe r163 (pattern 0 sx163)) -(recipe r163 (pattern 1 sy163)) -(recipe r163 (key (sx163 ing489))) -(recipe r163 (key (sy163 ing215))) -(recipe r163 (key (sx163 ing490))) -(recipe r163 (key (sy163 ing216))) -(recipe r163 (key (sx163 ing491))) -(recipe r163 (key (sy163 ing217))) -(recipe r163 (key (sx163 ing492))) -(recipe r163 (key (sy163 ing218))) -(recipe r163 (key (sx163 ing493))) -(recipe r163 (key (sy163 ing219))) -(recipe r163 (key (sx163 ing494))) -(recipe r163 (key (sy163 ing220))) -(recipe r163 (key (sx163 ing495))) -(recipe r163 (key (sy163 ing221))) -(recipe r163 (key (sx163 ing496))) -(recipe r163 (key (sy163 ing222))) -(recipe r163 (key (sx163 ing497))) -(recipe r163 (key (sy163 ing223))) -(recipe r163 (key (sx163 ing498))) -(recipe r163 (key (sy163 ing224))) -(recipe r163 (key (sx163 ing499))) -(recipe r163 (key (sy163 ing225))) -(recipe r163 (key (sx163 ing500))) -(recipe r163 (key (sy163 ing226))) -(recipe r164 (numIngredients 2)) -(recipe r164 (result (id item164))) -(recipe r164 (pattern 0 sx164)) -(recipe r164 (pattern 1 sy164)) -(recipe r164 (key (sx164 ing492))) -(recipe r164 (key (sy164 ing220))) -(recipe r164 (key (sx164 ing493))) -(recipe r164 (key (sy164 ing221))) -(recipe r164 (key (sx164 ing494))) -(recipe r164 (key (sy164 ing222))) -(recipe r164 (key (sx164 ing495))) -(recipe r164 (key (sy164 ing223))) -(recipe r164 (key (sx164 ing496))) -(recipe r164 (key (sy164 ing224))) -(recipe r164 (key (sx164 ing497))) -(recipe r164 (key (sy164 ing225))) -(recipe r164 (key (sx164 ing498))) -(recipe r164 (key (sy164 ing226))) -(recipe r164 (key (sx164 ing499))) -(recipe r164 (key (sy164 ing227))) -(recipe r164 (key (sx164 ing500))) -(recipe r164 (key (sy164 ing228))) -(recipe r164 (key (sx164 ing501))) -(recipe r164 (key (sy164 ing229))) -(recipe r164 (key (sx164 ing502))) -(recipe r164 (key (sy164 ing230))) -(recipe r164 (key (sx164 ing503))) -(recipe r164 (key (sy164 ing231))) -(recipe r165 (numIngredients 2)) -(recipe r165 (result (id item165))) -(recipe r165 (pattern 0 sx165)) -(recipe r165 (pattern 1 sy165)) -(recipe r165 (key (sx165 ing495))) -(recipe r165 (key (sy165 ing225))) -(recipe r165 (key (sx165 ing496))) -(recipe r165 (key (sy165 ing226))) -(recipe r165 (key (sx165 ing497))) -(recipe r165 (key (sy165 ing227))) -(recipe r165 (key (sx165 ing498))) -(recipe r165 (key (sy165 ing228))) -(recipe r165 (key (sx165 ing499))) -(recipe r165 (key (sy165 ing229))) -(recipe r165 (key (sx165 ing500))) -(recipe r165 (key (sy165 ing230))) -(recipe r165 (key (sx165 ing501))) -(recipe r165 (key (sy165 ing231))) -(recipe r165 (key (sx165 ing502))) -(recipe r165 (key (sy165 ing232))) -(recipe r165 (key (sx165 ing503))) -(recipe r165 (key (sy165 ing233))) -(recipe r165 (key (sx165 ing504))) -(recipe r165 (key (sy165 ing234))) -(recipe r165 (key (sx165 ing505))) -(recipe r165 (key (sy165 ing235))) -(recipe r165 (key (sx165 ing506))) -(recipe r165 (key (sy165 ing236))) -(recipe r166 (numIngredients 2)) -(recipe r166 (result (id item166))) -(recipe r166 (pattern 0 sx166)) -(recipe r166 (pattern 1 sy166)) -(recipe r166 (key (sx166 ing498))) -(recipe r166 (key (sy166 ing230))) -(recipe r166 (key (sx166 ing499))) -(recipe r166 (key (sy166 ing231))) -(recipe r166 (key (sx166 ing500))) -(recipe r166 (key (sy166 ing232))) -(recipe r166 (key (sx166 ing501))) -(recipe r166 (key (sy166 ing233))) -(recipe r166 (key (sx166 ing502))) -(recipe r166 (key (sy166 ing234))) -(recipe r166 (key (sx166 ing503))) -(recipe r166 (key (sy166 ing235))) -(recipe r166 (key (sx166 ing504))) -(recipe r166 (key (sy166 ing236))) -(recipe r166 (key (sx166 ing505))) -(recipe r166 (key (sy166 ing237))) -(recipe r166 (key (sx166 ing506))) -(recipe r166 (key (sy166 ing238))) -(recipe r166 (key (sx166 ing507))) -(recipe r166 (key (sy166 ing239))) -(recipe r166 (key (sx166 ing508))) -(recipe r166 (key (sy166 ing240))) -(recipe r166 (key (sx166 ing509))) -(recipe r166 (key (sy166 ing241))) -(recipe r167 (numIngredients 2)) -(recipe r167 (result (id item167))) -(recipe r167 (pattern 0 sx167)) -(recipe r167 (pattern 1 sy167)) -(recipe r167 (key (sx167 ing501))) -(recipe r167 (key (sy167 ing235))) -(recipe r167 (key (sx167 ing502))) -(recipe r167 (key (sy167 ing236))) -(recipe r167 (key (sx167 ing503))) -(recipe r167 (key (sy167 ing237))) -(recipe r167 (key (sx167 ing504))) -(recipe r167 (key (sy167 ing238))) -(recipe r167 (key (sx167 ing505))) -(recipe r167 (key (sy167 ing239))) -(recipe r167 (key (sx167 ing506))) -(recipe r167 (key (sy167 ing240))) -(recipe r167 (key (sx167 ing507))) -(recipe r167 (key (sy167 ing241))) -(recipe r167 (key (sx167 ing508))) -(recipe r167 (key (sy167 ing242))) -(recipe r167 (key (sx167 ing509))) -(recipe r167 (key (sy167 ing243))) -(recipe r167 (key (sx167 ing510))) -(recipe r167 (key (sy167 ing244))) -(recipe r167 (key (sx167 ing511))) -(recipe r167 (key (sy167 ing245))) -(recipe r167 (key (sx167 ing512))) -(recipe r167 (key (sy167 ing246))) -(recipe r168 (numIngredients 2)) -(recipe r168 (result (id item168))) -(recipe r168 (pattern 0 sx168)) -(recipe r168 (pattern 1 sy168)) -(recipe r168 (key (sx168 ing504))) -(recipe r168 (key (sy168 ing240))) -(recipe r168 (key (sx168 ing505))) -(recipe r168 (key (sy168 ing241))) -(recipe r168 (key (sx168 ing506))) -(recipe r168 (key (sy168 ing242))) -(recipe r168 (key (sx168 ing507))) -(recipe r168 (key (sy168 ing243))) -(recipe r168 (key (sx168 ing508))) -(recipe r168 (key (sy168 ing244))) -(recipe r168 (key (sx168 ing509))) -(recipe r168 (key (sy168 ing245))) -(recipe r168 (key (sx168 ing510))) -(recipe r168 (key (sy168 ing246))) -(recipe r168 (key (sx168 ing511))) -(recipe r168 (key (sy168 ing247))) -(recipe r168 (key (sx168 ing512))) -(recipe r168 (key (sy168 ing248))) -(recipe r168 (key (sx168 ing513))) -(recipe r168 (key (sy168 ing249))) -(recipe r168 (key (sx168 ing514))) -(recipe r168 (key (sy168 ing250))) -(recipe r168 (key (sx168 ing515))) -(recipe r168 (key (sy168 ing251))) -(recipe r169 (numIngredients 2)) -(recipe r169 (result (id item169))) -(recipe r169 (pattern 0 sx169)) -(recipe r169 (pattern 1 sy169)) -(recipe r169 (key (sx169 ing507))) -(recipe r169 (key (sy169 ing245))) -(recipe r169 (key (sx169 ing508))) -(recipe r169 (key (sy169 ing246))) -(recipe r169 (key (sx169 ing509))) -(recipe r169 (key (sy169 ing247))) -(recipe r169 (key (sx169 ing510))) -(recipe r169 (key (sy169 ing248))) -(recipe r169 (key (sx169 ing511))) -(recipe r169 (key (sy169 ing249))) -(recipe r169 (key (sx169 ing512))) -(recipe r169 (key (sy169 ing250))) -(recipe r169 (key (sx169 ing513))) -(recipe r169 (key (sy169 ing251))) -(recipe r169 (key (sx169 ing514))) -(recipe r169 (key (sy169 ing252))) -(recipe r169 (key (sx169 ing515))) -(recipe r169 (key (sy169 ing253))) -(recipe r169 (key (sx169 ing516))) -(recipe r169 (key (sy169 ing254))) -(recipe r169 (key (sx169 ing517))) -(recipe r169 (key (sy169 ing255))) -(recipe r169 (key (sx169 ing518))) -(recipe r169 (key (sy169 ing256))) -(recipe r170 (numIngredients 2)) -(recipe r170 (result (id item170))) -(recipe r170 (pattern 0 sx170)) -(recipe r170 (pattern 1 sy170)) -(recipe r170 (key (sx170 ing510))) -(recipe r170 (key (sy170 ing250))) -(recipe r170 (key (sx170 ing511))) -(recipe r170 (key (sy170 ing251))) -(recipe r170 (key (sx170 ing512))) -(recipe r170 (key (sy170 ing252))) -(recipe r170 (key (sx170 ing513))) -(recipe r170 (key (sy170 ing253))) -(recipe r170 (key (sx170 ing514))) -(recipe r170 (key (sy170 ing254))) -(recipe r170 (key (sx170 ing515))) -(recipe r170 (key (sy170 ing255))) -(recipe r170 (key (sx170 ing516))) -(recipe r170 (key (sy170 ing256))) -(recipe r170 (key (sx170 ing517))) -(recipe r170 (key (sy170 ing257))) -(recipe r170 (key (sx170 ing518))) -(recipe r170 (key (sy170 ing258))) -(recipe r170 (key (sx170 ing519))) -(recipe r170 (key (sy170 ing259))) -(recipe r170 (key (sx170 ing520))) -(recipe r170 (key (sy170 ing260))) -(recipe r170 (key (sx170 ing521))) -(recipe r170 (key (sy170 ing261))) -(recipe r171 (numIngredients 2)) -(recipe r171 (result (id item171))) -(recipe r171 (pattern 0 sx171)) -(recipe r171 (pattern 1 sy171)) -(recipe r171 (key (sx171 ing513))) -(recipe r171 (key (sy171 ing255))) -(recipe r171 (key (sx171 ing514))) -(recipe r171 (key (sy171 ing256))) -(recipe r171 (key (sx171 ing515))) -(recipe r171 (key (sy171 ing257))) -(recipe r171 (key (sx171 ing516))) -(recipe r171 (key (sy171 ing258))) -(recipe r171 (key (sx171 ing517))) -(recipe r171 (key (sy171 ing259))) -(recipe r171 (key (sx171 ing518))) -(recipe r171 (key (sy171 ing260))) -(recipe r171 (key (sx171 ing519))) -(recipe r171 (key (sy171 ing261))) -(recipe r171 (key (sx171 ing520))) -(recipe r171 (key (sy171 ing262))) -(recipe r171 (key (sx171 ing521))) -(recipe r171 (key (sy171 ing263))) -(recipe r171 (key (sx171 ing522))) -(recipe r171 (key (sy171 ing264))) -(recipe r171 (key (sx171 ing523))) -(recipe r171 (key (sy171 ing265))) -(recipe r171 (key (sx171 ing524))) -(recipe r171 (key (sy171 ing266))) -(recipe r172 (numIngredients 2)) -(recipe r172 (result (id item172))) -(recipe r172 (pattern 0 sx172)) -(recipe r172 (pattern 1 sy172)) -(recipe r172 (key (sx172 ing516))) -(recipe r172 (key (sy172 ing260))) -(recipe r172 (key (sx172 ing517))) -(recipe r172 (key (sy172 ing261))) -(recipe r172 (key (sx172 ing518))) -(recipe r172 (key (sy172 ing262))) -(recipe r172 (key (sx172 ing519))) -(recipe r172 (key (sy172 ing263))) -(recipe r172 (key (sx172 ing520))) -(recipe r172 (key (sy172 ing264))) -(recipe r172 (key (sx172 ing521))) -(recipe r172 (key (sy172 ing265))) -(recipe r172 (key (sx172 ing522))) -(recipe r172 (key (sy172 ing266))) -(recipe r172 (key (sx172 ing523))) -(recipe r172 (key (sy172 ing267))) -(recipe r172 (key (sx172 ing524))) -(recipe r172 (key (sy172 ing268))) -(recipe r172 (key (sx172 ing525))) -(recipe r172 (key (sy172 ing269))) -(recipe r172 (key (sx172 ing526))) -(recipe r172 (key (sy172 ing270))) -(recipe r172 (key (sx172 ing527))) -(recipe r172 (key (sy172 ing271))) -(recipe r173 (numIngredients 2)) -(recipe r173 (result (id item173))) -(recipe r173 (pattern 0 sx173)) -(recipe r173 (pattern 1 sy173)) -(recipe r173 (key (sx173 ing519))) -(recipe r173 (key (sy173 ing265))) -(recipe r173 (key (sx173 ing520))) -(recipe r173 (key (sy173 ing266))) -(recipe r173 (key (sx173 ing521))) -(recipe r173 (key (sy173 ing267))) -(recipe r173 (key (sx173 ing522))) -(recipe r173 (key (sy173 ing268))) -(recipe r173 (key (sx173 ing523))) -(recipe r173 (key (sy173 ing269))) -(recipe r173 (key (sx173 ing524))) -(recipe r173 (key (sy173 ing270))) -(recipe r173 (key (sx173 ing525))) -(recipe r173 (key (sy173 ing271))) -(recipe r173 (key (sx173 ing526))) -(recipe r173 (key (sy173 ing272))) -(recipe r173 (key (sx173 ing527))) -(recipe r173 (key (sy173 ing273))) -(recipe r173 (key (sx173 ing528))) -(recipe r173 (key (sy173 ing274))) -(recipe r173 (key (sx173 ing529))) -(recipe r173 (key (sy173 ing275))) -(recipe r173 (key (sx173 ing530))) -(recipe r173 (key (sy173 ing276))) -(recipe r174 (numIngredients 2)) -(recipe r174 (result (id item174))) -(recipe r174 (pattern 0 sx174)) -(recipe r174 (pattern 1 sy174)) -(recipe r174 (key (sx174 ing522))) -(recipe r174 (key (sy174 ing270))) -(recipe r174 (key (sx174 ing523))) -(recipe r174 (key (sy174 ing271))) -(recipe r174 (key (sx174 ing524))) -(recipe r174 (key (sy174 ing272))) -(recipe r174 (key (sx174 ing525))) -(recipe r174 (key (sy174 ing273))) -(recipe r174 (key (sx174 ing526))) -(recipe r174 (key (sy174 ing274))) -(recipe r174 (key (sx174 ing527))) -(recipe r174 (key (sy174 ing275))) -(recipe r174 (key (sx174 ing528))) -(recipe r174 (key (sy174 ing276))) -(recipe r174 (key (sx174 ing529))) -(recipe r174 (key (sy174 ing277))) -(recipe r174 (key (sx174 ing530))) -(recipe r174 (key (sy174 ing278))) -(recipe r174 (key (sx174 ing531))) -(recipe r174 (key (sy174 ing279))) -(recipe r174 (key (sx174 ing532))) -(recipe r174 (key (sy174 ing280))) -(recipe r174 (key (sx174 ing533))) -(recipe r174 (key (sy174 ing281))) -(recipe r175 (numIngredients 2)) -(recipe r175 (result (id item175))) -(recipe r175 (pattern 0 sx175)) -(recipe r175 (pattern 1 sy175)) -(recipe r175 (key (sx175 ing525))) -(recipe r175 (key (sy175 ing275))) -(recipe r175 (key (sx175 ing526))) -(recipe r175 (key (sy175 ing276))) -(recipe r175 (key (sx175 ing527))) -(recipe r175 (key (sy175 ing277))) -(recipe r175 (key (sx175 ing528))) -(recipe r175 (key (sy175 ing278))) -(recipe r175 (key (sx175 ing529))) -(recipe r175 (key (sy175 ing279))) -(recipe r175 (key (sx175 ing530))) -(recipe r175 (key (sy175 ing280))) -(recipe r175 (key (sx175 ing531))) -(recipe r175 (key (sy175 ing281))) -(recipe r175 (key (sx175 ing532))) -(recipe r175 (key (sy175 ing282))) -(recipe r175 (key (sx175 ing533))) -(recipe r175 (key (sy175 ing283))) -(recipe r175 (key (sx175 ing534))) -(recipe r175 (key (sy175 ing284))) -(recipe r175 (key (sx175 ing535))) -(recipe r175 (key (sy175 ing285))) -(recipe r175 (key (sx175 ing536))) -(recipe r175 (key (sy175 ing286))) -(recipe r176 (numIngredients 2)) -(recipe r176 (result (id item176))) -(recipe r176 (pattern 0 sx176)) -(recipe r176 (pattern 1 sy176)) -(recipe r176 (key (sx176 ing528))) -(recipe r176 (key (sy176 ing280))) -(recipe r176 (key (sx176 ing529))) -(recipe r176 (key (sy176 ing281))) -(recipe r176 (key (sx176 ing530))) -(recipe r176 (key (sy176 ing282))) -(recipe r176 (key (sx176 ing531))) -(recipe r176 (key (sy176 ing283))) -(recipe r176 (key (sx176 ing532))) -(recipe r176 (key (sy176 ing284))) -(recipe r176 (key (sx176 ing533))) -(recipe r176 (key (sy176 ing285))) -(recipe r176 (key (sx176 ing534))) -(recipe r176 (key (sy176 ing286))) -(recipe r176 (key (sx176 ing535))) -(recipe r176 (key (sy176 ing287))) -(recipe r176 (key (sx176 ing536))) -(recipe r176 (key (sy176 ing288))) -(recipe r176 (key (sx176 ing537))) -(recipe r176 (key (sy176 ing289))) -(recipe r176 (key (sx176 ing538))) -(recipe r176 (key (sy176 ing290))) -(recipe r176 (key (sx176 ing539))) -(recipe r176 (key (sy176 ing291))) -(recipe r177 (numIngredients 2)) -(recipe r177 (result (id item177))) -(recipe r177 (pattern 0 sx177)) -(recipe r177 (pattern 1 sy177)) -(recipe r177 (key (sx177 ing531))) -(recipe r177 (key (sy177 ing285))) -(recipe r177 (key (sx177 ing532))) -(recipe r177 (key (sy177 ing286))) -(recipe r177 (key (sx177 ing533))) -(recipe r177 (key (sy177 ing287))) -(recipe r177 (key (sx177 ing534))) -(recipe r177 (key (sy177 ing288))) -(recipe r177 (key (sx177 ing535))) -(recipe r177 (key (sy177 ing289))) -(recipe r177 (key (sx177 ing536))) -(recipe r177 (key (sy177 ing290))) -(recipe r177 (key (sx177 ing537))) -(recipe r177 (key (sy177 ing291))) -(recipe r177 (key (sx177 ing538))) -(recipe r177 (key (sy177 ing292))) -(recipe r177 (key (sx177 ing539))) -(recipe r177 (key (sy177 ing293))) -(recipe r177 (key (sx177 ing540))) -(recipe r177 (key (sy177 ing294))) -(recipe r177 (key (sx177 ing541))) -(recipe r177 (key (sy177 ing295))) -(recipe r177 (key (sx177 ing542))) -(recipe r177 (key (sy177 ing296))) -(recipe r178 (numIngredients 2)) -(recipe r178 (result (id item178))) -(recipe r178 (pattern 0 sx178)) -(recipe r178 (pattern 1 sy178)) -(recipe r178 (key (sx178 ing534))) -(recipe r178 (key (sy178 ing290))) -(recipe r178 (key (sx178 ing535))) -(recipe r178 (key (sy178 ing291))) -(recipe r178 (key (sx178 ing536))) -(recipe r178 (key (sy178 ing292))) -(recipe r178 (key (sx178 ing537))) -(recipe r178 (key (sy178 ing293))) -(recipe r178 (key (sx178 ing538))) -(recipe r178 (key (sy178 ing294))) -(recipe r178 (key (sx178 ing539))) -(recipe r178 (key (sy178 ing295))) -(recipe r178 (key (sx178 ing540))) -(recipe r178 (key (sy178 ing296))) -(recipe r178 (key (sx178 ing541))) -(recipe r178 (key (sy178 ing297))) -(recipe r178 (key (sx178 ing542))) -(recipe r178 (key (sy178 ing298))) -(recipe r178 (key (sx178 ing543))) -(recipe r178 (key (sy178 ing299))) -(recipe r178 (key (sx178 ing544))) -(recipe r178 (key (sy178 ing300))) -(recipe r178 (key (sx178 ing545))) -(recipe r178 (key (sy178 ing301))) -(recipe r179 (numIngredients 2)) -(recipe r179 (result (id item179))) -(recipe r179 (pattern 0 sx179)) -(recipe r179 (pattern 1 sy179)) -(recipe r179 (key (sx179 ing537))) -(recipe r179 (key (sy179 ing295))) -(recipe r179 (key (sx179 ing538))) -(recipe r179 (key (sy179 ing296))) -(recipe r179 (key (sx179 ing539))) -(recipe r179 (key (sy179 ing297))) -(recipe r179 (key (sx179 ing540))) -(recipe r179 (key (sy179 ing298))) -(recipe r179 (key (sx179 ing541))) -(recipe r179 (key (sy179 ing299))) -(recipe r179 (key (sx179 ing542))) -(recipe r179 (key (sy179 ing300))) -(recipe r179 (key (sx179 ing543))) -(recipe r179 (key (sy179 ing301))) -(recipe r179 (key (sx179 ing544))) -(recipe r179 (key (sy179 ing302))) -(recipe r179 (key (sx179 ing545))) -(recipe r179 (key (sy179 ing303))) -(recipe r179 (key (sx179 ing546))) -(recipe r179 (key (sy179 ing304))) -(recipe r179 (key (sx179 ing547))) -(recipe r179 (key (sy179 ing305))) -(recipe r179 (key (sx179 ing548))) -(recipe r179 (key (sy179 ing306))) -(recipe r180 (numIngredients 2)) -(recipe r180 (result (id item180))) -(recipe r180 (pattern 0 sx180)) -(recipe r180 (pattern 1 sy180)) -(recipe r180 (key (sx180 ing540))) -(recipe r180 (key (sy180 ing300))) -(recipe r180 (key (sx180 ing541))) -(recipe r180 (key (sy180 ing301))) -(recipe r180 (key (sx180 ing542))) -(recipe r180 (key (sy180 ing302))) -(recipe r180 (key (sx180 ing543))) -(recipe r180 (key (sy180 ing303))) -(recipe r180 (key (sx180 ing544))) -(recipe r180 (key (sy180 ing304))) -(recipe r180 (key (sx180 ing545))) -(recipe r180 (key (sy180 ing305))) -(recipe r180 (key (sx180 ing546))) -(recipe r180 (key (sy180 ing306))) -(recipe r180 (key (sx180 ing547))) -(recipe r180 (key (sy180 ing307))) -(recipe r180 (key (sx180 ing548))) -(recipe r180 (key (sy180 ing308))) -(recipe r180 (key (sx180 ing549))) -(recipe r180 (key (sy180 ing309))) -(recipe r180 (key (sx180 ing550))) -(recipe r180 (key (sy180 ing310))) -(recipe r180 (key (sx180 ing551))) -(recipe r180 (key (sy180 ing311))) -(recipe r181 (numIngredients 2)) -(recipe r181 (result (id item181))) -(recipe r181 (pattern 0 sx181)) -(recipe r181 (pattern 1 sy181)) -(recipe r181 (key (sx181 ing543))) -(recipe r181 (key (sy181 ing305))) -(recipe r181 (key (sx181 ing544))) -(recipe r181 (key (sy181 ing306))) -(recipe r181 (key (sx181 ing545))) -(recipe r181 (key (sy181 ing307))) -(recipe r181 (key (sx181 ing546))) -(recipe r181 (key (sy181 ing308))) -(recipe r181 (key (sx181 ing547))) -(recipe r181 (key (sy181 ing309))) -(recipe r181 (key (sx181 ing548))) -(recipe r181 (key (sy181 ing310))) -(recipe r181 (key (sx181 ing549))) -(recipe r181 (key (sy181 ing311))) -(recipe r181 (key (sx181 ing550))) -(recipe r181 (key (sy181 ing312))) -(recipe r181 (key (sx181 ing551))) -(recipe r181 (key (sy181 ing313))) -(recipe r181 (key (sx181 ing552))) -(recipe r181 (key (sy181 ing314))) -(recipe r181 (key (sx181 ing553))) -(recipe r181 (key (sy181 ing315))) -(recipe r181 (key (sx181 ing554))) -(recipe r181 (key (sy181 ing316))) -(recipe r182 (numIngredients 2)) -(recipe r182 (result (id item182))) -(recipe r182 (pattern 0 sx182)) -(recipe r182 (pattern 1 sy182)) -(recipe r182 (key (sx182 ing546))) -(recipe r182 (key (sy182 ing310))) -(recipe r182 (key (sx182 ing547))) -(recipe r182 (key (sy182 ing311))) -(recipe r182 (key (sx182 ing548))) -(recipe r182 (key (sy182 ing312))) -(recipe r182 (key (sx182 ing549))) -(recipe r182 (key (sy182 ing313))) -(recipe r182 (key (sx182 ing550))) -(recipe r182 (key (sy182 ing314))) -(recipe r182 (key (sx182 ing551))) -(recipe r182 (key (sy182 ing315))) -(recipe r182 (key (sx182 ing552))) -(recipe r182 (key (sy182 ing316))) -(recipe r182 (key (sx182 ing553))) -(recipe r182 (key (sy182 ing317))) -(recipe r182 (key (sx182 ing554))) -(recipe r182 (key (sy182 ing318))) -(recipe r182 (key (sx182 ing555))) -(recipe r182 (key (sy182 ing319))) -(recipe r182 (key (sx182 ing556))) -(recipe r182 (key (sy182 ing320))) -(recipe r182 (key (sx182 ing557))) -(recipe r182 (key (sy182 ing321))) -(recipe r183 (numIngredients 2)) -(recipe r183 (result (id item183))) -(recipe r183 (pattern 0 sx183)) -(recipe r183 (pattern 1 sy183)) -(recipe r183 (key (sx183 ing549))) -(recipe r183 (key (sy183 ing315))) -(recipe r183 (key (sx183 ing550))) -(recipe r183 (key (sy183 ing316))) -(recipe r183 (key (sx183 ing551))) -(recipe r183 (key (sy183 ing317))) -(recipe r183 (key (sx183 ing552))) -(recipe r183 (key (sy183 ing318))) -(recipe r183 (key (sx183 ing553))) -(recipe r183 (key (sy183 ing319))) -(recipe r183 (key (sx183 ing554))) -(recipe r183 (key (sy183 ing320))) -(recipe r183 (key (sx183 ing555))) -(recipe r183 (key (sy183 ing321))) -(recipe r183 (key (sx183 ing556))) -(recipe r183 (key (sy183 ing322))) -(recipe r183 (key (sx183 ing557))) -(recipe r183 (key (sy183 ing323))) -(recipe r183 (key (sx183 ing558))) -(recipe r183 (key (sy183 ing324))) -(recipe r183 (key (sx183 ing559))) -(recipe r183 (key (sy183 ing325))) -(recipe r183 (key (sx183 ing560))) -(recipe r183 (key (sy183 ing326))) -(recipe r184 (numIngredients 2)) -(recipe r184 (result (id item184))) -(recipe r184 (pattern 0 sx184)) -(recipe r184 (pattern 1 sy184)) -(recipe r184 (key (sx184 ing552))) -(recipe r184 (key (sy184 ing320))) -(recipe r184 (key (sx184 ing553))) -(recipe r184 (key (sy184 ing321))) -(recipe r184 (key (sx184 ing554))) -(recipe r184 (key (sy184 ing322))) -(recipe r184 (key (sx184 ing555))) -(recipe r184 (key (sy184 ing323))) -(recipe r184 (key (sx184 ing556))) -(recipe r184 (key (sy184 ing324))) -(recipe r184 (key (sx184 ing557))) -(recipe r184 (key (sy184 ing325))) -(recipe r184 (key (sx184 ing558))) -(recipe r184 (key (sy184 ing326))) -(recipe r184 (key (sx184 ing559))) -(recipe r184 (key (sy184 ing327))) -(recipe r184 (key (sx184 ing560))) -(recipe r184 (key (sy184 ing328))) -(recipe r184 (key (sx184 ing561))) -(recipe r184 (key (sy184 ing329))) -(recipe r184 (key (sx184 ing562))) -(recipe r184 (key (sy184 ing330))) -(recipe r184 (key (sx184 ing563))) -(recipe r184 (key (sy184 ing331))) -(recipe r185 (numIngredients 2)) -(recipe r185 (result (id item185))) -(recipe r185 (pattern 0 sx185)) -(recipe r185 (pattern 1 sy185)) -(recipe r185 (key (sx185 ing555))) -(recipe r185 (key (sy185 ing325))) -(recipe r185 (key (sx185 ing556))) -(recipe r185 (key (sy185 ing326))) -(recipe r185 (key (sx185 ing557))) -(recipe r185 (key (sy185 ing327))) -(recipe r185 (key (sx185 ing558))) -(recipe r185 (key (sy185 ing328))) -(recipe r185 (key (sx185 ing559))) -(recipe r185 (key (sy185 ing329))) -(recipe r185 (key (sx185 ing560))) -(recipe r185 (key (sy185 ing330))) -(recipe r185 (key (sx185 ing561))) -(recipe r185 (key (sy185 ing331))) -(recipe r185 (key (sx185 ing562))) -(recipe r185 (key (sy185 ing332))) -(recipe r185 (key (sx185 ing563))) -(recipe r185 (key (sy185 ing333))) -(recipe r185 (key (sx185 ing564))) -(recipe r185 (key (sy185 ing334))) -(recipe r185 (key (sx185 ing565))) -(recipe r185 (key (sy185 ing335))) -(recipe r185 (key (sx185 ing566))) -(recipe r185 (key (sy185 ing336))) -(recipe r186 (numIngredients 2)) -(recipe r186 (result (id item186))) -(recipe r186 (pattern 0 sx186)) -(recipe r186 (pattern 1 sy186)) -(recipe r186 (key (sx186 ing558))) -(recipe r186 (key (sy186 ing330))) -(recipe r186 (key (sx186 ing559))) -(recipe r186 (key (sy186 ing331))) -(recipe r186 (key (sx186 ing560))) -(recipe r186 (key (sy186 ing332))) -(recipe r186 (key (sx186 ing561))) -(recipe r186 (key (sy186 ing333))) -(recipe r186 (key (sx186 ing562))) -(recipe r186 (key (sy186 ing334))) -(recipe r186 (key (sx186 ing563))) -(recipe r186 (key (sy186 ing335))) -(recipe r186 (key (sx186 ing564))) -(recipe r186 (key (sy186 ing336))) -(recipe r186 (key (sx186 ing565))) -(recipe r186 (key (sy186 ing337))) -(recipe r186 (key (sx186 ing566))) -(recipe r186 (key (sy186 ing338))) -(recipe r186 (key (sx186 ing567))) -(recipe r186 (key (sy186 ing339))) -(recipe r186 (key (sx186 ing568))) -(recipe r186 (key (sy186 ing340))) -(recipe r186 (key (sx186 ing569))) -(recipe r186 (key (sy186 ing341))) -(recipe r187 (numIngredients 2)) -(recipe r187 (result (id item187))) -(recipe r187 (pattern 0 sx187)) -(recipe r187 (pattern 1 sy187)) -(recipe r187 (key (sx187 ing561))) -(recipe r187 (key (sy187 ing335))) -(recipe r187 (key (sx187 ing562))) -(recipe r187 (key (sy187 ing336))) -(recipe r187 (key (sx187 ing563))) -(recipe r187 (key (sy187 ing337))) -(recipe r187 (key (sx187 ing564))) -(recipe r187 (key (sy187 ing338))) -(recipe r187 (key (sx187 ing565))) -(recipe r187 (key (sy187 ing339))) -(recipe r187 (key (sx187 ing566))) -(recipe r187 (key (sy187 ing340))) -(recipe r187 (key (sx187 ing567))) -(recipe r187 (key (sy187 ing341))) -(recipe r187 (key (sx187 ing568))) -(recipe r187 (key (sy187 ing342))) -(recipe r187 (key (sx187 ing569))) -(recipe r187 (key (sy187 ing343))) -(recipe r187 (key (sx187 ing570))) -(recipe r187 (key (sy187 ing344))) -(recipe r187 (key (sx187 ing571))) -(recipe r187 (key (sy187 ing345))) -(recipe r187 (key (sx187 ing572))) -(recipe r187 (key (sy187 ing346))) -(recipe r188 (numIngredients 2)) -(recipe r188 (result (id item188))) -(recipe r188 (pattern 0 sx188)) -(recipe r188 (pattern 1 sy188)) -(recipe r188 (key (sx188 ing564))) -(recipe r188 (key (sy188 ing340))) -(recipe r188 (key (sx188 ing565))) -(recipe r188 (key (sy188 ing341))) -(recipe r188 (key (sx188 ing566))) -(recipe r188 (key (sy188 ing342))) -(recipe r188 (key (sx188 ing567))) -(recipe r188 (key (sy188 ing343))) -(recipe r188 (key (sx188 ing568))) -(recipe r188 (key (sy188 ing344))) -(recipe r188 (key (sx188 ing569))) -(recipe r188 (key (sy188 ing345))) -(recipe r188 (key (sx188 ing570))) -(recipe r188 (key (sy188 ing346))) -(recipe r188 (key (sx188 ing571))) -(recipe r188 (key (sy188 ing347))) -(recipe r188 (key (sx188 ing572))) -(recipe r188 (key (sy188 ing348))) -(recipe r188 (key (sx188 ing573))) -(recipe r188 (key (sy188 ing349))) -(recipe r188 (key (sx188 ing574))) -(recipe r188 (key (sy188 ing350))) -(recipe r188 (key (sx188 ing575))) -(recipe r188 (key (sy188 ing351))) -(recipe r189 (numIngredients 2)) -(recipe r189 (result (id item189))) -(recipe r189 (pattern 0 sx189)) -(recipe r189 (pattern 1 sy189)) -(recipe r189 (key (sx189 ing567))) -(recipe r189 (key (sy189 ing345))) -(recipe r189 (key (sx189 ing568))) -(recipe r189 (key (sy189 ing346))) -(recipe r189 (key (sx189 ing569))) -(recipe r189 (key (sy189 ing347))) -(recipe r189 (key (sx189 ing570))) -(recipe r189 (key (sy189 ing348))) -(recipe r189 (key (sx189 ing571))) -(recipe r189 (key (sy189 ing349))) -(recipe r189 (key (sx189 ing572))) -(recipe r189 (key (sy189 ing350))) -(recipe r189 (key (sx189 ing573))) -(recipe r189 (key (sy189 ing351))) -(recipe r189 (key (sx189 ing574))) -(recipe r189 (key (sy189 ing352))) -(recipe r189 (key (sx189 ing575))) -(recipe r189 (key (sy189 ing353))) -(recipe r189 (key (sx189 ing576))) -(recipe r189 (key (sy189 ing354))) -(recipe r189 (key (sx189 ing577))) -(recipe r189 (key (sy189 ing355))) -(recipe r189 (key (sx189 ing578))) -(recipe r189 (key (sy189 ing356))) -(recipe r190 (numIngredients 2)) -(recipe r190 (result (id item190))) -(recipe r190 (pattern 0 sx190)) -(recipe r190 (pattern 1 sy190)) -(recipe r190 (key (sx190 ing570))) -(recipe r190 (key (sy190 ing350))) -(recipe r190 (key (sx190 ing571))) -(recipe r190 (key (sy190 ing351))) -(recipe r190 (key (sx190 ing572))) -(recipe r190 (key (sy190 ing352))) -(recipe r190 (key (sx190 ing573))) -(recipe r190 (key (sy190 ing353))) -(recipe r190 (key (sx190 ing574))) -(recipe r190 (key (sy190 ing354))) -(recipe r190 (key (sx190 ing575))) -(recipe r190 (key (sy190 ing355))) -(recipe r190 (key (sx190 ing576))) -(recipe r190 (key (sy190 ing356))) -(recipe r190 (key (sx190 ing577))) -(recipe r190 (key (sy190 ing357))) -(recipe r190 (key (sx190 ing578))) -(recipe r190 (key (sy190 ing358))) -(recipe r190 (key (sx190 ing579))) -(recipe r190 (key (sy190 ing359))) -(recipe r190 (key (sx190 ing580))) -(recipe r190 (key (sy190 ing360))) -(recipe r190 (key (sx190 ing581))) -(recipe r190 (key (sy190 ing361))) -(recipe r191 (numIngredients 2)) -(recipe r191 (result (id item191))) -(recipe r191 (pattern 0 sx191)) -(recipe r191 (pattern 1 sy191)) -(recipe r191 (key (sx191 ing573))) -(recipe r191 (key (sy191 ing355))) -(recipe r191 (key (sx191 ing574))) -(recipe r191 (key (sy191 ing356))) -(recipe r191 (key (sx191 ing575))) -(recipe r191 (key (sy191 ing357))) -(recipe r191 (key (sx191 ing576))) -(recipe r191 (key (sy191 ing358))) -(recipe r191 (key (sx191 ing577))) -(recipe r191 (key (sy191 ing359))) -(recipe r191 (key (sx191 ing578))) -(recipe r191 (key (sy191 ing360))) -(recipe r191 (key (sx191 ing579))) -(recipe r191 (key (sy191 ing361))) -(recipe r191 (key (sx191 ing580))) -(recipe r191 (key (sy191 ing362))) -(recipe r191 (key (sx191 ing581))) -(recipe r191 (key (sy191 ing363))) -(recipe r191 (key (sx191 ing582))) -(recipe r191 (key (sy191 ing364))) -(recipe r191 (key (sx191 ing583))) -(recipe r191 (key (sy191 ing365))) -(recipe r191 (key (sx191 ing584))) -(recipe r191 (key (sy191 ing366))) -(recipe r192 (numIngredients 2)) -(recipe r192 (result (id item192))) -(recipe r192 (pattern 0 sx192)) -(recipe r192 (pattern 1 sy192)) -(recipe r192 (key (sx192 ing576))) -(recipe r192 (key (sy192 ing360))) -(recipe r192 (key (sx192 ing577))) -(recipe r192 (key (sy192 ing361))) -(recipe r192 (key (sx192 ing578))) -(recipe r192 (key (sy192 ing362))) -(recipe r192 (key (sx192 ing579))) -(recipe r192 (key (sy192 ing363))) -(recipe r192 (key (sx192 ing580))) -(recipe r192 (key (sy192 ing364))) -(recipe r192 (key (sx192 ing581))) -(recipe r192 (key (sy192 ing365))) -(recipe r192 (key (sx192 ing582))) -(recipe r192 (key (sy192 ing366))) -(recipe r192 (key (sx192 ing583))) -(recipe r192 (key (sy192 ing367))) -(recipe r192 (key (sx192 ing584))) -(recipe r192 (key (sy192 ing368))) -(recipe r192 (key (sx192 ing585))) -(recipe r192 (key (sy192 ing369))) -(recipe r192 (key (sx192 ing586))) -(recipe r192 (key (sy192 ing370))) -(recipe r192 (key (sx192 ing587))) -(recipe r192 (key (sy192 ing371))) -(recipe r193 (numIngredients 2)) -(recipe r193 (result (id item193))) -(recipe r193 (pattern 0 sx193)) -(recipe r193 (pattern 1 sy193)) -(recipe r193 (key (sx193 ing579))) -(recipe r193 (key (sy193 ing365))) -(recipe r193 (key (sx193 ing580))) -(recipe r193 (key (sy193 ing366))) -(recipe r193 (key (sx193 ing581))) -(recipe r193 (key (sy193 ing367))) -(recipe r193 (key (sx193 ing582))) -(recipe r193 (key (sy193 ing368))) -(recipe r193 (key (sx193 ing583))) -(recipe r193 (key (sy193 ing369))) -(recipe r193 (key (sx193 ing584))) -(recipe r193 (key (sy193 ing370))) -(recipe r193 (key (sx193 ing585))) -(recipe r193 (key (sy193 ing371))) -(recipe r193 (key (sx193 ing586))) -(recipe r193 (key (sy193 ing372))) -(recipe r193 (key (sx193 ing587))) -(recipe r193 (key (sy193 ing373))) -(recipe r193 (key (sx193 ing588))) -(recipe r193 (key (sy193 ing374))) -(recipe r193 (key (sx193 ing589))) -(recipe r193 (key (sy193 ing375))) -(recipe r193 (key (sx193 ing590))) -(recipe r193 (key (sy193 ing376))) -(recipe r194 (numIngredients 2)) -(recipe r194 (result (id item194))) -(recipe r194 (pattern 0 sx194)) -(recipe r194 (pattern 1 sy194)) -(recipe r194 (key (sx194 ing582))) -(recipe r194 (key (sy194 ing370))) -(recipe r194 (key (sx194 ing583))) -(recipe r194 (key (sy194 ing371))) -(recipe r194 (key (sx194 ing584))) -(recipe r194 (key (sy194 ing372))) -(recipe r194 (key (sx194 ing585))) -(recipe r194 (key (sy194 ing373))) -(recipe r194 (key (sx194 ing586))) -(recipe r194 (key (sy194 ing374))) -(recipe r194 (key (sx194 ing587))) -(recipe r194 (key (sy194 ing375))) -(recipe r194 (key (sx194 ing588))) -(recipe r194 (key (sy194 ing376))) -(recipe r194 (key (sx194 ing589))) -(recipe r194 (key (sy194 ing377))) -(recipe r194 (key (sx194 ing590))) -(recipe r194 (key (sy194 ing378))) -(recipe r194 (key (sx194 ing591))) -(recipe r194 (key (sy194 ing379))) -(recipe r194 (key (sx194 ing592))) -(recipe r194 (key (sy194 ing380))) -(recipe r194 (key (sx194 ing593))) -(recipe r194 (key (sy194 ing381))) -(recipe r195 (numIngredients 2)) -(recipe r195 (result (id item195))) -(recipe r195 (pattern 0 sx195)) -(recipe r195 (pattern 1 sy195)) -(recipe r195 (key (sx195 ing585))) -(recipe r195 (key (sy195 ing375))) -(recipe r195 (key (sx195 ing586))) -(recipe r195 (key (sy195 ing376))) -(recipe r195 (key (sx195 ing587))) -(recipe r195 (key (sy195 ing377))) -(recipe r195 (key (sx195 ing588))) -(recipe r195 (key (sy195 ing378))) -(recipe r195 (key (sx195 ing589))) -(recipe r195 (key (sy195 ing379))) -(recipe r195 (key (sx195 ing590))) -(recipe r195 (key (sy195 ing380))) -(recipe r195 (key (sx195 ing591))) -(recipe r195 (key (sy195 ing381))) -(recipe r195 (key (sx195 ing592))) -(recipe r195 (key (sy195 ing382))) -(recipe r195 (key (sx195 ing593))) -(recipe r195 (key (sy195 ing383))) -(recipe r195 (key (sx195 ing594))) -(recipe r195 (key (sy195 ing384))) -(recipe r195 (key (sx195 ing595))) -(recipe r195 (key (sy195 ing385))) -(recipe r195 (key (sx195 ing596))) -(recipe r195 (key (sy195 ing386))) -(recipe r196 (numIngredients 2)) -(recipe r196 (result (id item196))) -(recipe r196 (pattern 0 sx196)) -(recipe r196 (pattern 1 sy196)) -(recipe r196 (key (sx196 ing588))) -(recipe r196 (key (sy196 ing380))) -(recipe r196 (key (sx196 ing589))) -(recipe r196 (key (sy196 ing381))) -(recipe r196 (key (sx196 ing590))) -(recipe r196 (key (sy196 ing382))) -(recipe r196 (key (sx196 ing591))) -(recipe r196 (key (sy196 ing383))) -(recipe r196 (key (sx196 ing592))) -(recipe r196 (key (sy196 ing384))) -(recipe r196 (key (sx196 ing593))) -(recipe r196 (key (sy196 ing385))) -(recipe r196 (key (sx196 ing594))) -(recipe r196 (key (sy196 ing386))) -(recipe r196 (key (sx196 ing595))) -(recipe r196 (key (sy196 ing387))) -(recipe r196 (key (sx196 ing596))) -(recipe r196 (key (sy196 ing388))) -(recipe r196 (key (sx196 ing597))) -(recipe r196 (key (sy196 ing389))) -(recipe r196 (key (sx196 ing598))) -(recipe r196 (key (sy196 ing390))) -(recipe r196 (key (sx196 ing599))) -(recipe r196 (key (sy196 ing391))) -(recipe r197 (numIngredients 2)) -(recipe r197 (result (id item197))) -(recipe r197 (pattern 0 sx197)) -(recipe r197 (pattern 1 sy197)) -(recipe r197 (key (sx197 ing591))) -(recipe r197 (key (sy197 ing385))) -(recipe r197 (key (sx197 ing592))) -(recipe r197 (key (sy197 ing386))) -(recipe r197 (key (sx197 ing593))) -(recipe r197 (key (sy197 ing387))) -(recipe r197 (key (sx197 ing594))) -(recipe r197 (key (sy197 ing388))) -(recipe r197 (key (sx197 ing595))) -(recipe r197 (key (sy197 ing389))) -(recipe r197 (key (sx197 ing596))) -(recipe r197 (key (sy197 ing390))) -(recipe r197 (key (sx197 ing597))) -(recipe r197 (key (sy197 ing391))) -(recipe r197 (key (sx197 ing598))) -(recipe r197 (key (sy197 ing392))) -(recipe r197 (key (sx197 ing599))) -(recipe r197 (key (sy197 ing393))) -(recipe r197 (key (sx197 ing0))) -(recipe r197 (key (sy197 ing394))) -(recipe r197 (key (sx197 ing1))) -(recipe r197 (key (sy197 ing395))) -(recipe r197 (key (sx197 ing2))) -(recipe r197 (key (sy197 ing396))) -(recipe r198 (numIngredients 2)) -(recipe r198 (result (id item198))) -(recipe r198 (pattern 0 sx198)) -(recipe r198 (pattern 1 sy198)) -(recipe r198 (key (sx198 ing594))) -(recipe r198 (key (sy198 ing390))) -(recipe r198 (key (sx198 ing595))) -(recipe r198 (key (sy198 ing391))) -(recipe r198 (key (sx198 ing596))) -(recipe r198 (key (sy198 ing392))) -(recipe r198 (key (sx198 ing597))) -(recipe r198 (key (sy198 ing393))) -(recipe r198 (key (sx198 ing598))) -(recipe r198 (key (sy198 ing394))) -(recipe r198 (key (sx198 ing599))) -(recipe r198 (key (sy198 ing395))) -(recipe r198 (key (sx198 ing0))) -(recipe r198 (key (sy198 ing396))) -(recipe r198 (key (sx198 ing1))) -(recipe r198 (key (sy198 ing397))) -(recipe r198 (key (sx198 ing2))) -(recipe r198 (key (sy198 ing398))) -(recipe r198 (key (sx198 ing3))) -(recipe r198 (key (sy198 ing399))) -(recipe r198 (key (sx198 ing4))) -(recipe r198 (key (sy198 ing400))) -(recipe r198 (key (sx198 ing5))) -(recipe r198 (key (sy198 ing401))) -(recipe r199 (numIngredients 2)) -(recipe r199 (result (id item199))) -(recipe r199 (pattern 0 sx199)) -(recipe r199 (pattern 1 sy199)) -(recipe r199 (key (sx199 ing597))) -(recipe r199 (key (sy199 ing395))) -(recipe r199 (key (sx199 ing598))) -(recipe r199 (key (sy199 ing396))) -(recipe r199 (key (sx199 ing599))) -(recipe r199 (key (sy199 ing397))) -(recipe r199 (key (sx199 ing0))) -(recipe r199 (key (sy199 ing398))) -(recipe r199 (key (sx199 ing1))) -(recipe r199 (key (sy199 ing399))) -(recipe r199 (key (sx199 ing2))) -(recipe r199 (key (sy199 ing400))) -(recipe r199 (key (sx199 ing3))) -(recipe r199 (key (sy199 ing401))) -(recipe r199 (key (sx199 ing4))) -(recipe r199 (key (sy199 ing402))) -(recipe r199 (key (sx199 ing5))) -(recipe r199 (key (sy199 ing403))) -(recipe r199 (key (sx199 ing6))) -(recipe r199 (key (sy199 ing404))) -(recipe r199 (key (sx199 ing7))) -(recipe r199 (key (sy199 ing405))) -(recipe r199 (key (sx199 ing8))) -(recipe r199 (key (sy199 ing406))) -(recipe r200 (numIngredients 2)) -(recipe r200 (result (id item200))) -(recipe r200 (pattern 0 sx200)) -(recipe r200 (pattern 1 sy200)) -(recipe r200 (key (sx200 ing0))) -(recipe r200 (key (sy200 ing400))) -(recipe r200 (key (sx200 ing1))) -(recipe r200 (key (sy200 ing401))) -(recipe r200 (key (sx200 ing2))) -(recipe r200 (key (sy200 ing402))) -(recipe r200 (key (sx200 ing3))) -(recipe r200 (key (sy200 ing403))) -(recipe r200 (key (sx200 ing4))) -(recipe r200 (key (sy200 ing404))) -(recipe r200 (key (sx200 ing5))) -(recipe r200 (key (sy200 ing405))) -(recipe r200 (key (sx200 ing6))) -(recipe r200 (key (sy200 ing406))) -(recipe r200 (key (sx200 ing7))) -(recipe r200 (key (sy200 ing407))) -(recipe r200 (key (sx200 ing8))) -(recipe r200 (key (sy200 ing408))) -(recipe r200 (key (sx200 ing9))) -(recipe r200 (key (sy200 ing409))) -(recipe r200 (key (sx200 ing10))) -(recipe r200 (key (sy200 ing410))) -(recipe r200 (key (sx200 ing11))) -(recipe r200 (key (sy200 ing411))) -(recipe r201 (numIngredients 2)) -(recipe r201 (result (id item201))) -(recipe r201 (pattern 0 sx201)) -(recipe r201 (pattern 1 sy201)) -(recipe r201 (key (sx201 ing3))) -(recipe r201 (key (sy201 ing405))) -(recipe r201 (key (sx201 ing4))) -(recipe r201 (key (sy201 ing406))) -(recipe r201 (key (sx201 ing5))) -(recipe r201 (key (sy201 ing407))) -(recipe r201 (key (sx201 ing6))) -(recipe r201 (key (sy201 ing408))) -(recipe r201 (key (sx201 ing7))) -(recipe r201 (key (sy201 ing409))) -(recipe r201 (key (sx201 ing8))) -(recipe r201 (key (sy201 ing410))) -(recipe r201 (key (sx201 ing9))) -(recipe r201 (key (sy201 ing411))) -(recipe r201 (key (sx201 ing10))) -(recipe r201 (key (sy201 ing412))) -(recipe r201 (key (sx201 ing11))) -(recipe r201 (key (sy201 ing413))) -(recipe r201 (key (sx201 ing12))) -(recipe r201 (key (sy201 ing414))) -(recipe r201 (key (sx201 ing13))) -(recipe r201 (key (sy201 ing415))) -(recipe r201 (key (sx201 ing14))) -(recipe r201 (key (sy201 ing416))) -(recipe r202 (numIngredients 2)) -(recipe r202 (result (id item202))) -(recipe r202 (pattern 0 sx202)) -(recipe r202 (pattern 1 sy202)) -(recipe r202 (key (sx202 ing6))) -(recipe r202 (key (sy202 ing410))) -(recipe r202 (key (sx202 ing7))) -(recipe r202 (key (sy202 ing411))) -(recipe r202 (key (sx202 ing8))) -(recipe r202 (key (sy202 ing412))) -(recipe r202 (key (sx202 ing9))) -(recipe r202 (key (sy202 ing413))) -(recipe r202 (key (sx202 ing10))) -(recipe r202 (key (sy202 ing414))) -(recipe r202 (key (sx202 ing11))) -(recipe r202 (key (sy202 ing415))) -(recipe r202 (key (sx202 ing12))) -(recipe r202 (key (sy202 ing416))) -(recipe r202 (key (sx202 ing13))) -(recipe r202 (key (sy202 ing417))) -(recipe r202 (key (sx202 ing14))) -(recipe r202 (key (sy202 ing418))) -(recipe r202 (key (sx202 ing15))) -(recipe r202 (key (sy202 ing419))) -(recipe r202 (key (sx202 ing16))) -(recipe r202 (key (sy202 ing420))) -(recipe r202 (key (sx202 ing17))) -(recipe r202 (key (sy202 ing421))) -(recipe r203 (numIngredients 2)) -(recipe r203 (result (id item203))) -(recipe r203 (pattern 0 sx203)) -(recipe r203 (pattern 1 sy203)) -(recipe r203 (key (sx203 ing9))) -(recipe r203 (key (sy203 ing415))) -(recipe r203 (key (sx203 ing10))) -(recipe r203 (key (sy203 ing416))) -(recipe r203 (key (sx203 ing11))) -(recipe r203 (key (sy203 ing417))) -(recipe r203 (key (sx203 ing12))) -(recipe r203 (key (sy203 ing418))) -(recipe r203 (key (sx203 ing13))) -(recipe r203 (key (sy203 ing419))) -(recipe r203 (key (sx203 ing14))) -(recipe r203 (key (sy203 ing420))) -(recipe r203 (key (sx203 ing15))) -(recipe r203 (key (sy203 ing421))) -(recipe r203 (key (sx203 ing16))) -(recipe r203 (key (sy203 ing422))) -(recipe r203 (key (sx203 ing17))) -(recipe r203 (key (sy203 ing423))) -(recipe r203 (key (sx203 ing18))) -(recipe r203 (key (sy203 ing424))) -(recipe r203 (key (sx203 ing19))) -(recipe r203 (key (sy203 ing425))) -(recipe r203 (key (sx203 ing20))) -(recipe r203 (key (sy203 ing426))) -(recipe r204 (numIngredients 2)) -(recipe r204 (result (id item204))) -(recipe r204 (pattern 0 sx204)) -(recipe r204 (pattern 1 sy204)) -(recipe r204 (key (sx204 ing12))) -(recipe r204 (key (sy204 ing420))) -(recipe r204 (key (sx204 ing13))) -(recipe r204 (key (sy204 ing421))) -(recipe r204 (key (sx204 ing14))) -(recipe r204 (key (sy204 ing422))) -(recipe r204 (key (sx204 ing15))) -(recipe r204 (key (sy204 ing423))) -(recipe r204 (key (sx204 ing16))) -(recipe r204 (key (sy204 ing424))) -(recipe r204 (key (sx204 ing17))) -(recipe r204 (key (sy204 ing425))) -(recipe r204 (key (sx204 ing18))) -(recipe r204 (key (sy204 ing426))) -(recipe r204 (key (sx204 ing19))) -(recipe r204 (key (sy204 ing427))) -(recipe r204 (key (sx204 ing20))) -(recipe r204 (key (sy204 ing428))) -(recipe r204 (key (sx204 ing21))) -(recipe r204 (key (sy204 ing429))) -(recipe r204 (key (sx204 ing22))) -(recipe r204 (key (sy204 ing430))) -(recipe r204 (key (sx204 ing23))) -(recipe r204 (key (sy204 ing431))) -(recipe r205 (numIngredients 2)) -(recipe r205 (result (id item205))) -(recipe r205 (pattern 0 sx205)) -(recipe r205 (pattern 1 sy205)) -(recipe r205 (key (sx205 ing15))) -(recipe r205 (key (sy205 ing425))) -(recipe r205 (key (sx205 ing16))) -(recipe r205 (key (sy205 ing426))) -(recipe r205 (key (sx205 ing17))) -(recipe r205 (key (sy205 ing427))) -(recipe r205 (key (sx205 ing18))) -(recipe r205 (key (sy205 ing428))) -(recipe r205 (key (sx205 ing19))) -(recipe r205 (key (sy205 ing429))) -(recipe r205 (key (sx205 ing20))) -(recipe r205 (key (sy205 ing430))) -(recipe r205 (key (sx205 ing21))) -(recipe r205 (key (sy205 ing431))) -(recipe r205 (key (sx205 ing22))) -(recipe r205 (key (sy205 ing432))) -(recipe r205 (key (sx205 ing23))) -(recipe r205 (key (sy205 ing433))) -(recipe r205 (key (sx205 ing24))) -(recipe r205 (key (sy205 ing434))) -(recipe r205 (key (sx205 ing25))) -(recipe r205 (key (sy205 ing435))) -(recipe r205 (key (sx205 ing26))) -(recipe r205 (key (sy205 ing436))) -(recipe r206 (numIngredients 2)) -(recipe r206 (result (id item206))) -(recipe r206 (pattern 0 sx206)) -(recipe r206 (pattern 1 sy206)) -(recipe r206 (key (sx206 ing18))) -(recipe r206 (key (sy206 ing430))) -(recipe r206 (key (sx206 ing19))) -(recipe r206 (key (sy206 ing431))) -(recipe r206 (key (sx206 ing20))) -(recipe r206 (key (sy206 ing432))) -(recipe r206 (key (sx206 ing21))) -(recipe r206 (key (sy206 ing433))) -(recipe r206 (key (sx206 ing22))) -(recipe r206 (key (sy206 ing434))) -(recipe r206 (key (sx206 ing23))) -(recipe r206 (key (sy206 ing435))) -(recipe r206 (key (sx206 ing24))) -(recipe r206 (key (sy206 ing436))) -(recipe r206 (key (sx206 ing25))) -(recipe r206 (key (sy206 ing437))) -(recipe r206 (key (sx206 ing26))) -(recipe r206 (key (sy206 ing438))) -(recipe r206 (key (sx206 ing27))) -(recipe r206 (key (sy206 ing439))) -(recipe r206 (key (sx206 ing28))) -(recipe r206 (key (sy206 ing440))) -(recipe r206 (key (sx206 ing29))) -(recipe r206 (key (sy206 ing441))) -(recipe r207 (numIngredients 2)) -(recipe r207 (result (id item207))) -(recipe r207 (pattern 0 sx207)) -(recipe r207 (pattern 1 sy207)) -(recipe r207 (key (sx207 ing21))) -(recipe r207 (key (sy207 ing435))) -(recipe r207 (key (sx207 ing22))) -(recipe r207 (key (sy207 ing436))) -(recipe r207 (key (sx207 ing23))) -(recipe r207 (key (sy207 ing437))) -(recipe r207 (key (sx207 ing24))) -(recipe r207 (key (sy207 ing438))) -(recipe r207 (key (sx207 ing25))) -(recipe r207 (key (sy207 ing439))) -(recipe r207 (key (sx207 ing26))) -(recipe r207 (key (sy207 ing440))) -(recipe r207 (key (sx207 ing27))) -(recipe r207 (key (sy207 ing441))) -(recipe r207 (key (sx207 ing28))) -(recipe r207 (key (sy207 ing442))) -(recipe r207 (key (sx207 ing29))) -(recipe r207 (key (sy207 ing443))) -(recipe r207 (key (sx207 ing30))) -(recipe r207 (key (sy207 ing444))) -(recipe r207 (key (sx207 ing31))) -(recipe r207 (key (sy207 ing445))) -(recipe r207 (key (sx207 ing32))) -(recipe r207 (key (sy207 ing446))) -(recipe r208 (numIngredients 2)) -(recipe r208 (result (id item208))) -(recipe r208 (pattern 0 sx208)) -(recipe r208 (pattern 1 sy208)) -(recipe r208 (key (sx208 ing24))) -(recipe r208 (key (sy208 ing440))) -(recipe r208 (key (sx208 ing25))) -(recipe r208 (key (sy208 ing441))) -(recipe r208 (key (sx208 ing26))) -(recipe r208 (key (sy208 ing442))) -(recipe r208 (key (sx208 ing27))) -(recipe r208 (key (sy208 ing443))) -(recipe r208 (key (sx208 ing28))) -(recipe r208 (key (sy208 ing444))) -(recipe r208 (key (sx208 ing29))) -(recipe r208 (key (sy208 ing445))) -(recipe r208 (key (sx208 ing30))) -(recipe r208 (key (sy208 ing446))) -(recipe r208 (key (sx208 ing31))) -(recipe r208 (key (sy208 ing447))) -(recipe r208 (key (sx208 ing32))) -(recipe r208 (key (sy208 ing448))) -(recipe r208 (key (sx208 ing33))) -(recipe r208 (key (sy208 ing449))) -(recipe r208 (key (sx208 ing34))) -(recipe r208 (key (sy208 ing450))) -(recipe r208 (key (sx208 ing35))) -(recipe r208 (key (sy208 ing451))) -(recipe r209 (numIngredients 2)) -(recipe r209 (result (id item209))) -(recipe r209 (pattern 0 sx209)) -(recipe r209 (pattern 1 sy209)) -(recipe r209 (key (sx209 ing27))) -(recipe r209 (key (sy209 ing445))) -(recipe r209 (key (sx209 ing28))) -(recipe r209 (key (sy209 ing446))) -(recipe r209 (key (sx209 ing29))) -(recipe r209 (key (sy209 ing447))) -(recipe r209 (key (sx209 ing30))) -(recipe r209 (key (sy209 ing448))) -(recipe r209 (key (sx209 ing31))) -(recipe r209 (key (sy209 ing449))) -(recipe r209 (key (sx209 ing32))) -(recipe r209 (key (sy209 ing450))) -(recipe r209 (key (sx209 ing33))) -(recipe r209 (key (sy209 ing451))) -(recipe r209 (key (sx209 ing34))) -(recipe r209 (key (sy209 ing452))) -(recipe r209 (key (sx209 ing35))) -(recipe r209 (key (sy209 ing453))) -(recipe r209 (key (sx209 ing36))) -(recipe r209 (key (sy209 ing454))) -(recipe r209 (key (sx209 ing37))) -(recipe r209 (key (sy209 ing455))) -(recipe r209 (key (sx209 ing38))) -(recipe r209 (key (sy209 ing456))) -(recipe r210 (numIngredients 2)) -(recipe r210 (result (id item210))) -(recipe r210 (pattern 0 sx210)) -(recipe r210 (pattern 1 sy210)) -(recipe r210 (key (sx210 ing30))) -(recipe r210 (key (sy210 ing450))) -(recipe r210 (key (sx210 ing31))) -(recipe r210 (key (sy210 ing451))) -(recipe r210 (key (sx210 ing32))) -(recipe r210 (key (sy210 ing452))) -(recipe r210 (key (sx210 ing33))) -(recipe r210 (key (sy210 ing453))) -(recipe r210 (key (sx210 ing34))) -(recipe r210 (key (sy210 ing454))) -(recipe r210 (key (sx210 ing35))) -(recipe r210 (key (sy210 ing455))) -(recipe r210 (key (sx210 ing36))) -(recipe r210 (key (sy210 ing456))) -(recipe r210 (key (sx210 ing37))) -(recipe r210 (key (sy210 ing457))) -(recipe r210 (key (sx210 ing38))) -(recipe r210 (key (sy210 ing458))) -(recipe r210 (key (sx210 ing39))) -(recipe r210 (key (sy210 ing459))) -(recipe r210 (key (sx210 ing40))) -(recipe r210 (key (sy210 ing460))) -(recipe r210 (key (sx210 ing41))) -(recipe r210 (key (sy210 ing461))) -(recipe r211 (numIngredients 2)) -(recipe r211 (result (id item211))) -(recipe r211 (pattern 0 sx211)) -(recipe r211 (pattern 1 sy211)) -(recipe r211 (key (sx211 ing33))) -(recipe r211 (key (sy211 ing455))) -(recipe r211 (key (sx211 ing34))) -(recipe r211 (key (sy211 ing456))) -(recipe r211 (key (sx211 ing35))) -(recipe r211 (key (sy211 ing457))) -(recipe r211 (key (sx211 ing36))) -(recipe r211 (key (sy211 ing458))) -(recipe r211 (key (sx211 ing37))) -(recipe r211 (key (sy211 ing459))) -(recipe r211 (key (sx211 ing38))) -(recipe r211 (key (sy211 ing460))) -(recipe r211 (key (sx211 ing39))) -(recipe r211 (key (sy211 ing461))) -(recipe r211 (key (sx211 ing40))) -(recipe r211 (key (sy211 ing462))) -(recipe r211 (key (sx211 ing41))) -(recipe r211 (key (sy211 ing463))) -(recipe r211 (key (sx211 ing42))) -(recipe r211 (key (sy211 ing464))) -(recipe r211 (key (sx211 ing43))) -(recipe r211 (key (sy211 ing465))) -(recipe r211 (key (sx211 ing44))) -(recipe r211 (key (sy211 ing466))) -(recipe r212 (numIngredients 2)) -(recipe r212 (result (id item212))) -(recipe r212 (pattern 0 sx212)) -(recipe r212 (pattern 1 sy212)) -(recipe r212 (key (sx212 ing36))) -(recipe r212 (key (sy212 ing460))) -(recipe r212 (key (sx212 ing37))) -(recipe r212 (key (sy212 ing461))) -(recipe r212 (key (sx212 ing38))) -(recipe r212 (key (sy212 ing462))) -(recipe r212 (key (sx212 ing39))) -(recipe r212 (key (sy212 ing463))) -(recipe r212 (key (sx212 ing40))) -(recipe r212 (key (sy212 ing464))) -(recipe r212 (key (sx212 ing41))) -(recipe r212 (key (sy212 ing465))) -(recipe r212 (key (sx212 ing42))) -(recipe r212 (key (sy212 ing466))) -(recipe r212 (key (sx212 ing43))) -(recipe r212 (key (sy212 ing467))) -(recipe r212 (key (sx212 ing44))) -(recipe r212 (key (sy212 ing468))) -(recipe r212 (key (sx212 ing45))) -(recipe r212 (key (sy212 ing469))) -(recipe r212 (key (sx212 ing46))) -(recipe r212 (key (sy212 ing470))) -(recipe r212 (key (sx212 ing47))) -(recipe r212 (key (sy212 ing471))) -(recipe r213 (numIngredients 2)) -(recipe r213 (result (id item213))) -(recipe r213 (pattern 0 sx213)) -(recipe r213 (pattern 1 sy213)) -(recipe r213 (key (sx213 ing39))) -(recipe r213 (key (sy213 ing465))) -(recipe r213 (key (sx213 ing40))) -(recipe r213 (key (sy213 ing466))) -(recipe r213 (key (sx213 ing41))) -(recipe r213 (key (sy213 ing467))) -(recipe r213 (key (sx213 ing42))) -(recipe r213 (key (sy213 ing468))) -(recipe r213 (key (sx213 ing43))) -(recipe r213 (key (sy213 ing469))) -(recipe r213 (key (sx213 ing44))) -(recipe r213 (key (sy213 ing470))) -(recipe r213 (key (sx213 ing45))) -(recipe r213 (key (sy213 ing471))) -(recipe r213 (key (sx213 ing46))) -(recipe r213 (key (sy213 ing472))) -(recipe r213 (key (sx213 ing47))) -(recipe r213 (key (sy213 ing473))) -(recipe r213 (key (sx213 ing48))) -(recipe r213 (key (sy213 ing474))) -(recipe r213 (key (sx213 ing49))) -(recipe r213 (key (sy213 ing475))) -(recipe r213 (key (sx213 ing50))) -(recipe r213 (key (sy213 ing476))) -(recipe r214 (numIngredients 2)) -(recipe r214 (result (id item214))) -(recipe r214 (pattern 0 sx214)) -(recipe r214 (pattern 1 sy214)) -(recipe r214 (key (sx214 ing42))) -(recipe r214 (key (sy214 ing470))) -(recipe r214 (key (sx214 ing43))) -(recipe r214 (key (sy214 ing471))) -(recipe r214 (key (sx214 ing44))) -(recipe r214 (key (sy214 ing472))) -(recipe r214 (key (sx214 ing45))) -(recipe r214 (key (sy214 ing473))) -(recipe r214 (key (sx214 ing46))) -(recipe r214 (key (sy214 ing474))) -(recipe r214 (key (sx214 ing47))) -(recipe r214 (key (sy214 ing475))) -(recipe r214 (key (sx214 ing48))) -(recipe r214 (key (sy214 ing476))) -(recipe r214 (key (sx214 ing49))) -(recipe r214 (key (sy214 ing477))) -(recipe r214 (key (sx214 ing50))) -(recipe r214 (key (sy214 ing478))) -(recipe r214 (key (sx214 ing51))) -(recipe r214 (key (sy214 ing479))) -(recipe r214 (key (sx214 ing52))) -(recipe r214 (key (sy214 ing480))) -(recipe r214 (key (sx214 ing53))) -(recipe r214 (key (sy214 ing481))) -(recipe r215 (numIngredients 2)) -(recipe r215 (result (id item215))) -(recipe r215 (pattern 0 sx215)) -(recipe r215 (pattern 1 sy215)) -(recipe r215 (key (sx215 ing45))) -(recipe r215 (key (sy215 ing475))) -(recipe r215 (key (sx215 ing46))) -(recipe r215 (key (sy215 ing476))) -(recipe r215 (key (sx215 ing47))) -(recipe r215 (key (sy215 ing477))) -(recipe r215 (key (sx215 ing48))) -(recipe r215 (key (sy215 ing478))) -(recipe r215 (key (sx215 ing49))) -(recipe r215 (key (sy215 ing479))) -(recipe r215 (key (sx215 ing50))) -(recipe r215 (key (sy215 ing480))) -(recipe r215 (key (sx215 ing51))) -(recipe r215 (key (sy215 ing481))) -(recipe r215 (key (sx215 ing52))) -(recipe r215 (key (sy215 ing482))) -(recipe r215 (key (sx215 ing53))) -(recipe r215 (key (sy215 ing483))) -(recipe r215 (key (sx215 ing54))) -(recipe r215 (key (sy215 ing484))) -(recipe r215 (key (sx215 ing55))) -(recipe r215 (key (sy215 ing485))) -(recipe r215 (key (sx215 ing56))) -(recipe r215 (key (sy215 ing486))) -(recipe r216 (numIngredients 2)) -(recipe r216 (result (id item216))) -(recipe r216 (pattern 0 sx216)) -(recipe r216 (pattern 1 sy216)) -(recipe r216 (key (sx216 ing48))) -(recipe r216 (key (sy216 ing480))) -(recipe r216 (key (sx216 ing49))) -(recipe r216 (key (sy216 ing481))) -(recipe r216 (key (sx216 ing50))) -(recipe r216 (key (sy216 ing482))) -(recipe r216 (key (sx216 ing51))) -(recipe r216 (key (sy216 ing483))) -(recipe r216 (key (sx216 ing52))) -(recipe r216 (key (sy216 ing484))) -(recipe r216 (key (sx216 ing53))) -(recipe r216 (key (sy216 ing485))) -(recipe r216 (key (sx216 ing54))) -(recipe r216 (key (sy216 ing486))) -(recipe r216 (key (sx216 ing55))) -(recipe r216 (key (sy216 ing487))) -(recipe r216 (key (sx216 ing56))) -(recipe r216 (key (sy216 ing488))) -(recipe r216 (key (sx216 ing57))) -(recipe r216 (key (sy216 ing489))) -(recipe r216 (key (sx216 ing58))) -(recipe r216 (key (sy216 ing490))) -(recipe r216 (key (sx216 ing59))) -(recipe r216 (key (sy216 ing491))) -(recipe r217 (numIngredients 2)) -(recipe r217 (result (id item217))) -(recipe r217 (pattern 0 sx217)) -(recipe r217 (pattern 1 sy217)) -(recipe r217 (key (sx217 ing51))) -(recipe r217 (key (sy217 ing485))) -(recipe r217 (key (sx217 ing52))) -(recipe r217 (key (sy217 ing486))) -(recipe r217 (key (sx217 ing53))) -(recipe r217 (key (sy217 ing487))) -(recipe r217 (key (sx217 ing54))) -(recipe r217 (key (sy217 ing488))) -(recipe r217 (key (sx217 ing55))) -(recipe r217 (key (sy217 ing489))) -(recipe r217 (key (sx217 ing56))) -(recipe r217 (key (sy217 ing490))) -(recipe r217 (key (sx217 ing57))) -(recipe r217 (key (sy217 ing491))) -(recipe r217 (key (sx217 ing58))) -(recipe r217 (key (sy217 ing492))) -(recipe r217 (key (sx217 ing59))) -(recipe r217 (key (sy217 ing493))) -(recipe r217 (key (sx217 ing60))) -(recipe r217 (key (sy217 ing494))) -(recipe r217 (key (sx217 ing61))) -(recipe r217 (key (sy217 ing495))) -(recipe r217 (key (sx217 ing62))) -(recipe r217 (key (sy217 ing496))) -(recipe r218 (numIngredients 2)) -(recipe r218 (result (id item218))) -(recipe r218 (pattern 0 sx218)) -(recipe r218 (pattern 1 sy218)) -(recipe r218 (key (sx218 ing54))) -(recipe r218 (key (sy218 ing490))) -(recipe r218 (key (sx218 ing55))) -(recipe r218 (key (sy218 ing491))) -(recipe r218 (key (sx218 ing56))) -(recipe r218 (key (sy218 ing492))) -(recipe r218 (key (sx218 ing57))) -(recipe r218 (key (sy218 ing493))) -(recipe r218 (key (sx218 ing58))) -(recipe r218 (key (sy218 ing494))) -(recipe r218 (key (sx218 ing59))) -(recipe r218 (key (sy218 ing495))) -(recipe r218 (key (sx218 ing60))) -(recipe r218 (key (sy218 ing496))) -(recipe r218 (key (sx218 ing61))) -(recipe r218 (key (sy218 ing497))) -(recipe r218 (key (sx218 ing62))) -(recipe r218 (key (sy218 ing498))) -(recipe r218 (key (sx218 ing63))) -(recipe r218 (key (sy218 ing499))) -(recipe r218 (key (sx218 ing64))) -(recipe r218 (key (sy218 ing500))) -(recipe r218 (key (sx218 ing65))) -(recipe r218 (key (sy218 ing501))) -(recipe r219 (numIngredients 2)) -(recipe r219 (result (id item219))) -(recipe r219 (pattern 0 sx219)) -(recipe r219 (pattern 1 sy219)) -(recipe r219 (key (sx219 ing57))) -(recipe r219 (key (sy219 ing495))) -(recipe r219 (key (sx219 ing58))) -(recipe r219 (key (sy219 ing496))) -(recipe r219 (key (sx219 ing59))) -(recipe r219 (key (sy219 ing497))) -(recipe r219 (key (sx219 ing60))) -(recipe r219 (key (sy219 ing498))) -(recipe r219 (key (sx219 ing61))) -(recipe r219 (key (sy219 ing499))) -(recipe r219 (key (sx219 ing62))) -(recipe r219 (key (sy219 ing500))) -(recipe r219 (key (sx219 ing63))) -(recipe r219 (key (sy219 ing501))) -(recipe r219 (key (sx219 ing64))) -(recipe r219 (key (sy219 ing502))) -(recipe r219 (key (sx219 ing65))) -(recipe r219 (key (sy219 ing503))) -(recipe r219 (key (sx219 ing66))) -(recipe r219 (key (sy219 ing504))) -(recipe r219 (key (sx219 ing67))) -(recipe r219 (key (sy219 ing505))) -(recipe r219 (key (sx219 ing68))) -(recipe r219 (key (sy219 ing506))) -(recipe r220 (numIngredients 2)) -(recipe r220 (result (id item220))) -(recipe r220 (pattern 0 sx220)) -(recipe r220 (pattern 1 sy220)) -(recipe r220 (key (sx220 ing60))) -(recipe r220 (key (sy220 ing500))) -(recipe r220 (key (sx220 ing61))) -(recipe r220 (key (sy220 ing501))) -(recipe r220 (key (sx220 ing62))) -(recipe r220 (key (sy220 ing502))) -(recipe r220 (key (sx220 ing63))) -(recipe r220 (key (sy220 ing503))) -(recipe r220 (key (sx220 ing64))) -(recipe r220 (key (sy220 ing504))) -(recipe r220 (key (sx220 ing65))) -(recipe r220 (key (sy220 ing505))) -(recipe r220 (key (sx220 ing66))) -(recipe r220 (key (sy220 ing506))) -(recipe r220 (key (sx220 ing67))) -(recipe r220 (key (sy220 ing507))) -(recipe r220 (key (sx220 ing68))) -(recipe r220 (key (sy220 ing508))) -(recipe r220 (key (sx220 ing69))) -(recipe r220 (key (sy220 ing509))) -(recipe r220 (key (sx220 ing70))) -(recipe r220 (key (sy220 ing510))) -(recipe r220 (key (sx220 ing71))) -(recipe r220 (key (sy220 ing511))) -(recipe r221 (numIngredients 2)) -(recipe r221 (result (id item221))) -(recipe r221 (pattern 0 sx221)) -(recipe r221 (pattern 1 sy221)) -(recipe r221 (key (sx221 ing63))) -(recipe r221 (key (sy221 ing505))) -(recipe r221 (key (sx221 ing64))) -(recipe r221 (key (sy221 ing506))) -(recipe r221 (key (sx221 ing65))) -(recipe r221 (key (sy221 ing507))) -(recipe r221 (key (sx221 ing66))) -(recipe r221 (key (sy221 ing508))) -(recipe r221 (key (sx221 ing67))) -(recipe r221 (key (sy221 ing509))) -(recipe r221 (key (sx221 ing68))) -(recipe r221 (key (sy221 ing510))) -(recipe r221 (key (sx221 ing69))) -(recipe r221 (key (sy221 ing511))) -(recipe r221 (key (sx221 ing70))) -(recipe r221 (key (sy221 ing512))) -(recipe r221 (key (sx221 ing71))) -(recipe r221 (key (sy221 ing513))) -(recipe r221 (key (sx221 ing72))) -(recipe r221 (key (sy221 ing514))) -(recipe r221 (key (sx221 ing73))) -(recipe r221 (key (sy221 ing515))) -(recipe r221 (key (sx221 ing74))) -(recipe r221 (key (sy221 ing516))) -(recipe r222 (numIngredients 2)) -(recipe r222 (result (id item222))) -(recipe r222 (pattern 0 sx222)) -(recipe r222 (pattern 1 sy222)) -(recipe r222 (key (sx222 ing66))) -(recipe r222 (key (sy222 ing510))) -(recipe r222 (key (sx222 ing67))) -(recipe r222 (key (sy222 ing511))) -(recipe r222 (key (sx222 ing68))) -(recipe r222 (key (sy222 ing512))) -(recipe r222 (key (sx222 ing69))) -(recipe r222 (key (sy222 ing513))) -(recipe r222 (key (sx222 ing70))) -(recipe r222 (key (sy222 ing514))) -(recipe r222 (key (sx222 ing71))) -(recipe r222 (key (sy222 ing515))) -(recipe r222 (key (sx222 ing72))) -(recipe r222 (key (sy222 ing516))) -(recipe r222 (key (sx222 ing73))) -(recipe r222 (key (sy222 ing517))) -(recipe r222 (key (sx222 ing74))) -(recipe r222 (key (sy222 ing518))) -(recipe r222 (key (sx222 ing75))) -(recipe r222 (key (sy222 ing519))) -(recipe r222 (key (sx222 ing76))) -(recipe r222 (key (sy222 ing520))) -(recipe r222 (key (sx222 ing77))) -(recipe r222 (key (sy222 ing521))) -(recipe r223 (numIngredients 2)) -(recipe r223 (result (id item223))) -(recipe r223 (pattern 0 sx223)) -(recipe r223 (pattern 1 sy223)) -(recipe r223 (key (sx223 ing69))) -(recipe r223 (key (sy223 ing515))) -(recipe r223 (key (sx223 ing70))) -(recipe r223 (key (sy223 ing516))) -(recipe r223 (key (sx223 ing71))) -(recipe r223 (key (sy223 ing517))) -(recipe r223 (key (sx223 ing72))) -(recipe r223 (key (sy223 ing518))) -(recipe r223 (key (sx223 ing73))) -(recipe r223 (key (sy223 ing519))) -(recipe r223 (key (sx223 ing74))) -(recipe r223 (key (sy223 ing520))) -(recipe r223 (key (sx223 ing75))) -(recipe r223 (key (sy223 ing521))) -(recipe r223 (key (sx223 ing76))) -(recipe r223 (key (sy223 ing522))) -(recipe r223 (key (sx223 ing77))) -(recipe r223 (key (sy223 ing523))) -(recipe r223 (key (sx223 ing78))) -(recipe r223 (key (sy223 ing524))) -(recipe r223 (key (sx223 ing79))) -(recipe r223 (key (sy223 ing525))) -(recipe r223 (key (sx223 ing80))) -(recipe r223 (key (sy223 ing526))) -(recipe r224 (numIngredients 2)) -(recipe r224 (result (id item224))) -(recipe r224 (pattern 0 sx224)) -(recipe r224 (pattern 1 sy224)) -(recipe r224 (key (sx224 ing72))) -(recipe r224 (key (sy224 ing520))) -(recipe r224 (key (sx224 ing73))) -(recipe r224 (key (sy224 ing521))) -(recipe r224 (key (sx224 ing74))) -(recipe r224 (key (sy224 ing522))) -(recipe r224 (key (sx224 ing75))) -(recipe r224 (key (sy224 ing523))) -(recipe r224 (key (sx224 ing76))) -(recipe r224 (key (sy224 ing524))) -(recipe r224 (key (sx224 ing77))) -(recipe r224 (key (sy224 ing525))) -(recipe r224 (key (sx224 ing78))) -(recipe r224 (key (sy224 ing526))) -(recipe r224 (key (sx224 ing79))) -(recipe r224 (key (sy224 ing527))) -(recipe r224 (key (sx224 ing80))) -(recipe r224 (key (sy224 ing528))) -(recipe r224 (key (sx224 ing81))) -(recipe r224 (key (sy224 ing529))) -(recipe r224 (key (sx224 ing82))) -(recipe r224 (key (sy224 ing530))) -(recipe r224 (key (sx224 ing83))) -(recipe r224 (key (sy224 ing531))) -(recipe r225 (numIngredients 2)) -(recipe r225 (result (id item225))) -(recipe r225 (pattern 0 sx225)) -(recipe r225 (pattern 1 sy225)) -(recipe r225 (key (sx225 ing75))) -(recipe r225 (key (sy225 ing525))) -(recipe r225 (key (sx225 ing76))) -(recipe r225 (key (sy225 ing526))) -(recipe r225 (key (sx225 ing77))) -(recipe r225 (key (sy225 ing527))) -(recipe r225 (key (sx225 ing78))) -(recipe r225 (key (sy225 ing528))) -(recipe r225 (key (sx225 ing79))) -(recipe r225 (key (sy225 ing529))) -(recipe r225 (key (sx225 ing80))) -(recipe r225 (key (sy225 ing530))) -(recipe r225 (key (sx225 ing81))) -(recipe r225 (key (sy225 ing531))) -(recipe r225 (key (sx225 ing82))) -(recipe r225 (key (sy225 ing532))) -(recipe r225 (key (sx225 ing83))) -(recipe r225 (key (sy225 ing533))) -(recipe r225 (key (sx225 ing84))) -(recipe r225 (key (sy225 ing534))) -(recipe r225 (key (sx225 ing85))) -(recipe r225 (key (sy225 ing535))) -(recipe r225 (key (sx225 ing86))) -(recipe r225 (key (sy225 ing536))) -(recipe r226 (numIngredients 2)) -(recipe r226 (result (id item226))) -(recipe r226 (pattern 0 sx226)) -(recipe r226 (pattern 1 sy226)) -(recipe r226 (key (sx226 ing78))) -(recipe r226 (key (sy226 ing530))) -(recipe r226 (key (sx226 ing79))) -(recipe r226 (key (sy226 ing531))) -(recipe r226 (key (sx226 ing80))) -(recipe r226 (key (sy226 ing532))) -(recipe r226 (key (sx226 ing81))) -(recipe r226 (key (sy226 ing533))) -(recipe r226 (key (sx226 ing82))) -(recipe r226 (key (sy226 ing534))) -(recipe r226 (key (sx226 ing83))) -(recipe r226 (key (sy226 ing535))) -(recipe r226 (key (sx226 ing84))) -(recipe r226 (key (sy226 ing536))) -(recipe r226 (key (sx226 ing85))) -(recipe r226 (key (sy226 ing537))) -(recipe r226 (key (sx226 ing86))) -(recipe r226 (key (sy226 ing538))) -(recipe r226 (key (sx226 ing87))) -(recipe r226 (key (sy226 ing539))) -(recipe r226 (key (sx226 ing88))) -(recipe r226 (key (sy226 ing540))) -(recipe r226 (key (sx226 ing89))) -(recipe r226 (key (sy226 ing541))) -(recipe r227 (numIngredients 2)) -(recipe r227 (result (id item227))) -(recipe r227 (pattern 0 sx227)) -(recipe r227 (pattern 1 sy227)) -(recipe r227 (key (sx227 ing81))) -(recipe r227 (key (sy227 ing535))) -(recipe r227 (key (sx227 ing82))) -(recipe r227 (key (sy227 ing536))) -(recipe r227 (key (sx227 ing83))) -(recipe r227 (key (sy227 ing537))) -(recipe r227 (key (sx227 ing84))) -(recipe r227 (key (sy227 ing538))) -(recipe r227 (key (sx227 ing85))) -(recipe r227 (key (sy227 ing539))) -(recipe r227 (key (sx227 ing86))) -(recipe r227 (key (sy227 ing540))) -(recipe r227 (key (sx227 ing87))) -(recipe r227 (key (sy227 ing541))) -(recipe r227 (key (sx227 ing88))) -(recipe r227 (key (sy227 ing542))) -(recipe r227 (key (sx227 ing89))) -(recipe r227 (key (sy227 ing543))) -(recipe r227 (key (sx227 ing90))) -(recipe r227 (key (sy227 ing544))) -(recipe r227 (key (sx227 ing91))) -(recipe r227 (key (sy227 ing545))) -(recipe r227 (key (sx227 ing92))) -(recipe r227 (key (sy227 ing546))) -(recipe r228 (numIngredients 2)) -(recipe r228 (result (id item228))) -(recipe r228 (pattern 0 sx228)) -(recipe r228 (pattern 1 sy228)) -(recipe r228 (key (sx228 ing84))) -(recipe r228 (key (sy228 ing540))) -(recipe r228 (key (sx228 ing85))) -(recipe r228 (key (sy228 ing541))) -(recipe r228 (key (sx228 ing86))) -(recipe r228 (key (sy228 ing542))) -(recipe r228 (key (sx228 ing87))) -(recipe r228 (key (sy228 ing543))) -(recipe r228 (key (sx228 ing88))) -(recipe r228 (key (sy228 ing544))) -(recipe r228 (key (sx228 ing89))) -(recipe r228 (key (sy228 ing545))) -(recipe r228 (key (sx228 ing90))) -(recipe r228 (key (sy228 ing546))) -(recipe r228 (key (sx228 ing91))) -(recipe r228 (key (sy228 ing547))) -(recipe r228 (key (sx228 ing92))) -(recipe r228 (key (sy228 ing548))) -(recipe r228 (key (sx228 ing93))) -(recipe r228 (key (sy228 ing549))) -(recipe r228 (key (sx228 ing94))) -(recipe r228 (key (sy228 ing550))) -(recipe r228 (key (sx228 ing95))) -(recipe r228 (key (sy228 ing551))) -(recipe r229 (numIngredients 2)) -(recipe r229 (result (id item229))) -(recipe r229 (pattern 0 sx229)) -(recipe r229 (pattern 1 sy229)) -(recipe r229 (key (sx229 ing87))) -(recipe r229 (key (sy229 ing545))) -(recipe r229 (key (sx229 ing88))) -(recipe r229 (key (sy229 ing546))) -(recipe r229 (key (sx229 ing89))) -(recipe r229 (key (sy229 ing547))) -(recipe r229 (key (sx229 ing90))) -(recipe r229 (key (sy229 ing548))) -(recipe r229 (key (sx229 ing91))) -(recipe r229 (key (sy229 ing549))) -(recipe r229 (key (sx229 ing92))) -(recipe r229 (key (sy229 ing550))) -(recipe r229 (key (sx229 ing93))) -(recipe r229 (key (sy229 ing551))) -(recipe r229 (key (sx229 ing94))) -(recipe r229 (key (sy229 ing552))) -(recipe r229 (key (sx229 ing95))) -(recipe r229 (key (sy229 ing553))) -(recipe r229 (key (sx229 ing96))) -(recipe r229 (key (sy229 ing554))) -(recipe r229 (key (sx229 ing97))) -(recipe r229 (key (sy229 ing555))) -(recipe r229 (key (sx229 ing98))) -(recipe r229 (key (sy229 ing556))) -(recipe r230 (numIngredients 2)) -(recipe r230 (result (id item230))) -(recipe r230 (pattern 0 sx230)) -(recipe r230 (pattern 1 sy230)) -(recipe r230 (key (sx230 ing90))) -(recipe r230 (key (sy230 ing550))) -(recipe r230 (key (sx230 ing91))) -(recipe r230 (key (sy230 ing551))) -(recipe r230 (key (sx230 ing92))) -(recipe r230 (key (sy230 ing552))) -(recipe r230 (key (sx230 ing93))) -(recipe r230 (key (sy230 ing553))) -(recipe r230 (key (sx230 ing94))) -(recipe r230 (key (sy230 ing554))) -(recipe r230 (key (sx230 ing95))) -(recipe r230 (key (sy230 ing555))) -(recipe r230 (key (sx230 ing96))) -(recipe r230 (key (sy230 ing556))) -(recipe r230 (key (sx230 ing97))) -(recipe r230 (key (sy230 ing557))) -(recipe r230 (key (sx230 ing98))) -(recipe r230 (key (sy230 ing558))) -(recipe r230 (key (sx230 ing99))) -(recipe r230 (key (sy230 ing559))) -(recipe r230 (key (sx230 ing100))) -(recipe r230 (key (sy230 ing560))) -(recipe r230 (key (sx230 ing101))) -(recipe r230 (key (sy230 ing561))) -(recipe r231 (numIngredients 2)) -(recipe r231 (result (id item231))) -(recipe r231 (pattern 0 sx231)) -(recipe r231 (pattern 1 sy231)) -(recipe r231 (key (sx231 ing93))) -(recipe r231 (key (sy231 ing555))) -(recipe r231 (key (sx231 ing94))) -(recipe r231 (key (sy231 ing556))) -(recipe r231 (key (sx231 ing95))) -(recipe r231 (key (sy231 ing557))) -(recipe r231 (key (sx231 ing96))) -(recipe r231 (key (sy231 ing558))) -(recipe r231 (key (sx231 ing97))) -(recipe r231 (key (sy231 ing559))) -(recipe r231 (key (sx231 ing98))) -(recipe r231 (key (sy231 ing560))) -(recipe r231 (key (sx231 ing99))) -(recipe r231 (key (sy231 ing561))) -(recipe r231 (key (sx231 ing100))) -(recipe r231 (key (sy231 ing562))) -(recipe r231 (key (sx231 ing101))) -(recipe r231 (key (sy231 ing563))) -(recipe r231 (key (sx231 ing102))) -(recipe r231 (key (sy231 ing564))) -(recipe r231 (key (sx231 ing103))) -(recipe r231 (key (sy231 ing565))) -(recipe r231 (key (sx231 ing104))) -(recipe r231 (key (sy231 ing566))) -(recipe r232 (numIngredients 2)) -(recipe r232 (result (id item232))) -(recipe r232 (pattern 0 sx232)) -(recipe r232 (pattern 1 sy232)) -(recipe r232 (key (sx232 ing96))) -(recipe r232 (key (sy232 ing560))) -(recipe r232 (key (sx232 ing97))) -(recipe r232 (key (sy232 ing561))) -(recipe r232 (key (sx232 ing98))) -(recipe r232 (key (sy232 ing562))) -(recipe r232 (key (sx232 ing99))) -(recipe r232 (key (sy232 ing563))) -(recipe r232 (key (sx232 ing100))) -(recipe r232 (key (sy232 ing564))) -(recipe r232 (key (sx232 ing101))) -(recipe r232 (key (sy232 ing565))) -(recipe r232 (key (sx232 ing102))) -(recipe r232 (key (sy232 ing566))) -(recipe r232 (key (sx232 ing103))) -(recipe r232 (key (sy232 ing567))) -(recipe r232 (key (sx232 ing104))) -(recipe r232 (key (sy232 ing568))) -(recipe r232 (key (sx232 ing105))) -(recipe r232 (key (sy232 ing569))) -(recipe r232 (key (sx232 ing106))) -(recipe r232 (key (sy232 ing570))) -(recipe r232 (key (sx232 ing107))) -(recipe r232 (key (sy232 ing571))) -(recipe r233 (numIngredients 2)) -(recipe r233 (result (id item233))) -(recipe r233 (pattern 0 sx233)) -(recipe r233 (pattern 1 sy233)) -(recipe r233 (key (sx233 ing99))) -(recipe r233 (key (sy233 ing565))) -(recipe r233 (key (sx233 ing100))) -(recipe r233 (key (sy233 ing566))) -(recipe r233 (key (sx233 ing101))) -(recipe r233 (key (sy233 ing567))) -(recipe r233 (key (sx233 ing102))) -(recipe r233 (key (sy233 ing568))) -(recipe r233 (key (sx233 ing103))) -(recipe r233 (key (sy233 ing569))) -(recipe r233 (key (sx233 ing104))) -(recipe r233 (key (sy233 ing570))) -(recipe r233 (key (sx233 ing105))) -(recipe r233 (key (sy233 ing571))) -(recipe r233 (key (sx233 ing106))) -(recipe r233 (key (sy233 ing572))) -(recipe r233 (key (sx233 ing107))) -(recipe r233 (key (sy233 ing573))) -(recipe r233 (key (sx233 ing108))) -(recipe r233 (key (sy233 ing574))) -(recipe r233 (key (sx233 ing109))) -(recipe r233 (key (sy233 ing575))) -(recipe r233 (key (sx233 ing110))) -(recipe r233 (key (sy233 ing576))) -(recipe r234 (numIngredients 2)) -(recipe r234 (result (id item234))) -(recipe r234 (pattern 0 sx234)) -(recipe r234 (pattern 1 sy234)) -(recipe r234 (key (sx234 ing102))) -(recipe r234 (key (sy234 ing570))) -(recipe r234 (key (sx234 ing103))) -(recipe r234 (key (sy234 ing571))) -(recipe r234 (key (sx234 ing104))) -(recipe r234 (key (sy234 ing572))) -(recipe r234 (key (sx234 ing105))) -(recipe r234 (key (sy234 ing573))) -(recipe r234 (key (sx234 ing106))) -(recipe r234 (key (sy234 ing574))) -(recipe r234 (key (sx234 ing107))) -(recipe r234 (key (sy234 ing575))) -(recipe r234 (key (sx234 ing108))) -(recipe r234 (key (sy234 ing576))) -(recipe r234 (key (sx234 ing109))) -(recipe r234 (key (sy234 ing577))) -(recipe r234 (key (sx234 ing110))) -(recipe r234 (key (sy234 ing578))) -(recipe r234 (key (sx234 ing111))) -(recipe r234 (key (sy234 ing579))) -(recipe r234 (key (sx234 ing112))) -(recipe r234 (key (sy234 ing580))) -(recipe r234 (key (sx234 ing113))) -(recipe r234 (key (sy234 ing581))) -(recipe r235 (numIngredients 2)) -(recipe r235 (result (id item235))) -(recipe r235 (pattern 0 sx235)) -(recipe r235 (pattern 1 sy235)) -(recipe r235 (key (sx235 ing105))) -(recipe r235 (key (sy235 ing575))) -(recipe r235 (key (sx235 ing106))) -(recipe r235 (key (sy235 ing576))) -(recipe r235 (key (sx235 ing107))) -(recipe r235 (key (sy235 ing577))) -(recipe r235 (key (sx235 ing108))) -(recipe r235 (key (sy235 ing578))) -(recipe r235 (key (sx235 ing109))) -(recipe r235 (key (sy235 ing579))) -(recipe r235 (key (sx235 ing110))) -(recipe r235 (key (sy235 ing580))) -(recipe r235 (key (sx235 ing111))) -(recipe r235 (key (sy235 ing581))) -(recipe r235 (key (sx235 ing112))) -(recipe r235 (key (sy235 ing582))) -(recipe r235 (key (sx235 ing113))) -(recipe r235 (key (sy235 ing583))) -(recipe r235 (key (sx235 ing114))) -(recipe r235 (key (sy235 ing584))) -(recipe r235 (key (sx235 ing115))) -(recipe r235 (key (sy235 ing585))) -(recipe r235 (key (sx235 ing116))) -(recipe r235 (key (sy235 ing586))) -(recipe r236 (numIngredients 2)) -(recipe r236 (result (id item236))) -(recipe r236 (pattern 0 sx236)) -(recipe r236 (pattern 1 sy236)) -(recipe r236 (key (sx236 ing108))) -(recipe r236 (key (sy236 ing580))) -(recipe r236 (key (sx236 ing109))) -(recipe r236 (key (sy236 ing581))) -(recipe r236 (key (sx236 ing110))) -(recipe r236 (key (sy236 ing582))) -(recipe r236 (key (sx236 ing111))) -(recipe r236 (key (sy236 ing583))) -(recipe r236 (key (sx236 ing112))) -(recipe r236 (key (sy236 ing584))) -(recipe r236 (key (sx236 ing113))) -(recipe r236 (key (sy236 ing585))) -(recipe r236 (key (sx236 ing114))) -(recipe r236 (key (sy236 ing586))) -(recipe r236 (key (sx236 ing115))) -(recipe r236 (key (sy236 ing587))) -(recipe r236 (key (sx236 ing116))) -(recipe r236 (key (sy236 ing588))) -(recipe r236 (key (sx236 ing117))) -(recipe r236 (key (sy236 ing589))) -(recipe r236 (key (sx236 ing118))) -(recipe r236 (key (sy236 ing590))) -(recipe r236 (key (sx236 ing119))) -(recipe r236 (key (sy236 ing591))) -(recipe r237 (numIngredients 2)) -(recipe r237 (result (id item237))) -(recipe r237 (pattern 0 sx237)) -(recipe r237 (pattern 1 sy237)) -(recipe r237 (key (sx237 ing111))) -(recipe r237 (key (sy237 ing585))) -(recipe r237 (key (sx237 ing112))) -(recipe r237 (key (sy237 ing586))) -(recipe r237 (key (sx237 ing113))) -(recipe r237 (key (sy237 ing587))) -(recipe r237 (key (sx237 ing114))) -(recipe r237 (key (sy237 ing588))) -(recipe r237 (key (sx237 ing115))) -(recipe r237 (key (sy237 ing589))) -(recipe r237 (key (sx237 ing116))) -(recipe r237 (key (sy237 ing590))) -(recipe r237 (key (sx237 ing117))) -(recipe r237 (key (sy237 ing591))) -(recipe r237 (key (sx237 ing118))) -(recipe r237 (key (sy237 ing592))) -(recipe r237 (key (sx237 ing119))) -(recipe r237 (key (sy237 ing593))) -(recipe r237 (key (sx237 ing120))) -(recipe r237 (key (sy237 ing594))) -(recipe r237 (key (sx237 ing121))) -(recipe r237 (key (sy237 ing595))) -(recipe r237 (key (sx237 ing122))) -(recipe r237 (key (sy237 ing596))) -(recipe r238 (numIngredients 2)) -(recipe r238 (result (id item238))) -(recipe r238 (pattern 0 sx238)) -(recipe r238 (pattern 1 sy238)) -(recipe r238 (key (sx238 ing114))) -(recipe r238 (key (sy238 ing590))) -(recipe r238 (key (sx238 ing115))) -(recipe r238 (key (sy238 ing591))) -(recipe r238 (key (sx238 ing116))) -(recipe r238 (key (sy238 ing592))) -(recipe r238 (key (sx238 ing117))) -(recipe r238 (key (sy238 ing593))) -(recipe r238 (key (sx238 ing118))) -(recipe r238 (key (sy238 ing594))) -(recipe r238 (key (sx238 ing119))) -(recipe r238 (key (sy238 ing595))) -(recipe r238 (key (sx238 ing120))) -(recipe r238 (key (sy238 ing596))) -(recipe r238 (key (sx238 ing121))) -(recipe r238 (key (sy238 ing597))) -(recipe r238 (key (sx238 ing122))) -(recipe r238 (key (sy238 ing598))) -(recipe r238 (key (sx238 ing123))) -(recipe r238 (key (sy238 ing599))) -(recipe r238 (key (sx238 ing124))) -(recipe r238 (key (sy238 ing0))) -(recipe r238 (key (sx238 ing125))) -(recipe r238 (key (sy238 ing1))) -(recipe r239 (numIngredients 2)) -(recipe r239 (result (id item239))) -(recipe r239 (pattern 0 sx239)) -(recipe r239 (pattern 1 sy239)) -(recipe r239 (key (sx239 ing117))) -(recipe r239 (key (sy239 ing595))) -(recipe r239 (key (sx239 ing118))) -(recipe r239 (key (sy239 ing596))) -(recipe r239 (key (sx239 ing119))) -(recipe r239 (key (sy239 ing597))) -(recipe r239 (key (sx239 ing120))) -(recipe r239 (key (sy239 ing598))) -(recipe r239 (key (sx239 ing121))) -(recipe r239 (key (sy239 ing599))) -(recipe r239 (key (sx239 ing122))) -(recipe r239 (key (sy239 ing0))) -(recipe r239 (key (sx239 ing123))) -(recipe r239 (key (sy239 ing1))) -(recipe r239 (key (sx239 ing124))) -(recipe r239 (key (sy239 ing2))) -(recipe r239 (key (sx239 ing125))) -(recipe r239 (key (sy239 ing3))) -(recipe r239 (key (sx239 ing126))) -(recipe r239 (key (sy239 ing4))) -(recipe r239 (key (sx239 ing127))) -(recipe r239 (key (sy239 ing5))) -(recipe r239 (key (sx239 ing128))) -(recipe r239 (key (sy239 ing6))) -(recipe r240 (numIngredients 2)) -(recipe r240 (result (id item240))) -(recipe r240 (pattern 0 sx240)) -(recipe r240 (pattern 1 sy240)) -(recipe r240 (key (sx240 ing120))) -(recipe r240 (key (sy240 ing0))) -(recipe r240 (key (sx240 ing121))) -(recipe r240 (key (sy240 ing1))) -(recipe r240 (key (sx240 ing122))) -(recipe r240 (key (sy240 ing2))) -(recipe r240 (key (sx240 ing123))) -(recipe r240 (key (sy240 ing3))) -(recipe r240 (key (sx240 ing124))) -(recipe r240 (key (sy240 ing4))) -(recipe r240 (key (sx240 ing125))) -(recipe r240 (key (sy240 ing5))) -(recipe r240 (key (sx240 ing126))) -(recipe r240 (key (sy240 ing6))) -(recipe r240 (key (sx240 ing127))) -(recipe r240 (key (sy240 ing7))) -(recipe r240 (key (sx240 ing128))) -(recipe r240 (key (sy240 ing8))) -(recipe r240 (key (sx240 ing129))) -(recipe r240 (key (sy240 ing9))) -(recipe r240 (key (sx240 ing130))) -(recipe r240 (key (sy240 ing10))) -(recipe r240 (key (sx240 ing131))) -(recipe r240 (key (sy240 ing11))) -(recipe r241 (numIngredients 2)) -(recipe r241 (result (id item241))) -(recipe r241 (pattern 0 sx241)) -(recipe r241 (pattern 1 sy241)) -(recipe r241 (key (sx241 ing123))) -(recipe r241 (key (sy241 ing5))) -(recipe r241 (key (sx241 ing124))) -(recipe r241 (key (sy241 ing6))) -(recipe r241 (key (sx241 ing125))) -(recipe r241 (key (sy241 ing7))) -(recipe r241 (key (sx241 ing126))) -(recipe r241 (key (sy241 ing8))) -(recipe r241 (key (sx241 ing127))) -(recipe r241 (key (sy241 ing9))) -(recipe r241 (key (sx241 ing128))) -(recipe r241 (key (sy241 ing10))) -(recipe r241 (key (sx241 ing129))) -(recipe r241 (key (sy241 ing11))) -(recipe r241 (key (sx241 ing130))) -(recipe r241 (key (sy241 ing12))) -(recipe r241 (key (sx241 ing131))) -(recipe r241 (key (sy241 ing13))) -(recipe r241 (key (sx241 ing132))) -(recipe r241 (key (sy241 ing14))) -(recipe r241 (key (sx241 ing133))) -(recipe r241 (key (sy241 ing15))) -(recipe r241 (key (sx241 ing134))) -(recipe r241 (key (sy241 ing16))) -(recipe r242 (numIngredients 2)) -(recipe r242 (result (id item242))) -(recipe r242 (pattern 0 sx242)) -(recipe r242 (pattern 1 sy242)) -(recipe r242 (key (sx242 ing126))) -(recipe r242 (key (sy242 ing10))) -(recipe r242 (key (sx242 ing127))) -(recipe r242 (key (sy242 ing11))) -(recipe r242 (key (sx242 ing128))) -(recipe r242 (key (sy242 ing12))) -(recipe r242 (key (sx242 ing129))) -(recipe r242 (key (sy242 ing13))) -(recipe r242 (key (sx242 ing130))) -(recipe r242 (key (sy242 ing14))) -(recipe r242 (key (sx242 ing131))) -(recipe r242 (key (sy242 ing15))) -(recipe r242 (key (sx242 ing132))) -(recipe r242 (key (sy242 ing16))) -(recipe r242 (key (sx242 ing133))) -(recipe r242 (key (sy242 ing17))) -(recipe r242 (key (sx242 ing134))) -(recipe r242 (key (sy242 ing18))) -(recipe r242 (key (sx242 ing135))) -(recipe r242 (key (sy242 ing19))) -(recipe r242 (key (sx242 ing136))) -(recipe r242 (key (sy242 ing20))) -(recipe r242 (key (sx242 ing137))) -(recipe r242 (key (sy242 ing21))) -(recipe r243 (numIngredients 2)) -(recipe r243 (result (id item243))) -(recipe r243 (pattern 0 sx243)) -(recipe r243 (pattern 1 sy243)) -(recipe r243 (key (sx243 ing129))) -(recipe r243 (key (sy243 ing15))) -(recipe r243 (key (sx243 ing130))) -(recipe r243 (key (sy243 ing16))) -(recipe r243 (key (sx243 ing131))) -(recipe r243 (key (sy243 ing17))) -(recipe r243 (key (sx243 ing132))) -(recipe r243 (key (sy243 ing18))) -(recipe r243 (key (sx243 ing133))) -(recipe r243 (key (sy243 ing19))) -(recipe r243 (key (sx243 ing134))) -(recipe r243 (key (sy243 ing20))) -(recipe r243 (key (sx243 ing135))) -(recipe r243 (key (sy243 ing21))) -(recipe r243 (key (sx243 ing136))) -(recipe r243 (key (sy243 ing22))) -(recipe r243 (key (sx243 ing137))) -(recipe r243 (key (sy243 ing23))) -(recipe r243 (key (sx243 ing138))) -(recipe r243 (key (sy243 ing24))) -(recipe r243 (key (sx243 ing139))) -(recipe r243 (key (sy243 ing25))) -(recipe r243 (key (sx243 ing140))) -(recipe r243 (key (sy243 ing26))) -(recipe r244 (numIngredients 2)) -(recipe r244 (result (id item244))) -(recipe r244 (pattern 0 sx244)) -(recipe r244 (pattern 1 sy244)) -(recipe r244 (key (sx244 ing132))) -(recipe r244 (key (sy244 ing20))) -(recipe r244 (key (sx244 ing133))) -(recipe r244 (key (sy244 ing21))) -(recipe r244 (key (sx244 ing134))) -(recipe r244 (key (sy244 ing22))) -(recipe r244 (key (sx244 ing135))) -(recipe r244 (key (sy244 ing23))) -(recipe r244 (key (sx244 ing136))) -(recipe r244 (key (sy244 ing24))) -(recipe r244 (key (sx244 ing137))) -(recipe r244 (key (sy244 ing25))) -(recipe r244 (key (sx244 ing138))) -(recipe r244 (key (sy244 ing26))) -(recipe r244 (key (sx244 ing139))) -(recipe r244 (key (sy244 ing27))) -(recipe r244 (key (sx244 ing140))) -(recipe r244 (key (sy244 ing28))) -(recipe r244 (key (sx244 ing141))) -(recipe r244 (key (sy244 ing29))) -(recipe r244 (key (sx244 ing142))) -(recipe r244 (key (sy244 ing30))) -(recipe r244 (key (sx244 ing143))) -(recipe r244 (key (sy244 ing31))) -(recipe r245 (numIngredients 2)) -(recipe r245 (result (id item245))) -(recipe r245 (pattern 0 sx245)) -(recipe r245 (pattern 1 sy245)) -(recipe r245 (key (sx245 ing135))) -(recipe r245 (key (sy245 ing25))) -(recipe r245 (key (sx245 ing136))) -(recipe r245 (key (sy245 ing26))) -(recipe r245 (key (sx245 ing137))) -(recipe r245 (key (sy245 ing27))) -(recipe r245 (key (sx245 ing138))) -(recipe r245 (key (sy245 ing28))) -(recipe r245 (key (sx245 ing139))) -(recipe r245 (key (sy245 ing29))) -(recipe r245 (key (sx245 ing140))) -(recipe r245 (key (sy245 ing30))) -(recipe r245 (key (sx245 ing141))) -(recipe r245 (key (sy245 ing31))) -(recipe r245 (key (sx245 ing142))) -(recipe r245 (key (sy245 ing32))) -(recipe r245 (key (sx245 ing143))) -(recipe r245 (key (sy245 ing33))) -(recipe r245 (key (sx245 ing144))) -(recipe r245 (key (sy245 ing34))) -(recipe r245 (key (sx245 ing145))) -(recipe r245 (key (sy245 ing35))) -(recipe r245 (key (sx245 ing146))) -(recipe r245 (key (sy245 ing36))) -(recipe r246 (numIngredients 2)) -(recipe r246 (result (id item246))) -(recipe r246 (pattern 0 sx246)) -(recipe r246 (pattern 1 sy246)) -(recipe r246 (key (sx246 ing138))) -(recipe r246 (key (sy246 ing30))) -(recipe r246 (key (sx246 ing139))) -(recipe r246 (key (sy246 ing31))) -(recipe r246 (key (sx246 ing140))) -(recipe r246 (key (sy246 ing32))) -(recipe r246 (key (sx246 ing141))) -(recipe r246 (key (sy246 ing33))) -(recipe r246 (key (sx246 ing142))) -(recipe r246 (key (sy246 ing34))) -(recipe r246 (key (sx246 ing143))) -(recipe r246 (key (sy246 ing35))) -(recipe r246 (key (sx246 ing144))) -(recipe r246 (key (sy246 ing36))) -(recipe r246 (key (sx246 ing145))) -(recipe r246 (key (sy246 ing37))) -(recipe r246 (key (sx246 ing146))) -(recipe r246 (key (sy246 ing38))) -(recipe r246 (key (sx246 ing147))) -(recipe r246 (key (sy246 ing39))) -(recipe r246 (key (sx246 ing148))) -(recipe r246 (key (sy246 ing40))) -(recipe r246 (key (sx246 ing149))) -(recipe r246 (key (sy246 ing41))) -(recipe r247 (numIngredients 2)) -(recipe r247 (result (id item247))) -(recipe r247 (pattern 0 sx247)) -(recipe r247 (pattern 1 sy247)) -(recipe r247 (key (sx247 ing141))) -(recipe r247 (key (sy247 ing35))) -(recipe r247 (key (sx247 ing142))) -(recipe r247 (key (sy247 ing36))) -(recipe r247 (key (sx247 ing143))) -(recipe r247 (key (sy247 ing37))) -(recipe r247 (key (sx247 ing144))) -(recipe r247 (key (sy247 ing38))) -(recipe r247 (key (sx247 ing145))) -(recipe r247 (key (sy247 ing39))) -(recipe r247 (key (sx247 ing146))) -(recipe r247 (key (sy247 ing40))) -(recipe r247 (key (sx247 ing147))) -(recipe r247 (key (sy247 ing41))) -(recipe r247 (key (sx247 ing148))) -(recipe r247 (key (sy247 ing42))) -(recipe r247 (key (sx247 ing149))) -(recipe r247 (key (sy247 ing43))) -(recipe r247 (key (sx247 ing150))) -(recipe r247 (key (sy247 ing44))) -(recipe r247 (key (sx247 ing151))) -(recipe r247 (key (sy247 ing45))) -(recipe r247 (key (sx247 ing152))) -(recipe r247 (key (sy247 ing46))) -(recipe r248 (numIngredients 2)) -(recipe r248 (result (id item248))) -(recipe r248 (pattern 0 sx248)) -(recipe r248 (pattern 1 sy248)) -(recipe r248 (key (sx248 ing144))) -(recipe r248 (key (sy248 ing40))) -(recipe r248 (key (sx248 ing145))) -(recipe r248 (key (sy248 ing41))) -(recipe r248 (key (sx248 ing146))) -(recipe r248 (key (sy248 ing42))) -(recipe r248 (key (sx248 ing147))) -(recipe r248 (key (sy248 ing43))) -(recipe r248 (key (sx248 ing148))) -(recipe r248 (key (sy248 ing44))) -(recipe r248 (key (sx248 ing149))) -(recipe r248 (key (sy248 ing45))) -(recipe r248 (key (sx248 ing150))) -(recipe r248 (key (sy248 ing46))) -(recipe r248 (key (sx248 ing151))) -(recipe r248 (key (sy248 ing47))) -(recipe r248 (key (sx248 ing152))) -(recipe r248 (key (sy248 ing48))) -(recipe r248 (key (sx248 ing153))) -(recipe r248 (key (sy248 ing49))) -(recipe r248 (key (sx248 ing154))) -(recipe r248 (key (sy248 ing50))) -(recipe r248 (key (sx248 ing155))) -(recipe r248 (key (sy248 ing51))) -(recipe r249 (numIngredients 2)) -(recipe r249 (result (id item249))) -(recipe r249 (pattern 0 sx249)) -(recipe r249 (pattern 1 sy249)) -(recipe r249 (key (sx249 ing147))) -(recipe r249 (key (sy249 ing45))) -(recipe r249 (key (sx249 ing148))) -(recipe r249 (key (sy249 ing46))) -(recipe r249 (key (sx249 ing149))) -(recipe r249 (key (sy249 ing47))) -(recipe r249 (key (sx249 ing150))) -(recipe r249 (key (sy249 ing48))) -(recipe r249 (key (sx249 ing151))) -(recipe r249 (key (sy249 ing49))) -(recipe r249 (key (sx249 ing152))) -(recipe r249 (key (sy249 ing50))) -(recipe r249 (key (sx249 ing153))) -(recipe r249 (key (sy249 ing51))) -(recipe r249 (key (sx249 ing154))) -(recipe r249 (key (sy249 ing52))) -(recipe r249 (key (sx249 ing155))) -(recipe r249 (key (sy249 ing53))) -(recipe r249 (key (sx249 ing156))) -(recipe r249 (key (sy249 ing54))) -(recipe r249 (key (sx249 ing157))) -(recipe r249 (key (sy249 ing55))) -(recipe r249 (key (sx249 ing158))) -(recipe r249 (key (sy249 ing56))) -(recipe r250 (numIngredients 2)) -(recipe r250 (result (id item250))) -(recipe r250 (pattern 0 sx250)) -(recipe r250 (pattern 1 sy250)) -(recipe r250 (key (sx250 ing150))) -(recipe r250 (key (sy250 ing50))) -(recipe r250 (key (sx250 ing151))) -(recipe r250 (key (sy250 ing51))) -(recipe r250 (key (sx250 ing152))) -(recipe r250 (key (sy250 ing52))) -(recipe r250 (key (sx250 ing153))) -(recipe r250 (key (sy250 ing53))) -(recipe r250 (key (sx250 ing154))) -(recipe r250 (key (sy250 ing54))) -(recipe r250 (key (sx250 ing155))) -(recipe r250 (key (sy250 ing55))) -(recipe r250 (key (sx250 ing156))) -(recipe r250 (key (sy250 ing56))) -(recipe r250 (key (sx250 ing157))) -(recipe r250 (key (sy250 ing57))) -(recipe r250 (key (sx250 ing158))) -(recipe r250 (key (sy250 ing58))) -(recipe r250 (key (sx250 ing159))) -(recipe r250 (key (sy250 ing59))) -(recipe r250 (key (sx250 ing160))) -(recipe r250 (key (sy250 ing60))) -(recipe r250 (key (sx250 ing161))) -(recipe r250 (key (sy250 ing61))) -(recipe r251 (numIngredients 2)) -(recipe r251 (result (id item251))) -(recipe r251 (pattern 0 sx251)) -(recipe r251 (pattern 1 sy251)) -(recipe r251 (key (sx251 ing153))) -(recipe r251 (key (sy251 ing55))) -(recipe r251 (key (sx251 ing154))) -(recipe r251 (key (sy251 ing56))) -(recipe r251 (key (sx251 ing155))) -(recipe r251 (key (sy251 ing57))) -(recipe r251 (key (sx251 ing156))) -(recipe r251 (key (sy251 ing58))) -(recipe r251 (key (sx251 ing157))) -(recipe r251 (key (sy251 ing59))) -(recipe r251 (key (sx251 ing158))) -(recipe r251 (key (sy251 ing60))) -(recipe r251 (key (sx251 ing159))) -(recipe r251 (key (sy251 ing61))) -(recipe r251 (key (sx251 ing160))) -(recipe r251 (key (sy251 ing62))) -(recipe r251 (key (sx251 ing161))) -(recipe r251 (key (sy251 ing63))) -(recipe r251 (key (sx251 ing162))) -(recipe r251 (key (sy251 ing64))) -(recipe r251 (key (sx251 ing163))) -(recipe r251 (key (sy251 ing65))) -(recipe r251 (key (sx251 ing164))) -(recipe r251 (key (sy251 ing66))) -(recipe r252 (numIngredients 2)) -(recipe r252 (result (id item252))) -(recipe r252 (pattern 0 sx252)) -(recipe r252 (pattern 1 sy252)) -(recipe r252 (key (sx252 ing156))) -(recipe r252 (key (sy252 ing60))) -(recipe r252 (key (sx252 ing157))) -(recipe r252 (key (sy252 ing61))) -(recipe r252 (key (sx252 ing158))) -(recipe r252 (key (sy252 ing62))) -(recipe r252 (key (sx252 ing159))) -(recipe r252 (key (sy252 ing63))) -(recipe r252 (key (sx252 ing160))) -(recipe r252 (key (sy252 ing64))) -(recipe r252 (key (sx252 ing161))) -(recipe r252 (key (sy252 ing65))) -(recipe r252 (key (sx252 ing162))) -(recipe r252 (key (sy252 ing66))) -(recipe r252 (key (sx252 ing163))) -(recipe r252 (key (sy252 ing67))) -(recipe r252 (key (sx252 ing164))) -(recipe r252 (key (sy252 ing68))) -(recipe r252 (key (sx252 ing165))) -(recipe r252 (key (sy252 ing69))) -(recipe r252 (key (sx252 ing166))) -(recipe r252 (key (sy252 ing70))) -(recipe r252 (key (sx252 ing167))) -(recipe r252 (key (sy252 ing71))) -(recipe r253 (numIngredients 2)) -(recipe r253 (result (id item253))) -(recipe r253 (pattern 0 sx253)) -(recipe r253 (pattern 1 sy253)) -(recipe r253 (key (sx253 ing159))) -(recipe r253 (key (sy253 ing65))) -(recipe r253 (key (sx253 ing160))) -(recipe r253 (key (sy253 ing66))) -(recipe r253 (key (sx253 ing161))) -(recipe r253 (key (sy253 ing67))) -(recipe r253 (key (sx253 ing162))) -(recipe r253 (key (sy253 ing68))) -(recipe r253 (key (sx253 ing163))) -(recipe r253 (key (sy253 ing69))) -(recipe r253 (key (sx253 ing164))) -(recipe r253 (key (sy253 ing70))) -(recipe r253 (key (sx253 ing165))) -(recipe r253 (key (sy253 ing71))) -(recipe r253 (key (sx253 ing166))) -(recipe r253 (key (sy253 ing72))) -(recipe r253 (key (sx253 ing167))) -(recipe r253 (key (sy253 ing73))) -(recipe r253 (key (sx253 ing168))) -(recipe r253 (key (sy253 ing74))) -(recipe r253 (key (sx253 ing169))) -(recipe r253 (key (sy253 ing75))) -(recipe r253 (key (sx253 ing170))) -(recipe r253 (key (sy253 ing76))) -(recipe r254 (numIngredients 2)) -(recipe r254 (result (id item254))) -(recipe r254 (pattern 0 sx254)) -(recipe r254 (pattern 1 sy254)) -(recipe r254 (key (sx254 ing162))) -(recipe r254 (key (sy254 ing70))) -(recipe r254 (key (sx254 ing163))) -(recipe r254 (key (sy254 ing71))) -(recipe r254 (key (sx254 ing164))) -(recipe r254 (key (sy254 ing72))) -(recipe r254 (key (sx254 ing165))) -(recipe r254 (key (sy254 ing73))) -(recipe r254 (key (sx254 ing166))) -(recipe r254 (key (sy254 ing74))) -(recipe r254 (key (sx254 ing167))) -(recipe r254 (key (sy254 ing75))) -(recipe r254 (key (sx254 ing168))) -(recipe r254 (key (sy254 ing76))) -(recipe r254 (key (sx254 ing169))) -(recipe r254 (key (sy254 ing77))) -(recipe r254 (key (sx254 ing170))) -(recipe r254 (key (sy254 ing78))) -(recipe r254 (key (sx254 ing171))) -(recipe r254 (key (sy254 ing79))) -(recipe r254 (key (sx254 ing172))) -(recipe r254 (key (sy254 ing80))) -(recipe r254 (key (sx254 ing173))) -(recipe r254 (key (sy254 ing81))) -(recipe r255 (numIngredients 2)) -(recipe r255 (result (id item255))) -(recipe r255 (pattern 0 sx255)) -(recipe r255 (pattern 1 sy255)) -(recipe r255 (key (sx255 ing165))) -(recipe r255 (key (sy255 ing75))) -(recipe r255 (key (sx255 ing166))) -(recipe r255 (key (sy255 ing76))) -(recipe r255 (key (sx255 ing167))) -(recipe r255 (key (sy255 ing77))) -(recipe r255 (key (sx255 ing168))) -(recipe r255 (key (sy255 ing78))) -(recipe r255 (key (sx255 ing169))) -(recipe r255 (key (sy255 ing79))) -(recipe r255 (key (sx255 ing170))) -(recipe r255 (key (sy255 ing80))) -(recipe r255 (key (sx255 ing171))) -(recipe r255 (key (sy255 ing81))) -(recipe r255 (key (sx255 ing172))) -(recipe r255 (key (sy255 ing82))) -(recipe r255 (key (sx255 ing173))) -(recipe r255 (key (sy255 ing83))) -(recipe r255 (key (sx255 ing174))) -(recipe r255 (key (sy255 ing84))) -(recipe r255 (key (sx255 ing175))) -(recipe r255 (key (sy255 ing85))) -(recipe r255 (key (sx255 ing176))) -(recipe r255 (key (sy255 ing86))) -(recipe r256 (numIngredients 2)) -(recipe r256 (result (id item256))) -(recipe r256 (pattern 0 sx256)) -(recipe r256 (pattern 1 sy256)) -(recipe r256 (key (sx256 ing168))) -(recipe r256 (key (sy256 ing80))) -(recipe r256 (key (sx256 ing169))) -(recipe r256 (key (sy256 ing81))) -(recipe r256 (key (sx256 ing170))) -(recipe r256 (key (sy256 ing82))) -(recipe r256 (key (sx256 ing171))) -(recipe r256 (key (sy256 ing83))) -(recipe r256 (key (sx256 ing172))) -(recipe r256 (key (sy256 ing84))) -(recipe r256 (key (sx256 ing173))) -(recipe r256 (key (sy256 ing85))) -(recipe r256 (key (sx256 ing174))) -(recipe r256 (key (sy256 ing86))) -(recipe r256 (key (sx256 ing175))) -(recipe r256 (key (sy256 ing87))) -(recipe r256 (key (sx256 ing176))) -(recipe r256 (key (sy256 ing88))) -(recipe r256 (key (sx256 ing177))) -(recipe r256 (key (sy256 ing89))) -(recipe r256 (key (sx256 ing178))) -(recipe r256 (key (sy256 ing90))) -(recipe r256 (key (sx256 ing179))) -(recipe r256 (key (sy256 ing91))) -(recipe r257 (numIngredients 2)) -(recipe r257 (result (id item257))) -(recipe r257 (pattern 0 sx257)) -(recipe r257 (pattern 1 sy257)) -(recipe r257 (key (sx257 ing171))) -(recipe r257 (key (sy257 ing85))) -(recipe r257 (key (sx257 ing172))) -(recipe r257 (key (sy257 ing86))) -(recipe r257 (key (sx257 ing173))) -(recipe r257 (key (sy257 ing87))) -(recipe r257 (key (sx257 ing174))) -(recipe r257 (key (sy257 ing88))) -(recipe r257 (key (sx257 ing175))) -(recipe r257 (key (sy257 ing89))) -(recipe r257 (key (sx257 ing176))) -(recipe r257 (key (sy257 ing90))) -(recipe r257 (key (sx257 ing177))) -(recipe r257 (key (sy257 ing91))) -(recipe r257 (key (sx257 ing178))) -(recipe r257 (key (sy257 ing92))) -(recipe r257 (key (sx257 ing179))) -(recipe r257 (key (sy257 ing93))) -(recipe r257 (key (sx257 ing180))) -(recipe r257 (key (sy257 ing94))) -(recipe r257 (key (sx257 ing181))) -(recipe r257 (key (sy257 ing95))) -(recipe r257 (key (sx257 ing182))) -(recipe r257 (key (sy257 ing96))) -(recipe r258 (numIngredients 2)) -(recipe r258 (result (id item258))) -(recipe r258 (pattern 0 sx258)) -(recipe r258 (pattern 1 sy258)) -(recipe r258 (key (sx258 ing174))) -(recipe r258 (key (sy258 ing90))) -(recipe r258 (key (sx258 ing175))) -(recipe r258 (key (sy258 ing91))) -(recipe r258 (key (sx258 ing176))) -(recipe r258 (key (sy258 ing92))) -(recipe r258 (key (sx258 ing177))) -(recipe r258 (key (sy258 ing93))) -(recipe r258 (key (sx258 ing178))) -(recipe r258 (key (sy258 ing94))) -(recipe r258 (key (sx258 ing179))) -(recipe r258 (key (sy258 ing95))) -(recipe r258 (key (sx258 ing180))) -(recipe r258 (key (sy258 ing96))) -(recipe r258 (key (sx258 ing181))) -(recipe r258 (key (sy258 ing97))) -(recipe r258 (key (sx258 ing182))) -(recipe r258 (key (sy258 ing98))) -(recipe r258 (key (sx258 ing183))) -(recipe r258 (key (sy258 ing99))) -(recipe r258 (key (sx258 ing184))) -(recipe r258 (key (sy258 ing100))) -(recipe r258 (key (sx258 ing185))) -(recipe r258 (key (sy258 ing101))) -(recipe r259 (numIngredients 2)) -(recipe r259 (result (id item259))) -(recipe r259 (pattern 0 sx259)) -(recipe r259 (pattern 1 sy259)) -(recipe r259 (key (sx259 ing177))) -(recipe r259 (key (sy259 ing95))) -(recipe r259 (key (sx259 ing178))) -(recipe r259 (key (sy259 ing96))) -(recipe r259 (key (sx259 ing179))) -(recipe r259 (key (sy259 ing97))) -(recipe r259 (key (sx259 ing180))) -(recipe r259 (key (sy259 ing98))) -(recipe r259 (key (sx259 ing181))) -(recipe r259 (key (sy259 ing99))) -(recipe r259 (key (sx259 ing182))) -(recipe r259 (key (sy259 ing100))) -(recipe r259 (key (sx259 ing183))) -(recipe r259 (key (sy259 ing101))) -(recipe r259 (key (sx259 ing184))) -(recipe r259 (key (sy259 ing102))) -(recipe r259 (key (sx259 ing185))) -(recipe r259 (key (sy259 ing103))) -(recipe r259 (key (sx259 ing186))) -(recipe r259 (key (sy259 ing104))) -(recipe r259 (key (sx259 ing187))) -(recipe r259 (key (sy259 ing105))) -(recipe r259 (key (sx259 ing188))) -(recipe r259 (key (sy259 ing106))) -(recipe r260 (numIngredients 2)) -(recipe r260 (result (id item260))) -(recipe r260 (pattern 0 sx260)) -(recipe r260 (pattern 1 sy260)) -(recipe r260 (key (sx260 ing180))) -(recipe r260 (key (sy260 ing100))) -(recipe r260 (key (sx260 ing181))) -(recipe r260 (key (sy260 ing101))) -(recipe r260 (key (sx260 ing182))) -(recipe r260 (key (sy260 ing102))) -(recipe r260 (key (sx260 ing183))) -(recipe r260 (key (sy260 ing103))) -(recipe r260 (key (sx260 ing184))) -(recipe r260 (key (sy260 ing104))) -(recipe r260 (key (sx260 ing185))) -(recipe r260 (key (sy260 ing105))) -(recipe r260 (key (sx260 ing186))) -(recipe r260 (key (sy260 ing106))) -(recipe r260 (key (sx260 ing187))) -(recipe r260 (key (sy260 ing107))) -(recipe r260 (key (sx260 ing188))) -(recipe r260 (key (sy260 ing108))) -(recipe r260 (key (sx260 ing189))) -(recipe r260 (key (sy260 ing109))) -(recipe r260 (key (sx260 ing190))) -(recipe r260 (key (sy260 ing110))) -(recipe r260 (key (sx260 ing191))) -(recipe r260 (key (sy260 ing111))) -(recipe r261 (numIngredients 2)) -(recipe r261 (result (id item261))) -(recipe r261 (pattern 0 sx261)) -(recipe r261 (pattern 1 sy261)) -(recipe r261 (key (sx261 ing183))) -(recipe r261 (key (sy261 ing105))) -(recipe r261 (key (sx261 ing184))) -(recipe r261 (key (sy261 ing106))) -(recipe r261 (key (sx261 ing185))) -(recipe r261 (key (sy261 ing107))) -(recipe r261 (key (sx261 ing186))) -(recipe r261 (key (sy261 ing108))) -(recipe r261 (key (sx261 ing187))) -(recipe r261 (key (sy261 ing109))) -(recipe r261 (key (sx261 ing188))) -(recipe r261 (key (sy261 ing110))) -(recipe r261 (key (sx261 ing189))) -(recipe r261 (key (sy261 ing111))) -(recipe r261 (key (sx261 ing190))) -(recipe r261 (key (sy261 ing112))) -(recipe r261 (key (sx261 ing191))) -(recipe r261 (key (sy261 ing113))) -(recipe r261 (key (sx261 ing192))) -(recipe r261 (key (sy261 ing114))) -(recipe r261 (key (sx261 ing193))) -(recipe r261 (key (sy261 ing115))) -(recipe r261 (key (sx261 ing194))) -(recipe r261 (key (sy261 ing116))) -(recipe r262 (numIngredients 2)) -(recipe r262 (result (id item262))) -(recipe r262 (pattern 0 sx262)) -(recipe r262 (pattern 1 sy262)) -(recipe r262 (key (sx262 ing186))) -(recipe r262 (key (sy262 ing110))) -(recipe r262 (key (sx262 ing187))) -(recipe r262 (key (sy262 ing111))) -(recipe r262 (key (sx262 ing188))) -(recipe r262 (key (sy262 ing112))) -(recipe r262 (key (sx262 ing189))) -(recipe r262 (key (sy262 ing113))) -(recipe r262 (key (sx262 ing190))) -(recipe r262 (key (sy262 ing114))) -(recipe r262 (key (sx262 ing191))) -(recipe r262 (key (sy262 ing115))) -(recipe r262 (key (sx262 ing192))) -(recipe r262 (key (sy262 ing116))) -(recipe r262 (key (sx262 ing193))) -(recipe r262 (key (sy262 ing117))) -(recipe r262 (key (sx262 ing194))) -(recipe r262 (key (sy262 ing118))) -(recipe r262 (key (sx262 ing195))) -(recipe r262 (key (sy262 ing119))) -(recipe r262 (key (sx262 ing196))) -(recipe r262 (key (sy262 ing120))) -(recipe r262 (key (sx262 ing197))) -(recipe r262 (key (sy262 ing121))) -(recipe r263 (numIngredients 2)) -(recipe r263 (result (id item263))) -(recipe r263 (pattern 0 sx263)) -(recipe r263 (pattern 1 sy263)) -(recipe r263 (key (sx263 ing189))) -(recipe r263 (key (sy263 ing115))) -(recipe r263 (key (sx263 ing190))) -(recipe r263 (key (sy263 ing116))) -(recipe r263 (key (sx263 ing191))) -(recipe r263 (key (sy263 ing117))) -(recipe r263 (key (sx263 ing192))) -(recipe r263 (key (sy263 ing118))) -(recipe r263 (key (sx263 ing193))) -(recipe r263 (key (sy263 ing119))) -(recipe r263 (key (sx263 ing194))) -(recipe r263 (key (sy263 ing120))) -(recipe r263 (key (sx263 ing195))) -(recipe r263 (key (sy263 ing121))) -(recipe r263 (key (sx263 ing196))) -(recipe r263 (key (sy263 ing122))) -(recipe r263 (key (sx263 ing197))) -(recipe r263 (key (sy263 ing123))) -(recipe r263 (key (sx263 ing198))) -(recipe r263 (key (sy263 ing124))) -(recipe r263 (key (sx263 ing199))) -(recipe r263 (key (sy263 ing125))) -(recipe r263 (key (sx263 ing200))) -(recipe r263 (key (sy263 ing126))) -(recipe r264 (numIngredients 2)) -(recipe r264 (result (id item264))) -(recipe r264 (pattern 0 sx264)) -(recipe r264 (pattern 1 sy264)) -(recipe r264 (key (sx264 ing192))) -(recipe r264 (key (sy264 ing120))) -(recipe r264 (key (sx264 ing193))) -(recipe r264 (key (sy264 ing121))) -(recipe r264 (key (sx264 ing194))) -(recipe r264 (key (sy264 ing122))) -(recipe r264 (key (sx264 ing195))) -(recipe r264 (key (sy264 ing123))) -(recipe r264 (key (sx264 ing196))) -(recipe r264 (key (sy264 ing124))) -(recipe r264 (key (sx264 ing197))) -(recipe r264 (key (sy264 ing125))) -(recipe r264 (key (sx264 ing198))) -(recipe r264 (key (sy264 ing126))) -(recipe r264 (key (sx264 ing199))) -(recipe r264 (key (sy264 ing127))) -(recipe r264 (key (sx264 ing200))) -(recipe r264 (key (sy264 ing128))) -(recipe r264 (key (sx264 ing201))) -(recipe r264 (key (sy264 ing129))) -(recipe r264 (key (sx264 ing202))) -(recipe r264 (key (sy264 ing130))) -(recipe r264 (key (sx264 ing203))) -(recipe r264 (key (sy264 ing131))) -(recipe r265 (numIngredients 2)) -(recipe r265 (result (id item265))) -(recipe r265 (pattern 0 sx265)) -(recipe r265 (pattern 1 sy265)) -(recipe r265 (key (sx265 ing195))) -(recipe r265 (key (sy265 ing125))) -(recipe r265 (key (sx265 ing196))) -(recipe r265 (key (sy265 ing126))) -(recipe r265 (key (sx265 ing197))) -(recipe r265 (key (sy265 ing127))) -(recipe r265 (key (sx265 ing198))) -(recipe r265 (key (sy265 ing128))) -(recipe r265 (key (sx265 ing199))) -(recipe r265 (key (sy265 ing129))) -(recipe r265 (key (sx265 ing200))) -(recipe r265 (key (sy265 ing130))) -(recipe r265 (key (sx265 ing201))) -(recipe r265 (key (sy265 ing131))) -(recipe r265 (key (sx265 ing202))) -(recipe r265 (key (sy265 ing132))) -(recipe r265 (key (sx265 ing203))) -(recipe r265 (key (sy265 ing133))) -(recipe r265 (key (sx265 ing204))) -(recipe r265 (key (sy265 ing134))) -(recipe r265 (key (sx265 ing205))) -(recipe r265 (key (sy265 ing135))) -(recipe r265 (key (sx265 ing206))) -(recipe r265 (key (sy265 ing136))) -(recipe r266 (numIngredients 2)) -(recipe r266 (result (id item266))) -(recipe r266 (pattern 0 sx266)) -(recipe r266 (pattern 1 sy266)) -(recipe r266 (key (sx266 ing198))) -(recipe r266 (key (sy266 ing130))) -(recipe r266 (key (sx266 ing199))) -(recipe r266 (key (sy266 ing131))) -(recipe r266 (key (sx266 ing200))) -(recipe r266 (key (sy266 ing132))) -(recipe r266 (key (sx266 ing201))) -(recipe r266 (key (sy266 ing133))) -(recipe r266 (key (sx266 ing202))) -(recipe r266 (key (sy266 ing134))) -(recipe r266 (key (sx266 ing203))) -(recipe r266 (key (sy266 ing135))) -(recipe r266 (key (sx266 ing204))) -(recipe r266 (key (sy266 ing136))) -(recipe r266 (key (sx266 ing205))) -(recipe r266 (key (sy266 ing137))) -(recipe r266 (key (sx266 ing206))) -(recipe r266 (key (sy266 ing138))) -(recipe r266 (key (sx266 ing207))) -(recipe r266 (key (sy266 ing139))) -(recipe r266 (key (sx266 ing208))) -(recipe r266 (key (sy266 ing140))) -(recipe r266 (key (sx266 ing209))) -(recipe r266 (key (sy266 ing141))) -(recipe r267 (numIngredients 2)) -(recipe r267 (result (id item267))) -(recipe r267 (pattern 0 sx267)) -(recipe r267 (pattern 1 sy267)) -(recipe r267 (key (sx267 ing201))) -(recipe r267 (key (sy267 ing135))) -(recipe r267 (key (sx267 ing202))) -(recipe r267 (key (sy267 ing136))) -(recipe r267 (key (sx267 ing203))) -(recipe r267 (key (sy267 ing137))) -(recipe r267 (key (sx267 ing204))) -(recipe r267 (key (sy267 ing138))) -(recipe r267 (key (sx267 ing205))) -(recipe r267 (key (sy267 ing139))) -(recipe r267 (key (sx267 ing206))) -(recipe r267 (key (sy267 ing140))) -(recipe r267 (key (sx267 ing207))) -(recipe r267 (key (sy267 ing141))) -(recipe r267 (key (sx267 ing208))) -(recipe r267 (key (sy267 ing142))) -(recipe r267 (key (sx267 ing209))) -(recipe r267 (key (sy267 ing143))) -(recipe r267 (key (sx267 ing210))) -(recipe r267 (key (sy267 ing144))) -(recipe r267 (key (sx267 ing211))) -(recipe r267 (key (sy267 ing145))) -(recipe r267 (key (sx267 ing212))) -(recipe r267 (key (sy267 ing146))) -(recipe r268 (numIngredients 2)) -(recipe r268 (result (id item268))) -(recipe r268 (pattern 0 sx268)) -(recipe r268 (pattern 1 sy268)) -(recipe r268 (key (sx268 ing204))) -(recipe r268 (key (sy268 ing140))) -(recipe r268 (key (sx268 ing205))) -(recipe r268 (key (sy268 ing141))) -(recipe r268 (key (sx268 ing206))) -(recipe r268 (key (sy268 ing142))) -(recipe r268 (key (sx268 ing207))) -(recipe r268 (key (sy268 ing143))) -(recipe r268 (key (sx268 ing208))) -(recipe r268 (key (sy268 ing144))) -(recipe r268 (key (sx268 ing209))) -(recipe r268 (key (sy268 ing145))) -(recipe r268 (key (sx268 ing210))) -(recipe r268 (key (sy268 ing146))) -(recipe r268 (key (sx268 ing211))) -(recipe r268 (key (sy268 ing147))) -(recipe r268 (key (sx268 ing212))) -(recipe r268 (key (sy268 ing148))) -(recipe r268 (key (sx268 ing213))) -(recipe r268 (key (sy268 ing149))) -(recipe r268 (key (sx268 ing214))) -(recipe r268 (key (sy268 ing150))) -(recipe r268 (key (sx268 ing215))) -(recipe r268 (key (sy268 ing151))) -(recipe r269 (numIngredients 2)) -(recipe r269 (result (id item269))) -(recipe r269 (pattern 0 sx269)) -(recipe r269 (pattern 1 sy269)) -(recipe r269 (key (sx269 ing207))) -(recipe r269 (key (sy269 ing145))) -(recipe r269 (key (sx269 ing208))) -(recipe r269 (key (sy269 ing146))) -(recipe r269 (key (sx269 ing209))) -(recipe r269 (key (sy269 ing147))) -(recipe r269 (key (sx269 ing210))) -(recipe r269 (key (sy269 ing148))) -(recipe r269 (key (sx269 ing211))) -(recipe r269 (key (sy269 ing149))) -(recipe r269 (key (sx269 ing212))) -(recipe r269 (key (sy269 ing150))) -(recipe r269 (key (sx269 ing213))) -(recipe r269 (key (sy269 ing151))) -(recipe r269 (key (sx269 ing214))) -(recipe r269 (key (sy269 ing152))) -(recipe r269 (key (sx269 ing215))) -(recipe r269 (key (sy269 ing153))) -(recipe r269 (key (sx269 ing216))) -(recipe r269 (key (sy269 ing154))) -(recipe r269 (key (sx269 ing217))) -(recipe r269 (key (sy269 ing155))) -(recipe r269 (key (sx269 ing218))) -(recipe r269 (key (sy269 ing156))) -(recipe r270 (numIngredients 2)) -(recipe r270 (result (id item270))) -(recipe r270 (pattern 0 sx270)) -(recipe r270 (pattern 1 sy270)) -(recipe r270 (key (sx270 ing210))) -(recipe r270 (key (sy270 ing150))) -(recipe r270 (key (sx270 ing211))) -(recipe r270 (key (sy270 ing151))) -(recipe r270 (key (sx270 ing212))) -(recipe r270 (key (sy270 ing152))) -(recipe r270 (key (sx270 ing213))) -(recipe r270 (key (sy270 ing153))) -(recipe r270 (key (sx270 ing214))) -(recipe r270 (key (sy270 ing154))) -(recipe r270 (key (sx270 ing215))) -(recipe r270 (key (sy270 ing155))) -(recipe r270 (key (sx270 ing216))) -(recipe r270 (key (sy270 ing156))) -(recipe r270 (key (sx270 ing217))) -(recipe r270 (key (sy270 ing157))) -(recipe r270 (key (sx270 ing218))) -(recipe r270 (key (sy270 ing158))) -(recipe r270 (key (sx270 ing219))) -(recipe r270 (key (sy270 ing159))) -(recipe r270 (key (sx270 ing220))) -(recipe r270 (key (sy270 ing160))) -(recipe r270 (key (sx270 ing221))) -(recipe r270 (key (sy270 ing161))) -(recipe r271 (numIngredients 2)) -(recipe r271 (result (id item271))) -(recipe r271 (pattern 0 sx271)) -(recipe r271 (pattern 1 sy271)) -(recipe r271 (key (sx271 ing213))) -(recipe r271 (key (sy271 ing155))) -(recipe r271 (key (sx271 ing214))) -(recipe r271 (key (sy271 ing156))) -(recipe r271 (key (sx271 ing215))) -(recipe r271 (key (sy271 ing157))) -(recipe r271 (key (sx271 ing216))) -(recipe r271 (key (sy271 ing158))) -(recipe r271 (key (sx271 ing217))) -(recipe r271 (key (sy271 ing159))) -(recipe r271 (key (sx271 ing218))) -(recipe r271 (key (sy271 ing160))) -(recipe r271 (key (sx271 ing219))) -(recipe r271 (key (sy271 ing161))) -(recipe r271 (key (sx271 ing220))) -(recipe r271 (key (sy271 ing162))) -(recipe r271 (key (sx271 ing221))) -(recipe r271 (key (sy271 ing163))) -(recipe r271 (key (sx271 ing222))) -(recipe r271 (key (sy271 ing164))) -(recipe r271 (key (sx271 ing223))) -(recipe r271 (key (sy271 ing165))) -(recipe r271 (key (sx271 ing224))) -(recipe r271 (key (sy271 ing166))) -(recipe r272 (numIngredients 2)) -(recipe r272 (result (id item272))) -(recipe r272 (pattern 0 sx272)) -(recipe r272 (pattern 1 sy272)) -(recipe r272 (key (sx272 ing216))) -(recipe r272 (key (sy272 ing160))) -(recipe r272 (key (sx272 ing217))) -(recipe r272 (key (sy272 ing161))) -(recipe r272 (key (sx272 ing218))) -(recipe r272 (key (sy272 ing162))) -(recipe r272 (key (sx272 ing219))) -(recipe r272 (key (sy272 ing163))) -(recipe r272 (key (sx272 ing220))) -(recipe r272 (key (sy272 ing164))) -(recipe r272 (key (sx272 ing221))) -(recipe r272 (key (sy272 ing165))) -(recipe r272 (key (sx272 ing222))) -(recipe r272 (key (sy272 ing166))) -(recipe r272 (key (sx272 ing223))) -(recipe r272 (key (sy272 ing167))) -(recipe r272 (key (sx272 ing224))) -(recipe r272 (key (sy272 ing168))) -(recipe r272 (key (sx272 ing225))) -(recipe r272 (key (sy272 ing169))) -(recipe r272 (key (sx272 ing226))) -(recipe r272 (key (sy272 ing170))) -(recipe r272 (key (sx272 ing227))) -(recipe r272 (key (sy272 ing171))) -(recipe r273 (numIngredients 2)) -(recipe r273 (result (id item273))) -(recipe r273 (pattern 0 sx273)) -(recipe r273 (pattern 1 sy273)) -(recipe r273 (key (sx273 ing219))) -(recipe r273 (key (sy273 ing165))) -(recipe r273 (key (sx273 ing220))) -(recipe r273 (key (sy273 ing166))) -(recipe r273 (key (sx273 ing221))) -(recipe r273 (key (sy273 ing167))) -(recipe r273 (key (sx273 ing222))) -(recipe r273 (key (sy273 ing168))) -(recipe r273 (key (sx273 ing223))) -(recipe r273 (key (sy273 ing169))) -(recipe r273 (key (sx273 ing224))) -(recipe r273 (key (sy273 ing170))) -(recipe r273 (key (sx273 ing225))) -(recipe r273 (key (sy273 ing171))) -(recipe r273 (key (sx273 ing226))) -(recipe r273 (key (sy273 ing172))) -(recipe r273 (key (sx273 ing227))) -(recipe r273 (key (sy273 ing173))) -(recipe r273 (key (sx273 ing228))) -(recipe r273 (key (sy273 ing174))) -(recipe r273 (key (sx273 ing229))) -(recipe r273 (key (sy273 ing175))) -(recipe r273 (key (sx273 ing230))) -(recipe r273 (key (sy273 ing176))) -(recipe r274 (numIngredients 2)) -(recipe r274 (result (id item274))) -(recipe r274 (pattern 0 sx274)) -(recipe r274 (pattern 1 sy274)) -(recipe r274 (key (sx274 ing222))) -(recipe r274 (key (sy274 ing170))) -(recipe r274 (key (sx274 ing223))) -(recipe r274 (key (sy274 ing171))) -(recipe r274 (key (sx274 ing224))) -(recipe r274 (key (sy274 ing172))) -(recipe r274 (key (sx274 ing225))) -(recipe r274 (key (sy274 ing173))) -(recipe r274 (key (sx274 ing226))) -(recipe r274 (key (sy274 ing174))) -(recipe r274 (key (sx274 ing227))) -(recipe r274 (key (sy274 ing175))) -(recipe r274 (key (sx274 ing228))) -(recipe r274 (key (sy274 ing176))) -(recipe r274 (key (sx274 ing229))) -(recipe r274 (key (sy274 ing177))) -(recipe r274 (key (sx274 ing230))) -(recipe r274 (key (sy274 ing178))) -(recipe r274 (key (sx274 ing231))) -(recipe r274 (key (sy274 ing179))) -(recipe r274 (key (sx274 ing232))) -(recipe r274 (key (sy274 ing180))) -(recipe r274 (key (sx274 ing233))) -(recipe r274 (key (sy274 ing181))) -(recipe r275 (numIngredients 2)) -(recipe r275 (result (id item275))) -(recipe r275 (pattern 0 sx275)) -(recipe r275 (pattern 1 sy275)) -(recipe r275 (key (sx275 ing225))) -(recipe r275 (key (sy275 ing175))) -(recipe r275 (key (sx275 ing226))) -(recipe r275 (key (sy275 ing176))) -(recipe r275 (key (sx275 ing227))) -(recipe r275 (key (sy275 ing177))) -(recipe r275 (key (sx275 ing228))) -(recipe r275 (key (sy275 ing178))) -(recipe r275 (key (sx275 ing229))) -(recipe r275 (key (sy275 ing179))) -(recipe r275 (key (sx275 ing230))) -(recipe r275 (key (sy275 ing180))) -(recipe r275 (key (sx275 ing231))) -(recipe r275 (key (sy275 ing181))) -(recipe r275 (key (sx275 ing232))) -(recipe r275 (key (sy275 ing182))) -(recipe r275 (key (sx275 ing233))) -(recipe r275 (key (sy275 ing183))) -(recipe r275 (key (sx275 ing234))) -(recipe r275 (key (sy275 ing184))) -(recipe r275 (key (sx275 ing235))) -(recipe r275 (key (sy275 ing185))) -(recipe r275 (key (sx275 ing236))) -(recipe r275 (key (sy275 ing186))) -(recipe r276 (numIngredients 2)) -(recipe r276 (result (id item276))) -(recipe r276 (pattern 0 sx276)) -(recipe r276 (pattern 1 sy276)) -(recipe r276 (key (sx276 ing228))) -(recipe r276 (key (sy276 ing180))) -(recipe r276 (key (sx276 ing229))) -(recipe r276 (key (sy276 ing181))) -(recipe r276 (key (sx276 ing230))) -(recipe r276 (key (sy276 ing182))) -(recipe r276 (key (sx276 ing231))) -(recipe r276 (key (sy276 ing183))) -(recipe r276 (key (sx276 ing232))) -(recipe r276 (key (sy276 ing184))) -(recipe r276 (key (sx276 ing233))) -(recipe r276 (key (sy276 ing185))) -(recipe r276 (key (sx276 ing234))) -(recipe r276 (key (sy276 ing186))) -(recipe r276 (key (sx276 ing235))) -(recipe r276 (key (sy276 ing187))) -(recipe r276 (key (sx276 ing236))) -(recipe r276 (key (sy276 ing188))) -(recipe r276 (key (sx276 ing237))) -(recipe r276 (key (sy276 ing189))) -(recipe r276 (key (sx276 ing238))) -(recipe r276 (key (sy276 ing190))) -(recipe r276 (key (sx276 ing239))) -(recipe r276 (key (sy276 ing191))) -(recipe r277 (numIngredients 2)) -(recipe r277 (result (id item277))) -(recipe r277 (pattern 0 sx277)) -(recipe r277 (pattern 1 sy277)) -(recipe r277 (key (sx277 ing231))) -(recipe r277 (key (sy277 ing185))) -(recipe r277 (key (sx277 ing232))) -(recipe r277 (key (sy277 ing186))) -(recipe r277 (key (sx277 ing233))) -(recipe r277 (key (sy277 ing187))) -(recipe r277 (key (sx277 ing234))) -(recipe r277 (key (sy277 ing188))) -(recipe r277 (key (sx277 ing235))) -(recipe r277 (key (sy277 ing189))) -(recipe r277 (key (sx277 ing236))) -(recipe r277 (key (sy277 ing190))) -(recipe r277 (key (sx277 ing237))) -(recipe r277 (key (sy277 ing191))) -(recipe r277 (key (sx277 ing238))) -(recipe r277 (key (sy277 ing192))) -(recipe r277 (key (sx277 ing239))) -(recipe r277 (key (sy277 ing193))) -(recipe r277 (key (sx277 ing240))) -(recipe r277 (key (sy277 ing194))) -(recipe r277 (key (sx277 ing241))) -(recipe r277 (key (sy277 ing195))) -(recipe r277 (key (sx277 ing242))) -(recipe r277 (key (sy277 ing196))) -(recipe r278 (numIngredients 2)) -(recipe r278 (result (id item278))) -(recipe r278 (pattern 0 sx278)) -(recipe r278 (pattern 1 sy278)) -(recipe r278 (key (sx278 ing234))) -(recipe r278 (key (sy278 ing190))) -(recipe r278 (key (sx278 ing235))) -(recipe r278 (key (sy278 ing191))) -(recipe r278 (key (sx278 ing236))) -(recipe r278 (key (sy278 ing192))) -(recipe r278 (key (sx278 ing237))) -(recipe r278 (key (sy278 ing193))) -(recipe r278 (key (sx278 ing238))) -(recipe r278 (key (sy278 ing194))) -(recipe r278 (key (sx278 ing239))) -(recipe r278 (key (sy278 ing195))) -(recipe r278 (key (sx278 ing240))) -(recipe r278 (key (sy278 ing196))) -(recipe r278 (key (sx278 ing241))) -(recipe r278 (key (sy278 ing197))) -(recipe r278 (key (sx278 ing242))) -(recipe r278 (key (sy278 ing198))) -(recipe r278 (key (sx278 ing243))) -(recipe r278 (key (sy278 ing199))) -(recipe r278 (key (sx278 ing244))) -(recipe r278 (key (sy278 ing200))) -(recipe r278 (key (sx278 ing245))) -(recipe r278 (key (sy278 ing201))) -(recipe r279 (numIngredients 2)) -(recipe r279 (result (id item279))) -(recipe r279 (pattern 0 sx279)) -(recipe r279 (pattern 1 sy279)) -(recipe r279 (key (sx279 ing237))) -(recipe r279 (key (sy279 ing195))) -(recipe r279 (key (sx279 ing238))) -(recipe r279 (key (sy279 ing196))) -(recipe r279 (key (sx279 ing239))) -(recipe r279 (key (sy279 ing197))) -(recipe r279 (key (sx279 ing240))) -(recipe r279 (key (sy279 ing198))) -(recipe r279 (key (sx279 ing241))) -(recipe r279 (key (sy279 ing199))) -(recipe r279 (key (sx279 ing242))) -(recipe r279 (key (sy279 ing200))) -(recipe r279 (key (sx279 ing243))) -(recipe r279 (key (sy279 ing201))) -(recipe r279 (key (sx279 ing244))) -(recipe r279 (key (sy279 ing202))) -(recipe r279 (key (sx279 ing245))) -(recipe r279 (key (sy279 ing203))) -(recipe r279 (key (sx279 ing246))) -(recipe r279 (key (sy279 ing204))) -(recipe r279 (key (sx279 ing247))) -(recipe r279 (key (sy279 ing205))) -(recipe r279 (key (sx279 ing248))) -(recipe r279 (key (sy279 ing206))) -(recipe r280 (numIngredients 2)) -(recipe r280 (result (id item280))) -(recipe r280 (pattern 0 sx280)) -(recipe r280 (pattern 1 sy280)) -(recipe r280 (key (sx280 ing240))) -(recipe r280 (key (sy280 ing200))) -(recipe r280 (key (sx280 ing241))) -(recipe r280 (key (sy280 ing201))) -(recipe r280 (key (sx280 ing242))) -(recipe r280 (key (sy280 ing202))) -(recipe r280 (key (sx280 ing243))) -(recipe r280 (key (sy280 ing203))) -(recipe r280 (key (sx280 ing244))) -(recipe r280 (key (sy280 ing204))) -(recipe r280 (key (sx280 ing245))) -(recipe r280 (key (sy280 ing205))) -(recipe r280 (key (sx280 ing246))) -(recipe r280 (key (sy280 ing206))) -(recipe r280 (key (sx280 ing247))) -(recipe r280 (key (sy280 ing207))) -(recipe r280 (key (sx280 ing248))) -(recipe r280 (key (sy280 ing208))) -(recipe r280 (key (sx280 ing249))) -(recipe r280 (key (sy280 ing209))) -(recipe r280 (key (sx280 ing250))) -(recipe r280 (key (sy280 ing210))) -(recipe r280 (key (sx280 ing251))) -(recipe r280 (key (sy280 ing211))) -(recipe r281 (numIngredients 2)) -(recipe r281 (result (id item281))) -(recipe r281 (pattern 0 sx281)) -(recipe r281 (pattern 1 sy281)) -(recipe r281 (key (sx281 ing243))) -(recipe r281 (key (sy281 ing205))) -(recipe r281 (key (sx281 ing244))) -(recipe r281 (key (sy281 ing206))) -(recipe r281 (key (sx281 ing245))) -(recipe r281 (key (sy281 ing207))) -(recipe r281 (key (sx281 ing246))) -(recipe r281 (key (sy281 ing208))) -(recipe r281 (key (sx281 ing247))) -(recipe r281 (key (sy281 ing209))) -(recipe r281 (key (sx281 ing248))) -(recipe r281 (key (sy281 ing210))) -(recipe r281 (key (sx281 ing249))) -(recipe r281 (key (sy281 ing211))) -(recipe r281 (key (sx281 ing250))) -(recipe r281 (key (sy281 ing212))) -(recipe r281 (key (sx281 ing251))) -(recipe r281 (key (sy281 ing213))) -(recipe r281 (key (sx281 ing252))) -(recipe r281 (key (sy281 ing214))) -(recipe r281 (key (sx281 ing253))) -(recipe r281 (key (sy281 ing215))) -(recipe r281 (key (sx281 ing254))) -(recipe r281 (key (sy281 ing216))) -(recipe r282 (numIngredients 2)) -(recipe r282 (result (id item282))) -(recipe r282 (pattern 0 sx282)) -(recipe r282 (pattern 1 sy282)) -(recipe r282 (key (sx282 ing246))) -(recipe r282 (key (sy282 ing210))) -(recipe r282 (key (sx282 ing247))) -(recipe r282 (key (sy282 ing211))) -(recipe r282 (key (sx282 ing248))) -(recipe r282 (key (sy282 ing212))) -(recipe r282 (key (sx282 ing249))) -(recipe r282 (key (sy282 ing213))) -(recipe r282 (key (sx282 ing250))) -(recipe r282 (key (sy282 ing214))) -(recipe r282 (key (sx282 ing251))) -(recipe r282 (key (sy282 ing215))) -(recipe r282 (key (sx282 ing252))) -(recipe r282 (key (sy282 ing216))) -(recipe r282 (key (sx282 ing253))) -(recipe r282 (key (sy282 ing217))) -(recipe r282 (key (sx282 ing254))) -(recipe r282 (key (sy282 ing218))) -(recipe r282 (key (sx282 ing255))) -(recipe r282 (key (sy282 ing219))) -(recipe r282 (key (sx282 ing256))) -(recipe r282 (key (sy282 ing220))) -(recipe r282 (key (sx282 ing257))) -(recipe r282 (key (sy282 ing221))) -(recipe r283 (numIngredients 2)) -(recipe r283 (result (id item283))) -(recipe r283 (pattern 0 sx283)) -(recipe r283 (pattern 1 sy283)) -(recipe r283 (key (sx283 ing249))) -(recipe r283 (key (sy283 ing215))) -(recipe r283 (key (sx283 ing250))) -(recipe r283 (key (sy283 ing216))) -(recipe r283 (key (sx283 ing251))) -(recipe r283 (key (sy283 ing217))) -(recipe r283 (key (sx283 ing252))) -(recipe r283 (key (sy283 ing218))) -(recipe r283 (key (sx283 ing253))) -(recipe r283 (key (sy283 ing219))) -(recipe r283 (key (sx283 ing254))) -(recipe r283 (key (sy283 ing220))) -(recipe r283 (key (sx283 ing255))) -(recipe r283 (key (sy283 ing221))) -(recipe r283 (key (sx283 ing256))) -(recipe r283 (key (sy283 ing222))) -(recipe r283 (key (sx283 ing257))) -(recipe r283 (key (sy283 ing223))) -(recipe r283 (key (sx283 ing258))) -(recipe r283 (key (sy283 ing224))) -(recipe r283 (key (sx283 ing259))) -(recipe r283 (key (sy283 ing225))) -(recipe r283 (key (sx283 ing260))) -(recipe r283 (key (sy283 ing226))) -(recipe r284 (numIngredients 2)) -(recipe r284 (result (id item284))) -(recipe r284 (pattern 0 sx284)) -(recipe r284 (pattern 1 sy284)) -(recipe r284 (key (sx284 ing252))) -(recipe r284 (key (sy284 ing220))) -(recipe r284 (key (sx284 ing253))) -(recipe r284 (key (sy284 ing221))) -(recipe r284 (key (sx284 ing254))) -(recipe r284 (key (sy284 ing222))) -(recipe r284 (key (sx284 ing255))) -(recipe r284 (key (sy284 ing223))) -(recipe r284 (key (sx284 ing256))) -(recipe r284 (key (sy284 ing224))) -(recipe r284 (key (sx284 ing257))) -(recipe r284 (key (sy284 ing225))) -(recipe r284 (key (sx284 ing258))) -(recipe r284 (key (sy284 ing226))) -(recipe r284 (key (sx284 ing259))) -(recipe r284 (key (sy284 ing227))) -(recipe r284 (key (sx284 ing260))) -(recipe r284 (key (sy284 ing228))) -(recipe r284 (key (sx284 ing261))) -(recipe r284 (key (sy284 ing229))) -(recipe r284 (key (sx284 ing262))) -(recipe r284 (key (sy284 ing230))) -(recipe r284 (key (sx284 ing263))) -(recipe r284 (key (sy284 ing231))) -(recipe r285 (numIngredients 2)) -(recipe r285 (result (id item285))) -(recipe r285 (pattern 0 sx285)) -(recipe r285 (pattern 1 sy285)) -(recipe r285 (key (sx285 ing255))) -(recipe r285 (key (sy285 ing225))) -(recipe r285 (key (sx285 ing256))) -(recipe r285 (key (sy285 ing226))) -(recipe r285 (key (sx285 ing257))) -(recipe r285 (key (sy285 ing227))) -(recipe r285 (key (sx285 ing258))) -(recipe r285 (key (sy285 ing228))) -(recipe r285 (key (sx285 ing259))) -(recipe r285 (key (sy285 ing229))) -(recipe r285 (key (sx285 ing260))) -(recipe r285 (key (sy285 ing230))) -(recipe r285 (key (sx285 ing261))) -(recipe r285 (key (sy285 ing231))) -(recipe r285 (key (sx285 ing262))) -(recipe r285 (key (sy285 ing232))) -(recipe r285 (key (sx285 ing263))) -(recipe r285 (key (sy285 ing233))) -(recipe r285 (key (sx285 ing264))) -(recipe r285 (key (sy285 ing234))) -(recipe r285 (key (sx285 ing265))) -(recipe r285 (key (sy285 ing235))) -(recipe r285 (key (sx285 ing266))) -(recipe r285 (key (sy285 ing236))) -(recipe r286 (numIngredients 2)) -(recipe r286 (result (id item286))) -(recipe r286 (pattern 0 sx286)) -(recipe r286 (pattern 1 sy286)) -(recipe r286 (key (sx286 ing258))) -(recipe r286 (key (sy286 ing230))) -(recipe r286 (key (sx286 ing259))) -(recipe r286 (key (sy286 ing231))) -(recipe r286 (key (sx286 ing260))) -(recipe r286 (key (sy286 ing232))) -(recipe r286 (key (sx286 ing261))) -(recipe r286 (key (sy286 ing233))) -(recipe r286 (key (sx286 ing262))) -(recipe r286 (key (sy286 ing234))) -(recipe r286 (key (sx286 ing263))) -(recipe r286 (key (sy286 ing235))) -(recipe r286 (key (sx286 ing264))) -(recipe r286 (key (sy286 ing236))) -(recipe r286 (key (sx286 ing265))) -(recipe r286 (key (sy286 ing237))) -(recipe r286 (key (sx286 ing266))) -(recipe r286 (key (sy286 ing238))) -(recipe r286 (key (sx286 ing267))) -(recipe r286 (key (sy286 ing239))) -(recipe r286 (key (sx286 ing268))) -(recipe r286 (key (sy286 ing240))) -(recipe r286 (key (sx286 ing269))) -(recipe r286 (key (sy286 ing241))) -(recipe r287 (numIngredients 2)) -(recipe r287 (result (id item287))) -(recipe r287 (pattern 0 sx287)) -(recipe r287 (pattern 1 sy287)) -(recipe r287 (key (sx287 ing261))) -(recipe r287 (key (sy287 ing235))) -(recipe r287 (key (sx287 ing262))) -(recipe r287 (key (sy287 ing236))) -(recipe r287 (key (sx287 ing263))) -(recipe r287 (key (sy287 ing237))) -(recipe r287 (key (sx287 ing264))) -(recipe r287 (key (sy287 ing238))) -(recipe r287 (key (sx287 ing265))) -(recipe r287 (key (sy287 ing239))) -(recipe r287 (key (sx287 ing266))) -(recipe r287 (key (sy287 ing240))) -(recipe r287 (key (sx287 ing267))) -(recipe r287 (key (sy287 ing241))) -(recipe r287 (key (sx287 ing268))) -(recipe r287 (key (sy287 ing242))) -(recipe r287 (key (sx287 ing269))) -(recipe r287 (key (sy287 ing243))) -(recipe r287 (key (sx287 ing270))) -(recipe r287 (key (sy287 ing244))) -(recipe r287 (key (sx287 ing271))) -(recipe r287 (key (sy287 ing245))) -(recipe r287 (key (sx287 ing272))) -(recipe r287 (key (sy287 ing246))) -(recipe r288 (numIngredients 2)) -(recipe r288 (result (id item288))) -(recipe r288 (pattern 0 sx288)) -(recipe r288 (pattern 1 sy288)) -(recipe r288 (key (sx288 ing264))) -(recipe r288 (key (sy288 ing240))) -(recipe r288 (key (sx288 ing265))) -(recipe r288 (key (sy288 ing241))) -(recipe r288 (key (sx288 ing266))) -(recipe r288 (key (sy288 ing242))) -(recipe r288 (key (sx288 ing267))) -(recipe r288 (key (sy288 ing243))) -(recipe r288 (key (sx288 ing268))) -(recipe r288 (key (sy288 ing244))) -(recipe r288 (key (sx288 ing269))) -(recipe r288 (key (sy288 ing245))) -(recipe r288 (key (sx288 ing270))) -(recipe r288 (key (sy288 ing246))) -(recipe r288 (key (sx288 ing271))) -(recipe r288 (key (sy288 ing247))) -(recipe r288 (key (sx288 ing272))) -(recipe r288 (key (sy288 ing248))) -(recipe r288 (key (sx288 ing273))) -(recipe r288 (key (sy288 ing249))) -(recipe r288 (key (sx288 ing274))) -(recipe r288 (key (sy288 ing250))) -(recipe r288 (key (sx288 ing275))) -(recipe r288 (key (sy288 ing251))) -(recipe r289 (numIngredients 2)) -(recipe r289 (result (id item289))) -(recipe r289 (pattern 0 sx289)) -(recipe r289 (pattern 1 sy289)) -(recipe r289 (key (sx289 ing267))) -(recipe r289 (key (sy289 ing245))) -(recipe r289 (key (sx289 ing268))) -(recipe r289 (key (sy289 ing246))) -(recipe r289 (key (sx289 ing269))) -(recipe r289 (key (sy289 ing247))) -(recipe r289 (key (sx289 ing270))) -(recipe r289 (key (sy289 ing248))) -(recipe r289 (key (sx289 ing271))) -(recipe r289 (key (sy289 ing249))) -(recipe r289 (key (sx289 ing272))) -(recipe r289 (key (sy289 ing250))) -(recipe r289 (key (sx289 ing273))) -(recipe r289 (key (sy289 ing251))) -(recipe r289 (key (sx289 ing274))) -(recipe r289 (key (sy289 ing252))) -(recipe r289 (key (sx289 ing275))) -(recipe r289 (key (sy289 ing253))) -(recipe r289 (key (sx289 ing276))) -(recipe r289 (key (sy289 ing254))) -(recipe r289 (key (sx289 ing277))) -(recipe r289 (key (sy289 ing255))) -(recipe r289 (key (sx289 ing278))) -(recipe r289 (key (sy289 ing256))) -(recipe r290 (numIngredients 2)) -(recipe r290 (result (id item290))) -(recipe r290 (pattern 0 sx290)) -(recipe r290 (pattern 1 sy290)) -(recipe r290 (key (sx290 ing270))) -(recipe r290 (key (sy290 ing250))) -(recipe r290 (key (sx290 ing271))) -(recipe r290 (key (sy290 ing251))) -(recipe r290 (key (sx290 ing272))) -(recipe r290 (key (sy290 ing252))) -(recipe r290 (key (sx290 ing273))) -(recipe r290 (key (sy290 ing253))) -(recipe r290 (key (sx290 ing274))) -(recipe r290 (key (sy290 ing254))) -(recipe r290 (key (sx290 ing275))) -(recipe r290 (key (sy290 ing255))) -(recipe r290 (key (sx290 ing276))) -(recipe r290 (key (sy290 ing256))) -(recipe r290 (key (sx290 ing277))) -(recipe r290 (key (sy290 ing257))) -(recipe r290 (key (sx290 ing278))) -(recipe r290 (key (sy290 ing258))) -(recipe r290 (key (sx290 ing279))) -(recipe r290 (key (sy290 ing259))) -(recipe r290 (key (sx290 ing280))) -(recipe r290 (key (sy290 ing260))) -(recipe r290 (key (sx290 ing281))) -(recipe r290 (key (sy290 ing261))) -(recipe r291 (numIngredients 2)) -(recipe r291 (result (id item291))) -(recipe r291 (pattern 0 sx291)) -(recipe r291 (pattern 1 sy291)) -(recipe r291 (key (sx291 ing273))) -(recipe r291 (key (sy291 ing255))) -(recipe r291 (key (sx291 ing274))) -(recipe r291 (key (sy291 ing256))) -(recipe r291 (key (sx291 ing275))) -(recipe r291 (key (sy291 ing257))) -(recipe r291 (key (sx291 ing276))) -(recipe r291 (key (sy291 ing258))) -(recipe r291 (key (sx291 ing277))) -(recipe r291 (key (sy291 ing259))) -(recipe r291 (key (sx291 ing278))) -(recipe r291 (key (sy291 ing260))) -(recipe r291 (key (sx291 ing279))) -(recipe r291 (key (sy291 ing261))) -(recipe r291 (key (sx291 ing280))) -(recipe r291 (key (sy291 ing262))) -(recipe r291 (key (sx291 ing281))) -(recipe r291 (key (sy291 ing263))) -(recipe r291 (key (sx291 ing282))) -(recipe r291 (key (sy291 ing264))) -(recipe r291 (key (sx291 ing283))) -(recipe r291 (key (sy291 ing265))) -(recipe r291 (key (sx291 ing284))) -(recipe r291 (key (sy291 ing266))) -(recipe r292 (numIngredients 2)) -(recipe r292 (result (id item292))) -(recipe r292 (pattern 0 sx292)) -(recipe r292 (pattern 1 sy292)) -(recipe r292 (key (sx292 ing276))) -(recipe r292 (key (sy292 ing260))) -(recipe r292 (key (sx292 ing277))) -(recipe r292 (key (sy292 ing261))) -(recipe r292 (key (sx292 ing278))) -(recipe r292 (key (sy292 ing262))) -(recipe r292 (key (sx292 ing279))) -(recipe r292 (key (sy292 ing263))) -(recipe r292 (key (sx292 ing280))) -(recipe r292 (key (sy292 ing264))) -(recipe r292 (key (sx292 ing281))) -(recipe r292 (key (sy292 ing265))) -(recipe r292 (key (sx292 ing282))) -(recipe r292 (key (sy292 ing266))) -(recipe r292 (key (sx292 ing283))) -(recipe r292 (key (sy292 ing267))) -(recipe r292 (key (sx292 ing284))) -(recipe r292 (key (sy292 ing268))) -(recipe r292 (key (sx292 ing285))) -(recipe r292 (key (sy292 ing269))) -(recipe r292 (key (sx292 ing286))) -(recipe r292 (key (sy292 ing270))) -(recipe r292 (key (sx292 ing287))) -(recipe r292 (key (sy292 ing271))) -(recipe r293 (numIngredients 2)) -(recipe r293 (result (id item293))) -(recipe r293 (pattern 0 sx293)) -(recipe r293 (pattern 1 sy293)) -(recipe r293 (key (sx293 ing279))) -(recipe r293 (key (sy293 ing265))) -(recipe r293 (key (sx293 ing280))) -(recipe r293 (key (sy293 ing266))) -(recipe r293 (key (sx293 ing281))) -(recipe r293 (key (sy293 ing267))) -(recipe r293 (key (sx293 ing282))) -(recipe r293 (key (sy293 ing268))) -(recipe r293 (key (sx293 ing283))) -(recipe r293 (key (sy293 ing269))) -(recipe r293 (key (sx293 ing284))) -(recipe r293 (key (sy293 ing270))) -(recipe r293 (key (sx293 ing285))) -(recipe r293 (key (sy293 ing271))) -(recipe r293 (key (sx293 ing286))) -(recipe r293 (key (sy293 ing272))) -(recipe r293 (key (sx293 ing287))) -(recipe r293 (key (sy293 ing273))) -(recipe r293 (key (sx293 ing288))) -(recipe r293 (key (sy293 ing274))) -(recipe r293 (key (sx293 ing289))) -(recipe r293 (key (sy293 ing275))) -(recipe r293 (key (sx293 ing290))) -(recipe r293 (key (sy293 ing276))) -(recipe r294 (numIngredients 2)) -(recipe r294 (result (id item294))) -(recipe r294 (pattern 0 sx294)) -(recipe r294 (pattern 1 sy294)) -(recipe r294 (key (sx294 ing282))) -(recipe r294 (key (sy294 ing270))) -(recipe r294 (key (sx294 ing283))) -(recipe r294 (key (sy294 ing271))) -(recipe r294 (key (sx294 ing284))) -(recipe r294 (key (sy294 ing272))) -(recipe r294 (key (sx294 ing285))) -(recipe r294 (key (sy294 ing273))) -(recipe r294 (key (sx294 ing286))) -(recipe r294 (key (sy294 ing274))) -(recipe r294 (key (sx294 ing287))) -(recipe r294 (key (sy294 ing275))) -(recipe r294 (key (sx294 ing288))) -(recipe r294 (key (sy294 ing276))) -(recipe r294 (key (sx294 ing289))) -(recipe r294 (key (sy294 ing277))) -(recipe r294 (key (sx294 ing290))) -(recipe r294 (key (sy294 ing278))) -(recipe r294 (key (sx294 ing291))) -(recipe r294 (key (sy294 ing279))) -(recipe r294 (key (sx294 ing292))) -(recipe r294 (key (sy294 ing280))) -(recipe r294 (key (sx294 ing293))) -(recipe r294 (key (sy294 ing281))) -(recipe r295 (numIngredients 2)) -(recipe r295 (result (id item295))) -(recipe r295 (pattern 0 sx295)) -(recipe r295 (pattern 1 sy295)) -(recipe r295 (key (sx295 ing285))) -(recipe r295 (key (sy295 ing275))) -(recipe r295 (key (sx295 ing286))) -(recipe r295 (key (sy295 ing276))) -(recipe r295 (key (sx295 ing287))) -(recipe r295 (key (sy295 ing277))) -(recipe r295 (key (sx295 ing288))) -(recipe r295 (key (sy295 ing278))) -(recipe r295 (key (sx295 ing289))) -(recipe r295 (key (sy295 ing279))) -(recipe r295 (key (sx295 ing290))) -(recipe r295 (key (sy295 ing280))) -(recipe r295 (key (sx295 ing291))) -(recipe r295 (key (sy295 ing281))) -(recipe r295 (key (sx295 ing292))) -(recipe r295 (key (sy295 ing282))) -(recipe r295 (key (sx295 ing293))) -(recipe r295 (key (sy295 ing283))) -(recipe r295 (key (sx295 ing294))) -(recipe r295 (key (sy295 ing284))) -(recipe r295 (key (sx295 ing295))) -(recipe r295 (key (sy295 ing285))) -(recipe r295 (key (sx295 ing296))) -(recipe r295 (key (sy295 ing286))) -(recipe r296 (numIngredients 2)) -(recipe r296 (result (id item296))) -(recipe r296 (pattern 0 sx296)) -(recipe r296 (pattern 1 sy296)) -(recipe r296 (key (sx296 ing288))) -(recipe r296 (key (sy296 ing280))) -(recipe r296 (key (sx296 ing289))) -(recipe r296 (key (sy296 ing281))) -(recipe r296 (key (sx296 ing290))) -(recipe r296 (key (sy296 ing282))) -(recipe r296 (key (sx296 ing291))) -(recipe r296 (key (sy296 ing283))) -(recipe r296 (key (sx296 ing292))) -(recipe r296 (key (sy296 ing284))) -(recipe r296 (key (sx296 ing293))) -(recipe r296 (key (sy296 ing285))) -(recipe r296 (key (sx296 ing294))) -(recipe r296 (key (sy296 ing286))) -(recipe r296 (key (sx296 ing295))) -(recipe r296 (key (sy296 ing287))) -(recipe r296 (key (sx296 ing296))) -(recipe r296 (key (sy296 ing288))) -(recipe r296 (key (sx296 ing297))) -(recipe r296 (key (sy296 ing289))) -(recipe r296 (key (sx296 ing298))) -(recipe r296 (key (sy296 ing290))) -(recipe r296 (key (sx296 ing299))) -(recipe r296 (key (sy296 ing291))) -(recipe r297 (numIngredients 2)) -(recipe r297 (result (id item297))) -(recipe r297 (pattern 0 sx297)) -(recipe r297 (pattern 1 sy297)) -(recipe r297 (key (sx297 ing291))) -(recipe r297 (key (sy297 ing285))) -(recipe r297 (key (sx297 ing292))) -(recipe r297 (key (sy297 ing286))) -(recipe r297 (key (sx297 ing293))) -(recipe r297 (key (sy297 ing287))) -(recipe r297 (key (sx297 ing294))) -(recipe r297 (key (sy297 ing288))) -(recipe r297 (key (sx297 ing295))) -(recipe r297 (key (sy297 ing289))) -(recipe r297 (key (sx297 ing296))) -(recipe r297 (key (sy297 ing290))) -(recipe r297 (key (sx297 ing297))) -(recipe r297 (key (sy297 ing291))) -(recipe r297 (key (sx297 ing298))) -(recipe r297 (key (sy297 ing292))) -(recipe r297 (key (sx297 ing299))) -(recipe r297 (key (sy297 ing293))) -(recipe r297 (key (sx297 ing300))) -(recipe r297 (key (sy297 ing294))) -(recipe r297 (key (sx297 ing301))) -(recipe r297 (key (sy297 ing295))) -(recipe r297 (key (sx297 ing302))) -(recipe r297 (key (sy297 ing296))) -(recipe r298 (numIngredients 2)) -(recipe r298 (result (id item298))) -(recipe r298 (pattern 0 sx298)) -(recipe r298 (pattern 1 sy298)) -(recipe r298 (key (sx298 ing294))) -(recipe r298 (key (sy298 ing290))) -(recipe r298 (key (sx298 ing295))) -(recipe r298 (key (sy298 ing291))) -(recipe r298 (key (sx298 ing296))) -(recipe r298 (key (sy298 ing292))) -(recipe r298 (key (sx298 ing297))) -(recipe r298 (key (sy298 ing293))) -(recipe r298 (key (sx298 ing298))) -(recipe r298 (key (sy298 ing294))) -(recipe r298 (key (sx298 ing299))) -(recipe r298 (key (sy298 ing295))) -(recipe r298 (key (sx298 ing300))) -(recipe r298 (key (sy298 ing296))) -(recipe r298 (key (sx298 ing301))) -(recipe r298 (key (sy298 ing297))) -(recipe r298 (key (sx298 ing302))) -(recipe r298 (key (sy298 ing298))) -(recipe r298 (key (sx298 ing303))) -(recipe r298 (key (sy298 ing299))) -(recipe r298 (key (sx298 ing304))) -(recipe r298 (key (sy298 ing300))) -(recipe r298 (key (sx298 ing305))) -(recipe r298 (key (sy298 ing301))) -(recipe r299 (numIngredients 2)) -(recipe r299 (result (id item299))) -(recipe r299 (pattern 0 sx299)) -(recipe r299 (pattern 1 sy299)) -(recipe r299 (key (sx299 ing297))) -(recipe r299 (key (sy299 ing295))) -(recipe r299 (key (sx299 ing298))) -(recipe r299 (key (sy299 ing296))) -(recipe r299 (key (sx299 ing299))) -(recipe r299 (key (sy299 ing297))) -(recipe r299 (key (sx299 ing300))) -(recipe r299 (key (sy299 ing298))) -(recipe r299 (key (sx299 ing301))) -(recipe r299 (key (sy299 ing299))) -(recipe r299 (key (sx299 ing302))) -(recipe r299 (key (sy299 ing300))) -(recipe r299 (key (sx299 ing303))) -(recipe r299 (key (sy299 ing301))) -(recipe r299 (key (sx299 ing304))) -(recipe r299 (key (sy299 ing302))) -(recipe r299 (key (sx299 ing305))) -(recipe r299 (key (sy299 ing303))) -(recipe r299 (key (sx299 ing306))) -(recipe r299 (key (sy299 ing304))) -(recipe r299 (key (sx299 ing307))) -(recipe r299 (key (sy299 ing305))) -(recipe r299 (key (sx299 ing308))) -(recipe r299 (key (sy299 ing306))) -(recipe r300 (numIngredients 2)) -(recipe r300 (result (id item300))) -(recipe r300 (pattern 0 sx300)) -(recipe r300 (pattern 1 sy300)) -(recipe r300 (key (sx300 ing300))) -(recipe r300 (key (sy300 ing300))) -(recipe r300 (key (sx300 ing301))) -(recipe r300 (key (sy300 ing301))) -(recipe r300 (key (sx300 ing302))) -(recipe r300 (key (sy300 ing302))) -(recipe r300 (key (sx300 ing303))) -(recipe r300 (key (sy300 ing303))) -(recipe r300 (key (sx300 ing304))) -(recipe r300 (key (sy300 ing304))) -(recipe r300 (key (sx300 ing305))) -(recipe r300 (key (sy300 ing305))) -(recipe r300 (key (sx300 ing306))) -(recipe r300 (key (sy300 ing306))) -(recipe r300 (key (sx300 ing307))) -(recipe r300 (key (sy300 ing307))) -(recipe r300 (key (sx300 ing308))) -(recipe r300 (key (sy300 ing308))) -(recipe r300 (key (sx300 ing309))) -(recipe r300 (key (sy300 ing309))) -(recipe r300 (key (sx300 ing310))) -(recipe r300 (key (sy300 ing310))) -(recipe r300 (key (sx300 ing311))) -(recipe r300 (key (sy300 ing311))) -(recipe r301 (numIngredients 2)) -(recipe r301 (result (id item301))) -(recipe r301 (pattern 0 sx301)) -(recipe r301 (pattern 1 sy301)) -(recipe r301 (key (sx301 ing303))) -(recipe r301 (key (sy301 ing305))) -(recipe r301 (key (sx301 ing304))) -(recipe r301 (key (sy301 ing306))) -(recipe r301 (key (sx301 ing305))) -(recipe r301 (key (sy301 ing307))) -(recipe r301 (key (sx301 ing306))) -(recipe r301 (key (sy301 ing308))) -(recipe r301 (key (sx301 ing307))) -(recipe r301 (key (sy301 ing309))) -(recipe r301 (key (sx301 ing308))) -(recipe r301 (key (sy301 ing310))) -(recipe r301 (key (sx301 ing309))) -(recipe r301 (key (sy301 ing311))) -(recipe r301 (key (sx301 ing310))) -(recipe r301 (key (sy301 ing312))) -(recipe r301 (key (sx301 ing311))) -(recipe r301 (key (sy301 ing313))) -(recipe r301 (key (sx301 ing312))) -(recipe r301 (key (sy301 ing314))) -(recipe r301 (key (sx301 ing313))) -(recipe r301 (key (sy301 ing315))) -(recipe r301 (key (sx301 ing314))) -(recipe r301 (key (sy301 ing316))) -(recipe r302 (numIngredients 2)) -(recipe r302 (result (id item302))) -(recipe r302 (pattern 0 sx302)) -(recipe r302 (pattern 1 sy302)) -(recipe r302 (key (sx302 ing306))) -(recipe r302 (key (sy302 ing310))) -(recipe r302 (key (sx302 ing307))) -(recipe r302 (key (sy302 ing311))) -(recipe r302 (key (sx302 ing308))) -(recipe r302 (key (sy302 ing312))) -(recipe r302 (key (sx302 ing309))) -(recipe r302 (key (sy302 ing313))) -(recipe r302 (key (sx302 ing310))) -(recipe r302 (key (sy302 ing314))) -(recipe r302 (key (sx302 ing311))) -(recipe r302 (key (sy302 ing315))) -(recipe r302 (key (sx302 ing312))) -(recipe r302 (key (sy302 ing316))) -(recipe r302 (key (sx302 ing313))) -(recipe r302 (key (sy302 ing317))) -(recipe r302 (key (sx302 ing314))) -(recipe r302 (key (sy302 ing318))) -(recipe r302 (key (sx302 ing315))) -(recipe r302 (key (sy302 ing319))) -(recipe r302 (key (sx302 ing316))) -(recipe r302 (key (sy302 ing320))) -(recipe r302 (key (sx302 ing317))) -(recipe r302 (key (sy302 ing321))) -(recipe r303 (numIngredients 2)) -(recipe r303 (result (id item303))) -(recipe r303 (pattern 0 sx303)) -(recipe r303 (pattern 1 sy303)) -(recipe r303 (key (sx303 ing309))) -(recipe r303 (key (sy303 ing315))) -(recipe r303 (key (sx303 ing310))) -(recipe r303 (key (sy303 ing316))) -(recipe r303 (key (sx303 ing311))) -(recipe r303 (key (sy303 ing317))) -(recipe r303 (key (sx303 ing312))) -(recipe r303 (key (sy303 ing318))) -(recipe r303 (key (sx303 ing313))) -(recipe r303 (key (sy303 ing319))) -(recipe r303 (key (sx303 ing314))) -(recipe r303 (key (sy303 ing320))) -(recipe r303 (key (sx303 ing315))) -(recipe r303 (key (sy303 ing321))) -(recipe r303 (key (sx303 ing316))) -(recipe r303 (key (sy303 ing322))) -(recipe r303 (key (sx303 ing317))) -(recipe r303 (key (sy303 ing323))) -(recipe r303 (key (sx303 ing318))) -(recipe r303 (key (sy303 ing324))) -(recipe r303 (key (sx303 ing319))) -(recipe r303 (key (sy303 ing325))) -(recipe r303 (key (sx303 ing320))) -(recipe r303 (key (sy303 ing326))) -(recipe r304 (numIngredients 2)) -(recipe r304 (result (id item304))) -(recipe r304 (pattern 0 sx304)) -(recipe r304 (pattern 1 sy304)) -(recipe r304 (key (sx304 ing312))) -(recipe r304 (key (sy304 ing320))) -(recipe r304 (key (sx304 ing313))) -(recipe r304 (key (sy304 ing321))) -(recipe r304 (key (sx304 ing314))) -(recipe r304 (key (sy304 ing322))) -(recipe r304 (key (sx304 ing315))) -(recipe r304 (key (sy304 ing323))) -(recipe r304 (key (sx304 ing316))) -(recipe r304 (key (sy304 ing324))) -(recipe r304 (key (sx304 ing317))) -(recipe r304 (key (sy304 ing325))) -(recipe r304 (key (sx304 ing318))) -(recipe r304 (key (sy304 ing326))) -(recipe r304 (key (sx304 ing319))) -(recipe r304 (key (sy304 ing327))) -(recipe r304 (key (sx304 ing320))) -(recipe r304 (key (sy304 ing328))) -(recipe r304 (key (sx304 ing321))) -(recipe r304 (key (sy304 ing329))) -(recipe r304 (key (sx304 ing322))) -(recipe r304 (key (sy304 ing330))) -(recipe r304 (key (sx304 ing323))) -(recipe r304 (key (sy304 ing331))) -(recipe r305 (numIngredients 2)) -(recipe r305 (result (id item305))) -(recipe r305 (pattern 0 sx305)) -(recipe r305 (pattern 1 sy305)) -(recipe r305 (key (sx305 ing315))) -(recipe r305 (key (sy305 ing325))) -(recipe r305 (key (sx305 ing316))) -(recipe r305 (key (sy305 ing326))) -(recipe r305 (key (sx305 ing317))) -(recipe r305 (key (sy305 ing327))) -(recipe r305 (key (sx305 ing318))) -(recipe r305 (key (sy305 ing328))) -(recipe r305 (key (sx305 ing319))) -(recipe r305 (key (sy305 ing329))) -(recipe r305 (key (sx305 ing320))) -(recipe r305 (key (sy305 ing330))) -(recipe r305 (key (sx305 ing321))) -(recipe r305 (key (sy305 ing331))) -(recipe r305 (key (sx305 ing322))) -(recipe r305 (key (sy305 ing332))) -(recipe r305 (key (sx305 ing323))) -(recipe r305 (key (sy305 ing333))) -(recipe r305 (key (sx305 ing324))) -(recipe r305 (key (sy305 ing334))) -(recipe r305 (key (sx305 ing325))) -(recipe r305 (key (sy305 ing335))) -(recipe r305 (key (sx305 ing326))) -(recipe r305 (key (sy305 ing336))) -(recipe r306 (numIngredients 2)) -(recipe r306 (result (id item306))) -(recipe r306 (pattern 0 sx306)) -(recipe r306 (pattern 1 sy306)) -(recipe r306 (key (sx306 ing318))) -(recipe r306 (key (sy306 ing330))) -(recipe r306 (key (sx306 ing319))) -(recipe r306 (key (sy306 ing331))) -(recipe r306 (key (sx306 ing320))) -(recipe r306 (key (sy306 ing332))) -(recipe r306 (key (sx306 ing321))) -(recipe r306 (key (sy306 ing333))) -(recipe r306 (key (sx306 ing322))) -(recipe r306 (key (sy306 ing334))) -(recipe r306 (key (sx306 ing323))) -(recipe r306 (key (sy306 ing335))) -(recipe r306 (key (sx306 ing324))) -(recipe r306 (key (sy306 ing336))) -(recipe r306 (key (sx306 ing325))) -(recipe r306 (key (sy306 ing337))) -(recipe r306 (key (sx306 ing326))) -(recipe r306 (key (sy306 ing338))) -(recipe r306 (key (sx306 ing327))) -(recipe r306 (key (sy306 ing339))) -(recipe r306 (key (sx306 ing328))) -(recipe r306 (key (sy306 ing340))) -(recipe r306 (key (sx306 ing329))) -(recipe r306 (key (sy306 ing341))) -(recipe r307 (numIngredients 2)) -(recipe r307 (result (id item307))) -(recipe r307 (pattern 0 sx307)) -(recipe r307 (pattern 1 sy307)) -(recipe r307 (key (sx307 ing321))) -(recipe r307 (key (sy307 ing335))) -(recipe r307 (key (sx307 ing322))) -(recipe r307 (key (sy307 ing336))) -(recipe r307 (key (sx307 ing323))) -(recipe r307 (key (sy307 ing337))) -(recipe r307 (key (sx307 ing324))) -(recipe r307 (key (sy307 ing338))) -(recipe r307 (key (sx307 ing325))) -(recipe r307 (key (sy307 ing339))) -(recipe r307 (key (sx307 ing326))) -(recipe r307 (key (sy307 ing340))) -(recipe r307 (key (sx307 ing327))) -(recipe r307 (key (sy307 ing341))) -(recipe r307 (key (sx307 ing328))) -(recipe r307 (key (sy307 ing342))) -(recipe r307 (key (sx307 ing329))) -(recipe r307 (key (sy307 ing343))) -(recipe r307 (key (sx307 ing330))) -(recipe r307 (key (sy307 ing344))) -(recipe r307 (key (sx307 ing331))) -(recipe r307 (key (sy307 ing345))) -(recipe r307 (key (sx307 ing332))) -(recipe r307 (key (sy307 ing346))) -(recipe r308 (numIngredients 2)) -(recipe r308 (result (id item308))) -(recipe r308 (pattern 0 sx308)) -(recipe r308 (pattern 1 sy308)) -(recipe r308 (key (sx308 ing324))) -(recipe r308 (key (sy308 ing340))) -(recipe r308 (key (sx308 ing325))) -(recipe r308 (key (sy308 ing341))) -(recipe r308 (key (sx308 ing326))) -(recipe r308 (key (sy308 ing342))) -(recipe r308 (key (sx308 ing327))) -(recipe r308 (key (sy308 ing343))) -(recipe r308 (key (sx308 ing328))) -(recipe r308 (key (sy308 ing344))) -(recipe r308 (key (sx308 ing329))) -(recipe r308 (key (sy308 ing345))) -(recipe r308 (key (sx308 ing330))) -(recipe r308 (key (sy308 ing346))) -(recipe r308 (key (sx308 ing331))) -(recipe r308 (key (sy308 ing347))) -(recipe r308 (key (sx308 ing332))) -(recipe r308 (key (sy308 ing348))) -(recipe r308 (key (sx308 ing333))) -(recipe r308 (key (sy308 ing349))) -(recipe r308 (key (sx308 ing334))) -(recipe r308 (key (sy308 ing350))) -(recipe r308 (key (sx308 ing335))) -(recipe r308 (key (sy308 ing351))) -(recipe r309 (numIngredients 2)) -(recipe r309 (result (id item309))) -(recipe r309 (pattern 0 sx309)) -(recipe r309 (pattern 1 sy309)) -(recipe r309 (key (sx309 ing327))) -(recipe r309 (key (sy309 ing345))) -(recipe r309 (key (sx309 ing328))) -(recipe r309 (key (sy309 ing346))) -(recipe r309 (key (sx309 ing329))) -(recipe r309 (key (sy309 ing347))) -(recipe r309 (key (sx309 ing330))) -(recipe r309 (key (sy309 ing348))) -(recipe r309 (key (sx309 ing331))) -(recipe r309 (key (sy309 ing349))) -(recipe r309 (key (sx309 ing332))) -(recipe r309 (key (sy309 ing350))) -(recipe r309 (key (sx309 ing333))) -(recipe r309 (key (sy309 ing351))) -(recipe r309 (key (sx309 ing334))) -(recipe r309 (key (sy309 ing352))) -(recipe r309 (key (sx309 ing335))) -(recipe r309 (key (sy309 ing353))) -(recipe r309 (key (sx309 ing336))) -(recipe r309 (key (sy309 ing354))) -(recipe r309 (key (sx309 ing337))) -(recipe r309 (key (sy309 ing355))) -(recipe r309 (key (sx309 ing338))) -(recipe r309 (key (sy309 ing356))) -(recipe r310 (numIngredients 2)) -(recipe r310 (result (id item310))) -(recipe r310 (pattern 0 sx310)) -(recipe r310 (pattern 1 sy310)) -(recipe r310 (key (sx310 ing330))) -(recipe r310 (key (sy310 ing350))) -(recipe r310 (key (sx310 ing331))) -(recipe r310 (key (sy310 ing351))) -(recipe r310 (key (sx310 ing332))) -(recipe r310 (key (sy310 ing352))) -(recipe r310 (key (sx310 ing333))) -(recipe r310 (key (sy310 ing353))) -(recipe r310 (key (sx310 ing334))) -(recipe r310 (key (sy310 ing354))) -(recipe r310 (key (sx310 ing335))) -(recipe r310 (key (sy310 ing355))) -(recipe r310 (key (sx310 ing336))) -(recipe r310 (key (sy310 ing356))) -(recipe r310 (key (sx310 ing337))) -(recipe r310 (key (sy310 ing357))) -(recipe r310 (key (sx310 ing338))) -(recipe r310 (key (sy310 ing358))) -(recipe r310 (key (sx310 ing339))) -(recipe r310 (key (sy310 ing359))) -(recipe r310 (key (sx310 ing340))) -(recipe r310 (key (sy310 ing360))) -(recipe r310 (key (sx310 ing341))) -(recipe r310 (key (sy310 ing361))) -(recipe r311 (numIngredients 2)) -(recipe r311 (result (id item311))) -(recipe r311 (pattern 0 sx311)) -(recipe r311 (pattern 1 sy311)) -(recipe r311 (key (sx311 ing333))) -(recipe r311 (key (sy311 ing355))) -(recipe r311 (key (sx311 ing334))) -(recipe r311 (key (sy311 ing356))) -(recipe r311 (key (sx311 ing335))) -(recipe r311 (key (sy311 ing357))) -(recipe r311 (key (sx311 ing336))) -(recipe r311 (key (sy311 ing358))) -(recipe r311 (key (sx311 ing337))) -(recipe r311 (key (sy311 ing359))) -(recipe r311 (key (sx311 ing338))) -(recipe r311 (key (sy311 ing360))) -(recipe r311 (key (sx311 ing339))) -(recipe r311 (key (sy311 ing361))) -(recipe r311 (key (sx311 ing340))) -(recipe r311 (key (sy311 ing362))) -(recipe r311 (key (sx311 ing341))) -(recipe r311 (key (sy311 ing363))) -(recipe r311 (key (sx311 ing342))) -(recipe r311 (key (sy311 ing364))) -(recipe r311 (key (sx311 ing343))) -(recipe r311 (key (sy311 ing365))) -(recipe r311 (key (sx311 ing344))) -(recipe r311 (key (sy311 ing366))) -(recipe r312 (numIngredients 2)) -(recipe r312 (result (id item312))) -(recipe r312 (pattern 0 sx312)) -(recipe r312 (pattern 1 sy312)) -(recipe r312 (key (sx312 ing336))) -(recipe r312 (key (sy312 ing360))) -(recipe r312 (key (sx312 ing337))) -(recipe r312 (key (sy312 ing361))) -(recipe r312 (key (sx312 ing338))) -(recipe r312 (key (sy312 ing362))) -(recipe r312 (key (sx312 ing339))) -(recipe r312 (key (sy312 ing363))) -(recipe r312 (key (sx312 ing340))) -(recipe r312 (key (sy312 ing364))) -(recipe r312 (key (sx312 ing341))) -(recipe r312 (key (sy312 ing365))) -(recipe r312 (key (sx312 ing342))) -(recipe r312 (key (sy312 ing366))) -(recipe r312 (key (sx312 ing343))) -(recipe r312 (key (sy312 ing367))) -(recipe r312 (key (sx312 ing344))) -(recipe r312 (key (sy312 ing368))) -(recipe r312 (key (sx312 ing345))) -(recipe r312 (key (sy312 ing369))) -(recipe r312 (key (sx312 ing346))) -(recipe r312 (key (sy312 ing370))) -(recipe r312 (key (sx312 ing347))) -(recipe r312 (key (sy312 ing371))) -(recipe r313 (numIngredients 2)) -(recipe r313 (result (id item313))) -(recipe r313 (pattern 0 sx313)) -(recipe r313 (pattern 1 sy313)) -(recipe r313 (key (sx313 ing339))) -(recipe r313 (key (sy313 ing365))) -(recipe r313 (key (sx313 ing340))) -(recipe r313 (key (sy313 ing366))) -(recipe r313 (key (sx313 ing341))) -(recipe r313 (key (sy313 ing367))) -(recipe r313 (key (sx313 ing342))) -(recipe r313 (key (sy313 ing368))) -(recipe r313 (key (sx313 ing343))) -(recipe r313 (key (sy313 ing369))) -(recipe r313 (key (sx313 ing344))) -(recipe r313 (key (sy313 ing370))) -(recipe r313 (key (sx313 ing345))) -(recipe r313 (key (sy313 ing371))) -(recipe r313 (key (sx313 ing346))) -(recipe r313 (key (sy313 ing372))) -(recipe r313 (key (sx313 ing347))) -(recipe r313 (key (sy313 ing373))) -(recipe r313 (key (sx313 ing348))) -(recipe r313 (key (sy313 ing374))) -(recipe r313 (key (sx313 ing349))) -(recipe r313 (key (sy313 ing375))) -(recipe r313 (key (sx313 ing350))) -(recipe r313 (key (sy313 ing376))) -(recipe r314 (numIngredients 2)) -(recipe r314 (result (id item314))) -(recipe r314 (pattern 0 sx314)) -(recipe r314 (pattern 1 sy314)) -(recipe r314 (key (sx314 ing342))) -(recipe r314 (key (sy314 ing370))) -(recipe r314 (key (sx314 ing343))) -(recipe r314 (key (sy314 ing371))) -(recipe r314 (key (sx314 ing344))) -(recipe r314 (key (sy314 ing372))) -(recipe r314 (key (sx314 ing345))) -(recipe r314 (key (sy314 ing373))) -(recipe r314 (key (sx314 ing346))) -(recipe r314 (key (sy314 ing374))) -(recipe r314 (key (sx314 ing347))) -(recipe r314 (key (sy314 ing375))) -(recipe r314 (key (sx314 ing348))) -(recipe r314 (key (sy314 ing376))) -(recipe r314 (key (sx314 ing349))) -(recipe r314 (key (sy314 ing377))) -(recipe r314 (key (sx314 ing350))) -(recipe r314 (key (sy314 ing378))) -(recipe r314 (key (sx314 ing351))) -(recipe r314 (key (sy314 ing379))) -(recipe r314 (key (sx314 ing352))) -(recipe r314 (key (sy314 ing380))) -(recipe r314 (key (sx314 ing353))) -(recipe r314 (key (sy314 ing381))) -(recipe r315 (numIngredients 2)) -(recipe r315 (result (id item315))) -(recipe r315 (pattern 0 sx315)) -(recipe r315 (pattern 1 sy315)) -(recipe r315 (key (sx315 ing345))) -(recipe r315 (key (sy315 ing375))) -(recipe r315 (key (sx315 ing346))) -(recipe r315 (key (sy315 ing376))) -(recipe r315 (key (sx315 ing347))) -(recipe r315 (key (sy315 ing377))) -(recipe r315 (key (sx315 ing348))) -(recipe r315 (key (sy315 ing378))) -(recipe r315 (key (sx315 ing349))) -(recipe r315 (key (sy315 ing379))) -(recipe r315 (key (sx315 ing350))) -(recipe r315 (key (sy315 ing380))) -(recipe r315 (key (sx315 ing351))) -(recipe r315 (key (sy315 ing381))) -(recipe r315 (key (sx315 ing352))) -(recipe r315 (key (sy315 ing382))) -(recipe r315 (key (sx315 ing353))) -(recipe r315 (key (sy315 ing383))) -(recipe r315 (key (sx315 ing354))) -(recipe r315 (key (sy315 ing384))) -(recipe r315 (key (sx315 ing355))) -(recipe r315 (key (sy315 ing385))) -(recipe r315 (key (sx315 ing356))) -(recipe r315 (key (sy315 ing386))) -(recipe r316 (numIngredients 2)) -(recipe r316 (result (id item316))) -(recipe r316 (pattern 0 sx316)) -(recipe r316 (pattern 1 sy316)) -(recipe r316 (key (sx316 ing348))) -(recipe r316 (key (sy316 ing380))) -(recipe r316 (key (sx316 ing349))) -(recipe r316 (key (sy316 ing381))) -(recipe r316 (key (sx316 ing350))) -(recipe r316 (key (sy316 ing382))) -(recipe r316 (key (sx316 ing351))) -(recipe r316 (key (sy316 ing383))) -(recipe r316 (key (sx316 ing352))) -(recipe r316 (key (sy316 ing384))) -(recipe r316 (key (sx316 ing353))) -(recipe r316 (key (sy316 ing385))) -(recipe r316 (key (sx316 ing354))) -(recipe r316 (key (sy316 ing386))) -(recipe r316 (key (sx316 ing355))) -(recipe r316 (key (sy316 ing387))) -(recipe r316 (key (sx316 ing356))) -(recipe r316 (key (sy316 ing388))) -(recipe r316 (key (sx316 ing357))) -(recipe r316 (key (sy316 ing389))) -(recipe r316 (key (sx316 ing358))) -(recipe r316 (key (sy316 ing390))) -(recipe r316 (key (sx316 ing359))) -(recipe r316 (key (sy316 ing391))) -(recipe r317 (numIngredients 2)) -(recipe r317 (result (id item317))) -(recipe r317 (pattern 0 sx317)) -(recipe r317 (pattern 1 sy317)) -(recipe r317 (key (sx317 ing351))) -(recipe r317 (key (sy317 ing385))) -(recipe r317 (key (sx317 ing352))) -(recipe r317 (key (sy317 ing386))) -(recipe r317 (key (sx317 ing353))) -(recipe r317 (key (sy317 ing387))) -(recipe r317 (key (sx317 ing354))) -(recipe r317 (key (sy317 ing388))) -(recipe r317 (key (sx317 ing355))) -(recipe r317 (key (sy317 ing389))) -(recipe r317 (key (sx317 ing356))) -(recipe r317 (key (sy317 ing390))) -(recipe r317 (key (sx317 ing357))) -(recipe r317 (key (sy317 ing391))) -(recipe r317 (key (sx317 ing358))) -(recipe r317 (key (sy317 ing392))) -(recipe r317 (key (sx317 ing359))) -(recipe r317 (key (sy317 ing393))) -(recipe r317 (key (sx317 ing360))) -(recipe r317 (key (sy317 ing394))) -(recipe r317 (key (sx317 ing361))) -(recipe r317 (key (sy317 ing395))) -(recipe r317 (key (sx317 ing362))) -(recipe r317 (key (sy317 ing396))) -(recipe r318 (numIngredients 2)) -(recipe r318 (result (id item318))) -(recipe r318 (pattern 0 sx318)) -(recipe r318 (pattern 1 sy318)) -(recipe r318 (key (sx318 ing354))) -(recipe r318 (key (sy318 ing390))) -(recipe r318 (key (sx318 ing355))) -(recipe r318 (key (sy318 ing391))) -(recipe r318 (key (sx318 ing356))) -(recipe r318 (key (sy318 ing392))) -(recipe r318 (key (sx318 ing357))) -(recipe r318 (key (sy318 ing393))) -(recipe r318 (key (sx318 ing358))) -(recipe r318 (key (sy318 ing394))) -(recipe r318 (key (sx318 ing359))) -(recipe r318 (key (sy318 ing395))) -(recipe r318 (key (sx318 ing360))) -(recipe r318 (key (sy318 ing396))) -(recipe r318 (key (sx318 ing361))) -(recipe r318 (key (sy318 ing397))) -(recipe r318 (key (sx318 ing362))) -(recipe r318 (key (sy318 ing398))) -(recipe r318 (key (sx318 ing363))) -(recipe r318 (key (sy318 ing399))) -(recipe r318 (key (sx318 ing364))) -(recipe r318 (key (sy318 ing400))) -(recipe r318 (key (sx318 ing365))) -(recipe r318 (key (sy318 ing401))) -(recipe r319 (numIngredients 2)) -(recipe r319 (result (id item319))) -(recipe r319 (pattern 0 sx319)) -(recipe r319 (pattern 1 sy319)) -(recipe r319 (key (sx319 ing357))) -(recipe r319 (key (sy319 ing395))) -(recipe r319 (key (sx319 ing358))) -(recipe r319 (key (sy319 ing396))) -(recipe r319 (key (sx319 ing359))) -(recipe r319 (key (sy319 ing397))) -(recipe r319 (key (sx319 ing360))) -(recipe r319 (key (sy319 ing398))) -(recipe r319 (key (sx319 ing361))) -(recipe r319 (key (sy319 ing399))) -(recipe r319 (key (sx319 ing362))) -(recipe r319 (key (sy319 ing400))) -(recipe r319 (key (sx319 ing363))) -(recipe r319 (key (sy319 ing401))) -(recipe r319 (key (sx319 ing364))) -(recipe r319 (key (sy319 ing402))) -(recipe r319 (key (sx319 ing365))) -(recipe r319 (key (sy319 ing403))) -(recipe r319 (key (sx319 ing366))) -(recipe r319 (key (sy319 ing404))) -(recipe r319 (key (sx319 ing367))) -(recipe r319 (key (sy319 ing405))) -(recipe r319 (key (sx319 ing368))) -(recipe r319 (key (sy319 ing406))) -(recipe r320 (numIngredients 2)) -(recipe r320 (result (id item320))) -(recipe r320 (pattern 0 sx320)) -(recipe r320 (pattern 1 sy320)) -(recipe r320 (key (sx320 ing360))) -(recipe r320 (key (sy320 ing400))) -(recipe r320 (key (sx320 ing361))) -(recipe r320 (key (sy320 ing401))) -(recipe r320 (key (sx320 ing362))) -(recipe r320 (key (sy320 ing402))) -(recipe r320 (key (sx320 ing363))) -(recipe r320 (key (sy320 ing403))) -(recipe r320 (key (sx320 ing364))) -(recipe r320 (key (sy320 ing404))) -(recipe r320 (key (sx320 ing365))) -(recipe r320 (key (sy320 ing405))) -(recipe r320 (key (sx320 ing366))) -(recipe r320 (key (sy320 ing406))) -(recipe r320 (key (sx320 ing367))) -(recipe r320 (key (sy320 ing407))) -(recipe r320 (key (sx320 ing368))) -(recipe r320 (key (sy320 ing408))) -(recipe r320 (key (sx320 ing369))) -(recipe r320 (key (sy320 ing409))) -(recipe r320 (key (sx320 ing370))) -(recipe r320 (key (sy320 ing410))) -(recipe r320 (key (sx320 ing371))) -(recipe r320 (key (sy320 ing411))) -(recipe r321 (numIngredients 2)) -(recipe r321 (result (id item321))) -(recipe r321 (pattern 0 sx321)) -(recipe r321 (pattern 1 sy321)) -(recipe r321 (key (sx321 ing363))) -(recipe r321 (key (sy321 ing405))) -(recipe r321 (key (sx321 ing364))) -(recipe r321 (key (sy321 ing406))) -(recipe r321 (key (sx321 ing365))) -(recipe r321 (key (sy321 ing407))) -(recipe r321 (key (sx321 ing366))) -(recipe r321 (key (sy321 ing408))) -(recipe r321 (key (sx321 ing367))) -(recipe r321 (key (sy321 ing409))) -(recipe r321 (key (sx321 ing368))) -(recipe r321 (key (sy321 ing410))) -(recipe r321 (key (sx321 ing369))) -(recipe r321 (key (sy321 ing411))) -(recipe r321 (key (sx321 ing370))) -(recipe r321 (key (sy321 ing412))) -(recipe r321 (key (sx321 ing371))) -(recipe r321 (key (sy321 ing413))) -(recipe r321 (key (sx321 ing372))) -(recipe r321 (key (sy321 ing414))) -(recipe r321 (key (sx321 ing373))) -(recipe r321 (key (sy321 ing415))) -(recipe r321 (key (sx321 ing374))) -(recipe r321 (key (sy321 ing416))) -(recipe r322 (numIngredients 2)) -(recipe r322 (result (id item322))) -(recipe r322 (pattern 0 sx322)) -(recipe r322 (pattern 1 sy322)) -(recipe r322 (key (sx322 ing366))) -(recipe r322 (key (sy322 ing410))) -(recipe r322 (key (sx322 ing367))) -(recipe r322 (key (sy322 ing411))) -(recipe r322 (key (sx322 ing368))) -(recipe r322 (key (sy322 ing412))) -(recipe r322 (key (sx322 ing369))) -(recipe r322 (key (sy322 ing413))) -(recipe r322 (key (sx322 ing370))) -(recipe r322 (key (sy322 ing414))) -(recipe r322 (key (sx322 ing371))) -(recipe r322 (key (sy322 ing415))) -(recipe r322 (key (sx322 ing372))) -(recipe r322 (key (sy322 ing416))) -(recipe r322 (key (sx322 ing373))) -(recipe r322 (key (sy322 ing417))) -(recipe r322 (key (sx322 ing374))) -(recipe r322 (key (sy322 ing418))) -(recipe r322 (key (sx322 ing375))) -(recipe r322 (key (sy322 ing419))) -(recipe r322 (key (sx322 ing376))) -(recipe r322 (key (sy322 ing420))) -(recipe r322 (key (sx322 ing377))) -(recipe r322 (key (sy322 ing421))) -(recipe r323 (numIngredients 2)) -(recipe r323 (result (id item323))) -(recipe r323 (pattern 0 sx323)) -(recipe r323 (pattern 1 sy323)) -(recipe r323 (key (sx323 ing369))) -(recipe r323 (key (sy323 ing415))) -(recipe r323 (key (sx323 ing370))) -(recipe r323 (key (sy323 ing416))) -(recipe r323 (key (sx323 ing371))) -(recipe r323 (key (sy323 ing417))) -(recipe r323 (key (sx323 ing372))) -(recipe r323 (key (sy323 ing418))) -(recipe r323 (key (sx323 ing373))) -(recipe r323 (key (sy323 ing419))) -(recipe r323 (key (sx323 ing374))) -(recipe r323 (key (sy323 ing420))) -(recipe r323 (key (sx323 ing375))) -(recipe r323 (key (sy323 ing421))) -(recipe r323 (key (sx323 ing376))) -(recipe r323 (key (sy323 ing422))) -(recipe r323 (key (sx323 ing377))) -(recipe r323 (key (sy323 ing423))) -(recipe r323 (key (sx323 ing378))) -(recipe r323 (key (sy323 ing424))) -(recipe r323 (key (sx323 ing379))) -(recipe r323 (key (sy323 ing425))) -(recipe r323 (key (sx323 ing380))) -(recipe r323 (key (sy323 ing426))) -(recipe r324 (numIngredients 2)) -(recipe r324 (result (id item324))) -(recipe r324 (pattern 0 sx324)) -(recipe r324 (pattern 1 sy324)) -(recipe r324 (key (sx324 ing372))) -(recipe r324 (key (sy324 ing420))) -(recipe r324 (key (sx324 ing373))) -(recipe r324 (key (sy324 ing421))) -(recipe r324 (key (sx324 ing374))) -(recipe r324 (key (sy324 ing422))) -(recipe r324 (key (sx324 ing375))) -(recipe r324 (key (sy324 ing423))) -(recipe r324 (key (sx324 ing376))) -(recipe r324 (key (sy324 ing424))) -(recipe r324 (key (sx324 ing377))) -(recipe r324 (key (sy324 ing425))) -(recipe r324 (key (sx324 ing378))) -(recipe r324 (key (sy324 ing426))) -(recipe r324 (key (sx324 ing379))) -(recipe r324 (key (sy324 ing427))) -(recipe r324 (key (sx324 ing380))) -(recipe r324 (key (sy324 ing428))) -(recipe r324 (key (sx324 ing381))) -(recipe r324 (key (sy324 ing429))) -(recipe r324 (key (sx324 ing382))) -(recipe r324 (key (sy324 ing430))) -(recipe r324 (key (sx324 ing383))) -(recipe r324 (key (sy324 ing431))) -(recipe r325 (numIngredients 2)) -(recipe r325 (result (id item325))) -(recipe r325 (pattern 0 sx325)) -(recipe r325 (pattern 1 sy325)) -(recipe r325 (key (sx325 ing375))) -(recipe r325 (key (sy325 ing425))) -(recipe r325 (key (sx325 ing376))) -(recipe r325 (key (sy325 ing426))) -(recipe r325 (key (sx325 ing377))) -(recipe r325 (key (sy325 ing427))) -(recipe r325 (key (sx325 ing378))) -(recipe r325 (key (sy325 ing428))) -(recipe r325 (key (sx325 ing379))) -(recipe r325 (key (sy325 ing429))) -(recipe r325 (key (sx325 ing380))) -(recipe r325 (key (sy325 ing430))) -(recipe r325 (key (sx325 ing381))) -(recipe r325 (key (sy325 ing431))) -(recipe r325 (key (sx325 ing382))) -(recipe r325 (key (sy325 ing432))) -(recipe r325 (key (sx325 ing383))) -(recipe r325 (key (sy325 ing433))) -(recipe r325 (key (sx325 ing384))) -(recipe r325 (key (sy325 ing434))) -(recipe r325 (key (sx325 ing385))) -(recipe r325 (key (sy325 ing435))) -(recipe r325 (key (sx325 ing386))) -(recipe r325 (key (sy325 ing436))) -(recipe r326 (numIngredients 2)) -(recipe r326 (result (id item326))) -(recipe r326 (pattern 0 sx326)) -(recipe r326 (pattern 1 sy326)) -(recipe r326 (key (sx326 ing378))) -(recipe r326 (key (sy326 ing430))) -(recipe r326 (key (sx326 ing379))) -(recipe r326 (key (sy326 ing431))) -(recipe r326 (key (sx326 ing380))) -(recipe r326 (key (sy326 ing432))) -(recipe r326 (key (sx326 ing381))) -(recipe r326 (key (sy326 ing433))) -(recipe r326 (key (sx326 ing382))) -(recipe r326 (key (sy326 ing434))) -(recipe r326 (key (sx326 ing383))) -(recipe r326 (key (sy326 ing435))) -(recipe r326 (key (sx326 ing384))) -(recipe r326 (key (sy326 ing436))) -(recipe r326 (key (sx326 ing385))) -(recipe r326 (key (sy326 ing437))) -(recipe r326 (key (sx326 ing386))) -(recipe r326 (key (sy326 ing438))) -(recipe r326 (key (sx326 ing387))) -(recipe r326 (key (sy326 ing439))) -(recipe r326 (key (sx326 ing388))) -(recipe r326 (key (sy326 ing440))) -(recipe r326 (key (sx326 ing389))) -(recipe r326 (key (sy326 ing441))) -(recipe r327 (numIngredients 2)) -(recipe r327 (result (id item327))) -(recipe r327 (pattern 0 sx327)) -(recipe r327 (pattern 1 sy327)) -(recipe r327 (key (sx327 ing381))) -(recipe r327 (key (sy327 ing435))) -(recipe r327 (key (sx327 ing382))) -(recipe r327 (key (sy327 ing436))) -(recipe r327 (key (sx327 ing383))) -(recipe r327 (key (sy327 ing437))) -(recipe r327 (key (sx327 ing384))) -(recipe r327 (key (sy327 ing438))) -(recipe r327 (key (sx327 ing385))) -(recipe r327 (key (sy327 ing439))) -(recipe r327 (key (sx327 ing386))) -(recipe r327 (key (sy327 ing440))) -(recipe r327 (key (sx327 ing387))) -(recipe r327 (key (sy327 ing441))) -(recipe r327 (key (sx327 ing388))) -(recipe r327 (key (sy327 ing442))) -(recipe r327 (key (sx327 ing389))) -(recipe r327 (key (sy327 ing443))) -(recipe r327 (key (sx327 ing390))) -(recipe r327 (key (sy327 ing444))) -(recipe r327 (key (sx327 ing391))) -(recipe r327 (key (sy327 ing445))) -(recipe r327 (key (sx327 ing392))) -(recipe r327 (key (sy327 ing446))) -(recipe r328 (numIngredients 2)) -(recipe r328 (result (id item328))) -(recipe r328 (pattern 0 sx328)) -(recipe r328 (pattern 1 sy328)) -(recipe r328 (key (sx328 ing384))) -(recipe r328 (key (sy328 ing440))) -(recipe r328 (key (sx328 ing385))) -(recipe r328 (key (sy328 ing441))) -(recipe r328 (key (sx328 ing386))) -(recipe r328 (key (sy328 ing442))) -(recipe r328 (key (sx328 ing387))) -(recipe r328 (key (sy328 ing443))) -(recipe r328 (key (sx328 ing388))) -(recipe r328 (key (sy328 ing444))) -(recipe r328 (key (sx328 ing389))) -(recipe r328 (key (sy328 ing445))) -(recipe r328 (key (sx328 ing390))) -(recipe r328 (key (sy328 ing446))) -(recipe r328 (key (sx328 ing391))) -(recipe r328 (key (sy328 ing447))) -(recipe r328 (key (sx328 ing392))) -(recipe r328 (key (sy328 ing448))) -(recipe r328 (key (sx328 ing393))) -(recipe r328 (key (sy328 ing449))) -(recipe r328 (key (sx328 ing394))) -(recipe r328 (key (sy328 ing450))) -(recipe r328 (key (sx328 ing395))) -(recipe r328 (key (sy328 ing451))) -(recipe r329 (numIngredients 2)) -(recipe r329 (result (id item329))) -(recipe r329 (pattern 0 sx329)) -(recipe r329 (pattern 1 sy329)) -(recipe r329 (key (sx329 ing387))) -(recipe r329 (key (sy329 ing445))) -(recipe r329 (key (sx329 ing388))) -(recipe r329 (key (sy329 ing446))) -(recipe r329 (key (sx329 ing389))) -(recipe r329 (key (sy329 ing447))) -(recipe r329 (key (sx329 ing390))) -(recipe r329 (key (sy329 ing448))) -(recipe r329 (key (sx329 ing391))) -(recipe r329 (key (sy329 ing449))) -(recipe r329 (key (sx329 ing392))) -(recipe r329 (key (sy329 ing450))) -(recipe r329 (key (sx329 ing393))) -(recipe r329 (key (sy329 ing451))) -(recipe r329 (key (sx329 ing394))) -(recipe r329 (key (sy329 ing452))) -(recipe r329 (key (sx329 ing395))) -(recipe r329 (key (sy329 ing453))) -(recipe r329 (key (sx329 ing396))) -(recipe r329 (key (sy329 ing454))) -(recipe r329 (key (sx329 ing397))) -(recipe r329 (key (sy329 ing455))) -(recipe r329 (key (sx329 ing398))) -(recipe r329 (key (sy329 ing456))) -(recipe r330 (numIngredients 2)) -(recipe r330 (result (id item330))) -(recipe r330 (pattern 0 sx330)) -(recipe r330 (pattern 1 sy330)) -(recipe r330 (key (sx330 ing390))) -(recipe r330 (key (sy330 ing450))) -(recipe r330 (key (sx330 ing391))) -(recipe r330 (key (sy330 ing451))) -(recipe r330 (key (sx330 ing392))) -(recipe r330 (key (sy330 ing452))) -(recipe r330 (key (sx330 ing393))) -(recipe r330 (key (sy330 ing453))) -(recipe r330 (key (sx330 ing394))) -(recipe r330 (key (sy330 ing454))) -(recipe r330 (key (sx330 ing395))) -(recipe r330 (key (sy330 ing455))) -(recipe r330 (key (sx330 ing396))) -(recipe r330 (key (sy330 ing456))) -(recipe r330 (key (sx330 ing397))) -(recipe r330 (key (sy330 ing457))) -(recipe r330 (key (sx330 ing398))) -(recipe r330 (key (sy330 ing458))) -(recipe r330 (key (sx330 ing399))) -(recipe r330 (key (sy330 ing459))) -(recipe r330 (key (sx330 ing400))) -(recipe r330 (key (sy330 ing460))) -(recipe r330 (key (sx330 ing401))) -(recipe r330 (key (sy330 ing461))) -(recipe r331 (numIngredients 2)) -(recipe r331 (result (id item331))) -(recipe r331 (pattern 0 sx331)) -(recipe r331 (pattern 1 sy331)) -(recipe r331 (key (sx331 ing393))) -(recipe r331 (key (sy331 ing455))) -(recipe r331 (key (sx331 ing394))) -(recipe r331 (key (sy331 ing456))) -(recipe r331 (key (sx331 ing395))) -(recipe r331 (key (sy331 ing457))) -(recipe r331 (key (sx331 ing396))) -(recipe r331 (key (sy331 ing458))) -(recipe r331 (key (sx331 ing397))) -(recipe r331 (key (sy331 ing459))) -(recipe r331 (key (sx331 ing398))) -(recipe r331 (key (sy331 ing460))) -(recipe r331 (key (sx331 ing399))) -(recipe r331 (key (sy331 ing461))) -(recipe r331 (key (sx331 ing400))) -(recipe r331 (key (sy331 ing462))) -(recipe r331 (key (sx331 ing401))) -(recipe r331 (key (sy331 ing463))) -(recipe r331 (key (sx331 ing402))) -(recipe r331 (key (sy331 ing464))) -(recipe r331 (key (sx331 ing403))) -(recipe r331 (key (sy331 ing465))) -(recipe r331 (key (sx331 ing404))) -(recipe r331 (key (sy331 ing466))) -(recipe r332 (numIngredients 2)) -(recipe r332 (result (id item332))) -(recipe r332 (pattern 0 sx332)) -(recipe r332 (pattern 1 sy332)) -(recipe r332 (key (sx332 ing396))) -(recipe r332 (key (sy332 ing460))) -(recipe r332 (key (sx332 ing397))) -(recipe r332 (key (sy332 ing461))) -(recipe r332 (key (sx332 ing398))) -(recipe r332 (key (sy332 ing462))) -(recipe r332 (key (sx332 ing399))) -(recipe r332 (key (sy332 ing463))) -(recipe r332 (key (sx332 ing400))) -(recipe r332 (key (sy332 ing464))) -(recipe r332 (key (sx332 ing401))) -(recipe r332 (key (sy332 ing465))) -(recipe r332 (key (sx332 ing402))) -(recipe r332 (key (sy332 ing466))) -(recipe r332 (key (sx332 ing403))) -(recipe r332 (key (sy332 ing467))) -(recipe r332 (key (sx332 ing404))) -(recipe r332 (key (sy332 ing468))) -(recipe r332 (key (sx332 ing405))) -(recipe r332 (key (sy332 ing469))) -(recipe r332 (key (sx332 ing406))) -(recipe r332 (key (sy332 ing470))) -(recipe r332 (key (sx332 ing407))) -(recipe r332 (key (sy332 ing471))) -(recipe r333 (numIngredients 2)) -(recipe r333 (result (id item333))) -(recipe r333 (pattern 0 sx333)) -(recipe r333 (pattern 1 sy333)) -(recipe r333 (key (sx333 ing399))) -(recipe r333 (key (sy333 ing465))) -(recipe r333 (key (sx333 ing400))) -(recipe r333 (key (sy333 ing466))) -(recipe r333 (key (sx333 ing401))) -(recipe r333 (key (sy333 ing467))) -(recipe r333 (key (sx333 ing402))) -(recipe r333 (key (sy333 ing468))) -(recipe r333 (key (sx333 ing403))) -(recipe r333 (key (sy333 ing469))) -(recipe r333 (key (sx333 ing404))) -(recipe r333 (key (sy333 ing470))) -(recipe r333 (key (sx333 ing405))) -(recipe r333 (key (sy333 ing471))) -(recipe r333 (key (sx333 ing406))) -(recipe r333 (key (sy333 ing472))) -(recipe r333 (key (sx333 ing407))) -(recipe r333 (key (sy333 ing473))) -(recipe r333 (key (sx333 ing408))) -(recipe r333 (key (sy333 ing474))) -(recipe r333 (key (sx333 ing409))) -(recipe r333 (key (sy333 ing475))) -(recipe r333 (key (sx333 ing410))) -(recipe r333 (key (sy333 ing476))) -(recipe r334 (numIngredients 2)) -(recipe r334 (result (id item334))) -(recipe r334 (pattern 0 sx334)) -(recipe r334 (pattern 1 sy334)) -(recipe r334 (key (sx334 ing402))) -(recipe r334 (key (sy334 ing470))) -(recipe r334 (key (sx334 ing403))) -(recipe r334 (key (sy334 ing471))) -(recipe r334 (key (sx334 ing404))) -(recipe r334 (key (sy334 ing472))) -(recipe r334 (key (sx334 ing405))) -(recipe r334 (key (sy334 ing473))) -(recipe r334 (key (sx334 ing406))) -(recipe r334 (key (sy334 ing474))) -(recipe r334 (key (sx334 ing407))) -(recipe r334 (key (sy334 ing475))) -(recipe r334 (key (sx334 ing408))) -(recipe r334 (key (sy334 ing476))) -(recipe r334 (key (sx334 ing409))) -(recipe r334 (key (sy334 ing477))) -(recipe r334 (key (sx334 ing410))) -(recipe r334 (key (sy334 ing478))) -(recipe r334 (key (sx334 ing411))) -(recipe r334 (key (sy334 ing479))) -(recipe r334 (key (sx334 ing412))) -(recipe r334 (key (sy334 ing480))) -(recipe r334 (key (sx334 ing413))) -(recipe r334 (key (sy334 ing481))) -(recipe r335 (numIngredients 2)) -(recipe r335 (result (id item335))) -(recipe r335 (pattern 0 sx335)) -(recipe r335 (pattern 1 sy335)) -(recipe r335 (key (sx335 ing405))) -(recipe r335 (key (sy335 ing475))) -(recipe r335 (key (sx335 ing406))) -(recipe r335 (key (sy335 ing476))) -(recipe r335 (key (sx335 ing407))) -(recipe r335 (key (sy335 ing477))) -(recipe r335 (key (sx335 ing408))) -(recipe r335 (key (sy335 ing478))) -(recipe r335 (key (sx335 ing409))) -(recipe r335 (key (sy335 ing479))) -(recipe r335 (key (sx335 ing410))) -(recipe r335 (key (sy335 ing480))) -(recipe r335 (key (sx335 ing411))) -(recipe r335 (key (sy335 ing481))) -(recipe r335 (key (sx335 ing412))) -(recipe r335 (key (sy335 ing482))) -(recipe r335 (key (sx335 ing413))) -(recipe r335 (key (sy335 ing483))) -(recipe r335 (key (sx335 ing414))) -(recipe r335 (key (sy335 ing484))) -(recipe r335 (key (sx335 ing415))) -(recipe r335 (key (sy335 ing485))) -(recipe r335 (key (sx335 ing416))) -(recipe r335 (key (sy335 ing486))) -(recipe r336 (numIngredients 2)) -(recipe r336 (result (id item336))) -(recipe r336 (pattern 0 sx336)) -(recipe r336 (pattern 1 sy336)) -(recipe r336 (key (sx336 ing408))) -(recipe r336 (key (sy336 ing480))) -(recipe r336 (key (sx336 ing409))) -(recipe r336 (key (sy336 ing481))) -(recipe r336 (key (sx336 ing410))) -(recipe r336 (key (sy336 ing482))) -(recipe r336 (key (sx336 ing411))) -(recipe r336 (key (sy336 ing483))) -(recipe r336 (key (sx336 ing412))) -(recipe r336 (key (sy336 ing484))) -(recipe r336 (key (sx336 ing413))) -(recipe r336 (key (sy336 ing485))) -(recipe r336 (key (sx336 ing414))) -(recipe r336 (key (sy336 ing486))) -(recipe r336 (key (sx336 ing415))) -(recipe r336 (key (sy336 ing487))) -(recipe r336 (key (sx336 ing416))) -(recipe r336 (key (sy336 ing488))) -(recipe r336 (key (sx336 ing417))) -(recipe r336 (key (sy336 ing489))) -(recipe r336 (key (sx336 ing418))) -(recipe r336 (key (sy336 ing490))) -(recipe r336 (key (sx336 ing419))) -(recipe r336 (key (sy336 ing491))) -(recipe r337 (numIngredients 2)) -(recipe r337 (result (id item337))) -(recipe r337 (pattern 0 sx337)) -(recipe r337 (pattern 1 sy337)) -(recipe r337 (key (sx337 ing411))) -(recipe r337 (key (sy337 ing485))) -(recipe r337 (key (sx337 ing412))) -(recipe r337 (key (sy337 ing486))) -(recipe r337 (key (sx337 ing413))) -(recipe r337 (key (sy337 ing487))) -(recipe r337 (key (sx337 ing414))) -(recipe r337 (key (sy337 ing488))) -(recipe r337 (key (sx337 ing415))) -(recipe r337 (key (sy337 ing489))) -(recipe r337 (key (sx337 ing416))) -(recipe r337 (key (sy337 ing490))) -(recipe r337 (key (sx337 ing417))) -(recipe r337 (key (sy337 ing491))) -(recipe r337 (key (sx337 ing418))) -(recipe r337 (key (sy337 ing492))) -(recipe r337 (key (sx337 ing419))) -(recipe r337 (key (sy337 ing493))) -(recipe r337 (key (sx337 ing420))) -(recipe r337 (key (sy337 ing494))) -(recipe r337 (key (sx337 ing421))) -(recipe r337 (key (sy337 ing495))) -(recipe r337 (key (sx337 ing422))) -(recipe r337 (key (sy337 ing496))) -(recipe r338 (numIngredients 2)) -(recipe r338 (result (id item338))) -(recipe r338 (pattern 0 sx338)) -(recipe r338 (pattern 1 sy338)) -(recipe r338 (key (sx338 ing414))) -(recipe r338 (key (sy338 ing490))) -(recipe r338 (key (sx338 ing415))) -(recipe r338 (key (sy338 ing491))) -(recipe r338 (key (sx338 ing416))) -(recipe r338 (key (sy338 ing492))) -(recipe r338 (key (sx338 ing417))) -(recipe r338 (key (sy338 ing493))) -(recipe r338 (key (sx338 ing418))) -(recipe r338 (key (sy338 ing494))) -(recipe r338 (key (sx338 ing419))) -(recipe r338 (key (sy338 ing495))) -(recipe r338 (key (sx338 ing420))) -(recipe r338 (key (sy338 ing496))) -(recipe r338 (key (sx338 ing421))) -(recipe r338 (key (sy338 ing497))) -(recipe r338 (key (sx338 ing422))) -(recipe r338 (key (sy338 ing498))) -(recipe r338 (key (sx338 ing423))) -(recipe r338 (key (sy338 ing499))) -(recipe r338 (key (sx338 ing424))) -(recipe r338 (key (sy338 ing500))) -(recipe r338 (key (sx338 ing425))) -(recipe r338 (key (sy338 ing501))) -(recipe r339 (numIngredients 2)) -(recipe r339 (result (id item339))) -(recipe r339 (pattern 0 sx339)) -(recipe r339 (pattern 1 sy339)) -(recipe r339 (key (sx339 ing417))) -(recipe r339 (key (sy339 ing495))) -(recipe r339 (key (sx339 ing418))) -(recipe r339 (key (sy339 ing496))) -(recipe r339 (key (sx339 ing419))) -(recipe r339 (key (sy339 ing497))) -(recipe r339 (key (sx339 ing420))) -(recipe r339 (key (sy339 ing498))) -(recipe r339 (key (sx339 ing421))) -(recipe r339 (key (sy339 ing499))) -(recipe r339 (key (sx339 ing422))) -(recipe r339 (key (sy339 ing500))) -(recipe r339 (key (sx339 ing423))) -(recipe r339 (key (sy339 ing501))) -(recipe r339 (key (sx339 ing424))) -(recipe r339 (key (sy339 ing502))) -(recipe r339 (key (sx339 ing425))) -(recipe r339 (key (sy339 ing503))) -(recipe r339 (key (sx339 ing426))) -(recipe r339 (key (sy339 ing504))) -(recipe r339 (key (sx339 ing427))) -(recipe r339 (key (sy339 ing505))) -(recipe r339 (key (sx339 ing428))) -(recipe r339 (key (sy339 ing506))) -(recipe r340 (numIngredients 2)) -(recipe r340 (result (id item340))) -(recipe r340 (pattern 0 sx340)) -(recipe r340 (pattern 1 sy340)) -(recipe r340 (key (sx340 ing420))) -(recipe r340 (key (sy340 ing500))) -(recipe r340 (key (sx340 ing421))) -(recipe r340 (key (sy340 ing501))) -(recipe r340 (key (sx340 ing422))) -(recipe r340 (key (sy340 ing502))) -(recipe r340 (key (sx340 ing423))) -(recipe r340 (key (sy340 ing503))) -(recipe r340 (key (sx340 ing424))) -(recipe r340 (key (sy340 ing504))) -(recipe r340 (key (sx340 ing425))) -(recipe r340 (key (sy340 ing505))) -(recipe r340 (key (sx340 ing426))) -(recipe r340 (key (sy340 ing506))) -(recipe r340 (key (sx340 ing427))) -(recipe r340 (key (sy340 ing507))) -(recipe r340 (key (sx340 ing428))) -(recipe r340 (key (sy340 ing508))) -(recipe r340 (key (sx340 ing429))) -(recipe r340 (key (sy340 ing509))) -(recipe r340 (key (sx340 ing430))) -(recipe r340 (key (sy340 ing510))) -(recipe r340 (key (sx340 ing431))) -(recipe r340 (key (sy340 ing511))) -(recipe r341 (numIngredients 2)) -(recipe r341 (result (id item341))) -(recipe r341 (pattern 0 sx341)) -(recipe r341 (pattern 1 sy341)) -(recipe r341 (key (sx341 ing423))) -(recipe r341 (key (sy341 ing505))) -(recipe r341 (key (sx341 ing424))) -(recipe r341 (key (sy341 ing506))) -(recipe r341 (key (sx341 ing425))) -(recipe r341 (key (sy341 ing507))) -(recipe r341 (key (sx341 ing426))) -(recipe r341 (key (sy341 ing508))) -(recipe r341 (key (sx341 ing427))) -(recipe r341 (key (sy341 ing509))) -(recipe r341 (key (sx341 ing428))) -(recipe r341 (key (sy341 ing510))) -(recipe r341 (key (sx341 ing429))) -(recipe r341 (key (sy341 ing511))) -(recipe r341 (key (sx341 ing430))) -(recipe r341 (key (sy341 ing512))) -(recipe r341 (key (sx341 ing431))) -(recipe r341 (key (sy341 ing513))) -(recipe r341 (key (sx341 ing432))) -(recipe r341 (key (sy341 ing514))) -(recipe r341 (key (sx341 ing433))) -(recipe r341 (key (sy341 ing515))) -(recipe r341 (key (sx341 ing434))) -(recipe r341 (key (sy341 ing516))) -(recipe r342 (numIngredients 2)) -(recipe r342 (result (id item342))) -(recipe r342 (pattern 0 sx342)) -(recipe r342 (pattern 1 sy342)) -(recipe r342 (key (sx342 ing426))) -(recipe r342 (key (sy342 ing510))) -(recipe r342 (key (sx342 ing427))) -(recipe r342 (key (sy342 ing511))) -(recipe r342 (key (sx342 ing428))) -(recipe r342 (key (sy342 ing512))) -(recipe r342 (key (sx342 ing429))) -(recipe r342 (key (sy342 ing513))) -(recipe r342 (key (sx342 ing430))) -(recipe r342 (key (sy342 ing514))) -(recipe r342 (key (sx342 ing431))) -(recipe r342 (key (sy342 ing515))) -(recipe r342 (key (sx342 ing432))) -(recipe r342 (key (sy342 ing516))) -(recipe r342 (key (sx342 ing433))) -(recipe r342 (key (sy342 ing517))) -(recipe r342 (key (sx342 ing434))) -(recipe r342 (key (sy342 ing518))) -(recipe r342 (key (sx342 ing435))) -(recipe r342 (key (sy342 ing519))) -(recipe r342 (key (sx342 ing436))) -(recipe r342 (key (sy342 ing520))) -(recipe r342 (key (sx342 ing437))) -(recipe r342 (key (sy342 ing521))) -(recipe r343 (numIngredients 2)) -(recipe r343 (result (id item343))) -(recipe r343 (pattern 0 sx343)) -(recipe r343 (pattern 1 sy343)) -(recipe r343 (key (sx343 ing429))) -(recipe r343 (key (sy343 ing515))) -(recipe r343 (key (sx343 ing430))) -(recipe r343 (key (sy343 ing516))) -(recipe r343 (key (sx343 ing431))) -(recipe r343 (key (sy343 ing517))) -(recipe r343 (key (sx343 ing432))) -(recipe r343 (key (sy343 ing518))) -(recipe r343 (key (sx343 ing433))) -(recipe r343 (key (sy343 ing519))) -(recipe r343 (key (sx343 ing434))) -(recipe r343 (key (sy343 ing520))) -(recipe r343 (key (sx343 ing435))) -(recipe r343 (key (sy343 ing521))) -(recipe r343 (key (sx343 ing436))) -(recipe r343 (key (sy343 ing522))) -(recipe r343 (key (sx343 ing437))) -(recipe r343 (key (sy343 ing523))) -(recipe r343 (key (sx343 ing438))) -(recipe r343 (key (sy343 ing524))) -(recipe r343 (key (sx343 ing439))) -(recipe r343 (key (sy343 ing525))) -(recipe r343 (key (sx343 ing440))) -(recipe r343 (key (sy343 ing526))) -(recipe r344 (numIngredients 2)) -(recipe r344 (result (id item344))) -(recipe r344 (pattern 0 sx344)) -(recipe r344 (pattern 1 sy344)) -(recipe r344 (key (sx344 ing432))) -(recipe r344 (key (sy344 ing520))) -(recipe r344 (key (sx344 ing433))) -(recipe r344 (key (sy344 ing521))) -(recipe r344 (key (sx344 ing434))) -(recipe r344 (key (sy344 ing522))) -(recipe r344 (key (sx344 ing435))) -(recipe r344 (key (sy344 ing523))) -(recipe r344 (key (sx344 ing436))) -(recipe r344 (key (sy344 ing524))) -(recipe r344 (key (sx344 ing437))) -(recipe r344 (key (sy344 ing525))) -(recipe r344 (key (sx344 ing438))) -(recipe r344 (key (sy344 ing526))) -(recipe r344 (key (sx344 ing439))) -(recipe r344 (key (sy344 ing527))) -(recipe r344 (key (sx344 ing440))) -(recipe r344 (key (sy344 ing528))) -(recipe r344 (key (sx344 ing441))) -(recipe r344 (key (sy344 ing529))) -(recipe r344 (key (sx344 ing442))) -(recipe r344 (key (sy344 ing530))) -(recipe r344 (key (sx344 ing443))) -(recipe r344 (key (sy344 ing531))) -(recipe r345 (numIngredients 2)) -(recipe r345 (result (id item345))) -(recipe r345 (pattern 0 sx345)) -(recipe r345 (pattern 1 sy345)) -(recipe r345 (key (sx345 ing435))) -(recipe r345 (key (sy345 ing525))) -(recipe r345 (key (sx345 ing436))) -(recipe r345 (key (sy345 ing526))) -(recipe r345 (key (sx345 ing437))) -(recipe r345 (key (sy345 ing527))) -(recipe r345 (key (sx345 ing438))) -(recipe r345 (key (sy345 ing528))) -(recipe r345 (key (sx345 ing439))) -(recipe r345 (key (sy345 ing529))) -(recipe r345 (key (sx345 ing440))) -(recipe r345 (key (sy345 ing530))) -(recipe r345 (key (sx345 ing441))) -(recipe r345 (key (sy345 ing531))) -(recipe r345 (key (sx345 ing442))) -(recipe r345 (key (sy345 ing532))) -(recipe r345 (key (sx345 ing443))) -(recipe r345 (key (sy345 ing533))) -(recipe r345 (key (sx345 ing444))) -(recipe r345 (key (sy345 ing534))) -(recipe r345 (key (sx345 ing445))) -(recipe r345 (key (sy345 ing535))) -(recipe r345 (key (sx345 ing446))) -(recipe r345 (key (sy345 ing536))) -(recipe r346 (numIngredients 2)) -(recipe r346 (result (id item346))) -(recipe r346 (pattern 0 sx346)) -(recipe r346 (pattern 1 sy346)) -(recipe r346 (key (sx346 ing438))) -(recipe r346 (key (sy346 ing530))) -(recipe r346 (key (sx346 ing439))) -(recipe r346 (key (sy346 ing531))) -(recipe r346 (key (sx346 ing440))) -(recipe r346 (key (sy346 ing532))) -(recipe r346 (key (sx346 ing441))) -(recipe r346 (key (sy346 ing533))) -(recipe r346 (key (sx346 ing442))) -(recipe r346 (key (sy346 ing534))) -(recipe r346 (key (sx346 ing443))) -(recipe r346 (key (sy346 ing535))) -(recipe r346 (key (sx346 ing444))) -(recipe r346 (key (sy346 ing536))) -(recipe r346 (key (sx346 ing445))) -(recipe r346 (key (sy346 ing537))) -(recipe r346 (key (sx346 ing446))) -(recipe r346 (key (sy346 ing538))) -(recipe r346 (key (sx346 ing447))) -(recipe r346 (key (sy346 ing539))) -(recipe r346 (key (sx346 ing448))) -(recipe r346 (key (sy346 ing540))) -(recipe r346 (key (sx346 ing449))) -(recipe r346 (key (sy346 ing541))) -(recipe r347 (numIngredients 2)) -(recipe r347 (result (id item347))) -(recipe r347 (pattern 0 sx347)) -(recipe r347 (pattern 1 sy347)) -(recipe r347 (key (sx347 ing441))) -(recipe r347 (key (sy347 ing535))) -(recipe r347 (key (sx347 ing442))) -(recipe r347 (key (sy347 ing536))) -(recipe r347 (key (sx347 ing443))) -(recipe r347 (key (sy347 ing537))) -(recipe r347 (key (sx347 ing444))) -(recipe r347 (key (sy347 ing538))) -(recipe r347 (key (sx347 ing445))) -(recipe r347 (key (sy347 ing539))) -(recipe r347 (key (sx347 ing446))) -(recipe r347 (key (sy347 ing540))) -(recipe r347 (key (sx347 ing447))) -(recipe r347 (key (sy347 ing541))) -(recipe r347 (key (sx347 ing448))) -(recipe r347 (key (sy347 ing542))) -(recipe r347 (key (sx347 ing449))) -(recipe r347 (key (sy347 ing543))) -(recipe r347 (key (sx347 ing450))) -(recipe r347 (key (sy347 ing544))) -(recipe r347 (key (sx347 ing451))) -(recipe r347 (key (sy347 ing545))) -(recipe r347 (key (sx347 ing452))) -(recipe r347 (key (sy347 ing546))) -(recipe r348 (numIngredients 2)) -(recipe r348 (result (id item348))) -(recipe r348 (pattern 0 sx348)) -(recipe r348 (pattern 1 sy348)) -(recipe r348 (key (sx348 ing444))) -(recipe r348 (key (sy348 ing540))) -(recipe r348 (key (sx348 ing445))) -(recipe r348 (key (sy348 ing541))) -(recipe r348 (key (sx348 ing446))) -(recipe r348 (key (sy348 ing542))) -(recipe r348 (key (sx348 ing447))) -(recipe r348 (key (sy348 ing543))) -(recipe r348 (key (sx348 ing448))) -(recipe r348 (key (sy348 ing544))) -(recipe r348 (key (sx348 ing449))) -(recipe r348 (key (sy348 ing545))) -(recipe r348 (key (sx348 ing450))) -(recipe r348 (key (sy348 ing546))) -(recipe r348 (key (sx348 ing451))) -(recipe r348 (key (sy348 ing547))) -(recipe r348 (key (sx348 ing452))) -(recipe r348 (key (sy348 ing548))) -(recipe r348 (key (sx348 ing453))) -(recipe r348 (key (sy348 ing549))) -(recipe r348 (key (sx348 ing454))) -(recipe r348 (key (sy348 ing550))) -(recipe r348 (key (sx348 ing455))) -(recipe r348 (key (sy348 ing551))) -(recipe r349 (numIngredients 2)) -(recipe r349 (result (id item349))) -(recipe r349 (pattern 0 sx349)) -(recipe r349 (pattern 1 sy349)) -(recipe r349 (key (sx349 ing447))) -(recipe r349 (key (sy349 ing545))) -(recipe r349 (key (sx349 ing448))) -(recipe r349 (key (sy349 ing546))) -(recipe r349 (key (sx349 ing449))) -(recipe r349 (key (sy349 ing547))) -(recipe r349 (key (sx349 ing450))) -(recipe r349 (key (sy349 ing548))) -(recipe r349 (key (sx349 ing451))) -(recipe r349 (key (sy349 ing549))) -(recipe r349 (key (sx349 ing452))) -(recipe r349 (key (sy349 ing550))) -(recipe r349 (key (sx349 ing453))) -(recipe r349 (key (sy349 ing551))) -(recipe r349 (key (sx349 ing454))) -(recipe r349 (key (sy349 ing552))) -(recipe r349 (key (sx349 ing455))) -(recipe r349 (key (sy349 ing553))) -(recipe r349 (key (sx349 ing456))) -(recipe r349 (key (sy349 ing554))) -(recipe r349 (key (sx349 ing457))) -(recipe r349 (key (sy349 ing555))) -(recipe r349 (key (sx349 ing458))) -(recipe r349 (key (sy349 ing556))) -(recipe r350 (numIngredients 2)) -(recipe r350 (result (id item350))) -(recipe r350 (pattern 0 sx350)) -(recipe r350 (pattern 1 sy350)) -(recipe r350 (key (sx350 ing450))) -(recipe r350 (key (sy350 ing550))) -(recipe r350 (key (sx350 ing451))) -(recipe r350 (key (sy350 ing551))) -(recipe r350 (key (sx350 ing452))) -(recipe r350 (key (sy350 ing552))) -(recipe r350 (key (sx350 ing453))) -(recipe r350 (key (sy350 ing553))) -(recipe r350 (key (sx350 ing454))) -(recipe r350 (key (sy350 ing554))) -(recipe r350 (key (sx350 ing455))) -(recipe r350 (key (sy350 ing555))) -(recipe r350 (key (sx350 ing456))) -(recipe r350 (key (sy350 ing556))) -(recipe r350 (key (sx350 ing457))) -(recipe r350 (key (sy350 ing557))) -(recipe r350 (key (sx350 ing458))) -(recipe r350 (key (sy350 ing558))) -(recipe r350 (key (sx350 ing459))) -(recipe r350 (key (sy350 ing559))) -(recipe r350 (key (sx350 ing460))) -(recipe r350 (key (sy350 ing560))) -(recipe r350 (key (sx350 ing461))) -(recipe r350 (key (sy350 ing561))) -(recipe r351 (numIngredients 2)) -(recipe r351 (result (id item351))) -(recipe r351 (pattern 0 sx351)) -(recipe r351 (pattern 1 sy351)) -(recipe r351 (key (sx351 ing453))) -(recipe r351 (key (sy351 ing555))) -(recipe r351 (key (sx351 ing454))) -(recipe r351 (key (sy351 ing556))) -(recipe r351 (key (sx351 ing455))) -(recipe r351 (key (sy351 ing557))) -(recipe r351 (key (sx351 ing456))) -(recipe r351 (key (sy351 ing558))) -(recipe r351 (key (sx351 ing457))) -(recipe r351 (key (sy351 ing559))) -(recipe r351 (key (sx351 ing458))) -(recipe r351 (key (sy351 ing560))) -(recipe r351 (key (sx351 ing459))) -(recipe r351 (key (sy351 ing561))) -(recipe r351 (key (sx351 ing460))) -(recipe r351 (key (sy351 ing562))) -(recipe r351 (key (sx351 ing461))) -(recipe r351 (key (sy351 ing563))) -(recipe r351 (key (sx351 ing462))) -(recipe r351 (key (sy351 ing564))) -(recipe r351 (key (sx351 ing463))) -(recipe r351 (key (sy351 ing565))) -(recipe r351 (key (sx351 ing464))) -(recipe r351 (key (sy351 ing566))) -(recipe r352 (numIngredients 2)) -(recipe r352 (result (id item352))) -(recipe r352 (pattern 0 sx352)) -(recipe r352 (pattern 1 sy352)) -(recipe r352 (key (sx352 ing456))) -(recipe r352 (key (sy352 ing560))) -(recipe r352 (key (sx352 ing457))) -(recipe r352 (key (sy352 ing561))) -(recipe r352 (key (sx352 ing458))) -(recipe r352 (key (sy352 ing562))) -(recipe r352 (key (sx352 ing459))) -(recipe r352 (key (sy352 ing563))) -(recipe r352 (key (sx352 ing460))) -(recipe r352 (key (sy352 ing564))) -(recipe r352 (key (sx352 ing461))) -(recipe r352 (key (sy352 ing565))) -(recipe r352 (key (sx352 ing462))) -(recipe r352 (key (sy352 ing566))) -(recipe r352 (key (sx352 ing463))) -(recipe r352 (key (sy352 ing567))) -(recipe r352 (key (sx352 ing464))) -(recipe r352 (key (sy352 ing568))) -(recipe r352 (key (sx352 ing465))) -(recipe r352 (key (sy352 ing569))) -(recipe r352 (key (sx352 ing466))) -(recipe r352 (key (sy352 ing570))) -(recipe r352 (key (sx352 ing467))) -(recipe r352 (key (sy352 ing571))) -(recipe r353 (numIngredients 2)) -(recipe r353 (result (id item353))) -(recipe r353 (pattern 0 sx353)) -(recipe r353 (pattern 1 sy353)) -(recipe r353 (key (sx353 ing459))) -(recipe r353 (key (sy353 ing565))) -(recipe r353 (key (sx353 ing460))) -(recipe r353 (key (sy353 ing566))) -(recipe r353 (key (sx353 ing461))) -(recipe r353 (key (sy353 ing567))) -(recipe r353 (key (sx353 ing462))) -(recipe r353 (key (sy353 ing568))) -(recipe r353 (key (sx353 ing463))) -(recipe r353 (key (sy353 ing569))) -(recipe r353 (key (sx353 ing464))) -(recipe r353 (key (sy353 ing570))) -(recipe r353 (key (sx353 ing465))) -(recipe r353 (key (sy353 ing571))) -(recipe r353 (key (sx353 ing466))) -(recipe r353 (key (sy353 ing572))) -(recipe r353 (key (sx353 ing467))) -(recipe r353 (key (sy353 ing573))) -(recipe r353 (key (sx353 ing468))) -(recipe r353 (key (sy353 ing574))) -(recipe r353 (key (sx353 ing469))) -(recipe r353 (key (sy353 ing575))) -(recipe r353 (key (sx353 ing470))) -(recipe r353 (key (sy353 ing576))) -(recipe r354 (numIngredients 2)) -(recipe r354 (result (id item354))) -(recipe r354 (pattern 0 sx354)) -(recipe r354 (pattern 1 sy354)) -(recipe r354 (key (sx354 ing462))) -(recipe r354 (key (sy354 ing570))) -(recipe r354 (key (sx354 ing463))) -(recipe r354 (key (sy354 ing571))) -(recipe r354 (key (sx354 ing464))) -(recipe r354 (key (sy354 ing572))) -(recipe r354 (key (sx354 ing465))) -(recipe r354 (key (sy354 ing573))) -(recipe r354 (key (sx354 ing466))) -(recipe r354 (key (sy354 ing574))) -(recipe r354 (key (sx354 ing467))) -(recipe r354 (key (sy354 ing575))) -(recipe r354 (key (sx354 ing468))) -(recipe r354 (key (sy354 ing576))) -(recipe r354 (key (sx354 ing469))) -(recipe r354 (key (sy354 ing577))) -(recipe r354 (key (sx354 ing470))) -(recipe r354 (key (sy354 ing578))) -(recipe r354 (key (sx354 ing471))) -(recipe r354 (key (sy354 ing579))) -(recipe r354 (key (sx354 ing472))) -(recipe r354 (key (sy354 ing580))) -(recipe r354 (key (sx354 ing473))) -(recipe r354 (key (sy354 ing581))) -(recipe r355 (numIngredients 2)) -(recipe r355 (result (id item355))) -(recipe r355 (pattern 0 sx355)) -(recipe r355 (pattern 1 sy355)) -(recipe r355 (key (sx355 ing465))) -(recipe r355 (key (sy355 ing575))) -(recipe r355 (key (sx355 ing466))) -(recipe r355 (key (sy355 ing576))) -(recipe r355 (key (sx355 ing467))) -(recipe r355 (key (sy355 ing577))) -(recipe r355 (key (sx355 ing468))) -(recipe r355 (key (sy355 ing578))) -(recipe r355 (key (sx355 ing469))) -(recipe r355 (key (sy355 ing579))) -(recipe r355 (key (sx355 ing470))) -(recipe r355 (key (sy355 ing580))) -(recipe r355 (key (sx355 ing471))) -(recipe r355 (key (sy355 ing581))) -(recipe r355 (key (sx355 ing472))) -(recipe r355 (key (sy355 ing582))) -(recipe r355 (key (sx355 ing473))) -(recipe r355 (key (sy355 ing583))) -(recipe r355 (key (sx355 ing474))) -(recipe r355 (key (sy355 ing584))) -(recipe r355 (key (sx355 ing475))) -(recipe r355 (key (sy355 ing585))) -(recipe r355 (key (sx355 ing476))) -(recipe r355 (key (sy355 ing586))) -(recipe r356 (numIngredients 2)) -(recipe r356 (result (id item356))) -(recipe r356 (pattern 0 sx356)) -(recipe r356 (pattern 1 sy356)) -(recipe r356 (key (sx356 ing468))) -(recipe r356 (key (sy356 ing580))) -(recipe r356 (key (sx356 ing469))) -(recipe r356 (key (sy356 ing581))) -(recipe r356 (key (sx356 ing470))) -(recipe r356 (key (sy356 ing582))) -(recipe r356 (key (sx356 ing471))) -(recipe r356 (key (sy356 ing583))) -(recipe r356 (key (sx356 ing472))) -(recipe r356 (key (sy356 ing584))) -(recipe r356 (key (sx356 ing473))) -(recipe r356 (key (sy356 ing585))) -(recipe r356 (key (sx356 ing474))) -(recipe r356 (key (sy356 ing586))) -(recipe r356 (key (sx356 ing475))) -(recipe r356 (key (sy356 ing587))) -(recipe r356 (key (sx356 ing476))) -(recipe r356 (key (sy356 ing588))) -(recipe r356 (key (sx356 ing477))) -(recipe r356 (key (sy356 ing589))) -(recipe r356 (key (sx356 ing478))) -(recipe r356 (key (sy356 ing590))) -(recipe r356 (key (sx356 ing479))) -(recipe r356 (key (sy356 ing591))) -(recipe r357 (numIngredients 2)) -(recipe r357 (result (id item357))) -(recipe r357 (pattern 0 sx357)) -(recipe r357 (pattern 1 sy357)) -(recipe r357 (key (sx357 ing471))) -(recipe r357 (key (sy357 ing585))) -(recipe r357 (key (sx357 ing472))) -(recipe r357 (key (sy357 ing586))) -(recipe r357 (key (sx357 ing473))) -(recipe r357 (key (sy357 ing587))) -(recipe r357 (key (sx357 ing474))) -(recipe r357 (key (sy357 ing588))) -(recipe r357 (key (sx357 ing475))) -(recipe r357 (key (sy357 ing589))) -(recipe r357 (key (sx357 ing476))) -(recipe r357 (key (sy357 ing590))) -(recipe r357 (key (sx357 ing477))) -(recipe r357 (key (sy357 ing591))) -(recipe r357 (key (sx357 ing478))) -(recipe r357 (key (sy357 ing592))) -(recipe r357 (key (sx357 ing479))) -(recipe r357 (key (sy357 ing593))) -(recipe r357 (key (sx357 ing480))) -(recipe r357 (key (sy357 ing594))) -(recipe r357 (key (sx357 ing481))) -(recipe r357 (key (sy357 ing595))) -(recipe r357 (key (sx357 ing482))) -(recipe r357 (key (sy357 ing596))) -(recipe r358 (numIngredients 2)) -(recipe r358 (result (id item358))) -(recipe r358 (pattern 0 sx358)) -(recipe r358 (pattern 1 sy358)) -(recipe r358 (key (sx358 ing474))) -(recipe r358 (key (sy358 ing590))) -(recipe r358 (key (sx358 ing475))) -(recipe r358 (key (sy358 ing591))) -(recipe r358 (key (sx358 ing476))) -(recipe r358 (key (sy358 ing592))) -(recipe r358 (key (sx358 ing477))) -(recipe r358 (key (sy358 ing593))) -(recipe r358 (key (sx358 ing478))) -(recipe r358 (key (sy358 ing594))) -(recipe r358 (key (sx358 ing479))) -(recipe r358 (key (sy358 ing595))) -(recipe r358 (key (sx358 ing480))) -(recipe r358 (key (sy358 ing596))) -(recipe r358 (key (sx358 ing481))) -(recipe r358 (key (sy358 ing597))) -(recipe r358 (key (sx358 ing482))) -(recipe r358 (key (sy358 ing598))) -(recipe r358 (key (sx358 ing483))) -(recipe r358 (key (sy358 ing599))) -(recipe r358 (key (sx358 ing484))) -(recipe r358 (key (sy358 ing0))) -(recipe r358 (key (sx358 ing485))) -(recipe r358 (key (sy358 ing1))) -(recipe r359 (numIngredients 2)) -(recipe r359 (result (id item359))) -(recipe r359 (pattern 0 sx359)) -(recipe r359 (pattern 1 sy359)) -(recipe r359 (key (sx359 ing477))) -(recipe r359 (key (sy359 ing595))) -(recipe r359 (key (sx359 ing478))) -(recipe r359 (key (sy359 ing596))) -(recipe r359 (key (sx359 ing479))) -(recipe r359 (key (sy359 ing597))) -(recipe r359 (key (sx359 ing480))) -(recipe r359 (key (sy359 ing598))) -(recipe r359 (key (sx359 ing481))) -(recipe r359 (key (sy359 ing599))) -(recipe r359 (key (sx359 ing482))) -(recipe r359 (key (sy359 ing0))) -(recipe r359 (key (sx359 ing483))) -(recipe r359 (key (sy359 ing1))) -(recipe r359 (key (sx359 ing484))) -(recipe r359 (key (sy359 ing2))) -(recipe r359 (key (sx359 ing485))) -(recipe r359 (key (sy359 ing3))) -(recipe r359 (key (sx359 ing486))) -(recipe r359 (key (sy359 ing4))) -(recipe r359 (key (sx359 ing487))) -(recipe r359 (key (sy359 ing5))) -(recipe r359 (key (sx359 ing488))) -(recipe r359 (key (sy359 ing6))) -(recipe r360 (numIngredients 2)) -(recipe r360 (result (id item360))) -(recipe r360 (pattern 0 sx360)) -(recipe r360 (pattern 1 sy360)) -(recipe r360 (key (sx360 ing480))) -(recipe r360 (key (sy360 ing0))) -(recipe r360 (key (sx360 ing481))) -(recipe r360 (key (sy360 ing1))) -(recipe r360 (key (sx360 ing482))) -(recipe r360 (key (sy360 ing2))) -(recipe r360 (key (sx360 ing483))) -(recipe r360 (key (sy360 ing3))) -(recipe r360 (key (sx360 ing484))) -(recipe r360 (key (sy360 ing4))) -(recipe r360 (key (sx360 ing485))) -(recipe r360 (key (sy360 ing5))) -(recipe r360 (key (sx360 ing486))) -(recipe r360 (key (sy360 ing6))) -(recipe r360 (key (sx360 ing487))) -(recipe r360 (key (sy360 ing7))) -(recipe r360 (key (sx360 ing488))) -(recipe r360 (key (sy360 ing8))) -(recipe r360 (key (sx360 ing489))) -(recipe r360 (key (sy360 ing9))) -(recipe r360 (key (sx360 ing490))) -(recipe r360 (key (sy360 ing10))) -(recipe r360 (key (sx360 ing491))) -(recipe r360 (key (sy360 ing11))) -(recipe r361 (numIngredients 2)) -(recipe r361 (result (id item361))) -(recipe r361 (pattern 0 sx361)) -(recipe r361 (pattern 1 sy361)) -(recipe r361 (key (sx361 ing483))) -(recipe r361 (key (sy361 ing5))) -(recipe r361 (key (sx361 ing484))) -(recipe r361 (key (sy361 ing6))) -(recipe r361 (key (sx361 ing485))) -(recipe r361 (key (sy361 ing7))) -(recipe r361 (key (sx361 ing486))) -(recipe r361 (key (sy361 ing8))) -(recipe r361 (key (sx361 ing487))) -(recipe r361 (key (sy361 ing9))) -(recipe r361 (key (sx361 ing488))) -(recipe r361 (key (sy361 ing10))) -(recipe r361 (key (sx361 ing489))) -(recipe r361 (key (sy361 ing11))) -(recipe r361 (key (sx361 ing490))) -(recipe r361 (key (sy361 ing12))) -(recipe r361 (key (sx361 ing491))) -(recipe r361 (key (sy361 ing13))) -(recipe r361 (key (sx361 ing492))) -(recipe r361 (key (sy361 ing14))) -(recipe r361 (key (sx361 ing493))) -(recipe r361 (key (sy361 ing15))) -(recipe r361 (key (sx361 ing494))) -(recipe r361 (key (sy361 ing16))) -(recipe r362 (numIngredients 2)) -(recipe r362 (result (id item362))) -(recipe r362 (pattern 0 sx362)) -(recipe r362 (pattern 1 sy362)) -(recipe r362 (key (sx362 ing486))) -(recipe r362 (key (sy362 ing10))) -(recipe r362 (key (sx362 ing487))) -(recipe r362 (key (sy362 ing11))) -(recipe r362 (key (sx362 ing488))) -(recipe r362 (key (sy362 ing12))) -(recipe r362 (key (sx362 ing489))) -(recipe r362 (key (sy362 ing13))) -(recipe r362 (key (sx362 ing490))) -(recipe r362 (key (sy362 ing14))) -(recipe r362 (key (sx362 ing491))) -(recipe r362 (key (sy362 ing15))) -(recipe r362 (key (sx362 ing492))) -(recipe r362 (key (sy362 ing16))) -(recipe r362 (key (sx362 ing493))) -(recipe r362 (key (sy362 ing17))) -(recipe r362 (key (sx362 ing494))) -(recipe r362 (key (sy362 ing18))) -(recipe r362 (key (sx362 ing495))) -(recipe r362 (key (sy362 ing19))) -(recipe r362 (key (sx362 ing496))) -(recipe r362 (key (sy362 ing20))) -(recipe r362 (key (sx362 ing497))) -(recipe r362 (key (sy362 ing21))) -(recipe r363 (numIngredients 2)) -(recipe r363 (result (id item363))) -(recipe r363 (pattern 0 sx363)) -(recipe r363 (pattern 1 sy363)) -(recipe r363 (key (sx363 ing489))) -(recipe r363 (key (sy363 ing15))) -(recipe r363 (key (sx363 ing490))) -(recipe r363 (key (sy363 ing16))) -(recipe r363 (key (sx363 ing491))) -(recipe r363 (key (sy363 ing17))) -(recipe r363 (key (sx363 ing492))) -(recipe r363 (key (sy363 ing18))) -(recipe r363 (key (sx363 ing493))) -(recipe r363 (key (sy363 ing19))) -(recipe r363 (key (sx363 ing494))) -(recipe r363 (key (sy363 ing20))) -(recipe r363 (key (sx363 ing495))) -(recipe r363 (key (sy363 ing21))) -(recipe r363 (key (sx363 ing496))) -(recipe r363 (key (sy363 ing22))) -(recipe r363 (key (sx363 ing497))) -(recipe r363 (key (sy363 ing23))) -(recipe r363 (key (sx363 ing498))) -(recipe r363 (key (sy363 ing24))) -(recipe r363 (key (sx363 ing499))) -(recipe r363 (key (sy363 ing25))) -(recipe r363 (key (sx363 ing500))) -(recipe r363 (key (sy363 ing26))) -(recipe r364 (numIngredients 2)) -(recipe r364 (result (id item364))) -(recipe r364 (pattern 0 sx364)) -(recipe r364 (pattern 1 sy364)) -(recipe r364 (key (sx364 ing492))) -(recipe r364 (key (sy364 ing20))) -(recipe r364 (key (sx364 ing493))) -(recipe r364 (key (sy364 ing21))) -(recipe r364 (key (sx364 ing494))) -(recipe r364 (key (sy364 ing22))) -(recipe r364 (key (sx364 ing495))) -(recipe r364 (key (sy364 ing23))) -(recipe r364 (key (sx364 ing496))) -(recipe r364 (key (sy364 ing24))) -(recipe r364 (key (sx364 ing497))) -(recipe r364 (key (sy364 ing25))) -(recipe r364 (key (sx364 ing498))) -(recipe r364 (key (sy364 ing26))) -(recipe r364 (key (sx364 ing499))) -(recipe r364 (key (sy364 ing27))) -(recipe r364 (key (sx364 ing500))) -(recipe r364 (key (sy364 ing28))) -(recipe r364 (key (sx364 ing501))) -(recipe r364 (key (sy364 ing29))) -(recipe r364 (key (sx364 ing502))) -(recipe r364 (key (sy364 ing30))) -(recipe r364 (key (sx364 ing503))) -(recipe r364 (key (sy364 ing31))) -(recipe r365 (numIngredients 2)) -(recipe r365 (result (id item365))) -(recipe r365 (pattern 0 sx365)) -(recipe r365 (pattern 1 sy365)) -(recipe r365 (key (sx365 ing495))) -(recipe r365 (key (sy365 ing25))) -(recipe r365 (key (sx365 ing496))) -(recipe r365 (key (sy365 ing26))) -(recipe r365 (key (sx365 ing497))) -(recipe r365 (key (sy365 ing27))) -(recipe r365 (key (sx365 ing498))) -(recipe r365 (key (sy365 ing28))) -(recipe r365 (key (sx365 ing499))) -(recipe r365 (key (sy365 ing29))) -(recipe r365 (key (sx365 ing500))) -(recipe r365 (key (sy365 ing30))) -(recipe r365 (key (sx365 ing501))) -(recipe r365 (key (sy365 ing31))) -(recipe r365 (key (sx365 ing502))) -(recipe r365 (key (sy365 ing32))) -(recipe r365 (key (sx365 ing503))) -(recipe r365 (key (sy365 ing33))) -(recipe r365 (key (sx365 ing504))) -(recipe r365 (key (sy365 ing34))) -(recipe r365 (key (sx365 ing505))) -(recipe r365 (key (sy365 ing35))) -(recipe r365 (key (sx365 ing506))) -(recipe r365 (key (sy365 ing36))) -(recipe r366 (numIngredients 2)) -(recipe r366 (result (id item366))) -(recipe r366 (pattern 0 sx366)) -(recipe r366 (pattern 1 sy366)) -(recipe r366 (key (sx366 ing498))) -(recipe r366 (key (sy366 ing30))) -(recipe r366 (key (sx366 ing499))) -(recipe r366 (key (sy366 ing31))) -(recipe r366 (key (sx366 ing500))) -(recipe r366 (key (sy366 ing32))) -(recipe r366 (key (sx366 ing501))) -(recipe r366 (key (sy366 ing33))) -(recipe r366 (key (sx366 ing502))) -(recipe r366 (key (sy366 ing34))) -(recipe r366 (key (sx366 ing503))) -(recipe r366 (key (sy366 ing35))) -(recipe r366 (key (sx366 ing504))) -(recipe r366 (key (sy366 ing36))) -(recipe r366 (key (sx366 ing505))) -(recipe r366 (key (sy366 ing37))) -(recipe r366 (key (sx366 ing506))) -(recipe r366 (key (sy366 ing38))) -(recipe r366 (key (sx366 ing507))) -(recipe r366 (key (sy366 ing39))) -(recipe r366 (key (sx366 ing508))) -(recipe r366 (key (sy366 ing40))) -(recipe r366 (key (sx366 ing509))) -(recipe r366 (key (sy366 ing41))) -(recipe r367 (numIngredients 2)) -(recipe r367 (result (id item367))) -(recipe r367 (pattern 0 sx367)) -(recipe r367 (pattern 1 sy367)) -(recipe r367 (key (sx367 ing501))) -(recipe r367 (key (sy367 ing35))) -(recipe r367 (key (sx367 ing502))) -(recipe r367 (key (sy367 ing36))) -(recipe r367 (key (sx367 ing503))) -(recipe r367 (key (sy367 ing37))) -(recipe r367 (key (sx367 ing504))) -(recipe r367 (key (sy367 ing38))) -(recipe r367 (key (sx367 ing505))) -(recipe r367 (key (sy367 ing39))) -(recipe r367 (key (sx367 ing506))) -(recipe r367 (key (sy367 ing40))) -(recipe r367 (key (sx367 ing507))) -(recipe r367 (key (sy367 ing41))) -(recipe r367 (key (sx367 ing508))) -(recipe r367 (key (sy367 ing42))) -(recipe r367 (key (sx367 ing509))) -(recipe r367 (key (sy367 ing43))) -(recipe r367 (key (sx367 ing510))) -(recipe r367 (key (sy367 ing44))) -(recipe r367 (key (sx367 ing511))) -(recipe r367 (key (sy367 ing45))) -(recipe r367 (key (sx367 ing512))) -(recipe r367 (key (sy367 ing46))) -(recipe r368 (numIngredients 2)) -(recipe r368 (result (id item368))) -(recipe r368 (pattern 0 sx368)) -(recipe r368 (pattern 1 sy368)) -(recipe r368 (key (sx368 ing504))) -(recipe r368 (key (sy368 ing40))) -(recipe r368 (key (sx368 ing505))) -(recipe r368 (key (sy368 ing41))) -(recipe r368 (key (sx368 ing506))) -(recipe r368 (key (sy368 ing42))) -(recipe r368 (key (sx368 ing507))) -(recipe r368 (key (sy368 ing43))) -(recipe r368 (key (sx368 ing508))) -(recipe r368 (key (sy368 ing44))) -(recipe r368 (key (sx368 ing509))) -(recipe r368 (key (sy368 ing45))) -(recipe r368 (key (sx368 ing510))) -(recipe r368 (key (sy368 ing46))) -(recipe r368 (key (sx368 ing511))) -(recipe r368 (key (sy368 ing47))) -(recipe r368 (key (sx368 ing512))) -(recipe r368 (key (sy368 ing48))) -(recipe r368 (key (sx368 ing513))) -(recipe r368 (key (sy368 ing49))) -(recipe r368 (key (sx368 ing514))) -(recipe r368 (key (sy368 ing50))) -(recipe r368 (key (sx368 ing515))) -(recipe r368 (key (sy368 ing51))) -(recipe r369 (numIngredients 2)) -(recipe r369 (result (id item369))) -(recipe r369 (pattern 0 sx369)) -(recipe r369 (pattern 1 sy369)) -(recipe r369 (key (sx369 ing507))) -(recipe r369 (key (sy369 ing45))) -(recipe r369 (key (sx369 ing508))) -(recipe r369 (key (sy369 ing46))) -(recipe r369 (key (sx369 ing509))) -(recipe r369 (key (sy369 ing47))) -(recipe r369 (key (sx369 ing510))) -(recipe r369 (key (sy369 ing48))) -(recipe r369 (key (sx369 ing511))) -(recipe r369 (key (sy369 ing49))) -(recipe r369 (key (sx369 ing512))) -(recipe r369 (key (sy369 ing50))) -(recipe r369 (key (sx369 ing513))) -(recipe r369 (key (sy369 ing51))) -(recipe r369 (key (sx369 ing514))) -(recipe r369 (key (sy369 ing52))) -(recipe r369 (key (sx369 ing515))) -(recipe r369 (key (sy369 ing53))) -(recipe r369 (key (sx369 ing516))) -(recipe r369 (key (sy369 ing54))) -(recipe r369 (key (sx369 ing517))) -(recipe r369 (key (sy369 ing55))) -(recipe r369 (key (sx369 ing518))) -(recipe r369 (key (sy369 ing56))) -(recipe r370 (numIngredients 2)) -(recipe r370 (result (id item370))) -(recipe r370 (pattern 0 sx370)) -(recipe r370 (pattern 1 sy370)) -(recipe r370 (key (sx370 ing510))) -(recipe r370 (key (sy370 ing50))) -(recipe r370 (key (sx370 ing511))) -(recipe r370 (key (sy370 ing51))) -(recipe r370 (key (sx370 ing512))) -(recipe r370 (key (sy370 ing52))) -(recipe r370 (key (sx370 ing513))) -(recipe r370 (key (sy370 ing53))) -(recipe r370 (key (sx370 ing514))) -(recipe r370 (key (sy370 ing54))) -(recipe r370 (key (sx370 ing515))) -(recipe r370 (key (sy370 ing55))) -(recipe r370 (key (sx370 ing516))) -(recipe r370 (key (sy370 ing56))) -(recipe r370 (key (sx370 ing517))) -(recipe r370 (key (sy370 ing57))) -(recipe r370 (key (sx370 ing518))) -(recipe r370 (key (sy370 ing58))) -(recipe r370 (key (sx370 ing519))) -(recipe r370 (key (sy370 ing59))) -(recipe r370 (key (sx370 ing520))) -(recipe r370 (key (sy370 ing60))) -(recipe r370 (key (sx370 ing521))) -(recipe r370 (key (sy370 ing61))) -(recipe r371 (numIngredients 2)) -(recipe r371 (result (id item371))) -(recipe r371 (pattern 0 sx371)) -(recipe r371 (pattern 1 sy371)) -(recipe r371 (key (sx371 ing513))) -(recipe r371 (key (sy371 ing55))) -(recipe r371 (key (sx371 ing514))) -(recipe r371 (key (sy371 ing56))) -(recipe r371 (key (sx371 ing515))) -(recipe r371 (key (sy371 ing57))) -(recipe r371 (key (sx371 ing516))) -(recipe r371 (key (sy371 ing58))) -(recipe r371 (key (sx371 ing517))) -(recipe r371 (key (sy371 ing59))) -(recipe r371 (key (sx371 ing518))) -(recipe r371 (key (sy371 ing60))) -(recipe r371 (key (sx371 ing519))) -(recipe r371 (key (sy371 ing61))) -(recipe r371 (key (sx371 ing520))) -(recipe r371 (key (sy371 ing62))) -(recipe r371 (key (sx371 ing521))) -(recipe r371 (key (sy371 ing63))) -(recipe r371 (key (sx371 ing522))) -(recipe r371 (key (sy371 ing64))) -(recipe r371 (key (sx371 ing523))) -(recipe r371 (key (sy371 ing65))) -(recipe r371 (key (sx371 ing524))) -(recipe r371 (key (sy371 ing66))) -(recipe r372 (numIngredients 2)) -(recipe r372 (result (id item372))) -(recipe r372 (pattern 0 sx372)) -(recipe r372 (pattern 1 sy372)) -(recipe r372 (key (sx372 ing516))) -(recipe r372 (key (sy372 ing60))) -(recipe r372 (key (sx372 ing517))) -(recipe r372 (key (sy372 ing61))) -(recipe r372 (key (sx372 ing518))) -(recipe r372 (key (sy372 ing62))) -(recipe r372 (key (sx372 ing519))) -(recipe r372 (key (sy372 ing63))) -(recipe r372 (key (sx372 ing520))) -(recipe r372 (key (sy372 ing64))) -(recipe r372 (key (sx372 ing521))) -(recipe r372 (key (sy372 ing65))) -(recipe r372 (key (sx372 ing522))) -(recipe r372 (key (sy372 ing66))) -(recipe r372 (key (sx372 ing523))) -(recipe r372 (key (sy372 ing67))) -(recipe r372 (key (sx372 ing524))) -(recipe r372 (key (sy372 ing68))) -(recipe r372 (key (sx372 ing525))) -(recipe r372 (key (sy372 ing69))) -(recipe r372 (key (sx372 ing526))) -(recipe r372 (key (sy372 ing70))) -(recipe r372 (key (sx372 ing527))) -(recipe r372 (key (sy372 ing71))) -(recipe r373 (numIngredients 2)) -(recipe r373 (result (id item373))) -(recipe r373 (pattern 0 sx373)) -(recipe r373 (pattern 1 sy373)) -(recipe r373 (key (sx373 ing519))) -(recipe r373 (key (sy373 ing65))) -(recipe r373 (key (sx373 ing520))) -(recipe r373 (key (sy373 ing66))) -(recipe r373 (key (sx373 ing521))) -(recipe r373 (key (sy373 ing67))) -(recipe r373 (key (sx373 ing522))) -(recipe r373 (key (sy373 ing68))) -(recipe r373 (key (sx373 ing523))) -(recipe r373 (key (sy373 ing69))) -(recipe r373 (key (sx373 ing524))) -(recipe r373 (key (sy373 ing70))) -(recipe r373 (key (sx373 ing525))) -(recipe r373 (key (sy373 ing71))) -(recipe r373 (key (sx373 ing526))) -(recipe r373 (key (sy373 ing72))) -(recipe r373 (key (sx373 ing527))) -(recipe r373 (key (sy373 ing73))) -(recipe r373 (key (sx373 ing528))) -(recipe r373 (key (sy373 ing74))) -(recipe r373 (key (sx373 ing529))) -(recipe r373 (key (sy373 ing75))) -(recipe r373 (key (sx373 ing530))) -(recipe r373 (key (sy373 ing76))) -(recipe r374 (numIngredients 2)) -(recipe r374 (result (id item374))) -(recipe r374 (pattern 0 sx374)) -(recipe r374 (pattern 1 sy374)) -(recipe r374 (key (sx374 ing522))) -(recipe r374 (key (sy374 ing70))) -(recipe r374 (key (sx374 ing523))) -(recipe r374 (key (sy374 ing71))) -(recipe r374 (key (sx374 ing524))) -(recipe r374 (key (sy374 ing72))) -(recipe r374 (key (sx374 ing525))) -(recipe r374 (key (sy374 ing73))) -(recipe r374 (key (sx374 ing526))) -(recipe r374 (key (sy374 ing74))) -(recipe r374 (key (sx374 ing527))) -(recipe r374 (key (sy374 ing75))) -(recipe r374 (key (sx374 ing528))) -(recipe r374 (key (sy374 ing76))) -(recipe r374 (key (sx374 ing529))) -(recipe r374 (key (sy374 ing77))) -(recipe r374 (key (sx374 ing530))) -(recipe r374 (key (sy374 ing78))) -(recipe r374 (key (sx374 ing531))) -(recipe r374 (key (sy374 ing79))) -(recipe r374 (key (sx374 ing532))) -(recipe r374 (key (sy374 ing80))) -(recipe r374 (key (sx374 ing533))) -(recipe r374 (key (sy374 ing81))) -(recipe r375 (numIngredients 2)) -(recipe r375 (result (id item375))) -(recipe r375 (pattern 0 sx375)) -(recipe r375 (pattern 1 sy375)) -(recipe r375 (key (sx375 ing525))) -(recipe r375 (key (sy375 ing75))) -(recipe r375 (key (sx375 ing526))) -(recipe r375 (key (sy375 ing76))) -(recipe r375 (key (sx375 ing527))) -(recipe r375 (key (sy375 ing77))) -(recipe r375 (key (sx375 ing528))) -(recipe r375 (key (sy375 ing78))) -(recipe r375 (key (sx375 ing529))) -(recipe r375 (key (sy375 ing79))) -(recipe r375 (key (sx375 ing530))) -(recipe r375 (key (sy375 ing80))) -(recipe r375 (key (sx375 ing531))) -(recipe r375 (key (sy375 ing81))) -(recipe r375 (key (sx375 ing532))) -(recipe r375 (key (sy375 ing82))) -(recipe r375 (key (sx375 ing533))) -(recipe r375 (key (sy375 ing83))) -(recipe r375 (key (sx375 ing534))) -(recipe r375 (key (sy375 ing84))) -(recipe r375 (key (sx375 ing535))) -(recipe r375 (key (sy375 ing85))) -(recipe r375 (key (sx375 ing536))) -(recipe r375 (key (sy375 ing86))) -(recipe r376 (numIngredients 2)) -(recipe r376 (result (id item376))) -(recipe r376 (pattern 0 sx376)) -(recipe r376 (pattern 1 sy376)) -(recipe r376 (key (sx376 ing528))) -(recipe r376 (key (sy376 ing80))) -(recipe r376 (key (sx376 ing529))) -(recipe r376 (key (sy376 ing81))) -(recipe r376 (key (sx376 ing530))) -(recipe r376 (key (sy376 ing82))) -(recipe r376 (key (sx376 ing531))) -(recipe r376 (key (sy376 ing83))) -(recipe r376 (key (sx376 ing532))) -(recipe r376 (key (sy376 ing84))) -(recipe r376 (key (sx376 ing533))) -(recipe r376 (key (sy376 ing85))) -(recipe r376 (key (sx376 ing534))) -(recipe r376 (key (sy376 ing86))) -(recipe r376 (key (sx376 ing535))) -(recipe r376 (key (sy376 ing87))) -(recipe r376 (key (sx376 ing536))) -(recipe r376 (key (sy376 ing88))) -(recipe r376 (key (sx376 ing537))) -(recipe r376 (key (sy376 ing89))) -(recipe r376 (key (sx376 ing538))) -(recipe r376 (key (sy376 ing90))) -(recipe r376 (key (sx376 ing539))) -(recipe r376 (key (sy376 ing91))) -(recipe r377 (numIngredients 2)) -(recipe r377 (result (id item377))) -(recipe r377 (pattern 0 sx377)) -(recipe r377 (pattern 1 sy377)) -(recipe r377 (key (sx377 ing531))) -(recipe r377 (key (sy377 ing85))) -(recipe r377 (key (sx377 ing532))) -(recipe r377 (key (sy377 ing86))) -(recipe r377 (key (sx377 ing533))) -(recipe r377 (key (sy377 ing87))) -(recipe r377 (key (sx377 ing534))) -(recipe r377 (key (sy377 ing88))) -(recipe r377 (key (sx377 ing535))) -(recipe r377 (key (sy377 ing89))) -(recipe r377 (key (sx377 ing536))) -(recipe r377 (key (sy377 ing90))) -(recipe r377 (key (sx377 ing537))) -(recipe r377 (key (sy377 ing91))) -(recipe r377 (key (sx377 ing538))) -(recipe r377 (key (sy377 ing92))) -(recipe r377 (key (sx377 ing539))) -(recipe r377 (key (sy377 ing93))) -(recipe r377 (key (sx377 ing540))) -(recipe r377 (key (sy377 ing94))) -(recipe r377 (key (sx377 ing541))) -(recipe r377 (key (sy377 ing95))) -(recipe r377 (key (sx377 ing542))) -(recipe r377 (key (sy377 ing96))) -(recipe r378 (numIngredients 2)) -(recipe r378 (result (id item378))) -(recipe r378 (pattern 0 sx378)) -(recipe r378 (pattern 1 sy378)) -(recipe r378 (key (sx378 ing534))) -(recipe r378 (key (sy378 ing90))) -(recipe r378 (key (sx378 ing535))) -(recipe r378 (key (sy378 ing91))) -(recipe r378 (key (sx378 ing536))) -(recipe r378 (key (sy378 ing92))) -(recipe r378 (key (sx378 ing537))) -(recipe r378 (key (sy378 ing93))) -(recipe r378 (key (sx378 ing538))) -(recipe r378 (key (sy378 ing94))) -(recipe r378 (key (sx378 ing539))) -(recipe r378 (key (sy378 ing95))) -(recipe r378 (key (sx378 ing540))) -(recipe r378 (key (sy378 ing96))) -(recipe r378 (key (sx378 ing541))) -(recipe r378 (key (sy378 ing97))) -(recipe r378 (key (sx378 ing542))) -(recipe r378 (key (sy378 ing98))) -(recipe r378 (key (sx378 ing543))) -(recipe r378 (key (sy378 ing99))) -(recipe r378 (key (sx378 ing544))) -(recipe r378 (key (sy378 ing100))) -(recipe r378 (key (sx378 ing545))) -(recipe r378 (key (sy378 ing101))) -(recipe r379 (numIngredients 2)) -(recipe r379 (result (id item379))) -(recipe r379 (pattern 0 sx379)) -(recipe r379 (pattern 1 sy379)) -(recipe r379 (key (sx379 ing537))) -(recipe r379 (key (sy379 ing95))) -(recipe r379 (key (sx379 ing538))) -(recipe r379 (key (sy379 ing96))) -(recipe r379 (key (sx379 ing539))) -(recipe r379 (key (sy379 ing97))) -(recipe r379 (key (sx379 ing540))) -(recipe r379 (key (sy379 ing98))) -(recipe r379 (key (sx379 ing541))) -(recipe r379 (key (sy379 ing99))) -(recipe r379 (key (sx379 ing542))) -(recipe r379 (key (sy379 ing100))) -(recipe r379 (key (sx379 ing543))) -(recipe r379 (key (sy379 ing101))) -(recipe r379 (key (sx379 ing544))) -(recipe r379 (key (sy379 ing102))) -(recipe r379 (key (sx379 ing545))) -(recipe r379 (key (sy379 ing103))) -(recipe r379 (key (sx379 ing546))) -(recipe r379 (key (sy379 ing104))) -(recipe r379 (key (sx379 ing547))) -(recipe r379 (key (sy379 ing105))) -(recipe r379 (key (sx379 ing548))) -(recipe r379 (key (sy379 ing106))) -(recipe r380 (numIngredients 2)) -(recipe r380 (result (id item380))) -(recipe r380 (pattern 0 sx380)) -(recipe r380 (pattern 1 sy380)) -(recipe r380 (key (sx380 ing540))) -(recipe r380 (key (sy380 ing100))) -(recipe r380 (key (sx380 ing541))) -(recipe r380 (key (sy380 ing101))) -(recipe r380 (key (sx380 ing542))) -(recipe r380 (key (sy380 ing102))) -(recipe r380 (key (sx380 ing543))) -(recipe r380 (key (sy380 ing103))) -(recipe r380 (key (sx380 ing544))) -(recipe r380 (key (sy380 ing104))) -(recipe r380 (key (sx380 ing545))) -(recipe r380 (key (sy380 ing105))) -(recipe r380 (key (sx380 ing546))) -(recipe r380 (key (sy380 ing106))) -(recipe r380 (key (sx380 ing547))) -(recipe r380 (key (sy380 ing107))) -(recipe r380 (key (sx380 ing548))) -(recipe r380 (key (sy380 ing108))) -(recipe r380 (key (sx380 ing549))) -(recipe r380 (key (sy380 ing109))) -(recipe r380 (key (sx380 ing550))) -(recipe r380 (key (sy380 ing110))) -(recipe r380 (key (sx380 ing551))) -(recipe r380 (key (sy380 ing111))) -(recipe r381 (numIngredients 2)) -(recipe r381 (result (id item381))) -(recipe r381 (pattern 0 sx381)) -(recipe r381 (pattern 1 sy381)) -(recipe r381 (key (sx381 ing543))) -(recipe r381 (key (sy381 ing105))) -(recipe r381 (key (sx381 ing544))) -(recipe r381 (key (sy381 ing106))) -(recipe r381 (key (sx381 ing545))) -(recipe r381 (key (sy381 ing107))) -(recipe r381 (key (sx381 ing546))) -(recipe r381 (key (sy381 ing108))) -(recipe r381 (key (sx381 ing547))) -(recipe r381 (key (sy381 ing109))) -(recipe r381 (key (sx381 ing548))) -(recipe r381 (key (sy381 ing110))) -(recipe r381 (key (sx381 ing549))) -(recipe r381 (key (sy381 ing111))) -(recipe r381 (key (sx381 ing550))) -(recipe r381 (key (sy381 ing112))) -(recipe r381 (key (sx381 ing551))) -(recipe r381 (key (sy381 ing113))) -(recipe r381 (key (sx381 ing552))) -(recipe r381 (key (sy381 ing114))) -(recipe r381 (key (sx381 ing553))) -(recipe r381 (key (sy381 ing115))) -(recipe r381 (key (sx381 ing554))) -(recipe r381 (key (sy381 ing116))) -(recipe r382 (numIngredients 2)) -(recipe r382 (result (id item382))) -(recipe r382 (pattern 0 sx382)) -(recipe r382 (pattern 1 sy382)) -(recipe r382 (key (sx382 ing546))) -(recipe r382 (key (sy382 ing110))) -(recipe r382 (key (sx382 ing547))) -(recipe r382 (key (sy382 ing111))) -(recipe r382 (key (sx382 ing548))) -(recipe r382 (key (sy382 ing112))) -(recipe r382 (key (sx382 ing549))) -(recipe r382 (key (sy382 ing113))) -(recipe r382 (key (sx382 ing550))) -(recipe r382 (key (sy382 ing114))) -(recipe r382 (key (sx382 ing551))) -(recipe r382 (key (sy382 ing115))) -(recipe r382 (key (sx382 ing552))) -(recipe r382 (key (sy382 ing116))) -(recipe r382 (key (sx382 ing553))) -(recipe r382 (key (sy382 ing117))) -(recipe r382 (key (sx382 ing554))) -(recipe r382 (key (sy382 ing118))) -(recipe r382 (key (sx382 ing555))) -(recipe r382 (key (sy382 ing119))) -(recipe r382 (key (sx382 ing556))) -(recipe r382 (key (sy382 ing120))) -(recipe r382 (key (sx382 ing557))) -(recipe r382 (key (sy382 ing121))) -(recipe r383 (numIngredients 2)) -(recipe r383 (result (id item383))) -(recipe r383 (pattern 0 sx383)) -(recipe r383 (pattern 1 sy383)) -(recipe r383 (key (sx383 ing549))) -(recipe r383 (key (sy383 ing115))) -(recipe r383 (key (sx383 ing550))) -(recipe r383 (key (sy383 ing116))) -(recipe r383 (key (sx383 ing551))) -(recipe r383 (key (sy383 ing117))) -(recipe r383 (key (sx383 ing552))) -(recipe r383 (key (sy383 ing118))) -(recipe r383 (key (sx383 ing553))) -(recipe r383 (key (sy383 ing119))) -(recipe r383 (key (sx383 ing554))) -(recipe r383 (key (sy383 ing120))) -(recipe r383 (key (sx383 ing555))) -(recipe r383 (key (sy383 ing121))) -(recipe r383 (key (sx383 ing556))) -(recipe r383 (key (sy383 ing122))) -(recipe r383 (key (sx383 ing557))) -(recipe r383 (key (sy383 ing123))) -(recipe r383 (key (sx383 ing558))) -(recipe r383 (key (sy383 ing124))) -(recipe r383 (key (sx383 ing559))) -(recipe r383 (key (sy383 ing125))) -(recipe r383 (key (sx383 ing560))) -(recipe r383 (key (sy383 ing126))) -(recipe r384 (numIngredients 2)) -(recipe r384 (result (id item384))) -(recipe r384 (pattern 0 sx384)) -(recipe r384 (pattern 1 sy384)) -(recipe r384 (key (sx384 ing552))) -(recipe r384 (key (sy384 ing120))) -(recipe r384 (key (sx384 ing553))) -(recipe r384 (key (sy384 ing121))) -(recipe r384 (key (sx384 ing554))) -(recipe r384 (key (sy384 ing122))) -(recipe r384 (key (sx384 ing555))) -(recipe r384 (key (sy384 ing123))) -(recipe r384 (key (sx384 ing556))) -(recipe r384 (key (sy384 ing124))) -(recipe r384 (key (sx384 ing557))) -(recipe r384 (key (sy384 ing125))) -(recipe r384 (key (sx384 ing558))) -(recipe r384 (key (sy384 ing126))) -(recipe r384 (key (sx384 ing559))) -(recipe r384 (key (sy384 ing127))) -(recipe r384 (key (sx384 ing560))) -(recipe r384 (key (sy384 ing128))) -(recipe r384 (key (sx384 ing561))) -(recipe r384 (key (sy384 ing129))) -(recipe r384 (key (sx384 ing562))) -(recipe r384 (key (sy384 ing130))) -(recipe r384 (key (sx384 ing563))) -(recipe r384 (key (sy384 ing131))) -(recipe r385 (numIngredients 2)) -(recipe r385 (result (id item385))) -(recipe r385 (pattern 0 sx385)) -(recipe r385 (pattern 1 sy385)) -(recipe r385 (key (sx385 ing555))) -(recipe r385 (key (sy385 ing125))) -(recipe r385 (key (sx385 ing556))) -(recipe r385 (key (sy385 ing126))) -(recipe r385 (key (sx385 ing557))) -(recipe r385 (key (sy385 ing127))) -(recipe r385 (key (sx385 ing558))) -(recipe r385 (key (sy385 ing128))) -(recipe r385 (key (sx385 ing559))) -(recipe r385 (key (sy385 ing129))) -(recipe r385 (key (sx385 ing560))) -(recipe r385 (key (sy385 ing130))) -(recipe r385 (key (sx385 ing561))) -(recipe r385 (key (sy385 ing131))) -(recipe r385 (key (sx385 ing562))) -(recipe r385 (key (sy385 ing132))) -(recipe r385 (key (sx385 ing563))) -(recipe r385 (key (sy385 ing133))) -(recipe r385 (key (sx385 ing564))) -(recipe r385 (key (sy385 ing134))) -(recipe r385 (key (sx385 ing565))) -(recipe r385 (key (sy385 ing135))) -(recipe r385 (key (sx385 ing566))) -(recipe r385 (key (sy385 ing136))) -(recipe r386 (numIngredients 2)) -(recipe r386 (result (id item386))) -(recipe r386 (pattern 0 sx386)) -(recipe r386 (pattern 1 sy386)) -(recipe r386 (key (sx386 ing558))) -(recipe r386 (key (sy386 ing130))) -(recipe r386 (key (sx386 ing559))) -(recipe r386 (key (sy386 ing131))) -(recipe r386 (key (sx386 ing560))) -(recipe r386 (key (sy386 ing132))) -(recipe r386 (key (sx386 ing561))) -(recipe r386 (key (sy386 ing133))) -(recipe r386 (key (sx386 ing562))) -(recipe r386 (key (sy386 ing134))) -(recipe r386 (key (sx386 ing563))) -(recipe r386 (key (sy386 ing135))) -(recipe r386 (key (sx386 ing564))) -(recipe r386 (key (sy386 ing136))) -(recipe r386 (key (sx386 ing565))) -(recipe r386 (key (sy386 ing137))) -(recipe r386 (key (sx386 ing566))) -(recipe r386 (key (sy386 ing138))) -(recipe r386 (key (sx386 ing567))) -(recipe r386 (key (sy386 ing139))) -(recipe r386 (key (sx386 ing568))) -(recipe r386 (key (sy386 ing140))) -(recipe r386 (key (sx386 ing569))) -(recipe r386 (key (sy386 ing141))) -(recipe r387 (numIngredients 2)) -(recipe r387 (result (id item387))) -(recipe r387 (pattern 0 sx387)) -(recipe r387 (pattern 1 sy387)) -(recipe r387 (key (sx387 ing561))) -(recipe r387 (key (sy387 ing135))) -(recipe r387 (key (sx387 ing562))) -(recipe r387 (key (sy387 ing136))) -(recipe r387 (key (sx387 ing563))) -(recipe r387 (key (sy387 ing137))) -(recipe r387 (key (sx387 ing564))) -(recipe r387 (key (sy387 ing138))) -(recipe r387 (key (sx387 ing565))) -(recipe r387 (key (sy387 ing139))) -(recipe r387 (key (sx387 ing566))) -(recipe r387 (key (sy387 ing140))) -(recipe r387 (key (sx387 ing567))) -(recipe r387 (key (sy387 ing141))) -(recipe r387 (key (sx387 ing568))) -(recipe r387 (key (sy387 ing142))) -(recipe r387 (key (sx387 ing569))) -(recipe r387 (key (sy387 ing143))) -(recipe r387 (key (sx387 ing570))) -(recipe r387 (key (sy387 ing144))) -(recipe r387 (key (sx387 ing571))) -(recipe r387 (key (sy387 ing145))) -(recipe r387 (key (sx387 ing572))) -(recipe r387 (key (sy387 ing146))) -(recipe r388 (numIngredients 2)) -(recipe r388 (result (id item388))) -(recipe r388 (pattern 0 sx388)) -(recipe r388 (pattern 1 sy388)) -(recipe r388 (key (sx388 ing564))) -(recipe r388 (key (sy388 ing140))) -(recipe r388 (key (sx388 ing565))) -(recipe r388 (key (sy388 ing141))) -(recipe r388 (key (sx388 ing566))) -(recipe r388 (key (sy388 ing142))) -(recipe r388 (key (sx388 ing567))) -(recipe r388 (key (sy388 ing143))) -(recipe r388 (key (sx388 ing568))) -(recipe r388 (key (sy388 ing144))) -(recipe r388 (key (sx388 ing569))) -(recipe r388 (key (sy388 ing145))) -(recipe r388 (key (sx388 ing570))) -(recipe r388 (key (sy388 ing146))) -(recipe r388 (key (sx388 ing571))) -(recipe r388 (key (sy388 ing147))) -(recipe r388 (key (sx388 ing572))) -(recipe r388 (key (sy388 ing148))) -(recipe r388 (key (sx388 ing573))) -(recipe r388 (key (sy388 ing149))) -(recipe r388 (key (sx388 ing574))) -(recipe r388 (key (sy388 ing150))) -(recipe r388 (key (sx388 ing575))) -(recipe r388 (key (sy388 ing151))) -(recipe r389 (numIngredients 2)) -(recipe r389 (result (id item389))) -(recipe r389 (pattern 0 sx389)) -(recipe r389 (pattern 1 sy389)) -(recipe r389 (key (sx389 ing567))) -(recipe r389 (key (sy389 ing145))) -(recipe r389 (key (sx389 ing568))) -(recipe r389 (key (sy389 ing146))) -(recipe r389 (key (sx389 ing569))) -(recipe r389 (key (sy389 ing147))) -(recipe r389 (key (sx389 ing570))) -(recipe r389 (key (sy389 ing148))) -(recipe r389 (key (sx389 ing571))) -(recipe r389 (key (sy389 ing149))) -(recipe r389 (key (sx389 ing572))) -(recipe r389 (key (sy389 ing150))) -(recipe r389 (key (sx389 ing573))) -(recipe r389 (key (sy389 ing151))) -(recipe r389 (key (sx389 ing574))) -(recipe r389 (key (sy389 ing152))) -(recipe r389 (key (sx389 ing575))) -(recipe r389 (key (sy389 ing153))) -(recipe r389 (key (sx389 ing576))) -(recipe r389 (key (sy389 ing154))) -(recipe r389 (key (sx389 ing577))) -(recipe r389 (key (sy389 ing155))) -(recipe r389 (key (sx389 ing578))) -(recipe r389 (key (sy389 ing156))) -(recipe r390 (numIngredients 2)) -(recipe r390 (result (id item390))) -(recipe r390 (pattern 0 sx390)) -(recipe r390 (pattern 1 sy390)) -(recipe r390 (key (sx390 ing570))) -(recipe r390 (key (sy390 ing150))) -(recipe r390 (key (sx390 ing571))) -(recipe r390 (key (sy390 ing151))) -(recipe r390 (key (sx390 ing572))) -(recipe r390 (key (sy390 ing152))) -(recipe r390 (key (sx390 ing573))) -(recipe r390 (key (sy390 ing153))) -(recipe r390 (key (sx390 ing574))) -(recipe r390 (key (sy390 ing154))) -(recipe r390 (key (sx390 ing575))) -(recipe r390 (key (sy390 ing155))) -(recipe r390 (key (sx390 ing576))) -(recipe r390 (key (sy390 ing156))) -(recipe r390 (key (sx390 ing577))) -(recipe r390 (key (sy390 ing157))) -(recipe r390 (key (sx390 ing578))) -(recipe r390 (key (sy390 ing158))) -(recipe r390 (key (sx390 ing579))) -(recipe r390 (key (sy390 ing159))) -(recipe r390 (key (sx390 ing580))) -(recipe r390 (key (sy390 ing160))) -(recipe r390 (key (sx390 ing581))) -(recipe r390 (key (sy390 ing161))) -(recipe r391 (numIngredients 2)) -(recipe r391 (result (id item391))) -(recipe r391 (pattern 0 sx391)) -(recipe r391 (pattern 1 sy391)) -(recipe r391 (key (sx391 ing573))) -(recipe r391 (key (sy391 ing155))) -(recipe r391 (key (sx391 ing574))) -(recipe r391 (key (sy391 ing156))) -(recipe r391 (key (sx391 ing575))) -(recipe r391 (key (sy391 ing157))) -(recipe r391 (key (sx391 ing576))) -(recipe r391 (key (sy391 ing158))) -(recipe r391 (key (sx391 ing577))) -(recipe r391 (key (sy391 ing159))) -(recipe r391 (key (sx391 ing578))) -(recipe r391 (key (sy391 ing160))) -(recipe r391 (key (sx391 ing579))) -(recipe r391 (key (sy391 ing161))) -(recipe r391 (key (sx391 ing580))) -(recipe r391 (key (sy391 ing162))) -(recipe r391 (key (sx391 ing581))) -(recipe r391 (key (sy391 ing163))) -(recipe r391 (key (sx391 ing582))) -(recipe r391 (key (sy391 ing164))) -(recipe r391 (key (sx391 ing583))) -(recipe r391 (key (sy391 ing165))) -(recipe r391 (key (sx391 ing584))) -(recipe r391 (key (sy391 ing166))) -(recipe r392 (numIngredients 2)) -(recipe r392 (result (id item392))) -(recipe r392 (pattern 0 sx392)) -(recipe r392 (pattern 1 sy392)) -(recipe r392 (key (sx392 ing576))) -(recipe r392 (key (sy392 ing160))) -(recipe r392 (key (sx392 ing577))) -(recipe r392 (key (sy392 ing161))) -(recipe r392 (key (sx392 ing578))) -(recipe r392 (key (sy392 ing162))) -(recipe r392 (key (sx392 ing579))) -(recipe r392 (key (sy392 ing163))) -(recipe r392 (key (sx392 ing580))) -(recipe r392 (key (sy392 ing164))) -(recipe r392 (key (sx392 ing581))) -(recipe r392 (key (sy392 ing165))) -(recipe r392 (key (sx392 ing582))) -(recipe r392 (key (sy392 ing166))) -(recipe r392 (key (sx392 ing583))) -(recipe r392 (key (sy392 ing167))) -(recipe r392 (key (sx392 ing584))) -(recipe r392 (key (sy392 ing168))) -(recipe r392 (key (sx392 ing585))) -(recipe r392 (key (sy392 ing169))) -(recipe r392 (key (sx392 ing586))) -(recipe r392 (key (sy392 ing170))) -(recipe r392 (key (sx392 ing587))) -(recipe r392 (key (sy392 ing171))) -(recipe r393 (numIngredients 2)) -(recipe r393 (result (id item393))) -(recipe r393 (pattern 0 sx393)) -(recipe r393 (pattern 1 sy393)) -(recipe r393 (key (sx393 ing579))) -(recipe r393 (key (sy393 ing165))) -(recipe r393 (key (sx393 ing580))) -(recipe r393 (key (sy393 ing166))) -(recipe r393 (key (sx393 ing581))) -(recipe r393 (key (sy393 ing167))) -(recipe r393 (key (sx393 ing582))) -(recipe r393 (key (sy393 ing168))) -(recipe r393 (key (sx393 ing583))) -(recipe r393 (key (sy393 ing169))) -(recipe r393 (key (sx393 ing584))) -(recipe r393 (key (sy393 ing170))) -(recipe r393 (key (sx393 ing585))) -(recipe r393 (key (sy393 ing171))) -(recipe r393 (key (sx393 ing586))) -(recipe r393 (key (sy393 ing172))) -(recipe r393 (key (sx393 ing587))) -(recipe r393 (key (sy393 ing173))) -(recipe r393 (key (sx393 ing588))) -(recipe r393 (key (sy393 ing174))) -(recipe r393 (key (sx393 ing589))) -(recipe r393 (key (sy393 ing175))) -(recipe r393 (key (sx393 ing590))) -(recipe r393 (key (sy393 ing176))) -(recipe r394 (numIngredients 2)) -(recipe r394 (result (id item394))) -(recipe r394 (pattern 0 sx394)) -(recipe r394 (pattern 1 sy394)) -(recipe r394 (key (sx394 ing582))) -(recipe r394 (key (sy394 ing170))) -(recipe r394 (key (sx394 ing583))) -(recipe r394 (key (sy394 ing171))) -(recipe r394 (key (sx394 ing584))) -(recipe r394 (key (sy394 ing172))) -(recipe r394 (key (sx394 ing585))) -(recipe r394 (key (sy394 ing173))) -(recipe r394 (key (sx394 ing586))) -(recipe r394 (key (sy394 ing174))) -(recipe r394 (key (sx394 ing587))) -(recipe r394 (key (sy394 ing175))) -(recipe r394 (key (sx394 ing588))) -(recipe r394 (key (sy394 ing176))) -(recipe r394 (key (sx394 ing589))) -(recipe r394 (key (sy394 ing177))) -(recipe r394 (key (sx394 ing590))) -(recipe r394 (key (sy394 ing178))) -(recipe r394 (key (sx394 ing591))) -(recipe r394 (key (sy394 ing179))) -(recipe r394 (key (sx394 ing592))) -(recipe r394 (key (sy394 ing180))) -(recipe r394 (key (sx394 ing593))) -(recipe r394 (key (sy394 ing181))) -(recipe r395 (numIngredients 2)) -(recipe r395 (result (id item395))) -(recipe r395 (pattern 0 sx395)) -(recipe r395 (pattern 1 sy395)) -(recipe r395 (key (sx395 ing585))) -(recipe r395 (key (sy395 ing175))) -(recipe r395 (key (sx395 ing586))) -(recipe r395 (key (sy395 ing176))) -(recipe r395 (key (sx395 ing587))) -(recipe r395 (key (sy395 ing177))) -(recipe r395 (key (sx395 ing588))) -(recipe r395 (key (sy395 ing178))) -(recipe r395 (key (sx395 ing589))) -(recipe r395 (key (sy395 ing179))) -(recipe r395 (key (sx395 ing590))) -(recipe r395 (key (sy395 ing180))) -(recipe r395 (key (sx395 ing591))) -(recipe r395 (key (sy395 ing181))) -(recipe r395 (key (sx395 ing592))) -(recipe r395 (key (sy395 ing182))) -(recipe r395 (key (sx395 ing593))) -(recipe r395 (key (sy395 ing183))) -(recipe r395 (key (sx395 ing594))) -(recipe r395 (key (sy395 ing184))) -(recipe r395 (key (sx395 ing595))) -(recipe r395 (key (sy395 ing185))) -(recipe r395 (key (sx395 ing596))) -(recipe r395 (key (sy395 ing186))) -(recipe r396 (numIngredients 2)) -(recipe r396 (result (id item396))) -(recipe r396 (pattern 0 sx396)) -(recipe r396 (pattern 1 sy396)) -(recipe r396 (key (sx396 ing588))) -(recipe r396 (key (sy396 ing180))) -(recipe r396 (key (sx396 ing589))) -(recipe r396 (key (sy396 ing181))) -(recipe r396 (key (sx396 ing590))) -(recipe r396 (key (sy396 ing182))) -(recipe r396 (key (sx396 ing591))) -(recipe r396 (key (sy396 ing183))) -(recipe r396 (key (sx396 ing592))) -(recipe r396 (key (sy396 ing184))) -(recipe r396 (key (sx396 ing593))) -(recipe r396 (key (sy396 ing185))) -(recipe r396 (key (sx396 ing594))) -(recipe r396 (key (sy396 ing186))) -(recipe r396 (key (sx396 ing595))) -(recipe r396 (key (sy396 ing187))) -(recipe r396 (key (sx396 ing596))) -(recipe r396 (key (sy396 ing188))) -(recipe r396 (key (sx396 ing597))) -(recipe r396 (key (sy396 ing189))) -(recipe r396 (key (sx396 ing598))) -(recipe r396 (key (sy396 ing190))) -(recipe r396 (key (sx396 ing599))) -(recipe r396 (key (sy396 ing191))) -(recipe r397 (numIngredients 2)) -(recipe r397 (result (id item397))) -(recipe r397 (pattern 0 sx397)) -(recipe r397 (pattern 1 sy397)) -(recipe r397 (key (sx397 ing591))) -(recipe r397 (key (sy397 ing185))) -(recipe r397 (key (sx397 ing592))) -(recipe r397 (key (sy397 ing186))) -(recipe r397 (key (sx397 ing593))) -(recipe r397 (key (sy397 ing187))) -(recipe r397 (key (sx397 ing594))) -(recipe r397 (key (sy397 ing188))) -(recipe r397 (key (sx397 ing595))) -(recipe r397 (key (sy397 ing189))) -(recipe r397 (key (sx397 ing596))) -(recipe r397 (key (sy397 ing190))) -(recipe r397 (key (sx397 ing597))) -(recipe r397 (key (sy397 ing191))) -(recipe r397 (key (sx397 ing598))) -(recipe r397 (key (sy397 ing192))) -(recipe r397 (key (sx397 ing599))) -(recipe r397 (key (sy397 ing193))) -(recipe r397 (key (sx397 ing0))) -(recipe r397 (key (sy397 ing194))) -(recipe r397 (key (sx397 ing1))) -(recipe r397 (key (sy397 ing195))) -(recipe r397 (key (sx397 ing2))) -(recipe r397 (key (sy397 ing196))) -(recipe r398 (numIngredients 2)) -(recipe r398 (result (id item398))) -(recipe r398 (pattern 0 sx398)) -(recipe r398 (pattern 1 sy398)) -(recipe r398 (key (sx398 ing594))) -(recipe r398 (key (sy398 ing190))) -(recipe r398 (key (sx398 ing595))) -(recipe r398 (key (sy398 ing191))) -(recipe r398 (key (sx398 ing596))) -(recipe r398 (key (sy398 ing192))) -(recipe r398 (key (sx398 ing597))) -(recipe r398 (key (sy398 ing193))) -(recipe r398 (key (sx398 ing598))) -(recipe r398 (key (sy398 ing194))) -(recipe r398 (key (sx398 ing599))) -(recipe r398 (key (sy398 ing195))) -(recipe r398 (key (sx398 ing0))) -(recipe r398 (key (sy398 ing196))) -(recipe r398 (key (sx398 ing1))) -(recipe r398 (key (sy398 ing197))) -(recipe r398 (key (sx398 ing2))) -(recipe r398 (key (sy398 ing198))) -(recipe r398 (key (sx398 ing3))) -(recipe r398 (key (sy398 ing199))) -(recipe r398 (key (sx398 ing4))) -(recipe r398 (key (sy398 ing200))) -(recipe r398 (key (sx398 ing5))) -(recipe r398 (key (sy398 ing201))) -(recipe r399 (numIngredients 2)) -(recipe r399 (result (id item399))) -(recipe r399 (pattern 0 sx399)) -(recipe r399 (pattern 1 sy399)) -(recipe r399 (key (sx399 ing597))) -(recipe r399 (key (sy399 ing195))) -(recipe r399 (key (sx399 ing598))) -(recipe r399 (key (sy399 ing196))) -(recipe r399 (key (sx399 ing599))) -(recipe r399 (key (sy399 ing197))) -(recipe r399 (key (sx399 ing0))) -(recipe r399 (key (sy399 ing198))) -(recipe r399 (key (sx399 ing1))) -(recipe r399 (key (sy399 ing199))) -(recipe r399 (key (sx399 ing2))) -(recipe r399 (key (sy399 ing200))) -(recipe r399 (key (sx399 ing3))) -(recipe r399 (key (sy399 ing201))) -(recipe r399 (key (sx399 ing4))) -(recipe r399 (key (sy399 ing202))) -(recipe r399 (key (sx399 ing5))) -(recipe r399 (key (sy399 ing203))) -(recipe r399 (key (sx399 ing6))) -(recipe r399 (key (sy399 ing204))) -(recipe r399 (key (sx399 ing7))) -(recipe r399 (key (sy399 ing205))) -(recipe r399 (key (sx399 ing8))) -(recipe r399 (key (sy399 ing206))) -(inventory ing0) -(inventory ing1) -(inventory ing2) -(inventory ing3) -(inventory ing4) -(inventory ing5) -(inventory ing6) -(inventory ing7) -(inventory ing8) -(inventory ing9) -(inventory ing10) -(inventory ing11) -(inventory ing12) -(inventory ing13) -(inventory ing14) -(inventory ing15) -(inventory ing16) -(inventory ing17) -(inventory ing18) -(inventory ing19) -(inventory ing20) -(inventory ing21) -(inventory ing22) -(inventory ing23) -(inventory ing24) -(inventory ing25) -(inventory ing26) -(inventory ing27) -(inventory ing28) -(inventory ing29) -(inventory ing30) -(inventory ing31) -(inventory ing32) -(inventory ing33) -(inventory ing34) -(inventory ing35) -(inventory ing36) -(inventory ing37) -(inventory ing38) -(inventory ing39) -(inventory ing40) -(inventory ing41) -(inventory ing42) -(inventory ing43) -(inventory ing44) -(inventory ing45) -(inventory ing46) -(inventory ing47) -(inventory ing48) -(inventory ing49) -(inventory ing50) -(inventory ing51) -(inventory ing52) -(inventory ing53) -(inventory ing54) -(inventory ing55) -(inventory ing56) -(inventory ing57) -(inventory ing58) -(inventory ing59) -(inventory ing60) -(inventory ing61) -(inventory ing62) -(inventory ing63) -(inventory ing64) -(inventory ing65) -(inventory ing66) -(inventory ing67) -(inventory ing68) -(inventory ing69) -(inventory ing70) -(inventory ing71) -(inventory ing72) -(inventory ing73) -(inventory ing74) -(inventory ing75) -(inventory ing76) -(inventory ing77) -(inventory ing78) -(inventory ing79) -(inventory ing80) -(inventory ing81) -(inventory ing82) -(inventory ing83) -(inventory ing84) -(inventory ing85) -(inventory ing86) -(inventory ing87) -(inventory ing88) -(inventory ing89) -(inventory ing90) -(inventory ing91) -(inventory ing92) -(inventory ing93) -(inventory ing94) -(inventory ing95) -(inventory ing96) -(inventory ing97) -(inventory ing98) -(inventory ing99) -(inventory ing100) -(inventory ing101) -(inventory ing102) -(inventory ing103) -(inventory ing104) -(inventory ing105) -(inventory ing106) -(inventory ing107) -(inventory ing108) -(inventory ing109) -(inventory ing110) -(inventory ing111) -(inventory ing112) -(inventory ing113) -(inventory ing114) -(inventory ing115) -(inventory ing116) -(inventory ing117) -(inventory ing118) -(inventory ing119) -(inventory ing120) -(inventory ing121) -(inventory ing122) -(inventory ing123) -(inventory ing124) -(inventory ing125) -(inventory ing126) -(inventory ing127) -(inventory ing128) -(inventory ing129) -(inventory ing130) -(inventory ing131) -(inventory ing132) -(inventory ing133) -(inventory ing134) -(inventory ing135) -(inventory ing136) -(inventory ing137) -(inventory ing138) -(inventory ing139) -(inventory ing140) -(inventory ing141) -(inventory ing142) -(inventory ing143) -(inventory ing144) -(inventory ing145) -(inventory ing146) -(inventory ing147) -(inventory ing148) -(inventory ing149) -(inventory ing150) -(inventory ing151) -(inventory ing152) -(inventory ing153) -(inventory ing154) -(inventory ing155) -(inventory ing156) -(inventory ing157) -(inventory ing158) -(inventory ing159) -(inventory ing160) -(inventory ing161) -(inventory ing162) -(inventory ing163) -(inventory ing164) -(inventory ing165) -(inventory ing166) -(inventory ing167) -(inventory ing168) -(inventory ing169) -(inventory ing170) -(inventory ing171) -(inventory ing172) -(inventory ing173) -(inventory ing174) -(inventory ing175) -(inventory ing176) -(inventory ing177) -(inventory ing178) -(inventory ing179) -(inventory ing180) -(inventory ing181) -(inventory ing182) -(inventory ing183) -(inventory ing184) -(inventory ing185) -(inventory ing186) -(inventory ing187) -(inventory ing188) -(inventory ing189) -(inventory ing190) -(inventory ing191) -(inventory ing192) -(inventory ing193) -(inventory ing194) -(inventory ing195) -(inventory ing196) -(inventory ing197) -(inventory ing198) -(inventory ing199) -(inventory ing200) -(inventory ing201) -(inventory ing202) -(inventory ing203) -(inventory ing204) -(inventory ing205) -(inventory ing206) -(inventory ing207) -(inventory ing208) -(inventory ing209) -(inventory ing210) -(inventory ing211) -(inventory ing212) -(inventory ing213) -(inventory ing214) -(inventory ing215) -(inventory ing216) -(inventory ing217) -(inventory ing218) -(inventory ing219) -(inventory ing220) -(inventory ing221) -(inventory ing222) -(inventory ing223) -(inventory ing224) -(inventory ing225) -(inventory ing226) -(inventory ing227) -(inventory ing228) -(inventory ing229) -(inventory ing230) -(inventory ing231) -(inventory ing232) -(inventory ing233) -(inventory ing234) -(inventory ing235) -(inventory ing236) -(inventory ing237) -(inventory ing238) -(inventory ing239) -(inventory ing240) -(inventory ing241) -(inventory ing242) -(inventory ing243) -(inventory ing244) -(inventory ing245) -(inventory ing246) -(inventory ing247) -(inventory ing248) -(inventory ing249) -(inventory ing250) -(inventory ing251) -(inventory ing252) -(inventory ing253) -(inventory ing254) -(inventory ing255) -(inventory ing256) -(inventory ing257) -(inventory ing258) -(inventory ing259) -(inventory ing260) -(inventory ing261) -(inventory ing262) -(inventory ing263) -(inventory ing264) -(inventory ing265) -(inventory ing266) -(inventory ing267) -(inventory ing268) -(inventory ing269) -(inventory ing270) -(inventory ing271) -(inventory ing272) -(inventory ing273) -(inventory ing274) -(inventory ing275) -(inventory ing276) -(inventory ing277) -(inventory ing278) -(inventory ing279) -(inventory ing280) -(inventory ing281) -(inventory ing282) -(inventory ing283) -(inventory ing284) -(inventory ing285) -(inventory ing286) -(inventory ing287) -(inventory ing288) -(inventory ing289) -(inventory ing290) -(inventory ing291) -(inventory ing292) -(inventory ing293) -(inventory ing294) -(inventory ing295) -(inventory ing296) -(inventory ing297) -(inventory ing298) -(inventory ing299) -(inventory ing300) -(inventory ing301) -(inventory ing302) -(inventory ing303) -(inventory ing304) -(inventory ing305) -(inventory ing306) -(inventory ing307) -(inventory ing308) -(inventory ing309) -(inventory ing310) -(inventory ing311) -(inventory ing312) -(inventory ing313) -(inventory ing314) -(inventory ing315) -(inventory ing316) -(inventory ing317) -(inventory ing318) -(inventory ing319) -(inventory ing320) -(inventory ing321) -(inventory ing322) -(inventory ing323) -(inventory ing324) -(inventory ing325) -(inventory ing326) -(inventory ing327) -(inventory ing328) -(inventory ing329) -(inventory ing330) -(inventory ing331) -(inventory ing332) -(inventory ing333) -(inventory ing334) -(inventory ing335) -(inventory ing336) -(inventory ing337) -(inventory ing338) -(inventory ing339) -(inventory ing340) -(inventory ing341) -(inventory ing342) -(inventory ing343) -(inventory ing344) -(inventory ing345) -(inventory ing346) -(inventory ing347) -(inventory ing348) -(inventory ing349) -(inventory ing350) -(inventory ing351) -(inventory ing352) -(inventory ing353) -(inventory ing354) -(inventory ing355) -(inventory ing356) -(inventory ing357) -(inventory ing358) -(inventory ing359) -(inventory ing360) -(inventory ing361) -(inventory ing362) -(inventory ing363) -(inventory ing364) -(inventory ing365) -(inventory ing366) -(inventory ing367) -(inventory ing368) -(inventory ing369) -(inventory ing370) -(inventory ing371) -(inventory ing372) -(inventory ing373) -(inventory ing374) -(inventory ing375) -(inventory ing376) -(inventory ing377) -(inventory ing378) -(inventory ing379) -(inventory ing380) -(inventory ing381) -(inventory ing382) -(inventory ing383) -(inventory ing384) -(inventory ing385) -(inventory ing386) -(inventory ing387) -(inventory ing388) -(inventory ing389) -(inventory ing390) -(inventory ing391) -(inventory ing392) -(inventory ing393) -(inventory ing394) -(inventory ing395) -(inventory ing396) -(inventory ing397) -(inventory ing398) -(inventory ing399) -(inventory ing400) -(inventory ing401) -(inventory ing402) -(inventory ing403) -(inventory ing404) -(inventory ing405) -(inventory ing406) -(inventory ing407) -(inventory ing408) -(inventory ing409) -(inventory ing410) -(inventory ing411) -(inventory ing412) -(inventory ing413) -(inventory ing414) -(inventory ing415) -(inventory ing416) -(inventory ing417) -(inventory ing418) -(inventory ing419) -(inventory ing420) -(inventory ing421) -(inventory ing422) -(inventory ing423) -(inventory ing424) -(inventory ing425) -(inventory ing426) -(inventory ing427) -(inventory ing428) -(inventory ing429) -(inventory ing430) -(inventory ing431) -(inventory ing432) -(inventory ing433) -(inventory ing434) -(inventory ing435) -(inventory ing436) -(inventory ing437) -(inventory ing438) -(inventory ing439) -(inventory ing440) -(inventory ing441) -(inventory ing442) -(inventory ing443) -(inventory ing444) -(inventory ing445) -(inventory ing446) -(inventory ing447) -(inventory ing448) -(inventory ing449) -(inventory ing450) -(inventory ing451) -(inventory ing452) -(inventory ing453) -(inventory ing454) -(inventory ing455) -(inventory ing456) -(inventory ing457) -(inventory ing458) -(inventory ing459) -(inventory ing460) -(inventory ing461) -(inventory ing462) -(inventory ing463) -(inventory ing464) -(inventory ing465) -(inventory ing466) -(inventory ing467) -(inventory ing468) -(inventory ing469) -(inventory ing470) -(inventory ing471) -(inventory ing472) -(inventory ing473) -(inventory ing474) -(inventory ing475) -(inventory ing476) -(inventory ing477) -(inventory ing478) -(inventory ing479) -(inventory ing480) -(inventory ing481) -(inventory ing482) -(inventory ing483) -(inventory ing484) -(inventory ing485) -(inventory ing486) -(inventory ing487) -(inventory ing488) -(inventory ing489) -(inventory ing490) -(inventory ing491) -(inventory ing492) -(inventory ing493) -(inventory ing494) -(inventory ing495) -(inventory ing496) -(inventory ing497) -(inventory ing498) -(inventory ing499) -(inventory ing500) -(inventory ing501) -(inventory ing502) -(inventory ing503) -(inventory ing504) -(inventory ing505) -(inventory ing506) -(inventory ing507) -(inventory ing508) -(inventory ing509) -(inventory ing510) -(inventory ing511) -(inventory ing512) -(inventory ing513) -(inventory ing514) -(inventory ing515) -(inventory ing516) -(inventory ing517) -(inventory ing518) -(inventory ing519) -(inventory ing520) -(inventory ing521) -(inventory ing522) -(inventory ing523) -(inventory ing524) -(inventory ing525) -(inventory ing526) -(inventory ing527) -(inventory ing528) -(inventory ing529) -(inventory ing530) -(inventory ing531) -(inventory ing532) -(inventory ing533) -(inventory ing534) -(inventory ing535) -(inventory ing536) -(inventory ing537) -(inventory ing538) -(inventory ing539) -(inventory ing540) -(inventory ing541) -(inventory ing542) -(inventory ing543) -(inventory ing544) -(inventory ing545) -(inventory ing546) -(inventory ing547) -(inventory ing548) -(inventory ing549) -(inventory ing550) -(inventory ing551) -(inventory ing552) -(inventory ing553) -(inventory ing554) -(inventory ing555) -(inventory ing556) -(inventory ing557) -(inventory ing558) -(inventory ing559) -(inventory ing560) -(inventory ing561) -(inventory ing562) -(inventory ing563) -(inventory ing564) -(inventory ing565) -(inventory ing566) -(inventory ing567) -(inventory ing568) -(inventory ing569) -(inventory ing570) -(inventory ing571) -(inventory ing572) -(inventory ing573) -(inventory ing574) -(inventory ing575) -(inventory ing576) -(inventory ing577) -(inventory ing578) -(inventory ing579) -(inventory ing580) -(inventory ing581) -(inventory ing582) -(inventory ing583) -(inventory ing584) -(inventory ing585) -(inventory ing586) -(inventory ing587) -(inventory ing588) -(inventory ing589) -(inventory ing590) -(inventory ing591) -(inventory ing592) -(inventory ing593) -(inventory ing594) -(inventory ing595) -(inventory ing596) -(inventory ing597) -(inventory ing598) -(inventory ing599) - -(exec (1 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p))) -(exec (1 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p))) -(exec (1 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n)))) - (, (craftable $n))) diff --git a/examples/transforms/cyc_naive.mm2 b/examples/transforms/cyc_naive.mm2 deleted file mode 100644 index f2ed2721..00000000 --- a/examples/transforms/cyc_naive.mm2 +++ /dev/null @@ -1,901 +0,0 @@ -(e n0 n23) -(e n0 n26) -(e n0 n30) -(e n0 n34) -(e n0 n37) -(e n0 n48) -(e n0 n69) -(e n1 n5) -(e n1 n7) -(e n1 n9) -(e n1 n12) -(e n1 n14) -(e n1 n18) -(e n1 n26) -(e n1 n31) -(e n1 n43) -(e n1 n47) -(e n1 n48) -(e n1 n51) -(e n1 n52) -(e n1 n60) -(e n1 n67) -(e n2 n0) -(e n2 n4) -(e n2 n8) -(e n2 n9) -(e n2 n12) -(e n2 n17) -(e n2 n20) -(e n2 n28) -(e n2 n33) -(e n2 n50) -(e n2 n63) -(e n3 n1) -(e n3 n8) -(e n3 n9) -(e n3 n18) -(e n3 n21) -(e n3 n25) -(e n3 n41) -(e n3 n46) -(e n3 n59) -(e n3 n63) -(e n3 n69) -(e n4 n2) -(e n4 n13) -(e n4 n22) -(e n4 n26) -(e n4 n35) -(e n4 n44) -(e n4 n51) -(e n4 n53) -(e n4 n59) -(e n4 n65) -(e n4 n67) -(e n4 n69) -(e n5 n0) -(e n5 n3) -(e n5 n16) -(e n5 n18) -(e n5 n24) -(e n5 n35) -(e n5 n40) -(e n5 n65) -(e n5 n66) -(e n6 n4) -(e n6 n13) -(e n6 n19) -(e n6 n22) -(e n6 n27) -(e n6 n40) -(e n6 n41) -(e n6 n45) -(e n6 n60) -(e n6 n69) -(e n7 n1) -(e n7 n4) -(e n7 n5) -(e n7 n8) -(e n7 n17) -(e n7 n25) -(e n7 n27) -(e n7 n30) -(e n7 n38) -(e n7 n40) -(e n7 n43) -(e n7 n60) -(e n8 n0) -(e n8 n13) -(e n8 n16) -(e n8 n26) -(e n8 n35) -(e n8 n46) -(e n8 n49) -(e n8 n51) -(e n8 n59) -(e n9 n3) -(e n9 n4) -(e n9 n5) -(e n9 n6) -(e n9 n10) -(e n9 n11) -(e n9 n15) -(e n9 n28) -(e n9 n34) -(e n9 n35) -(e n9 n39) -(e n9 n43) -(e n9 n46) -(e n9 n49) -(e n9 n53) -(e n9 n57) -(e n9 n58) -(e n9 n61) -(e n9 n63) -(e n9 n67) -(e n10 n0) -(e n10 n4) -(e n10 n17) -(e n10 n32) -(e n10 n38) -(e n10 n42) -(e n10 n45) -(e n10 n53) -(e n10 n58) -(e n10 n60) -(e n10 n66) -(e n11 n12) -(e n11 n14) -(e n11 n20) -(e n11 n21) -(e n11 n28) -(e n11 n32) -(e n11 n33) -(e n11 n39) -(e n11 n54) -(e n11 n59) -(e n12 n1) -(e n12 n16) -(e n12 n17) -(e n12 n41) -(e n12 n54) -(e n12 n56) -(e n12 n58) -(e n12 n59) -(e n12 n61) -(e n12 n66) -(e n13 n2) -(e n13 n3) -(e n13 n4) -(e n13 n18) -(e n13 n19) -(e n13 n24) -(e n13 n32) -(e n13 n37) -(e n13 n39) -(e n13 n51) -(e n13 n56) -(e n13 n67) -(e n13 n68) -(e n13 n69) -(e n14 n6) -(e n14 n7) -(e n14 n13) -(e n14 n20) -(e n14 n22) -(e n14 n26) -(e n14 n29) -(e n14 n50) -(e n14 n57) -(e n14 n67) -(e n15 n0) -(e n15 n2) -(e n15 n9) -(e n15 n12) -(e n15 n17) -(e n15 n19) -(e n15 n26) -(e n15 n27) -(e n15 n41) -(e n15 n46) -(e n15 n47) -(e n15 n50) -(e n15 n56) -(e n15 n58) -(e n16 n8) -(e n16 n11) -(e n16 n15) -(e n16 n30) -(e n16 n33) -(e n16 n34) -(e n16 n43) -(e n16 n53) -(e n16 n57) -(e n16 n61) -(e n16 n62) -(e n16 n69) -(e n17 n6) -(e n17 n9) -(e n17 n13) -(e n17 n25) -(e n17 n26) -(e n17 n30) -(e n17 n37) -(e n17 n49) -(e n17 n63) -(e n17 n64) -(e n18 n6) -(e n18 n9) -(e n18 n11) -(e n18 n25) -(e n18 n31) -(e n18 n33) -(e n18 n45) -(e n18 n47) -(e n18 n49) -(e n18 n51) -(e n18 n58) -(e n18 n65) -(e n18 n67) -(e n19 n16) -(e n19 n22) -(e n19 n24) -(e n19 n41) -(e n19 n46) -(e n19 n47) -(e n19 n60) -(e n19 n61) -(e n19 n68) -(e n20 n1) -(e n20 n15) -(e n20 n16) -(e n20 n25) -(e n20 n32) -(e n20 n41) -(e n20 n42) -(e n20 n48) -(e n20 n50) -(e n20 n51) -(e n20 n52) -(e n20 n53) -(e n20 n61) -(e n21 n8) -(e n21 n12) -(e n21 n14) -(e n21 n23) -(e n21 n28) -(e n21 n32) -(e n21 n41) -(e n21 n59) -(e n21 n63) -(e n22 n1) -(e n22 n7) -(e n22 n8) -(e n22 n11) -(e n22 n12) -(e n22 n20) -(e n22 n23) -(e n22 n24) -(e n22 n25) -(e n22 n34) -(e n22 n36) -(e n22 n39) -(e n22 n41) -(e n22 n44) -(e n22 n59) -(e n22 n65) -(e n22 n68) -(e n23 n1) -(e n23 n4) -(e n23 n8) -(e n23 n12) -(e n23 n16) -(e n23 n17) -(e n23 n18) -(e n23 n19) -(e n23 n30) -(e n23 n40) -(e n23 n51) -(e n23 n60) -(e n23 n62) -(e n23 n68) -(e n24 n3) -(e n24 n6) -(e n24 n11) -(e n24 n16) -(e n24 n19) -(e n24 n20) -(e n24 n23) -(e n24 n25) -(e n24 n30) -(e n24 n35) -(e n24 n37) -(e n24 n47) -(e n24 n51) -(e n24 n53) -(e n24 n60) -(e n25 n1) -(e n25 n5) -(e n25 n6) -(e n25 n23) -(e n25 n34) -(e n25 n37) -(e n25 n45) -(e n25 n48) -(e n25 n51) -(e n25 n52) -(e n25 n66) -(e n25 n67) -(e n26 n2) -(e n26 n11) -(e n26 n12) -(e n26 n17) -(e n26 n19) -(e n26 n23) -(e n26 n31) -(e n26 n35) -(e n26 n47) -(e n26 n49) -(e n26 n51) -(e n26 n68) -(e n26 n69) -(e n27 n5) -(e n27 n6) -(e n27 n8) -(e n27 n9) -(e n27 n15) -(e n27 n17) -(e n27 n23) -(e n27 n24) -(e n27 n26) -(e n27 n44) -(e n27 n45) -(e n27 n49) -(e n27 n51) -(e n27 n56) -(e n27 n59) -(e n27 n69) -(e n28 n2) -(e n28 n11) -(e n28 n20) -(e n28 n34) -(e n28 n35) -(e n28 n40) -(e n28 n45) -(e n28 n53) -(e n28 n57) -(e n28 n63) -(e n28 n69) -(e n29 n1) -(e n29 n4) -(e n29 n5) -(e n29 n10) -(e n29 n14) -(e n29 n34) -(e n29 n37) -(e n29 n41) -(e n29 n44) -(e n29 n45) -(e n29 n46) -(e n29 n61) -(e n29 n69) -(e n30 n8) -(e n30 n9) -(e n30 n16) -(e n30 n24) -(e n30 n31) -(e n30 n32) -(e n30 n33) -(e n30 n46) -(e n30 n47) -(e n30 n50) -(e n30 n53) -(e n30 n60) -(e n30 n63) -(e n30 n66) -(e n30 n69) -(e n31 n5) -(e n31 n10) -(e n31 n12) -(e n31 n15) -(e n31 n20) -(e n31 n22) -(e n31 n23) -(e n31 n24) -(e n31 n28) -(e n31 n38) -(e n31 n42) -(e n31 n49) -(e n31 n53) -(e n31 n56) -(e n31 n61) -(e n31 n64) -(e n31 n67) -(e n32 n1) -(e n32 n3) -(e n32 n15) -(e n32 n25) -(e n32 n31) -(e n32 n35) -(e n32 n39) -(e n32 n40) -(e n32 n47) -(e n32 n49) -(e n32 n53) -(e n32 n54) -(e n32 n66) -(e n33 n1) -(e n33 n2) -(e n33 n4) -(e n33 n8) -(e n33 n16) -(e n33 n21) -(e n33 n28) -(e n33 n31) -(e n33 n32) -(e n33 n35) -(e n33 n42) -(e n33 n44) -(e n33 n49) -(e n33 n53) -(e n33 n65) -(e n34 n6) -(e n34 n13) -(e n34 n18) -(e n34 n29) -(e n34 n30) -(e n34 n31) -(e n34 n33) -(e n34 n37) -(e n34 n39) -(e n34 n47) -(e n34 n52) -(e n34 n54) -(e n34 n63) -(e n34 n66) -(e n34 n67) -(e n35 n2) -(e n35 n3) -(e n35 n8) -(e n35 n9) -(e n35 n13) -(e n35 n14) -(e n35 n27) -(e n35 n34) -(e n35 n41) -(e n35 n43) -(e n35 n46) -(e n35 n51) -(e n35 n52) -(e n35 n58) -(e n35 n60) -(e n36 n5) -(e n36 n10) -(e n36 n12) -(e n36 n15) -(e n36 n18) -(e n36 n24) -(e n36 n28) -(e n36 n37) -(e n36 n41) -(e n36 n45) -(e n36 n46) -(e n36 n56) -(e n36 n62) -(e n36 n68) -(e n37 n2) -(e n37 n13) -(e n37 n14) -(e n37 n21) -(e n37 n23) -(e n37 n29) -(e n37 n35) -(e n37 n48) -(e n37 n55) -(e n38 n2) -(e n38 n8) -(e n38 n18) -(e n38 n19) -(e n38 n23) -(e n38 n26) -(e n38 n33) -(e n38 n43) -(e n38 n60) -(e n39 n3) -(e n39 n4) -(e n39 n8) -(e n39 n10) -(e n39 n11) -(e n39 n14) -(e n39 n15) -(e n39 n27) -(e n39 n29) -(e n39 n40) -(e n39 n41) -(e n39 n42) -(e n39 n43) -(e n39 n46) -(e n39 n48) -(e n39 n50) -(e n39 n51) -(e n39 n52) -(e n39 n54) -(e n39 n56) -(e n39 n58) -(e n39 n60) -(e n39 n68) -(e n40 n10) -(e n40 n13) -(e n40 n24) -(e n40 n25) -(e n40 n26) -(e n40 n28) -(e n40 n29) -(e n40 n35) -(e n40 n45) -(e n40 n50) -(e n40 n57) -(e n41 n2) -(e n41 n6) -(e n41 n9) -(e n41 n10) -(e n41 n12) -(e n41 n19) -(e n41 n23) -(e n41 n32) -(e n41 n46) -(e n41 n47) -(e n41 n49) -(e n41 n51) -(e n41 n55) -(e n41 n56) -(e n41 n68) -(e n42 n4) -(e n42 n10) -(e n42 n11) -(e n42 n17) -(e n42 n18) -(e n42 n24) -(e n42 n26) -(e n42 n36) -(e n42 n37) -(e n42 n39) -(e n42 n49) -(e n42 n56) -(e n42 n57) -(e n42 n67) -(e n42 n68) -(e n43 n11) -(e n43 n13) -(e n43 n32) -(e n43 n39) -(e n43 n42) -(e n43 n45) -(e n43 n50) -(e n43 n54) -(e n43 n56) -(e n43 n58) -(e n43 n61) -(e n43 n66) -(e n44 n2) -(e n44 n5) -(e n44 n23) -(e n44 n28) -(e n44 n30) -(e n44 n32) -(e n44 n50) -(e n44 n64) -(e n44 n65) -(e n44 n69) -(e n45 n3) -(e n45 n6) -(e n45 n26) -(e n45 n27) -(e n45 n28) -(e n45 n31) -(e n45 n39) -(e n45 n55) -(e n45 n67) -(e n46 n2) -(e n46 n3) -(e n46 n7) -(e n46 n9) -(e n46 n14) -(e n46 n17) -(e n46 n27) -(e n46 n33) -(e n46 n34) -(e n46 n39) -(e n46 n41) -(e n46 n47) -(e n46 n57) -(e n46 n67) -(e n47 n3) -(e n47 n8) -(e n47 n9) -(e n47 n16) -(e n47 n38) -(e n47 n44) -(e n47 n52) -(e n47 n53) -(e n47 n55) -(e n47 n57) -(e n47 n58) -(e n47 n67) -(e n47 n69) -(e n48 n1) -(e n48 n3) -(e n48 n7) -(e n48 n11) -(e n48 n14) -(e n48 n18) -(e n48 n26) -(e n48 n32) -(e n48 n41) -(e n48 n50) -(e n48 n52) -(e n48 n63) -(e n48 n69) -(e n49 n0) -(e n49 n3) -(e n49 n4) -(e n49 n6) -(e n49 n8) -(e n49 n9) -(e n49 n12) -(e n49 n15) -(e n49 n20) -(e n49 n43) -(e n49 n47) -(e n49 n53) -(e n49 n60) -(e n49 n61) -(e n49 n66) -(e n49 n67) -(e n49 n69) -(e n50 n0) -(e n50 n2) -(e n50 n12) -(e n50 n20) -(e n50 n27) -(e n50 n30) -(e n50 n32) -(e n50 n38) -(e n50 n44) -(e n50 n49) -(e n50 n52) -(e n50 n55) -(e n50 n57) -(e n50 n59) -(e n50 n64) -(e n51 n6) -(e n51 n12) -(e n51 n17) -(e n51 n22) -(e n51 n24) -(e n51 n25) -(e n51 n27) -(e n51 n40) -(e n51 n42) -(e n51 n52) -(e n51 n58) -(e n51 n66) -(e n52 n1) -(e n52 n25) -(e n52 n44) -(e n52 n48) -(e n52 n49) -(e n52 n51) -(e n52 n53) -(e n52 n58) -(e n52 n59) -(e n52 n61) -(e n52 n67) -(e n53 n3) -(e n53 n9) -(e n53 n10) -(e n53 n17) -(e n53 n21) -(e n53 n23) -(e n53 n27) -(e n53 n30) -(e n53 n32) -(e n53 n35) -(e n53 n36) -(e n53 n42) -(e n53 n44) -(e n53 n49) -(e n53 n58) -(e n53 n66) -(e n54 n3) -(e n54 n4) -(e n54 n8) -(e n54 n25) -(e n54 n47) -(e n54 n61) -(e n54 n63) -(e n54 n65) -(e n54 n67) -(e n55 n2) -(e n55 n15) -(e n55 n25) -(e n55 n30) -(e n55 n48) -(e n55 n52) -(e n55 n53) -(e n55 n59) -(e n55 n60) -(e n55 n62) -(e n55 n64) -(e n56 n13) -(e n56 n17) -(e n56 n22) -(e n56 n23) -(e n56 n26) -(e n56 n32) -(e n56 n33) -(e n56 n35) -(e n56 n43) -(e n56 n51) -(e n56 n54) -(e n56 n57) -(e n56 n63) -(e n56 n67) -(e n57 n10) -(e n57 n17) -(e n57 n23) -(e n57 n27) -(e n57 n31) -(e n57 n38) -(e n57 n42) -(e n57 n48) -(e n57 n59) -(e n57 n60) -(e n57 n62) -(e n57 n65) -(e n58 n1) -(e n58 n2) -(e n58 n25) -(e n58 n26) -(e n58 n28) -(e n58 n36) -(e n58 n40) -(e n58 n56) -(e n59 n4) -(e n59 n8) -(e n59 n9) -(e n59 n10) -(e n59 n11) -(e n59 n15) -(e n59 n38) -(e n59 n41) -(e n59 n42) -(e n59 n52) -(e n59 n62) -(e n59 n69) -(e n60 n2) -(e n60 n17) -(e n60 n19) -(e n60 n21) -(e n60 n26) -(e n60 n28) -(e n60 n30) -(e n60 n32) -(e n60 n44) -(e n60 n45) -(e n60 n54) -(e n60 n63) -(e n60 n68) -(e n61 n1) -(e n61 n2) -(e n61 n4) -(e n61 n5) -(e n61 n6) -(e n61 n7) -(e n61 n8) -(e n61 n14) -(e n61 n18) -(e n61 n21) -(e n61 n25) -(e n61 n28) -(e n61 n33) -(e n61 n34) -(e n61 n42) -(e n61 n49) -(e n62 n3) -(e n62 n5) -(e n62 n11) -(e n62 n17) -(e n62 n30) -(e n62 n35) -(e n62 n37) -(e n62 n49) -(e n62 n51) -(e n62 n55) -(e n62 n66) -(e n62 n68) -(e n62 n69) -(e n63 n0) -(e n63 n7) -(e n63 n11) -(e n63 n13) -(e n63 n15) -(e n63 n17) -(e n63 n18) -(e n63 n20) -(e n63 n30) -(e n63 n35) -(e n63 n41) -(e n63 n46) -(e n63 n47) -(e n63 n51) -(e n63 n52) -(e n63 n58) -(e n63 n62) -(e n64 n0) -(e n64 n6) -(e n64 n14) -(e n64 n24) -(e n64 n29) -(e n64 n35) -(e n64 n37) -(e n64 n39) -(e n64 n40) -(e n64 n43) -(e n64 n45) -(e n64 n50) -(e n64 n65) -(e n64 n66) -(e n65 n1) -(e n65 n3) -(e n65 n16) -(e n65 n21) -(e n65 n28) -(e n65 n32) -(e n65 n36) -(e n65 n42) -(e n65 n59) -(e n65 n60) -(e n65 n63) -(e n66 n5) -(e n66 n7) -(e n66 n11) -(e n66 n16) -(e n66 n17) -(e n66 n21) -(e n66 n22) -(e n66 n23) -(e n66 n25) -(e n66 n26) -(e n66 n29) -(e n66 n33) -(e n66 n35) -(e n66 n37) -(e n66 n44) -(e n66 n51) -(e n66 n55) -(e n66 n63) -(e n66 n64) -(e n66 n65) -(e n67 n8) -(e n67 n14) -(e n67 n19) -(e n67 n20) -(e n67 n27) -(e n67 n33) -(e n67 n36) -(e n67 n40) -(e n67 n46) -(e n67 n50) -(e n67 n51) -(e n68 n1) -(e n68 n5) -(e n68 n6) -(e n68 n14) -(e n68 n15) -(e n68 n22) -(e n68 n26) -(e n68 n27) -(e n68 n30) -(e n68 n38) -(e n68 n41) -(e n68 n57) -(e n68 n58) -(e n68 n63) -(e n69 n3) -(e n69 n7) -(e n69 n8) -(e n69 n10) -(e n69 n15) -(e n69 n16) -(e n69 n17) -(e n69 n20) -(e n69 n30) -(e n69 n38) -(e n69 n39) -(e n69 n47) -(e n69 n64) -(e n69 n65) -(e n69 n67) -(exec 9 (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a))) diff --git a/examples/transforms/cyc_staged.mm2 b/examples/transforms/cyc_staged.mm2 deleted file mode 100644 index 63ad0c46..00000000 --- a/examples/transforms/cyc_staged.mm2 +++ /dev/null @@ -1,902 +0,0 @@ -(e n0 n23) -(e n0 n26) -(e n0 n30) -(e n0 n34) -(e n0 n37) -(e n0 n48) -(e n0 n69) -(e n1 n5) -(e n1 n7) -(e n1 n9) -(e n1 n12) -(e n1 n14) -(e n1 n18) -(e n1 n26) -(e n1 n31) -(e n1 n43) -(e n1 n47) -(e n1 n48) -(e n1 n51) -(e n1 n52) -(e n1 n60) -(e n1 n67) -(e n2 n0) -(e n2 n4) -(e n2 n8) -(e n2 n9) -(e n2 n12) -(e n2 n17) -(e n2 n20) -(e n2 n28) -(e n2 n33) -(e n2 n50) -(e n2 n63) -(e n3 n1) -(e n3 n8) -(e n3 n9) -(e n3 n18) -(e n3 n21) -(e n3 n25) -(e n3 n41) -(e n3 n46) -(e n3 n59) -(e n3 n63) -(e n3 n69) -(e n4 n2) -(e n4 n13) -(e n4 n22) -(e n4 n26) -(e n4 n35) -(e n4 n44) -(e n4 n51) -(e n4 n53) -(e n4 n59) -(e n4 n65) -(e n4 n67) -(e n4 n69) -(e n5 n0) -(e n5 n3) -(e n5 n16) -(e n5 n18) -(e n5 n24) -(e n5 n35) -(e n5 n40) -(e n5 n65) -(e n5 n66) -(e n6 n4) -(e n6 n13) -(e n6 n19) -(e n6 n22) -(e n6 n27) -(e n6 n40) -(e n6 n41) -(e n6 n45) -(e n6 n60) -(e n6 n69) -(e n7 n1) -(e n7 n4) -(e n7 n5) -(e n7 n8) -(e n7 n17) -(e n7 n25) -(e n7 n27) -(e n7 n30) -(e n7 n38) -(e n7 n40) -(e n7 n43) -(e n7 n60) -(e n8 n0) -(e n8 n13) -(e n8 n16) -(e n8 n26) -(e n8 n35) -(e n8 n46) -(e n8 n49) -(e n8 n51) -(e n8 n59) -(e n9 n3) -(e n9 n4) -(e n9 n5) -(e n9 n6) -(e n9 n10) -(e n9 n11) -(e n9 n15) -(e n9 n28) -(e n9 n34) -(e n9 n35) -(e n9 n39) -(e n9 n43) -(e n9 n46) -(e n9 n49) -(e n9 n53) -(e n9 n57) -(e n9 n58) -(e n9 n61) -(e n9 n63) -(e n9 n67) -(e n10 n0) -(e n10 n4) -(e n10 n17) -(e n10 n32) -(e n10 n38) -(e n10 n42) -(e n10 n45) -(e n10 n53) -(e n10 n58) -(e n10 n60) -(e n10 n66) -(e n11 n12) -(e n11 n14) -(e n11 n20) -(e n11 n21) -(e n11 n28) -(e n11 n32) -(e n11 n33) -(e n11 n39) -(e n11 n54) -(e n11 n59) -(e n12 n1) -(e n12 n16) -(e n12 n17) -(e n12 n41) -(e n12 n54) -(e n12 n56) -(e n12 n58) -(e n12 n59) -(e n12 n61) -(e n12 n66) -(e n13 n2) -(e n13 n3) -(e n13 n4) -(e n13 n18) -(e n13 n19) -(e n13 n24) -(e n13 n32) -(e n13 n37) -(e n13 n39) -(e n13 n51) -(e n13 n56) -(e n13 n67) -(e n13 n68) -(e n13 n69) -(e n14 n6) -(e n14 n7) -(e n14 n13) -(e n14 n20) -(e n14 n22) -(e n14 n26) -(e n14 n29) -(e n14 n50) -(e n14 n57) -(e n14 n67) -(e n15 n0) -(e n15 n2) -(e n15 n9) -(e n15 n12) -(e n15 n17) -(e n15 n19) -(e n15 n26) -(e n15 n27) -(e n15 n41) -(e n15 n46) -(e n15 n47) -(e n15 n50) -(e n15 n56) -(e n15 n58) -(e n16 n8) -(e n16 n11) -(e n16 n15) -(e n16 n30) -(e n16 n33) -(e n16 n34) -(e n16 n43) -(e n16 n53) -(e n16 n57) -(e n16 n61) -(e n16 n62) -(e n16 n69) -(e n17 n6) -(e n17 n9) -(e n17 n13) -(e n17 n25) -(e n17 n26) -(e n17 n30) -(e n17 n37) -(e n17 n49) -(e n17 n63) -(e n17 n64) -(e n18 n6) -(e n18 n9) -(e n18 n11) -(e n18 n25) -(e n18 n31) -(e n18 n33) -(e n18 n45) -(e n18 n47) -(e n18 n49) -(e n18 n51) -(e n18 n58) -(e n18 n65) -(e n18 n67) -(e n19 n16) -(e n19 n22) -(e n19 n24) -(e n19 n41) -(e n19 n46) -(e n19 n47) -(e n19 n60) -(e n19 n61) -(e n19 n68) -(e n20 n1) -(e n20 n15) -(e n20 n16) -(e n20 n25) -(e n20 n32) -(e n20 n41) -(e n20 n42) -(e n20 n48) -(e n20 n50) -(e n20 n51) -(e n20 n52) -(e n20 n53) -(e n20 n61) -(e n21 n8) -(e n21 n12) -(e n21 n14) -(e n21 n23) -(e n21 n28) -(e n21 n32) -(e n21 n41) -(e n21 n59) -(e n21 n63) -(e n22 n1) -(e n22 n7) -(e n22 n8) -(e n22 n11) -(e n22 n12) -(e n22 n20) -(e n22 n23) -(e n22 n24) -(e n22 n25) -(e n22 n34) -(e n22 n36) -(e n22 n39) -(e n22 n41) -(e n22 n44) -(e n22 n59) -(e n22 n65) -(e n22 n68) -(e n23 n1) -(e n23 n4) -(e n23 n8) -(e n23 n12) -(e n23 n16) -(e n23 n17) -(e n23 n18) -(e n23 n19) -(e n23 n30) -(e n23 n40) -(e n23 n51) -(e n23 n60) -(e n23 n62) -(e n23 n68) -(e n24 n3) -(e n24 n6) -(e n24 n11) -(e n24 n16) -(e n24 n19) -(e n24 n20) -(e n24 n23) -(e n24 n25) -(e n24 n30) -(e n24 n35) -(e n24 n37) -(e n24 n47) -(e n24 n51) -(e n24 n53) -(e n24 n60) -(e n25 n1) -(e n25 n5) -(e n25 n6) -(e n25 n23) -(e n25 n34) -(e n25 n37) -(e n25 n45) -(e n25 n48) -(e n25 n51) -(e n25 n52) -(e n25 n66) -(e n25 n67) -(e n26 n2) -(e n26 n11) -(e n26 n12) -(e n26 n17) -(e n26 n19) -(e n26 n23) -(e n26 n31) -(e n26 n35) -(e n26 n47) -(e n26 n49) -(e n26 n51) -(e n26 n68) -(e n26 n69) -(e n27 n5) -(e n27 n6) -(e n27 n8) -(e n27 n9) -(e n27 n15) -(e n27 n17) -(e n27 n23) -(e n27 n24) -(e n27 n26) -(e n27 n44) -(e n27 n45) -(e n27 n49) -(e n27 n51) -(e n27 n56) -(e n27 n59) -(e n27 n69) -(e n28 n2) -(e n28 n11) -(e n28 n20) -(e n28 n34) -(e n28 n35) -(e n28 n40) -(e n28 n45) -(e n28 n53) -(e n28 n57) -(e n28 n63) -(e n28 n69) -(e n29 n1) -(e n29 n4) -(e n29 n5) -(e n29 n10) -(e n29 n14) -(e n29 n34) -(e n29 n37) -(e n29 n41) -(e n29 n44) -(e n29 n45) -(e n29 n46) -(e n29 n61) -(e n29 n69) -(e n30 n8) -(e n30 n9) -(e n30 n16) -(e n30 n24) -(e n30 n31) -(e n30 n32) -(e n30 n33) -(e n30 n46) -(e n30 n47) -(e n30 n50) -(e n30 n53) -(e n30 n60) -(e n30 n63) -(e n30 n66) -(e n30 n69) -(e n31 n5) -(e n31 n10) -(e n31 n12) -(e n31 n15) -(e n31 n20) -(e n31 n22) -(e n31 n23) -(e n31 n24) -(e n31 n28) -(e n31 n38) -(e n31 n42) -(e n31 n49) -(e n31 n53) -(e n31 n56) -(e n31 n61) -(e n31 n64) -(e n31 n67) -(e n32 n1) -(e n32 n3) -(e n32 n15) -(e n32 n25) -(e n32 n31) -(e n32 n35) -(e n32 n39) -(e n32 n40) -(e n32 n47) -(e n32 n49) -(e n32 n53) -(e n32 n54) -(e n32 n66) -(e n33 n1) -(e n33 n2) -(e n33 n4) -(e n33 n8) -(e n33 n16) -(e n33 n21) -(e n33 n28) -(e n33 n31) -(e n33 n32) -(e n33 n35) -(e n33 n42) -(e n33 n44) -(e n33 n49) -(e n33 n53) -(e n33 n65) -(e n34 n6) -(e n34 n13) -(e n34 n18) -(e n34 n29) -(e n34 n30) -(e n34 n31) -(e n34 n33) -(e n34 n37) -(e n34 n39) -(e n34 n47) -(e n34 n52) -(e n34 n54) -(e n34 n63) -(e n34 n66) -(e n34 n67) -(e n35 n2) -(e n35 n3) -(e n35 n8) -(e n35 n9) -(e n35 n13) -(e n35 n14) -(e n35 n27) -(e n35 n34) -(e n35 n41) -(e n35 n43) -(e n35 n46) -(e n35 n51) -(e n35 n52) -(e n35 n58) -(e n35 n60) -(e n36 n5) -(e n36 n10) -(e n36 n12) -(e n36 n15) -(e n36 n18) -(e n36 n24) -(e n36 n28) -(e n36 n37) -(e n36 n41) -(e n36 n45) -(e n36 n46) -(e n36 n56) -(e n36 n62) -(e n36 n68) -(e n37 n2) -(e n37 n13) -(e n37 n14) -(e n37 n21) -(e n37 n23) -(e n37 n29) -(e n37 n35) -(e n37 n48) -(e n37 n55) -(e n38 n2) -(e n38 n8) -(e n38 n18) -(e n38 n19) -(e n38 n23) -(e n38 n26) -(e n38 n33) -(e n38 n43) -(e n38 n60) -(e n39 n3) -(e n39 n4) -(e n39 n8) -(e n39 n10) -(e n39 n11) -(e n39 n14) -(e n39 n15) -(e n39 n27) -(e n39 n29) -(e n39 n40) -(e n39 n41) -(e n39 n42) -(e n39 n43) -(e n39 n46) -(e n39 n48) -(e n39 n50) -(e n39 n51) -(e n39 n52) -(e n39 n54) -(e n39 n56) -(e n39 n58) -(e n39 n60) -(e n39 n68) -(e n40 n10) -(e n40 n13) -(e n40 n24) -(e n40 n25) -(e n40 n26) -(e n40 n28) -(e n40 n29) -(e n40 n35) -(e n40 n45) -(e n40 n50) -(e n40 n57) -(e n41 n2) -(e n41 n6) -(e n41 n9) -(e n41 n10) -(e n41 n12) -(e n41 n19) -(e n41 n23) -(e n41 n32) -(e n41 n46) -(e n41 n47) -(e n41 n49) -(e n41 n51) -(e n41 n55) -(e n41 n56) -(e n41 n68) -(e n42 n4) -(e n42 n10) -(e n42 n11) -(e n42 n17) -(e n42 n18) -(e n42 n24) -(e n42 n26) -(e n42 n36) -(e n42 n37) -(e n42 n39) -(e n42 n49) -(e n42 n56) -(e n42 n57) -(e n42 n67) -(e n42 n68) -(e n43 n11) -(e n43 n13) -(e n43 n32) -(e n43 n39) -(e n43 n42) -(e n43 n45) -(e n43 n50) -(e n43 n54) -(e n43 n56) -(e n43 n58) -(e n43 n61) -(e n43 n66) -(e n44 n2) -(e n44 n5) -(e n44 n23) -(e n44 n28) -(e n44 n30) -(e n44 n32) -(e n44 n50) -(e n44 n64) -(e n44 n65) -(e n44 n69) -(e n45 n3) -(e n45 n6) -(e n45 n26) -(e n45 n27) -(e n45 n28) -(e n45 n31) -(e n45 n39) -(e n45 n55) -(e n45 n67) -(e n46 n2) -(e n46 n3) -(e n46 n7) -(e n46 n9) -(e n46 n14) -(e n46 n17) -(e n46 n27) -(e n46 n33) -(e n46 n34) -(e n46 n39) -(e n46 n41) -(e n46 n47) -(e n46 n57) -(e n46 n67) -(e n47 n3) -(e n47 n8) -(e n47 n9) -(e n47 n16) -(e n47 n38) -(e n47 n44) -(e n47 n52) -(e n47 n53) -(e n47 n55) -(e n47 n57) -(e n47 n58) -(e n47 n67) -(e n47 n69) -(e n48 n1) -(e n48 n3) -(e n48 n7) -(e n48 n11) -(e n48 n14) -(e n48 n18) -(e n48 n26) -(e n48 n32) -(e n48 n41) -(e n48 n50) -(e n48 n52) -(e n48 n63) -(e n48 n69) -(e n49 n0) -(e n49 n3) -(e n49 n4) -(e n49 n6) -(e n49 n8) -(e n49 n9) -(e n49 n12) -(e n49 n15) -(e n49 n20) -(e n49 n43) -(e n49 n47) -(e n49 n53) -(e n49 n60) -(e n49 n61) -(e n49 n66) -(e n49 n67) -(e n49 n69) -(e n50 n0) -(e n50 n2) -(e n50 n12) -(e n50 n20) -(e n50 n27) -(e n50 n30) -(e n50 n32) -(e n50 n38) -(e n50 n44) -(e n50 n49) -(e n50 n52) -(e n50 n55) -(e n50 n57) -(e n50 n59) -(e n50 n64) -(e n51 n6) -(e n51 n12) -(e n51 n17) -(e n51 n22) -(e n51 n24) -(e n51 n25) -(e n51 n27) -(e n51 n40) -(e n51 n42) -(e n51 n52) -(e n51 n58) -(e n51 n66) -(e n52 n1) -(e n52 n25) -(e n52 n44) -(e n52 n48) -(e n52 n49) -(e n52 n51) -(e n52 n53) -(e n52 n58) -(e n52 n59) -(e n52 n61) -(e n52 n67) -(e n53 n3) -(e n53 n9) -(e n53 n10) -(e n53 n17) -(e n53 n21) -(e n53 n23) -(e n53 n27) -(e n53 n30) -(e n53 n32) -(e n53 n35) -(e n53 n36) -(e n53 n42) -(e n53 n44) -(e n53 n49) -(e n53 n58) -(e n53 n66) -(e n54 n3) -(e n54 n4) -(e n54 n8) -(e n54 n25) -(e n54 n47) -(e n54 n61) -(e n54 n63) -(e n54 n65) -(e n54 n67) -(e n55 n2) -(e n55 n15) -(e n55 n25) -(e n55 n30) -(e n55 n48) -(e n55 n52) -(e n55 n53) -(e n55 n59) -(e n55 n60) -(e n55 n62) -(e n55 n64) -(e n56 n13) -(e n56 n17) -(e n56 n22) -(e n56 n23) -(e n56 n26) -(e n56 n32) -(e n56 n33) -(e n56 n35) -(e n56 n43) -(e n56 n51) -(e n56 n54) -(e n56 n57) -(e n56 n63) -(e n56 n67) -(e n57 n10) -(e n57 n17) -(e n57 n23) -(e n57 n27) -(e n57 n31) -(e n57 n38) -(e n57 n42) -(e n57 n48) -(e n57 n59) -(e n57 n60) -(e n57 n62) -(e n57 n65) -(e n58 n1) -(e n58 n2) -(e n58 n25) -(e n58 n26) -(e n58 n28) -(e n58 n36) -(e n58 n40) -(e n58 n56) -(e n59 n4) -(e n59 n8) -(e n59 n9) -(e n59 n10) -(e n59 n11) -(e n59 n15) -(e n59 n38) -(e n59 n41) -(e n59 n42) -(e n59 n52) -(e n59 n62) -(e n59 n69) -(e n60 n2) -(e n60 n17) -(e n60 n19) -(e n60 n21) -(e n60 n26) -(e n60 n28) -(e n60 n30) -(e n60 n32) -(e n60 n44) -(e n60 n45) -(e n60 n54) -(e n60 n63) -(e n60 n68) -(e n61 n1) -(e n61 n2) -(e n61 n4) -(e n61 n5) -(e n61 n6) -(e n61 n7) -(e n61 n8) -(e n61 n14) -(e n61 n18) -(e n61 n21) -(e n61 n25) -(e n61 n28) -(e n61 n33) -(e n61 n34) -(e n61 n42) -(e n61 n49) -(e n62 n3) -(e n62 n5) -(e n62 n11) -(e n62 n17) -(e n62 n30) -(e n62 n35) -(e n62 n37) -(e n62 n49) -(e n62 n51) -(e n62 n55) -(e n62 n66) -(e n62 n68) -(e n62 n69) -(e n63 n0) -(e n63 n7) -(e n63 n11) -(e n63 n13) -(e n63 n15) -(e n63 n17) -(e n63 n18) -(e n63 n20) -(e n63 n30) -(e n63 n35) -(e n63 n41) -(e n63 n46) -(e n63 n47) -(e n63 n51) -(e n63 n52) -(e n63 n58) -(e n63 n62) -(e n64 n0) -(e n64 n6) -(e n64 n14) -(e n64 n24) -(e n64 n29) -(e n64 n35) -(e n64 n37) -(e n64 n39) -(e n64 n40) -(e n64 n43) -(e n64 n45) -(e n64 n50) -(e n64 n65) -(e n64 n66) -(e n65 n1) -(e n65 n3) -(e n65 n16) -(e n65 n21) -(e n65 n28) -(e n65 n32) -(e n65 n36) -(e n65 n42) -(e n65 n59) -(e n65 n60) -(e n65 n63) -(e n66 n5) -(e n66 n7) -(e n66 n11) -(e n66 n16) -(e n66 n17) -(e n66 n21) -(e n66 n22) -(e n66 n23) -(e n66 n25) -(e n66 n26) -(e n66 n29) -(e n66 n33) -(e n66 n35) -(e n66 n37) -(e n66 n44) -(e n66 n51) -(e n66 n55) -(e n66 n63) -(e n66 n64) -(e n66 n65) -(e n67 n8) -(e n67 n14) -(e n67 n19) -(e n67 n20) -(e n67 n27) -(e n67 n33) -(e n67 n36) -(e n67 n40) -(e n67 n46) -(e n67 n50) -(e n67 n51) -(e n68 n1) -(e n68 n5) -(e n68 n6) -(e n68 n14) -(e n68 n15) -(e n68 n22) -(e n68 n26) -(e n68 n27) -(e n68 n30) -(e n68 n38) -(e n68 n41) -(e n68 n57) -(e n68 n58) -(e n68 n63) -(e n69 n3) -(e n69 n7) -(e n69 n8) -(e n69 n10) -(e n69 n15) -(e n69 n16) -(e n69 n17) -(e n69 n20) -(e n69 n30) -(e n69 n38) -(e n69 n39) -(e n69 n47) -(e n69 n64) -(e n69 n65) -(e n69 n67) -(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d))) -(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a))) diff --git a/examples/transforms/generate.py b/examples/transforms/generate.py index cfdd6692..aed1a163 100755 --- a/examples/transforms/generate.py +++ b/examples/transforms/generate.py @@ -9,6 +9,8 @@ """ import os, random, sys +RULES = {'cyc_naive': '(exec 9 (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'cyc_staged': '(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d)))\n(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'clq_naive': '(exec 9 (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'clq_staged': '(exec (1 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2)))\n(exec (1 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'craft_naive': '(exec 9 (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n)))\n (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi)))\n (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi)))\n (inventory $xi) (inventory $yi))\n (, (craftable $n)))', 'craft_staged': '(exec (1 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p)))\n(exec (1 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p)))\n(exec (1 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n))))\n (, (craftable $n)))', 'lts_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuelN (S $k)) (state $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (fuelN $k)) (- (fuelN (S $k)))))', 'lts_delta': ';; One exec: take the worklist, publish successors into both the state set and the worklist,\n;; retire what was taken. A separate promotion exec would be starved -- this family re-adds\n;; itself and sorts first, so it consumes all the fuel before the promoter ever runs.\n(exec (1 Z) (, (exec (1 $l) $p $t) (fuelD (S $k)) (dstate $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (dstate $u))\n (- (dstate $s)) (+ (fuelD $k)) (- (fuelD (S $k)))))', 'pc3_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k)))))', 'pc3_delta': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (dmsg (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b))\n (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k)))))', 'pc3_consume': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b))\n (- (petri (? $c $pl $b))) (- (petri (! $c $pl)))\n (+ (fuel $k)) (- (fuel (S $k)))))'} + def main(outdir): os.makedirs(outdir, exist_ok=True) w = lambda n, s: open(os.path.join(outdir, n), "w").write(s) @@ -57,7 +59,50 @@ def main(outdir): (exec (1 Z) (, (exec (1 $l) $p $t) (front $l $x $y) (edge $y $z)) (, (exec (1 (S $l)) $p $t) (front (S $l) $x $z) (path $x $z))) """) - print("wrote 6 programs to " + outdir) + + E = set() + while len(E) < 900: + a, b = random.randrange(70), random.randrange(70) + if a != b: E.add((a, b)) + edges = "\n".join("(e n%d n%d)" % (a, b) for a, b in sorted(E)) + "\n" + w("cyc_naive.mm2", edges + RULES["cyc_naive"] + "\n") + w("cyc_staged.mm2", edges + RULES["cyc_staged"] + "\n") + + C = set() + while len(C) < 3600: + a, b = random.randrange(200), random.randrange(200) + if a < b: C.add((a, b)) + cedges = "\n".join("(edge n%d n%d)" % (a, b) for a, b in sorted(C)) + "\n" + w("clq_naive.mm2", cedges + RULES["clq_naive"] + "\n") + w("clq_staged.mm2", cedges + RULES["clq_staged"] + "\n") + + L = [] + for pi in range(400): + L += ["(recipe r%d (numIngredients 2))" % pi, "(recipe r%d (result (id item%d)))" % (pi, pi), + "(recipe r%d (pattern 0 sx%d))" % (pi, pi), "(recipe r%d (pattern 1 sy%d))" % (pi, pi)] + for k in range(12): + L.append("(recipe r%d (key (sx%d ing%d)))" % (pi, pi, (pi * 3 + k) % 600)) + L.append("(recipe r%d (key (sy%d ing%d)))" % (pi, pi, (pi * 5 + k) % 600)) + L += ["(inventory ing%d)" % i for i in range(600)] + craft = "\n".join(L) + "\n" + w("craft_naive.mm2", craft + RULES["craft_naive"] + "\n") + w("craft_staged.mm2", craft + RULES["craft_staged"] + "\n") + + tr = "\n".join("(trans s%d s%d)" % (i, (i * 7 + j * 13 + 1) % 6000) + for i in range(6000) for j in range(3)) + "\n(state s0)\n" + w("lts_naive.mm2", tr + RULES["lts_naive"] + "\n") + w("lts_delta.mm2", tr + "(dstate s0)\n" + RULES["lts_delta"] + "\n") + + for n in (200, 400, 800): + soup = "\n".join("(petri (? c%d p%d (! c%d p%d)))" % (i, i, i + 1, i + 1) for i in range(n)) + fuel = "Z" + for _ in range(n + 5): fuel = "(S %s)" % fuel + head = soup + "\n(petri (! c0 p0))\n(fuel %s)\n" % fuel + w("pc%d_naive.mm2" % n, head + RULES["pc3_naive"] + "\n") + w("pc%d_delta.mm2" % n, soup + "\n(petri (! c0 p0))\n(dmsg (! c0 p0))\n(fuel %s)\n" % fuel + + RULES["pc3_delta"] + "\n") + w("pc%d_consume.mm2" % n, head + RULES["pc3_consume"] + "\n") + print("wrote all programs to " + outdir) if __name__ == "__main__": main(sys.argv[1] if len(sys.argv) > 1 else ".") diff --git a/examples/transforms/lts_delta.mm2 b/examples/transforms/lts_delta.mm2 deleted file mode 100644 index b944a0d9..00000000 --- a/examples/transforms/lts_delta.mm2 +++ /dev/null @@ -1,18011 +0,0 @@ -(trans s0 s1) -(trans s0 s14) -(trans s0 s27) -(trans s1 s8) -(trans s1 s21) -(trans s1 s34) -(trans s2 s15) -(trans s2 s28) -(trans s2 s41) -(trans s3 s22) -(trans s3 s35) -(trans s3 s48) -(trans s4 s29) -(trans s4 s42) -(trans s4 s55) -(trans s5 s36) -(trans s5 s49) -(trans s5 s62) -(trans s6 s43) -(trans s6 s56) -(trans s6 s69) -(trans s7 s50) -(trans s7 s63) -(trans s7 s76) -(trans s8 s57) -(trans s8 s70) -(trans s8 s83) -(trans s9 s64) -(trans s9 s77) -(trans s9 s90) -(trans s10 s71) -(trans s10 s84) -(trans s10 s97) -(trans s11 s78) -(trans s11 s91) -(trans s11 s104) -(trans s12 s85) -(trans s12 s98) -(trans s12 s111) -(trans s13 s92) -(trans s13 s105) -(trans s13 s118) -(trans s14 s99) -(trans s14 s112) -(trans s14 s125) -(trans s15 s106) -(trans s15 s119) -(trans s15 s132) -(trans s16 s113) -(trans s16 s126) -(trans s16 s139) -(trans s17 s120) -(trans s17 s133) -(trans s17 s146) -(trans s18 s127) -(trans s18 s140) -(trans s18 s153) -(trans s19 s134) -(trans s19 s147) -(trans s19 s160) -(trans s20 s141) -(trans s20 s154) -(trans s20 s167) -(trans s21 s148) -(trans s21 s161) -(trans s21 s174) -(trans s22 s155) -(trans s22 s168) -(trans s22 s181) -(trans s23 s162) -(trans s23 s175) -(trans s23 s188) -(trans s24 s169) -(trans s24 s182) -(trans s24 s195) -(trans s25 s176) -(trans s25 s189) -(trans s25 s202) -(trans s26 s183) -(trans s26 s196) -(trans s26 s209) -(trans s27 s190) -(trans s27 s203) -(trans s27 s216) -(trans s28 s197) -(trans s28 s210) -(trans s28 s223) -(trans s29 s204) -(trans s29 s217) -(trans s29 s230) -(trans s30 s211) -(trans s30 s224) -(trans s30 s237) -(trans s31 s218) -(trans s31 s231) -(trans s31 s244) -(trans s32 s225) -(trans s32 s238) -(trans s32 s251) -(trans s33 s232) -(trans s33 s245) -(trans s33 s258) -(trans s34 s239) -(trans s34 s252) -(trans s34 s265) -(trans s35 s246) -(trans s35 s259) -(trans s35 s272) -(trans s36 s253) -(trans s36 s266) -(trans s36 s279) -(trans s37 s260) -(trans s37 s273) -(trans s37 s286) -(trans s38 s267) -(trans s38 s280) -(trans s38 s293) -(trans s39 s274) -(trans s39 s287) -(trans s39 s300) -(trans s40 s281) -(trans s40 s294) -(trans s40 s307) -(trans s41 s288) -(trans s41 s301) -(trans s41 s314) -(trans s42 s295) -(trans s42 s308) -(trans s42 s321) -(trans s43 s302) -(trans s43 s315) -(trans s43 s328) -(trans s44 s309) -(trans s44 s322) -(trans s44 s335) -(trans s45 s316) -(trans s45 s329) -(trans s45 s342) -(trans s46 s323) -(trans s46 s336) -(trans s46 s349) -(trans s47 s330) -(trans s47 s343) -(trans s47 s356) -(trans s48 s337) -(trans s48 s350) -(trans s48 s363) -(trans s49 s344) -(trans s49 s357) -(trans s49 s370) -(trans s50 s351) -(trans s50 s364) -(trans s50 s377) -(trans s51 s358) -(trans s51 s371) -(trans s51 s384) -(trans s52 s365) -(trans s52 s378) -(trans s52 s391) -(trans s53 s372) -(trans s53 s385) -(trans s53 s398) -(trans s54 s379) -(trans s54 s392) -(trans s54 s405) -(trans s55 s386) -(trans s55 s399) -(trans s55 s412) -(trans s56 s393) -(trans s56 s406) -(trans s56 s419) -(trans s57 s400) -(trans s57 s413) -(trans s57 s426) -(trans s58 s407) -(trans s58 s420) -(trans s58 s433) -(trans s59 s414) -(trans s59 s427) -(trans s59 s440) -(trans s60 s421) -(trans s60 s434) -(trans s60 s447) -(trans s61 s428) -(trans s61 s441) -(trans s61 s454) -(trans s62 s435) -(trans s62 s448) -(trans s62 s461) -(trans s63 s442) -(trans s63 s455) -(trans s63 s468) -(trans s64 s449) -(trans s64 s462) -(trans s64 s475) -(trans s65 s456) -(trans s65 s469) -(trans s65 s482) -(trans s66 s463) -(trans s66 s476) -(trans s66 s489) -(trans s67 s470) -(trans s67 s483) -(trans s67 s496) -(trans s68 s477) -(trans s68 s490) -(trans s68 s503) -(trans s69 s484) -(trans s69 s497) -(trans s69 s510) -(trans s70 s491) -(trans s70 s504) -(trans s70 s517) -(trans s71 s498) -(trans s71 s511) -(trans s71 s524) -(trans s72 s505) -(trans s72 s518) -(trans s72 s531) -(trans s73 s512) -(trans s73 s525) -(trans s73 s538) -(trans s74 s519) -(trans s74 s532) -(trans s74 s545) -(trans s75 s526) -(trans s75 s539) -(trans s75 s552) -(trans s76 s533) -(trans s76 s546) -(trans s76 s559) -(trans s77 s540) -(trans s77 s553) -(trans s77 s566) -(trans s78 s547) -(trans s78 s560) -(trans s78 s573) -(trans s79 s554) -(trans s79 s567) -(trans s79 s580) -(trans s80 s561) -(trans s80 s574) -(trans s80 s587) -(trans s81 s568) -(trans s81 s581) -(trans s81 s594) -(trans s82 s575) -(trans s82 s588) -(trans s82 s601) -(trans s83 s582) -(trans s83 s595) -(trans s83 s608) -(trans s84 s589) -(trans s84 s602) -(trans s84 s615) -(trans s85 s596) -(trans s85 s609) -(trans s85 s622) -(trans s86 s603) -(trans s86 s616) -(trans s86 s629) -(trans s87 s610) -(trans s87 s623) -(trans s87 s636) -(trans s88 s617) -(trans s88 s630) -(trans s88 s643) -(trans s89 s624) -(trans s89 s637) -(trans s89 s650) -(trans s90 s631) -(trans s90 s644) -(trans s90 s657) -(trans s91 s638) -(trans s91 s651) -(trans s91 s664) -(trans s92 s645) -(trans s92 s658) -(trans s92 s671) -(trans s93 s652) -(trans s93 s665) -(trans s93 s678) -(trans s94 s659) -(trans s94 s672) -(trans s94 s685) -(trans s95 s666) -(trans s95 s679) -(trans s95 s692) -(trans s96 s673) -(trans s96 s686) -(trans s96 s699) -(trans s97 s680) -(trans s97 s693) -(trans s97 s706) -(trans s98 s687) -(trans s98 s700) -(trans s98 s713) -(trans s99 s694) -(trans s99 s707) -(trans s99 s720) -(trans s100 s701) -(trans s100 s714) -(trans s100 s727) -(trans s101 s708) -(trans s101 s721) -(trans s101 s734) -(trans s102 s715) -(trans s102 s728) -(trans s102 s741) -(trans s103 s722) -(trans s103 s735) -(trans s103 s748) -(trans s104 s729) -(trans s104 s742) -(trans s104 s755) -(trans s105 s736) -(trans s105 s749) -(trans s105 s762) -(trans s106 s743) -(trans s106 s756) -(trans s106 s769) -(trans s107 s750) -(trans s107 s763) -(trans s107 s776) -(trans s108 s757) -(trans s108 s770) -(trans s108 s783) -(trans s109 s764) -(trans s109 s777) -(trans s109 s790) -(trans s110 s771) -(trans s110 s784) -(trans s110 s797) -(trans s111 s778) -(trans s111 s791) -(trans s111 s804) -(trans s112 s785) -(trans s112 s798) -(trans s112 s811) -(trans s113 s792) -(trans s113 s805) -(trans s113 s818) -(trans s114 s799) -(trans s114 s812) -(trans s114 s825) -(trans s115 s806) -(trans s115 s819) -(trans s115 s832) -(trans s116 s813) -(trans s116 s826) -(trans s116 s839) -(trans s117 s820) -(trans s117 s833) -(trans s117 s846) -(trans s118 s827) -(trans s118 s840) -(trans s118 s853) -(trans s119 s834) -(trans s119 s847) -(trans s119 s860) -(trans s120 s841) -(trans s120 s854) -(trans s120 s867) -(trans s121 s848) -(trans s121 s861) -(trans s121 s874) -(trans s122 s855) -(trans s122 s868) -(trans s122 s881) -(trans s123 s862) -(trans s123 s875) -(trans s123 s888) -(trans s124 s869) -(trans s124 s882) -(trans s124 s895) -(trans s125 s876) -(trans s125 s889) -(trans s125 s902) -(trans s126 s883) -(trans s126 s896) -(trans s126 s909) -(trans s127 s890) -(trans s127 s903) -(trans s127 s916) -(trans s128 s897) -(trans s128 s910) -(trans s128 s923) -(trans s129 s904) -(trans s129 s917) -(trans s129 s930) -(trans s130 s911) -(trans s130 s924) -(trans s130 s937) -(trans s131 s918) -(trans s131 s931) -(trans s131 s944) -(trans s132 s925) -(trans s132 s938) -(trans s132 s951) -(trans s133 s932) -(trans s133 s945) -(trans s133 s958) -(trans s134 s939) -(trans s134 s952) -(trans s134 s965) -(trans s135 s946) -(trans s135 s959) -(trans s135 s972) -(trans s136 s953) -(trans s136 s966) -(trans s136 s979) -(trans s137 s960) -(trans s137 s973) -(trans s137 s986) -(trans s138 s967) -(trans s138 s980) -(trans s138 s993) -(trans s139 s974) -(trans s139 s987) -(trans s139 s1000) -(trans s140 s981) -(trans s140 s994) -(trans s140 s1007) -(trans s141 s988) -(trans s141 s1001) -(trans s141 s1014) -(trans s142 s995) -(trans s142 s1008) -(trans s142 s1021) -(trans s143 s1002) -(trans s143 s1015) -(trans s143 s1028) -(trans s144 s1009) -(trans s144 s1022) -(trans s144 s1035) -(trans s145 s1016) -(trans s145 s1029) -(trans s145 s1042) -(trans s146 s1023) -(trans s146 s1036) -(trans s146 s1049) -(trans s147 s1030) -(trans s147 s1043) -(trans s147 s1056) -(trans s148 s1037) -(trans s148 s1050) -(trans s148 s1063) -(trans s149 s1044) -(trans s149 s1057) -(trans s149 s1070) -(trans s150 s1051) -(trans s150 s1064) -(trans s150 s1077) -(trans s151 s1058) -(trans s151 s1071) -(trans s151 s1084) -(trans s152 s1065) -(trans s152 s1078) -(trans s152 s1091) -(trans s153 s1072) -(trans s153 s1085) -(trans s153 s1098) -(trans s154 s1079) -(trans s154 s1092) -(trans s154 s1105) -(trans s155 s1086) -(trans s155 s1099) -(trans s155 s1112) -(trans s156 s1093) -(trans s156 s1106) -(trans s156 s1119) -(trans s157 s1100) -(trans s157 s1113) -(trans s157 s1126) -(trans s158 s1107) -(trans s158 s1120) -(trans s158 s1133) -(trans s159 s1114) -(trans s159 s1127) -(trans s159 s1140) -(trans s160 s1121) -(trans s160 s1134) -(trans s160 s1147) -(trans s161 s1128) -(trans s161 s1141) -(trans s161 s1154) -(trans s162 s1135) -(trans s162 s1148) -(trans s162 s1161) -(trans s163 s1142) -(trans s163 s1155) -(trans s163 s1168) -(trans s164 s1149) -(trans s164 s1162) -(trans s164 s1175) -(trans s165 s1156) -(trans s165 s1169) -(trans s165 s1182) -(trans s166 s1163) -(trans s166 s1176) -(trans s166 s1189) -(trans s167 s1170) -(trans s167 s1183) -(trans s167 s1196) -(trans s168 s1177) -(trans s168 s1190) -(trans s168 s1203) -(trans s169 s1184) -(trans s169 s1197) -(trans s169 s1210) -(trans s170 s1191) -(trans s170 s1204) -(trans s170 s1217) -(trans s171 s1198) -(trans s171 s1211) -(trans s171 s1224) -(trans s172 s1205) -(trans s172 s1218) -(trans s172 s1231) -(trans s173 s1212) -(trans s173 s1225) -(trans s173 s1238) -(trans s174 s1219) -(trans s174 s1232) -(trans s174 s1245) -(trans s175 s1226) -(trans s175 s1239) -(trans s175 s1252) -(trans s176 s1233) -(trans s176 s1246) -(trans s176 s1259) -(trans s177 s1240) -(trans s177 s1253) -(trans s177 s1266) -(trans s178 s1247) -(trans s178 s1260) -(trans s178 s1273) -(trans s179 s1254) -(trans s179 s1267) -(trans s179 s1280) -(trans s180 s1261) -(trans s180 s1274) -(trans s180 s1287) -(trans s181 s1268) -(trans s181 s1281) -(trans s181 s1294) -(trans s182 s1275) -(trans s182 s1288) -(trans s182 s1301) -(trans s183 s1282) -(trans s183 s1295) -(trans s183 s1308) -(trans s184 s1289) -(trans s184 s1302) -(trans s184 s1315) -(trans s185 s1296) -(trans s185 s1309) -(trans s185 s1322) -(trans s186 s1303) -(trans s186 s1316) -(trans s186 s1329) -(trans s187 s1310) -(trans s187 s1323) -(trans s187 s1336) -(trans s188 s1317) -(trans s188 s1330) -(trans s188 s1343) -(trans s189 s1324) -(trans s189 s1337) -(trans s189 s1350) -(trans s190 s1331) -(trans s190 s1344) -(trans s190 s1357) -(trans s191 s1338) -(trans s191 s1351) -(trans s191 s1364) -(trans s192 s1345) -(trans s192 s1358) -(trans s192 s1371) -(trans s193 s1352) -(trans s193 s1365) -(trans s193 s1378) -(trans s194 s1359) -(trans s194 s1372) -(trans s194 s1385) -(trans s195 s1366) -(trans s195 s1379) -(trans s195 s1392) -(trans s196 s1373) -(trans s196 s1386) -(trans s196 s1399) -(trans s197 s1380) -(trans s197 s1393) -(trans s197 s1406) -(trans s198 s1387) -(trans s198 s1400) -(trans s198 s1413) -(trans s199 s1394) -(trans s199 s1407) -(trans s199 s1420) -(trans s200 s1401) -(trans s200 s1414) -(trans s200 s1427) -(trans s201 s1408) -(trans s201 s1421) -(trans s201 s1434) -(trans s202 s1415) -(trans s202 s1428) -(trans s202 s1441) -(trans s203 s1422) -(trans s203 s1435) -(trans s203 s1448) -(trans s204 s1429) -(trans s204 s1442) -(trans s204 s1455) -(trans s205 s1436) -(trans s205 s1449) -(trans s205 s1462) -(trans s206 s1443) -(trans s206 s1456) -(trans s206 s1469) -(trans s207 s1450) -(trans s207 s1463) -(trans s207 s1476) -(trans s208 s1457) -(trans s208 s1470) -(trans s208 s1483) -(trans s209 s1464) -(trans s209 s1477) -(trans s209 s1490) -(trans s210 s1471) -(trans s210 s1484) -(trans s210 s1497) -(trans s211 s1478) -(trans s211 s1491) -(trans s211 s1504) -(trans s212 s1485) -(trans s212 s1498) -(trans s212 s1511) -(trans s213 s1492) -(trans s213 s1505) -(trans s213 s1518) -(trans s214 s1499) -(trans s214 s1512) -(trans s214 s1525) -(trans s215 s1506) -(trans s215 s1519) -(trans s215 s1532) -(trans s216 s1513) -(trans s216 s1526) -(trans s216 s1539) -(trans s217 s1520) -(trans s217 s1533) -(trans s217 s1546) -(trans s218 s1527) -(trans s218 s1540) -(trans s218 s1553) -(trans s219 s1534) -(trans s219 s1547) -(trans s219 s1560) -(trans s220 s1541) -(trans s220 s1554) -(trans s220 s1567) -(trans s221 s1548) -(trans s221 s1561) -(trans s221 s1574) -(trans s222 s1555) -(trans s222 s1568) -(trans s222 s1581) -(trans s223 s1562) -(trans s223 s1575) -(trans s223 s1588) -(trans s224 s1569) -(trans s224 s1582) -(trans s224 s1595) -(trans s225 s1576) -(trans s225 s1589) -(trans s225 s1602) -(trans s226 s1583) -(trans s226 s1596) -(trans s226 s1609) -(trans s227 s1590) -(trans s227 s1603) -(trans s227 s1616) -(trans s228 s1597) -(trans s228 s1610) -(trans s228 s1623) -(trans s229 s1604) -(trans s229 s1617) -(trans s229 s1630) -(trans s230 s1611) -(trans s230 s1624) -(trans s230 s1637) -(trans s231 s1618) -(trans s231 s1631) -(trans s231 s1644) -(trans s232 s1625) -(trans s232 s1638) -(trans s232 s1651) -(trans s233 s1632) -(trans s233 s1645) -(trans s233 s1658) -(trans s234 s1639) -(trans s234 s1652) -(trans s234 s1665) -(trans s235 s1646) -(trans s235 s1659) -(trans s235 s1672) -(trans s236 s1653) -(trans s236 s1666) -(trans s236 s1679) -(trans s237 s1660) -(trans s237 s1673) -(trans s237 s1686) -(trans s238 s1667) -(trans s238 s1680) -(trans s238 s1693) -(trans s239 s1674) -(trans s239 s1687) -(trans s239 s1700) -(trans s240 s1681) -(trans s240 s1694) -(trans s240 s1707) -(trans s241 s1688) -(trans s241 s1701) -(trans s241 s1714) -(trans s242 s1695) -(trans s242 s1708) -(trans s242 s1721) -(trans s243 s1702) -(trans s243 s1715) -(trans s243 s1728) -(trans s244 s1709) -(trans s244 s1722) -(trans s244 s1735) -(trans s245 s1716) -(trans s245 s1729) -(trans s245 s1742) -(trans s246 s1723) -(trans s246 s1736) -(trans s246 s1749) -(trans s247 s1730) -(trans s247 s1743) -(trans s247 s1756) -(trans s248 s1737) -(trans s248 s1750) -(trans s248 s1763) -(trans s249 s1744) -(trans s249 s1757) -(trans s249 s1770) -(trans s250 s1751) -(trans s250 s1764) -(trans s250 s1777) -(trans s251 s1758) -(trans s251 s1771) -(trans s251 s1784) -(trans s252 s1765) -(trans s252 s1778) -(trans s252 s1791) -(trans s253 s1772) -(trans s253 s1785) -(trans s253 s1798) -(trans s254 s1779) -(trans s254 s1792) -(trans s254 s1805) -(trans s255 s1786) -(trans s255 s1799) -(trans s255 s1812) -(trans s256 s1793) -(trans s256 s1806) -(trans s256 s1819) -(trans s257 s1800) -(trans s257 s1813) -(trans s257 s1826) -(trans s258 s1807) -(trans s258 s1820) -(trans s258 s1833) -(trans s259 s1814) -(trans s259 s1827) -(trans s259 s1840) -(trans s260 s1821) -(trans s260 s1834) -(trans s260 s1847) -(trans s261 s1828) -(trans s261 s1841) -(trans s261 s1854) -(trans s262 s1835) -(trans s262 s1848) -(trans s262 s1861) -(trans s263 s1842) -(trans s263 s1855) -(trans s263 s1868) -(trans s264 s1849) -(trans s264 s1862) -(trans s264 s1875) -(trans s265 s1856) -(trans s265 s1869) -(trans s265 s1882) -(trans s266 s1863) -(trans s266 s1876) -(trans s266 s1889) -(trans s267 s1870) -(trans s267 s1883) -(trans s267 s1896) -(trans s268 s1877) -(trans s268 s1890) -(trans s268 s1903) -(trans s269 s1884) -(trans s269 s1897) -(trans s269 s1910) -(trans s270 s1891) -(trans s270 s1904) -(trans s270 s1917) -(trans s271 s1898) -(trans s271 s1911) -(trans s271 s1924) -(trans s272 s1905) -(trans s272 s1918) -(trans s272 s1931) -(trans s273 s1912) -(trans s273 s1925) -(trans s273 s1938) -(trans s274 s1919) -(trans s274 s1932) -(trans s274 s1945) -(trans s275 s1926) -(trans s275 s1939) -(trans s275 s1952) -(trans s276 s1933) -(trans s276 s1946) -(trans s276 s1959) -(trans s277 s1940) -(trans s277 s1953) -(trans s277 s1966) -(trans s278 s1947) -(trans s278 s1960) -(trans s278 s1973) -(trans s279 s1954) -(trans s279 s1967) -(trans s279 s1980) -(trans s280 s1961) -(trans s280 s1974) -(trans s280 s1987) -(trans s281 s1968) -(trans s281 s1981) -(trans s281 s1994) -(trans s282 s1975) -(trans s282 s1988) -(trans s282 s2001) -(trans s283 s1982) -(trans s283 s1995) -(trans s283 s2008) -(trans s284 s1989) -(trans s284 s2002) -(trans s284 s2015) -(trans s285 s1996) -(trans s285 s2009) -(trans s285 s2022) -(trans s286 s2003) -(trans s286 s2016) -(trans s286 s2029) -(trans s287 s2010) -(trans s287 s2023) -(trans s287 s2036) -(trans s288 s2017) -(trans s288 s2030) -(trans s288 s2043) -(trans s289 s2024) -(trans s289 s2037) -(trans s289 s2050) -(trans s290 s2031) -(trans s290 s2044) -(trans s290 s2057) -(trans s291 s2038) -(trans s291 s2051) -(trans s291 s2064) -(trans s292 s2045) -(trans s292 s2058) -(trans s292 s2071) -(trans s293 s2052) -(trans s293 s2065) -(trans s293 s2078) -(trans s294 s2059) -(trans s294 s2072) -(trans s294 s2085) -(trans s295 s2066) -(trans s295 s2079) -(trans s295 s2092) -(trans s296 s2073) -(trans s296 s2086) -(trans s296 s2099) -(trans s297 s2080) -(trans s297 s2093) -(trans s297 s2106) -(trans s298 s2087) -(trans s298 s2100) -(trans s298 s2113) -(trans s299 s2094) -(trans s299 s2107) -(trans s299 s2120) -(trans s300 s2101) -(trans s300 s2114) -(trans s300 s2127) -(trans s301 s2108) -(trans s301 s2121) -(trans s301 s2134) -(trans s302 s2115) -(trans s302 s2128) -(trans s302 s2141) -(trans s303 s2122) -(trans s303 s2135) -(trans s303 s2148) -(trans s304 s2129) -(trans s304 s2142) -(trans s304 s2155) -(trans s305 s2136) -(trans s305 s2149) -(trans s305 s2162) -(trans s306 s2143) -(trans s306 s2156) -(trans s306 s2169) -(trans s307 s2150) -(trans s307 s2163) -(trans s307 s2176) -(trans s308 s2157) -(trans s308 s2170) -(trans s308 s2183) -(trans s309 s2164) -(trans s309 s2177) -(trans s309 s2190) -(trans s310 s2171) -(trans s310 s2184) -(trans s310 s2197) -(trans s311 s2178) -(trans s311 s2191) -(trans s311 s2204) -(trans s312 s2185) -(trans s312 s2198) -(trans s312 s2211) -(trans s313 s2192) -(trans s313 s2205) -(trans s313 s2218) -(trans s314 s2199) -(trans s314 s2212) -(trans s314 s2225) -(trans s315 s2206) -(trans s315 s2219) -(trans s315 s2232) -(trans s316 s2213) -(trans s316 s2226) -(trans s316 s2239) -(trans s317 s2220) -(trans s317 s2233) -(trans s317 s2246) -(trans s318 s2227) -(trans s318 s2240) -(trans s318 s2253) -(trans s319 s2234) -(trans s319 s2247) -(trans s319 s2260) -(trans s320 s2241) -(trans s320 s2254) -(trans s320 s2267) -(trans s321 s2248) -(trans s321 s2261) -(trans s321 s2274) -(trans s322 s2255) -(trans s322 s2268) -(trans s322 s2281) -(trans s323 s2262) -(trans s323 s2275) -(trans s323 s2288) -(trans s324 s2269) -(trans s324 s2282) -(trans s324 s2295) -(trans s325 s2276) -(trans s325 s2289) -(trans s325 s2302) -(trans s326 s2283) -(trans s326 s2296) -(trans s326 s2309) -(trans s327 s2290) -(trans s327 s2303) -(trans s327 s2316) -(trans s328 s2297) -(trans s328 s2310) -(trans s328 s2323) -(trans s329 s2304) -(trans s329 s2317) -(trans s329 s2330) -(trans s330 s2311) -(trans s330 s2324) -(trans s330 s2337) -(trans s331 s2318) -(trans s331 s2331) -(trans s331 s2344) -(trans s332 s2325) -(trans s332 s2338) -(trans s332 s2351) -(trans s333 s2332) -(trans s333 s2345) -(trans s333 s2358) -(trans s334 s2339) -(trans s334 s2352) -(trans s334 s2365) -(trans s335 s2346) -(trans s335 s2359) -(trans s335 s2372) -(trans s336 s2353) -(trans s336 s2366) -(trans s336 s2379) -(trans s337 s2360) -(trans s337 s2373) -(trans s337 s2386) -(trans s338 s2367) -(trans s338 s2380) -(trans s338 s2393) -(trans s339 s2374) -(trans s339 s2387) -(trans s339 s2400) -(trans s340 s2381) -(trans s340 s2394) -(trans s340 s2407) -(trans s341 s2388) -(trans s341 s2401) -(trans s341 s2414) -(trans s342 s2395) -(trans s342 s2408) -(trans s342 s2421) -(trans s343 s2402) -(trans s343 s2415) -(trans s343 s2428) -(trans s344 s2409) -(trans s344 s2422) -(trans s344 s2435) -(trans s345 s2416) -(trans s345 s2429) -(trans s345 s2442) -(trans s346 s2423) -(trans s346 s2436) -(trans s346 s2449) -(trans s347 s2430) -(trans s347 s2443) -(trans s347 s2456) -(trans s348 s2437) -(trans s348 s2450) -(trans s348 s2463) -(trans s349 s2444) -(trans s349 s2457) -(trans s349 s2470) -(trans s350 s2451) -(trans s350 s2464) -(trans s350 s2477) -(trans s351 s2458) -(trans s351 s2471) -(trans s351 s2484) -(trans s352 s2465) -(trans s352 s2478) -(trans s352 s2491) -(trans s353 s2472) -(trans s353 s2485) -(trans s353 s2498) -(trans s354 s2479) -(trans s354 s2492) -(trans s354 s2505) -(trans s355 s2486) -(trans s355 s2499) -(trans s355 s2512) -(trans s356 s2493) -(trans s356 s2506) -(trans s356 s2519) -(trans s357 s2500) -(trans s357 s2513) -(trans s357 s2526) -(trans s358 s2507) -(trans s358 s2520) -(trans s358 s2533) -(trans s359 s2514) -(trans s359 s2527) -(trans s359 s2540) -(trans s360 s2521) -(trans s360 s2534) -(trans s360 s2547) -(trans s361 s2528) -(trans s361 s2541) -(trans s361 s2554) -(trans s362 s2535) -(trans s362 s2548) -(trans s362 s2561) -(trans s363 s2542) -(trans s363 s2555) -(trans s363 s2568) -(trans s364 s2549) -(trans s364 s2562) -(trans s364 s2575) -(trans s365 s2556) -(trans s365 s2569) -(trans s365 s2582) -(trans s366 s2563) -(trans s366 s2576) -(trans s366 s2589) -(trans s367 s2570) -(trans s367 s2583) -(trans s367 s2596) -(trans s368 s2577) -(trans s368 s2590) -(trans s368 s2603) -(trans s369 s2584) -(trans s369 s2597) -(trans s369 s2610) -(trans s370 s2591) -(trans s370 s2604) -(trans s370 s2617) -(trans s371 s2598) -(trans s371 s2611) -(trans s371 s2624) -(trans s372 s2605) -(trans s372 s2618) -(trans s372 s2631) -(trans s373 s2612) -(trans s373 s2625) -(trans s373 s2638) -(trans s374 s2619) -(trans s374 s2632) -(trans s374 s2645) -(trans s375 s2626) -(trans s375 s2639) -(trans s375 s2652) -(trans s376 s2633) -(trans s376 s2646) -(trans s376 s2659) -(trans s377 s2640) -(trans s377 s2653) -(trans s377 s2666) -(trans s378 s2647) -(trans s378 s2660) -(trans s378 s2673) -(trans s379 s2654) -(trans s379 s2667) -(trans s379 s2680) -(trans s380 s2661) -(trans s380 s2674) -(trans s380 s2687) -(trans s381 s2668) -(trans s381 s2681) -(trans s381 s2694) -(trans s382 s2675) -(trans s382 s2688) -(trans s382 s2701) -(trans s383 s2682) -(trans s383 s2695) -(trans s383 s2708) -(trans s384 s2689) -(trans s384 s2702) -(trans s384 s2715) -(trans s385 s2696) -(trans s385 s2709) -(trans s385 s2722) -(trans s386 s2703) -(trans s386 s2716) -(trans s386 s2729) -(trans s387 s2710) -(trans s387 s2723) -(trans s387 s2736) -(trans s388 s2717) -(trans s388 s2730) -(trans s388 s2743) -(trans s389 s2724) -(trans s389 s2737) -(trans s389 s2750) -(trans s390 s2731) -(trans s390 s2744) -(trans s390 s2757) -(trans s391 s2738) -(trans s391 s2751) -(trans s391 s2764) -(trans s392 s2745) -(trans s392 s2758) -(trans s392 s2771) -(trans s393 s2752) -(trans s393 s2765) -(trans s393 s2778) -(trans s394 s2759) -(trans s394 s2772) -(trans s394 s2785) -(trans s395 s2766) -(trans s395 s2779) -(trans s395 s2792) -(trans s396 s2773) -(trans s396 s2786) -(trans s396 s2799) -(trans s397 s2780) -(trans s397 s2793) -(trans s397 s2806) -(trans s398 s2787) -(trans s398 s2800) -(trans s398 s2813) -(trans s399 s2794) -(trans s399 s2807) -(trans s399 s2820) -(trans s400 s2801) -(trans s400 s2814) -(trans s400 s2827) -(trans s401 s2808) -(trans s401 s2821) -(trans s401 s2834) -(trans s402 s2815) -(trans s402 s2828) -(trans s402 s2841) -(trans s403 s2822) -(trans s403 s2835) -(trans s403 s2848) -(trans s404 s2829) -(trans s404 s2842) -(trans s404 s2855) -(trans s405 s2836) -(trans s405 s2849) -(trans s405 s2862) -(trans s406 s2843) -(trans s406 s2856) -(trans s406 s2869) -(trans s407 s2850) -(trans s407 s2863) -(trans s407 s2876) -(trans s408 s2857) -(trans s408 s2870) -(trans s408 s2883) -(trans s409 s2864) -(trans s409 s2877) -(trans s409 s2890) -(trans s410 s2871) -(trans s410 s2884) -(trans s410 s2897) -(trans s411 s2878) -(trans s411 s2891) -(trans s411 s2904) -(trans s412 s2885) -(trans s412 s2898) -(trans s412 s2911) -(trans s413 s2892) -(trans s413 s2905) -(trans s413 s2918) -(trans s414 s2899) -(trans s414 s2912) -(trans s414 s2925) -(trans s415 s2906) -(trans s415 s2919) -(trans s415 s2932) -(trans s416 s2913) -(trans s416 s2926) -(trans s416 s2939) -(trans s417 s2920) -(trans s417 s2933) -(trans s417 s2946) -(trans s418 s2927) -(trans s418 s2940) -(trans s418 s2953) -(trans s419 s2934) -(trans s419 s2947) -(trans s419 s2960) -(trans s420 s2941) -(trans s420 s2954) -(trans s420 s2967) -(trans s421 s2948) -(trans s421 s2961) -(trans s421 s2974) -(trans s422 s2955) -(trans s422 s2968) -(trans s422 s2981) -(trans s423 s2962) -(trans s423 s2975) -(trans s423 s2988) -(trans s424 s2969) -(trans s424 s2982) -(trans s424 s2995) -(trans s425 s2976) -(trans s425 s2989) -(trans s425 s3002) -(trans s426 s2983) -(trans s426 s2996) -(trans s426 s3009) -(trans s427 s2990) -(trans s427 s3003) -(trans s427 s3016) -(trans s428 s2997) -(trans s428 s3010) -(trans s428 s3023) -(trans s429 s3004) -(trans s429 s3017) -(trans s429 s3030) -(trans s430 s3011) -(trans s430 s3024) -(trans s430 s3037) -(trans s431 s3018) -(trans s431 s3031) -(trans s431 s3044) -(trans s432 s3025) -(trans s432 s3038) -(trans s432 s3051) -(trans s433 s3032) -(trans s433 s3045) -(trans s433 s3058) -(trans s434 s3039) -(trans s434 s3052) -(trans s434 s3065) -(trans s435 s3046) -(trans s435 s3059) -(trans s435 s3072) -(trans s436 s3053) -(trans s436 s3066) -(trans s436 s3079) -(trans s437 s3060) -(trans s437 s3073) -(trans s437 s3086) -(trans s438 s3067) -(trans s438 s3080) -(trans s438 s3093) -(trans s439 s3074) -(trans s439 s3087) -(trans s439 s3100) -(trans s440 s3081) -(trans s440 s3094) -(trans s440 s3107) -(trans s441 s3088) -(trans s441 s3101) -(trans s441 s3114) -(trans s442 s3095) -(trans s442 s3108) -(trans s442 s3121) -(trans s443 s3102) -(trans s443 s3115) -(trans s443 s3128) -(trans s444 s3109) -(trans s444 s3122) -(trans s444 s3135) -(trans s445 s3116) -(trans s445 s3129) -(trans s445 s3142) -(trans s446 s3123) -(trans s446 s3136) -(trans s446 s3149) -(trans s447 s3130) -(trans s447 s3143) -(trans s447 s3156) -(trans s448 s3137) -(trans s448 s3150) -(trans s448 s3163) -(trans s449 s3144) -(trans s449 s3157) -(trans s449 s3170) -(trans s450 s3151) -(trans s450 s3164) -(trans s450 s3177) -(trans s451 s3158) -(trans s451 s3171) -(trans s451 s3184) -(trans s452 s3165) -(trans s452 s3178) -(trans s452 s3191) -(trans s453 s3172) -(trans s453 s3185) -(trans s453 s3198) -(trans s454 s3179) -(trans s454 s3192) -(trans s454 s3205) -(trans s455 s3186) -(trans s455 s3199) -(trans s455 s3212) -(trans s456 s3193) -(trans s456 s3206) -(trans s456 s3219) -(trans s457 s3200) -(trans s457 s3213) -(trans s457 s3226) -(trans s458 s3207) -(trans s458 s3220) -(trans s458 s3233) -(trans s459 s3214) -(trans s459 s3227) -(trans s459 s3240) -(trans s460 s3221) -(trans s460 s3234) -(trans s460 s3247) -(trans s461 s3228) -(trans s461 s3241) -(trans s461 s3254) -(trans s462 s3235) -(trans s462 s3248) -(trans s462 s3261) -(trans s463 s3242) -(trans s463 s3255) -(trans s463 s3268) -(trans s464 s3249) -(trans s464 s3262) -(trans s464 s3275) -(trans s465 s3256) -(trans s465 s3269) -(trans s465 s3282) -(trans s466 s3263) -(trans s466 s3276) -(trans s466 s3289) -(trans s467 s3270) -(trans s467 s3283) -(trans s467 s3296) -(trans s468 s3277) -(trans s468 s3290) -(trans s468 s3303) -(trans s469 s3284) -(trans s469 s3297) -(trans s469 s3310) -(trans s470 s3291) -(trans s470 s3304) -(trans s470 s3317) -(trans s471 s3298) -(trans s471 s3311) -(trans s471 s3324) -(trans s472 s3305) -(trans s472 s3318) -(trans s472 s3331) -(trans s473 s3312) -(trans s473 s3325) -(trans s473 s3338) -(trans s474 s3319) -(trans s474 s3332) -(trans s474 s3345) -(trans s475 s3326) -(trans s475 s3339) -(trans s475 s3352) -(trans s476 s3333) -(trans s476 s3346) -(trans s476 s3359) -(trans s477 s3340) -(trans s477 s3353) -(trans s477 s3366) -(trans s478 s3347) -(trans s478 s3360) -(trans s478 s3373) -(trans s479 s3354) -(trans s479 s3367) -(trans s479 s3380) -(trans s480 s3361) -(trans s480 s3374) -(trans s480 s3387) -(trans s481 s3368) -(trans s481 s3381) -(trans s481 s3394) -(trans s482 s3375) -(trans s482 s3388) -(trans s482 s3401) -(trans s483 s3382) -(trans s483 s3395) -(trans s483 s3408) -(trans s484 s3389) -(trans s484 s3402) -(trans s484 s3415) -(trans s485 s3396) -(trans s485 s3409) -(trans s485 s3422) -(trans s486 s3403) -(trans s486 s3416) -(trans s486 s3429) -(trans s487 s3410) -(trans s487 s3423) -(trans s487 s3436) -(trans s488 s3417) -(trans s488 s3430) -(trans s488 s3443) -(trans s489 s3424) -(trans s489 s3437) -(trans s489 s3450) -(trans s490 s3431) -(trans s490 s3444) -(trans s490 s3457) -(trans s491 s3438) -(trans s491 s3451) -(trans s491 s3464) -(trans s492 s3445) -(trans s492 s3458) -(trans s492 s3471) -(trans s493 s3452) -(trans s493 s3465) -(trans s493 s3478) -(trans s494 s3459) -(trans s494 s3472) -(trans s494 s3485) -(trans s495 s3466) -(trans s495 s3479) -(trans s495 s3492) -(trans s496 s3473) -(trans s496 s3486) -(trans s496 s3499) -(trans s497 s3480) -(trans s497 s3493) -(trans s497 s3506) -(trans s498 s3487) -(trans s498 s3500) -(trans s498 s3513) -(trans s499 s3494) -(trans s499 s3507) -(trans s499 s3520) -(trans s500 s3501) -(trans s500 s3514) -(trans s500 s3527) -(trans s501 s3508) -(trans s501 s3521) -(trans s501 s3534) -(trans s502 s3515) -(trans s502 s3528) -(trans s502 s3541) -(trans s503 s3522) -(trans s503 s3535) -(trans s503 s3548) -(trans s504 s3529) -(trans s504 s3542) -(trans s504 s3555) -(trans s505 s3536) -(trans s505 s3549) -(trans s505 s3562) -(trans s506 s3543) -(trans s506 s3556) -(trans s506 s3569) -(trans s507 s3550) -(trans s507 s3563) -(trans s507 s3576) -(trans s508 s3557) -(trans s508 s3570) -(trans s508 s3583) -(trans s509 s3564) -(trans s509 s3577) -(trans s509 s3590) -(trans s510 s3571) -(trans s510 s3584) -(trans s510 s3597) -(trans s511 s3578) -(trans s511 s3591) -(trans s511 s3604) -(trans s512 s3585) -(trans s512 s3598) -(trans s512 s3611) -(trans s513 s3592) -(trans s513 s3605) -(trans s513 s3618) -(trans s514 s3599) -(trans s514 s3612) -(trans s514 s3625) -(trans s515 s3606) -(trans s515 s3619) -(trans s515 s3632) -(trans s516 s3613) -(trans s516 s3626) -(trans s516 s3639) -(trans s517 s3620) -(trans s517 s3633) -(trans s517 s3646) -(trans s518 s3627) -(trans s518 s3640) -(trans s518 s3653) -(trans s519 s3634) -(trans s519 s3647) -(trans s519 s3660) -(trans s520 s3641) -(trans s520 s3654) -(trans s520 s3667) -(trans s521 s3648) -(trans s521 s3661) -(trans s521 s3674) -(trans s522 s3655) -(trans s522 s3668) -(trans s522 s3681) -(trans s523 s3662) -(trans s523 s3675) -(trans s523 s3688) -(trans s524 s3669) -(trans s524 s3682) -(trans s524 s3695) -(trans s525 s3676) -(trans s525 s3689) -(trans s525 s3702) -(trans s526 s3683) -(trans s526 s3696) -(trans s526 s3709) -(trans s527 s3690) -(trans s527 s3703) -(trans s527 s3716) -(trans s528 s3697) -(trans s528 s3710) -(trans s528 s3723) -(trans s529 s3704) -(trans s529 s3717) -(trans s529 s3730) -(trans s530 s3711) -(trans s530 s3724) -(trans s530 s3737) -(trans s531 s3718) -(trans s531 s3731) -(trans s531 s3744) -(trans s532 s3725) -(trans s532 s3738) -(trans s532 s3751) -(trans s533 s3732) -(trans s533 s3745) -(trans s533 s3758) -(trans s534 s3739) -(trans s534 s3752) -(trans s534 s3765) -(trans s535 s3746) -(trans s535 s3759) -(trans s535 s3772) -(trans s536 s3753) -(trans s536 s3766) -(trans s536 s3779) -(trans s537 s3760) -(trans s537 s3773) -(trans s537 s3786) -(trans s538 s3767) -(trans s538 s3780) -(trans s538 s3793) -(trans s539 s3774) -(trans s539 s3787) -(trans s539 s3800) -(trans s540 s3781) -(trans s540 s3794) -(trans s540 s3807) -(trans s541 s3788) -(trans s541 s3801) -(trans s541 s3814) -(trans s542 s3795) -(trans s542 s3808) -(trans s542 s3821) -(trans s543 s3802) -(trans s543 s3815) -(trans s543 s3828) -(trans s544 s3809) -(trans s544 s3822) -(trans s544 s3835) -(trans s545 s3816) -(trans s545 s3829) -(trans s545 s3842) -(trans s546 s3823) -(trans s546 s3836) -(trans s546 s3849) -(trans s547 s3830) -(trans s547 s3843) -(trans s547 s3856) -(trans s548 s3837) -(trans s548 s3850) -(trans s548 s3863) -(trans s549 s3844) -(trans s549 s3857) -(trans s549 s3870) -(trans s550 s3851) -(trans s550 s3864) -(trans s550 s3877) -(trans s551 s3858) -(trans s551 s3871) -(trans s551 s3884) -(trans s552 s3865) -(trans s552 s3878) -(trans s552 s3891) -(trans s553 s3872) -(trans s553 s3885) -(trans s553 s3898) -(trans s554 s3879) -(trans s554 s3892) -(trans s554 s3905) -(trans s555 s3886) -(trans s555 s3899) -(trans s555 s3912) -(trans s556 s3893) -(trans s556 s3906) -(trans s556 s3919) -(trans s557 s3900) -(trans s557 s3913) -(trans s557 s3926) -(trans s558 s3907) -(trans s558 s3920) -(trans s558 s3933) -(trans s559 s3914) -(trans s559 s3927) -(trans s559 s3940) -(trans s560 s3921) -(trans s560 s3934) -(trans s560 s3947) -(trans s561 s3928) -(trans s561 s3941) -(trans s561 s3954) -(trans s562 s3935) -(trans s562 s3948) -(trans s562 s3961) -(trans s563 s3942) -(trans s563 s3955) -(trans s563 s3968) -(trans s564 s3949) -(trans s564 s3962) -(trans s564 s3975) -(trans s565 s3956) -(trans s565 s3969) -(trans s565 s3982) -(trans s566 s3963) -(trans s566 s3976) -(trans s566 s3989) -(trans s567 s3970) -(trans s567 s3983) -(trans s567 s3996) -(trans s568 s3977) -(trans s568 s3990) -(trans s568 s4003) -(trans s569 s3984) -(trans s569 s3997) -(trans s569 s4010) -(trans s570 s3991) -(trans s570 s4004) -(trans s570 s4017) -(trans s571 s3998) -(trans s571 s4011) -(trans s571 s4024) -(trans s572 s4005) -(trans s572 s4018) -(trans s572 s4031) -(trans s573 s4012) -(trans s573 s4025) -(trans s573 s4038) -(trans s574 s4019) -(trans s574 s4032) -(trans s574 s4045) -(trans s575 s4026) -(trans s575 s4039) -(trans s575 s4052) -(trans s576 s4033) -(trans s576 s4046) -(trans s576 s4059) -(trans s577 s4040) -(trans s577 s4053) -(trans s577 s4066) -(trans s578 s4047) -(trans s578 s4060) -(trans s578 s4073) -(trans s579 s4054) -(trans s579 s4067) -(trans s579 s4080) -(trans s580 s4061) -(trans s580 s4074) -(trans s580 s4087) -(trans s581 s4068) -(trans s581 s4081) -(trans s581 s4094) -(trans s582 s4075) -(trans s582 s4088) -(trans s582 s4101) -(trans s583 s4082) -(trans s583 s4095) -(trans s583 s4108) -(trans s584 s4089) -(trans s584 s4102) -(trans s584 s4115) -(trans s585 s4096) -(trans s585 s4109) -(trans s585 s4122) -(trans s586 s4103) -(trans s586 s4116) -(trans s586 s4129) -(trans s587 s4110) -(trans s587 s4123) -(trans s587 s4136) -(trans s588 s4117) -(trans s588 s4130) -(trans s588 s4143) -(trans s589 s4124) -(trans s589 s4137) -(trans s589 s4150) -(trans s590 s4131) -(trans s590 s4144) -(trans s590 s4157) -(trans s591 s4138) -(trans s591 s4151) -(trans s591 s4164) -(trans s592 s4145) -(trans s592 s4158) -(trans s592 s4171) -(trans s593 s4152) -(trans s593 s4165) -(trans s593 s4178) -(trans s594 s4159) -(trans s594 s4172) -(trans s594 s4185) -(trans s595 s4166) -(trans s595 s4179) -(trans s595 s4192) -(trans s596 s4173) -(trans s596 s4186) -(trans s596 s4199) -(trans s597 s4180) -(trans s597 s4193) -(trans s597 s4206) -(trans s598 s4187) -(trans s598 s4200) -(trans s598 s4213) -(trans s599 s4194) -(trans s599 s4207) -(trans s599 s4220) -(trans s600 s4201) -(trans s600 s4214) -(trans s600 s4227) -(trans s601 s4208) -(trans s601 s4221) -(trans s601 s4234) -(trans s602 s4215) -(trans s602 s4228) -(trans s602 s4241) -(trans s603 s4222) -(trans s603 s4235) -(trans s603 s4248) -(trans s604 s4229) -(trans s604 s4242) -(trans s604 s4255) -(trans s605 s4236) -(trans s605 s4249) -(trans s605 s4262) -(trans s606 s4243) -(trans s606 s4256) -(trans s606 s4269) -(trans s607 s4250) -(trans s607 s4263) -(trans s607 s4276) -(trans s608 s4257) -(trans s608 s4270) -(trans s608 s4283) -(trans s609 s4264) -(trans s609 s4277) -(trans s609 s4290) -(trans s610 s4271) -(trans s610 s4284) -(trans s610 s4297) -(trans s611 s4278) -(trans s611 s4291) -(trans s611 s4304) -(trans s612 s4285) -(trans s612 s4298) -(trans s612 s4311) -(trans s613 s4292) -(trans s613 s4305) -(trans s613 s4318) -(trans s614 s4299) -(trans s614 s4312) -(trans s614 s4325) -(trans s615 s4306) -(trans s615 s4319) -(trans s615 s4332) -(trans s616 s4313) -(trans s616 s4326) -(trans s616 s4339) -(trans s617 s4320) -(trans s617 s4333) -(trans s617 s4346) -(trans s618 s4327) -(trans s618 s4340) -(trans s618 s4353) -(trans s619 s4334) -(trans s619 s4347) -(trans s619 s4360) -(trans s620 s4341) -(trans s620 s4354) -(trans s620 s4367) -(trans s621 s4348) -(trans s621 s4361) -(trans s621 s4374) -(trans s622 s4355) -(trans s622 s4368) -(trans s622 s4381) -(trans s623 s4362) -(trans s623 s4375) -(trans s623 s4388) -(trans s624 s4369) -(trans s624 s4382) -(trans s624 s4395) -(trans s625 s4376) -(trans s625 s4389) -(trans s625 s4402) -(trans s626 s4383) -(trans s626 s4396) -(trans s626 s4409) -(trans s627 s4390) -(trans s627 s4403) -(trans s627 s4416) -(trans s628 s4397) -(trans s628 s4410) -(trans s628 s4423) -(trans s629 s4404) -(trans s629 s4417) -(trans s629 s4430) -(trans s630 s4411) -(trans s630 s4424) -(trans s630 s4437) -(trans s631 s4418) -(trans s631 s4431) -(trans s631 s4444) -(trans s632 s4425) -(trans s632 s4438) -(trans s632 s4451) -(trans s633 s4432) -(trans s633 s4445) -(trans s633 s4458) -(trans s634 s4439) -(trans s634 s4452) -(trans s634 s4465) -(trans s635 s4446) -(trans s635 s4459) -(trans s635 s4472) -(trans s636 s4453) -(trans s636 s4466) -(trans s636 s4479) -(trans s637 s4460) -(trans s637 s4473) -(trans s637 s4486) -(trans s638 s4467) -(trans s638 s4480) -(trans s638 s4493) -(trans s639 s4474) -(trans s639 s4487) -(trans s639 s4500) -(trans s640 s4481) -(trans s640 s4494) -(trans s640 s4507) -(trans s641 s4488) -(trans s641 s4501) -(trans s641 s4514) -(trans s642 s4495) -(trans s642 s4508) -(trans s642 s4521) -(trans s643 s4502) -(trans s643 s4515) -(trans s643 s4528) -(trans s644 s4509) -(trans s644 s4522) -(trans s644 s4535) -(trans s645 s4516) -(trans s645 s4529) -(trans s645 s4542) -(trans s646 s4523) -(trans s646 s4536) -(trans s646 s4549) -(trans s647 s4530) -(trans s647 s4543) -(trans s647 s4556) -(trans s648 s4537) -(trans s648 s4550) -(trans s648 s4563) -(trans s649 s4544) -(trans s649 s4557) -(trans s649 s4570) -(trans s650 s4551) -(trans s650 s4564) -(trans s650 s4577) -(trans s651 s4558) -(trans s651 s4571) -(trans s651 s4584) -(trans s652 s4565) -(trans s652 s4578) -(trans s652 s4591) -(trans s653 s4572) -(trans s653 s4585) -(trans s653 s4598) -(trans s654 s4579) -(trans s654 s4592) -(trans s654 s4605) -(trans s655 s4586) -(trans s655 s4599) -(trans s655 s4612) -(trans s656 s4593) -(trans s656 s4606) -(trans s656 s4619) -(trans s657 s4600) -(trans s657 s4613) -(trans s657 s4626) -(trans s658 s4607) -(trans s658 s4620) -(trans s658 s4633) -(trans s659 s4614) -(trans s659 s4627) -(trans s659 s4640) -(trans s660 s4621) -(trans s660 s4634) -(trans s660 s4647) -(trans s661 s4628) -(trans s661 s4641) -(trans s661 s4654) -(trans s662 s4635) -(trans s662 s4648) -(trans s662 s4661) -(trans s663 s4642) -(trans s663 s4655) -(trans s663 s4668) -(trans s664 s4649) -(trans s664 s4662) -(trans s664 s4675) -(trans s665 s4656) -(trans s665 s4669) -(trans s665 s4682) -(trans s666 s4663) -(trans s666 s4676) -(trans s666 s4689) -(trans s667 s4670) -(trans s667 s4683) -(trans s667 s4696) -(trans s668 s4677) -(trans s668 s4690) -(trans s668 s4703) -(trans s669 s4684) -(trans s669 s4697) -(trans s669 s4710) -(trans s670 s4691) -(trans s670 s4704) -(trans s670 s4717) -(trans s671 s4698) -(trans s671 s4711) -(trans s671 s4724) -(trans s672 s4705) -(trans s672 s4718) -(trans s672 s4731) -(trans s673 s4712) -(trans s673 s4725) -(trans s673 s4738) -(trans s674 s4719) -(trans s674 s4732) -(trans s674 s4745) -(trans s675 s4726) -(trans s675 s4739) -(trans s675 s4752) -(trans s676 s4733) -(trans s676 s4746) -(trans s676 s4759) -(trans s677 s4740) -(trans s677 s4753) -(trans s677 s4766) -(trans s678 s4747) -(trans s678 s4760) -(trans s678 s4773) -(trans s679 s4754) -(trans s679 s4767) -(trans s679 s4780) -(trans s680 s4761) -(trans s680 s4774) -(trans s680 s4787) -(trans s681 s4768) -(trans s681 s4781) -(trans s681 s4794) -(trans s682 s4775) -(trans s682 s4788) -(trans s682 s4801) -(trans s683 s4782) -(trans s683 s4795) -(trans s683 s4808) -(trans s684 s4789) -(trans s684 s4802) -(trans s684 s4815) -(trans s685 s4796) -(trans s685 s4809) -(trans s685 s4822) -(trans s686 s4803) -(trans s686 s4816) -(trans s686 s4829) -(trans s687 s4810) -(trans s687 s4823) -(trans s687 s4836) -(trans s688 s4817) -(trans s688 s4830) -(trans s688 s4843) -(trans s689 s4824) -(trans s689 s4837) -(trans s689 s4850) -(trans s690 s4831) -(trans s690 s4844) -(trans s690 s4857) -(trans s691 s4838) -(trans s691 s4851) -(trans s691 s4864) -(trans s692 s4845) -(trans s692 s4858) -(trans s692 s4871) -(trans s693 s4852) -(trans s693 s4865) -(trans s693 s4878) -(trans s694 s4859) -(trans s694 s4872) -(trans s694 s4885) -(trans s695 s4866) -(trans s695 s4879) -(trans s695 s4892) -(trans s696 s4873) -(trans s696 s4886) -(trans s696 s4899) -(trans s697 s4880) -(trans s697 s4893) -(trans s697 s4906) -(trans s698 s4887) -(trans s698 s4900) -(trans s698 s4913) -(trans s699 s4894) -(trans s699 s4907) -(trans s699 s4920) -(trans s700 s4901) -(trans s700 s4914) -(trans s700 s4927) -(trans s701 s4908) -(trans s701 s4921) -(trans s701 s4934) -(trans s702 s4915) -(trans s702 s4928) -(trans s702 s4941) -(trans s703 s4922) -(trans s703 s4935) -(trans s703 s4948) -(trans s704 s4929) -(trans s704 s4942) -(trans s704 s4955) -(trans s705 s4936) -(trans s705 s4949) -(trans s705 s4962) -(trans s706 s4943) -(trans s706 s4956) -(trans s706 s4969) -(trans s707 s4950) -(trans s707 s4963) -(trans s707 s4976) -(trans s708 s4957) -(trans s708 s4970) -(trans s708 s4983) -(trans s709 s4964) -(trans s709 s4977) -(trans s709 s4990) -(trans s710 s4971) -(trans s710 s4984) -(trans s710 s4997) -(trans s711 s4978) -(trans s711 s4991) -(trans s711 s5004) -(trans s712 s4985) -(trans s712 s4998) -(trans s712 s5011) -(trans s713 s4992) -(trans s713 s5005) -(trans s713 s5018) -(trans s714 s4999) -(trans s714 s5012) -(trans s714 s5025) -(trans s715 s5006) -(trans s715 s5019) -(trans s715 s5032) -(trans s716 s5013) -(trans s716 s5026) -(trans s716 s5039) -(trans s717 s5020) -(trans s717 s5033) -(trans s717 s5046) -(trans s718 s5027) -(trans s718 s5040) -(trans s718 s5053) -(trans s719 s5034) -(trans s719 s5047) -(trans s719 s5060) -(trans s720 s5041) -(trans s720 s5054) -(trans s720 s5067) -(trans s721 s5048) -(trans s721 s5061) -(trans s721 s5074) -(trans s722 s5055) -(trans s722 s5068) -(trans s722 s5081) -(trans s723 s5062) -(trans s723 s5075) -(trans s723 s5088) -(trans s724 s5069) -(trans s724 s5082) -(trans s724 s5095) -(trans s725 s5076) -(trans s725 s5089) -(trans s725 s5102) -(trans s726 s5083) -(trans s726 s5096) -(trans s726 s5109) -(trans s727 s5090) -(trans s727 s5103) -(trans s727 s5116) -(trans s728 s5097) -(trans s728 s5110) -(trans s728 s5123) -(trans s729 s5104) -(trans s729 s5117) -(trans s729 s5130) -(trans s730 s5111) -(trans s730 s5124) -(trans s730 s5137) -(trans s731 s5118) -(trans s731 s5131) -(trans s731 s5144) -(trans s732 s5125) -(trans s732 s5138) -(trans s732 s5151) -(trans s733 s5132) -(trans s733 s5145) -(trans s733 s5158) -(trans s734 s5139) -(trans s734 s5152) -(trans s734 s5165) -(trans s735 s5146) -(trans s735 s5159) -(trans s735 s5172) -(trans s736 s5153) -(trans s736 s5166) -(trans s736 s5179) -(trans s737 s5160) -(trans s737 s5173) -(trans s737 s5186) -(trans s738 s5167) -(trans s738 s5180) -(trans s738 s5193) -(trans s739 s5174) -(trans s739 s5187) -(trans s739 s5200) -(trans s740 s5181) -(trans s740 s5194) -(trans s740 s5207) -(trans s741 s5188) -(trans s741 s5201) -(trans s741 s5214) -(trans s742 s5195) -(trans s742 s5208) -(trans s742 s5221) -(trans s743 s5202) -(trans s743 s5215) -(trans s743 s5228) -(trans s744 s5209) -(trans s744 s5222) -(trans s744 s5235) -(trans s745 s5216) -(trans s745 s5229) -(trans s745 s5242) -(trans s746 s5223) -(trans s746 s5236) -(trans s746 s5249) -(trans s747 s5230) -(trans s747 s5243) -(trans s747 s5256) -(trans s748 s5237) -(trans s748 s5250) -(trans s748 s5263) -(trans s749 s5244) -(trans s749 s5257) -(trans s749 s5270) -(trans s750 s5251) -(trans s750 s5264) -(trans s750 s5277) -(trans s751 s5258) -(trans s751 s5271) -(trans s751 s5284) -(trans s752 s5265) -(trans s752 s5278) -(trans s752 s5291) -(trans s753 s5272) -(trans s753 s5285) -(trans s753 s5298) -(trans s754 s5279) -(trans s754 s5292) -(trans s754 s5305) -(trans s755 s5286) -(trans s755 s5299) -(trans s755 s5312) -(trans s756 s5293) -(trans s756 s5306) -(trans s756 s5319) -(trans s757 s5300) -(trans s757 s5313) -(trans s757 s5326) -(trans s758 s5307) -(trans s758 s5320) -(trans s758 s5333) -(trans s759 s5314) -(trans s759 s5327) -(trans s759 s5340) -(trans s760 s5321) -(trans s760 s5334) -(trans s760 s5347) -(trans s761 s5328) -(trans s761 s5341) -(trans s761 s5354) -(trans s762 s5335) -(trans s762 s5348) -(trans s762 s5361) -(trans s763 s5342) -(trans s763 s5355) -(trans s763 s5368) -(trans s764 s5349) -(trans s764 s5362) -(trans s764 s5375) -(trans s765 s5356) -(trans s765 s5369) -(trans s765 s5382) -(trans s766 s5363) -(trans s766 s5376) -(trans s766 s5389) -(trans s767 s5370) -(trans s767 s5383) -(trans s767 s5396) -(trans s768 s5377) -(trans s768 s5390) -(trans s768 s5403) -(trans s769 s5384) -(trans s769 s5397) -(trans s769 s5410) -(trans s770 s5391) -(trans s770 s5404) -(trans s770 s5417) -(trans s771 s5398) -(trans s771 s5411) -(trans s771 s5424) -(trans s772 s5405) -(trans s772 s5418) -(trans s772 s5431) -(trans s773 s5412) -(trans s773 s5425) -(trans s773 s5438) -(trans s774 s5419) -(trans s774 s5432) -(trans s774 s5445) -(trans s775 s5426) -(trans s775 s5439) -(trans s775 s5452) -(trans s776 s5433) -(trans s776 s5446) -(trans s776 s5459) -(trans s777 s5440) -(trans s777 s5453) -(trans s777 s5466) -(trans s778 s5447) -(trans s778 s5460) -(trans s778 s5473) -(trans s779 s5454) -(trans s779 s5467) -(trans s779 s5480) -(trans s780 s5461) -(trans s780 s5474) -(trans s780 s5487) -(trans s781 s5468) -(trans s781 s5481) -(trans s781 s5494) -(trans s782 s5475) -(trans s782 s5488) -(trans s782 s5501) -(trans s783 s5482) -(trans s783 s5495) -(trans s783 s5508) -(trans s784 s5489) -(trans s784 s5502) -(trans s784 s5515) -(trans s785 s5496) -(trans s785 s5509) -(trans s785 s5522) -(trans s786 s5503) -(trans s786 s5516) -(trans s786 s5529) -(trans s787 s5510) -(trans s787 s5523) -(trans s787 s5536) -(trans s788 s5517) -(trans s788 s5530) -(trans s788 s5543) -(trans s789 s5524) -(trans s789 s5537) -(trans s789 s5550) -(trans s790 s5531) -(trans s790 s5544) -(trans s790 s5557) -(trans s791 s5538) -(trans s791 s5551) -(trans s791 s5564) -(trans s792 s5545) -(trans s792 s5558) -(trans s792 s5571) -(trans s793 s5552) -(trans s793 s5565) -(trans s793 s5578) -(trans s794 s5559) -(trans s794 s5572) -(trans s794 s5585) -(trans s795 s5566) -(trans s795 s5579) -(trans s795 s5592) -(trans s796 s5573) -(trans s796 s5586) -(trans s796 s5599) -(trans s797 s5580) -(trans s797 s5593) -(trans s797 s5606) -(trans s798 s5587) -(trans s798 s5600) -(trans s798 s5613) -(trans s799 s5594) -(trans s799 s5607) -(trans s799 s5620) -(trans s800 s5601) -(trans s800 s5614) -(trans s800 s5627) -(trans s801 s5608) -(trans s801 s5621) -(trans s801 s5634) -(trans s802 s5615) -(trans s802 s5628) -(trans s802 s5641) -(trans s803 s5622) -(trans s803 s5635) -(trans s803 s5648) -(trans s804 s5629) -(trans s804 s5642) -(trans s804 s5655) -(trans s805 s5636) -(trans s805 s5649) -(trans s805 s5662) -(trans s806 s5643) -(trans s806 s5656) -(trans s806 s5669) -(trans s807 s5650) -(trans s807 s5663) -(trans s807 s5676) -(trans s808 s5657) -(trans s808 s5670) -(trans s808 s5683) -(trans s809 s5664) -(trans s809 s5677) -(trans s809 s5690) -(trans s810 s5671) -(trans s810 s5684) -(trans s810 s5697) -(trans s811 s5678) -(trans s811 s5691) -(trans s811 s5704) -(trans s812 s5685) -(trans s812 s5698) -(trans s812 s5711) -(trans s813 s5692) -(trans s813 s5705) -(trans s813 s5718) -(trans s814 s5699) -(trans s814 s5712) -(trans s814 s5725) -(trans s815 s5706) -(trans s815 s5719) -(trans s815 s5732) -(trans s816 s5713) -(trans s816 s5726) -(trans s816 s5739) -(trans s817 s5720) -(trans s817 s5733) -(trans s817 s5746) -(trans s818 s5727) -(trans s818 s5740) -(trans s818 s5753) -(trans s819 s5734) -(trans s819 s5747) -(trans s819 s5760) -(trans s820 s5741) -(trans s820 s5754) -(trans s820 s5767) -(trans s821 s5748) -(trans s821 s5761) -(trans s821 s5774) -(trans s822 s5755) -(trans s822 s5768) -(trans s822 s5781) -(trans s823 s5762) -(trans s823 s5775) -(trans s823 s5788) -(trans s824 s5769) -(trans s824 s5782) -(trans s824 s5795) -(trans s825 s5776) -(trans s825 s5789) -(trans s825 s5802) -(trans s826 s5783) -(trans s826 s5796) -(trans s826 s5809) -(trans s827 s5790) -(trans s827 s5803) -(trans s827 s5816) -(trans s828 s5797) -(trans s828 s5810) -(trans s828 s5823) -(trans s829 s5804) -(trans s829 s5817) -(trans s829 s5830) -(trans s830 s5811) -(trans s830 s5824) -(trans s830 s5837) -(trans s831 s5818) -(trans s831 s5831) -(trans s831 s5844) -(trans s832 s5825) -(trans s832 s5838) -(trans s832 s5851) -(trans s833 s5832) -(trans s833 s5845) -(trans s833 s5858) -(trans s834 s5839) -(trans s834 s5852) -(trans s834 s5865) -(trans s835 s5846) -(trans s835 s5859) -(trans s835 s5872) -(trans s836 s5853) -(trans s836 s5866) -(trans s836 s5879) -(trans s837 s5860) -(trans s837 s5873) -(trans s837 s5886) -(trans s838 s5867) -(trans s838 s5880) -(trans s838 s5893) -(trans s839 s5874) -(trans s839 s5887) -(trans s839 s5900) -(trans s840 s5881) -(trans s840 s5894) -(trans s840 s5907) -(trans s841 s5888) -(trans s841 s5901) -(trans s841 s5914) -(trans s842 s5895) -(trans s842 s5908) -(trans s842 s5921) -(trans s843 s5902) -(trans s843 s5915) -(trans s843 s5928) -(trans s844 s5909) -(trans s844 s5922) -(trans s844 s5935) -(trans s845 s5916) -(trans s845 s5929) -(trans s845 s5942) -(trans s846 s5923) -(trans s846 s5936) -(trans s846 s5949) -(trans s847 s5930) -(trans s847 s5943) -(trans s847 s5956) -(trans s848 s5937) -(trans s848 s5950) -(trans s848 s5963) -(trans s849 s5944) -(trans s849 s5957) -(trans s849 s5970) -(trans s850 s5951) -(trans s850 s5964) -(trans s850 s5977) -(trans s851 s5958) -(trans s851 s5971) -(trans s851 s5984) -(trans s852 s5965) -(trans s852 s5978) -(trans s852 s5991) -(trans s853 s5972) -(trans s853 s5985) -(trans s853 s5998) -(trans s854 s5979) -(trans s854 s5992) -(trans s854 s5) -(trans s855 s5986) -(trans s855 s5999) -(trans s855 s12) -(trans s856 s5993) -(trans s856 s6) -(trans s856 s19) -(trans s857 s0) -(trans s857 s13) -(trans s857 s26) -(trans s858 s7) -(trans s858 s20) -(trans s858 s33) -(trans s859 s14) -(trans s859 s27) -(trans s859 s40) -(trans s860 s21) -(trans s860 s34) -(trans s860 s47) -(trans s861 s28) -(trans s861 s41) -(trans s861 s54) -(trans s862 s35) -(trans s862 s48) -(trans s862 s61) -(trans s863 s42) -(trans s863 s55) -(trans s863 s68) -(trans s864 s49) -(trans s864 s62) -(trans s864 s75) -(trans s865 s56) -(trans s865 s69) -(trans s865 s82) -(trans s866 s63) -(trans s866 s76) -(trans s866 s89) -(trans s867 s70) -(trans s867 s83) -(trans s867 s96) -(trans s868 s77) -(trans s868 s90) -(trans s868 s103) -(trans s869 s84) -(trans s869 s97) -(trans s869 s110) -(trans s870 s91) -(trans s870 s104) -(trans s870 s117) -(trans s871 s98) -(trans s871 s111) -(trans s871 s124) -(trans s872 s105) -(trans s872 s118) -(trans s872 s131) -(trans s873 s112) -(trans s873 s125) -(trans s873 s138) -(trans s874 s119) -(trans s874 s132) -(trans s874 s145) -(trans s875 s126) -(trans s875 s139) -(trans s875 s152) -(trans s876 s133) -(trans s876 s146) -(trans s876 s159) -(trans s877 s140) -(trans s877 s153) -(trans s877 s166) -(trans s878 s147) -(trans s878 s160) -(trans s878 s173) -(trans s879 s154) -(trans s879 s167) -(trans s879 s180) -(trans s880 s161) -(trans s880 s174) -(trans s880 s187) -(trans s881 s168) -(trans s881 s181) -(trans s881 s194) -(trans s882 s175) -(trans s882 s188) -(trans s882 s201) -(trans s883 s182) -(trans s883 s195) -(trans s883 s208) -(trans s884 s189) -(trans s884 s202) -(trans s884 s215) -(trans s885 s196) -(trans s885 s209) -(trans s885 s222) -(trans s886 s203) -(trans s886 s216) -(trans s886 s229) -(trans s887 s210) -(trans s887 s223) -(trans s887 s236) -(trans s888 s217) -(trans s888 s230) -(trans s888 s243) -(trans s889 s224) -(trans s889 s237) -(trans s889 s250) -(trans s890 s231) -(trans s890 s244) -(trans s890 s257) -(trans s891 s238) -(trans s891 s251) -(trans s891 s264) -(trans s892 s245) -(trans s892 s258) -(trans s892 s271) -(trans s893 s252) -(trans s893 s265) -(trans s893 s278) -(trans s894 s259) -(trans s894 s272) -(trans s894 s285) -(trans s895 s266) -(trans s895 s279) -(trans s895 s292) -(trans s896 s273) -(trans s896 s286) -(trans s896 s299) -(trans s897 s280) -(trans s897 s293) -(trans s897 s306) -(trans s898 s287) -(trans s898 s300) -(trans s898 s313) -(trans s899 s294) -(trans s899 s307) -(trans s899 s320) -(trans s900 s301) -(trans s900 s314) -(trans s900 s327) -(trans s901 s308) -(trans s901 s321) -(trans s901 s334) -(trans s902 s315) -(trans s902 s328) -(trans s902 s341) -(trans s903 s322) -(trans s903 s335) -(trans s903 s348) -(trans s904 s329) -(trans s904 s342) -(trans s904 s355) -(trans s905 s336) -(trans s905 s349) -(trans s905 s362) -(trans s906 s343) -(trans s906 s356) -(trans s906 s369) -(trans s907 s350) -(trans s907 s363) -(trans s907 s376) -(trans s908 s357) -(trans s908 s370) -(trans s908 s383) -(trans s909 s364) -(trans s909 s377) -(trans s909 s390) -(trans s910 s371) -(trans s910 s384) -(trans s910 s397) -(trans s911 s378) -(trans s911 s391) -(trans s911 s404) -(trans s912 s385) -(trans s912 s398) -(trans s912 s411) -(trans s913 s392) -(trans s913 s405) -(trans s913 s418) -(trans s914 s399) -(trans s914 s412) -(trans s914 s425) -(trans s915 s406) -(trans s915 s419) -(trans s915 s432) -(trans s916 s413) -(trans s916 s426) -(trans s916 s439) -(trans s917 s420) -(trans s917 s433) -(trans s917 s446) -(trans s918 s427) -(trans s918 s440) -(trans s918 s453) -(trans s919 s434) -(trans s919 s447) -(trans s919 s460) -(trans s920 s441) -(trans s920 s454) -(trans s920 s467) -(trans s921 s448) -(trans s921 s461) -(trans s921 s474) -(trans s922 s455) -(trans s922 s468) -(trans s922 s481) -(trans s923 s462) -(trans s923 s475) -(trans s923 s488) -(trans s924 s469) -(trans s924 s482) -(trans s924 s495) -(trans s925 s476) -(trans s925 s489) -(trans s925 s502) -(trans s926 s483) -(trans s926 s496) -(trans s926 s509) -(trans s927 s490) -(trans s927 s503) -(trans s927 s516) -(trans s928 s497) -(trans s928 s510) -(trans s928 s523) -(trans s929 s504) -(trans s929 s517) -(trans s929 s530) -(trans s930 s511) -(trans s930 s524) -(trans s930 s537) -(trans s931 s518) -(trans s931 s531) -(trans s931 s544) -(trans s932 s525) -(trans s932 s538) -(trans s932 s551) -(trans s933 s532) -(trans s933 s545) -(trans s933 s558) -(trans s934 s539) -(trans s934 s552) -(trans s934 s565) -(trans s935 s546) -(trans s935 s559) -(trans s935 s572) -(trans s936 s553) -(trans s936 s566) -(trans s936 s579) -(trans s937 s560) -(trans s937 s573) -(trans s937 s586) -(trans s938 s567) -(trans s938 s580) -(trans s938 s593) -(trans s939 s574) -(trans s939 s587) -(trans s939 s600) -(trans s940 s581) -(trans s940 s594) -(trans s940 s607) -(trans s941 s588) -(trans s941 s601) -(trans s941 s614) -(trans s942 s595) -(trans s942 s608) -(trans s942 s621) -(trans s943 s602) -(trans s943 s615) -(trans s943 s628) -(trans s944 s609) -(trans s944 s622) -(trans s944 s635) -(trans s945 s616) -(trans s945 s629) -(trans s945 s642) -(trans s946 s623) -(trans s946 s636) -(trans s946 s649) -(trans s947 s630) -(trans s947 s643) -(trans s947 s656) -(trans s948 s637) -(trans s948 s650) -(trans s948 s663) -(trans s949 s644) -(trans s949 s657) -(trans s949 s670) -(trans s950 s651) -(trans s950 s664) -(trans s950 s677) -(trans s951 s658) -(trans s951 s671) -(trans s951 s684) -(trans s952 s665) -(trans s952 s678) -(trans s952 s691) -(trans s953 s672) -(trans s953 s685) -(trans s953 s698) -(trans s954 s679) -(trans s954 s692) -(trans s954 s705) -(trans s955 s686) -(trans s955 s699) -(trans s955 s712) -(trans s956 s693) -(trans s956 s706) -(trans s956 s719) -(trans s957 s700) -(trans s957 s713) -(trans s957 s726) -(trans s958 s707) -(trans s958 s720) -(trans s958 s733) -(trans s959 s714) -(trans s959 s727) -(trans s959 s740) -(trans s960 s721) -(trans s960 s734) -(trans s960 s747) -(trans s961 s728) -(trans s961 s741) -(trans s961 s754) -(trans s962 s735) -(trans s962 s748) -(trans s962 s761) -(trans s963 s742) -(trans s963 s755) -(trans s963 s768) -(trans s964 s749) -(trans s964 s762) -(trans s964 s775) -(trans s965 s756) -(trans s965 s769) -(trans s965 s782) -(trans s966 s763) -(trans s966 s776) -(trans s966 s789) -(trans s967 s770) -(trans s967 s783) -(trans s967 s796) -(trans s968 s777) -(trans s968 s790) -(trans s968 s803) -(trans s969 s784) -(trans s969 s797) -(trans s969 s810) -(trans s970 s791) -(trans s970 s804) -(trans s970 s817) -(trans s971 s798) -(trans s971 s811) -(trans s971 s824) -(trans s972 s805) -(trans s972 s818) -(trans s972 s831) -(trans s973 s812) -(trans s973 s825) -(trans s973 s838) -(trans s974 s819) -(trans s974 s832) -(trans s974 s845) -(trans s975 s826) -(trans s975 s839) -(trans s975 s852) -(trans s976 s833) -(trans s976 s846) -(trans s976 s859) -(trans s977 s840) -(trans s977 s853) -(trans s977 s866) -(trans s978 s847) -(trans s978 s860) -(trans s978 s873) -(trans s979 s854) -(trans s979 s867) -(trans s979 s880) -(trans s980 s861) -(trans s980 s874) -(trans s980 s887) -(trans s981 s868) -(trans s981 s881) -(trans s981 s894) -(trans s982 s875) -(trans s982 s888) -(trans s982 s901) -(trans s983 s882) -(trans s983 s895) -(trans s983 s908) -(trans s984 s889) -(trans s984 s902) -(trans s984 s915) -(trans s985 s896) -(trans s985 s909) -(trans s985 s922) -(trans s986 s903) -(trans s986 s916) -(trans s986 s929) -(trans s987 s910) -(trans s987 s923) -(trans s987 s936) -(trans s988 s917) -(trans s988 s930) -(trans s988 s943) -(trans s989 s924) -(trans s989 s937) -(trans s989 s950) -(trans s990 s931) -(trans s990 s944) -(trans s990 s957) -(trans s991 s938) -(trans s991 s951) -(trans s991 s964) -(trans s992 s945) -(trans s992 s958) -(trans s992 s971) -(trans s993 s952) -(trans s993 s965) -(trans s993 s978) -(trans s994 s959) -(trans s994 s972) -(trans s994 s985) -(trans s995 s966) -(trans s995 s979) -(trans s995 s992) -(trans s996 s973) -(trans s996 s986) -(trans s996 s999) -(trans s997 s980) -(trans s997 s993) -(trans s997 s1006) -(trans s998 s987) -(trans s998 s1000) -(trans s998 s1013) -(trans s999 s994) -(trans s999 s1007) -(trans s999 s1020) -(trans s1000 s1001) -(trans s1000 s1014) -(trans s1000 s1027) -(trans s1001 s1008) -(trans s1001 s1021) -(trans s1001 s1034) -(trans s1002 s1015) -(trans s1002 s1028) -(trans s1002 s1041) -(trans s1003 s1022) -(trans s1003 s1035) -(trans s1003 s1048) -(trans s1004 s1029) -(trans s1004 s1042) -(trans s1004 s1055) -(trans s1005 s1036) -(trans s1005 s1049) -(trans s1005 s1062) -(trans s1006 s1043) -(trans s1006 s1056) -(trans s1006 s1069) -(trans s1007 s1050) -(trans s1007 s1063) -(trans s1007 s1076) -(trans s1008 s1057) -(trans s1008 s1070) -(trans s1008 s1083) -(trans s1009 s1064) -(trans s1009 s1077) -(trans s1009 s1090) -(trans s1010 s1071) -(trans s1010 s1084) -(trans s1010 s1097) -(trans s1011 s1078) -(trans s1011 s1091) -(trans s1011 s1104) -(trans s1012 s1085) -(trans s1012 s1098) -(trans s1012 s1111) -(trans s1013 s1092) -(trans s1013 s1105) -(trans s1013 s1118) -(trans s1014 s1099) -(trans s1014 s1112) -(trans s1014 s1125) -(trans s1015 s1106) -(trans s1015 s1119) -(trans s1015 s1132) -(trans s1016 s1113) -(trans s1016 s1126) -(trans s1016 s1139) -(trans s1017 s1120) -(trans s1017 s1133) -(trans s1017 s1146) -(trans s1018 s1127) -(trans s1018 s1140) -(trans s1018 s1153) -(trans s1019 s1134) -(trans s1019 s1147) -(trans s1019 s1160) -(trans s1020 s1141) -(trans s1020 s1154) -(trans s1020 s1167) -(trans s1021 s1148) -(trans s1021 s1161) -(trans s1021 s1174) -(trans s1022 s1155) -(trans s1022 s1168) -(trans s1022 s1181) -(trans s1023 s1162) -(trans s1023 s1175) -(trans s1023 s1188) -(trans s1024 s1169) -(trans s1024 s1182) -(trans s1024 s1195) -(trans s1025 s1176) -(trans s1025 s1189) -(trans s1025 s1202) -(trans s1026 s1183) -(trans s1026 s1196) -(trans s1026 s1209) -(trans s1027 s1190) -(trans s1027 s1203) -(trans s1027 s1216) -(trans s1028 s1197) -(trans s1028 s1210) -(trans s1028 s1223) -(trans s1029 s1204) -(trans s1029 s1217) -(trans s1029 s1230) -(trans s1030 s1211) -(trans s1030 s1224) -(trans s1030 s1237) -(trans s1031 s1218) -(trans s1031 s1231) -(trans s1031 s1244) -(trans s1032 s1225) -(trans s1032 s1238) -(trans s1032 s1251) -(trans s1033 s1232) -(trans s1033 s1245) -(trans s1033 s1258) -(trans s1034 s1239) -(trans s1034 s1252) -(trans s1034 s1265) -(trans s1035 s1246) -(trans s1035 s1259) -(trans s1035 s1272) -(trans s1036 s1253) -(trans s1036 s1266) -(trans s1036 s1279) -(trans s1037 s1260) -(trans s1037 s1273) -(trans s1037 s1286) -(trans s1038 s1267) -(trans s1038 s1280) -(trans s1038 s1293) -(trans s1039 s1274) -(trans s1039 s1287) -(trans s1039 s1300) -(trans s1040 s1281) -(trans s1040 s1294) -(trans s1040 s1307) -(trans s1041 s1288) -(trans s1041 s1301) -(trans s1041 s1314) -(trans s1042 s1295) -(trans s1042 s1308) -(trans s1042 s1321) -(trans s1043 s1302) -(trans s1043 s1315) -(trans s1043 s1328) -(trans s1044 s1309) -(trans s1044 s1322) -(trans s1044 s1335) -(trans s1045 s1316) -(trans s1045 s1329) -(trans s1045 s1342) -(trans s1046 s1323) -(trans s1046 s1336) -(trans s1046 s1349) -(trans s1047 s1330) -(trans s1047 s1343) -(trans s1047 s1356) -(trans s1048 s1337) -(trans s1048 s1350) -(trans s1048 s1363) -(trans s1049 s1344) -(trans s1049 s1357) -(trans s1049 s1370) -(trans s1050 s1351) -(trans s1050 s1364) -(trans s1050 s1377) -(trans s1051 s1358) -(trans s1051 s1371) -(trans s1051 s1384) -(trans s1052 s1365) -(trans s1052 s1378) -(trans s1052 s1391) -(trans s1053 s1372) -(trans s1053 s1385) -(trans s1053 s1398) -(trans s1054 s1379) -(trans s1054 s1392) -(trans s1054 s1405) -(trans s1055 s1386) -(trans s1055 s1399) -(trans s1055 s1412) -(trans s1056 s1393) -(trans s1056 s1406) -(trans s1056 s1419) -(trans s1057 s1400) -(trans s1057 s1413) -(trans s1057 s1426) -(trans s1058 s1407) -(trans s1058 s1420) -(trans s1058 s1433) -(trans s1059 s1414) -(trans s1059 s1427) -(trans s1059 s1440) -(trans s1060 s1421) -(trans s1060 s1434) -(trans s1060 s1447) -(trans s1061 s1428) -(trans s1061 s1441) -(trans s1061 s1454) -(trans s1062 s1435) -(trans s1062 s1448) -(trans s1062 s1461) -(trans s1063 s1442) -(trans s1063 s1455) -(trans s1063 s1468) -(trans s1064 s1449) -(trans s1064 s1462) -(trans s1064 s1475) -(trans s1065 s1456) -(trans s1065 s1469) -(trans s1065 s1482) -(trans s1066 s1463) -(trans s1066 s1476) -(trans s1066 s1489) -(trans s1067 s1470) -(trans s1067 s1483) -(trans s1067 s1496) -(trans s1068 s1477) -(trans s1068 s1490) -(trans s1068 s1503) -(trans s1069 s1484) -(trans s1069 s1497) -(trans s1069 s1510) -(trans s1070 s1491) -(trans s1070 s1504) -(trans s1070 s1517) -(trans s1071 s1498) -(trans s1071 s1511) -(trans s1071 s1524) -(trans s1072 s1505) -(trans s1072 s1518) -(trans s1072 s1531) -(trans s1073 s1512) -(trans s1073 s1525) -(trans s1073 s1538) -(trans s1074 s1519) -(trans s1074 s1532) -(trans s1074 s1545) -(trans s1075 s1526) -(trans s1075 s1539) -(trans s1075 s1552) -(trans s1076 s1533) -(trans s1076 s1546) -(trans s1076 s1559) -(trans s1077 s1540) -(trans s1077 s1553) -(trans s1077 s1566) -(trans s1078 s1547) -(trans s1078 s1560) -(trans s1078 s1573) -(trans s1079 s1554) -(trans s1079 s1567) -(trans s1079 s1580) -(trans s1080 s1561) -(trans s1080 s1574) -(trans s1080 s1587) -(trans s1081 s1568) -(trans s1081 s1581) -(trans s1081 s1594) -(trans s1082 s1575) -(trans s1082 s1588) -(trans s1082 s1601) -(trans s1083 s1582) -(trans s1083 s1595) -(trans s1083 s1608) -(trans s1084 s1589) -(trans s1084 s1602) -(trans s1084 s1615) -(trans s1085 s1596) -(trans s1085 s1609) -(trans s1085 s1622) -(trans s1086 s1603) -(trans s1086 s1616) -(trans s1086 s1629) -(trans s1087 s1610) -(trans s1087 s1623) -(trans s1087 s1636) -(trans s1088 s1617) -(trans s1088 s1630) -(trans s1088 s1643) -(trans s1089 s1624) -(trans s1089 s1637) -(trans s1089 s1650) -(trans s1090 s1631) -(trans s1090 s1644) -(trans s1090 s1657) -(trans s1091 s1638) -(trans s1091 s1651) -(trans s1091 s1664) -(trans s1092 s1645) -(trans s1092 s1658) -(trans s1092 s1671) -(trans s1093 s1652) -(trans s1093 s1665) -(trans s1093 s1678) -(trans s1094 s1659) -(trans s1094 s1672) -(trans s1094 s1685) -(trans s1095 s1666) -(trans s1095 s1679) -(trans s1095 s1692) -(trans s1096 s1673) -(trans s1096 s1686) -(trans s1096 s1699) -(trans s1097 s1680) -(trans s1097 s1693) -(trans s1097 s1706) -(trans s1098 s1687) -(trans s1098 s1700) -(trans s1098 s1713) -(trans s1099 s1694) -(trans s1099 s1707) -(trans s1099 s1720) -(trans s1100 s1701) -(trans s1100 s1714) -(trans s1100 s1727) -(trans s1101 s1708) -(trans s1101 s1721) -(trans s1101 s1734) -(trans s1102 s1715) -(trans s1102 s1728) -(trans s1102 s1741) -(trans s1103 s1722) -(trans s1103 s1735) -(trans s1103 s1748) -(trans s1104 s1729) -(trans s1104 s1742) -(trans s1104 s1755) -(trans s1105 s1736) -(trans s1105 s1749) -(trans s1105 s1762) -(trans s1106 s1743) -(trans s1106 s1756) -(trans s1106 s1769) -(trans s1107 s1750) -(trans s1107 s1763) -(trans s1107 s1776) -(trans s1108 s1757) -(trans s1108 s1770) -(trans s1108 s1783) -(trans s1109 s1764) -(trans s1109 s1777) -(trans s1109 s1790) -(trans s1110 s1771) -(trans s1110 s1784) -(trans s1110 s1797) -(trans s1111 s1778) -(trans s1111 s1791) -(trans s1111 s1804) -(trans s1112 s1785) -(trans s1112 s1798) -(trans s1112 s1811) -(trans s1113 s1792) -(trans s1113 s1805) -(trans s1113 s1818) -(trans s1114 s1799) -(trans s1114 s1812) -(trans s1114 s1825) -(trans s1115 s1806) -(trans s1115 s1819) -(trans s1115 s1832) -(trans s1116 s1813) -(trans s1116 s1826) -(trans s1116 s1839) -(trans s1117 s1820) -(trans s1117 s1833) -(trans s1117 s1846) -(trans s1118 s1827) -(trans s1118 s1840) -(trans s1118 s1853) -(trans s1119 s1834) -(trans s1119 s1847) -(trans s1119 s1860) -(trans s1120 s1841) -(trans s1120 s1854) -(trans s1120 s1867) -(trans s1121 s1848) -(trans s1121 s1861) -(trans s1121 s1874) -(trans s1122 s1855) -(trans s1122 s1868) -(trans s1122 s1881) -(trans s1123 s1862) -(trans s1123 s1875) -(trans s1123 s1888) -(trans s1124 s1869) -(trans s1124 s1882) -(trans s1124 s1895) -(trans s1125 s1876) -(trans s1125 s1889) -(trans s1125 s1902) -(trans s1126 s1883) -(trans s1126 s1896) -(trans s1126 s1909) -(trans s1127 s1890) -(trans s1127 s1903) -(trans s1127 s1916) -(trans s1128 s1897) -(trans s1128 s1910) -(trans s1128 s1923) -(trans s1129 s1904) -(trans s1129 s1917) -(trans s1129 s1930) -(trans s1130 s1911) -(trans s1130 s1924) -(trans s1130 s1937) -(trans s1131 s1918) -(trans s1131 s1931) -(trans s1131 s1944) -(trans s1132 s1925) -(trans s1132 s1938) -(trans s1132 s1951) -(trans s1133 s1932) -(trans s1133 s1945) -(trans s1133 s1958) -(trans s1134 s1939) -(trans s1134 s1952) -(trans s1134 s1965) -(trans s1135 s1946) -(trans s1135 s1959) -(trans s1135 s1972) -(trans s1136 s1953) -(trans s1136 s1966) -(trans s1136 s1979) -(trans s1137 s1960) -(trans s1137 s1973) -(trans s1137 s1986) -(trans s1138 s1967) -(trans s1138 s1980) -(trans s1138 s1993) -(trans s1139 s1974) -(trans s1139 s1987) -(trans s1139 s2000) -(trans s1140 s1981) -(trans s1140 s1994) -(trans s1140 s2007) -(trans s1141 s1988) -(trans s1141 s2001) -(trans s1141 s2014) -(trans s1142 s1995) -(trans s1142 s2008) -(trans s1142 s2021) -(trans s1143 s2002) -(trans s1143 s2015) -(trans s1143 s2028) -(trans s1144 s2009) -(trans s1144 s2022) -(trans s1144 s2035) -(trans s1145 s2016) -(trans s1145 s2029) -(trans s1145 s2042) -(trans s1146 s2023) -(trans s1146 s2036) -(trans s1146 s2049) -(trans s1147 s2030) -(trans s1147 s2043) -(trans s1147 s2056) -(trans s1148 s2037) -(trans s1148 s2050) -(trans s1148 s2063) -(trans s1149 s2044) -(trans s1149 s2057) -(trans s1149 s2070) -(trans s1150 s2051) -(trans s1150 s2064) -(trans s1150 s2077) -(trans s1151 s2058) -(trans s1151 s2071) -(trans s1151 s2084) -(trans s1152 s2065) -(trans s1152 s2078) -(trans s1152 s2091) -(trans s1153 s2072) -(trans s1153 s2085) -(trans s1153 s2098) -(trans s1154 s2079) -(trans s1154 s2092) -(trans s1154 s2105) -(trans s1155 s2086) -(trans s1155 s2099) -(trans s1155 s2112) -(trans s1156 s2093) -(trans s1156 s2106) -(trans s1156 s2119) -(trans s1157 s2100) -(trans s1157 s2113) -(trans s1157 s2126) -(trans s1158 s2107) -(trans s1158 s2120) -(trans s1158 s2133) -(trans s1159 s2114) -(trans s1159 s2127) -(trans s1159 s2140) -(trans s1160 s2121) -(trans s1160 s2134) -(trans s1160 s2147) -(trans s1161 s2128) -(trans s1161 s2141) -(trans s1161 s2154) -(trans s1162 s2135) -(trans s1162 s2148) -(trans s1162 s2161) -(trans s1163 s2142) -(trans s1163 s2155) -(trans s1163 s2168) -(trans s1164 s2149) -(trans s1164 s2162) -(trans s1164 s2175) -(trans s1165 s2156) -(trans s1165 s2169) -(trans s1165 s2182) -(trans s1166 s2163) -(trans s1166 s2176) -(trans s1166 s2189) -(trans s1167 s2170) -(trans s1167 s2183) -(trans s1167 s2196) -(trans s1168 s2177) -(trans s1168 s2190) -(trans s1168 s2203) -(trans s1169 s2184) -(trans s1169 s2197) -(trans s1169 s2210) -(trans s1170 s2191) -(trans s1170 s2204) -(trans s1170 s2217) -(trans s1171 s2198) -(trans s1171 s2211) -(trans s1171 s2224) -(trans s1172 s2205) -(trans s1172 s2218) -(trans s1172 s2231) -(trans s1173 s2212) -(trans s1173 s2225) -(trans s1173 s2238) -(trans s1174 s2219) -(trans s1174 s2232) -(trans s1174 s2245) -(trans s1175 s2226) -(trans s1175 s2239) -(trans s1175 s2252) -(trans s1176 s2233) -(trans s1176 s2246) -(trans s1176 s2259) -(trans s1177 s2240) -(trans s1177 s2253) -(trans s1177 s2266) -(trans s1178 s2247) -(trans s1178 s2260) -(trans s1178 s2273) -(trans s1179 s2254) -(trans s1179 s2267) -(trans s1179 s2280) -(trans s1180 s2261) -(trans s1180 s2274) -(trans s1180 s2287) -(trans s1181 s2268) -(trans s1181 s2281) -(trans s1181 s2294) -(trans s1182 s2275) -(trans s1182 s2288) -(trans s1182 s2301) -(trans s1183 s2282) -(trans s1183 s2295) -(trans s1183 s2308) -(trans s1184 s2289) -(trans s1184 s2302) -(trans s1184 s2315) -(trans s1185 s2296) -(trans s1185 s2309) -(trans s1185 s2322) -(trans s1186 s2303) -(trans s1186 s2316) -(trans s1186 s2329) -(trans s1187 s2310) -(trans s1187 s2323) -(trans s1187 s2336) -(trans s1188 s2317) -(trans s1188 s2330) -(trans s1188 s2343) -(trans s1189 s2324) -(trans s1189 s2337) -(trans s1189 s2350) -(trans s1190 s2331) -(trans s1190 s2344) -(trans s1190 s2357) -(trans s1191 s2338) -(trans s1191 s2351) -(trans s1191 s2364) -(trans s1192 s2345) -(trans s1192 s2358) -(trans s1192 s2371) -(trans s1193 s2352) -(trans s1193 s2365) -(trans s1193 s2378) -(trans s1194 s2359) -(trans s1194 s2372) -(trans s1194 s2385) -(trans s1195 s2366) -(trans s1195 s2379) -(trans s1195 s2392) -(trans s1196 s2373) -(trans s1196 s2386) -(trans s1196 s2399) -(trans s1197 s2380) -(trans s1197 s2393) -(trans s1197 s2406) -(trans s1198 s2387) -(trans s1198 s2400) -(trans s1198 s2413) -(trans s1199 s2394) -(trans s1199 s2407) -(trans s1199 s2420) -(trans s1200 s2401) -(trans s1200 s2414) -(trans s1200 s2427) -(trans s1201 s2408) -(trans s1201 s2421) -(trans s1201 s2434) -(trans s1202 s2415) -(trans s1202 s2428) -(trans s1202 s2441) -(trans s1203 s2422) -(trans s1203 s2435) -(trans s1203 s2448) -(trans s1204 s2429) -(trans s1204 s2442) -(trans s1204 s2455) -(trans s1205 s2436) -(trans s1205 s2449) -(trans s1205 s2462) -(trans s1206 s2443) -(trans s1206 s2456) -(trans s1206 s2469) -(trans s1207 s2450) -(trans s1207 s2463) -(trans s1207 s2476) -(trans s1208 s2457) -(trans s1208 s2470) -(trans s1208 s2483) -(trans s1209 s2464) -(trans s1209 s2477) -(trans s1209 s2490) -(trans s1210 s2471) -(trans s1210 s2484) -(trans s1210 s2497) -(trans s1211 s2478) -(trans s1211 s2491) -(trans s1211 s2504) -(trans s1212 s2485) -(trans s1212 s2498) -(trans s1212 s2511) -(trans s1213 s2492) -(trans s1213 s2505) -(trans s1213 s2518) -(trans s1214 s2499) -(trans s1214 s2512) -(trans s1214 s2525) -(trans s1215 s2506) -(trans s1215 s2519) -(trans s1215 s2532) -(trans s1216 s2513) -(trans s1216 s2526) -(trans s1216 s2539) -(trans s1217 s2520) -(trans s1217 s2533) -(trans s1217 s2546) -(trans s1218 s2527) -(trans s1218 s2540) -(trans s1218 s2553) -(trans s1219 s2534) -(trans s1219 s2547) -(trans s1219 s2560) -(trans s1220 s2541) -(trans s1220 s2554) -(trans s1220 s2567) -(trans s1221 s2548) -(trans s1221 s2561) -(trans s1221 s2574) -(trans s1222 s2555) -(trans s1222 s2568) -(trans s1222 s2581) -(trans s1223 s2562) -(trans s1223 s2575) -(trans s1223 s2588) -(trans s1224 s2569) -(trans s1224 s2582) -(trans s1224 s2595) -(trans s1225 s2576) -(trans s1225 s2589) -(trans s1225 s2602) -(trans s1226 s2583) -(trans s1226 s2596) -(trans s1226 s2609) -(trans s1227 s2590) -(trans s1227 s2603) -(trans s1227 s2616) -(trans s1228 s2597) -(trans s1228 s2610) -(trans s1228 s2623) -(trans s1229 s2604) -(trans s1229 s2617) -(trans s1229 s2630) -(trans s1230 s2611) -(trans s1230 s2624) -(trans s1230 s2637) -(trans s1231 s2618) -(trans s1231 s2631) -(trans s1231 s2644) -(trans s1232 s2625) -(trans s1232 s2638) -(trans s1232 s2651) -(trans s1233 s2632) -(trans s1233 s2645) -(trans s1233 s2658) -(trans s1234 s2639) -(trans s1234 s2652) -(trans s1234 s2665) -(trans s1235 s2646) -(trans s1235 s2659) -(trans s1235 s2672) -(trans s1236 s2653) -(trans s1236 s2666) -(trans s1236 s2679) -(trans s1237 s2660) -(trans s1237 s2673) -(trans s1237 s2686) -(trans s1238 s2667) -(trans s1238 s2680) -(trans s1238 s2693) -(trans s1239 s2674) -(trans s1239 s2687) -(trans s1239 s2700) -(trans s1240 s2681) -(trans s1240 s2694) -(trans s1240 s2707) -(trans s1241 s2688) -(trans s1241 s2701) -(trans s1241 s2714) -(trans s1242 s2695) -(trans s1242 s2708) -(trans s1242 s2721) -(trans s1243 s2702) -(trans s1243 s2715) -(trans s1243 s2728) -(trans s1244 s2709) -(trans s1244 s2722) -(trans s1244 s2735) -(trans s1245 s2716) -(trans s1245 s2729) -(trans s1245 s2742) -(trans s1246 s2723) -(trans s1246 s2736) -(trans s1246 s2749) -(trans s1247 s2730) -(trans s1247 s2743) -(trans s1247 s2756) -(trans s1248 s2737) -(trans s1248 s2750) -(trans s1248 s2763) -(trans s1249 s2744) -(trans s1249 s2757) -(trans s1249 s2770) -(trans s1250 s2751) -(trans s1250 s2764) -(trans s1250 s2777) -(trans s1251 s2758) -(trans s1251 s2771) -(trans s1251 s2784) -(trans s1252 s2765) -(trans s1252 s2778) -(trans s1252 s2791) -(trans s1253 s2772) -(trans s1253 s2785) -(trans s1253 s2798) -(trans s1254 s2779) -(trans s1254 s2792) -(trans s1254 s2805) -(trans s1255 s2786) -(trans s1255 s2799) -(trans s1255 s2812) -(trans s1256 s2793) -(trans s1256 s2806) -(trans s1256 s2819) -(trans s1257 s2800) -(trans s1257 s2813) -(trans s1257 s2826) -(trans s1258 s2807) -(trans s1258 s2820) -(trans s1258 s2833) -(trans s1259 s2814) -(trans s1259 s2827) -(trans s1259 s2840) -(trans s1260 s2821) -(trans s1260 s2834) -(trans s1260 s2847) -(trans s1261 s2828) -(trans s1261 s2841) -(trans s1261 s2854) -(trans s1262 s2835) -(trans s1262 s2848) -(trans s1262 s2861) -(trans s1263 s2842) -(trans s1263 s2855) -(trans s1263 s2868) -(trans s1264 s2849) -(trans s1264 s2862) -(trans s1264 s2875) -(trans s1265 s2856) -(trans s1265 s2869) -(trans s1265 s2882) -(trans s1266 s2863) -(trans s1266 s2876) -(trans s1266 s2889) -(trans s1267 s2870) -(trans s1267 s2883) -(trans s1267 s2896) -(trans s1268 s2877) -(trans s1268 s2890) -(trans s1268 s2903) -(trans s1269 s2884) -(trans s1269 s2897) -(trans s1269 s2910) -(trans s1270 s2891) -(trans s1270 s2904) -(trans s1270 s2917) -(trans s1271 s2898) -(trans s1271 s2911) -(trans s1271 s2924) -(trans s1272 s2905) -(trans s1272 s2918) -(trans s1272 s2931) -(trans s1273 s2912) -(trans s1273 s2925) -(trans s1273 s2938) -(trans s1274 s2919) -(trans s1274 s2932) -(trans s1274 s2945) -(trans s1275 s2926) -(trans s1275 s2939) -(trans s1275 s2952) -(trans s1276 s2933) -(trans s1276 s2946) -(trans s1276 s2959) -(trans s1277 s2940) -(trans s1277 s2953) -(trans s1277 s2966) -(trans s1278 s2947) -(trans s1278 s2960) -(trans s1278 s2973) -(trans s1279 s2954) -(trans s1279 s2967) -(trans s1279 s2980) -(trans s1280 s2961) -(trans s1280 s2974) -(trans s1280 s2987) -(trans s1281 s2968) -(trans s1281 s2981) -(trans s1281 s2994) -(trans s1282 s2975) -(trans s1282 s2988) -(trans s1282 s3001) -(trans s1283 s2982) -(trans s1283 s2995) -(trans s1283 s3008) -(trans s1284 s2989) -(trans s1284 s3002) -(trans s1284 s3015) -(trans s1285 s2996) -(trans s1285 s3009) -(trans s1285 s3022) -(trans s1286 s3003) -(trans s1286 s3016) -(trans s1286 s3029) -(trans s1287 s3010) -(trans s1287 s3023) -(trans s1287 s3036) -(trans s1288 s3017) -(trans s1288 s3030) -(trans s1288 s3043) -(trans s1289 s3024) -(trans s1289 s3037) -(trans s1289 s3050) -(trans s1290 s3031) -(trans s1290 s3044) -(trans s1290 s3057) -(trans s1291 s3038) -(trans s1291 s3051) -(trans s1291 s3064) -(trans s1292 s3045) -(trans s1292 s3058) -(trans s1292 s3071) -(trans s1293 s3052) -(trans s1293 s3065) -(trans s1293 s3078) -(trans s1294 s3059) -(trans s1294 s3072) -(trans s1294 s3085) -(trans s1295 s3066) -(trans s1295 s3079) -(trans s1295 s3092) -(trans s1296 s3073) -(trans s1296 s3086) -(trans s1296 s3099) -(trans s1297 s3080) -(trans s1297 s3093) -(trans s1297 s3106) -(trans s1298 s3087) -(trans s1298 s3100) -(trans s1298 s3113) -(trans s1299 s3094) -(trans s1299 s3107) -(trans s1299 s3120) -(trans s1300 s3101) -(trans s1300 s3114) -(trans s1300 s3127) -(trans s1301 s3108) -(trans s1301 s3121) -(trans s1301 s3134) -(trans s1302 s3115) -(trans s1302 s3128) -(trans s1302 s3141) -(trans s1303 s3122) -(trans s1303 s3135) -(trans s1303 s3148) -(trans s1304 s3129) -(trans s1304 s3142) -(trans s1304 s3155) -(trans s1305 s3136) -(trans s1305 s3149) -(trans s1305 s3162) -(trans s1306 s3143) -(trans s1306 s3156) -(trans s1306 s3169) -(trans s1307 s3150) -(trans s1307 s3163) -(trans s1307 s3176) -(trans s1308 s3157) -(trans s1308 s3170) -(trans s1308 s3183) -(trans s1309 s3164) -(trans s1309 s3177) -(trans s1309 s3190) -(trans s1310 s3171) -(trans s1310 s3184) -(trans s1310 s3197) -(trans s1311 s3178) -(trans s1311 s3191) -(trans s1311 s3204) -(trans s1312 s3185) -(trans s1312 s3198) -(trans s1312 s3211) -(trans s1313 s3192) -(trans s1313 s3205) -(trans s1313 s3218) -(trans s1314 s3199) -(trans s1314 s3212) -(trans s1314 s3225) -(trans s1315 s3206) -(trans s1315 s3219) -(trans s1315 s3232) -(trans s1316 s3213) -(trans s1316 s3226) -(trans s1316 s3239) -(trans s1317 s3220) -(trans s1317 s3233) -(trans s1317 s3246) -(trans s1318 s3227) -(trans s1318 s3240) -(trans s1318 s3253) -(trans s1319 s3234) -(trans s1319 s3247) -(trans s1319 s3260) -(trans s1320 s3241) -(trans s1320 s3254) -(trans s1320 s3267) -(trans s1321 s3248) -(trans s1321 s3261) -(trans s1321 s3274) -(trans s1322 s3255) -(trans s1322 s3268) -(trans s1322 s3281) -(trans s1323 s3262) -(trans s1323 s3275) -(trans s1323 s3288) -(trans s1324 s3269) -(trans s1324 s3282) -(trans s1324 s3295) -(trans s1325 s3276) -(trans s1325 s3289) -(trans s1325 s3302) -(trans s1326 s3283) -(trans s1326 s3296) -(trans s1326 s3309) -(trans s1327 s3290) -(trans s1327 s3303) -(trans s1327 s3316) -(trans s1328 s3297) -(trans s1328 s3310) -(trans s1328 s3323) -(trans s1329 s3304) -(trans s1329 s3317) -(trans s1329 s3330) -(trans s1330 s3311) -(trans s1330 s3324) -(trans s1330 s3337) -(trans s1331 s3318) -(trans s1331 s3331) -(trans s1331 s3344) -(trans s1332 s3325) -(trans s1332 s3338) -(trans s1332 s3351) -(trans s1333 s3332) -(trans s1333 s3345) -(trans s1333 s3358) -(trans s1334 s3339) -(trans s1334 s3352) -(trans s1334 s3365) -(trans s1335 s3346) -(trans s1335 s3359) -(trans s1335 s3372) -(trans s1336 s3353) -(trans s1336 s3366) -(trans s1336 s3379) -(trans s1337 s3360) -(trans s1337 s3373) -(trans s1337 s3386) -(trans s1338 s3367) -(trans s1338 s3380) -(trans s1338 s3393) -(trans s1339 s3374) -(trans s1339 s3387) -(trans s1339 s3400) -(trans s1340 s3381) -(trans s1340 s3394) -(trans s1340 s3407) -(trans s1341 s3388) -(trans s1341 s3401) -(trans s1341 s3414) -(trans s1342 s3395) -(trans s1342 s3408) -(trans s1342 s3421) -(trans s1343 s3402) -(trans s1343 s3415) -(trans s1343 s3428) -(trans s1344 s3409) -(trans s1344 s3422) -(trans s1344 s3435) -(trans s1345 s3416) -(trans s1345 s3429) -(trans s1345 s3442) -(trans s1346 s3423) -(trans s1346 s3436) -(trans s1346 s3449) -(trans s1347 s3430) -(trans s1347 s3443) -(trans s1347 s3456) -(trans s1348 s3437) -(trans s1348 s3450) -(trans s1348 s3463) -(trans s1349 s3444) -(trans s1349 s3457) -(trans s1349 s3470) -(trans s1350 s3451) -(trans s1350 s3464) -(trans s1350 s3477) -(trans s1351 s3458) -(trans s1351 s3471) -(trans s1351 s3484) -(trans s1352 s3465) -(trans s1352 s3478) -(trans s1352 s3491) -(trans s1353 s3472) -(trans s1353 s3485) -(trans s1353 s3498) -(trans s1354 s3479) -(trans s1354 s3492) -(trans s1354 s3505) -(trans s1355 s3486) -(trans s1355 s3499) -(trans s1355 s3512) -(trans s1356 s3493) -(trans s1356 s3506) -(trans s1356 s3519) -(trans s1357 s3500) -(trans s1357 s3513) -(trans s1357 s3526) -(trans s1358 s3507) -(trans s1358 s3520) -(trans s1358 s3533) -(trans s1359 s3514) -(trans s1359 s3527) -(trans s1359 s3540) -(trans s1360 s3521) -(trans s1360 s3534) -(trans s1360 s3547) -(trans s1361 s3528) -(trans s1361 s3541) -(trans s1361 s3554) -(trans s1362 s3535) -(trans s1362 s3548) -(trans s1362 s3561) -(trans s1363 s3542) -(trans s1363 s3555) -(trans s1363 s3568) -(trans s1364 s3549) -(trans s1364 s3562) -(trans s1364 s3575) -(trans s1365 s3556) -(trans s1365 s3569) -(trans s1365 s3582) -(trans s1366 s3563) -(trans s1366 s3576) -(trans s1366 s3589) -(trans s1367 s3570) -(trans s1367 s3583) -(trans s1367 s3596) -(trans s1368 s3577) -(trans s1368 s3590) -(trans s1368 s3603) -(trans s1369 s3584) -(trans s1369 s3597) -(trans s1369 s3610) -(trans s1370 s3591) -(trans s1370 s3604) -(trans s1370 s3617) -(trans s1371 s3598) -(trans s1371 s3611) -(trans s1371 s3624) -(trans s1372 s3605) -(trans s1372 s3618) -(trans s1372 s3631) -(trans s1373 s3612) -(trans s1373 s3625) -(trans s1373 s3638) -(trans s1374 s3619) -(trans s1374 s3632) -(trans s1374 s3645) -(trans s1375 s3626) -(trans s1375 s3639) -(trans s1375 s3652) -(trans s1376 s3633) -(trans s1376 s3646) -(trans s1376 s3659) -(trans s1377 s3640) -(trans s1377 s3653) -(trans s1377 s3666) -(trans s1378 s3647) -(trans s1378 s3660) -(trans s1378 s3673) -(trans s1379 s3654) -(trans s1379 s3667) -(trans s1379 s3680) -(trans s1380 s3661) -(trans s1380 s3674) -(trans s1380 s3687) -(trans s1381 s3668) -(trans s1381 s3681) -(trans s1381 s3694) -(trans s1382 s3675) -(trans s1382 s3688) -(trans s1382 s3701) -(trans s1383 s3682) -(trans s1383 s3695) -(trans s1383 s3708) -(trans s1384 s3689) -(trans s1384 s3702) -(trans s1384 s3715) -(trans s1385 s3696) -(trans s1385 s3709) -(trans s1385 s3722) -(trans s1386 s3703) -(trans s1386 s3716) -(trans s1386 s3729) -(trans s1387 s3710) -(trans s1387 s3723) -(trans s1387 s3736) -(trans s1388 s3717) -(trans s1388 s3730) -(trans s1388 s3743) -(trans s1389 s3724) -(trans s1389 s3737) -(trans s1389 s3750) -(trans s1390 s3731) -(trans s1390 s3744) -(trans s1390 s3757) -(trans s1391 s3738) -(trans s1391 s3751) -(trans s1391 s3764) -(trans s1392 s3745) -(trans s1392 s3758) -(trans s1392 s3771) -(trans s1393 s3752) -(trans s1393 s3765) -(trans s1393 s3778) -(trans s1394 s3759) -(trans s1394 s3772) -(trans s1394 s3785) -(trans s1395 s3766) -(trans s1395 s3779) -(trans s1395 s3792) -(trans s1396 s3773) -(trans s1396 s3786) -(trans s1396 s3799) -(trans s1397 s3780) -(trans s1397 s3793) -(trans s1397 s3806) -(trans s1398 s3787) -(trans s1398 s3800) -(trans s1398 s3813) -(trans s1399 s3794) -(trans s1399 s3807) -(trans s1399 s3820) -(trans s1400 s3801) -(trans s1400 s3814) -(trans s1400 s3827) -(trans s1401 s3808) -(trans s1401 s3821) -(trans s1401 s3834) -(trans s1402 s3815) -(trans s1402 s3828) -(trans s1402 s3841) -(trans s1403 s3822) -(trans s1403 s3835) -(trans s1403 s3848) -(trans s1404 s3829) -(trans s1404 s3842) -(trans s1404 s3855) -(trans s1405 s3836) -(trans s1405 s3849) -(trans s1405 s3862) -(trans s1406 s3843) -(trans s1406 s3856) -(trans s1406 s3869) -(trans s1407 s3850) -(trans s1407 s3863) -(trans s1407 s3876) -(trans s1408 s3857) -(trans s1408 s3870) -(trans s1408 s3883) -(trans s1409 s3864) -(trans s1409 s3877) -(trans s1409 s3890) -(trans s1410 s3871) -(trans s1410 s3884) -(trans s1410 s3897) -(trans s1411 s3878) -(trans s1411 s3891) -(trans s1411 s3904) -(trans s1412 s3885) -(trans s1412 s3898) -(trans s1412 s3911) -(trans s1413 s3892) -(trans s1413 s3905) -(trans s1413 s3918) -(trans s1414 s3899) -(trans s1414 s3912) -(trans s1414 s3925) -(trans s1415 s3906) -(trans s1415 s3919) -(trans s1415 s3932) -(trans s1416 s3913) -(trans s1416 s3926) -(trans s1416 s3939) -(trans s1417 s3920) -(trans s1417 s3933) -(trans s1417 s3946) -(trans s1418 s3927) -(trans s1418 s3940) -(trans s1418 s3953) -(trans s1419 s3934) -(trans s1419 s3947) -(trans s1419 s3960) -(trans s1420 s3941) -(trans s1420 s3954) -(trans s1420 s3967) -(trans s1421 s3948) -(trans s1421 s3961) -(trans s1421 s3974) -(trans s1422 s3955) -(trans s1422 s3968) -(trans s1422 s3981) -(trans s1423 s3962) -(trans s1423 s3975) -(trans s1423 s3988) -(trans s1424 s3969) -(trans s1424 s3982) -(trans s1424 s3995) -(trans s1425 s3976) -(trans s1425 s3989) -(trans s1425 s4002) -(trans s1426 s3983) -(trans s1426 s3996) -(trans s1426 s4009) -(trans s1427 s3990) -(trans s1427 s4003) -(trans s1427 s4016) -(trans s1428 s3997) -(trans s1428 s4010) -(trans s1428 s4023) -(trans s1429 s4004) -(trans s1429 s4017) -(trans s1429 s4030) -(trans s1430 s4011) -(trans s1430 s4024) -(trans s1430 s4037) -(trans s1431 s4018) -(trans s1431 s4031) -(trans s1431 s4044) -(trans s1432 s4025) -(trans s1432 s4038) -(trans s1432 s4051) -(trans s1433 s4032) -(trans s1433 s4045) -(trans s1433 s4058) -(trans s1434 s4039) -(trans s1434 s4052) -(trans s1434 s4065) -(trans s1435 s4046) -(trans s1435 s4059) -(trans s1435 s4072) -(trans s1436 s4053) -(trans s1436 s4066) -(trans s1436 s4079) -(trans s1437 s4060) -(trans s1437 s4073) -(trans s1437 s4086) -(trans s1438 s4067) -(trans s1438 s4080) -(trans s1438 s4093) -(trans s1439 s4074) -(trans s1439 s4087) -(trans s1439 s4100) -(trans s1440 s4081) -(trans s1440 s4094) -(trans s1440 s4107) -(trans s1441 s4088) -(trans s1441 s4101) -(trans s1441 s4114) -(trans s1442 s4095) -(trans s1442 s4108) -(trans s1442 s4121) -(trans s1443 s4102) -(trans s1443 s4115) -(trans s1443 s4128) -(trans s1444 s4109) -(trans s1444 s4122) -(trans s1444 s4135) -(trans s1445 s4116) -(trans s1445 s4129) -(trans s1445 s4142) -(trans s1446 s4123) -(trans s1446 s4136) -(trans s1446 s4149) -(trans s1447 s4130) -(trans s1447 s4143) -(trans s1447 s4156) -(trans s1448 s4137) -(trans s1448 s4150) -(trans s1448 s4163) -(trans s1449 s4144) -(trans s1449 s4157) -(trans s1449 s4170) -(trans s1450 s4151) -(trans s1450 s4164) -(trans s1450 s4177) -(trans s1451 s4158) -(trans s1451 s4171) -(trans s1451 s4184) -(trans s1452 s4165) -(trans s1452 s4178) -(trans s1452 s4191) -(trans s1453 s4172) -(trans s1453 s4185) -(trans s1453 s4198) -(trans s1454 s4179) -(trans s1454 s4192) -(trans s1454 s4205) -(trans s1455 s4186) -(trans s1455 s4199) -(trans s1455 s4212) -(trans s1456 s4193) -(trans s1456 s4206) -(trans s1456 s4219) -(trans s1457 s4200) -(trans s1457 s4213) -(trans s1457 s4226) -(trans s1458 s4207) -(trans s1458 s4220) -(trans s1458 s4233) -(trans s1459 s4214) -(trans s1459 s4227) -(trans s1459 s4240) -(trans s1460 s4221) -(trans s1460 s4234) -(trans s1460 s4247) -(trans s1461 s4228) -(trans s1461 s4241) -(trans s1461 s4254) -(trans s1462 s4235) -(trans s1462 s4248) -(trans s1462 s4261) -(trans s1463 s4242) -(trans s1463 s4255) -(trans s1463 s4268) -(trans s1464 s4249) -(trans s1464 s4262) -(trans s1464 s4275) -(trans s1465 s4256) -(trans s1465 s4269) -(trans s1465 s4282) -(trans s1466 s4263) -(trans s1466 s4276) -(trans s1466 s4289) -(trans s1467 s4270) -(trans s1467 s4283) -(trans s1467 s4296) -(trans s1468 s4277) -(trans s1468 s4290) -(trans s1468 s4303) -(trans s1469 s4284) -(trans s1469 s4297) -(trans s1469 s4310) -(trans s1470 s4291) -(trans s1470 s4304) -(trans s1470 s4317) -(trans s1471 s4298) -(trans s1471 s4311) -(trans s1471 s4324) -(trans s1472 s4305) -(trans s1472 s4318) -(trans s1472 s4331) -(trans s1473 s4312) -(trans s1473 s4325) -(trans s1473 s4338) -(trans s1474 s4319) -(trans s1474 s4332) -(trans s1474 s4345) -(trans s1475 s4326) -(trans s1475 s4339) -(trans s1475 s4352) -(trans s1476 s4333) -(trans s1476 s4346) -(trans s1476 s4359) -(trans s1477 s4340) -(trans s1477 s4353) -(trans s1477 s4366) -(trans s1478 s4347) -(trans s1478 s4360) -(trans s1478 s4373) -(trans s1479 s4354) -(trans s1479 s4367) -(trans s1479 s4380) -(trans s1480 s4361) -(trans s1480 s4374) -(trans s1480 s4387) -(trans s1481 s4368) -(trans s1481 s4381) -(trans s1481 s4394) -(trans s1482 s4375) -(trans s1482 s4388) -(trans s1482 s4401) -(trans s1483 s4382) -(trans s1483 s4395) -(trans s1483 s4408) -(trans s1484 s4389) -(trans s1484 s4402) -(trans s1484 s4415) -(trans s1485 s4396) -(trans s1485 s4409) -(trans s1485 s4422) -(trans s1486 s4403) -(trans s1486 s4416) -(trans s1486 s4429) -(trans s1487 s4410) -(trans s1487 s4423) -(trans s1487 s4436) -(trans s1488 s4417) -(trans s1488 s4430) -(trans s1488 s4443) -(trans s1489 s4424) -(trans s1489 s4437) -(trans s1489 s4450) -(trans s1490 s4431) -(trans s1490 s4444) -(trans s1490 s4457) -(trans s1491 s4438) -(trans s1491 s4451) -(trans s1491 s4464) -(trans s1492 s4445) -(trans s1492 s4458) -(trans s1492 s4471) -(trans s1493 s4452) -(trans s1493 s4465) -(trans s1493 s4478) -(trans s1494 s4459) -(trans s1494 s4472) -(trans s1494 s4485) -(trans s1495 s4466) -(trans s1495 s4479) -(trans s1495 s4492) -(trans s1496 s4473) -(trans s1496 s4486) -(trans s1496 s4499) -(trans s1497 s4480) -(trans s1497 s4493) -(trans s1497 s4506) -(trans s1498 s4487) -(trans s1498 s4500) -(trans s1498 s4513) -(trans s1499 s4494) -(trans s1499 s4507) -(trans s1499 s4520) -(trans s1500 s4501) -(trans s1500 s4514) -(trans s1500 s4527) -(trans s1501 s4508) -(trans s1501 s4521) -(trans s1501 s4534) -(trans s1502 s4515) -(trans s1502 s4528) -(trans s1502 s4541) -(trans s1503 s4522) -(trans s1503 s4535) -(trans s1503 s4548) -(trans s1504 s4529) -(trans s1504 s4542) -(trans s1504 s4555) -(trans s1505 s4536) -(trans s1505 s4549) -(trans s1505 s4562) -(trans s1506 s4543) -(trans s1506 s4556) -(trans s1506 s4569) -(trans s1507 s4550) -(trans s1507 s4563) -(trans s1507 s4576) -(trans s1508 s4557) -(trans s1508 s4570) -(trans s1508 s4583) -(trans s1509 s4564) -(trans s1509 s4577) -(trans s1509 s4590) -(trans s1510 s4571) -(trans s1510 s4584) -(trans s1510 s4597) -(trans s1511 s4578) -(trans s1511 s4591) -(trans s1511 s4604) -(trans s1512 s4585) -(trans s1512 s4598) -(trans s1512 s4611) -(trans s1513 s4592) -(trans s1513 s4605) -(trans s1513 s4618) -(trans s1514 s4599) -(trans s1514 s4612) -(trans s1514 s4625) -(trans s1515 s4606) -(trans s1515 s4619) -(trans s1515 s4632) -(trans s1516 s4613) -(trans s1516 s4626) -(trans s1516 s4639) -(trans s1517 s4620) -(trans s1517 s4633) -(trans s1517 s4646) -(trans s1518 s4627) -(trans s1518 s4640) -(trans s1518 s4653) -(trans s1519 s4634) -(trans s1519 s4647) -(trans s1519 s4660) -(trans s1520 s4641) -(trans s1520 s4654) -(trans s1520 s4667) -(trans s1521 s4648) -(trans s1521 s4661) -(trans s1521 s4674) -(trans s1522 s4655) -(trans s1522 s4668) -(trans s1522 s4681) -(trans s1523 s4662) -(trans s1523 s4675) -(trans s1523 s4688) -(trans s1524 s4669) -(trans s1524 s4682) -(trans s1524 s4695) -(trans s1525 s4676) -(trans s1525 s4689) -(trans s1525 s4702) -(trans s1526 s4683) -(trans s1526 s4696) -(trans s1526 s4709) -(trans s1527 s4690) -(trans s1527 s4703) -(trans s1527 s4716) -(trans s1528 s4697) -(trans s1528 s4710) -(trans s1528 s4723) -(trans s1529 s4704) -(trans s1529 s4717) -(trans s1529 s4730) -(trans s1530 s4711) -(trans s1530 s4724) -(trans s1530 s4737) -(trans s1531 s4718) -(trans s1531 s4731) -(trans s1531 s4744) -(trans s1532 s4725) -(trans s1532 s4738) -(trans s1532 s4751) -(trans s1533 s4732) -(trans s1533 s4745) -(trans s1533 s4758) -(trans s1534 s4739) -(trans s1534 s4752) -(trans s1534 s4765) -(trans s1535 s4746) -(trans s1535 s4759) -(trans s1535 s4772) -(trans s1536 s4753) -(trans s1536 s4766) -(trans s1536 s4779) -(trans s1537 s4760) -(trans s1537 s4773) -(trans s1537 s4786) -(trans s1538 s4767) -(trans s1538 s4780) -(trans s1538 s4793) -(trans s1539 s4774) -(trans s1539 s4787) -(trans s1539 s4800) -(trans s1540 s4781) -(trans s1540 s4794) -(trans s1540 s4807) -(trans s1541 s4788) -(trans s1541 s4801) -(trans s1541 s4814) -(trans s1542 s4795) -(trans s1542 s4808) -(trans s1542 s4821) -(trans s1543 s4802) -(trans s1543 s4815) -(trans s1543 s4828) -(trans s1544 s4809) -(trans s1544 s4822) -(trans s1544 s4835) -(trans s1545 s4816) -(trans s1545 s4829) -(trans s1545 s4842) -(trans s1546 s4823) -(trans s1546 s4836) -(trans s1546 s4849) -(trans s1547 s4830) -(trans s1547 s4843) -(trans s1547 s4856) -(trans s1548 s4837) -(trans s1548 s4850) -(trans s1548 s4863) -(trans s1549 s4844) -(trans s1549 s4857) -(trans s1549 s4870) -(trans s1550 s4851) -(trans s1550 s4864) -(trans s1550 s4877) -(trans s1551 s4858) -(trans s1551 s4871) -(trans s1551 s4884) -(trans s1552 s4865) -(trans s1552 s4878) -(trans s1552 s4891) -(trans s1553 s4872) -(trans s1553 s4885) -(trans s1553 s4898) -(trans s1554 s4879) -(trans s1554 s4892) -(trans s1554 s4905) -(trans s1555 s4886) -(trans s1555 s4899) -(trans s1555 s4912) -(trans s1556 s4893) -(trans s1556 s4906) -(trans s1556 s4919) -(trans s1557 s4900) -(trans s1557 s4913) -(trans s1557 s4926) -(trans s1558 s4907) -(trans s1558 s4920) -(trans s1558 s4933) -(trans s1559 s4914) -(trans s1559 s4927) -(trans s1559 s4940) -(trans s1560 s4921) -(trans s1560 s4934) -(trans s1560 s4947) -(trans s1561 s4928) -(trans s1561 s4941) -(trans s1561 s4954) -(trans s1562 s4935) -(trans s1562 s4948) -(trans s1562 s4961) -(trans s1563 s4942) -(trans s1563 s4955) -(trans s1563 s4968) -(trans s1564 s4949) -(trans s1564 s4962) -(trans s1564 s4975) -(trans s1565 s4956) -(trans s1565 s4969) -(trans s1565 s4982) -(trans s1566 s4963) -(trans s1566 s4976) -(trans s1566 s4989) -(trans s1567 s4970) -(trans s1567 s4983) -(trans s1567 s4996) -(trans s1568 s4977) -(trans s1568 s4990) -(trans s1568 s5003) -(trans s1569 s4984) -(trans s1569 s4997) -(trans s1569 s5010) -(trans s1570 s4991) -(trans s1570 s5004) -(trans s1570 s5017) -(trans s1571 s4998) -(trans s1571 s5011) -(trans s1571 s5024) -(trans s1572 s5005) -(trans s1572 s5018) -(trans s1572 s5031) -(trans s1573 s5012) -(trans s1573 s5025) -(trans s1573 s5038) -(trans s1574 s5019) -(trans s1574 s5032) -(trans s1574 s5045) -(trans s1575 s5026) -(trans s1575 s5039) -(trans s1575 s5052) -(trans s1576 s5033) -(trans s1576 s5046) -(trans s1576 s5059) -(trans s1577 s5040) -(trans s1577 s5053) -(trans s1577 s5066) -(trans s1578 s5047) -(trans s1578 s5060) -(trans s1578 s5073) -(trans s1579 s5054) -(trans s1579 s5067) -(trans s1579 s5080) -(trans s1580 s5061) -(trans s1580 s5074) -(trans s1580 s5087) -(trans s1581 s5068) -(trans s1581 s5081) -(trans s1581 s5094) -(trans s1582 s5075) -(trans s1582 s5088) -(trans s1582 s5101) -(trans s1583 s5082) -(trans s1583 s5095) -(trans s1583 s5108) -(trans s1584 s5089) -(trans s1584 s5102) -(trans s1584 s5115) -(trans s1585 s5096) -(trans s1585 s5109) -(trans s1585 s5122) -(trans s1586 s5103) -(trans s1586 s5116) -(trans s1586 s5129) -(trans s1587 s5110) -(trans s1587 s5123) -(trans s1587 s5136) -(trans s1588 s5117) -(trans s1588 s5130) -(trans s1588 s5143) -(trans s1589 s5124) -(trans s1589 s5137) -(trans s1589 s5150) -(trans s1590 s5131) -(trans s1590 s5144) -(trans s1590 s5157) -(trans s1591 s5138) -(trans s1591 s5151) -(trans s1591 s5164) -(trans s1592 s5145) -(trans s1592 s5158) -(trans s1592 s5171) -(trans s1593 s5152) -(trans s1593 s5165) -(trans s1593 s5178) -(trans s1594 s5159) -(trans s1594 s5172) -(trans s1594 s5185) -(trans s1595 s5166) -(trans s1595 s5179) -(trans s1595 s5192) -(trans s1596 s5173) -(trans s1596 s5186) -(trans s1596 s5199) -(trans s1597 s5180) -(trans s1597 s5193) -(trans s1597 s5206) -(trans s1598 s5187) -(trans s1598 s5200) -(trans s1598 s5213) -(trans s1599 s5194) -(trans s1599 s5207) -(trans s1599 s5220) -(trans s1600 s5201) -(trans s1600 s5214) -(trans s1600 s5227) -(trans s1601 s5208) -(trans s1601 s5221) -(trans s1601 s5234) -(trans s1602 s5215) -(trans s1602 s5228) -(trans s1602 s5241) -(trans s1603 s5222) -(trans s1603 s5235) -(trans s1603 s5248) -(trans s1604 s5229) -(trans s1604 s5242) -(trans s1604 s5255) -(trans s1605 s5236) -(trans s1605 s5249) -(trans s1605 s5262) -(trans s1606 s5243) -(trans s1606 s5256) -(trans s1606 s5269) -(trans s1607 s5250) -(trans s1607 s5263) -(trans s1607 s5276) -(trans s1608 s5257) -(trans s1608 s5270) -(trans s1608 s5283) -(trans s1609 s5264) -(trans s1609 s5277) -(trans s1609 s5290) -(trans s1610 s5271) -(trans s1610 s5284) -(trans s1610 s5297) -(trans s1611 s5278) -(trans s1611 s5291) -(trans s1611 s5304) -(trans s1612 s5285) -(trans s1612 s5298) -(trans s1612 s5311) -(trans s1613 s5292) -(trans s1613 s5305) -(trans s1613 s5318) -(trans s1614 s5299) -(trans s1614 s5312) -(trans s1614 s5325) -(trans s1615 s5306) -(trans s1615 s5319) -(trans s1615 s5332) -(trans s1616 s5313) -(trans s1616 s5326) -(trans s1616 s5339) -(trans s1617 s5320) -(trans s1617 s5333) -(trans s1617 s5346) -(trans s1618 s5327) -(trans s1618 s5340) -(trans s1618 s5353) -(trans s1619 s5334) -(trans s1619 s5347) -(trans s1619 s5360) -(trans s1620 s5341) -(trans s1620 s5354) -(trans s1620 s5367) -(trans s1621 s5348) -(trans s1621 s5361) -(trans s1621 s5374) -(trans s1622 s5355) -(trans s1622 s5368) -(trans s1622 s5381) -(trans s1623 s5362) -(trans s1623 s5375) -(trans s1623 s5388) -(trans s1624 s5369) -(trans s1624 s5382) -(trans s1624 s5395) -(trans s1625 s5376) -(trans s1625 s5389) -(trans s1625 s5402) -(trans s1626 s5383) -(trans s1626 s5396) -(trans s1626 s5409) -(trans s1627 s5390) -(trans s1627 s5403) -(trans s1627 s5416) -(trans s1628 s5397) -(trans s1628 s5410) -(trans s1628 s5423) -(trans s1629 s5404) -(trans s1629 s5417) -(trans s1629 s5430) -(trans s1630 s5411) -(trans s1630 s5424) -(trans s1630 s5437) -(trans s1631 s5418) -(trans s1631 s5431) -(trans s1631 s5444) -(trans s1632 s5425) -(trans s1632 s5438) -(trans s1632 s5451) -(trans s1633 s5432) -(trans s1633 s5445) -(trans s1633 s5458) -(trans s1634 s5439) -(trans s1634 s5452) -(trans s1634 s5465) -(trans s1635 s5446) -(trans s1635 s5459) -(trans s1635 s5472) -(trans s1636 s5453) -(trans s1636 s5466) -(trans s1636 s5479) -(trans s1637 s5460) -(trans s1637 s5473) -(trans s1637 s5486) -(trans s1638 s5467) -(trans s1638 s5480) -(trans s1638 s5493) -(trans s1639 s5474) -(trans s1639 s5487) -(trans s1639 s5500) -(trans s1640 s5481) -(trans s1640 s5494) -(trans s1640 s5507) -(trans s1641 s5488) -(trans s1641 s5501) -(trans s1641 s5514) -(trans s1642 s5495) -(trans s1642 s5508) -(trans s1642 s5521) -(trans s1643 s5502) -(trans s1643 s5515) -(trans s1643 s5528) -(trans s1644 s5509) -(trans s1644 s5522) -(trans s1644 s5535) -(trans s1645 s5516) -(trans s1645 s5529) -(trans s1645 s5542) -(trans s1646 s5523) -(trans s1646 s5536) -(trans s1646 s5549) -(trans s1647 s5530) -(trans s1647 s5543) -(trans s1647 s5556) -(trans s1648 s5537) -(trans s1648 s5550) -(trans s1648 s5563) -(trans s1649 s5544) -(trans s1649 s5557) -(trans s1649 s5570) -(trans s1650 s5551) -(trans s1650 s5564) -(trans s1650 s5577) -(trans s1651 s5558) -(trans s1651 s5571) -(trans s1651 s5584) -(trans s1652 s5565) -(trans s1652 s5578) -(trans s1652 s5591) -(trans s1653 s5572) -(trans s1653 s5585) -(trans s1653 s5598) -(trans s1654 s5579) -(trans s1654 s5592) -(trans s1654 s5605) -(trans s1655 s5586) -(trans s1655 s5599) -(trans s1655 s5612) -(trans s1656 s5593) -(trans s1656 s5606) -(trans s1656 s5619) -(trans s1657 s5600) -(trans s1657 s5613) -(trans s1657 s5626) -(trans s1658 s5607) -(trans s1658 s5620) -(trans s1658 s5633) -(trans s1659 s5614) -(trans s1659 s5627) -(trans s1659 s5640) -(trans s1660 s5621) -(trans s1660 s5634) -(trans s1660 s5647) -(trans s1661 s5628) -(trans s1661 s5641) -(trans s1661 s5654) -(trans s1662 s5635) -(trans s1662 s5648) -(trans s1662 s5661) -(trans s1663 s5642) -(trans s1663 s5655) -(trans s1663 s5668) -(trans s1664 s5649) -(trans s1664 s5662) -(trans s1664 s5675) -(trans s1665 s5656) -(trans s1665 s5669) -(trans s1665 s5682) -(trans s1666 s5663) -(trans s1666 s5676) -(trans s1666 s5689) -(trans s1667 s5670) -(trans s1667 s5683) -(trans s1667 s5696) -(trans s1668 s5677) -(trans s1668 s5690) -(trans s1668 s5703) -(trans s1669 s5684) -(trans s1669 s5697) -(trans s1669 s5710) -(trans s1670 s5691) -(trans s1670 s5704) -(trans s1670 s5717) -(trans s1671 s5698) -(trans s1671 s5711) -(trans s1671 s5724) -(trans s1672 s5705) -(trans s1672 s5718) -(trans s1672 s5731) -(trans s1673 s5712) -(trans s1673 s5725) -(trans s1673 s5738) -(trans s1674 s5719) -(trans s1674 s5732) -(trans s1674 s5745) -(trans s1675 s5726) -(trans s1675 s5739) -(trans s1675 s5752) -(trans s1676 s5733) -(trans s1676 s5746) -(trans s1676 s5759) -(trans s1677 s5740) -(trans s1677 s5753) -(trans s1677 s5766) -(trans s1678 s5747) -(trans s1678 s5760) -(trans s1678 s5773) -(trans s1679 s5754) -(trans s1679 s5767) -(trans s1679 s5780) -(trans s1680 s5761) -(trans s1680 s5774) -(trans s1680 s5787) -(trans s1681 s5768) -(trans s1681 s5781) -(trans s1681 s5794) -(trans s1682 s5775) -(trans s1682 s5788) -(trans s1682 s5801) -(trans s1683 s5782) -(trans s1683 s5795) -(trans s1683 s5808) -(trans s1684 s5789) -(trans s1684 s5802) -(trans s1684 s5815) -(trans s1685 s5796) -(trans s1685 s5809) -(trans s1685 s5822) -(trans s1686 s5803) -(trans s1686 s5816) -(trans s1686 s5829) -(trans s1687 s5810) -(trans s1687 s5823) -(trans s1687 s5836) -(trans s1688 s5817) -(trans s1688 s5830) -(trans s1688 s5843) -(trans s1689 s5824) -(trans s1689 s5837) -(trans s1689 s5850) -(trans s1690 s5831) -(trans s1690 s5844) -(trans s1690 s5857) -(trans s1691 s5838) -(trans s1691 s5851) -(trans s1691 s5864) -(trans s1692 s5845) -(trans s1692 s5858) -(trans s1692 s5871) -(trans s1693 s5852) -(trans s1693 s5865) -(trans s1693 s5878) -(trans s1694 s5859) -(trans s1694 s5872) -(trans s1694 s5885) -(trans s1695 s5866) -(trans s1695 s5879) -(trans s1695 s5892) -(trans s1696 s5873) -(trans s1696 s5886) -(trans s1696 s5899) -(trans s1697 s5880) -(trans s1697 s5893) -(trans s1697 s5906) -(trans s1698 s5887) -(trans s1698 s5900) -(trans s1698 s5913) -(trans s1699 s5894) -(trans s1699 s5907) -(trans s1699 s5920) -(trans s1700 s5901) -(trans s1700 s5914) -(trans s1700 s5927) -(trans s1701 s5908) -(trans s1701 s5921) -(trans s1701 s5934) -(trans s1702 s5915) -(trans s1702 s5928) -(trans s1702 s5941) -(trans s1703 s5922) -(trans s1703 s5935) -(trans s1703 s5948) -(trans s1704 s5929) -(trans s1704 s5942) -(trans s1704 s5955) -(trans s1705 s5936) -(trans s1705 s5949) -(trans s1705 s5962) -(trans s1706 s5943) -(trans s1706 s5956) -(trans s1706 s5969) -(trans s1707 s5950) -(trans s1707 s5963) -(trans s1707 s5976) -(trans s1708 s5957) -(trans s1708 s5970) -(trans s1708 s5983) -(trans s1709 s5964) -(trans s1709 s5977) -(trans s1709 s5990) -(trans s1710 s5971) -(trans s1710 s5984) -(trans s1710 s5997) -(trans s1711 s5978) -(trans s1711 s5991) -(trans s1711 s4) -(trans s1712 s5985) -(trans s1712 s5998) -(trans s1712 s11) -(trans s1713 s5992) -(trans s1713 s5) -(trans s1713 s18) -(trans s1714 s5999) -(trans s1714 s12) -(trans s1714 s25) -(trans s1715 s6) -(trans s1715 s19) -(trans s1715 s32) -(trans s1716 s13) -(trans s1716 s26) -(trans s1716 s39) -(trans s1717 s20) -(trans s1717 s33) -(trans s1717 s46) -(trans s1718 s27) -(trans s1718 s40) -(trans s1718 s53) -(trans s1719 s34) -(trans s1719 s47) -(trans s1719 s60) -(trans s1720 s41) -(trans s1720 s54) -(trans s1720 s67) -(trans s1721 s48) -(trans s1721 s61) -(trans s1721 s74) -(trans s1722 s55) -(trans s1722 s68) -(trans s1722 s81) -(trans s1723 s62) -(trans s1723 s75) -(trans s1723 s88) -(trans s1724 s69) -(trans s1724 s82) -(trans s1724 s95) -(trans s1725 s76) -(trans s1725 s89) -(trans s1725 s102) -(trans s1726 s83) -(trans s1726 s96) -(trans s1726 s109) -(trans s1727 s90) -(trans s1727 s103) -(trans s1727 s116) -(trans s1728 s97) -(trans s1728 s110) -(trans s1728 s123) -(trans s1729 s104) -(trans s1729 s117) -(trans s1729 s130) -(trans s1730 s111) -(trans s1730 s124) -(trans s1730 s137) -(trans s1731 s118) -(trans s1731 s131) -(trans s1731 s144) -(trans s1732 s125) -(trans s1732 s138) -(trans s1732 s151) -(trans s1733 s132) -(trans s1733 s145) -(trans s1733 s158) -(trans s1734 s139) -(trans s1734 s152) -(trans s1734 s165) -(trans s1735 s146) -(trans s1735 s159) -(trans s1735 s172) -(trans s1736 s153) -(trans s1736 s166) -(trans s1736 s179) -(trans s1737 s160) -(trans s1737 s173) -(trans s1737 s186) -(trans s1738 s167) -(trans s1738 s180) -(trans s1738 s193) -(trans s1739 s174) -(trans s1739 s187) -(trans s1739 s200) -(trans s1740 s181) -(trans s1740 s194) -(trans s1740 s207) -(trans s1741 s188) -(trans s1741 s201) -(trans s1741 s214) -(trans s1742 s195) -(trans s1742 s208) -(trans s1742 s221) -(trans s1743 s202) -(trans s1743 s215) -(trans s1743 s228) -(trans s1744 s209) -(trans s1744 s222) -(trans s1744 s235) -(trans s1745 s216) -(trans s1745 s229) -(trans s1745 s242) -(trans s1746 s223) -(trans s1746 s236) -(trans s1746 s249) -(trans s1747 s230) -(trans s1747 s243) -(trans s1747 s256) -(trans s1748 s237) -(trans s1748 s250) -(trans s1748 s263) -(trans s1749 s244) -(trans s1749 s257) -(trans s1749 s270) -(trans s1750 s251) -(trans s1750 s264) -(trans s1750 s277) -(trans s1751 s258) -(trans s1751 s271) -(trans s1751 s284) -(trans s1752 s265) -(trans s1752 s278) -(trans s1752 s291) -(trans s1753 s272) -(trans s1753 s285) -(trans s1753 s298) -(trans s1754 s279) -(trans s1754 s292) -(trans s1754 s305) -(trans s1755 s286) -(trans s1755 s299) -(trans s1755 s312) -(trans s1756 s293) -(trans s1756 s306) -(trans s1756 s319) -(trans s1757 s300) -(trans s1757 s313) -(trans s1757 s326) -(trans s1758 s307) -(trans s1758 s320) -(trans s1758 s333) -(trans s1759 s314) -(trans s1759 s327) -(trans s1759 s340) -(trans s1760 s321) -(trans s1760 s334) -(trans s1760 s347) -(trans s1761 s328) -(trans s1761 s341) -(trans s1761 s354) -(trans s1762 s335) -(trans s1762 s348) -(trans s1762 s361) -(trans s1763 s342) -(trans s1763 s355) -(trans s1763 s368) -(trans s1764 s349) -(trans s1764 s362) -(trans s1764 s375) -(trans s1765 s356) -(trans s1765 s369) -(trans s1765 s382) -(trans s1766 s363) -(trans s1766 s376) -(trans s1766 s389) -(trans s1767 s370) -(trans s1767 s383) -(trans s1767 s396) -(trans s1768 s377) -(trans s1768 s390) -(trans s1768 s403) -(trans s1769 s384) -(trans s1769 s397) -(trans s1769 s410) -(trans s1770 s391) -(trans s1770 s404) -(trans s1770 s417) -(trans s1771 s398) -(trans s1771 s411) -(trans s1771 s424) -(trans s1772 s405) -(trans s1772 s418) -(trans s1772 s431) -(trans s1773 s412) -(trans s1773 s425) -(trans s1773 s438) -(trans s1774 s419) -(trans s1774 s432) -(trans s1774 s445) -(trans s1775 s426) -(trans s1775 s439) -(trans s1775 s452) -(trans s1776 s433) -(trans s1776 s446) -(trans s1776 s459) -(trans s1777 s440) -(trans s1777 s453) -(trans s1777 s466) -(trans s1778 s447) -(trans s1778 s460) -(trans s1778 s473) -(trans s1779 s454) -(trans s1779 s467) -(trans s1779 s480) -(trans s1780 s461) -(trans s1780 s474) -(trans s1780 s487) -(trans s1781 s468) -(trans s1781 s481) -(trans s1781 s494) -(trans s1782 s475) -(trans s1782 s488) -(trans s1782 s501) -(trans s1783 s482) -(trans s1783 s495) -(trans s1783 s508) -(trans s1784 s489) -(trans s1784 s502) -(trans s1784 s515) -(trans s1785 s496) -(trans s1785 s509) -(trans s1785 s522) -(trans s1786 s503) -(trans s1786 s516) -(trans s1786 s529) -(trans s1787 s510) -(trans s1787 s523) -(trans s1787 s536) -(trans s1788 s517) -(trans s1788 s530) -(trans s1788 s543) -(trans s1789 s524) -(trans s1789 s537) -(trans s1789 s550) -(trans s1790 s531) -(trans s1790 s544) -(trans s1790 s557) -(trans s1791 s538) -(trans s1791 s551) -(trans s1791 s564) -(trans s1792 s545) -(trans s1792 s558) -(trans s1792 s571) -(trans s1793 s552) -(trans s1793 s565) -(trans s1793 s578) -(trans s1794 s559) -(trans s1794 s572) -(trans s1794 s585) -(trans s1795 s566) -(trans s1795 s579) -(trans s1795 s592) -(trans s1796 s573) -(trans s1796 s586) -(trans s1796 s599) -(trans s1797 s580) -(trans s1797 s593) -(trans s1797 s606) -(trans s1798 s587) -(trans s1798 s600) -(trans s1798 s613) -(trans s1799 s594) -(trans s1799 s607) -(trans s1799 s620) -(trans s1800 s601) -(trans s1800 s614) -(trans s1800 s627) -(trans s1801 s608) -(trans s1801 s621) -(trans s1801 s634) -(trans s1802 s615) -(trans s1802 s628) -(trans s1802 s641) -(trans s1803 s622) -(trans s1803 s635) -(trans s1803 s648) -(trans s1804 s629) -(trans s1804 s642) -(trans s1804 s655) -(trans s1805 s636) -(trans s1805 s649) -(trans s1805 s662) -(trans s1806 s643) -(trans s1806 s656) -(trans s1806 s669) -(trans s1807 s650) -(trans s1807 s663) -(trans s1807 s676) -(trans s1808 s657) -(trans s1808 s670) -(trans s1808 s683) -(trans s1809 s664) -(trans s1809 s677) -(trans s1809 s690) -(trans s1810 s671) -(trans s1810 s684) -(trans s1810 s697) -(trans s1811 s678) -(trans s1811 s691) -(trans s1811 s704) -(trans s1812 s685) -(trans s1812 s698) -(trans s1812 s711) -(trans s1813 s692) -(trans s1813 s705) -(trans s1813 s718) -(trans s1814 s699) -(trans s1814 s712) -(trans s1814 s725) -(trans s1815 s706) -(trans s1815 s719) -(trans s1815 s732) -(trans s1816 s713) -(trans s1816 s726) -(trans s1816 s739) -(trans s1817 s720) -(trans s1817 s733) -(trans s1817 s746) -(trans s1818 s727) -(trans s1818 s740) -(trans s1818 s753) -(trans s1819 s734) -(trans s1819 s747) -(trans s1819 s760) -(trans s1820 s741) -(trans s1820 s754) -(trans s1820 s767) -(trans s1821 s748) -(trans s1821 s761) -(trans s1821 s774) -(trans s1822 s755) -(trans s1822 s768) -(trans s1822 s781) -(trans s1823 s762) -(trans s1823 s775) -(trans s1823 s788) -(trans s1824 s769) -(trans s1824 s782) -(trans s1824 s795) -(trans s1825 s776) -(trans s1825 s789) -(trans s1825 s802) -(trans s1826 s783) -(trans s1826 s796) -(trans s1826 s809) -(trans s1827 s790) -(trans s1827 s803) -(trans s1827 s816) -(trans s1828 s797) -(trans s1828 s810) -(trans s1828 s823) -(trans s1829 s804) -(trans s1829 s817) -(trans s1829 s830) -(trans s1830 s811) -(trans s1830 s824) -(trans s1830 s837) -(trans s1831 s818) -(trans s1831 s831) -(trans s1831 s844) -(trans s1832 s825) -(trans s1832 s838) -(trans s1832 s851) -(trans s1833 s832) -(trans s1833 s845) -(trans s1833 s858) -(trans s1834 s839) -(trans s1834 s852) -(trans s1834 s865) -(trans s1835 s846) -(trans s1835 s859) -(trans s1835 s872) -(trans s1836 s853) -(trans s1836 s866) -(trans s1836 s879) -(trans s1837 s860) -(trans s1837 s873) -(trans s1837 s886) -(trans s1838 s867) -(trans s1838 s880) -(trans s1838 s893) -(trans s1839 s874) -(trans s1839 s887) -(trans s1839 s900) -(trans s1840 s881) -(trans s1840 s894) -(trans s1840 s907) -(trans s1841 s888) -(trans s1841 s901) -(trans s1841 s914) -(trans s1842 s895) -(trans s1842 s908) -(trans s1842 s921) -(trans s1843 s902) -(trans s1843 s915) -(trans s1843 s928) -(trans s1844 s909) -(trans s1844 s922) -(trans s1844 s935) -(trans s1845 s916) -(trans s1845 s929) -(trans s1845 s942) -(trans s1846 s923) -(trans s1846 s936) -(trans s1846 s949) -(trans s1847 s930) -(trans s1847 s943) -(trans s1847 s956) -(trans s1848 s937) -(trans s1848 s950) -(trans s1848 s963) -(trans s1849 s944) -(trans s1849 s957) -(trans s1849 s970) -(trans s1850 s951) -(trans s1850 s964) -(trans s1850 s977) -(trans s1851 s958) -(trans s1851 s971) -(trans s1851 s984) -(trans s1852 s965) -(trans s1852 s978) -(trans s1852 s991) -(trans s1853 s972) -(trans s1853 s985) -(trans s1853 s998) -(trans s1854 s979) -(trans s1854 s992) -(trans s1854 s1005) -(trans s1855 s986) -(trans s1855 s999) -(trans s1855 s1012) -(trans s1856 s993) -(trans s1856 s1006) -(trans s1856 s1019) -(trans s1857 s1000) -(trans s1857 s1013) -(trans s1857 s1026) -(trans s1858 s1007) -(trans s1858 s1020) -(trans s1858 s1033) -(trans s1859 s1014) -(trans s1859 s1027) -(trans s1859 s1040) -(trans s1860 s1021) -(trans s1860 s1034) -(trans s1860 s1047) -(trans s1861 s1028) -(trans s1861 s1041) -(trans s1861 s1054) -(trans s1862 s1035) -(trans s1862 s1048) -(trans s1862 s1061) -(trans s1863 s1042) -(trans s1863 s1055) -(trans s1863 s1068) -(trans s1864 s1049) -(trans s1864 s1062) -(trans s1864 s1075) -(trans s1865 s1056) -(trans s1865 s1069) -(trans s1865 s1082) -(trans s1866 s1063) -(trans s1866 s1076) -(trans s1866 s1089) -(trans s1867 s1070) -(trans s1867 s1083) -(trans s1867 s1096) -(trans s1868 s1077) -(trans s1868 s1090) -(trans s1868 s1103) -(trans s1869 s1084) -(trans s1869 s1097) -(trans s1869 s1110) -(trans s1870 s1091) -(trans s1870 s1104) -(trans s1870 s1117) -(trans s1871 s1098) -(trans s1871 s1111) -(trans s1871 s1124) -(trans s1872 s1105) -(trans s1872 s1118) -(trans s1872 s1131) -(trans s1873 s1112) -(trans s1873 s1125) -(trans s1873 s1138) -(trans s1874 s1119) -(trans s1874 s1132) -(trans s1874 s1145) -(trans s1875 s1126) -(trans s1875 s1139) -(trans s1875 s1152) -(trans s1876 s1133) -(trans s1876 s1146) -(trans s1876 s1159) -(trans s1877 s1140) -(trans s1877 s1153) -(trans s1877 s1166) -(trans s1878 s1147) -(trans s1878 s1160) -(trans s1878 s1173) -(trans s1879 s1154) -(trans s1879 s1167) -(trans s1879 s1180) -(trans s1880 s1161) -(trans s1880 s1174) -(trans s1880 s1187) -(trans s1881 s1168) -(trans s1881 s1181) -(trans s1881 s1194) -(trans s1882 s1175) -(trans s1882 s1188) -(trans s1882 s1201) -(trans s1883 s1182) -(trans s1883 s1195) -(trans s1883 s1208) -(trans s1884 s1189) -(trans s1884 s1202) -(trans s1884 s1215) -(trans s1885 s1196) -(trans s1885 s1209) -(trans s1885 s1222) -(trans s1886 s1203) -(trans s1886 s1216) -(trans s1886 s1229) -(trans s1887 s1210) -(trans s1887 s1223) -(trans s1887 s1236) -(trans s1888 s1217) -(trans s1888 s1230) -(trans s1888 s1243) -(trans s1889 s1224) -(trans s1889 s1237) -(trans s1889 s1250) -(trans s1890 s1231) -(trans s1890 s1244) -(trans s1890 s1257) -(trans s1891 s1238) -(trans s1891 s1251) -(trans s1891 s1264) -(trans s1892 s1245) -(trans s1892 s1258) -(trans s1892 s1271) -(trans s1893 s1252) -(trans s1893 s1265) -(trans s1893 s1278) -(trans s1894 s1259) -(trans s1894 s1272) -(trans s1894 s1285) -(trans s1895 s1266) -(trans s1895 s1279) -(trans s1895 s1292) -(trans s1896 s1273) -(trans s1896 s1286) -(trans s1896 s1299) -(trans s1897 s1280) -(trans s1897 s1293) -(trans s1897 s1306) -(trans s1898 s1287) -(trans s1898 s1300) -(trans s1898 s1313) -(trans s1899 s1294) -(trans s1899 s1307) -(trans s1899 s1320) -(trans s1900 s1301) -(trans s1900 s1314) -(trans s1900 s1327) -(trans s1901 s1308) -(trans s1901 s1321) -(trans s1901 s1334) -(trans s1902 s1315) -(trans s1902 s1328) -(trans s1902 s1341) -(trans s1903 s1322) -(trans s1903 s1335) -(trans s1903 s1348) -(trans s1904 s1329) -(trans s1904 s1342) -(trans s1904 s1355) -(trans s1905 s1336) -(trans s1905 s1349) -(trans s1905 s1362) -(trans s1906 s1343) -(trans s1906 s1356) -(trans s1906 s1369) -(trans s1907 s1350) -(trans s1907 s1363) -(trans s1907 s1376) -(trans s1908 s1357) -(trans s1908 s1370) -(trans s1908 s1383) -(trans s1909 s1364) -(trans s1909 s1377) -(trans s1909 s1390) -(trans s1910 s1371) -(trans s1910 s1384) -(trans s1910 s1397) -(trans s1911 s1378) -(trans s1911 s1391) -(trans s1911 s1404) -(trans s1912 s1385) -(trans s1912 s1398) -(trans s1912 s1411) -(trans s1913 s1392) -(trans s1913 s1405) -(trans s1913 s1418) -(trans s1914 s1399) -(trans s1914 s1412) -(trans s1914 s1425) -(trans s1915 s1406) -(trans s1915 s1419) -(trans s1915 s1432) -(trans s1916 s1413) -(trans s1916 s1426) -(trans s1916 s1439) -(trans s1917 s1420) -(trans s1917 s1433) -(trans s1917 s1446) -(trans s1918 s1427) -(trans s1918 s1440) -(trans s1918 s1453) -(trans s1919 s1434) -(trans s1919 s1447) -(trans s1919 s1460) -(trans s1920 s1441) -(trans s1920 s1454) -(trans s1920 s1467) -(trans s1921 s1448) -(trans s1921 s1461) -(trans s1921 s1474) -(trans s1922 s1455) -(trans s1922 s1468) -(trans s1922 s1481) -(trans s1923 s1462) -(trans s1923 s1475) -(trans s1923 s1488) -(trans s1924 s1469) -(trans s1924 s1482) -(trans s1924 s1495) -(trans s1925 s1476) -(trans s1925 s1489) -(trans s1925 s1502) -(trans s1926 s1483) -(trans s1926 s1496) -(trans s1926 s1509) -(trans s1927 s1490) -(trans s1927 s1503) -(trans s1927 s1516) -(trans s1928 s1497) -(trans s1928 s1510) -(trans s1928 s1523) -(trans s1929 s1504) -(trans s1929 s1517) -(trans s1929 s1530) -(trans s1930 s1511) -(trans s1930 s1524) -(trans s1930 s1537) -(trans s1931 s1518) -(trans s1931 s1531) -(trans s1931 s1544) -(trans s1932 s1525) -(trans s1932 s1538) -(trans s1932 s1551) -(trans s1933 s1532) -(trans s1933 s1545) -(trans s1933 s1558) -(trans s1934 s1539) -(trans s1934 s1552) -(trans s1934 s1565) -(trans s1935 s1546) -(trans s1935 s1559) -(trans s1935 s1572) -(trans s1936 s1553) -(trans s1936 s1566) -(trans s1936 s1579) -(trans s1937 s1560) -(trans s1937 s1573) -(trans s1937 s1586) -(trans s1938 s1567) -(trans s1938 s1580) -(trans s1938 s1593) -(trans s1939 s1574) -(trans s1939 s1587) -(trans s1939 s1600) -(trans s1940 s1581) -(trans s1940 s1594) -(trans s1940 s1607) -(trans s1941 s1588) -(trans s1941 s1601) -(trans s1941 s1614) -(trans s1942 s1595) -(trans s1942 s1608) -(trans s1942 s1621) -(trans s1943 s1602) -(trans s1943 s1615) -(trans s1943 s1628) -(trans s1944 s1609) -(trans s1944 s1622) -(trans s1944 s1635) -(trans s1945 s1616) -(trans s1945 s1629) -(trans s1945 s1642) -(trans s1946 s1623) -(trans s1946 s1636) -(trans s1946 s1649) -(trans s1947 s1630) -(trans s1947 s1643) -(trans s1947 s1656) -(trans s1948 s1637) -(trans s1948 s1650) -(trans s1948 s1663) -(trans s1949 s1644) -(trans s1949 s1657) -(trans s1949 s1670) -(trans s1950 s1651) -(trans s1950 s1664) -(trans s1950 s1677) -(trans s1951 s1658) -(trans s1951 s1671) -(trans s1951 s1684) -(trans s1952 s1665) -(trans s1952 s1678) -(trans s1952 s1691) -(trans s1953 s1672) -(trans s1953 s1685) -(trans s1953 s1698) -(trans s1954 s1679) -(trans s1954 s1692) -(trans s1954 s1705) -(trans s1955 s1686) -(trans s1955 s1699) -(trans s1955 s1712) -(trans s1956 s1693) -(trans s1956 s1706) -(trans s1956 s1719) -(trans s1957 s1700) -(trans s1957 s1713) -(trans s1957 s1726) -(trans s1958 s1707) -(trans s1958 s1720) -(trans s1958 s1733) -(trans s1959 s1714) -(trans s1959 s1727) -(trans s1959 s1740) -(trans s1960 s1721) -(trans s1960 s1734) -(trans s1960 s1747) -(trans s1961 s1728) -(trans s1961 s1741) -(trans s1961 s1754) -(trans s1962 s1735) -(trans s1962 s1748) -(trans s1962 s1761) -(trans s1963 s1742) -(trans s1963 s1755) -(trans s1963 s1768) -(trans s1964 s1749) -(trans s1964 s1762) -(trans s1964 s1775) -(trans s1965 s1756) -(trans s1965 s1769) -(trans s1965 s1782) -(trans s1966 s1763) -(trans s1966 s1776) -(trans s1966 s1789) -(trans s1967 s1770) -(trans s1967 s1783) -(trans s1967 s1796) -(trans s1968 s1777) -(trans s1968 s1790) -(trans s1968 s1803) -(trans s1969 s1784) -(trans s1969 s1797) -(trans s1969 s1810) -(trans s1970 s1791) -(trans s1970 s1804) -(trans s1970 s1817) -(trans s1971 s1798) -(trans s1971 s1811) -(trans s1971 s1824) -(trans s1972 s1805) -(trans s1972 s1818) -(trans s1972 s1831) -(trans s1973 s1812) -(trans s1973 s1825) -(trans s1973 s1838) -(trans s1974 s1819) -(trans s1974 s1832) -(trans s1974 s1845) -(trans s1975 s1826) -(trans s1975 s1839) -(trans s1975 s1852) -(trans s1976 s1833) -(trans s1976 s1846) -(trans s1976 s1859) -(trans s1977 s1840) -(trans s1977 s1853) -(trans s1977 s1866) -(trans s1978 s1847) -(trans s1978 s1860) -(trans s1978 s1873) -(trans s1979 s1854) -(trans s1979 s1867) -(trans s1979 s1880) -(trans s1980 s1861) -(trans s1980 s1874) -(trans s1980 s1887) -(trans s1981 s1868) -(trans s1981 s1881) -(trans s1981 s1894) -(trans s1982 s1875) -(trans s1982 s1888) -(trans s1982 s1901) -(trans s1983 s1882) -(trans s1983 s1895) -(trans s1983 s1908) -(trans s1984 s1889) -(trans s1984 s1902) -(trans s1984 s1915) -(trans s1985 s1896) -(trans s1985 s1909) -(trans s1985 s1922) -(trans s1986 s1903) -(trans s1986 s1916) -(trans s1986 s1929) -(trans s1987 s1910) -(trans s1987 s1923) -(trans s1987 s1936) -(trans s1988 s1917) -(trans s1988 s1930) -(trans s1988 s1943) -(trans s1989 s1924) -(trans s1989 s1937) -(trans s1989 s1950) -(trans s1990 s1931) -(trans s1990 s1944) -(trans s1990 s1957) -(trans s1991 s1938) -(trans s1991 s1951) -(trans s1991 s1964) -(trans s1992 s1945) -(trans s1992 s1958) -(trans s1992 s1971) -(trans s1993 s1952) -(trans s1993 s1965) -(trans s1993 s1978) -(trans s1994 s1959) -(trans s1994 s1972) -(trans s1994 s1985) -(trans s1995 s1966) -(trans s1995 s1979) -(trans s1995 s1992) -(trans s1996 s1973) -(trans s1996 s1986) -(trans s1996 s1999) -(trans s1997 s1980) -(trans s1997 s1993) -(trans s1997 s2006) -(trans s1998 s1987) -(trans s1998 s2000) -(trans s1998 s2013) -(trans s1999 s1994) -(trans s1999 s2007) -(trans s1999 s2020) -(trans s2000 s2001) -(trans s2000 s2014) -(trans s2000 s2027) -(trans s2001 s2008) -(trans s2001 s2021) -(trans s2001 s2034) -(trans s2002 s2015) -(trans s2002 s2028) -(trans s2002 s2041) -(trans s2003 s2022) -(trans s2003 s2035) -(trans s2003 s2048) -(trans s2004 s2029) -(trans s2004 s2042) -(trans s2004 s2055) -(trans s2005 s2036) -(trans s2005 s2049) -(trans s2005 s2062) -(trans s2006 s2043) -(trans s2006 s2056) -(trans s2006 s2069) -(trans s2007 s2050) -(trans s2007 s2063) -(trans s2007 s2076) -(trans s2008 s2057) -(trans s2008 s2070) -(trans s2008 s2083) -(trans s2009 s2064) -(trans s2009 s2077) -(trans s2009 s2090) -(trans s2010 s2071) -(trans s2010 s2084) -(trans s2010 s2097) -(trans s2011 s2078) -(trans s2011 s2091) -(trans s2011 s2104) -(trans s2012 s2085) -(trans s2012 s2098) -(trans s2012 s2111) -(trans s2013 s2092) -(trans s2013 s2105) -(trans s2013 s2118) -(trans s2014 s2099) -(trans s2014 s2112) -(trans s2014 s2125) -(trans s2015 s2106) -(trans s2015 s2119) -(trans s2015 s2132) -(trans s2016 s2113) -(trans s2016 s2126) -(trans s2016 s2139) -(trans s2017 s2120) -(trans s2017 s2133) -(trans s2017 s2146) -(trans s2018 s2127) -(trans s2018 s2140) -(trans s2018 s2153) -(trans s2019 s2134) -(trans s2019 s2147) -(trans s2019 s2160) -(trans s2020 s2141) -(trans s2020 s2154) -(trans s2020 s2167) -(trans s2021 s2148) -(trans s2021 s2161) -(trans s2021 s2174) -(trans s2022 s2155) -(trans s2022 s2168) -(trans s2022 s2181) -(trans s2023 s2162) -(trans s2023 s2175) -(trans s2023 s2188) -(trans s2024 s2169) -(trans s2024 s2182) -(trans s2024 s2195) -(trans s2025 s2176) -(trans s2025 s2189) -(trans s2025 s2202) -(trans s2026 s2183) -(trans s2026 s2196) -(trans s2026 s2209) -(trans s2027 s2190) -(trans s2027 s2203) -(trans s2027 s2216) -(trans s2028 s2197) -(trans s2028 s2210) -(trans s2028 s2223) -(trans s2029 s2204) -(trans s2029 s2217) -(trans s2029 s2230) -(trans s2030 s2211) -(trans s2030 s2224) -(trans s2030 s2237) -(trans s2031 s2218) -(trans s2031 s2231) -(trans s2031 s2244) -(trans s2032 s2225) -(trans s2032 s2238) -(trans s2032 s2251) -(trans s2033 s2232) -(trans s2033 s2245) -(trans s2033 s2258) -(trans s2034 s2239) -(trans s2034 s2252) -(trans s2034 s2265) -(trans s2035 s2246) -(trans s2035 s2259) -(trans s2035 s2272) -(trans s2036 s2253) -(trans s2036 s2266) -(trans s2036 s2279) -(trans s2037 s2260) -(trans s2037 s2273) -(trans s2037 s2286) -(trans s2038 s2267) -(trans s2038 s2280) -(trans s2038 s2293) -(trans s2039 s2274) -(trans s2039 s2287) -(trans s2039 s2300) -(trans s2040 s2281) -(trans s2040 s2294) -(trans s2040 s2307) -(trans s2041 s2288) -(trans s2041 s2301) -(trans s2041 s2314) -(trans s2042 s2295) -(trans s2042 s2308) -(trans s2042 s2321) -(trans s2043 s2302) -(trans s2043 s2315) -(trans s2043 s2328) -(trans s2044 s2309) -(trans s2044 s2322) -(trans s2044 s2335) -(trans s2045 s2316) -(trans s2045 s2329) -(trans s2045 s2342) -(trans s2046 s2323) -(trans s2046 s2336) -(trans s2046 s2349) -(trans s2047 s2330) -(trans s2047 s2343) -(trans s2047 s2356) -(trans s2048 s2337) -(trans s2048 s2350) -(trans s2048 s2363) -(trans s2049 s2344) -(trans s2049 s2357) -(trans s2049 s2370) -(trans s2050 s2351) -(trans s2050 s2364) -(trans s2050 s2377) -(trans s2051 s2358) -(trans s2051 s2371) -(trans s2051 s2384) -(trans s2052 s2365) -(trans s2052 s2378) -(trans s2052 s2391) -(trans s2053 s2372) -(trans s2053 s2385) -(trans s2053 s2398) -(trans s2054 s2379) -(trans s2054 s2392) -(trans s2054 s2405) -(trans s2055 s2386) -(trans s2055 s2399) -(trans s2055 s2412) -(trans s2056 s2393) -(trans s2056 s2406) -(trans s2056 s2419) -(trans s2057 s2400) -(trans s2057 s2413) -(trans s2057 s2426) -(trans s2058 s2407) -(trans s2058 s2420) -(trans s2058 s2433) -(trans s2059 s2414) -(trans s2059 s2427) -(trans s2059 s2440) -(trans s2060 s2421) -(trans s2060 s2434) -(trans s2060 s2447) -(trans s2061 s2428) -(trans s2061 s2441) -(trans s2061 s2454) -(trans s2062 s2435) -(trans s2062 s2448) -(trans s2062 s2461) -(trans s2063 s2442) -(trans s2063 s2455) -(trans s2063 s2468) -(trans s2064 s2449) -(trans s2064 s2462) -(trans s2064 s2475) -(trans s2065 s2456) -(trans s2065 s2469) -(trans s2065 s2482) -(trans s2066 s2463) -(trans s2066 s2476) -(trans s2066 s2489) -(trans s2067 s2470) -(trans s2067 s2483) -(trans s2067 s2496) -(trans s2068 s2477) -(trans s2068 s2490) -(trans s2068 s2503) -(trans s2069 s2484) -(trans s2069 s2497) -(trans s2069 s2510) -(trans s2070 s2491) -(trans s2070 s2504) -(trans s2070 s2517) -(trans s2071 s2498) -(trans s2071 s2511) -(trans s2071 s2524) -(trans s2072 s2505) -(trans s2072 s2518) -(trans s2072 s2531) -(trans s2073 s2512) -(trans s2073 s2525) -(trans s2073 s2538) -(trans s2074 s2519) -(trans s2074 s2532) -(trans s2074 s2545) -(trans s2075 s2526) -(trans s2075 s2539) -(trans s2075 s2552) -(trans s2076 s2533) -(trans s2076 s2546) -(trans s2076 s2559) -(trans s2077 s2540) -(trans s2077 s2553) -(trans s2077 s2566) -(trans s2078 s2547) -(trans s2078 s2560) -(trans s2078 s2573) -(trans s2079 s2554) -(trans s2079 s2567) -(trans s2079 s2580) -(trans s2080 s2561) -(trans s2080 s2574) -(trans s2080 s2587) -(trans s2081 s2568) -(trans s2081 s2581) -(trans s2081 s2594) -(trans s2082 s2575) -(trans s2082 s2588) -(trans s2082 s2601) -(trans s2083 s2582) -(trans s2083 s2595) -(trans s2083 s2608) -(trans s2084 s2589) -(trans s2084 s2602) -(trans s2084 s2615) -(trans s2085 s2596) -(trans s2085 s2609) -(trans s2085 s2622) -(trans s2086 s2603) -(trans s2086 s2616) -(trans s2086 s2629) -(trans s2087 s2610) -(trans s2087 s2623) -(trans s2087 s2636) -(trans s2088 s2617) -(trans s2088 s2630) -(trans s2088 s2643) -(trans s2089 s2624) -(trans s2089 s2637) -(trans s2089 s2650) -(trans s2090 s2631) -(trans s2090 s2644) -(trans s2090 s2657) -(trans s2091 s2638) -(trans s2091 s2651) -(trans s2091 s2664) -(trans s2092 s2645) -(trans s2092 s2658) -(trans s2092 s2671) -(trans s2093 s2652) -(trans s2093 s2665) -(trans s2093 s2678) -(trans s2094 s2659) -(trans s2094 s2672) -(trans s2094 s2685) -(trans s2095 s2666) -(trans s2095 s2679) -(trans s2095 s2692) -(trans s2096 s2673) -(trans s2096 s2686) -(trans s2096 s2699) -(trans s2097 s2680) -(trans s2097 s2693) -(trans s2097 s2706) -(trans s2098 s2687) -(trans s2098 s2700) -(trans s2098 s2713) -(trans s2099 s2694) -(trans s2099 s2707) -(trans s2099 s2720) -(trans s2100 s2701) -(trans s2100 s2714) -(trans s2100 s2727) -(trans s2101 s2708) -(trans s2101 s2721) -(trans s2101 s2734) -(trans s2102 s2715) -(trans s2102 s2728) -(trans s2102 s2741) -(trans s2103 s2722) -(trans s2103 s2735) -(trans s2103 s2748) -(trans s2104 s2729) -(trans s2104 s2742) -(trans s2104 s2755) -(trans s2105 s2736) -(trans s2105 s2749) -(trans s2105 s2762) -(trans s2106 s2743) -(trans s2106 s2756) -(trans s2106 s2769) -(trans s2107 s2750) -(trans s2107 s2763) -(trans s2107 s2776) -(trans s2108 s2757) -(trans s2108 s2770) -(trans s2108 s2783) -(trans s2109 s2764) -(trans s2109 s2777) -(trans s2109 s2790) -(trans s2110 s2771) -(trans s2110 s2784) -(trans s2110 s2797) -(trans s2111 s2778) -(trans s2111 s2791) -(trans s2111 s2804) -(trans s2112 s2785) -(trans s2112 s2798) -(trans s2112 s2811) -(trans s2113 s2792) -(trans s2113 s2805) -(trans s2113 s2818) -(trans s2114 s2799) -(trans s2114 s2812) -(trans s2114 s2825) -(trans s2115 s2806) -(trans s2115 s2819) -(trans s2115 s2832) -(trans s2116 s2813) -(trans s2116 s2826) -(trans s2116 s2839) -(trans s2117 s2820) -(trans s2117 s2833) -(trans s2117 s2846) -(trans s2118 s2827) -(trans s2118 s2840) -(trans s2118 s2853) -(trans s2119 s2834) -(trans s2119 s2847) -(trans s2119 s2860) -(trans s2120 s2841) -(trans s2120 s2854) -(trans s2120 s2867) -(trans s2121 s2848) -(trans s2121 s2861) -(trans s2121 s2874) -(trans s2122 s2855) -(trans s2122 s2868) -(trans s2122 s2881) -(trans s2123 s2862) -(trans s2123 s2875) -(trans s2123 s2888) -(trans s2124 s2869) -(trans s2124 s2882) -(trans s2124 s2895) -(trans s2125 s2876) -(trans s2125 s2889) -(trans s2125 s2902) -(trans s2126 s2883) -(trans s2126 s2896) -(trans s2126 s2909) -(trans s2127 s2890) -(trans s2127 s2903) -(trans s2127 s2916) -(trans s2128 s2897) -(trans s2128 s2910) -(trans s2128 s2923) -(trans s2129 s2904) -(trans s2129 s2917) -(trans s2129 s2930) -(trans s2130 s2911) -(trans s2130 s2924) -(trans s2130 s2937) -(trans s2131 s2918) -(trans s2131 s2931) -(trans s2131 s2944) -(trans s2132 s2925) -(trans s2132 s2938) -(trans s2132 s2951) -(trans s2133 s2932) -(trans s2133 s2945) -(trans s2133 s2958) -(trans s2134 s2939) -(trans s2134 s2952) -(trans s2134 s2965) -(trans s2135 s2946) -(trans s2135 s2959) -(trans s2135 s2972) -(trans s2136 s2953) -(trans s2136 s2966) -(trans s2136 s2979) -(trans s2137 s2960) -(trans s2137 s2973) -(trans s2137 s2986) -(trans s2138 s2967) -(trans s2138 s2980) -(trans s2138 s2993) -(trans s2139 s2974) -(trans s2139 s2987) -(trans s2139 s3000) -(trans s2140 s2981) -(trans s2140 s2994) -(trans s2140 s3007) -(trans s2141 s2988) -(trans s2141 s3001) -(trans s2141 s3014) -(trans s2142 s2995) -(trans s2142 s3008) -(trans s2142 s3021) -(trans s2143 s3002) -(trans s2143 s3015) -(trans s2143 s3028) -(trans s2144 s3009) -(trans s2144 s3022) -(trans s2144 s3035) -(trans s2145 s3016) -(trans s2145 s3029) -(trans s2145 s3042) -(trans s2146 s3023) -(trans s2146 s3036) -(trans s2146 s3049) -(trans s2147 s3030) -(trans s2147 s3043) -(trans s2147 s3056) -(trans s2148 s3037) -(trans s2148 s3050) -(trans s2148 s3063) -(trans s2149 s3044) -(trans s2149 s3057) -(trans s2149 s3070) -(trans s2150 s3051) -(trans s2150 s3064) -(trans s2150 s3077) -(trans s2151 s3058) -(trans s2151 s3071) -(trans s2151 s3084) -(trans s2152 s3065) -(trans s2152 s3078) -(trans s2152 s3091) -(trans s2153 s3072) -(trans s2153 s3085) -(trans s2153 s3098) -(trans s2154 s3079) -(trans s2154 s3092) -(trans s2154 s3105) -(trans s2155 s3086) -(trans s2155 s3099) -(trans s2155 s3112) -(trans s2156 s3093) -(trans s2156 s3106) -(trans s2156 s3119) -(trans s2157 s3100) -(trans s2157 s3113) -(trans s2157 s3126) -(trans s2158 s3107) -(trans s2158 s3120) -(trans s2158 s3133) -(trans s2159 s3114) -(trans s2159 s3127) -(trans s2159 s3140) -(trans s2160 s3121) -(trans s2160 s3134) -(trans s2160 s3147) -(trans s2161 s3128) -(trans s2161 s3141) -(trans s2161 s3154) -(trans s2162 s3135) -(trans s2162 s3148) -(trans s2162 s3161) -(trans s2163 s3142) -(trans s2163 s3155) -(trans s2163 s3168) -(trans s2164 s3149) -(trans s2164 s3162) -(trans s2164 s3175) -(trans s2165 s3156) -(trans s2165 s3169) -(trans s2165 s3182) -(trans s2166 s3163) -(trans s2166 s3176) -(trans s2166 s3189) -(trans s2167 s3170) -(trans s2167 s3183) -(trans s2167 s3196) -(trans s2168 s3177) -(trans s2168 s3190) -(trans s2168 s3203) -(trans s2169 s3184) -(trans s2169 s3197) -(trans s2169 s3210) -(trans s2170 s3191) -(trans s2170 s3204) -(trans s2170 s3217) -(trans s2171 s3198) -(trans s2171 s3211) -(trans s2171 s3224) -(trans s2172 s3205) -(trans s2172 s3218) -(trans s2172 s3231) -(trans s2173 s3212) -(trans s2173 s3225) -(trans s2173 s3238) -(trans s2174 s3219) -(trans s2174 s3232) -(trans s2174 s3245) -(trans s2175 s3226) -(trans s2175 s3239) -(trans s2175 s3252) -(trans s2176 s3233) -(trans s2176 s3246) -(trans s2176 s3259) -(trans s2177 s3240) -(trans s2177 s3253) -(trans s2177 s3266) -(trans s2178 s3247) -(trans s2178 s3260) -(trans s2178 s3273) -(trans s2179 s3254) -(trans s2179 s3267) -(trans s2179 s3280) -(trans s2180 s3261) -(trans s2180 s3274) -(trans s2180 s3287) -(trans s2181 s3268) -(trans s2181 s3281) -(trans s2181 s3294) -(trans s2182 s3275) -(trans s2182 s3288) -(trans s2182 s3301) -(trans s2183 s3282) -(trans s2183 s3295) -(trans s2183 s3308) -(trans s2184 s3289) -(trans s2184 s3302) -(trans s2184 s3315) -(trans s2185 s3296) -(trans s2185 s3309) -(trans s2185 s3322) -(trans s2186 s3303) -(trans s2186 s3316) -(trans s2186 s3329) -(trans s2187 s3310) -(trans s2187 s3323) -(trans s2187 s3336) -(trans s2188 s3317) -(trans s2188 s3330) -(trans s2188 s3343) -(trans s2189 s3324) -(trans s2189 s3337) -(trans s2189 s3350) -(trans s2190 s3331) -(trans s2190 s3344) -(trans s2190 s3357) -(trans s2191 s3338) -(trans s2191 s3351) -(trans s2191 s3364) -(trans s2192 s3345) -(trans s2192 s3358) -(trans s2192 s3371) -(trans s2193 s3352) -(trans s2193 s3365) -(trans s2193 s3378) -(trans s2194 s3359) -(trans s2194 s3372) -(trans s2194 s3385) -(trans s2195 s3366) -(trans s2195 s3379) -(trans s2195 s3392) -(trans s2196 s3373) -(trans s2196 s3386) -(trans s2196 s3399) -(trans s2197 s3380) -(trans s2197 s3393) -(trans s2197 s3406) -(trans s2198 s3387) -(trans s2198 s3400) -(trans s2198 s3413) -(trans s2199 s3394) -(trans s2199 s3407) -(trans s2199 s3420) -(trans s2200 s3401) -(trans s2200 s3414) -(trans s2200 s3427) -(trans s2201 s3408) -(trans s2201 s3421) -(trans s2201 s3434) -(trans s2202 s3415) -(trans s2202 s3428) -(trans s2202 s3441) -(trans s2203 s3422) -(trans s2203 s3435) -(trans s2203 s3448) -(trans s2204 s3429) -(trans s2204 s3442) -(trans s2204 s3455) -(trans s2205 s3436) -(trans s2205 s3449) -(trans s2205 s3462) -(trans s2206 s3443) -(trans s2206 s3456) -(trans s2206 s3469) -(trans s2207 s3450) -(trans s2207 s3463) -(trans s2207 s3476) -(trans s2208 s3457) -(trans s2208 s3470) -(trans s2208 s3483) -(trans s2209 s3464) -(trans s2209 s3477) -(trans s2209 s3490) -(trans s2210 s3471) -(trans s2210 s3484) -(trans s2210 s3497) -(trans s2211 s3478) -(trans s2211 s3491) -(trans s2211 s3504) -(trans s2212 s3485) -(trans s2212 s3498) -(trans s2212 s3511) -(trans s2213 s3492) -(trans s2213 s3505) -(trans s2213 s3518) -(trans s2214 s3499) -(trans s2214 s3512) -(trans s2214 s3525) -(trans s2215 s3506) -(trans s2215 s3519) -(trans s2215 s3532) -(trans s2216 s3513) -(trans s2216 s3526) -(trans s2216 s3539) -(trans s2217 s3520) -(trans s2217 s3533) -(trans s2217 s3546) -(trans s2218 s3527) -(trans s2218 s3540) -(trans s2218 s3553) -(trans s2219 s3534) -(trans s2219 s3547) -(trans s2219 s3560) -(trans s2220 s3541) -(trans s2220 s3554) -(trans s2220 s3567) -(trans s2221 s3548) -(trans s2221 s3561) -(trans s2221 s3574) -(trans s2222 s3555) -(trans s2222 s3568) -(trans s2222 s3581) -(trans s2223 s3562) -(trans s2223 s3575) -(trans s2223 s3588) -(trans s2224 s3569) -(trans s2224 s3582) -(trans s2224 s3595) -(trans s2225 s3576) -(trans s2225 s3589) -(trans s2225 s3602) -(trans s2226 s3583) -(trans s2226 s3596) -(trans s2226 s3609) -(trans s2227 s3590) -(trans s2227 s3603) -(trans s2227 s3616) -(trans s2228 s3597) -(trans s2228 s3610) -(trans s2228 s3623) -(trans s2229 s3604) -(trans s2229 s3617) -(trans s2229 s3630) -(trans s2230 s3611) -(trans s2230 s3624) -(trans s2230 s3637) -(trans s2231 s3618) -(trans s2231 s3631) -(trans s2231 s3644) -(trans s2232 s3625) -(trans s2232 s3638) -(trans s2232 s3651) -(trans s2233 s3632) -(trans s2233 s3645) -(trans s2233 s3658) -(trans s2234 s3639) -(trans s2234 s3652) -(trans s2234 s3665) -(trans s2235 s3646) -(trans s2235 s3659) -(trans s2235 s3672) -(trans s2236 s3653) -(trans s2236 s3666) -(trans s2236 s3679) -(trans s2237 s3660) -(trans s2237 s3673) -(trans s2237 s3686) -(trans s2238 s3667) -(trans s2238 s3680) -(trans s2238 s3693) -(trans s2239 s3674) -(trans s2239 s3687) -(trans s2239 s3700) -(trans s2240 s3681) -(trans s2240 s3694) -(trans s2240 s3707) -(trans s2241 s3688) -(trans s2241 s3701) -(trans s2241 s3714) -(trans s2242 s3695) -(trans s2242 s3708) -(trans s2242 s3721) -(trans s2243 s3702) -(trans s2243 s3715) -(trans s2243 s3728) -(trans s2244 s3709) -(trans s2244 s3722) -(trans s2244 s3735) -(trans s2245 s3716) -(trans s2245 s3729) -(trans s2245 s3742) -(trans s2246 s3723) -(trans s2246 s3736) -(trans s2246 s3749) -(trans s2247 s3730) -(trans s2247 s3743) -(trans s2247 s3756) -(trans s2248 s3737) -(trans s2248 s3750) -(trans s2248 s3763) -(trans s2249 s3744) -(trans s2249 s3757) -(trans s2249 s3770) -(trans s2250 s3751) -(trans s2250 s3764) -(trans s2250 s3777) -(trans s2251 s3758) -(trans s2251 s3771) -(trans s2251 s3784) -(trans s2252 s3765) -(trans s2252 s3778) -(trans s2252 s3791) -(trans s2253 s3772) -(trans s2253 s3785) -(trans s2253 s3798) -(trans s2254 s3779) -(trans s2254 s3792) -(trans s2254 s3805) -(trans s2255 s3786) -(trans s2255 s3799) -(trans s2255 s3812) -(trans s2256 s3793) -(trans s2256 s3806) -(trans s2256 s3819) -(trans s2257 s3800) -(trans s2257 s3813) -(trans s2257 s3826) -(trans s2258 s3807) -(trans s2258 s3820) -(trans s2258 s3833) -(trans s2259 s3814) -(trans s2259 s3827) -(trans s2259 s3840) -(trans s2260 s3821) -(trans s2260 s3834) -(trans s2260 s3847) -(trans s2261 s3828) -(trans s2261 s3841) -(trans s2261 s3854) -(trans s2262 s3835) -(trans s2262 s3848) -(trans s2262 s3861) -(trans s2263 s3842) -(trans s2263 s3855) -(trans s2263 s3868) -(trans s2264 s3849) -(trans s2264 s3862) -(trans s2264 s3875) -(trans s2265 s3856) -(trans s2265 s3869) -(trans s2265 s3882) -(trans s2266 s3863) -(trans s2266 s3876) -(trans s2266 s3889) -(trans s2267 s3870) -(trans s2267 s3883) -(trans s2267 s3896) -(trans s2268 s3877) -(trans s2268 s3890) -(trans s2268 s3903) -(trans s2269 s3884) -(trans s2269 s3897) -(trans s2269 s3910) -(trans s2270 s3891) -(trans s2270 s3904) -(trans s2270 s3917) -(trans s2271 s3898) -(trans s2271 s3911) -(trans s2271 s3924) -(trans s2272 s3905) -(trans s2272 s3918) -(trans s2272 s3931) -(trans s2273 s3912) -(trans s2273 s3925) -(trans s2273 s3938) -(trans s2274 s3919) -(trans s2274 s3932) -(trans s2274 s3945) -(trans s2275 s3926) -(trans s2275 s3939) -(trans s2275 s3952) -(trans s2276 s3933) -(trans s2276 s3946) -(trans s2276 s3959) -(trans s2277 s3940) -(trans s2277 s3953) -(trans s2277 s3966) -(trans s2278 s3947) -(trans s2278 s3960) -(trans s2278 s3973) -(trans s2279 s3954) -(trans s2279 s3967) -(trans s2279 s3980) -(trans s2280 s3961) -(trans s2280 s3974) -(trans s2280 s3987) -(trans s2281 s3968) -(trans s2281 s3981) -(trans s2281 s3994) -(trans s2282 s3975) -(trans s2282 s3988) -(trans s2282 s4001) -(trans s2283 s3982) -(trans s2283 s3995) -(trans s2283 s4008) -(trans s2284 s3989) -(trans s2284 s4002) -(trans s2284 s4015) -(trans s2285 s3996) -(trans s2285 s4009) -(trans s2285 s4022) -(trans s2286 s4003) -(trans s2286 s4016) -(trans s2286 s4029) -(trans s2287 s4010) -(trans s2287 s4023) -(trans s2287 s4036) -(trans s2288 s4017) -(trans s2288 s4030) -(trans s2288 s4043) -(trans s2289 s4024) -(trans s2289 s4037) -(trans s2289 s4050) -(trans s2290 s4031) -(trans s2290 s4044) -(trans s2290 s4057) -(trans s2291 s4038) -(trans s2291 s4051) -(trans s2291 s4064) -(trans s2292 s4045) -(trans s2292 s4058) -(trans s2292 s4071) -(trans s2293 s4052) -(trans s2293 s4065) -(trans s2293 s4078) -(trans s2294 s4059) -(trans s2294 s4072) -(trans s2294 s4085) -(trans s2295 s4066) -(trans s2295 s4079) -(trans s2295 s4092) -(trans s2296 s4073) -(trans s2296 s4086) -(trans s2296 s4099) -(trans s2297 s4080) -(trans s2297 s4093) -(trans s2297 s4106) -(trans s2298 s4087) -(trans s2298 s4100) -(trans s2298 s4113) -(trans s2299 s4094) -(trans s2299 s4107) -(trans s2299 s4120) -(trans s2300 s4101) -(trans s2300 s4114) -(trans s2300 s4127) -(trans s2301 s4108) -(trans s2301 s4121) -(trans s2301 s4134) -(trans s2302 s4115) -(trans s2302 s4128) -(trans s2302 s4141) -(trans s2303 s4122) -(trans s2303 s4135) -(trans s2303 s4148) -(trans s2304 s4129) -(trans s2304 s4142) -(trans s2304 s4155) -(trans s2305 s4136) -(trans s2305 s4149) -(trans s2305 s4162) -(trans s2306 s4143) -(trans s2306 s4156) -(trans s2306 s4169) -(trans s2307 s4150) -(trans s2307 s4163) -(trans s2307 s4176) -(trans s2308 s4157) -(trans s2308 s4170) -(trans s2308 s4183) -(trans s2309 s4164) -(trans s2309 s4177) -(trans s2309 s4190) -(trans s2310 s4171) -(trans s2310 s4184) -(trans s2310 s4197) -(trans s2311 s4178) -(trans s2311 s4191) -(trans s2311 s4204) -(trans s2312 s4185) -(trans s2312 s4198) -(trans s2312 s4211) -(trans s2313 s4192) -(trans s2313 s4205) -(trans s2313 s4218) -(trans s2314 s4199) -(trans s2314 s4212) -(trans s2314 s4225) -(trans s2315 s4206) -(trans s2315 s4219) -(trans s2315 s4232) -(trans s2316 s4213) -(trans s2316 s4226) -(trans s2316 s4239) -(trans s2317 s4220) -(trans s2317 s4233) -(trans s2317 s4246) -(trans s2318 s4227) -(trans s2318 s4240) -(trans s2318 s4253) -(trans s2319 s4234) -(trans s2319 s4247) -(trans s2319 s4260) -(trans s2320 s4241) -(trans s2320 s4254) -(trans s2320 s4267) -(trans s2321 s4248) -(trans s2321 s4261) -(trans s2321 s4274) -(trans s2322 s4255) -(trans s2322 s4268) -(trans s2322 s4281) -(trans s2323 s4262) -(trans s2323 s4275) -(trans s2323 s4288) -(trans s2324 s4269) -(trans s2324 s4282) -(trans s2324 s4295) -(trans s2325 s4276) -(trans s2325 s4289) -(trans s2325 s4302) -(trans s2326 s4283) -(trans s2326 s4296) -(trans s2326 s4309) -(trans s2327 s4290) -(trans s2327 s4303) -(trans s2327 s4316) -(trans s2328 s4297) -(trans s2328 s4310) -(trans s2328 s4323) -(trans s2329 s4304) -(trans s2329 s4317) -(trans s2329 s4330) -(trans s2330 s4311) -(trans s2330 s4324) -(trans s2330 s4337) -(trans s2331 s4318) -(trans s2331 s4331) -(trans s2331 s4344) -(trans s2332 s4325) -(trans s2332 s4338) -(trans s2332 s4351) -(trans s2333 s4332) -(trans s2333 s4345) -(trans s2333 s4358) -(trans s2334 s4339) -(trans s2334 s4352) -(trans s2334 s4365) -(trans s2335 s4346) -(trans s2335 s4359) -(trans s2335 s4372) -(trans s2336 s4353) -(trans s2336 s4366) -(trans s2336 s4379) -(trans s2337 s4360) -(trans s2337 s4373) -(trans s2337 s4386) -(trans s2338 s4367) -(trans s2338 s4380) -(trans s2338 s4393) -(trans s2339 s4374) -(trans s2339 s4387) -(trans s2339 s4400) -(trans s2340 s4381) -(trans s2340 s4394) -(trans s2340 s4407) -(trans s2341 s4388) -(trans s2341 s4401) -(trans s2341 s4414) -(trans s2342 s4395) -(trans s2342 s4408) -(trans s2342 s4421) -(trans s2343 s4402) -(trans s2343 s4415) -(trans s2343 s4428) -(trans s2344 s4409) -(trans s2344 s4422) -(trans s2344 s4435) -(trans s2345 s4416) -(trans s2345 s4429) -(trans s2345 s4442) -(trans s2346 s4423) -(trans s2346 s4436) -(trans s2346 s4449) -(trans s2347 s4430) -(trans s2347 s4443) -(trans s2347 s4456) -(trans s2348 s4437) -(trans s2348 s4450) -(trans s2348 s4463) -(trans s2349 s4444) -(trans s2349 s4457) -(trans s2349 s4470) -(trans s2350 s4451) -(trans s2350 s4464) -(trans s2350 s4477) -(trans s2351 s4458) -(trans s2351 s4471) -(trans s2351 s4484) -(trans s2352 s4465) -(trans s2352 s4478) -(trans s2352 s4491) -(trans s2353 s4472) -(trans s2353 s4485) -(trans s2353 s4498) -(trans s2354 s4479) -(trans s2354 s4492) -(trans s2354 s4505) -(trans s2355 s4486) -(trans s2355 s4499) -(trans s2355 s4512) -(trans s2356 s4493) -(trans s2356 s4506) -(trans s2356 s4519) -(trans s2357 s4500) -(trans s2357 s4513) -(trans s2357 s4526) -(trans s2358 s4507) -(trans s2358 s4520) -(trans s2358 s4533) -(trans s2359 s4514) -(trans s2359 s4527) -(trans s2359 s4540) -(trans s2360 s4521) -(trans s2360 s4534) -(trans s2360 s4547) -(trans s2361 s4528) -(trans s2361 s4541) -(trans s2361 s4554) -(trans s2362 s4535) -(trans s2362 s4548) -(trans s2362 s4561) -(trans s2363 s4542) -(trans s2363 s4555) -(trans s2363 s4568) -(trans s2364 s4549) -(trans s2364 s4562) -(trans s2364 s4575) -(trans s2365 s4556) -(trans s2365 s4569) -(trans s2365 s4582) -(trans s2366 s4563) -(trans s2366 s4576) -(trans s2366 s4589) -(trans s2367 s4570) -(trans s2367 s4583) -(trans s2367 s4596) -(trans s2368 s4577) -(trans s2368 s4590) -(trans s2368 s4603) -(trans s2369 s4584) -(trans s2369 s4597) -(trans s2369 s4610) -(trans s2370 s4591) -(trans s2370 s4604) -(trans s2370 s4617) -(trans s2371 s4598) -(trans s2371 s4611) -(trans s2371 s4624) -(trans s2372 s4605) -(trans s2372 s4618) -(trans s2372 s4631) -(trans s2373 s4612) -(trans s2373 s4625) -(trans s2373 s4638) -(trans s2374 s4619) -(trans s2374 s4632) -(trans s2374 s4645) -(trans s2375 s4626) -(trans s2375 s4639) -(trans s2375 s4652) -(trans s2376 s4633) -(trans s2376 s4646) -(trans s2376 s4659) -(trans s2377 s4640) -(trans s2377 s4653) -(trans s2377 s4666) -(trans s2378 s4647) -(trans s2378 s4660) -(trans s2378 s4673) -(trans s2379 s4654) -(trans s2379 s4667) -(trans s2379 s4680) -(trans s2380 s4661) -(trans s2380 s4674) -(trans s2380 s4687) -(trans s2381 s4668) -(trans s2381 s4681) -(trans s2381 s4694) -(trans s2382 s4675) -(trans s2382 s4688) -(trans s2382 s4701) -(trans s2383 s4682) -(trans s2383 s4695) -(trans s2383 s4708) -(trans s2384 s4689) -(trans s2384 s4702) -(trans s2384 s4715) -(trans s2385 s4696) -(trans s2385 s4709) -(trans s2385 s4722) -(trans s2386 s4703) -(trans s2386 s4716) -(trans s2386 s4729) -(trans s2387 s4710) -(trans s2387 s4723) -(trans s2387 s4736) -(trans s2388 s4717) -(trans s2388 s4730) -(trans s2388 s4743) -(trans s2389 s4724) -(trans s2389 s4737) -(trans s2389 s4750) -(trans s2390 s4731) -(trans s2390 s4744) -(trans s2390 s4757) -(trans s2391 s4738) -(trans s2391 s4751) -(trans s2391 s4764) -(trans s2392 s4745) -(trans s2392 s4758) -(trans s2392 s4771) -(trans s2393 s4752) -(trans s2393 s4765) -(trans s2393 s4778) -(trans s2394 s4759) -(trans s2394 s4772) -(trans s2394 s4785) -(trans s2395 s4766) -(trans s2395 s4779) -(trans s2395 s4792) -(trans s2396 s4773) -(trans s2396 s4786) -(trans s2396 s4799) -(trans s2397 s4780) -(trans s2397 s4793) -(trans s2397 s4806) -(trans s2398 s4787) -(trans s2398 s4800) -(trans s2398 s4813) -(trans s2399 s4794) -(trans s2399 s4807) -(trans s2399 s4820) -(trans s2400 s4801) -(trans s2400 s4814) -(trans s2400 s4827) -(trans s2401 s4808) -(trans s2401 s4821) -(trans s2401 s4834) -(trans s2402 s4815) -(trans s2402 s4828) -(trans s2402 s4841) -(trans s2403 s4822) -(trans s2403 s4835) -(trans s2403 s4848) -(trans s2404 s4829) -(trans s2404 s4842) -(trans s2404 s4855) -(trans s2405 s4836) -(trans s2405 s4849) -(trans s2405 s4862) -(trans s2406 s4843) -(trans s2406 s4856) -(trans s2406 s4869) -(trans s2407 s4850) -(trans s2407 s4863) -(trans s2407 s4876) -(trans s2408 s4857) -(trans s2408 s4870) -(trans s2408 s4883) -(trans s2409 s4864) -(trans s2409 s4877) -(trans s2409 s4890) -(trans s2410 s4871) -(trans s2410 s4884) -(trans s2410 s4897) -(trans s2411 s4878) -(trans s2411 s4891) -(trans s2411 s4904) -(trans s2412 s4885) -(trans s2412 s4898) -(trans s2412 s4911) -(trans s2413 s4892) -(trans s2413 s4905) -(trans s2413 s4918) -(trans s2414 s4899) -(trans s2414 s4912) -(trans s2414 s4925) -(trans s2415 s4906) -(trans s2415 s4919) -(trans s2415 s4932) -(trans s2416 s4913) -(trans s2416 s4926) -(trans s2416 s4939) -(trans s2417 s4920) -(trans s2417 s4933) -(trans s2417 s4946) -(trans s2418 s4927) -(trans s2418 s4940) -(trans s2418 s4953) -(trans s2419 s4934) -(trans s2419 s4947) -(trans s2419 s4960) -(trans s2420 s4941) -(trans s2420 s4954) -(trans s2420 s4967) -(trans s2421 s4948) -(trans s2421 s4961) -(trans s2421 s4974) -(trans s2422 s4955) -(trans s2422 s4968) -(trans s2422 s4981) -(trans s2423 s4962) -(trans s2423 s4975) -(trans s2423 s4988) -(trans s2424 s4969) -(trans s2424 s4982) -(trans s2424 s4995) -(trans s2425 s4976) -(trans s2425 s4989) -(trans s2425 s5002) -(trans s2426 s4983) -(trans s2426 s4996) -(trans s2426 s5009) -(trans s2427 s4990) -(trans s2427 s5003) -(trans s2427 s5016) -(trans s2428 s4997) -(trans s2428 s5010) -(trans s2428 s5023) -(trans s2429 s5004) -(trans s2429 s5017) -(trans s2429 s5030) -(trans s2430 s5011) -(trans s2430 s5024) -(trans s2430 s5037) -(trans s2431 s5018) -(trans s2431 s5031) -(trans s2431 s5044) -(trans s2432 s5025) -(trans s2432 s5038) -(trans s2432 s5051) -(trans s2433 s5032) -(trans s2433 s5045) -(trans s2433 s5058) -(trans s2434 s5039) -(trans s2434 s5052) -(trans s2434 s5065) -(trans s2435 s5046) -(trans s2435 s5059) -(trans s2435 s5072) -(trans s2436 s5053) -(trans s2436 s5066) -(trans s2436 s5079) -(trans s2437 s5060) -(trans s2437 s5073) -(trans s2437 s5086) -(trans s2438 s5067) -(trans s2438 s5080) -(trans s2438 s5093) -(trans s2439 s5074) -(trans s2439 s5087) -(trans s2439 s5100) -(trans s2440 s5081) -(trans s2440 s5094) -(trans s2440 s5107) -(trans s2441 s5088) -(trans s2441 s5101) -(trans s2441 s5114) -(trans s2442 s5095) -(trans s2442 s5108) -(trans s2442 s5121) -(trans s2443 s5102) -(trans s2443 s5115) -(trans s2443 s5128) -(trans s2444 s5109) -(trans s2444 s5122) -(trans s2444 s5135) -(trans s2445 s5116) -(trans s2445 s5129) -(trans s2445 s5142) -(trans s2446 s5123) -(trans s2446 s5136) -(trans s2446 s5149) -(trans s2447 s5130) -(trans s2447 s5143) -(trans s2447 s5156) -(trans s2448 s5137) -(trans s2448 s5150) -(trans s2448 s5163) -(trans s2449 s5144) -(trans s2449 s5157) -(trans s2449 s5170) -(trans s2450 s5151) -(trans s2450 s5164) -(trans s2450 s5177) -(trans s2451 s5158) -(trans s2451 s5171) -(trans s2451 s5184) -(trans s2452 s5165) -(trans s2452 s5178) -(trans s2452 s5191) -(trans s2453 s5172) -(trans s2453 s5185) -(trans s2453 s5198) -(trans s2454 s5179) -(trans s2454 s5192) -(trans s2454 s5205) -(trans s2455 s5186) -(trans s2455 s5199) -(trans s2455 s5212) -(trans s2456 s5193) -(trans s2456 s5206) -(trans s2456 s5219) -(trans s2457 s5200) -(trans s2457 s5213) -(trans s2457 s5226) -(trans s2458 s5207) -(trans s2458 s5220) -(trans s2458 s5233) -(trans s2459 s5214) -(trans s2459 s5227) -(trans s2459 s5240) -(trans s2460 s5221) -(trans s2460 s5234) -(trans s2460 s5247) -(trans s2461 s5228) -(trans s2461 s5241) -(trans s2461 s5254) -(trans s2462 s5235) -(trans s2462 s5248) -(trans s2462 s5261) -(trans s2463 s5242) -(trans s2463 s5255) -(trans s2463 s5268) -(trans s2464 s5249) -(trans s2464 s5262) -(trans s2464 s5275) -(trans s2465 s5256) -(trans s2465 s5269) -(trans s2465 s5282) -(trans s2466 s5263) -(trans s2466 s5276) -(trans s2466 s5289) -(trans s2467 s5270) -(trans s2467 s5283) -(trans s2467 s5296) -(trans s2468 s5277) -(trans s2468 s5290) -(trans s2468 s5303) -(trans s2469 s5284) -(trans s2469 s5297) -(trans s2469 s5310) -(trans s2470 s5291) -(trans s2470 s5304) -(trans s2470 s5317) -(trans s2471 s5298) -(trans s2471 s5311) -(trans s2471 s5324) -(trans s2472 s5305) -(trans s2472 s5318) -(trans s2472 s5331) -(trans s2473 s5312) -(trans s2473 s5325) -(trans s2473 s5338) -(trans s2474 s5319) -(trans s2474 s5332) -(trans s2474 s5345) -(trans s2475 s5326) -(trans s2475 s5339) -(trans s2475 s5352) -(trans s2476 s5333) -(trans s2476 s5346) -(trans s2476 s5359) -(trans s2477 s5340) -(trans s2477 s5353) -(trans s2477 s5366) -(trans s2478 s5347) -(trans s2478 s5360) -(trans s2478 s5373) -(trans s2479 s5354) -(trans s2479 s5367) -(trans s2479 s5380) -(trans s2480 s5361) -(trans s2480 s5374) -(trans s2480 s5387) -(trans s2481 s5368) -(trans s2481 s5381) -(trans s2481 s5394) -(trans s2482 s5375) -(trans s2482 s5388) -(trans s2482 s5401) -(trans s2483 s5382) -(trans s2483 s5395) -(trans s2483 s5408) -(trans s2484 s5389) -(trans s2484 s5402) -(trans s2484 s5415) -(trans s2485 s5396) -(trans s2485 s5409) -(trans s2485 s5422) -(trans s2486 s5403) -(trans s2486 s5416) -(trans s2486 s5429) -(trans s2487 s5410) -(trans s2487 s5423) -(trans s2487 s5436) -(trans s2488 s5417) -(trans s2488 s5430) -(trans s2488 s5443) -(trans s2489 s5424) -(trans s2489 s5437) -(trans s2489 s5450) -(trans s2490 s5431) -(trans s2490 s5444) -(trans s2490 s5457) -(trans s2491 s5438) -(trans s2491 s5451) -(trans s2491 s5464) -(trans s2492 s5445) -(trans s2492 s5458) -(trans s2492 s5471) -(trans s2493 s5452) -(trans s2493 s5465) -(trans s2493 s5478) -(trans s2494 s5459) -(trans s2494 s5472) -(trans s2494 s5485) -(trans s2495 s5466) -(trans s2495 s5479) -(trans s2495 s5492) -(trans s2496 s5473) -(trans s2496 s5486) -(trans s2496 s5499) -(trans s2497 s5480) -(trans s2497 s5493) -(trans s2497 s5506) -(trans s2498 s5487) -(trans s2498 s5500) -(trans s2498 s5513) -(trans s2499 s5494) -(trans s2499 s5507) -(trans s2499 s5520) -(trans s2500 s5501) -(trans s2500 s5514) -(trans s2500 s5527) -(trans s2501 s5508) -(trans s2501 s5521) -(trans s2501 s5534) -(trans s2502 s5515) -(trans s2502 s5528) -(trans s2502 s5541) -(trans s2503 s5522) -(trans s2503 s5535) -(trans s2503 s5548) -(trans s2504 s5529) -(trans s2504 s5542) -(trans s2504 s5555) -(trans s2505 s5536) -(trans s2505 s5549) -(trans s2505 s5562) -(trans s2506 s5543) -(trans s2506 s5556) -(trans s2506 s5569) -(trans s2507 s5550) -(trans s2507 s5563) -(trans s2507 s5576) -(trans s2508 s5557) -(trans s2508 s5570) -(trans s2508 s5583) -(trans s2509 s5564) -(trans s2509 s5577) -(trans s2509 s5590) -(trans s2510 s5571) -(trans s2510 s5584) -(trans s2510 s5597) -(trans s2511 s5578) -(trans s2511 s5591) -(trans s2511 s5604) -(trans s2512 s5585) -(trans s2512 s5598) -(trans s2512 s5611) -(trans s2513 s5592) -(trans s2513 s5605) -(trans s2513 s5618) -(trans s2514 s5599) -(trans s2514 s5612) -(trans s2514 s5625) -(trans s2515 s5606) -(trans s2515 s5619) -(trans s2515 s5632) -(trans s2516 s5613) -(trans s2516 s5626) -(trans s2516 s5639) -(trans s2517 s5620) -(trans s2517 s5633) -(trans s2517 s5646) -(trans s2518 s5627) -(trans s2518 s5640) -(trans s2518 s5653) -(trans s2519 s5634) -(trans s2519 s5647) -(trans s2519 s5660) -(trans s2520 s5641) -(trans s2520 s5654) -(trans s2520 s5667) -(trans s2521 s5648) -(trans s2521 s5661) -(trans s2521 s5674) -(trans s2522 s5655) -(trans s2522 s5668) -(trans s2522 s5681) -(trans s2523 s5662) -(trans s2523 s5675) -(trans s2523 s5688) -(trans s2524 s5669) -(trans s2524 s5682) -(trans s2524 s5695) -(trans s2525 s5676) -(trans s2525 s5689) -(trans s2525 s5702) -(trans s2526 s5683) -(trans s2526 s5696) -(trans s2526 s5709) -(trans s2527 s5690) -(trans s2527 s5703) -(trans s2527 s5716) -(trans s2528 s5697) -(trans s2528 s5710) -(trans s2528 s5723) -(trans s2529 s5704) -(trans s2529 s5717) -(trans s2529 s5730) -(trans s2530 s5711) -(trans s2530 s5724) -(trans s2530 s5737) -(trans s2531 s5718) -(trans s2531 s5731) -(trans s2531 s5744) -(trans s2532 s5725) -(trans s2532 s5738) -(trans s2532 s5751) -(trans s2533 s5732) -(trans s2533 s5745) -(trans s2533 s5758) -(trans s2534 s5739) -(trans s2534 s5752) -(trans s2534 s5765) -(trans s2535 s5746) -(trans s2535 s5759) -(trans s2535 s5772) -(trans s2536 s5753) -(trans s2536 s5766) -(trans s2536 s5779) -(trans s2537 s5760) -(trans s2537 s5773) -(trans s2537 s5786) -(trans s2538 s5767) -(trans s2538 s5780) -(trans s2538 s5793) -(trans s2539 s5774) -(trans s2539 s5787) -(trans s2539 s5800) -(trans s2540 s5781) -(trans s2540 s5794) -(trans s2540 s5807) -(trans s2541 s5788) -(trans s2541 s5801) -(trans s2541 s5814) -(trans s2542 s5795) -(trans s2542 s5808) -(trans s2542 s5821) -(trans s2543 s5802) -(trans s2543 s5815) -(trans s2543 s5828) -(trans s2544 s5809) -(trans s2544 s5822) -(trans s2544 s5835) -(trans s2545 s5816) -(trans s2545 s5829) -(trans s2545 s5842) -(trans s2546 s5823) -(trans s2546 s5836) -(trans s2546 s5849) -(trans s2547 s5830) -(trans s2547 s5843) -(trans s2547 s5856) -(trans s2548 s5837) -(trans s2548 s5850) -(trans s2548 s5863) -(trans s2549 s5844) -(trans s2549 s5857) -(trans s2549 s5870) -(trans s2550 s5851) -(trans s2550 s5864) -(trans s2550 s5877) -(trans s2551 s5858) -(trans s2551 s5871) -(trans s2551 s5884) -(trans s2552 s5865) -(trans s2552 s5878) -(trans s2552 s5891) -(trans s2553 s5872) -(trans s2553 s5885) -(trans s2553 s5898) -(trans s2554 s5879) -(trans s2554 s5892) -(trans s2554 s5905) -(trans s2555 s5886) -(trans s2555 s5899) -(trans s2555 s5912) -(trans s2556 s5893) -(trans s2556 s5906) -(trans s2556 s5919) -(trans s2557 s5900) -(trans s2557 s5913) -(trans s2557 s5926) -(trans s2558 s5907) -(trans s2558 s5920) -(trans s2558 s5933) -(trans s2559 s5914) -(trans s2559 s5927) -(trans s2559 s5940) -(trans s2560 s5921) -(trans s2560 s5934) -(trans s2560 s5947) -(trans s2561 s5928) -(trans s2561 s5941) -(trans s2561 s5954) -(trans s2562 s5935) -(trans s2562 s5948) -(trans s2562 s5961) -(trans s2563 s5942) -(trans s2563 s5955) -(trans s2563 s5968) -(trans s2564 s5949) -(trans s2564 s5962) -(trans s2564 s5975) -(trans s2565 s5956) -(trans s2565 s5969) -(trans s2565 s5982) -(trans s2566 s5963) -(trans s2566 s5976) -(trans s2566 s5989) -(trans s2567 s5970) -(trans s2567 s5983) -(trans s2567 s5996) -(trans s2568 s5977) -(trans s2568 s5990) -(trans s2568 s3) -(trans s2569 s5984) -(trans s2569 s5997) -(trans s2569 s10) -(trans s2570 s5991) -(trans s2570 s4) -(trans s2570 s17) -(trans s2571 s5998) -(trans s2571 s11) -(trans s2571 s24) -(trans s2572 s5) -(trans s2572 s18) -(trans s2572 s31) -(trans s2573 s12) -(trans s2573 s25) -(trans s2573 s38) -(trans s2574 s19) -(trans s2574 s32) -(trans s2574 s45) -(trans s2575 s26) -(trans s2575 s39) -(trans s2575 s52) -(trans s2576 s33) -(trans s2576 s46) -(trans s2576 s59) -(trans s2577 s40) -(trans s2577 s53) -(trans s2577 s66) -(trans s2578 s47) -(trans s2578 s60) -(trans s2578 s73) -(trans s2579 s54) -(trans s2579 s67) -(trans s2579 s80) -(trans s2580 s61) -(trans s2580 s74) -(trans s2580 s87) -(trans s2581 s68) -(trans s2581 s81) -(trans s2581 s94) -(trans s2582 s75) -(trans s2582 s88) -(trans s2582 s101) -(trans s2583 s82) -(trans s2583 s95) -(trans s2583 s108) -(trans s2584 s89) -(trans s2584 s102) -(trans s2584 s115) -(trans s2585 s96) -(trans s2585 s109) -(trans s2585 s122) -(trans s2586 s103) -(trans s2586 s116) -(trans s2586 s129) -(trans s2587 s110) -(trans s2587 s123) -(trans s2587 s136) -(trans s2588 s117) -(trans s2588 s130) -(trans s2588 s143) -(trans s2589 s124) -(trans s2589 s137) -(trans s2589 s150) -(trans s2590 s131) -(trans s2590 s144) -(trans s2590 s157) -(trans s2591 s138) -(trans s2591 s151) -(trans s2591 s164) -(trans s2592 s145) -(trans s2592 s158) -(trans s2592 s171) -(trans s2593 s152) -(trans s2593 s165) -(trans s2593 s178) -(trans s2594 s159) -(trans s2594 s172) -(trans s2594 s185) -(trans s2595 s166) -(trans s2595 s179) -(trans s2595 s192) -(trans s2596 s173) -(trans s2596 s186) -(trans s2596 s199) -(trans s2597 s180) -(trans s2597 s193) -(trans s2597 s206) -(trans s2598 s187) -(trans s2598 s200) -(trans s2598 s213) -(trans s2599 s194) -(trans s2599 s207) -(trans s2599 s220) -(trans s2600 s201) -(trans s2600 s214) -(trans s2600 s227) -(trans s2601 s208) -(trans s2601 s221) -(trans s2601 s234) -(trans s2602 s215) -(trans s2602 s228) -(trans s2602 s241) -(trans s2603 s222) -(trans s2603 s235) -(trans s2603 s248) -(trans s2604 s229) -(trans s2604 s242) -(trans s2604 s255) -(trans s2605 s236) -(trans s2605 s249) -(trans s2605 s262) -(trans s2606 s243) -(trans s2606 s256) -(trans s2606 s269) -(trans s2607 s250) -(trans s2607 s263) -(trans s2607 s276) -(trans s2608 s257) -(trans s2608 s270) -(trans s2608 s283) -(trans s2609 s264) -(trans s2609 s277) -(trans s2609 s290) -(trans s2610 s271) -(trans s2610 s284) -(trans s2610 s297) -(trans s2611 s278) -(trans s2611 s291) -(trans s2611 s304) -(trans s2612 s285) -(trans s2612 s298) -(trans s2612 s311) -(trans s2613 s292) -(trans s2613 s305) -(trans s2613 s318) -(trans s2614 s299) -(trans s2614 s312) -(trans s2614 s325) -(trans s2615 s306) -(trans s2615 s319) -(trans s2615 s332) -(trans s2616 s313) -(trans s2616 s326) -(trans s2616 s339) -(trans s2617 s320) -(trans s2617 s333) -(trans s2617 s346) -(trans s2618 s327) -(trans s2618 s340) -(trans s2618 s353) -(trans s2619 s334) -(trans s2619 s347) -(trans s2619 s360) -(trans s2620 s341) -(trans s2620 s354) -(trans s2620 s367) -(trans s2621 s348) -(trans s2621 s361) -(trans s2621 s374) -(trans s2622 s355) -(trans s2622 s368) -(trans s2622 s381) -(trans s2623 s362) -(trans s2623 s375) -(trans s2623 s388) -(trans s2624 s369) -(trans s2624 s382) -(trans s2624 s395) -(trans s2625 s376) -(trans s2625 s389) -(trans s2625 s402) -(trans s2626 s383) -(trans s2626 s396) -(trans s2626 s409) -(trans s2627 s390) -(trans s2627 s403) -(trans s2627 s416) -(trans s2628 s397) -(trans s2628 s410) -(trans s2628 s423) -(trans s2629 s404) -(trans s2629 s417) -(trans s2629 s430) -(trans s2630 s411) -(trans s2630 s424) -(trans s2630 s437) -(trans s2631 s418) -(trans s2631 s431) -(trans s2631 s444) -(trans s2632 s425) -(trans s2632 s438) -(trans s2632 s451) -(trans s2633 s432) -(trans s2633 s445) -(trans s2633 s458) -(trans s2634 s439) -(trans s2634 s452) -(trans s2634 s465) -(trans s2635 s446) -(trans s2635 s459) -(trans s2635 s472) -(trans s2636 s453) -(trans s2636 s466) -(trans s2636 s479) -(trans s2637 s460) -(trans s2637 s473) -(trans s2637 s486) -(trans s2638 s467) -(trans s2638 s480) -(trans s2638 s493) -(trans s2639 s474) -(trans s2639 s487) -(trans s2639 s500) -(trans s2640 s481) -(trans s2640 s494) -(trans s2640 s507) -(trans s2641 s488) -(trans s2641 s501) -(trans s2641 s514) -(trans s2642 s495) -(trans s2642 s508) -(trans s2642 s521) -(trans s2643 s502) -(trans s2643 s515) -(trans s2643 s528) -(trans s2644 s509) -(trans s2644 s522) -(trans s2644 s535) -(trans s2645 s516) -(trans s2645 s529) -(trans s2645 s542) -(trans s2646 s523) -(trans s2646 s536) -(trans s2646 s549) -(trans s2647 s530) -(trans s2647 s543) -(trans s2647 s556) -(trans s2648 s537) -(trans s2648 s550) -(trans s2648 s563) -(trans s2649 s544) -(trans s2649 s557) -(trans s2649 s570) -(trans s2650 s551) -(trans s2650 s564) -(trans s2650 s577) -(trans s2651 s558) -(trans s2651 s571) -(trans s2651 s584) -(trans s2652 s565) -(trans s2652 s578) -(trans s2652 s591) -(trans s2653 s572) -(trans s2653 s585) -(trans s2653 s598) -(trans s2654 s579) -(trans s2654 s592) -(trans s2654 s605) -(trans s2655 s586) -(trans s2655 s599) -(trans s2655 s612) -(trans s2656 s593) -(trans s2656 s606) -(trans s2656 s619) -(trans s2657 s600) -(trans s2657 s613) -(trans s2657 s626) -(trans s2658 s607) -(trans s2658 s620) -(trans s2658 s633) -(trans s2659 s614) -(trans s2659 s627) -(trans s2659 s640) -(trans s2660 s621) -(trans s2660 s634) -(trans s2660 s647) -(trans s2661 s628) -(trans s2661 s641) -(trans s2661 s654) -(trans s2662 s635) -(trans s2662 s648) -(trans s2662 s661) -(trans s2663 s642) -(trans s2663 s655) -(trans s2663 s668) -(trans s2664 s649) -(trans s2664 s662) -(trans s2664 s675) -(trans s2665 s656) -(trans s2665 s669) -(trans s2665 s682) -(trans s2666 s663) -(trans s2666 s676) -(trans s2666 s689) -(trans s2667 s670) -(trans s2667 s683) -(trans s2667 s696) -(trans s2668 s677) -(trans s2668 s690) -(trans s2668 s703) -(trans s2669 s684) -(trans s2669 s697) -(trans s2669 s710) -(trans s2670 s691) -(trans s2670 s704) -(trans s2670 s717) -(trans s2671 s698) -(trans s2671 s711) -(trans s2671 s724) -(trans s2672 s705) -(trans s2672 s718) -(trans s2672 s731) -(trans s2673 s712) -(trans s2673 s725) -(trans s2673 s738) -(trans s2674 s719) -(trans s2674 s732) -(trans s2674 s745) -(trans s2675 s726) -(trans s2675 s739) -(trans s2675 s752) -(trans s2676 s733) -(trans s2676 s746) -(trans s2676 s759) -(trans s2677 s740) -(trans s2677 s753) -(trans s2677 s766) -(trans s2678 s747) -(trans s2678 s760) -(trans s2678 s773) -(trans s2679 s754) -(trans s2679 s767) -(trans s2679 s780) -(trans s2680 s761) -(trans s2680 s774) -(trans s2680 s787) -(trans s2681 s768) -(trans s2681 s781) -(trans s2681 s794) -(trans s2682 s775) -(trans s2682 s788) -(trans s2682 s801) -(trans s2683 s782) -(trans s2683 s795) -(trans s2683 s808) -(trans s2684 s789) -(trans s2684 s802) -(trans s2684 s815) -(trans s2685 s796) -(trans s2685 s809) -(trans s2685 s822) -(trans s2686 s803) -(trans s2686 s816) -(trans s2686 s829) -(trans s2687 s810) -(trans s2687 s823) -(trans s2687 s836) -(trans s2688 s817) -(trans s2688 s830) -(trans s2688 s843) -(trans s2689 s824) -(trans s2689 s837) -(trans s2689 s850) -(trans s2690 s831) -(trans s2690 s844) -(trans s2690 s857) -(trans s2691 s838) -(trans s2691 s851) -(trans s2691 s864) -(trans s2692 s845) -(trans s2692 s858) -(trans s2692 s871) -(trans s2693 s852) -(trans s2693 s865) -(trans s2693 s878) -(trans s2694 s859) -(trans s2694 s872) -(trans s2694 s885) -(trans s2695 s866) -(trans s2695 s879) -(trans s2695 s892) -(trans s2696 s873) -(trans s2696 s886) -(trans s2696 s899) -(trans s2697 s880) -(trans s2697 s893) -(trans s2697 s906) -(trans s2698 s887) -(trans s2698 s900) -(trans s2698 s913) -(trans s2699 s894) -(trans s2699 s907) -(trans s2699 s920) -(trans s2700 s901) -(trans s2700 s914) -(trans s2700 s927) -(trans s2701 s908) -(trans s2701 s921) -(trans s2701 s934) -(trans s2702 s915) -(trans s2702 s928) -(trans s2702 s941) -(trans s2703 s922) -(trans s2703 s935) -(trans s2703 s948) -(trans s2704 s929) -(trans s2704 s942) -(trans s2704 s955) -(trans s2705 s936) -(trans s2705 s949) -(trans s2705 s962) -(trans s2706 s943) -(trans s2706 s956) -(trans s2706 s969) -(trans s2707 s950) -(trans s2707 s963) -(trans s2707 s976) -(trans s2708 s957) -(trans s2708 s970) -(trans s2708 s983) -(trans s2709 s964) -(trans s2709 s977) -(trans s2709 s990) -(trans s2710 s971) -(trans s2710 s984) -(trans s2710 s997) -(trans s2711 s978) -(trans s2711 s991) -(trans s2711 s1004) -(trans s2712 s985) -(trans s2712 s998) -(trans s2712 s1011) -(trans s2713 s992) -(trans s2713 s1005) -(trans s2713 s1018) -(trans s2714 s999) -(trans s2714 s1012) -(trans s2714 s1025) -(trans s2715 s1006) -(trans s2715 s1019) -(trans s2715 s1032) -(trans s2716 s1013) -(trans s2716 s1026) -(trans s2716 s1039) -(trans s2717 s1020) -(trans s2717 s1033) -(trans s2717 s1046) -(trans s2718 s1027) -(trans s2718 s1040) -(trans s2718 s1053) -(trans s2719 s1034) -(trans s2719 s1047) -(trans s2719 s1060) -(trans s2720 s1041) -(trans s2720 s1054) -(trans s2720 s1067) -(trans s2721 s1048) -(trans s2721 s1061) -(trans s2721 s1074) -(trans s2722 s1055) -(trans s2722 s1068) -(trans s2722 s1081) -(trans s2723 s1062) -(trans s2723 s1075) -(trans s2723 s1088) -(trans s2724 s1069) -(trans s2724 s1082) -(trans s2724 s1095) -(trans s2725 s1076) -(trans s2725 s1089) -(trans s2725 s1102) -(trans s2726 s1083) -(trans s2726 s1096) -(trans s2726 s1109) -(trans s2727 s1090) -(trans s2727 s1103) -(trans s2727 s1116) -(trans s2728 s1097) -(trans s2728 s1110) -(trans s2728 s1123) -(trans s2729 s1104) -(trans s2729 s1117) -(trans s2729 s1130) -(trans s2730 s1111) -(trans s2730 s1124) -(trans s2730 s1137) -(trans s2731 s1118) -(trans s2731 s1131) -(trans s2731 s1144) -(trans s2732 s1125) -(trans s2732 s1138) -(trans s2732 s1151) -(trans s2733 s1132) -(trans s2733 s1145) -(trans s2733 s1158) -(trans s2734 s1139) -(trans s2734 s1152) -(trans s2734 s1165) -(trans s2735 s1146) -(trans s2735 s1159) -(trans s2735 s1172) -(trans s2736 s1153) -(trans s2736 s1166) -(trans s2736 s1179) -(trans s2737 s1160) -(trans s2737 s1173) -(trans s2737 s1186) -(trans s2738 s1167) -(trans s2738 s1180) -(trans s2738 s1193) -(trans s2739 s1174) -(trans s2739 s1187) -(trans s2739 s1200) -(trans s2740 s1181) -(trans s2740 s1194) -(trans s2740 s1207) -(trans s2741 s1188) -(trans s2741 s1201) -(trans s2741 s1214) -(trans s2742 s1195) -(trans s2742 s1208) -(trans s2742 s1221) -(trans s2743 s1202) -(trans s2743 s1215) -(trans s2743 s1228) -(trans s2744 s1209) -(trans s2744 s1222) -(trans s2744 s1235) -(trans s2745 s1216) -(trans s2745 s1229) -(trans s2745 s1242) -(trans s2746 s1223) -(trans s2746 s1236) -(trans s2746 s1249) -(trans s2747 s1230) -(trans s2747 s1243) -(trans s2747 s1256) -(trans s2748 s1237) -(trans s2748 s1250) -(trans s2748 s1263) -(trans s2749 s1244) -(trans s2749 s1257) -(trans s2749 s1270) -(trans s2750 s1251) -(trans s2750 s1264) -(trans s2750 s1277) -(trans s2751 s1258) -(trans s2751 s1271) -(trans s2751 s1284) -(trans s2752 s1265) -(trans s2752 s1278) -(trans s2752 s1291) -(trans s2753 s1272) -(trans s2753 s1285) -(trans s2753 s1298) -(trans s2754 s1279) -(trans s2754 s1292) -(trans s2754 s1305) -(trans s2755 s1286) -(trans s2755 s1299) -(trans s2755 s1312) -(trans s2756 s1293) -(trans s2756 s1306) -(trans s2756 s1319) -(trans s2757 s1300) -(trans s2757 s1313) -(trans s2757 s1326) -(trans s2758 s1307) -(trans s2758 s1320) -(trans s2758 s1333) -(trans s2759 s1314) -(trans s2759 s1327) -(trans s2759 s1340) -(trans s2760 s1321) -(trans s2760 s1334) -(trans s2760 s1347) -(trans s2761 s1328) -(trans s2761 s1341) -(trans s2761 s1354) -(trans s2762 s1335) -(trans s2762 s1348) -(trans s2762 s1361) -(trans s2763 s1342) -(trans s2763 s1355) -(trans s2763 s1368) -(trans s2764 s1349) -(trans s2764 s1362) -(trans s2764 s1375) -(trans s2765 s1356) -(trans s2765 s1369) -(trans s2765 s1382) -(trans s2766 s1363) -(trans s2766 s1376) -(trans s2766 s1389) -(trans s2767 s1370) -(trans s2767 s1383) -(trans s2767 s1396) -(trans s2768 s1377) -(trans s2768 s1390) -(trans s2768 s1403) -(trans s2769 s1384) -(trans s2769 s1397) -(trans s2769 s1410) -(trans s2770 s1391) -(trans s2770 s1404) -(trans s2770 s1417) -(trans s2771 s1398) -(trans s2771 s1411) -(trans s2771 s1424) -(trans s2772 s1405) -(trans s2772 s1418) -(trans s2772 s1431) -(trans s2773 s1412) -(trans s2773 s1425) -(trans s2773 s1438) -(trans s2774 s1419) -(trans s2774 s1432) -(trans s2774 s1445) -(trans s2775 s1426) -(trans s2775 s1439) -(trans s2775 s1452) -(trans s2776 s1433) -(trans s2776 s1446) -(trans s2776 s1459) -(trans s2777 s1440) -(trans s2777 s1453) -(trans s2777 s1466) -(trans s2778 s1447) -(trans s2778 s1460) -(trans s2778 s1473) -(trans s2779 s1454) -(trans s2779 s1467) -(trans s2779 s1480) -(trans s2780 s1461) -(trans s2780 s1474) -(trans s2780 s1487) -(trans s2781 s1468) -(trans s2781 s1481) -(trans s2781 s1494) -(trans s2782 s1475) -(trans s2782 s1488) -(trans s2782 s1501) -(trans s2783 s1482) -(trans s2783 s1495) -(trans s2783 s1508) -(trans s2784 s1489) -(trans s2784 s1502) -(trans s2784 s1515) -(trans s2785 s1496) -(trans s2785 s1509) -(trans s2785 s1522) -(trans s2786 s1503) -(trans s2786 s1516) -(trans s2786 s1529) -(trans s2787 s1510) -(trans s2787 s1523) -(trans s2787 s1536) -(trans s2788 s1517) -(trans s2788 s1530) -(trans s2788 s1543) -(trans s2789 s1524) -(trans s2789 s1537) -(trans s2789 s1550) -(trans s2790 s1531) -(trans s2790 s1544) -(trans s2790 s1557) -(trans s2791 s1538) -(trans s2791 s1551) -(trans s2791 s1564) -(trans s2792 s1545) -(trans s2792 s1558) -(trans s2792 s1571) -(trans s2793 s1552) -(trans s2793 s1565) -(trans s2793 s1578) -(trans s2794 s1559) -(trans s2794 s1572) -(trans s2794 s1585) -(trans s2795 s1566) -(trans s2795 s1579) -(trans s2795 s1592) -(trans s2796 s1573) -(trans s2796 s1586) -(trans s2796 s1599) -(trans s2797 s1580) -(trans s2797 s1593) -(trans s2797 s1606) -(trans s2798 s1587) -(trans s2798 s1600) -(trans s2798 s1613) -(trans s2799 s1594) -(trans s2799 s1607) -(trans s2799 s1620) -(trans s2800 s1601) -(trans s2800 s1614) -(trans s2800 s1627) -(trans s2801 s1608) -(trans s2801 s1621) -(trans s2801 s1634) -(trans s2802 s1615) -(trans s2802 s1628) -(trans s2802 s1641) -(trans s2803 s1622) -(trans s2803 s1635) -(trans s2803 s1648) -(trans s2804 s1629) -(trans s2804 s1642) -(trans s2804 s1655) -(trans s2805 s1636) -(trans s2805 s1649) -(trans s2805 s1662) -(trans s2806 s1643) -(trans s2806 s1656) -(trans s2806 s1669) -(trans s2807 s1650) -(trans s2807 s1663) -(trans s2807 s1676) -(trans s2808 s1657) -(trans s2808 s1670) -(trans s2808 s1683) -(trans s2809 s1664) -(trans s2809 s1677) -(trans s2809 s1690) -(trans s2810 s1671) -(trans s2810 s1684) -(trans s2810 s1697) -(trans s2811 s1678) -(trans s2811 s1691) -(trans s2811 s1704) -(trans s2812 s1685) -(trans s2812 s1698) -(trans s2812 s1711) -(trans s2813 s1692) -(trans s2813 s1705) -(trans s2813 s1718) -(trans s2814 s1699) -(trans s2814 s1712) -(trans s2814 s1725) -(trans s2815 s1706) -(trans s2815 s1719) -(trans s2815 s1732) -(trans s2816 s1713) -(trans s2816 s1726) -(trans s2816 s1739) -(trans s2817 s1720) -(trans s2817 s1733) -(trans s2817 s1746) -(trans s2818 s1727) -(trans s2818 s1740) -(trans s2818 s1753) -(trans s2819 s1734) -(trans s2819 s1747) -(trans s2819 s1760) -(trans s2820 s1741) -(trans s2820 s1754) -(trans s2820 s1767) -(trans s2821 s1748) -(trans s2821 s1761) -(trans s2821 s1774) -(trans s2822 s1755) -(trans s2822 s1768) -(trans s2822 s1781) -(trans s2823 s1762) -(trans s2823 s1775) -(trans s2823 s1788) -(trans s2824 s1769) -(trans s2824 s1782) -(trans s2824 s1795) -(trans s2825 s1776) -(trans s2825 s1789) -(trans s2825 s1802) -(trans s2826 s1783) -(trans s2826 s1796) -(trans s2826 s1809) -(trans s2827 s1790) -(trans s2827 s1803) -(trans s2827 s1816) -(trans s2828 s1797) -(trans s2828 s1810) -(trans s2828 s1823) -(trans s2829 s1804) -(trans s2829 s1817) -(trans s2829 s1830) -(trans s2830 s1811) -(trans s2830 s1824) -(trans s2830 s1837) -(trans s2831 s1818) -(trans s2831 s1831) -(trans s2831 s1844) -(trans s2832 s1825) -(trans s2832 s1838) -(trans s2832 s1851) -(trans s2833 s1832) -(trans s2833 s1845) -(trans s2833 s1858) -(trans s2834 s1839) -(trans s2834 s1852) -(trans s2834 s1865) -(trans s2835 s1846) -(trans s2835 s1859) -(trans s2835 s1872) -(trans s2836 s1853) -(trans s2836 s1866) -(trans s2836 s1879) -(trans s2837 s1860) -(trans s2837 s1873) -(trans s2837 s1886) -(trans s2838 s1867) -(trans s2838 s1880) -(trans s2838 s1893) -(trans s2839 s1874) -(trans s2839 s1887) -(trans s2839 s1900) -(trans s2840 s1881) -(trans s2840 s1894) -(trans s2840 s1907) -(trans s2841 s1888) -(trans s2841 s1901) -(trans s2841 s1914) -(trans s2842 s1895) -(trans s2842 s1908) -(trans s2842 s1921) -(trans s2843 s1902) -(trans s2843 s1915) -(trans s2843 s1928) -(trans s2844 s1909) -(trans s2844 s1922) -(trans s2844 s1935) -(trans s2845 s1916) -(trans s2845 s1929) -(trans s2845 s1942) -(trans s2846 s1923) -(trans s2846 s1936) -(trans s2846 s1949) -(trans s2847 s1930) -(trans s2847 s1943) -(trans s2847 s1956) -(trans s2848 s1937) -(trans s2848 s1950) -(trans s2848 s1963) -(trans s2849 s1944) -(trans s2849 s1957) -(trans s2849 s1970) -(trans s2850 s1951) -(trans s2850 s1964) -(trans s2850 s1977) -(trans s2851 s1958) -(trans s2851 s1971) -(trans s2851 s1984) -(trans s2852 s1965) -(trans s2852 s1978) -(trans s2852 s1991) -(trans s2853 s1972) -(trans s2853 s1985) -(trans s2853 s1998) -(trans s2854 s1979) -(trans s2854 s1992) -(trans s2854 s2005) -(trans s2855 s1986) -(trans s2855 s1999) -(trans s2855 s2012) -(trans s2856 s1993) -(trans s2856 s2006) -(trans s2856 s2019) -(trans s2857 s2000) -(trans s2857 s2013) -(trans s2857 s2026) -(trans s2858 s2007) -(trans s2858 s2020) -(trans s2858 s2033) -(trans s2859 s2014) -(trans s2859 s2027) -(trans s2859 s2040) -(trans s2860 s2021) -(trans s2860 s2034) -(trans s2860 s2047) -(trans s2861 s2028) -(trans s2861 s2041) -(trans s2861 s2054) -(trans s2862 s2035) -(trans s2862 s2048) -(trans s2862 s2061) -(trans s2863 s2042) -(trans s2863 s2055) -(trans s2863 s2068) -(trans s2864 s2049) -(trans s2864 s2062) -(trans s2864 s2075) -(trans s2865 s2056) -(trans s2865 s2069) -(trans s2865 s2082) -(trans s2866 s2063) -(trans s2866 s2076) -(trans s2866 s2089) -(trans s2867 s2070) -(trans s2867 s2083) -(trans s2867 s2096) -(trans s2868 s2077) -(trans s2868 s2090) -(trans s2868 s2103) -(trans s2869 s2084) -(trans s2869 s2097) -(trans s2869 s2110) -(trans s2870 s2091) -(trans s2870 s2104) -(trans s2870 s2117) -(trans s2871 s2098) -(trans s2871 s2111) -(trans s2871 s2124) -(trans s2872 s2105) -(trans s2872 s2118) -(trans s2872 s2131) -(trans s2873 s2112) -(trans s2873 s2125) -(trans s2873 s2138) -(trans s2874 s2119) -(trans s2874 s2132) -(trans s2874 s2145) -(trans s2875 s2126) -(trans s2875 s2139) -(trans s2875 s2152) -(trans s2876 s2133) -(trans s2876 s2146) -(trans s2876 s2159) -(trans s2877 s2140) -(trans s2877 s2153) -(trans s2877 s2166) -(trans s2878 s2147) -(trans s2878 s2160) -(trans s2878 s2173) -(trans s2879 s2154) -(trans s2879 s2167) -(trans s2879 s2180) -(trans s2880 s2161) -(trans s2880 s2174) -(trans s2880 s2187) -(trans s2881 s2168) -(trans s2881 s2181) -(trans s2881 s2194) -(trans s2882 s2175) -(trans s2882 s2188) -(trans s2882 s2201) -(trans s2883 s2182) -(trans s2883 s2195) -(trans s2883 s2208) -(trans s2884 s2189) -(trans s2884 s2202) -(trans s2884 s2215) -(trans s2885 s2196) -(trans s2885 s2209) -(trans s2885 s2222) -(trans s2886 s2203) -(trans s2886 s2216) -(trans s2886 s2229) -(trans s2887 s2210) -(trans s2887 s2223) -(trans s2887 s2236) -(trans s2888 s2217) -(trans s2888 s2230) -(trans s2888 s2243) -(trans s2889 s2224) -(trans s2889 s2237) -(trans s2889 s2250) -(trans s2890 s2231) -(trans s2890 s2244) -(trans s2890 s2257) -(trans s2891 s2238) -(trans s2891 s2251) -(trans s2891 s2264) -(trans s2892 s2245) -(trans s2892 s2258) -(trans s2892 s2271) -(trans s2893 s2252) -(trans s2893 s2265) -(trans s2893 s2278) -(trans s2894 s2259) -(trans s2894 s2272) -(trans s2894 s2285) -(trans s2895 s2266) -(trans s2895 s2279) -(trans s2895 s2292) -(trans s2896 s2273) -(trans s2896 s2286) -(trans s2896 s2299) -(trans s2897 s2280) -(trans s2897 s2293) -(trans s2897 s2306) -(trans s2898 s2287) -(trans s2898 s2300) -(trans s2898 s2313) -(trans s2899 s2294) -(trans s2899 s2307) -(trans s2899 s2320) -(trans s2900 s2301) -(trans s2900 s2314) -(trans s2900 s2327) -(trans s2901 s2308) -(trans s2901 s2321) -(trans s2901 s2334) -(trans s2902 s2315) -(trans s2902 s2328) -(trans s2902 s2341) -(trans s2903 s2322) -(trans s2903 s2335) -(trans s2903 s2348) -(trans s2904 s2329) -(trans s2904 s2342) -(trans s2904 s2355) -(trans s2905 s2336) -(trans s2905 s2349) -(trans s2905 s2362) -(trans s2906 s2343) -(trans s2906 s2356) -(trans s2906 s2369) -(trans s2907 s2350) -(trans s2907 s2363) -(trans s2907 s2376) -(trans s2908 s2357) -(trans s2908 s2370) -(trans s2908 s2383) -(trans s2909 s2364) -(trans s2909 s2377) -(trans s2909 s2390) -(trans s2910 s2371) -(trans s2910 s2384) -(trans s2910 s2397) -(trans s2911 s2378) -(trans s2911 s2391) -(trans s2911 s2404) -(trans s2912 s2385) -(trans s2912 s2398) -(trans s2912 s2411) -(trans s2913 s2392) -(trans s2913 s2405) -(trans s2913 s2418) -(trans s2914 s2399) -(trans s2914 s2412) -(trans s2914 s2425) -(trans s2915 s2406) -(trans s2915 s2419) -(trans s2915 s2432) -(trans s2916 s2413) -(trans s2916 s2426) -(trans s2916 s2439) -(trans s2917 s2420) -(trans s2917 s2433) -(trans s2917 s2446) -(trans s2918 s2427) -(trans s2918 s2440) -(trans s2918 s2453) -(trans s2919 s2434) -(trans s2919 s2447) -(trans s2919 s2460) -(trans s2920 s2441) -(trans s2920 s2454) -(trans s2920 s2467) -(trans s2921 s2448) -(trans s2921 s2461) -(trans s2921 s2474) -(trans s2922 s2455) -(trans s2922 s2468) -(trans s2922 s2481) -(trans s2923 s2462) -(trans s2923 s2475) -(trans s2923 s2488) -(trans s2924 s2469) -(trans s2924 s2482) -(trans s2924 s2495) -(trans s2925 s2476) -(trans s2925 s2489) -(trans s2925 s2502) -(trans s2926 s2483) -(trans s2926 s2496) -(trans s2926 s2509) -(trans s2927 s2490) -(trans s2927 s2503) -(trans s2927 s2516) -(trans s2928 s2497) -(trans s2928 s2510) -(trans s2928 s2523) -(trans s2929 s2504) -(trans s2929 s2517) -(trans s2929 s2530) -(trans s2930 s2511) -(trans s2930 s2524) -(trans s2930 s2537) -(trans s2931 s2518) -(trans s2931 s2531) -(trans s2931 s2544) -(trans s2932 s2525) -(trans s2932 s2538) -(trans s2932 s2551) -(trans s2933 s2532) -(trans s2933 s2545) -(trans s2933 s2558) -(trans s2934 s2539) -(trans s2934 s2552) -(trans s2934 s2565) -(trans s2935 s2546) -(trans s2935 s2559) -(trans s2935 s2572) -(trans s2936 s2553) -(trans s2936 s2566) -(trans s2936 s2579) -(trans s2937 s2560) -(trans s2937 s2573) -(trans s2937 s2586) -(trans s2938 s2567) -(trans s2938 s2580) -(trans s2938 s2593) -(trans s2939 s2574) -(trans s2939 s2587) -(trans s2939 s2600) -(trans s2940 s2581) -(trans s2940 s2594) -(trans s2940 s2607) -(trans s2941 s2588) -(trans s2941 s2601) -(trans s2941 s2614) -(trans s2942 s2595) -(trans s2942 s2608) -(trans s2942 s2621) -(trans s2943 s2602) -(trans s2943 s2615) -(trans s2943 s2628) -(trans s2944 s2609) -(trans s2944 s2622) -(trans s2944 s2635) -(trans s2945 s2616) -(trans s2945 s2629) -(trans s2945 s2642) -(trans s2946 s2623) -(trans s2946 s2636) -(trans s2946 s2649) -(trans s2947 s2630) -(trans s2947 s2643) -(trans s2947 s2656) -(trans s2948 s2637) -(trans s2948 s2650) -(trans s2948 s2663) -(trans s2949 s2644) -(trans s2949 s2657) -(trans s2949 s2670) -(trans s2950 s2651) -(trans s2950 s2664) -(trans s2950 s2677) -(trans s2951 s2658) -(trans s2951 s2671) -(trans s2951 s2684) -(trans s2952 s2665) -(trans s2952 s2678) -(trans s2952 s2691) -(trans s2953 s2672) -(trans s2953 s2685) -(trans s2953 s2698) -(trans s2954 s2679) -(trans s2954 s2692) -(trans s2954 s2705) -(trans s2955 s2686) -(trans s2955 s2699) -(trans s2955 s2712) -(trans s2956 s2693) -(trans s2956 s2706) -(trans s2956 s2719) -(trans s2957 s2700) -(trans s2957 s2713) -(trans s2957 s2726) -(trans s2958 s2707) -(trans s2958 s2720) -(trans s2958 s2733) -(trans s2959 s2714) -(trans s2959 s2727) -(trans s2959 s2740) -(trans s2960 s2721) -(trans s2960 s2734) -(trans s2960 s2747) -(trans s2961 s2728) -(trans s2961 s2741) -(trans s2961 s2754) -(trans s2962 s2735) -(trans s2962 s2748) -(trans s2962 s2761) -(trans s2963 s2742) -(trans s2963 s2755) -(trans s2963 s2768) -(trans s2964 s2749) -(trans s2964 s2762) -(trans s2964 s2775) -(trans s2965 s2756) -(trans s2965 s2769) -(trans s2965 s2782) -(trans s2966 s2763) -(trans s2966 s2776) -(trans s2966 s2789) -(trans s2967 s2770) -(trans s2967 s2783) -(trans s2967 s2796) -(trans s2968 s2777) -(trans s2968 s2790) -(trans s2968 s2803) -(trans s2969 s2784) -(trans s2969 s2797) -(trans s2969 s2810) -(trans s2970 s2791) -(trans s2970 s2804) -(trans s2970 s2817) -(trans s2971 s2798) -(trans s2971 s2811) -(trans s2971 s2824) -(trans s2972 s2805) -(trans s2972 s2818) -(trans s2972 s2831) -(trans s2973 s2812) -(trans s2973 s2825) -(trans s2973 s2838) -(trans s2974 s2819) -(trans s2974 s2832) -(trans s2974 s2845) -(trans s2975 s2826) -(trans s2975 s2839) -(trans s2975 s2852) -(trans s2976 s2833) -(trans s2976 s2846) -(trans s2976 s2859) -(trans s2977 s2840) -(trans s2977 s2853) -(trans s2977 s2866) -(trans s2978 s2847) -(trans s2978 s2860) -(trans s2978 s2873) -(trans s2979 s2854) -(trans s2979 s2867) -(trans s2979 s2880) -(trans s2980 s2861) -(trans s2980 s2874) -(trans s2980 s2887) -(trans s2981 s2868) -(trans s2981 s2881) -(trans s2981 s2894) -(trans s2982 s2875) -(trans s2982 s2888) -(trans s2982 s2901) -(trans s2983 s2882) -(trans s2983 s2895) -(trans s2983 s2908) -(trans s2984 s2889) -(trans s2984 s2902) -(trans s2984 s2915) -(trans s2985 s2896) -(trans s2985 s2909) -(trans s2985 s2922) -(trans s2986 s2903) -(trans s2986 s2916) -(trans s2986 s2929) -(trans s2987 s2910) -(trans s2987 s2923) -(trans s2987 s2936) -(trans s2988 s2917) -(trans s2988 s2930) -(trans s2988 s2943) -(trans s2989 s2924) -(trans s2989 s2937) -(trans s2989 s2950) -(trans s2990 s2931) -(trans s2990 s2944) -(trans s2990 s2957) -(trans s2991 s2938) -(trans s2991 s2951) -(trans s2991 s2964) -(trans s2992 s2945) -(trans s2992 s2958) -(trans s2992 s2971) -(trans s2993 s2952) -(trans s2993 s2965) -(trans s2993 s2978) -(trans s2994 s2959) -(trans s2994 s2972) -(trans s2994 s2985) -(trans s2995 s2966) -(trans s2995 s2979) -(trans s2995 s2992) -(trans s2996 s2973) -(trans s2996 s2986) -(trans s2996 s2999) -(trans s2997 s2980) -(trans s2997 s2993) -(trans s2997 s3006) -(trans s2998 s2987) -(trans s2998 s3000) -(trans s2998 s3013) -(trans s2999 s2994) -(trans s2999 s3007) -(trans s2999 s3020) -(trans s3000 s3001) -(trans s3000 s3014) -(trans s3000 s3027) -(trans s3001 s3008) -(trans s3001 s3021) -(trans s3001 s3034) -(trans s3002 s3015) -(trans s3002 s3028) -(trans s3002 s3041) -(trans s3003 s3022) -(trans s3003 s3035) -(trans s3003 s3048) -(trans s3004 s3029) -(trans s3004 s3042) -(trans s3004 s3055) -(trans s3005 s3036) -(trans s3005 s3049) -(trans s3005 s3062) -(trans s3006 s3043) -(trans s3006 s3056) -(trans s3006 s3069) -(trans s3007 s3050) -(trans s3007 s3063) -(trans s3007 s3076) -(trans s3008 s3057) -(trans s3008 s3070) -(trans s3008 s3083) -(trans s3009 s3064) -(trans s3009 s3077) -(trans s3009 s3090) -(trans s3010 s3071) -(trans s3010 s3084) -(trans s3010 s3097) -(trans s3011 s3078) -(trans s3011 s3091) -(trans s3011 s3104) -(trans s3012 s3085) -(trans s3012 s3098) -(trans s3012 s3111) -(trans s3013 s3092) -(trans s3013 s3105) -(trans s3013 s3118) -(trans s3014 s3099) -(trans s3014 s3112) -(trans s3014 s3125) -(trans s3015 s3106) -(trans s3015 s3119) -(trans s3015 s3132) -(trans s3016 s3113) -(trans s3016 s3126) -(trans s3016 s3139) -(trans s3017 s3120) -(trans s3017 s3133) -(trans s3017 s3146) -(trans s3018 s3127) -(trans s3018 s3140) -(trans s3018 s3153) -(trans s3019 s3134) -(trans s3019 s3147) -(trans s3019 s3160) -(trans s3020 s3141) -(trans s3020 s3154) -(trans s3020 s3167) -(trans s3021 s3148) -(trans s3021 s3161) -(trans s3021 s3174) -(trans s3022 s3155) -(trans s3022 s3168) -(trans s3022 s3181) -(trans s3023 s3162) -(trans s3023 s3175) -(trans s3023 s3188) -(trans s3024 s3169) -(trans s3024 s3182) -(trans s3024 s3195) -(trans s3025 s3176) -(trans s3025 s3189) -(trans s3025 s3202) -(trans s3026 s3183) -(trans s3026 s3196) -(trans s3026 s3209) -(trans s3027 s3190) -(trans s3027 s3203) -(trans s3027 s3216) -(trans s3028 s3197) -(trans s3028 s3210) -(trans s3028 s3223) -(trans s3029 s3204) -(trans s3029 s3217) -(trans s3029 s3230) -(trans s3030 s3211) -(trans s3030 s3224) -(trans s3030 s3237) -(trans s3031 s3218) -(trans s3031 s3231) -(trans s3031 s3244) -(trans s3032 s3225) -(trans s3032 s3238) -(trans s3032 s3251) -(trans s3033 s3232) -(trans s3033 s3245) -(trans s3033 s3258) -(trans s3034 s3239) -(trans s3034 s3252) -(trans s3034 s3265) -(trans s3035 s3246) -(trans s3035 s3259) -(trans s3035 s3272) -(trans s3036 s3253) -(trans s3036 s3266) -(trans s3036 s3279) -(trans s3037 s3260) -(trans s3037 s3273) -(trans s3037 s3286) -(trans s3038 s3267) -(trans s3038 s3280) -(trans s3038 s3293) -(trans s3039 s3274) -(trans s3039 s3287) -(trans s3039 s3300) -(trans s3040 s3281) -(trans s3040 s3294) -(trans s3040 s3307) -(trans s3041 s3288) -(trans s3041 s3301) -(trans s3041 s3314) -(trans s3042 s3295) -(trans s3042 s3308) -(trans s3042 s3321) -(trans s3043 s3302) -(trans s3043 s3315) -(trans s3043 s3328) -(trans s3044 s3309) -(trans s3044 s3322) -(trans s3044 s3335) -(trans s3045 s3316) -(trans s3045 s3329) -(trans s3045 s3342) -(trans s3046 s3323) -(trans s3046 s3336) -(trans s3046 s3349) -(trans s3047 s3330) -(trans s3047 s3343) -(trans s3047 s3356) -(trans s3048 s3337) -(trans s3048 s3350) -(trans s3048 s3363) -(trans s3049 s3344) -(trans s3049 s3357) -(trans s3049 s3370) -(trans s3050 s3351) -(trans s3050 s3364) -(trans s3050 s3377) -(trans s3051 s3358) -(trans s3051 s3371) -(trans s3051 s3384) -(trans s3052 s3365) -(trans s3052 s3378) -(trans s3052 s3391) -(trans s3053 s3372) -(trans s3053 s3385) -(trans s3053 s3398) -(trans s3054 s3379) -(trans s3054 s3392) -(trans s3054 s3405) -(trans s3055 s3386) -(trans s3055 s3399) -(trans s3055 s3412) -(trans s3056 s3393) -(trans s3056 s3406) -(trans s3056 s3419) -(trans s3057 s3400) -(trans s3057 s3413) -(trans s3057 s3426) -(trans s3058 s3407) -(trans s3058 s3420) -(trans s3058 s3433) -(trans s3059 s3414) -(trans s3059 s3427) -(trans s3059 s3440) -(trans s3060 s3421) -(trans s3060 s3434) -(trans s3060 s3447) -(trans s3061 s3428) -(trans s3061 s3441) -(trans s3061 s3454) -(trans s3062 s3435) -(trans s3062 s3448) -(trans s3062 s3461) -(trans s3063 s3442) -(trans s3063 s3455) -(trans s3063 s3468) -(trans s3064 s3449) -(trans s3064 s3462) -(trans s3064 s3475) -(trans s3065 s3456) -(trans s3065 s3469) -(trans s3065 s3482) -(trans s3066 s3463) -(trans s3066 s3476) -(trans s3066 s3489) -(trans s3067 s3470) -(trans s3067 s3483) -(trans s3067 s3496) -(trans s3068 s3477) -(trans s3068 s3490) -(trans s3068 s3503) -(trans s3069 s3484) -(trans s3069 s3497) -(trans s3069 s3510) -(trans s3070 s3491) -(trans s3070 s3504) -(trans s3070 s3517) -(trans s3071 s3498) -(trans s3071 s3511) -(trans s3071 s3524) -(trans s3072 s3505) -(trans s3072 s3518) -(trans s3072 s3531) -(trans s3073 s3512) -(trans s3073 s3525) -(trans s3073 s3538) -(trans s3074 s3519) -(trans s3074 s3532) -(trans s3074 s3545) -(trans s3075 s3526) -(trans s3075 s3539) -(trans s3075 s3552) -(trans s3076 s3533) -(trans s3076 s3546) -(trans s3076 s3559) -(trans s3077 s3540) -(trans s3077 s3553) -(trans s3077 s3566) -(trans s3078 s3547) -(trans s3078 s3560) -(trans s3078 s3573) -(trans s3079 s3554) -(trans s3079 s3567) -(trans s3079 s3580) -(trans s3080 s3561) -(trans s3080 s3574) -(trans s3080 s3587) -(trans s3081 s3568) -(trans s3081 s3581) -(trans s3081 s3594) -(trans s3082 s3575) -(trans s3082 s3588) -(trans s3082 s3601) -(trans s3083 s3582) -(trans s3083 s3595) -(trans s3083 s3608) -(trans s3084 s3589) -(trans s3084 s3602) -(trans s3084 s3615) -(trans s3085 s3596) -(trans s3085 s3609) -(trans s3085 s3622) -(trans s3086 s3603) -(trans s3086 s3616) -(trans s3086 s3629) -(trans s3087 s3610) -(trans s3087 s3623) -(trans s3087 s3636) -(trans s3088 s3617) -(trans s3088 s3630) -(trans s3088 s3643) -(trans s3089 s3624) -(trans s3089 s3637) -(trans s3089 s3650) -(trans s3090 s3631) -(trans s3090 s3644) -(trans s3090 s3657) -(trans s3091 s3638) -(trans s3091 s3651) -(trans s3091 s3664) -(trans s3092 s3645) -(trans s3092 s3658) -(trans s3092 s3671) -(trans s3093 s3652) -(trans s3093 s3665) -(trans s3093 s3678) -(trans s3094 s3659) -(trans s3094 s3672) -(trans s3094 s3685) -(trans s3095 s3666) -(trans s3095 s3679) -(trans s3095 s3692) -(trans s3096 s3673) -(trans s3096 s3686) -(trans s3096 s3699) -(trans s3097 s3680) -(trans s3097 s3693) -(trans s3097 s3706) -(trans s3098 s3687) -(trans s3098 s3700) -(trans s3098 s3713) -(trans s3099 s3694) -(trans s3099 s3707) -(trans s3099 s3720) -(trans s3100 s3701) -(trans s3100 s3714) -(trans s3100 s3727) -(trans s3101 s3708) -(trans s3101 s3721) -(trans s3101 s3734) -(trans s3102 s3715) -(trans s3102 s3728) -(trans s3102 s3741) -(trans s3103 s3722) -(trans s3103 s3735) -(trans s3103 s3748) -(trans s3104 s3729) -(trans s3104 s3742) -(trans s3104 s3755) -(trans s3105 s3736) -(trans s3105 s3749) -(trans s3105 s3762) -(trans s3106 s3743) -(trans s3106 s3756) -(trans s3106 s3769) -(trans s3107 s3750) -(trans s3107 s3763) -(trans s3107 s3776) -(trans s3108 s3757) -(trans s3108 s3770) -(trans s3108 s3783) -(trans s3109 s3764) -(trans s3109 s3777) -(trans s3109 s3790) -(trans s3110 s3771) -(trans s3110 s3784) -(trans s3110 s3797) -(trans s3111 s3778) -(trans s3111 s3791) -(trans s3111 s3804) -(trans s3112 s3785) -(trans s3112 s3798) -(trans s3112 s3811) -(trans s3113 s3792) -(trans s3113 s3805) -(trans s3113 s3818) -(trans s3114 s3799) -(trans s3114 s3812) -(trans s3114 s3825) -(trans s3115 s3806) -(trans s3115 s3819) -(trans s3115 s3832) -(trans s3116 s3813) -(trans s3116 s3826) -(trans s3116 s3839) -(trans s3117 s3820) -(trans s3117 s3833) -(trans s3117 s3846) -(trans s3118 s3827) -(trans s3118 s3840) -(trans s3118 s3853) -(trans s3119 s3834) -(trans s3119 s3847) -(trans s3119 s3860) -(trans s3120 s3841) -(trans s3120 s3854) -(trans s3120 s3867) -(trans s3121 s3848) -(trans s3121 s3861) -(trans s3121 s3874) -(trans s3122 s3855) -(trans s3122 s3868) -(trans s3122 s3881) -(trans s3123 s3862) -(trans s3123 s3875) -(trans s3123 s3888) -(trans s3124 s3869) -(trans s3124 s3882) -(trans s3124 s3895) -(trans s3125 s3876) -(trans s3125 s3889) -(trans s3125 s3902) -(trans s3126 s3883) -(trans s3126 s3896) -(trans s3126 s3909) -(trans s3127 s3890) -(trans s3127 s3903) -(trans s3127 s3916) -(trans s3128 s3897) -(trans s3128 s3910) -(trans s3128 s3923) -(trans s3129 s3904) -(trans s3129 s3917) -(trans s3129 s3930) -(trans s3130 s3911) -(trans s3130 s3924) -(trans s3130 s3937) -(trans s3131 s3918) -(trans s3131 s3931) -(trans s3131 s3944) -(trans s3132 s3925) -(trans s3132 s3938) -(trans s3132 s3951) -(trans s3133 s3932) -(trans s3133 s3945) -(trans s3133 s3958) -(trans s3134 s3939) -(trans s3134 s3952) -(trans s3134 s3965) -(trans s3135 s3946) -(trans s3135 s3959) -(trans s3135 s3972) -(trans s3136 s3953) -(trans s3136 s3966) -(trans s3136 s3979) -(trans s3137 s3960) -(trans s3137 s3973) -(trans s3137 s3986) -(trans s3138 s3967) -(trans s3138 s3980) -(trans s3138 s3993) -(trans s3139 s3974) -(trans s3139 s3987) -(trans s3139 s4000) -(trans s3140 s3981) -(trans s3140 s3994) -(trans s3140 s4007) -(trans s3141 s3988) -(trans s3141 s4001) -(trans s3141 s4014) -(trans s3142 s3995) -(trans s3142 s4008) -(trans s3142 s4021) -(trans s3143 s4002) -(trans s3143 s4015) -(trans s3143 s4028) -(trans s3144 s4009) -(trans s3144 s4022) -(trans s3144 s4035) -(trans s3145 s4016) -(trans s3145 s4029) -(trans s3145 s4042) -(trans s3146 s4023) -(trans s3146 s4036) -(trans s3146 s4049) -(trans s3147 s4030) -(trans s3147 s4043) -(trans s3147 s4056) -(trans s3148 s4037) -(trans s3148 s4050) -(trans s3148 s4063) -(trans s3149 s4044) -(trans s3149 s4057) -(trans s3149 s4070) -(trans s3150 s4051) -(trans s3150 s4064) -(trans s3150 s4077) -(trans s3151 s4058) -(trans s3151 s4071) -(trans s3151 s4084) -(trans s3152 s4065) -(trans s3152 s4078) -(trans s3152 s4091) -(trans s3153 s4072) -(trans s3153 s4085) -(trans s3153 s4098) -(trans s3154 s4079) -(trans s3154 s4092) -(trans s3154 s4105) -(trans s3155 s4086) -(trans s3155 s4099) -(trans s3155 s4112) -(trans s3156 s4093) -(trans s3156 s4106) -(trans s3156 s4119) -(trans s3157 s4100) -(trans s3157 s4113) -(trans s3157 s4126) -(trans s3158 s4107) -(trans s3158 s4120) -(trans s3158 s4133) -(trans s3159 s4114) -(trans s3159 s4127) -(trans s3159 s4140) -(trans s3160 s4121) -(trans s3160 s4134) -(trans s3160 s4147) -(trans s3161 s4128) -(trans s3161 s4141) -(trans s3161 s4154) -(trans s3162 s4135) -(trans s3162 s4148) -(trans s3162 s4161) -(trans s3163 s4142) -(trans s3163 s4155) -(trans s3163 s4168) -(trans s3164 s4149) -(trans s3164 s4162) -(trans s3164 s4175) -(trans s3165 s4156) -(trans s3165 s4169) -(trans s3165 s4182) -(trans s3166 s4163) -(trans s3166 s4176) -(trans s3166 s4189) -(trans s3167 s4170) -(trans s3167 s4183) -(trans s3167 s4196) -(trans s3168 s4177) -(trans s3168 s4190) -(trans s3168 s4203) -(trans s3169 s4184) -(trans s3169 s4197) -(trans s3169 s4210) -(trans s3170 s4191) -(trans s3170 s4204) -(trans s3170 s4217) -(trans s3171 s4198) -(trans s3171 s4211) -(trans s3171 s4224) -(trans s3172 s4205) -(trans s3172 s4218) -(trans s3172 s4231) -(trans s3173 s4212) -(trans s3173 s4225) -(trans s3173 s4238) -(trans s3174 s4219) -(trans s3174 s4232) -(trans s3174 s4245) -(trans s3175 s4226) -(trans s3175 s4239) -(trans s3175 s4252) -(trans s3176 s4233) -(trans s3176 s4246) -(trans s3176 s4259) -(trans s3177 s4240) -(trans s3177 s4253) -(trans s3177 s4266) -(trans s3178 s4247) -(trans s3178 s4260) -(trans s3178 s4273) -(trans s3179 s4254) -(trans s3179 s4267) -(trans s3179 s4280) -(trans s3180 s4261) -(trans s3180 s4274) -(trans s3180 s4287) -(trans s3181 s4268) -(trans s3181 s4281) -(trans s3181 s4294) -(trans s3182 s4275) -(trans s3182 s4288) -(trans s3182 s4301) -(trans s3183 s4282) -(trans s3183 s4295) -(trans s3183 s4308) -(trans s3184 s4289) -(trans s3184 s4302) -(trans s3184 s4315) -(trans s3185 s4296) -(trans s3185 s4309) -(trans s3185 s4322) -(trans s3186 s4303) -(trans s3186 s4316) -(trans s3186 s4329) -(trans s3187 s4310) -(trans s3187 s4323) -(trans s3187 s4336) -(trans s3188 s4317) -(trans s3188 s4330) -(trans s3188 s4343) -(trans s3189 s4324) -(trans s3189 s4337) -(trans s3189 s4350) -(trans s3190 s4331) -(trans s3190 s4344) -(trans s3190 s4357) -(trans s3191 s4338) -(trans s3191 s4351) -(trans s3191 s4364) -(trans s3192 s4345) -(trans s3192 s4358) -(trans s3192 s4371) -(trans s3193 s4352) -(trans s3193 s4365) -(trans s3193 s4378) -(trans s3194 s4359) -(trans s3194 s4372) -(trans s3194 s4385) -(trans s3195 s4366) -(trans s3195 s4379) -(trans s3195 s4392) -(trans s3196 s4373) -(trans s3196 s4386) -(trans s3196 s4399) -(trans s3197 s4380) -(trans s3197 s4393) -(trans s3197 s4406) -(trans s3198 s4387) -(trans s3198 s4400) -(trans s3198 s4413) -(trans s3199 s4394) -(trans s3199 s4407) -(trans s3199 s4420) -(trans s3200 s4401) -(trans s3200 s4414) -(trans s3200 s4427) -(trans s3201 s4408) -(trans s3201 s4421) -(trans s3201 s4434) -(trans s3202 s4415) -(trans s3202 s4428) -(trans s3202 s4441) -(trans s3203 s4422) -(trans s3203 s4435) -(trans s3203 s4448) -(trans s3204 s4429) -(trans s3204 s4442) -(trans s3204 s4455) -(trans s3205 s4436) -(trans s3205 s4449) -(trans s3205 s4462) -(trans s3206 s4443) -(trans s3206 s4456) -(trans s3206 s4469) -(trans s3207 s4450) -(trans s3207 s4463) -(trans s3207 s4476) -(trans s3208 s4457) -(trans s3208 s4470) -(trans s3208 s4483) -(trans s3209 s4464) -(trans s3209 s4477) -(trans s3209 s4490) -(trans s3210 s4471) -(trans s3210 s4484) -(trans s3210 s4497) -(trans s3211 s4478) -(trans s3211 s4491) -(trans s3211 s4504) -(trans s3212 s4485) -(trans s3212 s4498) -(trans s3212 s4511) -(trans s3213 s4492) -(trans s3213 s4505) -(trans s3213 s4518) -(trans s3214 s4499) -(trans s3214 s4512) -(trans s3214 s4525) -(trans s3215 s4506) -(trans s3215 s4519) -(trans s3215 s4532) -(trans s3216 s4513) -(trans s3216 s4526) -(trans s3216 s4539) -(trans s3217 s4520) -(trans s3217 s4533) -(trans s3217 s4546) -(trans s3218 s4527) -(trans s3218 s4540) -(trans s3218 s4553) -(trans s3219 s4534) -(trans s3219 s4547) -(trans s3219 s4560) -(trans s3220 s4541) -(trans s3220 s4554) -(trans s3220 s4567) -(trans s3221 s4548) -(trans s3221 s4561) -(trans s3221 s4574) -(trans s3222 s4555) -(trans s3222 s4568) -(trans s3222 s4581) -(trans s3223 s4562) -(trans s3223 s4575) -(trans s3223 s4588) -(trans s3224 s4569) -(trans s3224 s4582) -(trans s3224 s4595) -(trans s3225 s4576) -(trans s3225 s4589) -(trans s3225 s4602) -(trans s3226 s4583) -(trans s3226 s4596) -(trans s3226 s4609) -(trans s3227 s4590) -(trans s3227 s4603) -(trans s3227 s4616) -(trans s3228 s4597) -(trans s3228 s4610) -(trans s3228 s4623) -(trans s3229 s4604) -(trans s3229 s4617) -(trans s3229 s4630) -(trans s3230 s4611) -(trans s3230 s4624) -(trans s3230 s4637) -(trans s3231 s4618) -(trans s3231 s4631) -(trans s3231 s4644) -(trans s3232 s4625) -(trans s3232 s4638) -(trans s3232 s4651) -(trans s3233 s4632) -(trans s3233 s4645) -(trans s3233 s4658) -(trans s3234 s4639) -(trans s3234 s4652) -(trans s3234 s4665) -(trans s3235 s4646) -(trans s3235 s4659) -(trans s3235 s4672) -(trans s3236 s4653) -(trans s3236 s4666) -(trans s3236 s4679) -(trans s3237 s4660) -(trans s3237 s4673) -(trans s3237 s4686) -(trans s3238 s4667) -(trans s3238 s4680) -(trans s3238 s4693) -(trans s3239 s4674) -(trans s3239 s4687) -(trans s3239 s4700) -(trans s3240 s4681) -(trans s3240 s4694) -(trans s3240 s4707) -(trans s3241 s4688) -(trans s3241 s4701) -(trans s3241 s4714) -(trans s3242 s4695) -(trans s3242 s4708) -(trans s3242 s4721) -(trans s3243 s4702) -(trans s3243 s4715) -(trans s3243 s4728) -(trans s3244 s4709) -(trans s3244 s4722) -(trans s3244 s4735) -(trans s3245 s4716) -(trans s3245 s4729) -(trans s3245 s4742) -(trans s3246 s4723) -(trans s3246 s4736) -(trans s3246 s4749) -(trans s3247 s4730) -(trans s3247 s4743) -(trans s3247 s4756) -(trans s3248 s4737) -(trans s3248 s4750) -(trans s3248 s4763) -(trans s3249 s4744) -(trans s3249 s4757) -(trans s3249 s4770) -(trans s3250 s4751) -(trans s3250 s4764) -(trans s3250 s4777) -(trans s3251 s4758) -(trans s3251 s4771) -(trans s3251 s4784) -(trans s3252 s4765) -(trans s3252 s4778) -(trans s3252 s4791) -(trans s3253 s4772) -(trans s3253 s4785) -(trans s3253 s4798) -(trans s3254 s4779) -(trans s3254 s4792) -(trans s3254 s4805) -(trans s3255 s4786) -(trans s3255 s4799) -(trans s3255 s4812) -(trans s3256 s4793) -(trans s3256 s4806) -(trans s3256 s4819) -(trans s3257 s4800) -(trans s3257 s4813) -(trans s3257 s4826) -(trans s3258 s4807) -(trans s3258 s4820) -(trans s3258 s4833) -(trans s3259 s4814) -(trans s3259 s4827) -(trans s3259 s4840) -(trans s3260 s4821) -(trans s3260 s4834) -(trans s3260 s4847) -(trans s3261 s4828) -(trans s3261 s4841) -(trans s3261 s4854) -(trans s3262 s4835) -(trans s3262 s4848) -(trans s3262 s4861) -(trans s3263 s4842) -(trans s3263 s4855) -(trans s3263 s4868) -(trans s3264 s4849) -(trans s3264 s4862) -(trans s3264 s4875) -(trans s3265 s4856) -(trans s3265 s4869) -(trans s3265 s4882) -(trans s3266 s4863) -(trans s3266 s4876) -(trans s3266 s4889) -(trans s3267 s4870) -(trans s3267 s4883) -(trans s3267 s4896) -(trans s3268 s4877) -(trans s3268 s4890) -(trans s3268 s4903) -(trans s3269 s4884) -(trans s3269 s4897) -(trans s3269 s4910) -(trans s3270 s4891) -(trans s3270 s4904) -(trans s3270 s4917) -(trans s3271 s4898) -(trans s3271 s4911) -(trans s3271 s4924) -(trans s3272 s4905) -(trans s3272 s4918) -(trans s3272 s4931) -(trans s3273 s4912) -(trans s3273 s4925) -(trans s3273 s4938) -(trans s3274 s4919) -(trans s3274 s4932) -(trans s3274 s4945) -(trans s3275 s4926) -(trans s3275 s4939) -(trans s3275 s4952) -(trans s3276 s4933) -(trans s3276 s4946) -(trans s3276 s4959) -(trans s3277 s4940) -(trans s3277 s4953) -(trans s3277 s4966) -(trans s3278 s4947) -(trans s3278 s4960) -(trans s3278 s4973) -(trans s3279 s4954) -(trans s3279 s4967) -(trans s3279 s4980) -(trans s3280 s4961) -(trans s3280 s4974) -(trans s3280 s4987) -(trans s3281 s4968) -(trans s3281 s4981) -(trans s3281 s4994) -(trans s3282 s4975) -(trans s3282 s4988) -(trans s3282 s5001) -(trans s3283 s4982) -(trans s3283 s4995) -(trans s3283 s5008) -(trans s3284 s4989) -(trans s3284 s5002) -(trans s3284 s5015) -(trans s3285 s4996) -(trans s3285 s5009) -(trans s3285 s5022) -(trans s3286 s5003) -(trans s3286 s5016) -(trans s3286 s5029) -(trans s3287 s5010) -(trans s3287 s5023) -(trans s3287 s5036) -(trans s3288 s5017) -(trans s3288 s5030) -(trans s3288 s5043) -(trans s3289 s5024) -(trans s3289 s5037) -(trans s3289 s5050) -(trans s3290 s5031) -(trans s3290 s5044) -(trans s3290 s5057) -(trans s3291 s5038) -(trans s3291 s5051) -(trans s3291 s5064) -(trans s3292 s5045) -(trans s3292 s5058) -(trans s3292 s5071) -(trans s3293 s5052) -(trans s3293 s5065) -(trans s3293 s5078) -(trans s3294 s5059) -(trans s3294 s5072) -(trans s3294 s5085) -(trans s3295 s5066) -(trans s3295 s5079) -(trans s3295 s5092) -(trans s3296 s5073) -(trans s3296 s5086) -(trans s3296 s5099) -(trans s3297 s5080) -(trans s3297 s5093) -(trans s3297 s5106) -(trans s3298 s5087) -(trans s3298 s5100) -(trans s3298 s5113) -(trans s3299 s5094) -(trans s3299 s5107) -(trans s3299 s5120) -(trans s3300 s5101) -(trans s3300 s5114) -(trans s3300 s5127) -(trans s3301 s5108) -(trans s3301 s5121) -(trans s3301 s5134) -(trans s3302 s5115) -(trans s3302 s5128) -(trans s3302 s5141) -(trans s3303 s5122) -(trans s3303 s5135) -(trans s3303 s5148) -(trans s3304 s5129) -(trans s3304 s5142) -(trans s3304 s5155) -(trans s3305 s5136) -(trans s3305 s5149) -(trans s3305 s5162) -(trans s3306 s5143) -(trans s3306 s5156) -(trans s3306 s5169) -(trans s3307 s5150) -(trans s3307 s5163) -(trans s3307 s5176) -(trans s3308 s5157) -(trans s3308 s5170) -(trans s3308 s5183) -(trans s3309 s5164) -(trans s3309 s5177) -(trans s3309 s5190) -(trans s3310 s5171) -(trans s3310 s5184) -(trans s3310 s5197) -(trans s3311 s5178) -(trans s3311 s5191) -(trans s3311 s5204) -(trans s3312 s5185) -(trans s3312 s5198) -(trans s3312 s5211) -(trans s3313 s5192) -(trans s3313 s5205) -(trans s3313 s5218) -(trans s3314 s5199) -(trans s3314 s5212) -(trans s3314 s5225) -(trans s3315 s5206) -(trans s3315 s5219) -(trans s3315 s5232) -(trans s3316 s5213) -(trans s3316 s5226) -(trans s3316 s5239) -(trans s3317 s5220) -(trans s3317 s5233) -(trans s3317 s5246) -(trans s3318 s5227) -(trans s3318 s5240) -(trans s3318 s5253) -(trans s3319 s5234) -(trans s3319 s5247) -(trans s3319 s5260) -(trans s3320 s5241) -(trans s3320 s5254) -(trans s3320 s5267) -(trans s3321 s5248) -(trans s3321 s5261) -(trans s3321 s5274) -(trans s3322 s5255) -(trans s3322 s5268) -(trans s3322 s5281) -(trans s3323 s5262) -(trans s3323 s5275) -(trans s3323 s5288) -(trans s3324 s5269) -(trans s3324 s5282) -(trans s3324 s5295) -(trans s3325 s5276) -(trans s3325 s5289) -(trans s3325 s5302) -(trans s3326 s5283) -(trans s3326 s5296) -(trans s3326 s5309) -(trans s3327 s5290) -(trans s3327 s5303) -(trans s3327 s5316) -(trans s3328 s5297) -(trans s3328 s5310) -(trans s3328 s5323) -(trans s3329 s5304) -(trans s3329 s5317) -(trans s3329 s5330) -(trans s3330 s5311) -(trans s3330 s5324) -(trans s3330 s5337) -(trans s3331 s5318) -(trans s3331 s5331) -(trans s3331 s5344) -(trans s3332 s5325) -(trans s3332 s5338) -(trans s3332 s5351) -(trans s3333 s5332) -(trans s3333 s5345) -(trans s3333 s5358) -(trans s3334 s5339) -(trans s3334 s5352) -(trans s3334 s5365) -(trans s3335 s5346) -(trans s3335 s5359) -(trans s3335 s5372) -(trans s3336 s5353) -(trans s3336 s5366) -(trans s3336 s5379) -(trans s3337 s5360) -(trans s3337 s5373) -(trans s3337 s5386) -(trans s3338 s5367) -(trans s3338 s5380) -(trans s3338 s5393) -(trans s3339 s5374) -(trans s3339 s5387) -(trans s3339 s5400) -(trans s3340 s5381) -(trans s3340 s5394) -(trans s3340 s5407) -(trans s3341 s5388) -(trans s3341 s5401) -(trans s3341 s5414) -(trans s3342 s5395) -(trans s3342 s5408) -(trans s3342 s5421) -(trans s3343 s5402) -(trans s3343 s5415) -(trans s3343 s5428) -(trans s3344 s5409) -(trans s3344 s5422) -(trans s3344 s5435) -(trans s3345 s5416) -(trans s3345 s5429) -(trans s3345 s5442) -(trans s3346 s5423) -(trans s3346 s5436) -(trans s3346 s5449) -(trans s3347 s5430) -(trans s3347 s5443) -(trans s3347 s5456) -(trans s3348 s5437) -(trans s3348 s5450) -(trans s3348 s5463) -(trans s3349 s5444) -(trans s3349 s5457) -(trans s3349 s5470) -(trans s3350 s5451) -(trans s3350 s5464) -(trans s3350 s5477) -(trans s3351 s5458) -(trans s3351 s5471) -(trans s3351 s5484) -(trans s3352 s5465) -(trans s3352 s5478) -(trans s3352 s5491) -(trans s3353 s5472) -(trans s3353 s5485) -(trans s3353 s5498) -(trans s3354 s5479) -(trans s3354 s5492) -(trans s3354 s5505) -(trans s3355 s5486) -(trans s3355 s5499) -(trans s3355 s5512) -(trans s3356 s5493) -(trans s3356 s5506) -(trans s3356 s5519) -(trans s3357 s5500) -(trans s3357 s5513) -(trans s3357 s5526) -(trans s3358 s5507) -(trans s3358 s5520) -(trans s3358 s5533) -(trans s3359 s5514) -(trans s3359 s5527) -(trans s3359 s5540) -(trans s3360 s5521) -(trans s3360 s5534) -(trans s3360 s5547) -(trans s3361 s5528) -(trans s3361 s5541) -(trans s3361 s5554) -(trans s3362 s5535) -(trans s3362 s5548) -(trans s3362 s5561) -(trans s3363 s5542) -(trans s3363 s5555) -(trans s3363 s5568) -(trans s3364 s5549) -(trans s3364 s5562) -(trans s3364 s5575) -(trans s3365 s5556) -(trans s3365 s5569) -(trans s3365 s5582) -(trans s3366 s5563) -(trans s3366 s5576) -(trans s3366 s5589) -(trans s3367 s5570) -(trans s3367 s5583) -(trans s3367 s5596) -(trans s3368 s5577) -(trans s3368 s5590) -(trans s3368 s5603) -(trans s3369 s5584) -(trans s3369 s5597) -(trans s3369 s5610) -(trans s3370 s5591) -(trans s3370 s5604) -(trans s3370 s5617) -(trans s3371 s5598) -(trans s3371 s5611) -(trans s3371 s5624) -(trans s3372 s5605) -(trans s3372 s5618) -(trans s3372 s5631) -(trans s3373 s5612) -(trans s3373 s5625) -(trans s3373 s5638) -(trans s3374 s5619) -(trans s3374 s5632) -(trans s3374 s5645) -(trans s3375 s5626) -(trans s3375 s5639) -(trans s3375 s5652) -(trans s3376 s5633) -(trans s3376 s5646) -(trans s3376 s5659) -(trans s3377 s5640) -(trans s3377 s5653) -(trans s3377 s5666) -(trans s3378 s5647) -(trans s3378 s5660) -(trans s3378 s5673) -(trans s3379 s5654) -(trans s3379 s5667) -(trans s3379 s5680) -(trans s3380 s5661) -(trans s3380 s5674) -(trans s3380 s5687) -(trans s3381 s5668) -(trans s3381 s5681) -(trans s3381 s5694) -(trans s3382 s5675) -(trans s3382 s5688) -(trans s3382 s5701) -(trans s3383 s5682) -(trans s3383 s5695) -(trans s3383 s5708) -(trans s3384 s5689) -(trans s3384 s5702) -(trans s3384 s5715) -(trans s3385 s5696) -(trans s3385 s5709) -(trans s3385 s5722) -(trans s3386 s5703) -(trans s3386 s5716) -(trans s3386 s5729) -(trans s3387 s5710) -(trans s3387 s5723) -(trans s3387 s5736) -(trans s3388 s5717) -(trans s3388 s5730) -(trans s3388 s5743) -(trans s3389 s5724) -(trans s3389 s5737) -(trans s3389 s5750) -(trans s3390 s5731) -(trans s3390 s5744) -(trans s3390 s5757) -(trans s3391 s5738) -(trans s3391 s5751) -(trans s3391 s5764) -(trans s3392 s5745) -(trans s3392 s5758) -(trans s3392 s5771) -(trans s3393 s5752) -(trans s3393 s5765) -(trans s3393 s5778) -(trans s3394 s5759) -(trans s3394 s5772) -(trans s3394 s5785) -(trans s3395 s5766) -(trans s3395 s5779) -(trans s3395 s5792) -(trans s3396 s5773) -(trans s3396 s5786) -(trans s3396 s5799) -(trans s3397 s5780) -(trans s3397 s5793) -(trans s3397 s5806) -(trans s3398 s5787) -(trans s3398 s5800) -(trans s3398 s5813) -(trans s3399 s5794) -(trans s3399 s5807) -(trans s3399 s5820) -(trans s3400 s5801) -(trans s3400 s5814) -(trans s3400 s5827) -(trans s3401 s5808) -(trans s3401 s5821) -(trans s3401 s5834) -(trans s3402 s5815) -(trans s3402 s5828) -(trans s3402 s5841) -(trans s3403 s5822) -(trans s3403 s5835) -(trans s3403 s5848) -(trans s3404 s5829) -(trans s3404 s5842) -(trans s3404 s5855) -(trans s3405 s5836) -(trans s3405 s5849) -(trans s3405 s5862) -(trans s3406 s5843) -(trans s3406 s5856) -(trans s3406 s5869) -(trans s3407 s5850) -(trans s3407 s5863) -(trans s3407 s5876) -(trans s3408 s5857) -(trans s3408 s5870) -(trans s3408 s5883) -(trans s3409 s5864) -(trans s3409 s5877) -(trans s3409 s5890) -(trans s3410 s5871) -(trans s3410 s5884) -(trans s3410 s5897) -(trans s3411 s5878) -(trans s3411 s5891) -(trans s3411 s5904) -(trans s3412 s5885) -(trans s3412 s5898) -(trans s3412 s5911) -(trans s3413 s5892) -(trans s3413 s5905) -(trans s3413 s5918) -(trans s3414 s5899) -(trans s3414 s5912) -(trans s3414 s5925) -(trans s3415 s5906) -(trans s3415 s5919) -(trans s3415 s5932) -(trans s3416 s5913) -(trans s3416 s5926) -(trans s3416 s5939) -(trans s3417 s5920) -(trans s3417 s5933) -(trans s3417 s5946) -(trans s3418 s5927) -(trans s3418 s5940) -(trans s3418 s5953) -(trans s3419 s5934) -(trans s3419 s5947) -(trans s3419 s5960) -(trans s3420 s5941) -(trans s3420 s5954) -(trans s3420 s5967) -(trans s3421 s5948) -(trans s3421 s5961) -(trans s3421 s5974) -(trans s3422 s5955) -(trans s3422 s5968) -(trans s3422 s5981) -(trans s3423 s5962) -(trans s3423 s5975) -(trans s3423 s5988) -(trans s3424 s5969) -(trans s3424 s5982) -(trans s3424 s5995) -(trans s3425 s5976) -(trans s3425 s5989) -(trans s3425 s2) -(trans s3426 s5983) -(trans s3426 s5996) -(trans s3426 s9) -(trans s3427 s5990) -(trans s3427 s3) -(trans s3427 s16) -(trans s3428 s5997) -(trans s3428 s10) -(trans s3428 s23) -(trans s3429 s4) -(trans s3429 s17) -(trans s3429 s30) -(trans s3430 s11) -(trans s3430 s24) -(trans s3430 s37) -(trans s3431 s18) -(trans s3431 s31) -(trans s3431 s44) -(trans s3432 s25) -(trans s3432 s38) -(trans s3432 s51) -(trans s3433 s32) -(trans s3433 s45) -(trans s3433 s58) -(trans s3434 s39) -(trans s3434 s52) -(trans s3434 s65) -(trans s3435 s46) -(trans s3435 s59) -(trans s3435 s72) -(trans s3436 s53) -(trans s3436 s66) -(trans s3436 s79) -(trans s3437 s60) -(trans s3437 s73) -(trans s3437 s86) -(trans s3438 s67) -(trans s3438 s80) -(trans s3438 s93) -(trans s3439 s74) -(trans s3439 s87) -(trans s3439 s100) -(trans s3440 s81) -(trans s3440 s94) -(trans s3440 s107) -(trans s3441 s88) -(trans s3441 s101) -(trans s3441 s114) -(trans s3442 s95) -(trans s3442 s108) -(trans s3442 s121) -(trans s3443 s102) -(trans s3443 s115) -(trans s3443 s128) -(trans s3444 s109) -(trans s3444 s122) -(trans s3444 s135) -(trans s3445 s116) -(trans s3445 s129) -(trans s3445 s142) -(trans s3446 s123) -(trans s3446 s136) -(trans s3446 s149) -(trans s3447 s130) -(trans s3447 s143) -(trans s3447 s156) -(trans s3448 s137) -(trans s3448 s150) -(trans s3448 s163) -(trans s3449 s144) -(trans s3449 s157) -(trans s3449 s170) -(trans s3450 s151) -(trans s3450 s164) -(trans s3450 s177) -(trans s3451 s158) -(trans s3451 s171) -(trans s3451 s184) -(trans s3452 s165) -(trans s3452 s178) -(trans s3452 s191) -(trans s3453 s172) -(trans s3453 s185) -(trans s3453 s198) -(trans s3454 s179) -(trans s3454 s192) -(trans s3454 s205) -(trans s3455 s186) -(trans s3455 s199) -(trans s3455 s212) -(trans s3456 s193) -(trans s3456 s206) -(trans s3456 s219) -(trans s3457 s200) -(trans s3457 s213) -(trans s3457 s226) -(trans s3458 s207) -(trans s3458 s220) -(trans s3458 s233) -(trans s3459 s214) -(trans s3459 s227) -(trans s3459 s240) -(trans s3460 s221) -(trans s3460 s234) -(trans s3460 s247) -(trans s3461 s228) -(trans s3461 s241) -(trans s3461 s254) -(trans s3462 s235) -(trans s3462 s248) -(trans s3462 s261) -(trans s3463 s242) -(trans s3463 s255) -(trans s3463 s268) -(trans s3464 s249) -(trans s3464 s262) -(trans s3464 s275) -(trans s3465 s256) -(trans s3465 s269) -(trans s3465 s282) -(trans s3466 s263) -(trans s3466 s276) -(trans s3466 s289) -(trans s3467 s270) -(trans s3467 s283) -(trans s3467 s296) -(trans s3468 s277) -(trans s3468 s290) -(trans s3468 s303) -(trans s3469 s284) -(trans s3469 s297) -(trans s3469 s310) -(trans s3470 s291) -(trans s3470 s304) -(trans s3470 s317) -(trans s3471 s298) -(trans s3471 s311) -(trans s3471 s324) -(trans s3472 s305) -(trans s3472 s318) -(trans s3472 s331) -(trans s3473 s312) -(trans s3473 s325) -(trans s3473 s338) -(trans s3474 s319) -(trans s3474 s332) -(trans s3474 s345) -(trans s3475 s326) -(trans s3475 s339) -(trans s3475 s352) -(trans s3476 s333) -(trans s3476 s346) -(trans s3476 s359) -(trans s3477 s340) -(trans s3477 s353) -(trans s3477 s366) -(trans s3478 s347) -(trans s3478 s360) -(trans s3478 s373) -(trans s3479 s354) -(trans s3479 s367) -(trans s3479 s380) -(trans s3480 s361) -(trans s3480 s374) -(trans s3480 s387) -(trans s3481 s368) -(trans s3481 s381) -(trans s3481 s394) -(trans s3482 s375) -(trans s3482 s388) -(trans s3482 s401) -(trans s3483 s382) -(trans s3483 s395) -(trans s3483 s408) -(trans s3484 s389) -(trans s3484 s402) -(trans s3484 s415) -(trans s3485 s396) -(trans s3485 s409) -(trans s3485 s422) -(trans s3486 s403) -(trans s3486 s416) -(trans s3486 s429) -(trans s3487 s410) -(trans s3487 s423) -(trans s3487 s436) -(trans s3488 s417) -(trans s3488 s430) -(trans s3488 s443) -(trans s3489 s424) -(trans s3489 s437) -(trans s3489 s450) -(trans s3490 s431) -(trans s3490 s444) -(trans s3490 s457) -(trans s3491 s438) -(trans s3491 s451) -(trans s3491 s464) -(trans s3492 s445) -(trans s3492 s458) -(trans s3492 s471) -(trans s3493 s452) -(trans s3493 s465) -(trans s3493 s478) -(trans s3494 s459) -(trans s3494 s472) -(trans s3494 s485) -(trans s3495 s466) -(trans s3495 s479) -(trans s3495 s492) -(trans s3496 s473) -(trans s3496 s486) -(trans s3496 s499) -(trans s3497 s480) -(trans s3497 s493) -(trans s3497 s506) -(trans s3498 s487) -(trans s3498 s500) -(trans s3498 s513) -(trans s3499 s494) -(trans s3499 s507) -(trans s3499 s520) -(trans s3500 s501) -(trans s3500 s514) -(trans s3500 s527) -(trans s3501 s508) -(trans s3501 s521) -(trans s3501 s534) -(trans s3502 s515) -(trans s3502 s528) -(trans s3502 s541) -(trans s3503 s522) -(trans s3503 s535) -(trans s3503 s548) -(trans s3504 s529) -(trans s3504 s542) -(trans s3504 s555) -(trans s3505 s536) -(trans s3505 s549) -(trans s3505 s562) -(trans s3506 s543) -(trans s3506 s556) -(trans s3506 s569) -(trans s3507 s550) -(trans s3507 s563) -(trans s3507 s576) -(trans s3508 s557) -(trans s3508 s570) -(trans s3508 s583) -(trans s3509 s564) -(trans s3509 s577) -(trans s3509 s590) -(trans s3510 s571) -(trans s3510 s584) -(trans s3510 s597) -(trans s3511 s578) -(trans s3511 s591) -(trans s3511 s604) -(trans s3512 s585) -(trans s3512 s598) -(trans s3512 s611) -(trans s3513 s592) -(trans s3513 s605) -(trans s3513 s618) -(trans s3514 s599) -(trans s3514 s612) -(trans s3514 s625) -(trans s3515 s606) -(trans s3515 s619) -(trans s3515 s632) -(trans s3516 s613) -(trans s3516 s626) -(trans s3516 s639) -(trans s3517 s620) -(trans s3517 s633) -(trans s3517 s646) -(trans s3518 s627) -(trans s3518 s640) -(trans s3518 s653) -(trans s3519 s634) -(trans s3519 s647) -(trans s3519 s660) -(trans s3520 s641) -(trans s3520 s654) -(trans s3520 s667) -(trans s3521 s648) -(trans s3521 s661) -(trans s3521 s674) -(trans s3522 s655) -(trans s3522 s668) -(trans s3522 s681) -(trans s3523 s662) -(trans s3523 s675) -(trans s3523 s688) -(trans s3524 s669) -(trans s3524 s682) -(trans s3524 s695) -(trans s3525 s676) -(trans s3525 s689) -(trans s3525 s702) -(trans s3526 s683) -(trans s3526 s696) -(trans s3526 s709) -(trans s3527 s690) -(trans s3527 s703) -(trans s3527 s716) -(trans s3528 s697) -(trans s3528 s710) -(trans s3528 s723) -(trans s3529 s704) -(trans s3529 s717) -(trans s3529 s730) -(trans s3530 s711) -(trans s3530 s724) -(trans s3530 s737) -(trans s3531 s718) -(trans s3531 s731) -(trans s3531 s744) -(trans s3532 s725) -(trans s3532 s738) -(trans s3532 s751) -(trans s3533 s732) -(trans s3533 s745) -(trans s3533 s758) -(trans s3534 s739) -(trans s3534 s752) -(trans s3534 s765) -(trans s3535 s746) -(trans s3535 s759) -(trans s3535 s772) -(trans s3536 s753) -(trans s3536 s766) -(trans s3536 s779) -(trans s3537 s760) -(trans s3537 s773) -(trans s3537 s786) -(trans s3538 s767) -(trans s3538 s780) -(trans s3538 s793) -(trans s3539 s774) -(trans s3539 s787) -(trans s3539 s800) -(trans s3540 s781) -(trans s3540 s794) -(trans s3540 s807) -(trans s3541 s788) -(trans s3541 s801) -(trans s3541 s814) -(trans s3542 s795) -(trans s3542 s808) -(trans s3542 s821) -(trans s3543 s802) -(trans s3543 s815) -(trans s3543 s828) -(trans s3544 s809) -(trans s3544 s822) -(trans s3544 s835) -(trans s3545 s816) -(trans s3545 s829) -(trans s3545 s842) -(trans s3546 s823) -(trans s3546 s836) -(trans s3546 s849) -(trans s3547 s830) -(trans s3547 s843) -(trans s3547 s856) -(trans s3548 s837) -(trans s3548 s850) -(trans s3548 s863) -(trans s3549 s844) -(trans s3549 s857) -(trans s3549 s870) -(trans s3550 s851) -(trans s3550 s864) -(trans s3550 s877) -(trans s3551 s858) -(trans s3551 s871) -(trans s3551 s884) -(trans s3552 s865) -(trans s3552 s878) -(trans s3552 s891) -(trans s3553 s872) -(trans s3553 s885) -(trans s3553 s898) -(trans s3554 s879) -(trans s3554 s892) -(trans s3554 s905) -(trans s3555 s886) -(trans s3555 s899) -(trans s3555 s912) -(trans s3556 s893) -(trans s3556 s906) -(trans s3556 s919) -(trans s3557 s900) -(trans s3557 s913) -(trans s3557 s926) -(trans s3558 s907) -(trans s3558 s920) -(trans s3558 s933) -(trans s3559 s914) -(trans s3559 s927) -(trans s3559 s940) -(trans s3560 s921) -(trans s3560 s934) -(trans s3560 s947) -(trans s3561 s928) -(trans s3561 s941) -(trans s3561 s954) -(trans s3562 s935) -(trans s3562 s948) -(trans s3562 s961) -(trans s3563 s942) -(trans s3563 s955) -(trans s3563 s968) -(trans s3564 s949) -(trans s3564 s962) -(trans s3564 s975) -(trans s3565 s956) -(trans s3565 s969) -(trans s3565 s982) -(trans s3566 s963) -(trans s3566 s976) -(trans s3566 s989) -(trans s3567 s970) -(trans s3567 s983) -(trans s3567 s996) -(trans s3568 s977) -(trans s3568 s990) -(trans s3568 s1003) -(trans s3569 s984) -(trans s3569 s997) -(trans s3569 s1010) -(trans s3570 s991) -(trans s3570 s1004) -(trans s3570 s1017) -(trans s3571 s998) -(trans s3571 s1011) -(trans s3571 s1024) -(trans s3572 s1005) -(trans s3572 s1018) -(trans s3572 s1031) -(trans s3573 s1012) -(trans s3573 s1025) -(trans s3573 s1038) -(trans s3574 s1019) -(trans s3574 s1032) -(trans s3574 s1045) -(trans s3575 s1026) -(trans s3575 s1039) -(trans s3575 s1052) -(trans s3576 s1033) -(trans s3576 s1046) -(trans s3576 s1059) -(trans s3577 s1040) -(trans s3577 s1053) -(trans s3577 s1066) -(trans s3578 s1047) -(trans s3578 s1060) -(trans s3578 s1073) -(trans s3579 s1054) -(trans s3579 s1067) -(trans s3579 s1080) -(trans s3580 s1061) -(trans s3580 s1074) -(trans s3580 s1087) -(trans s3581 s1068) -(trans s3581 s1081) -(trans s3581 s1094) -(trans s3582 s1075) -(trans s3582 s1088) -(trans s3582 s1101) -(trans s3583 s1082) -(trans s3583 s1095) -(trans s3583 s1108) -(trans s3584 s1089) -(trans s3584 s1102) -(trans s3584 s1115) -(trans s3585 s1096) -(trans s3585 s1109) -(trans s3585 s1122) -(trans s3586 s1103) -(trans s3586 s1116) -(trans s3586 s1129) -(trans s3587 s1110) -(trans s3587 s1123) -(trans s3587 s1136) -(trans s3588 s1117) -(trans s3588 s1130) -(trans s3588 s1143) -(trans s3589 s1124) -(trans s3589 s1137) -(trans s3589 s1150) -(trans s3590 s1131) -(trans s3590 s1144) -(trans s3590 s1157) -(trans s3591 s1138) -(trans s3591 s1151) -(trans s3591 s1164) -(trans s3592 s1145) -(trans s3592 s1158) -(trans s3592 s1171) -(trans s3593 s1152) -(trans s3593 s1165) -(trans s3593 s1178) -(trans s3594 s1159) -(trans s3594 s1172) -(trans s3594 s1185) -(trans s3595 s1166) -(trans s3595 s1179) -(trans s3595 s1192) -(trans s3596 s1173) -(trans s3596 s1186) -(trans s3596 s1199) -(trans s3597 s1180) -(trans s3597 s1193) -(trans s3597 s1206) -(trans s3598 s1187) -(trans s3598 s1200) -(trans s3598 s1213) -(trans s3599 s1194) -(trans s3599 s1207) -(trans s3599 s1220) -(trans s3600 s1201) -(trans s3600 s1214) -(trans s3600 s1227) -(trans s3601 s1208) -(trans s3601 s1221) -(trans s3601 s1234) -(trans s3602 s1215) -(trans s3602 s1228) -(trans s3602 s1241) -(trans s3603 s1222) -(trans s3603 s1235) -(trans s3603 s1248) -(trans s3604 s1229) -(trans s3604 s1242) -(trans s3604 s1255) -(trans s3605 s1236) -(trans s3605 s1249) -(trans s3605 s1262) -(trans s3606 s1243) -(trans s3606 s1256) -(trans s3606 s1269) -(trans s3607 s1250) -(trans s3607 s1263) -(trans s3607 s1276) -(trans s3608 s1257) -(trans s3608 s1270) -(trans s3608 s1283) -(trans s3609 s1264) -(trans s3609 s1277) -(trans s3609 s1290) -(trans s3610 s1271) -(trans s3610 s1284) -(trans s3610 s1297) -(trans s3611 s1278) -(trans s3611 s1291) -(trans s3611 s1304) -(trans s3612 s1285) -(trans s3612 s1298) -(trans s3612 s1311) -(trans s3613 s1292) -(trans s3613 s1305) -(trans s3613 s1318) -(trans s3614 s1299) -(trans s3614 s1312) -(trans s3614 s1325) -(trans s3615 s1306) -(trans s3615 s1319) -(trans s3615 s1332) -(trans s3616 s1313) -(trans s3616 s1326) -(trans s3616 s1339) -(trans s3617 s1320) -(trans s3617 s1333) -(trans s3617 s1346) -(trans s3618 s1327) -(trans s3618 s1340) -(trans s3618 s1353) -(trans s3619 s1334) -(trans s3619 s1347) -(trans s3619 s1360) -(trans s3620 s1341) -(trans s3620 s1354) -(trans s3620 s1367) -(trans s3621 s1348) -(trans s3621 s1361) -(trans s3621 s1374) -(trans s3622 s1355) -(trans s3622 s1368) -(trans s3622 s1381) -(trans s3623 s1362) -(trans s3623 s1375) -(trans s3623 s1388) -(trans s3624 s1369) -(trans s3624 s1382) -(trans s3624 s1395) -(trans s3625 s1376) -(trans s3625 s1389) -(trans s3625 s1402) -(trans s3626 s1383) -(trans s3626 s1396) -(trans s3626 s1409) -(trans s3627 s1390) -(trans s3627 s1403) -(trans s3627 s1416) -(trans s3628 s1397) -(trans s3628 s1410) -(trans s3628 s1423) -(trans s3629 s1404) -(trans s3629 s1417) -(trans s3629 s1430) -(trans s3630 s1411) -(trans s3630 s1424) -(trans s3630 s1437) -(trans s3631 s1418) -(trans s3631 s1431) -(trans s3631 s1444) -(trans s3632 s1425) -(trans s3632 s1438) -(trans s3632 s1451) -(trans s3633 s1432) -(trans s3633 s1445) -(trans s3633 s1458) -(trans s3634 s1439) -(trans s3634 s1452) -(trans s3634 s1465) -(trans s3635 s1446) -(trans s3635 s1459) -(trans s3635 s1472) -(trans s3636 s1453) -(trans s3636 s1466) -(trans s3636 s1479) -(trans s3637 s1460) -(trans s3637 s1473) -(trans s3637 s1486) -(trans s3638 s1467) -(trans s3638 s1480) -(trans s3638 s1493) -(trans s3639 s1474) -(trans s3639 s1487) -(trans s3639 s1500) -(trans s3640 s1481) -(trans s3640 s1494) -(trans s3640 s1507) -(trans s3641 s1488) -(trans s3641 s1501) -(trans s3641 s1514) -(trans s3642 s1495) -(trans s3642 s1508) -(trans s3642 s1521) -(trans s3643 s1502) -(trans s3643 s1515) -(trans s3643 s1528) -(trans s3644 s1509) -(trans s3644 s1522) -(trans s3644 s1535) -(trans s3645 s1516) -(trans s3645 s1529) -(trans s3645 s1542) -(trans s3646 s1523) -(trans s3646 s1536) -(trans s3646 s1549) -(trans s3647 s1530) -(trans s3647 s1543) -(trans s3647 s1556) -(trans s3648 s1537) -(trans s3648 s1550) -(trans s3648 s1563) -(trans s3649 s1544) -(trans s3649 s1557) -(trans s3649 s1570) -(trans s3650 s1551) -(trans s3650 s1564) -(trans s3650 s1577) -(trans s3651 s1558) -(trans s3651 s1571) -(trans s3651 s1584) -(trans s3652 s1565) -(trans s3652 s1578) -(trans s3652 s1591) -(trans s3653 s1572) -(trans s3653 s1585) -(trans s3653 s1598) -(trans s3654 s1579) -(trans s3654 s1592) -(trans s3654 s1605) -(trans s3655 s1586) -(trans s3655 s1599) -(trans s3655 s1612) -(trans s3656 s1593) -(trans s3656 s1606) -(trans s3656 s1619) -(trans s3657 s1600) -(trans s3657 s1613) -(trans s3657 s1626) -(trans s3658 s1607) -(trans s3658 s1620) -(trans s3658 s1633) -(trans s3659 s1614) -(trans s3659 s1627) -(trans s3659 s1640) -(trans s3660 s1621) -(trans s3660 s1634) -(trans s3660 s1647) -(trans s3661 s1628) -(trans s3661 s1641) -(trans s3661 s1654) -(trans s3662 s1635) -(trans s3662 s1648) -(trans s3662 s1661) -(trans s3663 s1642) -(trans s3663 s1655) -(trans s3663 s1668) -(trans s3664 s1649) -(trans s3664 s1662) -(trans s3664 s1675) -(trans s3665 s1656) -(trans s3665 s1669) -(trans s3665 s1682) -(trans s3666 s1663) -(trans s3666 s1676) -(trans s3666 s1689) -(trans s3667 s1670) -(trans s3667 s1683) -(trans s3667 s1696) -(trans s3668 s1677) -(trans s3668 s1690) -(trans s3668 s1703) -(trans s3669 s1684) -(trans s3669 s1697) -(trans s3669 s1710) -(trans s3670 s1691) -(trans s3670 s1704) -(trans s3670 s1717) -(trans s3671 s1698) -(trans s3671 s1711) -(trans s3671 s1724) -(trans s3672 s1705) -(trans s3672 s1718) -(trans s3672 s1731) -(trans s3673 s1712) -(trans s3673 s1725) -(trans s3673 s1738) -(trans s3674 s1719) -(trans s3674 s1732) -(trans s3674 s1745) -(trans s3675 s1726) -(trans s3675 s1739) -(trans s3675 s1752) -(trans s3676 s1733) -(trans s3676 s1746) -(trans s3676 s1759) -(trans s3677 s1740) -(trans s3677 s1753) -(trans s3677 s1766) -(trans s3678 s1747) -(trans s3678 s1760) -(trans s3678 s1773) -(trans s3679 s1754) -(trans s3679 s1767) -(trans s3679 s1780) -(trans s3680 s1761) -(trans s3680 s1774) -(trans s3680 s1787) -(trans s3681 s1768) -(trans s3681 s1781) -(trans s3681 s1794) -(trans s3682 s1775) -(trans s3682 s1788) -(trans s3682 s1801) -(trans s3683 s1782) -(trans s3683 s1795) -(trans s3683 s1808) -(trans s3684 s1789) -(trans s3684 s1802) -(trans s3684 s1815) -(trans s3685 s1796) -(trans s3685 s1809) -(trans s3685 s1822) -(trans s3686 s1803) -(trans s3686 s1816) -(trans s3686 s1829) -(trans s3687 s1810) -(trans s3687 s1823) -(trans s3687 s1836) -(trans s3688 s1817) -(trans s3688 s1830) -(trans s3688 s1843) -(trans s3689 s1824) -(trans s3689 s1837) -(trans s3689 s1850) -(trans s3690 s1831) -(trans s3690 s1844) -(trans s3690 s1857) -(trans s3691 s1838) -(trans s3691 s1851) -(trans s3691 s1864) -(trans s3692 s1845) -(trans s3692 s1858) -(trans s3692 s1871) -(trans s3693 s1852) -(trans s3693 s1865) -(trans s3693 s1878) -(trans s3694 s1859) -(trans s3694 s1872) -(trans s3694 s1885) -(trans s3695 s1866) -(trans s3695 s1879) -(trans s3695 s1892) -(trans s3696 s1873) -(trans s3696 s1886) -(trans s3696 s1899) -(trans s3697 s1880) -(trans s3697 s1893) -(trans s3697 s1906) -(trans s3698 s1887) -(trans s3698 s1900) -(trans s3698 s1913) -(trans s3699 s1894) -(trans s3699 s1907) -(trans s3699 s1920) -(trans s3700 s1901) -(trans s3700 s1914) -(trans s3700 s1927) -(trans s3701 s1908) -(trans s3701 s1921) -(trans s3701 s1934) -(trans s3702 s1915) -(trans s3702 s1928) -(trans s3702 s1941) -(trans s3703 s1922) -(trans s3703 s1935) -(trans s3703 s1948) -(trans s3704 s1929) -(trans s3704 s1942) -(trans s3704 s1955) -(trans s3705 s1936) -(trans s3705 s1949) -(trans s3705 s1962) -(trans s3706 s1943) -(trans s3706 s1956) -(trans s3706 s1969) -(trans s3707 s1950) -(trans s3707 s1963) -(trans s3707 s1976) -(trans s3708 s1957) -(trans s3708 s1970) -(trans s3708 s1983) -(trans s3709 s1964) -(trans s3709 s1977) -(trans s3709 s1990) -(trans s3710 s1971) -(trans s3710 s1984) -(trans s3710 s1997) -(trans s3711 s1978) -(trans s3711 s1991) -(trans s3711 s2004) -(trans s3712 s1985) -(trans s3712 s1998) -(trans s3712 s2011) -(trans s3713 s1992) -(trans s3713 s2005) -(trans s3713 s2018) -(trans s3714 s1999) -(trans s3714 s2012) -(trans s3714 s2025) -(trans s3715 s2006) -(trans s3715 s2019) -(trans s3715 s2032) -(trans s3716 s2013) -(trans s3716 s2026) -(trans s3716 s2039) -(trans s3717 s2020) -(trans s3717 s2033) -(trans s3717 s2046) -(trans s3718 s2027) -(trans s3718 s2040) -(trans s3718 s2053) -(trans s3719 s2034) -(trans s3719 s2047) -(trans s3719 s2060) -(trans s3720 s2041) -(trans s3720 s2054) -(trans s3720 s2067) -(trans s3721 s2048) -(trans s3721 s2061) -(trans s3721 s2074) -(trans s3722 s2055) -(trans s3722 s2068) -(trans s3722 s2081) -(trans s3723 s2062) -(trans s3723 s2075) -(trans s3723 s2088) -(trans s3724 s2069) -(trans s3724 s2082) -(trans s3724 s2095) -(trans s3725 s2076) -(trans s3725 s2089) -(trans s3725 s2102) -(trans s3726 s2083) -(trans s3726 s2096) -(trans s3726 s2109) -(trans s3727 s2090) -(trans s3727 s2103) -(trans s3727 s2116) -(trans s3728 s2097) -(trans s3728 s2110) -(trans s3728 s2123) -(trans s3729 s2104) -(trans s3729 s2117) -(trans s3729 s2130) -(trans s3730 s2111) -(trans s3730 s2124) -(trans s3730 s2137) -(trans s3731 s2118) -(trans s3731 s2131) -(trans s3731 s2144) -(trans s3732 s2125) -(trans s3732 s2138) -(trans s3732 s2151) -(trans s3733 s2132) -(trans s3733 s2145) -(trans s3733 s2158) -(trans s3734 s2139) -(trans s3734 s2152) -(trans s3734 s2165) -(trans s3735 s2146) -(trans s3735 s2159) -(trans s3735 s2172) -(trans s3736 s2153) -(trans s3736 s2166) -(trans s3736 s2179) -(trans s3737 s2160) -(trans s3737 s2173) -(trans s3737 s2186) -(trans s3738 s2167) -(trans s3738 s2180) -(trans s3738 s2193) -(trans s3739 s2174) -(trans s3739 s2187) -(trans s3739 s2200) -(trans s3740 s2181) -(trans s3740 s2194) -(trans s3740 s2207) -(trans s3741 s2188) -(trans s3741 s2201) -(trans s3741 s2214) -(trans s3742 s2195) -(trans s3742 s2208) -(trans s3742 s2221) -(trans s3743 s2202) -(trans s3743 s2215) -(trans s3743 s2228) -(trans s3744 s2209) -(trans s3744 s2222) -(trans s3744 s2235) -(trans s3745 s2216) -(trans s3745 s2229) -(trans s3745 s2242) -(trans s3746 s2223) -(trans s3746 s2236) -(trans s3746 s2249) -(trans s3747 s2230) -(trans s3747 s2243) -(trans s3747 s2256) -(trans s3748 s2237) -(trans s3748 s2250) -(trans s3748 s2263) -(trans s3749 s2244) -(trans s3749 s2257) -(trans s3749 s2270) -(trans s3750 s2251) -(trans s3750 s2264) -(trans s3750 s2277) -(trans s3751 s2258) -(trans s3751 s2271) -(trans s3751 s2284) -(trans s3752 s2265) -(trans s3752 s2278) -(trans s3752 s2291) -(trans s3753 s2272) -(trans s3753 s2285) -(trans s3753 s2298) -(trans s3754 s2279) -(trans s3754 s2292) -(trans s3754 s2305) -(trans s3755 s2286) -(trans s3755 s2299) -(trans s3755 s2312) -(trans s3756 s2293) -(trans s3756 s2306) -(trans s3756 s2319) -(trans s3757 s2300) -(trans s3757 s2313) -(trans s3757 s2326) -(trans s3758 s2307) -(trans s3758 s2320) -(trans s3758 s2333) -(trans s3759 s2314) -(trans s3759 s2327) -(trans s3759 s2340) -(trans s3760 s2321) -(trans s3760 s2334) -(trans s3760 s2347) -(trans s3761 s2328) -(trans s3761 s2341) -(trans s3761 s2354) -(trans s3762 s2335) -(trans s3762 s2348) -(trans s3762 s2361) -(trans s3763 s2342) -(trans s3763 s2355) -(trans s3763 s2368) -(trans s3764 s2349) -(trans s3764 s2362) -(trans s3764 s2375) -(trans s3765 s2356) -(trans s3765 s2369) -(trans s3765 s2382) -(trans s3766 s2363) -(trans s3766 s2376) -(trans s3766 s2389) -(trans s3767 s2370) -(trans s3767 s2383) -(trans s3767 s2396) -(trans s3768 s2377) -(trans s3768 s2390) -(trans s3768 s2403) -(trans s3769 s2384) -(trans s3769 s2397) -(trans s3769 s2410) -(trans s3770 s2391) -(trans s3770 s2404) -(trans s3770 s2417) -(trans s3771 s2398) -(trans s3771 s2411) -(trans s3771 s2424) -(trans s3772 s2405) -(trans s3772 s2418) -(trans s3772 s2431) -(trans s3773 s2412) -(trans s3773 s2425) -(trans s3773 s2438) -(trans s3774 s2419) -(trans s3774 s2432) -(trans s3774 s2445) -(trans s3775 s2426) -(trans s3775 s2439) -(trans s3775 s2452) -(trans s3776 s2433) -(trans s3776 s2446) -(trans s3776 s2459) -(trans s3777 s2440) -(trans s3777 s2453) -(trans s3777 s2466) -(trans s3778 s2447) -(trans s3778 s2460) -(trans s3778 s2473) -(trans s3779 s2454) -(trans s3779 s2467) -(trans s3779 s2480) -(trans s3780 s2461) -(trans s3780 s2474) -(trans s3780 s2487) -(trans s3781 s2468) -(trans s3781 s2481) -(trans s3781 s2494) -(trans s3782 s2475) -(trans s3782 s2488) -(trans s3782 s2501) -(trans s3783 s2482) -(trans s3783 s2495) -(trans s3783 s2508) -(trans s3784 s2489) -(trans s3784 s2502) -(trans s3784 s2515) -(trans s3785 s2496) -(trans s3785 s2509) -(trans s3785 s2522) -(trans s3786 s2503) -(trans s3786 s2516) -(trans s3786 s2529) -(trans s3787 s2510) -(trans s3787 s2523) -(trans s3787 s2536) -(trans s3788 s2517) -(trans s3788 s2530) -(trans s3788 s2543) -(trans s3789 s2524) -(trans s3789 s2537) -(trans s3789 s2550) -(trans s3790 s2531) -(trans s3790 s2544) -(trans s3790 s2557) -(trans s3791 s2538) -(trans s3791 s2551) -(trans s3791 s2564) -(trans s3792 s2545) -(trans s3792 s2558) -(trans s3792 s2571) -(trans s3793 s2552) -(trans s3793 s2565) -(trans s3793 s2578) -(trans s3794 s2559) -(trans s3794 s2572) -(trans s3794 s2585) -(trans s3795 s2566) -(trans s3795 s2579) -(trans s3795 s2592) -(trans s3796 s2573) -(trans s3796 s2586) -(trans s3796 s2599) -(trans s3797 s2580) -(trans s3797 s2593) -(trans s3797 s2606) -(trans s3798 s2587) -(trans s3798 s2600) -(trans s3798 s2613) -(trans s3799 s2594) -(trans s3799 s2607) -(trans s3799 s2620) -(trans s3800 s2601) -(trans s3800 s2614) -(trans s3800 s2627) -(trans s3801 s2608) -(trans s3801 s2621) -(trans s3801 s2634) -(trans s3802 s2615) -(trans s3802 s2628) -(trans s3802 s2641) -(trans s3803 s2622) -(trans s3803 s2635) -(trans s3803 s2648) -(trans s3804 s2629) -(trans s3804 s2642) -(trans s3804 s2655) -(trans s3805 s2636) -(trans s3805 s2649) -(trans s3805 s2662) -(trans s3806 s2643) -(trans s3806 s2656) -(trans s3806 s2669) -(trans s3807 s2650) -(trans s3807 s2663) -(trans s3807 s2676) -(trans s3808 s2657) -(trans s3808 s2670) -(trans s3808 s2683) -(trans s3809 s2664) -(trans s3809 s2677) -(trans s3809 s2690) -(trans s3810 s2671) -(trans s3810 s2684) -(trans s3810 s2697) -(trans s3811 s2678) -(trans s3811 s2691) -(trans s3811 s2704) -(trans s3812 s2685) -(trans s3812 s2698) -(trans s3812 s2711) -(trans s3813 s2692) -(trans s3813 s2705) -(trans s3813 s2718) -(trans s3814 s2699) -(trans s3814 s2712) -(trans s3814 s2725) -(trans s3815 s2706) -(trans s3815 s2719) -(trans s3815 s2732) -(trans s3816 s2713) -(trans s3816 s2726) -(trans s3816 s2739) -(trans s3817 s2720) -(trans s3817 s2733) -(trans s3817 s2746) -(trans s3818 s2727) -(trans s3818 s2740) -(trans s3818 s2753) -(trans s3819 s2734) -(trans s3819 s2747) -(trans s3819 s2760) -(trans s3820 s2741) -(trans s3820 s2754) -(trans s3820 s2767) -(trans s3821 s2748) -(trans s3821 s2761) -(trans s3821 s2774) -(trans s3822 s2755) -(trans s3822 s2768) -(trans s3822 s2781) -(trans s3823 s2762) -(trans s3823 s2775) -(trans s3823 s2788) -(trans s3824 s2769) -(trans s3824 s2782) -(trans s3824 s2795) -(trans s3825 s2776) -(trans s3825 s2789) -(trans s3825 s2802) -(trans s3826 s2783) -(trans s3826 s2796) -(trans s3826 s2809) -(trans s3827 s2790) -(trans s3827 s2803) -(trans s3827 s2816) -(trans s3828 s2797) -(trans s3828 s2810) -(trans s3828 s2823) -(trans s3829 s2804) -(trans s3829 s2817) -(trans s3829 s2830) -(trans s3830 s2811) -(trans s3830 s2824) -(trans s3830 s2837) -(trans s3831 s2818) -(trans s3831 s2831) -(trans s3831 s2844) -(trans s3832 s2825) -(trans s3832 s2838) -(trans s3832 s2851) -(trans s3833 s2832) -(trans s3833 s2845) -(trans s3833 s2858) -(trans s3834 s2839) -(trans s3834 s2852) -(trans s3834 s2865) -(trans s3835 s2846) -(trans s3835 s2859) -(trans s3835 s2872) -(trans s3836 s2853) -(trans s3836 s2866) -(trans s3836 s2879) -(trans s3837 s2860) -(trans s3837 s2873) -(trans s3837 s2886) -(trans s3838 s2867) -(trans s3838 s2880) -(trans s3838 s2893) -(trans s3839 s2874) -(trans s3839 s2887) -(trans s3839 s2900) -(trans s3840 s2881) -(trans s3840 s2894) -(trans s3840 s2907) -(trans s3841 s2888) -(trans s3841 s2901) -(trans s3841 s2914) -(trans s3842 s2895) -(trans s3842 s2908) -(trans s3842 s2921) -(trans s3843 s2902) -(trans s3843 s2915) -(trans s3843 s2928) -(trans s3844 s2909) -(trans s3844 s2922) -(trans s3844 s2935) -(trans s3845 s2916) -(trans s3845 s2929) -(trans s3845 s2942) -(trans s3846 s2923) -(trans s3846 s2936) -(trans s3846 s2949) -(trans s3847 s2930) -(trans s3847 s2943) -(trans s3847 s2956) -(trans s3848 s2937) -(trans s3848 s2950) -(trans s3848 s2963) -(trans s3849 s2944) -(trans s3849 s2957) -(trans s3849 s2970) -(trans s3850 s2951) -(trans s3850 s2964) -(trans s3850 s2977) -(trans s3851 s2958) -(trans s3851 s2971) -(trans s3851 s2984) -(trans s3852 s2965) -(trans s3852 s2978) -(trans s3852 s2991) -(trans s3853 s2972) -(trans s3853 s2985) -(trans s3853 s2998) -(trans s3854 s2979) -(trans s3854 s2992) -(trans s3854 s3005) -(trans s3855 s2986) -(trans s3855 s2999) -(trans s3855 s3012) -(trans s3856 s2993) -(trans s3856 s3006) -(trans s3856 s3019) -(trans s3857 s3000) -(trans s3857 s3013) -(trans s3857 s3026) -(trans s3858 s3007) -(trans s3858 s3020) -(trans s3858 s3033) -(trans s3859 s3014) -(trans s3859 s3027) -(trans s3859 s3040) -(trans s3860 s3021) -(trans s3860 s3034) -(trans s3860 s3047) -(trans s3861 s3028) -(trans s3861 s3041) -(trans s3861 s3054) -(trans s3862 s3035) -(trans s3862 s3048) -(trans s3862 s3061) -(trans s3863 s3042) -(trans s3863 s3055) -(trans s3863 s3068) -(trans s3864 s3049) -(trans s3864 s3062) -(trans s3864 s3075) -(trans s3865 s3056) -(trans s3865 s3069) -(trans s3865 s3082) -(trans s3866 s3063) -(trans s3866 s3076) -(trans s3866 s3089) -(trans s3867 s3070) -(trans s3867 s3083) -(trans s3867 s3096) -(trans s3868 s3077) -(trans s3868 s3090) -(trans s3868 s3103) -(trans s3869 s3084) -(trans s3869 s3097) -(trans s3869 s3110) -(trans s3870 s3091) -(trans s3870 s3104) -(trans s3870 s3117) -(trans s3871 s3098) -(trans s3871 s3111) -(trans s3871 s3124) -(trans s3872 s3105) -(trans s3872 s3118) -(trans s3872 s3131) -(trans s3873 s3112) -(trans s3873 s3125) -(trans s3873 s3138) -(trans s3874 s3119) -(trans s3874 s3132) -(trans s3874 s3145) -(trans s3875 s3126) -(trans s3875 s3139) -(trans s3875 s3152) -(trans s3876 s3133) -(trans s3876 s3146) -(trans s3876 s3159) -(trans s3877 s3140) -(trans s3877 s3153) -(trans s3877 s3166) -(trans s3878 s3147) -(trans s3878 s3160) -(trans s3878 s3173) -(trans s3879 s3154) -(trans s3879 s3167) -(trans s3879 s3180) -(trans s3880 s3161) -(trans s3880 s3174) -(trans s3880 s3187) -(trans s3881 s3168) -(trans s3881 s3181) -(trans s3881 s3194) -(trans s3882 s3175) -(trans s3882 s3188) -(trans s3882 s3201) -(trans s3883 s3182) -(trans s3883 s3195) -(trans s3883 s3208) -(trans s3884 s3189) -(trans s3884 s3202) -(trans s3884 s3215) -(trans s3885 s3196) -(trans s3885 s3209) -(trans s3885 s3222) -(trans s3886 s3203) -(trans s3886 s3216) -(trans s3886 s3229) -(trans s3887 s3210) -(trans s3887 s3223) -(trans s3887 s3236) -(trans s3888 s3217) -(trans s3888 s3230) -(trans s3888 s3243) -(trans s3889 s3224) -(trans s3889 s3237) -(trans s3889 s3250) -(trans s3890 s3231) -(trans s3890 s3244) -(trans s3890 s3257) -(trans s3891 s3238) -(trans s3891 s3251) -(trans s3891 s3264) -(trans s3892 s3245) -(trans s3892 s3258) -(trans s3892 s3271) -(trans s3893 s3252) -(trans s3893 s3265) -(trans s3893 s3278) -(trans s3894 s3259) -(trans s3894 s3272) -(trans s3894 s3285) -(trans s3895 s3266) -(trans s3895 s3279) -(trans s3895 s3292) -(trans s3896 s3273) -(trans s3896 s3286) -(trans s3896 s3299) -(trans s3897 s3280) -(trans s3897 s3293) -(trans s3897 s3306) -(trans s3898 s3287) -(trans s3898 s3300) -(trans s3898 s3313) -(trans s3899 s3294) -(trans s3899 s3307) -(trans s3899 s3320) -(trans s3900 s3301) -(trans s3900 s3314) -(trans s3900 s3327) -(trans s3901 s3308) -(trans s3901 s3321) -(trans s3901 s3334) -(trans s3902 s3315) -(trans s3902 s3328) -(trans s3902 s3341) -(trans s3903 s3322) -(trans s3903 s3335) -(trans s3903 s3348) -(trans s3904 s3329) -(trans s3904 s3342) -(trans s3904 s3355) -(trans s3905 s3336) -(trans s3905 s3349) -(trans s3905 s3362) -(trans s3906 s3343) -(trans s3906 s3356) -(trans s3906 s3369) -(trans s3907 s3350) -(trans s3907 s3363) -(trans s3907 s3376) -(trans s3908 s3357) -(trans s3908 s3370) -(trans s3908 s3383) -(trans s3909 s3364) -(trans s3909 s3377) -(trans s3909 s3390) -(trans s3910 s3371) -(trans s3910 s3384) -(trans s3910 s3397) -(trans s3911 s3378) -(trans s3911 s3391) -(trans s3911 s3404) -(trans s3912 s3385) -(trans s3912 s3398) -(trans s3912 s3411) -(trans s3913 s3392) -(trans s3913 s3405) -(trans s3913 s3418) -(trans s3914 s3399) -(trans s3914 s3412) -(trans s3914 s3425) -(trans s3915 s3406) -(trans s3915 s3419) -(trans s3915 s3432) -(trans s3916 s3413) -(trans s3916 s3426) -(trans s3916 s3439) -(trans s3917 s3420) -(trans s3917 s3433) -(trans s3917 s3446) -(trans s3918 s3427) -(trans s3918 s3440) -(trans s3918 s3453) -(trans s3919 s3434) -(trans s3919 s3447) -(trans s3919 s3460) -(trans s3920 s3441) -(trans s3920 s3454) -(trans s3920 s3467) -(trans s3921 s3448) -(trans s3921 s3461) -(trans s3921 s3474) -(trans s3922 s3455) -(trans s3922 s3468) -(trans s3922 s3481) -(trans s3923 s3462) -(trans s3923 s3475) -(trans s3923 s3488) -(trans s3924 s3469) -(trans s3924 s3482) -(trans s3924 s3495) -(trans s3925 s3476) -(trans s3925 s3489) -(trans s3925 s3502) -(trans s3926 s3483) -(trans s3926 s3496) -(trans s3926 s3509) -(trans s3927 s3490) -(trans s3927 s3503) -(trans s3927 s3516) -(trans s3928 s3497) -(trans s3928 s3510) -(trans s3928 s3523) -(trans s3929 s3504) -(trans s3929 s3517) -(trans s3929 s3530) -(trans s3930 s3511) -(trans s3930 s3524) -(trans s3930 s3537) -(trans s3931 s3518) -(trans s3931 s3531) -(trans s3931 s3544) -(trans s3932 s3525) -(trans s3932 s3538) -(trans s3932 s3551) -(trans s3933 s3532) -(trans s3933 s3545) -(trans s3933 s3558) -(trans s3934 s3539) -(trans s3934 s3552) -(trans s3934 s3565) -(trans s3935 s3546) -(trans s3935 s3559) -(trans s3935 s3572) -(trans s3936 s3553) -(trans s3936 s3566) -(trans s3936 s3579) -(trans s3937 s3560) -(trans s3937 s3573) -(trans s3937 s3586) -(trans s3938 s3567) -(trans s3938 s3580) -(trans s3938 s3593) -(trans s3939 s3574) -(trans s3939 s3587) -(trans s3939 s3600) -(trans s3940 s3581) -(trans s3940 s3594) -(trans s3940 s3607) -(trans s3941 s3588) -(trans s3941 s3601) -(trans s3941 s3614) -(trans s3942 s3595) -(trans s3942 s3608) -(trans s3942 s3621) -(trans s3943 s3602) -(trans s3943 s3615) -(trans s3943 s3628) -(trans s3944 s3609) -(trans s3944 s3622) -(trans s3944 s3635) -(trans s3945 s3616) -(trans s3945 s3629) -(trans s3945 s3642) -(trans s3946 s3623) -(trans s3946 s3636) -(trans s3946 s3649) -(trans s3947 s3630) -(trans s3947 s3643) -(trans s3947 s3656) -(trans s3948 s3637) -(trans s3948 s3650) -(trans s3948 s3663) -(trans s3949 s3644) -(trans s3949 s3657) -(trans s3949 s3670) -(trans s3950 s3651) -(trans s3950 s3664) -(trans s3950 s3677) -(trans s3951 s3658) -(trans s3951 s3671) -(trans s3951 s3684) -(trans s3952 s3665) -(trans s3952 s3678) -(trans s3952 s3691) -(trans s3953 s3672) -(trans s3953 s3685) -(trans s3953 s3698) -(trans s3954 s3679) -(trans s3954 s3692) -(trans s3954 s3705) -(trans s3955 s3686) -(trans s3955 s3699) -(trans s3955 s3712) -(trans s3956 s3693) -(trans s3956 s3706) -(trans s3956 s3719) -(trans s3957 s3700) -(trans s3957 s3713) -(trans s3957 s3726) -(trans s3958 s3707) -(trans s3958 s3720) -(trans s3958 s3733) -(trans s3959 s3714) -(trans s3959 s3727) -(trans s3959 s3740) -(trans s3960 s3721) -(trans s3960 s3734) -(trans s3960 s3747) -(trans s3961 s3728) -(trans s3961 s3741) -(trans s3961 s3754) -(trans s3962 s3735) -(trans s3962 s3748) -(trans s3962 s3761) -(trans s3963 s3742) -(trans s3963 s3755) -(trans s3963 s3768) -(trans s3964 s3749) -(trans s3964 s3762) -(trans s3964 s3775) -(trans s3965 s3756) -(trans s3965 s3769) -(trans s3965 s3782) -(trans s3966 s3763) -(trans s3966 s3776) -(trans s3966 s3789) -(trans s3967 s3770) -(trans s3967 s3783) -(trans s3967 s3796) -(trans s3968 s3777) -(trans s3968 s3790) -(trans s3968 s3803) -(trans s3969 s3784) -(trans s3969 s3797) -(trans s3969 s3810) -(trans s3970 s3791) -(trans s3970 s3804) -(trans s3970 s3817) -(trans s3971 s3798) -(trans s3971 s3811) -(trans s3971 s3824) -(trans s3972 s3805) -(trans s3972 s3818) -(trans s3972 s3831) -(trans s3973 s3812) -(trans s3973 s3825) -(trans s3973 s3838) -(trans s3974 s3819) -(trans s3974 s3832) -(trans s3974 s3845) -(trans s3975 s3826) -(trans s3975 s3839) -(trans s3975 s3852) -(trans s3976 s3833) -(trans s3976 s3846) -(trans s3976 s3859) -(trans s3977 s3840) -(trans s3977 s3853) -(trans s3977 s3866) -(trans s3978 s3847) -(trans s3978 s3860) -(trans s3978 s3873) -(trans s3979 s3854) -(trans s3979 s3867) -(trans s3979 s3880) -(trans s3980 s3861) -(trans s3980 s3874) -(trans s3980 s3887) -(trans s3981 s3868) -(trans s3981 s3881) -(trans s3981 s3894) -(trans s3982 s3875) -(trans s3982 s3888) -(trans s3982 s3901) -(trans s3983 s3882) -(trans s3983 s3895) -(trans s3983 s3908) -(trans s3984 s3889) -(trans s3984 s3902) -(trans s3984 s3915) -(trans s3985 s3896) -(trans s3985 s3909) -(trans s3985 s3922) -(trans s3986 s3903) -(trans s3986 s3916) -(trans s3986 s3929) -(trans s3987 s3910) -(trans s3987 s3923) -(trans s3987 s3936) -(trans s3988 s3917) -(trans s3988 s3930) -(trans s3988 s3943) -(trans s3989 s3924) -(trans s3989 s3937) -(trans s3989 s3950) -(trans s3990 s3931) -(trans s3990 s3944) -(trans s3990 s3957) -(trans s3991 s3938) -(trans s3991 s3951) -(trans s3991 s3964) -(trans s3992 s3945) -(trans s3992 s3958) -(trans s3992 s3971) -(trans s3993 s3952) -(trans s3993 s3965) -(trans s3993 s3978) -(trans s3994 s3959) -(trans s3994 s3972) -(trans s3994 s3985) -(trans s3995 s3966) -(trans s3995 s3979) -(trans s3995 s3992) -(trans s3996 s3973) -(trans s3996 s3986) -(trans s3996 s3999) -(trans s3997 s3980) -(trans s3997 s3993) -(trans s3997 s4006) -(trans s3998 s3987) -(trans s3998 s4000) -(trans s3998 s4013) -(trans s3999 s3994) -(trans s3999 s4007) -(trans s3999 s4020) -(trans s4000 s4001) -(trans s4000 s4014) -(trans s4000 s4027) -(trans s4001 s4008) -(trans s4001 s4021) -(trans s4001 s4034) -(trans s4002 s4015) -(trans s4002 s4028) -(trans s4002 s4041) -(trans s4003 s4022) -(trans s4003 s4035) -(trans s4003 s4048) -(trans s4004 s4029) -(trans s4004 s4042) -(trans s4004 s4055) -(trans s4005 s4036) -(trans s4005 s4049) -(trans s4005 s4062) -(trans s4006 s4043) -(trans s4006 s4056) -(trans s4006 s4069) -(trans s4007 s4050) -(trans s4007 s4063) -(trans s4007 s4076) -(trans s4008 s4057) -(trans s4008 s4070) -(trans s4008 s4083) -(trans s4009 s4064) -(trans s4009 s4077) -(trans s4009 s4090) -(trans s4010 s4071) -(trans s4010 s4084) -(trans s4010 s4097) -(trans s4011 s4078) -(trans s4011 s4091) -(trans s4011 s4104) -(trans s4012 s4085) -(trans s4012 s4098) -(trans s4012 s4111) -(trans s4013 s4092) -(trans s4013 s4105) -(trans s4013 s4118) -(trans s4014 s4099) -(trans s4014 s4112) -(trans s4014 s4125) -(trans s4015 s4106) -(trans s4015 s4119) -(trans s4015 s4132) -(trans s4016 s4113) -(trans s4016 s4126) -(trans s4016 s4139) -(trans s4017 s4120) -(trans s4017 s4133) -(trans s4017 s4146) -(trans s4018 s4127) -(trans s4018 s4140) -(trans s4018 s4153) -(trans s4019 s4134) -(trans s4019 s4147) -(trans s4019 s4160) -(trans s4020 s4141) -(trans s4020 s4154) -(trans s4020 s4167) -(trans s4021 s4148) -(trans s4021 s4161) -(trans s4021 s4174) -(trans s4022 s4155) -(trans s4022 s4168) -(trans s4022 s4181) -(trans s4023 s4162) -(trans s4023 s4175) -(trans s4023 s4188) -(trans s4024 s4169) -(trans s4024 s4182) -(trans s4024 s4195) -(trans s4025 s4176) -(trans s4025 s4189) -(trans s4025 s4202) -(trans s4026 s4183) -(trans s4026 s4196) -(trans s4026 s4209) -(trans s4027 s4190) -(trans s4027 s4203) -(trans s4027 s4216) -(trans s4028 s4197) -(trans s4028 s4210) -(trans s4028 s4223) -(trans s4029 s4204) -(trans s4029 s4217) -(trans s4029 s4230) -(trans s4030 s4211) -(trans s4030 s4224) -(trans s4030 s4237) -(trans s4031 s4218) -(trans s4031 s4231) -(trans s4031 s4244) -(trans s4032 s4225) -(trans s4032 s4238) -(trans s4032 s4251) -(trans s4033 s4232) -(trans s4033 s4245) -(trans s4033 s4258) -(trans s4034 s4239) -(trans s4034 s4252) -(trans s4034 s4265) -(trans s4035 s4246) -(trans s4035 s4259) -(trans s4035 s4272) -(trans s4036 s4253) -(trans s4036 s4266) -(trans s4036 s4279) -(trans s4037 s4260) -(trans s4037 s4273) -(trans s4037 s4286) -(trans s4038 s4267) -(trans s4038 s4280) -(trans s4038 s4293) -(trans s4039 s4274) -(trans s4039 s4287) -(trans s4039 s4300) -(trans s4040 s4281) -(trans s4040 s4294) -(trans s4040 s4307) -(trans s4041 s4288) -(trans s4041 s4301) -(trans s4041 s4314) -(trans s4042 s4295) -(trans s4042 s4308) -(trans s4042 s4321) -(trans s4043 s4302) -(trans s4043 s4315) -(trans s4043 s4328) -(trans s4044 s4309) -(trans s4044 s4322) -(trans s4044 s4335) -(trans s4045 s4316) -(trans s4045 s4329) -(trans s4045 s4342) -(trans s4046 s4323) -(trans s4046 s4336) -(trans s4046 s4349) -(trans s4047 s4330) -(trans s4047 s4343) -(trans s4047 s4356) -(trans s4048 s4337) -(trans s4048 s4350) -(trans s4048 s4363) -(trans s4049 s4344) -(trans s4049 s4357) -(trans s4049 s4370) -(trans s4050 s4351) -(trans s4050 s4364) -(trans s4050 s4377) -(trans s4051 s4358) -(trans s4051 s4371) -(trans s4051 s4384) -(trans s4052 s4365) -(trans s4052 s4378) -(trans s4052 s4391) -(trans s4053 s4372) -(trans s4053 s4385) -(trans s4053 s4398) -(trans s4054 s4379) -(trans s4054 s4392) -(trans s4054 s4405) -(trans s4055 s4386) -(trans s4055 s4399) -(trans s4055 s4412) -(trans s4056 s4393) -(trans s4056 s4406) -(trans s4056 s4419) -(trans s4057 s4400) -(trans s4057 s4413) -(trans s4057 s4426) -(trans s4058 s4407) -(trans s4058 s4420) -(trans s4058 s4433) -(trans s4059 s4414) -(trans s4059 s4427) -(trans s4059 s4440) -(trans s4060 s4421) -(trans s4060 s4434) -(trans s4060 s4447) -(trans s4061 s4428) -(trans s4061 s4441) -(trans s4061 s4454) -(trans s4062 s4435) -(trans s4062 s4448) -(trans s4062 s4461) -(trans s4063 s4442) -(trans s4063 s4455) -(trans s4063 s4468) -(trans s4064 s4449) -(trans s4064 s4462) -(trans s4064 s4475) -(trans s4065 s4456) -(trans s4065 s4469) -(trans s4065 s4482) -(trans s4066 s4463) -(trans s4066 s4476) -(trans s4066 s4489) -(trans s4067 s4470) -(trans s4067 s4483) -(trans s4067 s4496) -(trans s4068 s4477) -(trans s4068 s4490) -(trans s4068 s4503) -(trans s4069 s4484) -(trans s4069 s4497) -(trans s4069 s4510) -(trans s4070 s4491) -(trans s4070 s4504) -(trans s4070 s4517) -(trans s4071 s4498) -(trans s4071 s4511) -(trans s4071 s4524) -(trans s4072 s4505) -(trans s4072 s4518) -(trans s4072 s4531) -(trans s4073 s4512) -(trans s4073 s4525) -(trans s4073 s4538) -(trans s4074 s4519) -(trans s4074 s4532) -(trans s4074 s4545) -(trans s4075 s4526) -(trans s4075 s4539) -(trans s4075 s4552) -(trans s4076 s4533) -(trans s4076 s4546) -(trans s4076 s4559) -(trans s4077 s4540) -(trans s4077 s4553) -(trans s4077 s4566) -(trans s4078 s4547) -(trans s4078 s4560) -(trans s4078 s4573) -(trans s4079 s4554) -(trans s4079 s4567) -(trans s4079 s4580) -(trans s4080 s4561) -(trans s4080 s4574) -(trans s4080 s4587) -(trans s4081 s4568) -(trans s4081 s4581) -(trans s4081 s4594) -(trans s4082 s4575) -(trans s4082 s4588) -(trans s4082 s4601) -(trans s4083 s4582) -(trans s4083 s4595) -(trans s4083 s4608) -(trans s4084 s4589) -(trans s4084 s4602) -(trans s4084 s4615) -(trans s4085 s4596) -(trans s4085 s4609) -(trans s4085 s4622) -(trans s4086 s4603) -(trans s4086 s4616) -(trans s4086 s4629) -(trans s4087 s4610) -(trans s4087 s4623) -(trans s4087 s4636) -(trans s4088 s4617) -(trans s4088 s4630) -(trans s4088 s4643) -(trans s4089 s4624) -(trans s4089 s4637) -(trans s4089 s4650) -(trans s4090 s4631) -(trans s4090 s4644) -(trans s4090 s4657) -(trans s4091 s4638) -(trans s4091 s4651) -(trans s4091 s4664) -(trans s4092 s4645) -(trans s4092 s4658) -(trans s4092 s4671) -(trans s4093 s4652) -(trans s4093 s4665) -(trans s4093 s4678) -(trans s4094 s4659) -(trans s4094 s4672) -(trans s4094 s4685) -(trans s4095 s4666) -(trans s4095 s4679) -(trans s4095 s4692) -(trans s4096 s4673) -(trans s4096 s4686) -(trans s4096 s4699) -(trans s4097 s4680) -(trans s4097 s4693) -(trans s4097 s4706) -(trans s4098 s4687) -(trans s4098 s4700) -(trans s4098 s4713) -(trans s4099 s4694) -(trans s4099 s4707) -(trans s4099 s4720) -(trans s4100 s4701) -(trans s4100 s4714) -(trans s4100 s4727) -(trans s4101 s4708) -(trans s4101 s4721) -(trans s4101 s4734) -(trans s4102 s4715) -(trans s4102 s4728) -(trans s4102 s4741) -(trans s4103 s4722) -(trans s4103 s4735) -(trans s4103 s4748) -(trans s4104 s4729) -(trans s4104 s4742) -(trans s4104 s4755) -(trans s4105 s4736) -(trans s4105 s4749) -(trans s4105 s4762) -(trans s4106 s4743) -(trans s4106 s4756) -(trans s4106 s4769) -(trans s4107 s4750) -(trans s4107 s4763) -(trans s4107 s4776) -(trans s4108 s4757) -(trans s4108 s4770) -(trans s4108 s4783) -(trans s4109 s4764) -(trans s4109 s4777) -(trans s4109 s4790) -(trans s4110 s4771) -(trans s4110 s4784) -(trans s4110 s4797) -(trans s4111 s4778) -(trans s4111 s4791) -(trans s4111 s4804) -(trans s4112 s4785) -(trans s4112 s4798) -(trans s4112 s4811) -(trans s4113 s4792) -(trans s4113 s4805) -(trans s4113 s4818) -(trans s4114 s4799) -(trans s4114 s4812) -(trans s4114 s4825) -(trans s4115 s4806) -(trans s4115 s4819) -(trans s4115 s4832) -(trans s4116 s4813) -(trans s4116 s4826) -(trans s4116 s4839) -(trans s4117 s4820) -(trans s4117 s4833) -(trans s4117 s4846) -(trans s4118 s4827) -(trans s4118 s4840) -(trans s4118 s4853) -(trans s4119 s4834) -(trans s4119 s4847) -(trans s4119 s4860) -(trans s4120 s4841) -(trans s4120 s4854) -(trans s4120 s4867) -(trans s4121 s4848) -(trans s4121 s4861) -(trans s4121 s4874) -(trans s4122 s4855) -(trans s4122 s4868) -(trans s4122 s4881) -(trans s4123 s4862) -(trans s4123 s4875) -(trans s4123 s4888) -(trans s4124 s4869) -(trans s4124 s4882) -(trans s4124 s4895) -(trans s4125 s4876) -(trans s4125 s4889) -(trans s4125 s4902) -(trans s4126 s4883) -(trans s4126 s4896) -(trans s4126 s4909) -(trans s4127 s4890) -(trans s4127 s4903) -(trans s4127 s4916) -(trans s4128 s4897) -(trans s4128 s4910) -(trans s4128 s4923) -(trans s4129 s4904) -(trans s4129 s4917) -(trans s4129 s4930) -(trans s4130 s4911) -(trans s4130 s4924) -(trans s4130 s4937) -(trans s4131 s4918) -(trans s4131 s4931) -(trans s4131 s4944) -(trans s4132 s4925) -(trans s4132 s4938) -(trans s4132 s4951) -(trans s4133 s4932) -(trans s4133 s4945) -(trans s4133 s4958) -(trans s4134 s4939) -(trans s4134 s4952) -(trans s4134 s4965) -(trans s4135 s4946) -(trans s4135 s4959) -(trans s4135 s4972) -(trans s4136 s4953) -(trans s4136 s4966) -(trans s4136 s4979) -(trans s4137 s4960) -(trans s4137 s4973) -(trans s4137 s4986) -(trans s4138 s4967) -(trans s4138 s4980) -(trans s4138 s4993) -(trans s4139 s4974) -(trans s4139 s4987) -(trans s4139 s5000) -(trans s4140 s4981) -(trans s4140 s4994) -(trans s4140 s5007) -(trans s4141 s4988) -(trans s4141 s5001) -(trans s4141 s5014) -(trans s4142 s4995) -(trans s4142 s5008) -(trans s4142 s5021) -(trans s4143 s5002) -(trans s4143 s5015) -(trans s4143 s5028) -(trans s4144 s5009) -(trans s4144 s5022) -(trans s4144 s5035) -(trans s4145 s5016) -(trans s4145 s5029) -(trans s4145 s5042) -(trans s4146 s5023) -(trans s4146 s5036) -(trans s4146 s5049) -(trans s4147 s5030) -(trans s4147 s5043) -(trans s4147 s5056) -(trans s4148 s5037) -(trans s4148 s5050) -(trans s4148 s5063) -(trans s4149 s5044) -(trans s4149 s5057) -(trans s4149 s5070) -(trans s4150 s5051) -(trans s4150 s5064) -(trans s4150 s5077) -(trans s4151 s5058) -(trans s4151 s5071) -(trans s4151 s5084) -(trans s4152 s5065) -(trans s4152 s5078) -(trans s4152 s5091) -(trans s4153 s5072) -(trans s4153 s5085) -(trans s4153 s5098) -(trans s4154 s5079) -(trans s4154 s5092) -(trans s4154 s5105) -(trans s4155 s5086) -(trans s4155 s5099) -(trans s4155 s5112) -(trans s4156 s5093) -(trans s4156 s5106) -(trans s4156 s5119) -(trans s4157 s5100) -(trans s4157 s5113) -(trans s4157 s5126) -(trans s4158 s5107) -(trans s4158 s5120) -(trans s4158 s5133) -(trans s4159 s5114) -(trans s4159 s5127) -(trans s4159 s5140) -(trans s4160 s5121) -(trans s4160 s5134) -(trans s4160 s5147) -(trans s4161 s5128) -(trans s4161 s5141) -(trans s4161 s5154) -(trans s4162 s5135) -(trans s4162 s5148) -(trans s4162 s5161) -(trans s4163 s5142) -(trans s4163 s5155) -(trans s4163 s5168) -(trans s4164 s5149) -(trans s4164 s5162) -(trans s4164 s5175) -(trans s4165 s5156) -(trans s4165 s5169) -(trans s4165 s5182) -(trans s4166 s5163) -(trans s4166 s5176) -(trans s4166 s5189) -(trans s4167 s5170) -(trans s4167 s5183) -(trans s4167 s5196) -(trans s4168 s5177) -(trans s4168 s5190) -(trans s4168 s5203) -(trans s4169 s5184) -(trans s4169 s5197) -(trans s4169 s5210) -(trans s4170 s5191) -(trans s4170 s5204) -(trans s4170 s5217) -(trans s4171 s5198) -(trans s4171 s5211) -(trans s4171 s5224) -(trans s4172 s5205) -(trans s4172 s5218) -(trans s4172 s5231) -(trans s4173 s5212) -(trans s4173 s5225) -(trans s4173 s5238) -(trans s4174 s5219) -(trans s4174 s5232) -(trans s4174 s5245) -(trans s4175 s5226) -(trans s4175 s5239) -(trans s4175 s5252) -(trans s4176 s5233) -(trans s4176 s5246) -(trans s4176 s5259) -(trans s4177 s5240) -(trans s4177 s5253) -(trans s4177 s5266) -(trans s4178 s5247) -(trans s4178 s5260) -(trans s4178 s5273) -(trans s4179 s5254) -(trans s4179 s5267) -(trans s4179 s5280) -(trans s4180 s5261) -(trans s4180 s5274) -(trans s4180 s5287) -(trans s4181 s5268) -(trans s4181 s5281) -(trans s4181 s5294) -(trans s4182 s5275) -(trans s4182 s5288) -(trans s4182 s5301) -(trans s4183 s5282) -(trans s4183 s5295) -(trans s4183 s5308) -(trans s4184 s5289) -(trans s4184 s5302) -(trans s4184 s5315) -(trans s4185 s5296) -(trans s4185 s5309) -(trans s4185 s5322) -(trans s4186 s5303) -(trans s4186 s5316) -(trans s4186 s5329) -(trans s4187 s5310) -(trans s4187 s5323) -(trans s4187 s5336) -(trans s4188 s5317) -(trans s4188 s5330) -(trans s4188 s5343) -(trans s4189 s5324) -(trans s4189 s5337) -(trans s4189 s5350) -(trans s4190 s5331) -(trans s4190 s5344) -(trans s4190 s5357) -(trans s4191 s5338) -(trans s4191 s5351) -(trans s4191 s5364) -(trans s4192 s5345) -(trans s4192 s5358) -(trans s4192 s5371) -(trans s4193 s5352) -(trans s4193 s5365) -(trans s4193 s5378) -(trans s4194 s5359) -(trans s4194 s5372) -(trans s4194 s5385) -(trans s4195 s5366) -(trans s4195 s5379) -(trans s4195 s5392) -(trans s4196 s5373) -(trans s4196 s5386) -(trans s4196 s5399) -(trans s4197 s5380) -(trans s4197 s5393) -(trans s4197 s5406) -(trans s4198 s5387) -(trans s4198 s5400) -(trans s4198 s5413) -(trans s4199 s5394) -(trans s4199 s5407) -(trans s4199 s5420) -(trans s4200 s5401) -(trans s4200 s5414) -(trans s4200 s5427) -(trans s4201 s5408) -(trans s4201 s5421) -(trans s4201 s5434) -(trans s4202 s5415) -(trans s4202 s5428) -(trans s4202 s5441) -(trans s4203 s5422) -(trans s4203 s5435) -(trans s4203 s5448) -(trans s4204 s5429) -(trans s4204 s5442) -(trans s4204 s5455) -(trans s4205 s5436) -(trans s4205 s5449) -(trans s4205 s5462) -(trans s4206 s5443) -(trans s4206 s5456) -(trans s4206 s5469) -(trans s4207 s5450) -(trans s4207 s5463) -(trans s4207 s5476) -(trans s4208 s5457) -(trans s4208 s5470) -(trans s4208 s5483) -(trans s4209 s5464) -(trans s4209 s5477) -(trans s4209 s5490) -(trans s4210 s5471) -(trans s4210 s5484) -(trans s4210 s5497) -(trans s4211 s5478) -(trans s4211 s5491) -(trans s4211 s5504) -(trans s4212 s5485) -(trans s4212 s5498) -(trans s4212 s5511) -(trans s4213 s5492) -(trans s4213 s5505) -(trans s4213 s5518) -(trans s4214 s5499) -(trans s4214 s5512) -(trans s4214 s5525) -(trans s4215 s5506) -(trans s4215 s5519) -(trans s4215 s5532) -(trans s4216 s5513) -(trans s4216 s5526) -(trans s4216 s5539) -(trans s4217 s5520) -(trans s4217 s5533) -(trans s4217 s5546) -(trans s4218 s5527) -(trans s4218 s5540) -(trans s4218 s5553) -(trans s4219 s5534) -(trans s4219 s5547) -(trans s4219 s5560) -(trans s4220 s5541) -(trans s4220 s5554) -(trans s4220 s5567) -(trans s4221 s5548) -(trans s4221 s5561) -(trans s4221 s5574) -(trans s4222 s5555) -(trans s4222 s5568) -(trans s4222 s5581) -(trans s4223 s5562) -(trans s4223 s5575) -(trans s4223 s5588) -(trans s4224 s5569) -(trans s4224 s5582) -(trans s4224 s5595) -(trans s4225 s5576) -(trans s4225 s5589) -(trans s4225 s5602) -(trans s4226 s5583) -(trans s4226 s5596) -(trans s4226 s5609) -(trans s4227 s5590) -(trans s4227 s5603) -(trans s4227 s5616) -(trans s4228 s5597) -(trans s4228 s5610) -(trans s4228 s5623) -(trans s4229 s5604) -(trans s4229 s5617) -(trans s4229 s5630) -(trans s4230 s5611) -(trans s4230 s5624) -(trans s4230 s5637) -(trans s4231 s5618) -(trans s4231 s5631) -(trans s4231 s5644) -(trans s4232 s5625) -(trans s4232 s5638) -(trans s4232 s5651) -(trans s4233 s5632) -(trans s4233 s5645) -(trans s4233 s5658) -(trans s4234 s5639) -(trans s4234 s5652) -(trans s4234 s5665) -(trans s4235 s5646) -(trans s4235 s5659) -(trans s4235 s5672) -(trans s4236 s5653) -(trans s4236 s5666) -(trans s4236 s5679) -(trans s4237 s5660) -(trans s4237 s5673) -(trans s4237 s5686) -(trans s4238 s5667) -(trans s4238 s5680) -(trans s4238 s5693) -(trans s4239 s5674) -(trans s4239 s5687) -(trans s4239 s5700) -(trans s4240 s5681) -(trans s4240 s5694) -(trans s4240 s5707) -(trans s4241 s5688) -(trans s4241 s5701) -(trans s4241 s5714) -(trans s4242 s5695) -(trans s4242 s5708) -(trans s4242 s5721) -(trans s4243 s5702) -(trans s4243 s5715) -(trans s4243 s5728) -(trans s4244 s5709) -(trans s4244 s5722) -(trans s4244 s5735) -(trans s4245 s5716) -(trans s4245 s5729) -(trans s4245 s5742) -(trans s4246 s5723) -(trans s4246 s5736) -(trans s4246 s5749) -(trans s4247 s5730) -(trans s4247 s5743) -(trans s4247 s5756) -(trans s4248 s5737) -(trans s4248 s5750) -(trans s4248 s5763) -(trans s4249 s5744) -(trans s4249 s5757) -(trans s4249 s5770) -(trans s4250 s5751) -(trans s4250 s5764) -(trans s4250 s5777) -(trans s4251 s5758) -(trans s4251 s5771) -(trans s4251 s5784) -(trans s4252 s5765) -(trans s4252 s5778) -(trans s4252 s5791) -(trans s4253 s5772) -(trans s4253 s5785) -(trans s4253 s5798) -(trans s4254 s5779) -(trans s4254 s5792) -(trans s4254 s5805) -(trans s4255 s5786) -(trans s4255 s5799) -(trans s4255 s5812) -(trans s4256 s5793) -(trans s4256 s5806) -(trans s4256 s5819) -(trans s4257 s5800) -(trans s4257 s5813) -(trans s4257 s5826) -(trans s4258 s5807) -(trans s4258 s5820) -(trans s4258 s5833) -(trans s4259 s5814) -(trans s4259 s5827) -(trans s4259 s5840) -(trans s4260 s5821) -(trans s4260 s5834) -(trans s4260 s5847) -(trans s4261 s5828) -(trans s4261 s5841) -(trans s4261 s5854) -(trans s4262 s5835) -(trans s4262 s5848) -(trans s4262 s5861) -(trans s4263 s5842) -(trans s4263 s5855) -(trans s4263 s5868) -(trans s4264 s5849) -(trans s4264 s5862) -(trans s4264 s5875) -(trans s4265 s5856) -(trans s4265 s5869) -(trans s4265 s5882) -(trans s4266 s5863) -(trans s4266 s5876) -(trans s4266 s5889) -(trans s4267 s5870) -(trans s4267 s5883) -(trans s4267 s5896) -(trans s4268 s5877) -(trans s4268 s5890) -(trans s4268 s5903) -(trans s4269 s5884) -(trans s4269 s5897) -(trans s4269 s5910) -(trans s4270 s5891) -(trans s4270 s5904) -(trans s4270 s5917) -(trans s4271 s5898) -(trans s4271 s5911) -(trans s4271 s5924) -(trans s4272 s5905) -(trans s4272 s5918) -(trans s4272 s5931) -(trans s4273 s5912) -(trans s4273 s5925) -(trans s4273 s5938) -(trans s4274 s5919) -(trans s4274 s5932) -(trans s4274 s5945) -(trans s4275 s5926) -(trans s4275 s5939) -(trans s4275 s5952) -(trans s4276 s5933) -(trans s4276 s5946) -(trans s4276 s5959) -(trans s4277 s5940) -(trans s4277 s5953) -(trans s4277 s5966) -(trans s4278 s5947) -(trans s4278 s5960) -(trans s4278 s5973) -(trans s4279 s5954) -(trans s4279 s5967) -(trans s4279 s5980) -(trans s4280 s5961) -(trans s4280 s5974) -(trans s4280 s5987) -(trans s4281 s5968) -(trans s4281 s5981) -(trans s4281 s5994) -(trans s4282 s5975) -(trans s4282 s5988) -(trans s4282 s1) -(trans s4283 s5982) -(trans s4283 s5995) -(trans s4283 s8) -(trans s4284 s5989) -(trans s4284 s2) -(trans s4284 s15) -(trans s4285 s5996) -(trans s4285 s9) -(trans s4285 s22) -(trans s4286 s3) -(trans s4286 s16) -(trans s4286 s29) -(trans s4287 s10) -(trans s4287 s23) -(trans s4287 s36) -(trans s4288 s17) -(trans s4288 s30) -(trans s4288 s43) -(trans s4289 s24) -(trans s4289 s37) -(trans s4289 s50) -(trans s4290 s31) -(trans s4290 s44) -(trans s4290 s57) -(trans s4291 s38) -(trans s4291 s51) -(trans s4291 s64) -(trans s4292 s45) -(trans s4292 s58) -(trans s4292 s71) -(trans s4293 s52) -(trans s4293 s65) -(trans s4293 s78) -(trans s4294 s59) -(trans s4294 s72) -(trans s4294 s85) -(trans s4295 s66) -(trans s4295 s79) -(trans s4295 s92) -(trans s4296 s73) -(trans s4296 s86) -(trans s4296 s99) -(trans s4297 s80) -(trans s4297 s93) -(trans s4297 s106) -(trans s4298 s87) -(trans s4298 s100) -(trans s4298 s113) -(trans s4299 s94) -(trans s4299 s107) -(trans s4299 s120) -(trans s4300 s101) -(trans s4300 s114) -(trans s4300 s127) -(trans s4301 s108) -(trans s4301 s121) -(trans s4301 s134) -(trans s4302 s115) -(trans s4302 s128) -(trans s4302 s141) -(trans s4303 s122) -(trans s4303 s135) -(trans s4303 s148) -(trans s4304 s129) -(trans s4304 s142) -(trans s4304 s155) -(trans s4305 s136) -(trans s4305 s149) -(trans s4305 s162) -(trans s4306 s143) -(trans s4306 s156) -(trans s4306 s169) -(trans s4307 s150) -(trans s4307 s163) -(trans s4307 s176) -(trans s4308 s157) -(trans s4308 s170) -(trans s4308 s183) -(trans s4309 s164) -(trans s4309 s177) -(trans s4309 s190) -(trans s4310 s171) -(trans s4310 s184) -(trans s4310 s197) -(trans s4311 s178) -(trans s4311 s191) -(trans s4311 s204) -(trans s4312 s185) -(trans s4312 s198) -(trans s4312 s211) -(trans s4313 s192) -(trans s4313 s205) -(trans s4313 s218) -(trans s4314 s199) -(trans s4314 s212) -(trans s4314 s225) -(trans s4315 s206) -(trans s4315 s219) -(trans s4315 s232) -(trans s4316 s213) -(trans s4316 s226) -(trans s4316 s239) -(trans s4317 s220) -(trans s4317 s233) -(trans s4317 s246) -(trans s4318 s227) -(trans s4318 s240) -(trans s4318 s253) -(trans s4319 s234) -(trans s4319 s247) -(trans s4319 s260) -(trans s4320 s241) -(trans s4320 s254) -(trans s4320 s267) -(trans s4321 s248) -(trans s4321 s261) -(trans s4321 s274) -(trans s4322 s255) -(trans s4322 s268) -(trans s4322 s281) -(trans s4323 s262) -(trans s4323 s275) -(trans s4323 s288) -(trans s4324 s269) -(trans s4324 s282) -(trans s4324 s295) -(trans s4325 s276) -(trans s4325 s289) -(trans s4325 s302) -(trans s4326 s283) -(trans s4326 s296) -(trans s4326 s309) -(trans s4327 s290) -(trans s4327 s303) -(trans s4327 s316) -(trans s4328 s297) -(trans s4328 s310) -(trans s4328 s323) -(trans s4329 s304) -(trans s4329 s317) -(trans s4329 s330) -(trans s4330 s311) -(trans s4330 s324) -(trans s4330 s337) -(trans s4331 s318) -(trans s4331 s331) -(trans s4331 s344) -(trans s4332 s325) -(trans s4332 s338) -(trans s4332 s351) -(trans s4333 s332) -(trans s4333 s345) -(trans s4333 s358) -(trans s4334 s339) -(trans s4334 s352) -(trans s4334 s365) -(trans s4335 s346) -(trans s4335 s359) -(trans s4335 s372) -(trans s4336 s353) -(trans s4336 s366) -(trans s4336 s379) -(trans s4337 s360) -(trans s4337 s373) -(trans s4337 s386) -(trans s4338 s367) -(trans s4338 s380) -(trans s4338 s393) -(trans s4339 s374) -(trans s4339 s387) -(trans s4339 s400) -(trans s4340 s381) -(trans s4340 s394) -(trans s4340 s407) -(trans s4341 s388) -(trans s4341 s401) -(trans s4341 s414) -(trans s4342 s395) -(trans s4342 s408) -(trans s4342 s421) -(trans s4343 s402) -(trans s4343 s415) -(trans s4343 s428) -(trans s4344 s409) -(trans s4344 s422) -(trans s4344 s435) -(trans s4345 s416) -(trans s4345 s429) -(trans s4345 s442) -(trans s4346 s423) -(trans s4346 s436) -(trans s4346 s449) -(trans s4347 s430) -(trans s4347 s443) -(trans s4347 s456) -(trans s4348 s437) -(trans s4348 s450) -(trans s4348 s463) -(trans s4349 s444) -(trans s4349 s457) -(trans s4349 s470) -(trans s4350 s451) -(trans s4350 s464) -(trans s4350 s477) -(trans s4351 s458) -(trans s4351 s471) -(trans s4351 s484) -(trans s4352 s465) -(trans s4352 s478) -(trans s4352 s491) -(trans s4353 s472) -(trans s4353 s485) -(trans s4353 s498) -(trans s4354 s479) -(trans s4354 s492) -(trans s4354 s505) -(trans s4355 s486) -(trans s4355 s499) -(trans s4355 s512) -(trans s4356 s493) -(trans s4356 s506) -(trans s4356 s519) -(trans s4357 s500) -(trans s4357 s513) -(trans s4357 s526) -(trans s4358 s507) -(trans s4358 s520) -(trans s4358 s533) -(trans s4359 s514) -(trans s4359 s527) -(trans s4359 s540) -(trans s4360 s521) -(trans s4360 s534) -(trans s4360 s547) -(trans s4361 s528) -(trans s4361 s541) -(trans s4361 s554) -(trans s4362 s535) -(trans s4362 s548) -(trans s4362 s561) -(trans s4363 s542) -(trans s4363 s555) -(trans s4363 s568) -(trans s4364 s549) -(trans s4364 s562) -(trans s4364 s575) -(trans s4365 s556) -(trans s4365 s569) -(trans s4365 s582) -(trans s4366 s563) -(trans s4366 s576) -(trans s4366 s589) -(trans s4367 s570) -(trans s4367 s583) -(trans s4367 s596) -(trans s4368 s577) -(trans s4368 s590) -(trans s4368 s603) -(trans s4369 s584) -(trans s4369 s597) -(trans s4369 s610) -(trans s4370 s591) -(trans s4370 s604) -(trans s4370 s617) -(trans s4371 s598) -(trans s4371 s611) -(trans s4371 s624) -(trans s4372 s605) -(trans s4372 s618) -(trans s4372 s631) -(trans s4373 s612) -(trans s4373 s625) -(trans s4373 s638) -(trans s4374 s619) -(trans s4374 s632) -(trans s4374 s645) -(trans s4375 s626) -(trans s4375 s639) -(trans s4375 s652) -(trans s4376 s633) -(trans s4376 s646) -(trans s4376 s659) -(trans s4377 s640) -(trans s4377 s653) -(trans s4377 s666) -(trans s4378 s647) -(trans s4378 s660) -(trans s4378 s673) -(trans s4379 s654) -(trans s4379 s667) -(trans s4379 s680) -(trans s4380 s661) -(trans s4380 s674) -(trans s4380 s687) -(trans s4381 s668) -(trans s4381 s681) -(trans s4381 s694) -(trans s4382 s675) -(trans s4382 s688) -(trans s4382 s701) -(trans s4383 s682) -(trans s4383 s695) -(trans s4383 s708) -(trans s4384 s689) -(trans s4384 s702) -(trans s4384 s715) -(trans s4385 s696) -(trans s4385 s709) -(trans s4385 s722) -(trans s4386 s703) -(trans s4386 s716) -(trans s4386 s729) -(trans s4387 s710) -(trans s4387 s723) -(trans s4387 s736) -(trans s4388 s717) -(trans s4388 s730) -(trans s4388 s743) -(trans s4389 s724) -(trans s4389 s737) -(trans s4389 s750) -(trans s4390 s731) -(trans s4390 s744) -(trans s4390 s757) -(trans s4391 s738) -(trans s4391 s751) -(trans s4391 s764) -(trans s4392 s745) -(trans s4392 s758) -(trans s4392 s771) -(trans s4393 s752) -(trans s4393 s765) -(trans s4393 s778) -(trans s4394 s759) -(trans s4394 s772) -(trans s4394 s785) -(trans s4395 s766) -(trans s4395 s779) -(trans s4395 s792) -(trans s4396 s773) -(trans s4396 s786) -(trans s4396 s799) -(trans s4397 s780) -(trans s4397 s793) -(trans s4397 s806) -(trans s4398 s787) -(trans s4398 s800) -(trans s4398 s813) -(trans s4399 s794) -(trans s4399 s807) -(trans s4399 s820) -(trans s4400 s801) -(trans s4400 s814) -(trans s4400 s827) -(trans s4401 s808) -(trans s4401 s821) -(trans s4401 s834) -(trans s4402 s815) -(trans s4402 s828) -(trans s4402 s841) -(trans s4403 s822) -(trans s4403 s835) -(trans s4403 s848) -(trans s4404 s829) -(trans s4404 s842) -(trans s4404 s855) -(trans s4405 s836) -(trans s4405 s849) -(trans s4405 s862) -(trans s4406 s843) -(trans s4406 s856) -(trans s4406 s869) -(trans s4407 s850) -(trans s4407 s863) -(trans s4407 s876) -(trans s4408 s857) -(trans s4408 s870) -(trans s4408 s883) -(trans s4409 s864) -(trans s4409 s877) -(trans s4409 s890) -(trans s4410 s871) -(trans s4410 s884) -(trans s4410 s897) -(trans s4411 s878) -(trans s4411 s891) -(trans s4411 s904) -(trans s4412 s885) -(trans s4412 s898) -(trans s4412 s911) -(trans s4413 s892) -(trans s4413 s905) -(trans s4413 s918) -(trans s4414 s899) -(trans s4414 s912) -(trans s4414 s925) -(trans s4415 s906) -(trans s4415 s919) -(trans s4415 s932) -(trans s4416 s913) -(trans s4416 s926) -(trans s4416 s939) -(trans s4417 s920) -(trans s4417 s933) -(trans s4417 s946) -(trans s4418 s927) -(trans s4418 s940) -(trans s4418 s953) -(trans s4419 s934) -(trans s4419 s947) -(trans s4419 s960) -(trans s4420 s941) -(trans s4420 s954) -(trans s4420 s967) -(trans s4421 s948) -(trans s4421 s961) -(trans s4421 s974) -(trans s4422 s955) -(trans s4422 s968) -(trans s4422 s981) -(trans s4423 s962) -(trans s4423 s975) -(trans s4423 s988) -(trans s4424 s969) -(trans s4424 s982) -(trans s4424 s995) -(trans s4425 s976) -(trans s4425 s989) -(trans s4425 s1002) -(trans s4426 s983) -(trans s4426 s996) -(trans s4426 s1009) -(trans s4427 s990) -(trans s4427 s1003) -(trans s4427 s1016) -(trans s4428 s997) -(trans s4428 s1010) -(trans s4428 s1023) -(trans s4429 s1004) -(trans s4429 s1017) -(trans s4429 s1030) -(trans s4430 s1011) -(trans s4430 s1024) -(trans s4430 s1037) -(trans s4431 s1018) -(trans s4431 s1031) -(trans s4431 s1044) -(trans s4432 s1025) -(trans s4432 s1038) -(trans s4432 s1051) -(trans s4433 s1032) -(trans s4433 s1045) -(trans s4433 s1058) -(trans s4434 s1039) -(trans s4434 s1052) -(trans s4434 s1065) -(trans s4435 s1046) -(trans s4435 s1059) -(trans s4435 s1072) -(trans s4436 s1053) -(trans s4436 s1066) -(trans s4436 s1079) -(trans s4437 s1060) -(trans s4437 s1073) -(trans s4437 s1086) -(trans s4438 s1067) -(trans s4438 s1080) -(trans s4438 s1093) -(trans s4439 s1074) -(trans s4439 s1087) -(trans s4439 s1100) -(trans s4440 s1081) -(trans s4440 s1094) -(trans s4440 s1107) -(trans s4441 s1088) -(trans s4441 s1101) -(trans s4441 s1114) -(trans s4442 s1095) -(trans s4442 s1108) -(trans s4442 s1121) -(trans s4443 s1102) -(trans s4443 s1115) -(trans s4443 s1128) -(trans s4444 s1109) -(trans s4444 s1122) -(trans s4444 s1135) -(trans s4445 s1116) -(trans s4445 s1129) -(trans s4445 s1142) -(trans s4446 s1123) -(trans s4446 s1136) -(trans s4446 s1149) -(trans s4447 s1130) -(trans s4447 s1143) -(trans s4447 s1156) -(trans s4448 s1137) -(trans s4448 s1150) -(trans s4448 s1163) -(trans s4449 s1144) -(trans s4449 s1157) -(trans s4449 s1170) -(trans s4450 s1151) -(trans s4450 s1164) -(trans s4450 s1177) -(trans s4451 s1158) -(trans s4451 s1171) -(trans s4451 s1184) -(trans s4452 s1165) -(trans s4452 s1178) -(trans s4452 s1191) -(trans s4453 s1172) -(trans s4453 s1185) -(trans s4453 s1198) -(trans s4454 s1179) -(trans s4454 s1192) -(trans s4454 s1205) -(trans s4455 s1186) -(trans s4455 s1199) -(trans s4455 s1212) -(trans s4456 s1193) -(trans s4456 s1206) -(trans s4456 s1219) -(trans s4457 s1200) -(trans s4457 s1213) -(trans s4457 s1226) -(trans s4458 s1207) -(trans s4458 s1220) -(trans s4458 s1233) -(trans s4459 s1214) -(trans s4459 s1227) -(trans s4459 s1240) -(trans s4460 s1221) -(trans s4460 s1234) -(trans s4460 s1247) -(trans s4461 s1228) -(trans s4461 s1241) -(trans s4461 s1254) -(trans s4462 s1235) -(trans s4462 s1248) -(trans s4462 s1261) -(trans s4463 s1242) -(trans s4463 s1255) -(trans s4463 s1268) -(trans s4464 s1249) -(trans s4464 s1262) -(trans s4464 s1275) -(trans s4465 s1256) -(trans s4465 s1269) -(trans s4465 s1282) -(trans s4466 s1263) -(trans s4466 s1276) -(trans s4466 s1289) -(trans s4467 s1270) -(trans s4467 s1283) -(trans s4467 s1296) -(trans s4468 s1277) -(trans s4468 s1290) -(trans s4468 s1303) -(trans s4469 s1284) -(trans s4469 s1297) -(trans s4469 s1310) -(trans s4470 s1291) -(trans s4470 s1304) -(trans s4470 s1317) -(trans s4471 s1298) -(trans s4471 s1311) -(trans s4471 s1324) -(trans s4472 s1305) -(trans s4472 s1318) -(trans s4472 s1331) -(trans s4473 s1312) -(trans s4473 s1325) -(trans s4473 s1338) -(trans s4474 s1319) -(trans s4474 s1332) -(trans s4474 s1345) -(trans s4475 s1326) -(trans s4475 s1339) -(trans s4475 s1352) -(trans s4476 s1333) -(trans s4476 s1346) -(trans s4476 s1359) -(trans s4477 s1340) -(trans s4477 s1353) -(trans s4477 s1366) -(trans s4478 s1347) -(trans s4478 s1360) -(trans s4478 s1373) -(trans s4479 s1354) -(trans s4479 s1367) -(trans s4479 s1380) -(trans s4480 s1361) -(trans s4480 s1374) -(trans s4480 s1387) -(trans s4481 s1368) -(trans s4481 s1381) -(trans s4481 s1394) -(trans s4482 s1375) -(trans s4482 s1388) -(trans s4482 s1401) -(trans s4483 s1382) -(trans s4483 s1395) -(trans s4483 s1408) -(trans s4484 s1389) -(trans s4484 s1402) -(trans s4484 s1415) -(trans s4485 s1396) -(trans s4485 s1409) -(trans s4485 s1422) -(trans s4486 s1403) -(trans s4486 s1416) -(trans s4486 s1429) -(trans s4487 s1410) -(trans s4487 s1423) -(trans s4487 s1436) -(trans s4488 s1417) -(trans s4488 s1430) -(trans s4488 s1443) -(trans s4489 s1424) -(trans s4489 s1437) -(trans s4489 s1450) -(trans s4490 s1431) -(trans s4490 s1444) -(trans s4490 s1457) -(trans s4491 s1438) -(trans s4491 s1451) -(trans s4491 s1464) -(trans s4492 s1445) -(trans s4492 s1458) -(trans s4492 s1471) -(trans s4493 s1452) -(trans s4493 s1465) -(trans s4493 s1478) -(trans s4494 s1459) -(trans s4494 s1472) -(trans s4494 s1485) -(trans s4495 s1466) -(trans s4495 s1479) -(trans s4495 s1492) -(trans s4496 s1473) -(trans s4496 s1486) -(trans s4496 s1499) -(trans s4497 s1480) -(trans s4497 s1493) -(trans s4497 s1506) -(trans s4498 s1487) -(trans s4498 s1500) -(trans s4498 s1513) -(trans s4499 s1494) -(trans s4499 s1507) -(trans s4499 s1520) -(trans s4500 s1501) -(trans s4500 s1514) -(trans s4500 s1527) -(trans s4501 s1508) -(trans s4501 s1521) -(trans s4501 s1534) -(trans s4502 s1515) -(trans s4502 s1528) -(trans s4502 s1541) -(trans s4503 s1522) -(trans s4503 s1535) -(trans s4503 s1548) -(trans s4504 s1529) -(trans s4504 s1542) -(trans s4504 s1555) -(trans s4505 s1536) -(trans s4505 s1549) -(trans s4505 s1562) -(trans s4506 s1543) -(trans s4506 s1556) -(trans s4506 s1569) -(trans s4507 s1550) -(trans s4507 s1563) -(trans s4507 s1576) -(trans s4508 s1557) -(trans s4508 s1570) -(trans s4508 s1583) -(trans s4509 s1564) -(trans s4509 s1577) -(trans s4509 s1590) -(trans s4510 s1571) -(trans s4510 s1584) -(trans s4510 s1597) -(trans s4511 s1578) -(trans s4511 s1591) -(trans s4511 s1604) -(trans s4512 s1585) -(trans s4512 s1598) -(trans s4512 s1611) -(trans s4513 s1592) -(trans s4513 s1605) -(trans s4513 s1618) -(trans s4514 s1599) -(trans s4514 s1612) -(trans s4514 s1625) -(trans s4515 s1606) -(trans s4515 s1619) -(trans s4515 s1632) -(trans s4516 s1613) -(trans s4516 s1626) -(trans s4516 s1639) -(trans s4517 s1620) -(trans s4517 s1633) -(trans s4517 s1646) -(trans s4518 s1627) -(trans s4518 s1640) -(trans s4518 s1653) -(trans s4519 s1634) -(trans s4519 s1647) -(trans s4519 s1660) -(trans s4520 s1641) -(trans s4520 s1654) -(trans s4520 s1667) -(trans s4521 s1648) -(trans s4521 s1661) -(trans s4521 s1674) -(trans s4522 s1655) -(trans s4522 s1668) -(trans s4522 s1681) -(trans s4523 s1662) -(trans s4523 s1675) -(trans s4523 s1688) -(trans s4524 s1669) -(trans s4524 s1682) -(trans s4524 s1695) -(trans s4525 s1676) -(trans s4525 s1689) -(trans s4525 s1702) -(trans s4526 s1683) -(trans s4526 s1696) -(trans s4526 s1709) -(trans s4527 s1690) -(trans s4527 s1703) -(trans s4527 s1716) -(trans s4528 s1697) -(trans s4528 s1710) -(trans s4528 s1723) -(trans s4529 s1704) -(trans s4529 s1717) -(trans s4529 s1730) -(trans s4530 s1711) -(trans s4530 s1724) -(trans s4530 s1737) -(trans s4531 s1718) -(trans s4531 s1731) -(trans s4531 s1744) -(trans s4532 s1725) -(trans s4532 s1738) -(trans s4532 s1751) -(trans s4533 s1732) -(trans s4533 s1745) -(trans s4533 s1758) -(trans s4534 s1739) -(trans s4534 s1752) -(trans s4534 s1765) -(trans s4535 s1746) -(trans s4535 s1759) -(trans s4535 s1772) -(trans s4536 s1753) -(trans s4536 s1766) -(trans s4536 s1779) -(trans s4537 s1760) -(trans s4537 s1773) -(trans s4537 s1786) -(trans s4538 s1767) -(trans s4538 s1780) -(trans s4538 s1793) -(trans s4539 s1774) -(trans s4539 s1787) -(trans s4539 s1800) -(trans s4540 s1781) -(trans s4540 s1794) -(trans s4540 s1807) -(trans s4541 s1788) -(trans s4541 s1801) -(trans s4541 s1814) -(trans s4542 s1795) -(trans s4542 s1808) -(trans s4542 s1821) -(trans s4543 s1802) -(trans s4543 s1815) -(trans s4543 s1828) -(trans s4544 s1809) -(trans s4544 s1822) -(trans s4544 s1835) -(trans s4545 s1816) -(trans s4545 s1829) -(trans s4545 s1842) -(trans s4546 s1823) -(trans s4546 s1836) -(trans s4546 s1849) -(trans s4547 s1830) -(trans s4547 s1843) -(trans s4547 s1856) -(trans s4548 s1837) -(trans s4548 s1850) -(trans s4548 s1863) -(trans s4549 s1844) -(trans s4549 s1857) -(trans s4549 s1870) -(trans s4550 s1851) -(trans s4550 s1864) -(trans s4550 s1877) -(trans s4551 s1858) -(trans s4551 s1871) -(trans s4551 s1884) -(trans s4552 s1865) -(trans s4552 s1878) -(trans s4552 s1891) -(trans s4553 s1872) -(trans s4553 s1885) -(trans s4553 s1898) -(trans s4554 s1879) -(trans s4554 s1892) -(trans s4554 s1905) -(trans s4555 s1886) -(trans s4555 s1899) -(trans s4555 s1912) -(trans s4556 s1893) -(trans s4556 s1906) -(trans s4556 s1919) -(trans s4557 s1900) -(trans s4557 s1913) -(trans s4557 s1926) -(trans s4558 s1907) -(trans s4558 s1920) -(trans s4558 s1933) -(trans s4559 s1914) -(trans s4559 s1927) -(trans s4559 s1940) -(trans s4560 s1921) -(trans s4560 s1934) -(trans s4560 s1947) -(trans s4561 s1928) -(trans s4561 s1941) -(trans s4561 s1954) -(trans s4562 s1935) -(trans s4562 s1948) -(trans s4562 s1961) -(trans s4563 s1942) -(trans s4563 s1955) -(trans s4563 s1968) -(trans s4564 s1949) -(trans s4564 s1962) -(trans s4564 s1975) -(trans s4565 s1956) -(trans s4565 s1969) -(trans s4565 s1982) -(trans s4566 s1963) -(trans s4566 s1976) -(trans s4566 s1989) -(trans s4567 s1970) -(trans s4567 s1983) -(trans s4567 s1996) -(trans s4568 s1977) -(trans s4568 s1990) -(trans s4568 s2003) -(trans s4569 s1984) -(trans s4569 s1997) -(trans s4569 s2010) -(trans s4570 s1991) -(trans s4570 s2004) -(trans s4570 s2017) -(trans s4571 s1998) -(trans s4571 s2011) -(trans s4571 s2024) -(trans s4572 s2005) -(trans s4572 s2018) -(trans s4572 s2031) -(trans s4573 s2012) -(trans s4573 s2025) -(trans s4573 s2038) -(trans s4574 s2019) -(trans s4574 s2032) -(trans s4574 s2045) -(trans s4575 s2026) -(trans s4575 s2039) -(trans s4575 s2052) -(trans s4576 s2033) -(trans s4576 s2046) -(trans s4576 s2059) -(trans s4577 s2040) -(trans s4577 s2053) -(trans s4577 s2066) -(trans s4578 s2047) -(trans s4578 s2060) -(trans s4578 s2073) -(trans s4579 s2054) -(trans s4579 s2067) -(trans s4579 s2080) -(trans s4580 s2061) -(trans s4580 s2074) -(trans s4580 s2087) -(trans s4581 s2068) -(trans s4581 s2081) -(trans s4581 s2094) -(trans s4582 s2075) -(trans s4582 s2088) -(trans s4582 s2101) -(trans s4583 s2082) -(trans s4583 s2095) -(trans s4583 s2108) -(trans s4584 s2089) -(trans s4584 s2102) -(trans s4584 s2115) -(trans s4585 s2096) -(trans s4585 s2109) -(trans s4585 s2122) -(trans s4586 s2103) -(trans s4586 s2116) -(trans s4586 s2129) -(trans s4587 s2110) -(trans s4587 s2123) -(trans s4587 s2136) -(trans s4588 s2117) -(trans s4588 s2130) -(trans s4588 s2143) -(trans s4589 s2124) -(trans s4589 s2137) -(trans s4589 s2150) -(trans s4590 s2131) -(trans s4590 s2144) -(trans s4590 s2157) -(trans s4591 s2138) -(trans s4591 s2151) -(trans s4591 s2164) -(trans s4592 s2145) -(trans s4592 s2158) -(trans s4592 s2171) -(trans s4593 s2152) -(trans s4593 s2165) -(trans s4593 s2178) -(trans s4594 s2159) -(trans s4594 s2172) -(trans s4594 s2185) -(trans s4595 s2166) -(trans s4595 s2179) -(trans s4595 s2192) -(trans s4596 s2173) -(trans s4596 s2186) -(trans s4596 s2199) -(trans s4597 s2180) -(trans s4597 s2193) -(trans s4597 s2206) -(trans s4598 s2187) -(trans s4598 s2200) -(trans s4598 s2213) -(trans s4599 s2194) -(trans s4599 s2207) -(trans s4599 s2220) -(trans s4600 s2201) -(trans s4600 s2214) -(trans s4600 s2227) -(trans s4601 s2208) -(trans s4601 s2221) -(trans s4601 s2234) -(trans s4602 s2215) -(trans s4602 s2228) -(trans s4602 s2241) -(trans s4603 s2222) -(trans s4603 s2235) -(trans s4603 s2248) -(trans s4604 s2229) -(trans s4604 s2242) -(trans s4604 s2255) -(trans s4605 s2236) -(trans s4605 s2249) -(trans s4605 s2262) -(trans s4606 s2243) -(trans s4606 s2256) -(trans s4606 s2269) -(trans s4607 s2250) -(trans s4607 s2263) -(trans s4607 s2276) -(trans s4608 s2257) -(trans s4608 s2270) -(trans s4608 s2283) -(trans s4609 s2264) -(trans s4609 s2277) -(trans s4609 s2290) -(trans s4610 s2271) -(trans s4610 s2284) -(trans s4610 s2297) -(trans s4611 s2278) -(trans s4611 s2291) -(trans s4611 s2304) -(trans s4612 s2285) -(trans s4612 s2298) -(trans s4612 s2311) -(trans s4613 s2292) -(trans s4613 s2305) -(trans s4613 s2318) -(trans s4614 s2299) -(trans s4614 s2312) -(trans s4614 s2325) -(trans s4615 s2306) -(trans s4615 s2319) -(trans s4615 s2332) -(trans s4616 s2313) -(trans s4616 s2326) -(trans s4616 s2339) -(trans s4617 s2320) -(trans s4617 s2333) -(trans s4617 s2346) -(trans s4618 s2327) -(trans s4618 s2340) -(trans s4618 s2353) -(trans s4619 s2334) -(trans s4619 s2347) -(trans s4619 s2360) -(trans s4620 s2341) -(trans s4620 s2354) -(trans s4620 s2367) -(trans s4621 s2348) -(trans s4621 s2361) -(trans s4621 s2374) -(trans s4622 s2355) -(trans s4622 s2368) -(trans s4622 s2381) -(trans s4623 s2362) -(trans s4623 s2375) -(trans s4623 s2388) -(trans s4624 s2369) -(trans s4624 s2382) -(trans s4624 s2395) -(trans s4625 s2376) -(trans s4625 s2389) -(trans s4625 s2402) -(trans s4626 s2383) -(trans s4626 s2396) -(trans s4626 s2409) -(trans s4627 s2390) -(trans s4627 s2403) -(trans s4627 s2416) -(trans s4628 s2397) -(trans s4628 s2410) -(trans s4628 s2423) -(trans s4629 s2404) -(trans s4629 s2417) -(trans s4629 s2430) -(trans s4630 s2411) -(trans s4630 s2424) -(trans s4630 s2437) -(trans s4631 s2418) -(trans s4631 s2431) -(trans s4631 s2444) -(trans s4632 s2425) -(trans s4632 s2438) -(trans s4632 s2451) -(trans s4633 s2432) -(trans s4633 s2445) -(trans s4633 s2458) -(trans s4634 s2439) -(trans s4634 s2452) -(trans s4634 s2465) -(trans s4635 s2446) -(trans s4635 s2459) -(trans s4635 s2472) -(trans s4636 s2453) -(trans s4636 s2466) -(trans s4636 s2479) -(trans s4637 s2460) -(trans s4637 s2473) -(trans s4637 s2486) -(trans s4638 s2467) -(trans s4638 s2480) -(trans s4638 s2493) -(trans s4639 s2474) -(trans s4639 s2487) -(trans s4639 s2500) -(trans s4640 s2481) -(trans s4640 s2494) -(trans s4640 s2507) -(trans s4641 s2488) -(trans s4641 s2501) -(trans s4641 s2514) -(trans s4642 s2495) -(trans s4642 s2508) -(trans s4642 s2521) -(trans s4643 s2502) -(trans s4643 s2515) -(trans s4643 s2528) -(trans s4644 s2509) -(trans s4644 s2522) -(trans s4644 s2535) -(trans s4645 s2516) -(trans s4645 s2529) -(trans s4645 s2542) -(trans s4646 s2523) -(trans s4646 s2536) -(trans s4646 s2549) -(trans s4647 s2530) -(trans s4647 s2543) -(trans s4647 s2556) -(trans s4648 s2537) -(trans s4648 s2550) -(trans s4648 s2563) -(trans s4649 s2544) -(trans s4649 s2557) -(trans s4649 s2570) -(trans s4650 s2551) -(trans s4650 s2564) -(trans s4650 s2577) -(trans s4651 s2558) -(trans s4651 s2571) -(trans s4651 s2584) -(trans s4652 s2565) -(trans s4652 s2578) -(trans s4652 s2591) -(trans s4653 s2572) -(trans s4653 s2585) -(trans s4653 s2598) -(trans s4654 s2579) -(trans s4654 s2592) -(trans s4654 s2605) -(trans s4655 s2586) -(trans s4655 s2599) -(trans s4655 s2612) -(trans s4656 s2593) -(trans s4656 s2606) -(trans s4656 s2619) -(trans s4657 s2600) -(trans s4657 s2613) -(trans s4657 s2626) -(trans s4658 s2607) -(trans s4658 s2620) -(trans s4658 s2633) -(trans s4659 s2614) -(trans s4659 s2627) -(trans s4659 s2640) -(trans s4660 s2621) -(trans s4660 s2634) -(trans s4660 s2647) -(trans s4661 s2628) -(trans s4661 s2641) -(trans s4661 s2654) -(trans s4662 s2635) -(trans s4662 s2648) -(trans s4662 s2661) -(trans s4663 s2642) -(trans s4663 s2655) -(trans s4663 s2668) -(trans s4664 s2649) -(trans s4664 s2662) -(trans s4664 s2675) -(trans s4665 s2656) -(trans s4665 s2669) -(trans s4665 s2682) -(trans s4666 s2663) -(trans s4666 s2676) -(trans s4666 s2689) -(trans s4667 s2670) -(trans s4667 s2683) -(trans s4667 s2696) -(trans s4668 s2677) -(trans s4668 s2690) -(trans s4668 s2703) -(trans s4669 s2684) -(trans s4669 s2697) -(trans s4669 s2710) -(trans s4670 s2691) -(trans s4670 s2704) -(trans s4670 s2717) -(trans s4671 s2698) -(trans s4671 s2711) -(trans s4671 s2724) -(trans s4672 s2705) -(trans s4672 s2718) -(trans s4672 s2731) -(trans s4673 s2712) -(trans s4673 s2725) -(trans s4673 s2738) -(trans s4674 s2719) -(trans s4674 s2732) -(trans s4674 s2745) -(trans s4675 s2726) -(trans s4675 s2739) -(trans s4675 s2752) -(trans s4676 s2733) -(trans s4676 s2746) -(trans s4676 s2759) -(trans s4677 s2740) -(trans s4677 s2753) -(trans s4677 s2766) -(trans s4678 s2747) -(trans s4678 s2760) -(trans s4678 s2773) -(trans s4679 s2754) -(trans s4679 s2767) -(trans s4679 s2780) -(trans s4680 s2761) -(trans s4680 s2774) -(trans s4680 s2787) -(trans s4681 s2768) -(trans s4681 s2781) -(trans s4681 s2794) -(trans s4682 s2775) -(trans s4682 s2788) -(trans s4682 s2801) -(trans s4683 s2782) -(trans s4683 s2795) -(trans s4683 s2808) -(trans s4684 s2789) -(trans s4684 s2802) -(trans s4684 s2815) -(trans s4685 s2796) -(trans s4685 s2809) -(trans s4685 s2822) -(trans s4686 s2803) -(trans s4686 s2816) -(trans s4686 s2829) -(trans s4687 s2810) -(trans s4687 s2823) -(trans s4687 s2836) -(trans s4688 s2817) -(trans s4688 s2830) -(trans s4688 s2843) -(trans s4689 s2824) -(trans s4689 s2837) -(trans s4689 s2850) -(trans s4690 s2831) -(trans s4690 s2844) -(trans s4690 s2857) -(trans s4691 s2838) -(trans s4691 s2851) -(trans s4691 s2864) -(trans s4692 s2845) -(trans s4692 s2858) -(trans s4692 s2871) -(trans s4693 s2852) -(trans s4693 s2865) -(trans s4693 s2878) -(trans s4694 s2859) -(trans s4694 s2872) -(trans s4694 s2885) -(trans s4695 s2866) -(trans s4695 s2879) -(trans s4695 s2892) -(trans s4696 s2873) -(trans s4696 s2886) -(trans s4696 s2899) -(trans s4697 s2880) -(trans s4697 s2893) -(trans s4697 s2906) -(trans s4698 s2887) -(trans s4698 s2900) -(trans s4698 s2913) -(trans s4699 s2894) -(trans s4699 s2907) -(trans s4699 s2920) -(trans s4700 s2901) -(trans s4700 s2914) -(trans s4700 s2927) -(trans s4701 s2908) -(trans s4701 s2921) -(trans s4701 s2934) -(trans s4702 s2915) -(trans s4702 s2928) -(trans s4702 s2941) -(trans s4703 s2922) -(trans s4703 s2935) -(trans s4703 s2948) -(trans s4704 s2929) -(trans s4704 s2942) -(trans s4704 s2955) -(trans s4705 s2936) -(trans s4705 s2949) -(trans s4705 s2962) -(trans s4706 s2943) -(trans s4706 s2956) -(trans s4706 s2969) -(trans s4707 s2950) -(trans s4707 s2963) -(trans s4707 s2976) -(trans s4708 s2957) -(trans s4708 s2970) -(trans s4708 s2983) -(trans s4709 s2964) -(trans s4709 s2977) -(trans s4709 s2990) -(trans s4710 s2971) -(trans s4710 s2984) -(trans s4710 s2997) -(trans s4711 s2978) -(trans s4711 s2991) -(trans s4711 s3004) -(trans s4712 s2985) -(trans s4712 s2998) -(trans s4712 s3011) -(trans s4713 s2992) -(trans s4713 s3005) -(trans s4713 s3018) -(trans s4714 s2999) -(trans s4714 s3012) -(trans s4714 s3025) -(trans s4715 s3006) -(trans s4715 s3019) -(trans s4715 s3032) -(trans s4716 s3013) -(trans s4716 s3026) -(trans s4716 s3039) -(trans s4717 s3020) -(trans s4717 s3033) -(trans s4717 s3046) -(trans s4718 s3027) -(trans s4718 s3040) -(trans s4718 s3053) -(trans s4719 s3034) -(trans s4719 s3047) -(trans s4719 s3060) -(trans s4720 s3041) -(trans s4720 s3054) -(trans s4720 s3067) -(trans s4721 s3048) -(trans s4721 s3061) -(trans s4721 s3074) -(trans s4722 s3055) -(trans s4722 s3068) -(trans s4722 s3081) -(trans s4723 s3062) -(trans s4723 s3075) -(trans s4723 s3088) -(trans s4724 s3069) -(trans s4724 s3082) -(trans s4724 s3095) -(trans s4725 s3076) -(trans s4725 s3089) -(trans s4725 s3102) -(trans s4726 s3083) -(trans s4726 s3096) -(trans s4726 s3109) -(trans s4727 s3090) -(trans s4727 s3103) -(trans s4727 s3116) -(trans s4728 s3097) -(trans s4728 s3110) -(trans s4728 s3123) -(trans s4729 s3104) -(trans s4729 s3117) -(trans s4729 s3130) -(trans s4730 s3111) -(trans s4730 s3124) -(trans s4730 s3137) -(trans s4731 s3118) -(trans s4731 s3131) -(trans s4731 s3144) -(trans s4732 s3125) -(trans s4732 s3138) -(trans s4732 s3151) -(trans s4733 s3132) -(trans s4733 s3145) -(trans s4733 s3158) -(trans s4734 s3139) -(trans s4734 s3152) -(trans s4734 s3165) -(trans s4735 s3146) -(trans s4735 s3159) -(trans s4735 s3172) -(trans s4736 s3153) -(trans s4736 s3166) -(trans s4736 s3179) -(trans s4737 s3160) -(trans s4737 s3173) -(trans s4737 s3186) -(trans s4738 s3167) -(trans s4738 s3180) -(trans s4738 s3193) -(trans s4739 s3174) -(trans s4739 s3187) -(trans s4739 s3200) -(trans s4740 s3181) -(trans s4740 s3194) -(trans s4740 s3207) -(trans s4741 s3188) -(trans s4741 s3201) -(trans s4741 s3214) -(trans s4742 s3195) -(trans s4742 s3208) -(trans s4742 s3221) -(trans s4743 s3202) -(trans s4743 s3215) -(trans s4743 s3228) -(trans s4744 s3209) -(trans s4744 s3222) -(trans s4744 s3235) -(trans s4745 s3216) -(trans s4745 s3229) -(trans s4745 s3242) -(trans s4746 s3223) -(trans s4746 s3236) -(trans s4746 s3249) -(trans s4747 s3230) -(trans s4747 s3243) -(trans s4747 s3256) -(trans s4748 s3237) -(trans s4748 s3250) -(trans s4748 s3263) -(trans s4749 s3244) -(trans s4749 s3257) -(trans s4749 s3270) -(trans s4750 s3251) -(trans s4750 s3264) -(trans s4750 s3277) -(trans s4751 s3258) -(trans s4751 s3271) -(trans s4751 s3284) -(trans s4752 s3265) -(trans s4752 s3278) -(trans s4752 s3291) -(trans s4753 s3272) -(trans s4753 s3285) -(trans s4753 s3298) -(trans s4754 s3279) -(trans s4754 s3292) -(trans s4754 s3305) -(trans s4755 s3286) -(trans s4755 s3299) -(trans s4755 s3312) -(trans s4756 s3293) -(trans s4756 s3306) -(trans s4756 s3319) -(trans s4757 s3300) -(trans s4757 s3313) -(trans s4757 s3326) -(trans s4758 s3307) -(trans s4758 s3320) -(trans s4758 s3333) -(trans s4759 s3314) -(trans s4759 s3327) -(trans s4759 s3340) -(trans s4760 s3321) -(trans s4760 s3334) -(trans s4760 s3347) -(trans s4761 s3328) -(trans s4761 s3341) -(trans s4761 s3354) -(trans s4762 s3335) -(trans s4762 s3348) -(trans s4762 s3361) -(trans s4763 s3342) -(trans s4763 s3355) -(trans s4763 s3368) -(trans s4764 s3349) -(trans s4764 s3362) -(trans s4764 s3375) -(trans s4765 s3356) -(trans s4765 s3369) -(trans s4765 s3382) -(trans s4766 s3363) -(trans s4766 s3376) -(trans s4766 s3389) -(trans s4767 s3370) -(trans s4767 s3383) -(trans s4767 s3396) -(trans s4768 s3377) -(trans s4768 s3390) -(trans s4768 s3403) -(trans s4769 s3384) -(trans s4769 s3397) -(trans s4769 s3410) -(trans s4770 s3391) -(trans s4770 s3404) -(trans s4770 s3417) -(trans s4771 s3398) -(trans s4771 s3411) -(trans s4771 s3424) -(trans s4772 s3405) -(trans s4772 s3418) -(trans s4772 s3431) -(trans s4773 s3412) -(trans s4773 s3425) -(trans s4773 s3438) -(trans s4774 s3419) -(trans s4774 s3432) -(trans s4774 s3445) -(trans s4775 s3426) -(trans s4775 s3439) -(trans s4775 s3452) -(trans s4776 s3433) -(trans s4776 s3446) -(trans s4776 s3459) -(trans s4777 s3440) -(trans s4777 s3453) -(trans s4777 s3466) -(trans s4778 s3447) -(trans s4778 s3460) -(trans s4778 s3473) -(trans s4779 s3454) -(trans s4779 s3467) -(trans s4779 s3480) -(trans s4780 s3461) -(trans s4780 s3474) -(trans s4780 s3487) -(trans s4781 s3468) -(trans s4781 s3481) -(trans s4781 s3494) -(trans s4782 s3475) -(trans s4782 s3488) -(trans s4782 s3501) -(trans s4783 s3482) -(trans s4783 s3495) -(trans s4783 s3508) -(trans s4784 s3489) -(trans s4784 s3502) -(trans s4784 s3515) -(trans s4785 s3496) -(trans s4785 s3509) -(trans s4785 s3522) -(trans s4786 s3503) -(trans s4786 s3516) -(trans s4786 s3529) -(trans s4787 s3510) -(trans s4787 s3523) -(trans s4787 s3536) -(trans s4788 s3517) -(trans s4788 s3530) -(trans s4788 s3543) -(trans s4789 s3524) -(trans s4789 s3537) -(trans s4789 s3550) -(trans s4790 s3531) -(trans s4790 s3544) -(trans s4790 s3557) -(trans s4791 s3538) -(trans s4791 s3551) -(trans s4791 s3564) -(trans s4792 s3545) -(trans s4792 s3558) -(trans s4792 s3571) -(trans s4793 s3552) -(trans s4793 s3565) -(trans s4793 s3578) -(trans s4794 s3559) -(trans s4794 s3572) -(trans s4794 s3585) -(trans s4795 s3566) -(trans s4795 s3579) -(trans s4795 s3592) -(trans s4796 s3573) -(trans s4796 s3586) -(trans s4796 s3599) -(trans s4797 s3580) -(trans s4797 s3593) -(trans s4797 s3606) -(trans s4798 s3587) -(trans s4798 s3600) -(trans s4798 s3613) -(trans s4799 s3594) -(trans s4799 s3607) -(trans s4799 s3620) -(trans s4800 s3601) -(trans s4800 s3614) -(trans s4800 s3627) -(trans s4801 s3608) -(trans s4801 s3621) -(trans s4801 s3634) -(trans s4802 s3615) -(trans s4802 s3628) -(trans s4802 s3641) -(trans s4803 s3622) -(trans s4803 s3635) -(trans s4803 s3648) -(trans s4804 s3629) -(trans s4804 s3642) -(trans s4804 s3655) -(trans s4805 s3636) -(trans s4805 s3649) -(trans s4805 s3662) -(trans s4806 s3643) -(trans s4806 s3656) -(trans s4806 s3669) -(trans s4807 s3650) -(trans s4807 s3663) -(trans s4807 s3676) -(trans s4808 s3657) -(trans s4808 s3670) -(trans s4808 s3683) -(trans s4809 s3664) -(trans s4809 s3677) -(trans s4809 s3690) -(trans s4810 s3671) -(trans s4810 s3684) -(trans s4810 s3697) -(trans s4811 s3678) -(trans s4811 s3691) -(trans s4811 s3704) -(trans s4812 s3685) -(trans s4812 s3698) -(trans s4812 s3711) -(trans s4813 s3692) -(trans s4813 s3705) -(trans s4813 s3718) -(trans s4814 s3699) -(trans s4814 s3712) -(trans s4814 s3725) -(trans s4815 s3706) -(trans s4815 s3719) -(trans s4815 s3732) -(trans s4816 s3713) -(trans s4816 s3726) -(trans s4816 s3739) -(trans s4817 s3720) -(trans s4817 s3733) -(trans s4817 s3746) -(trans s4818 s3727) -(trans s4818 s3740) -(trans s4818 s3753) -(trans s4819 s3734) -(trans s4819 s3747) -(trans s4819 s3760) -(trans s4820 s3741) -(trans s4820 s3754) -(trans s4820 s3767) -(trans s4821 s3748) -(trans s4821 s3761) -(trans s4821 s3774) -(trans s4822 s3755) -(trans s4822 s3768) -(trans s4822 s3781) -(trans s4823 s3762) -(trans s4823 s3775) -(trans s4823 s3788) -(trans s4824 s3769) -(trans s4824 s3782) -(trans s4824 s3795) -(trans s4825 s3776) -(trans s4825 s3789) -(trans s4825 s3802) -(trans s4826 s3783) -(trans s4826 s3796) -(trans s4826 s3809) -(trans s4827 s3790) -(trans s4827 s3803) -(trans s4827 s3816) -(trans s4828 s3797) -(trans s4828 s3810) -(trans s4828 s3823) -(trans s4829 s3804) -(trans s4829 s3817) -(trans s4829 s3830) -(trans s4830 s3811) -(trans s4830 s3824) -(trans s4830 s3837) -(trans s4831 s3818) -(trans s4831 s3831) -(trans s4831 s3844) -(trans s4832 s3825) -(trans s4832 s3838) -(trans s4832 s3851) -(trans s4833 s3832) -(trans s4833 s3845) -(trans s4833 s3858) -(trans s4834 s3839) -(trans s4834 s3852) -(trans s4834 s3865) -(trans s4835 s3846) -(trans s4835 s3859) -(trans s4835 s3872) -(trans s4836 s3853) -(trans s4836 s3866) -(trans s4836 s3879) -(trans s4837 s3860) -(trans s4837 s3873) -(trans s4837 s3886) -(trans s4838 s3867) -(trans s4838 s3880) -(trans s4838 s3893) -(trans s4839 s3874) -(trans s4839 s3887) -(trans s4839 s3900) -(trans s4840 s3881) -(trans s4840 s3894) -(trans s4840 s3907) -(trans s4841 s3888) -(trans s4841 s3901) -(trans s4841 s3914) -(trans s4842 s3895) -(trans s4842 s3908) -(trans s4842 s3921) -(trans s4843 s3902) -(trans s4843 s3915) -(trans s4843 s3928) -(trans s4844 s3909) -(trans s4844 s3922) -(trans s4844 s3935) -(trans s4845 s3916) -(trans s4845 s3929) -(trans s4845 s3942) -(trans s4846 s3923) -(trans s4846 s3936) -(trans s4846 s3949) -(trans s4847 s3930) -(trans s4847 s3943) -(trans s4847 s3956) -(trans s4848 s3937) -(trans s4848 s3950) -(trans s4848 s3963) -(trans s4849 s3944) -(trans s4849 s3957) -(trans s4849 s3970) -(trans s4850 s3951) -(trans s4850 s3964) -(trans s4850 s3977) -(trans s4851 s3958) -(trans s4851 s3971) -(trans s4851 s3984) -(trans s4852 s3965) -(trans s4852 s3978) -(trans s4852 s3991) -(trans s4853 s3972) -(trans s4853 s3985) -(trans s4853 s3998) -(trans s4854 s3979) -(trans s4854 s3992) -(trans s4854 s4005) -(trans s4855 s3986) -(trans s4855 s3999) -(trans s4855 s4012) -(trans s4856 s3993) -(trans s4856 s4006) -(trans s4856 s4019) -(trans s4857 s4000) -(trans s4857 s4013) -(trans s4857 s4026) -(trans s4858 s4007) -(trans s4858 s4020) -(trans s4858 s4033) -(trans s4859 s4014) -(trans s4859 s4027) -(trans s4859 s4040) -(trans s4860 s4021) -(trans s4860 s4034) -(trans s4860 s4047) -(trans s4861 s4028) -(trans s4861 s4041) -(trans s4861 s4054) -(trans s4862 s4035) -(trans s4862 s4048) -(trans s4862 s4061) -(trans s4863 s4042) -(trans s4863 s4055) -(trans s4863 s4068) -(trans s4864 s4049) -(trans s4864 s4062) -(trans s4864 s4075) -(trans s4865 s4056) -(trans s4865 s4069) -(trans s4865 s4082) -(trans s4866 s4063) -(trans s4866 s4076) -(trans s4866 s4089) -(trans s4867 s4070) -(trans s4867 s4083) -(trans s4867 s4096) -(trans s4868 s4077) -(trans s4868 s4090) -(trans s4868 s4103) -(trans s4869 s4084) -(trans s4869 s4097) -(trans s4869 s4110) -(trans s4870 s4091) -(trans s4870 s4104) -(trans s4870 s4117) -(trans s4871 s4098) -(trans s4871 s4111) -(trans s4871 s4124) -(trans s4872 s4105) -(trans s4872 s4118) -(trans s4872 s4131) -(trans s4873 s4112) -(trans s4873 s4125) -(trans s4873 s4138) -(trans s4874 s4119) -(trans s4874 s4132) -(trans s4874 s4145) -(trans s4875 s4126) -(trans s4875 s4139) -(trans s4875 s4152) -(trans s4876 s4133) -(trans s4876 s4146) -(trans s4876 s4159) -(trans s4877 s4140) -(trans s4877 s4153) -(trans s4877 s4166) -(trans s4878 s4147) -(trans s4878 s4160) -(trans s4878 s4173) -(trans s4879 s4154) -(trans s4879 s4167) -(trans s4879 s4180) -(trans s4880 s4161) -(trans s4880 s4174) -(trans s4880 s4187) -(trans s4881 s4168) -(trans s4881 s4181) -(trans s4881 s4194) -(trans s4882 s4175) -(trans s4882 s4188) -(trans s4882 s4201) -(trans s4883 s4182) -(trans s4883 s4195) -(trans s4883 s4208) -(trans s4884 s4189) -(trans s4884 s4202) -(trans s4884 s4215) -(trans s4885 s4196) -(trans s4885 s4209) -(trans s4885 s4222) -(trans s4886 s4203) -(trans s4886 s4216) -(trans s4886 s4229) -(trans s4887 s4210) -(trans s4887 s4223) -(trans s4887 s4236) -(trans s4888 s4217) -(trans s4888 s4230) -(trans s4888 s4243) -(trans s4889 s4224) -(trans s4889 s4237) -(trans s4889 s4250) -(trans s4890 s4231) -(trans s4890 s4244) -(trans s4890 s4257) -(trans s4891 s4238) -(trans s4891 s4251) -(trans s4891 s4264) -(trans s4892 s4245) -(trans s4892 s4258) -(trans s4892 s4271) -(trans s4893 s4252) -(trans s4893 s4265) -(trans s4893 s4278) -(trans s4894 s4259) -(trans s4894 s4272) -(trans s4894 s4285) -(trans s4895 s4266) -(trans s4895 s4279) -(trans s4895 s4292) -(trans s4896 s4273) -(trans s4896 s4286) -(trans s4896 s4299) -(trans s4897 s4280) -(trans s4897 s4293) -(trans s4897 s4306) -(trans s4898 s4287) -(trans s4898 s4300) -(trans s4898 s4313) -(trans s4899 s4294) -(trans s4899 s4307) -(trans s4899 s4320) -(trans s4900 s4301) -(trans s4900 s4314) -(trans s4900 s4327) -(trans s4901 s4308) -(trans s4901 s4321) -(trans s4901 s4334) -(trans s4902 s4315) -(trans s4902 s4328) -(trans s4902 s4341) -(trans s4903 s4322) -(trans s4903 s4335) -(trans s4903 s4348) -(trans s4904 s4329) -(trans s4904 s4342) -(trans s4904 s4355) -(trans s4905 s4336) -(trans s4905 s4349) -(trans s4905 s4362) -(trans s4906 s4343) -(trans s4906 s4356) -(trans s4906 s4369) -(trans s4907 s4350) -(trans s4907 s4363) -(trans s4907 s4376) -(trans s4908 s4357) -(trans s4908 s4370) -(trans s4908 s4383) -(trans s4909 s4364) -(trans s4909 s4377) -(trans s4909 s4390) -(trans s4910 s4371) -(trans s4910 s4384) -(trans s4910 s4397) -(trans s4911 s4378) -(trans s4911 s4391) -(trans s4911 s4404) -(trans s4912 s4385) -(trans s4912 s4398) -(trans s4912 s4411) -(trans s4913 s4392) -(trans s4913 s4405) -(trans s4913 s4418) -(trans s4914 s4399) -(trans s4914 s4412) -(trans s4914 s4425) -(trans s4915 s4406) -(trans s4915 s4419) -(trans s4915 s4432) -(trans s4916 s4413) -(trans s4916 s4426) -(trans s4916 s4439) -(trans s4917 s4420) -(trans s4917 s4433) -(trans s4917 s4446) -(trans s4918 s4427) -(trans s4918 s4440) -(trans s4918 s4453) -(trans s4919 s4434) -(trans s4919 s4447) -(trans s4919 s4460) -(trans s4920 s4441) -(trans s4920 s4454) -(trans s4920 s4467) -(trans s4921 s4448) -(trans s4921 s4461) -(trans s4921 s4474) -(trans s4922 s4455) -(trans s4922 s4468) -(trans s4922 s4481) -(trans s4923 s4462) -(trans s4923 s4475) -(trans s4923 s4488) -(trans s4924 s4469) -(trans s4924 s4482) -(trans s4924 s4495) -(trans s4925 s4476) -(trans s4925 s4489) -(trans s4925 s4502) -(trans s4926 s4483) -(trans s4926 s4496) -(trans s4926 s4509) -(trans s4927 s4490) -(trans s4927 s4503) -(trans s4927 s4516) -(trans s4928 s4497) -(trans s4928 s4510) -(trans s4928 s4523) -(trans s4929 s4504) -(trans s4929 s4517) -(trans s4929 s4530) -(trans s4930 s4511) -(trans s4930 s4524) -(trans s4930 s4537) -(trans s4931 s4518) -(trans s4931 s4531) -(trans s4931 s4544) -(trans s4932 s4525) -(trans s4932 s4538) -(trans s4932 s4551) -(trans s4933 s4532) -(trans s4933 s4545) -(trans s4933 s4558) -(trans s4934 s4539) -(trans s4934 s4552) -(trans s4934 s4565) -(trans s4935 s4546) -(trans s4935 s4559) -(trans s4935 s4572) -(trans s4936 s4553) -(trans s4936 s4566) -(trans s4936 s4579) -(trans s4937 s4560) -(trans s4937 s4573) -(trans s4937 s4586) -(trans s4938 s4567) -(trans s4938 s4580) -(trans s4938 s4593) -(trans s4939 s4574) -(trans s4939 s4587) -(trans s4939 s4600) -(trans s4940 s4581) -(trans s4940 s4594) -(trans s4940 s4607) -(trans s4941 s4588) -(trans s4941 s4601) -(trans s4941 s4614) -(trans s4942 s4595) -(trans s4942 s4608) -(trans s4942 s4621) -(trans s4943 s4602) -(trans s4943 s4615) -(trans s4943 s4628) -(trans s4944 s4609) -(trans s4944 s4622) -(trans s4944 s4635) -(trans s4945 s4616) -(trans s4945 s4629) -(trans s4945 s4642) -(trans s4946 s4623) -(trans s4946 s4636) -(trans s4946 s4649) -(trans s4947 s4630) -(trans s4947 s4643) -(trans s4947 s4656) -(trans s4948 s4637) -(trans s4948 s4650) -(trans s4948 s4663) -(trans s4949 s4644) -(trans s4949 s4657) -(trans s4949 s4670) -(trans s4950 s4651) -(trans s4950 s4664) -(trans s4950 s4677) -(trans s4951 s4658) -(trans s4951 s4671) -(trans s4951 s4684) -(trans s4952 s4665) -(trans s4952 s4678) -(trans s4952 s4691) -(trans s4953 s4672) -(trans s4953 s4685) -(trans s4953 s4698) -(trans s4954 s4679) -(trans s4954 s4692) -(trans s4954 s4705) -(trans s4955 s4686) -(trans s4955 s4699) -(trans s4955 s4712) -(trans s4956 s4693) -(trans s4956 s4706) -(trans s4956 s4719) -(trans s4957 s4700) -(trans s4957 s4713) -(trans s4957 s4726) -(trans s4958 s4707) -(trans s4958 s4720) -(trans s4958 s4733) -(trans s4959 s4714) -(trans s4959 s4727) -(trans s4959 s4740) -(trans s4960 s4721) -(trans s4960 s4734) -(trans s4960 s4747) -(trans s4961 s4728) -(trans s4961 s4741) -(trans s4961 s4754) -(trans s4962 s4735) -(trans s4962 s4748) -(trans s4962 s4761) -(trans s4963 s4742) -(trans s4963 s4755) -(trans s4963 s4768) -(trans s4964 s4749) -(trans s4964 s4762) -(trans s4964 s4775) -(trans s4965 s4756) -(trans s4965 s4769) -(trans s4965 s4782) -(trans s4966 s4763) -(trans s4966 s4776) -(trans s4966 s4789) -(trans s4967 s4770) -(trans s4967 s4783) -(trans s4967 s4796) -(trans s4968 s4777) -(trans s4968 s4790) -(trans s4968 s4803) -(trans s4969 s4784) -(trans s4969 s4797) -(trans s4969 s4810) -(trans s4970 s4791) -(trans s4970 s4804) -(trans s4970 s4817) -(trans s4971 s4798) -(trans s4971 s4811) -(trans s4971 s4824) -(trans s4972 s4805) -(trans s4972 s4818) -(trans s4972 s4831) -(trans s4973 s4812) -(trans s4973 s4825) -(trans s4973 s4838) -(trans s4974 s4819) -(trans s4974 s4832) -(trans s4974 s4845) -(trans s4975 s4826) -(trans s4975 s4839) -(trans s4975 s4852) -(trans s4976 s4833) -(trans s4976 s4846) -(trans s4976 s4859) -(trans s4977 s4840) -(trans s4977 s4853) -(trans s4977 s4866) -(trans s4978 s4847) -(trans s4978 s4860) -(trans s4978 s4873) -(trans s4979 s4854) -(trans s4979 s4867) -(trans s4979 s4880) -(trans s4980 s4861) -(trans s4980 s4874) -(trans s4980 s4887) -(trans s4981 s4868) -(trans s4981 s4881) -(trans s4981 s4894) -(trans s4982 s4875) -(trans s4982 s4888) -(trans s4982 s4901) -(trans s4983 s4882) -(trans s4983 s4895) -(trans s4983 s4908) -(trans s4984 s4889) -(trans s4984 s4902) -(trans s4984 s4915) -(trans s4985 s4896) -(trans s4985 s4909) -(trans s4985 s4922) -(trans s4986 s4903) -(trans s4986 s4916) -(trans s4986 s4929) -(trans s4987 s4910) -(trans s4987 s4923) -(trans s4987 s4936) -(trans s4988 s4917) -(trans s4988 s4930) -(trans s4988 s4943) -(trans s4989 s4924) -(trans s4989 s4937) -(trans s4989 s4950) -(trans s4990 s4931) -(trans s4990 s4944) -(trans s4990 s4957) -(trans s4991 s4938) -(trans s4991 s4951) -(trans s4991 s4964) -(trans s4992 s4945) -(trans s4992 s4958) -(trans s4992 s4971) -(trans s4993 s4952) -(trans s4993 s4965) -(trans s4993 s4978) -(trans s4994 s4959) -(trans s4994 s4972) -(trans s4994 s4985) -(trans s4995 s4966) -(trans s4995 s4979) -(trans s4995 s4992) -(trans s4996 s4973) -(trans s4996 s4986) -(trans s4996 s4999) -(trans s4997 s4980) -(trans s4997 s4993) -(trans s4997 s5006) -(trans s4998 s4987) -(trans s4998 s5000) -(trans s4998 s5013) -(trans s4999 s4994) -(trans s4999 s5007) -(trans s4999 s5020) -(trans s5000 s5001) -(trans s5000 s5014) -(trans s5000 s5027) -(trans s5001 s5008) -(trans s5001 s5021) -(trans s5001 s5034) -(trans s5002 s5015) -(trans s5002 s5028) -(trans s5002 s5041) -(trans s5003 s5022) -(trans s5003 s5035) -(trans s5003 s5048) -(trans s5004 s5029) -(trans s5004 s5042) -(trans s5004 s5055) -(trans s5005 s5036) -(trans s5005 s5049) -(trans s5005 s5062) -(trans s5006 s5043) -(trans s5006 s5056) -(trans s5006 s5069) -(trans s5007 s5050) -(trans s5007 s5063) -(trans s5007 s5076) -(trans s5008 s5057) -(trans s5008 s5070) -(trans s5008 s5083) -(trans s5009 s5064) -(trans s5009 s5077) -(trans s5009 s5090) -(trans s5010 s5071) -(trans s5010 s5084) -(trans s5010 s5097) -(trans s5011 s5078) -(trans s5011 s5091) -(trans s5011 s5104) -(trans s5012 s5085) -(trans s5012 s5098) -(trans s5012 s5111) -(trans s5013 s5092) -(trans s5013 s5105) -(trans s5013 s5118) -(trans s5014 s5099) -(trans s5014 s5112) -(trans s5014 s5125) -(trans s5015 s5106) -(trans s5015 s5119) -(trans s5015 s5132) -(trans s5016 s5113) -(trans s5016 s5126) -(trans s5016 s5139) -(trans s5017 s5120) -(trans s5017 s5133) -(trans s5017 s5146) -(trans s5018 s5127) -(trans s5018 s5140) -(trans s5018 s5153) -(trans s5019 s5134) -(trans s5019 s5147) -(trans s5019 s5160) -(trans s5020 s5141) -(trans s5020 s5154) -(trans s5020 s5167) -(trans s5021 s5148) -(trans s5021 s5161) -(trans s5021 s5174) -(trans s5022 s5155) -(trans s5022 s5168) -(trans s5022 s5181) -(trans s5023 s5162) -(trans s5023 s5175) -(trans s5023 s5188) -(trans s5024 s5169) -(trans s5024 s5182) -(trans s5024 s5195) -(trans s5025 s5176) -(trans s5025 s5189) -(trans s5025 s5202) -(trans s5026 s5183) -(trans s5026 s5196) -(trans s5026 s5209) -(trans s5027 s5190) -(trans s5027 s5203) -(trans s5027 s5216) -(trans s5028 s5197) -(trans s5028 s5210) -(trans s5028 s5223) -(trans s5029 s5204) -(trans s5029 s5217) -(trans s5029 s5230) -(trans s5030 s5211) -(trans s5030 s5224) -(trans s5030 s5237) -(trans s5031 s5218) -(trans s5031 s5231) -(trans s5031 s5244) -(trans s5032 s5225) -(trans s5032 s5238) -(trans s5032 s5251) -(trans s5033 s5232) -(trans s5033 s5245) -(trans s5033 s5258) -(trans s5034 s5239) -(trans s5034 s5252) -(trans s5034 s5265) -(trans s5035 s5246) -(trans s5035 s5259) -(trans s5035 s5272) -(trans s5036 s5253) -(trans s5036 s5266) -(trans s5036 s5279) -(trans s5037 s5260) -(trans s5037 s5273) -(trans s5037 s5286) -(trans s5038 s5267) -(trans s5038 s5280) -(trans s5038 s5293) -(trans s5039 s5274) -(trans s5039 s5287) -(trans s5039 s5300) -(trans s5040 s5281) -(trans s5040 s5294) -(trans s5040 s5307) -(trans s5041 s5288) -(trans s5041 s5301) -(trans s5041 s5314) -(trans s5042 s5295) -(trans s5042 s5308) -(trans s5042 s5321) -(trans s5043 s5302) -(trans s5043 s5315) -(trans s5043 s5328) -(trans s5044 s5309) -(trans s5044 s5322) -(trans s5044 s5335) -(trans s5045 s5316) -(trans s5045 s5329) -(trans s5045 s5342) -(trans s5046 s5323) -(trans s5046 s5336) -(trans s5046 s5349) -(trans s5047 s5330) -(trans s5047 s5343) -(trans s5047 s5356) -(trans s5048 s5337) -(trans s5048 s5350) -(trans s5048 s5363) -(trans s5049 s5344) -(trans s5049 s5357) -(trans s5049 s5370) -(trans s5050 s5351) -(trans s5050 s5364) -(trans s5050 s5377) -(trans s5051 s5358) -(trans s5051 s5371) -(trans s5051 s5384) -(trans s5052 s5365) -(trans s5052 s5378) -(trans s5052 s5391) -(trans s5053 s5372) -(trans s5053 s5385) -(trans s5053 s5398) -(trans s5054 s5379) -(trans s5054 s5392) -(trans s5054 s5405) -(trans s5055 s5386) -(trans s5055 s5399) -(trans s5055 s5412) -(trans s5056 s5393) -(trans s5056 s5406) -(trans s5056 s5419) -(trans s5057 s5400) -(trans s5057 s5413) -(trans s5057 s5426) -(trans s5058 s5407) -(trans s5058 s5420) -(trans s5058 s5433) -(trans s5059 s5414) -(trans s5059 s5427) -(trans s5059 s5440) -(trans s5060 s5421) -(trans s5060 s5434) -(trans s5060 s5447) -(trans s5061 s5428) -(trans s5061 s5441) -(trans s5061 s5454) -(trans s5062 s5435) -(trans s5062 s5448) -(trans s5062 s5461) -(trans s5063 s5442) -(trans s5063 s5455) -(trans s5063 s5468) -(trans s5064 s5449) -(trans s5064 s5462) -(trans s5064 s5475) -(trans s5065 s5456) -(trans s5065 s5469) -(trans s5065 s5482) -(trans s5066 s5463) -(trans s5066 s5476) -(trans s5066 s5489) -(trans s5067 s5470) -(trans s5067 s5483) -(trans s5067 s5496) -(trans s5068 s5477) -(trans s5068 s5490) -(trans s5068 s5503) -(trans s5069 s5484) -(trans s5069 s5497) -(trans s5069 s5510) -(trans s5070 s5491) -(trans s5070 s5504) -(trans s5070 s5517) -(trans s5071 s5498) -(trans s5071 s5511) -(trans s5071 s5524) -(trans s5072 s5505) -(trans s5072 s5518) -(trans s5072 s5531) -(trans s5073 s5512) -(trans s5073 s5525) -(trans s5073 s5538) -(trans s5074 s5519) -(trans s5074 s5532) -(trans s5074 s5545) -(trans s5075 s5526) -(trans s5075 s5539) -(trans s5075 s5552) -(trans s5076 s5533) -(trans s5076 s5546) -(trans s5076 s5559) -(trans s5077 s5540) -(trans s5077 s5553) -(trans s5077 s5566) -(trans s5078 s5547) -(trans s5078 s5560) -(trans s5078 s5573) -(trans s5079 s5554) -(trans s5079 s5567) -(trans s5079 s5580) -(trans s5080 s5561) -(trans s5080 s5574) -(trans s5080 s5587) -(trans s5081 s5568) -(trans s5081 s5581) -(trans s5081 s5594) -(trans s5082 s5575) -(trans s5082 s5588) -(trans s5082 s5601) -(trans s5083 s5582) -(trans s5083 s5595) -(trans s5083 s5608) -(trans s5084 s5589) -(trans s5084 s5602) -(trans s5084 s5615) -(trans s5085 s5596) -(trans s5085 s5609) -(trans s5085 s5622) -(trans s5086 s5603) -(trans s5086 s5616) -(trans s5086 s5629) -(trans s5087 s5610) -(trans s5087 s5623) -(trans s5087 s5636) -(trans s5088 s5617) -(trans s5088 s5630) -(trans s5088 s5643) -(trans s5089 s5624) -(trans s5089 s5637) -(trans s5089 s5650) -(trans s5090 s5631) -(trans s5090 s5644) -(trans s5090 s5657) -(trans s5091 s5638) -(trans s5091 s5651) -(trans s5091 s5664) -(trans s5092 s5645) -(trans s5092 s5658) -(trans s5092 s5671) -(trans s5093 s5652) -(trans s5093 s5665) -(trans s5093 s5678) -(trans s5094 s5659) -(trans s5094 s5672) -(trans s5094 s5685) -(trans s5095 s5666) -(trans s5095 s5679) -(trans s5095 s5692) -(trans s5096 s5673) -(trans s5096 s5686) -(trans s5096 s5699) -(trans s5097 s5680) -(trans s5097 s5693) -(trans s5097 s5706) -(trans s5098 s5687) -(trans s5098 s5700) -(trans s5098 s5713) -(trans s5099 s5694) -(trans s5099 s5707) -(trans s5099 s5720) -(trans s5100 s5701) -(trans s5100 s5714) -(trans s5100 s5727) -(trans s5101 s5708) -(trans s5101 s5721) -(trans s5101 s5734) -(trans s5102 s5715) -(trans s5102 s5728) -(trans s5102 s5741) -(trans s5103 s5722) -(trans s5103 s5735) -(trans s5103 s5748) -(trans s5104 s5729) -(trans s5104 s5742) -(trans s5104 s5755) -(trans s5105 s5736) -(trans s5105 s5749) -(trans s5105 s5762) -(trans s5106 s5743) -(trans s5106 s5756) -(trans s5106 s5769) -(trans s5107 s5750) -(trans s5107 s5763) -(trans s5107 s5776) -(trans s5108 s5757) -(trans s5108 s5770) -(trans s5108 s5783) -(trans s5109 s5764) -(trans s5109 s5777) -(trans s5109 s5790) -(trans s5110 s5771) -(trans s5110 s5784) -(trans s5110 s5797) -(trans s5111 s5778) -(trans s5111 s5791) -(trans s5111 s5804) -(trans s5112 s5785) -(trans s5112 s5798) -(trans s5112 s5811) -(trans s5113 s5792) -(trans s5113 s5805) -(trans s5113 s5818) -(trans s5114 s5799) -(trans s5114 s5812) -(trans s5114 s5825) -(trans s5115 s5806) -(trans s5115 s5819) -(trans s5115 s5832) -(trans s5116 s5813) -(trans s5116 s5826) -(trans s5116 s5839) -(trans s5117 s5820) -(trans s5117 s5833) -(trans s5117 s5846) -(trans s5118 s5827) -(trans s5118 s5840) -(trans s5118 s5853) -(trans s5119 s5834) -(trans s5119 s5847) -(trans s5119 s5860) -(trans s5120 s5841) -(trans s5120 s5854) -(trans s5120 s5867) -(trans s5121 s5848) -(trans s5121 s5861) -(trans s5121 s5874) -(trans s5122 s5855) -(trans s5122 s5868) -(trans s5122 s5881) -(trans s5123 s5862) -(trans s5123 s5875) -(trans s5123 s5888) -(trans s5124 s5869) -(trans s5124 s5882) -(trans s5124 s5895) -(trans s5125 s5876) -(trans s5125 s5889) -(trans s5125 s5902) -(trans s5126 s5883) -(trans s5126 s5896) -(trans s5126 s5909) -(trans s5127 s5890) -(trans s5127 s5903) -(trans s5127 s5916) -(trans s5128 s5897) -(trans s5128 s5910) -(trans s5128 s5923) -(trans s5129 s5904) -(trans s5129 s5917) -(trans s5129 s5930) -(trans s5130 s5911) -(trans s5130 s5924) -(trans s5130 s5937) -(trans s5131 s5918) -(trans s5131 s5931) -(trans s5131 s5944) -(trans s5132 s5925) -(trans s5132 s5938) -(trans s5132 s5951) -(trans s5133 s5932) -(trans s5133 s5945) -(trans s5133 s5958) -(trans s5134 s5939) -(trans s5134 s5952) -(trans s5134 s5965) -(trans s5135 s5946) -(trans s5135 s5959) -(trans s5135 s5972) -(trans s5136 s5953) -(trans s5136 s5966) -(trans s5136 s5979) -(trans s5137 s5960) -(trans s5137 s5973) -(trans s5137 s5986) -(trans s5138 s5967) -(trans s5138 s5980) -(trans s5138 s5993) -(trans s5139 s5974) -(trans s5139 s5987) -(trans s5139 s0) -(trans s5140 s5981) -(trans s5140 s5994) -(trans s5140 s7) -(trans s5141 s5988) -(trans s5141 s1) -(trans s5141 s14) -(trans s5142 s5995) -(trans s5142 s8) -(trans s5142 s21) -(trans s5143 s2) -(trans s5143 s15) -(trans s5143 s28) -(trans s5144 s9) -(trans s5144 s22) -(trans s5144 s35) -(trans s5145 s16) -(trans s5145 s29) -(trans s5145 s42) -(trans s5146 s23) -(trans s5146 s36) -(trans s5146 s49) -(trans s5147 s30) -(trans s5147 s43) -(trans s5147 s56) -(trans s5148 s37) -(trans s5148 s50) -(trans s5148 s63) -(trans s5149 s44) -(trans s5149 s57) -(trans s5149 s70) -(trans s5150 s51) -(trans s5150 s64) -(trans s5150 s77) -(trans s5151 s58) -(trans s5151 s71) -(trans s5151 s84) -(trans s5152 s65) -(trans s5152 s78) -(trans s5152 s91) -(trans s5153 s72) -(trans s5153 s85) -(trans s5153 s98) -(trans s5154 s79) -(trans s5154 s92) -(trans s5154 s105) -(trans s5155 s86) -(trans s5155 s99) -(trans s5155 s112) -(trans s5156 s93) -(trans s5156 s106) -(trans s5156 s119) -(trans s5157 s100) -(trans s5157 s113) -(trans s5157 s126) -(trans s5158 s107) -(trans s5158 s120) -(trans s5158 s133) -(trans s5159 s114) -(trans s5159 s127) -(trans s5159 s140) -(trans s5160 s121) -(trans s5160 s134) -(trans s5160 s147) -(trans s5161 s128) -(trans s5161 s141) -(trans s5161 s154) -(trans s5162 s135) -(trans s5162 s148) -(trans s5162 s161) -(trans s5163 s142) -(trans s5163 s155) -(trans s5163 s168) -(trans s5164 s149) -(trans s5164 s162) -(trans s5164 s175) -(trans s5165 s156) -(trans s5165 s169) -(trans s5165 s182) -(trans s5166 s163) -(trans s5166 s176) -(trans s5166 s189) -(trans s5167 s170) -(trans s5167 s183) -(trans s5167 s196) -(trans s5168 s177) -(trans s5168 s190) -(trans s5168 s203) -(trans s5169 s184) -(trans s5169 s197) -(trans s5169 s210) -(trans s5170 s191) -(trans s5170 s204) -(trans s5170 s217) -(trans s5171 s198) -(trans s5171 s211) -(trans s5171 s224) -(trans s5172 s205) -(trans s5172 s218) -(trans s5172 s231) -(trans s5173 s212) -(trans s5173 s225) -(trans s5173 s238) -(trans s5174 s219) -(trans s5174 s232) -(trans s5174 s245) -(trans s5175 s226) -(trans s5175 s239) -(trans s5175 s252) -(trans s5176 s233) -(trans s5176 s246) -(trans s5176 s259) -(trans s5177 s240) -(trans s5177 s253) -(trans s5177 s266) -(trans s5178 s247) -(trans s5178 s260) -(trans s5178 s273) -(trans s5179 s254) -(trans s5179 s267) -(trans s5179 s280) -(trans s5180 s261) -(trans s5180 s274) -(trans s5180 s287) -(trans s5181 s268) -(trans s5181 s281) -(trans s5181 s294) -(trans s5182 s275) -(trans s5182 s288) -(trans s5182 s301) -(trans s5183 s282) -(trans s5183 s295) -(trans s5183 s308) -(trans s5184 s289) -(trans s5184 s302) -(trans s5184 s315) -(trans s5185 s296) -(trans s5185 s309) -(trans s5185 s322) -(trans s5186 s303) -(trans s5186 s316) -(trans s5186 s329) -(trans s5187 s310) -(trans s5187 s323) -(trans s5187 s336) -(trans s5188 s317) -(trans s5188 s330) -(trans s5188 s343) -(trans s5189 s324) -(trans s5189 s337) -(trans s5189 s350) -(trans s5190 s331) -(trans s5190 s344) -(trans s5190 s357) -(trans s5191 s338) -(trans s5191 s351) -(trans s5191 s364) -(trans s5192 s345) -(trans s5192 s358) -(trans s5192 s371) -(trans s5193 s352) -(trans s5193 s365) -(trans s5193 s378) -(trans s5194 s359) -(trans s5194 s372) -(trans s5194 s385) -(trans s5195 s366) -(trans s5195 s379) -(trans s5195 s392) -(trans s5196 s373) -(trans s5196 s386) -(trans s5196 s399) -(trans s5197 s380) -(trans s5197 s393) -(trans s5197 s406) -(trans s5198 s387) -(trans s5198 s400) -(trans s5198 s413) -(trans s5199 s394) -(trans s5199 s407) -(trans s5199 s420) -(trans s5200 s401) -(trans s5200 s414) -(trans s5200 s427) -(trans s5201 s408) -(trans s5201 s421) -(trans s5201 s434) -(trans s5202 s415) -(trans s5202 s428) -(trans s5202 s441) -(trans s5203 s422) -(trans s5203 s435) -(trans s5203 s448) -(trans s5204 s429) -(trans s5204 s442) -(trans s5204 s455) -(trans s5205 s436) -(trans s5205 s449) -(trans s5205 s462) -(trans s5206 s443) -(trans s5206 s456) -(trans s5206 s469) -(trans s5207 s450) -(trans s5207 s463) -(trans s5207 s476) -(trans s5208 s457) -(trans s5208 s470) -(trans s5208 s483) -(trans s5209 s464) -(trans s5209 s477) -(trans s5209 s490) -(trans s5210 s471) -(trans s5210 s484) -(trans s5210 s497) -(trans s5211 s478) -(trans s5211 s491) -(trans s5211 s504) -(trans s5212 s485) -(trans s5212 s498) -(trans s5212 s511) -(trans s5213 s492) -(trans s5213 s505) -(trans s5213 s518) -(trans s5214 s499) -(trans s5214 s512) -(trans s5214 s525) -(trans s5215 s506) -(trans s5215 s519) -(trans s5215 s532) -(trans s5216 s513) -(trans s5216 s526) -(trans s5216 s539) -(trans s5217 s520) -(trans s5217 s533) -(trans s5217 s546) -(trans s5218 s527) -(trans s5218 s540) -(trans s5218 s553) -(trans s5219 s534) -(trans s5219 s547) -(trans s5219 s560) -(trans s5220 s541) -(trans s5220 s554) -(trans s5220 s567) -(trans s5221 s548) -(trans s5221 s561) -(trans s5221 s574) -(trans s5222 s555) -(trans s5222 s568) -(trans s5222 s581) -(trans s5223 s562) -(trans s5223 s575) -(trans s5223 s588) -(trans s5224 s569) -(trans s5224 s582) -(trans s5224 s595) -(trans s5225 s576) -(trans s5225 s589) -(trans s5225 s602) -(trans s5226 s583) -(trans s5226 s596) -(trans s5226 s609) -(trans s5227 s590) -(trans s5227 s603) -(trans s5227 s616) -(trans s5228 s597) -(trans s5228 s610) -(trans s5228 s623) -(trans s5229 s604) -(trans s5229 s617) -(trans s5229 s630) -(trans s5230 s611) -(trans s5230 s624) -(trans s5230 s637) -(trans s5231 s618) -(trans s5231 s631) -(trans s5231 s644) -(trans s5232 s625) -(trans s5232 s638) -(trans s5232 s651) -(trans s5233 s632) -(trans s5233 s645) -(trans s5233 s658) -(trans s5234 s639) -(trans s5234 s652) -(trans s5234 s665) -(trans s5235 s646) -(trans s5235 s659) -(trans s5235 s672) -(trans s5236 s653) -(trans s5236 s666) -(trans s5236 s679) -(trans s5237 s660) -(trans s5237 s673) -(trans s5237 s686) -(trans s5238 s667) -(trans s5238 s680) -(trans s5238 s693) -(trans s5239 s674) -(trans s5239 s687) -(trans s5239 s700) -(trans s5240 s681) -(trans s5240 s694) -(trans s5240 s707) -(trans s5241 s688) -(trans s5241 s701) -(trans s5241 s714) -(trans s5242 s695) -(trans s5242 s708) -(trans s5242 s721) -(trans s5243 s702) -(trans s5243 s715) -(trans s5243 s728) -(trans s5244 s709) -(trans s5244 s722) -(trans s5244 s735) -(trans s5245 s716) -(trans s5245 s729) -(trans s5245 s742) -(trans s5246 s723) -(trans s5246 s736) -(trans s5246 s749) -(trans s5247 s730) -(trans s5247 s743) -(trans s5247 s756) -(trans s5248 s737) -(trans s5248 s750) -(trans s5248 s763) -(trans s5249 s744) -(trans s5249 s757) -(trans s5249 s770) -(trans s5250 s751) -(trans s5250 s764) -(trans s5250 s777) -(trans s5251 s758) -(trans s5251 s771) -(trans s5251 s784) -(trans s5252 s765) -(trans s5252 s778) -(trans s5252 s791) -(trans s5253 s772) -(trans s5253 s785) -(trans s5253 s798) -(trans s5254 s779) -(trans s5254 s792) -(trans s5254 s805) -(trans s5255 s786) -(trans s5255 s799) -(trans s5255 s812) -(trans s5256 s793) -(trans s5256 s806) -(trans s5256 s819) -(trans s5257 s800) -(trans s5257 s813) -(trans s5257 s826) -(trans s5258 s807) -(trans s5258 s820) -(trans s5258 s833) -(trans s5259 s814) -(trans s5259 s827) -(trans s5259 s840) -(trans s5260 s821) -(trans s5260 s834) -(trans s5260 s847) -(trans s5261 s828) -(trans s5261 s841) -(trans s5261 s854) -(trans s5262 s835) -(trans s5262 s848) -(trans s5262 s861) -(trans s5263 s842) -(trans s5263 s855) -(trans s5263 s868) -(trans s5264 s849) -(trans s5264 s862) -(trans s5264 s875) -(trans s5265 s856) -(trans s5265 s869) -(trans s5265 s882) -(trans s5266 s863) -(trans s5266 s876) -(trans s5266 s889) -(trans s5267 s870) -(trans s5267 s883) -(trans s5267 s896) -(trans s5268 s877) -(trans s5268 s890) -(trans s5268 s903) -(trans s5269 s884) -(trans s5269 s897) -(trans s5269 s910) -(trans s5270 s891) -(trans s5270 s904) -(trans s5270 s917) -(trans s5271 s898) -(trans s5271 s911) -(trans s5271 s924) -(trans s5272 s905) -(trans s5272 s918) -(trans s5272 s931) -(trans s5273 s912) -(trans s5273 s925) -(trans s5273 s938) -(trans s5274 s919) -(trans s5274 s932) -(trans s5274 s945) -(trans s5275 s926) -(trans s5275 s939) -(trans s5275 s952) -(trans s5276 s933) -(trans s5276 s946) -(trans s5276 s959) -(trans s5277 s940) -(trans s5277 s953) -(trans s5277 s966) -(trans s5278 s947) -(trans s5278 s960) -(trans s5278 s973) -(trans s5279 s954) -(trans s5279 s967) -(trans s5279 s980) -(trans s5280 s961) -(trans s5280 s974) -(trans s5280 s987) -(trans s5281 s968) -(trans s5281 s981) -(trans s5281 s994) -(trans s5282 s975) -(trans s5282 s988) -(trans s5282 s1001) -(trans s5283 s982) -(trans s5283 s995) -(trans s5283 s1008) -(trans s5284 s989) -(trans s5284 s1002) -(trans s5284 s1015) -(trans s5285 s996) -(trans s5285 s1009) -(trans s5285 s1022) -(trans s5286 s1003) -(trans s5286 s1016) -(trans s5286 s1029) -(trans s5287 s1010) -(trans s5287 s1023) -(trans s5287 s1036) -(trans s5288 s1017) -(trans s5288 s1030) -(trans s5288 s1043) -(trans s5289 s1024) -(trans s5289 s1037) -(trans s5289 s1050) -(trans s5290 s1031) -(trans s5290 s1044) -(trans s5290 s1057) -(trans s5291 s1038) -(trans s5291 s1051) -(trans s5291 s1064) -(trans s5292 s1045) -(trans s5292 s1058) -(trans s5292 s1071) -(trans s5293 s1052) -(trans s5293 s1065) -(trans s5293 s1078) -(trans s5294 s1059) -(trans s5294 s1072) -(trans s5294 s1085) -(trans s5295 s1066) -(trans s5295 s1079) -(trans s5295 s1092) -(trans s5296 s1073) -(trans s5296 s1086) -(trans s5296 s1099) -(trans s5297 s1080) -(trans s5297 s1093) -(trans s5297 s1106) -(trans s5298 s1087) -(trans s5298 s1100) -(trans s5298 s1113) -(trans s5299 s1094) -(trans s5299 s1107) -(trans s5299 s1120) -(trans s5300 s1101) -(trans s5300 s1114) -(trans s5300 s1127) -(trans s5301 s1108) -(trans s5301 s1121) -(trans s5301 s1134) -(trans s5302 s1115) -(trans s5302 s1128) -(trans s5302 s1141) -(trans s5303 s1122) -(trans s5303 s1135) -(trans s5303 s1148) -(trans s5304 s1129) -(trans s5304 s1142) -(trans s5304 s1155) -(trans s5305 s1136) -(trans s5305 s1149) -(trans s5305 s1162) -(trans s5306 s1143) -(trans s5306 s1156) -(trans s5306 s1169) -(trans s5307 s1150) -(trans s5307 s1163) -(trans s5307 s1176) -(trans s5308 s1157) -(trans s5308 s1170) -(trans s5308 s1183) -(trans s5309 s1164) -(trans s5309 s1177) -(trans s5309 s1190) -(trans s5310 s1171) -(trans s5310 s1184) -(trans s5310 s1197) -(trans s5311 s1178) -(trans s5311 s1191) -(trans s5311 s1204) -(trans s5312 s1185) -(trans s5312 s1198) -(trans s5312 s1211) -(trans s5313 s1192) -(trans s5313 s1205) -(trans s5313 s1218) -(trans s5314 s1199) -(trans s5314 s1212) -(trans s5314 s1225) -(trans s5315 s1206) -(trans s5315 s1219) -(trans s5315 s1232) -(trans s5316 s1213) -(trans s5316 s1226) -(trans s5316 s1239) -(trans s5317 s1220) -(trans s5317 s1233) -(trans s5317 s1246) -(trans s5318 s1227) -(trans s5318 s1240) -(trans s5318 s1253) -(trans s5319 s1234) -(trans s5319 s1247) -(trans s5319 s1260) -(trans s5320 s1241) -(trans s5320 s1254) -(trans s5320 s1267) -(trans s5321 s1248) -(trans s5321 s1261) -(trans s5321 s1274) -(trans s5322 s1255) -(trans s5322 s1268) -(trans s5322 s1281) -(trans s5323 s1262) -(trans s5323 s1275) -(trans s5323 s1288) -(trans s5324 s1269) -(trans s5324 s1282) -(trans s5324 s1295) -(trans s5325 s1276) -(trans s5325 s1289) -(trans s5325 s1302) -(trans s5326 s1283) -(trans s5326 s1296) -(trans s5326 s1309) -(trans s5327 s1290) -(trans s5327 s1303) -(trans s5327 s1316) -(trans s5328 s1297) -(trans s5328 s1310) -(trans s5328 s1323) -(trans s5329 s1304) -(trans s5329 s1317) -(trans s5329 s1330) -(trans s5330 s1311) -(trans s5330 s1324) -(trans s5330 s1337) -(trans s5331 s1318) -(trans s5331 s1331) -(trans s5331 s1344) -(trans s5332 s1325) -(trans s5332 s1338) -(trans s5332 s1351) -(trans s5333 s1332) -(trans s5333 s1345) -(trans s5333 s1358) -(trans s5334 s1339) -(trans s5334 s1352) -(trans s5334 s1365) -(trans s5335 s1346) -(trans s5335 s1359) -(trans s5335 s1372) -(trans s5336 s1353) -(trans s5336 s1366) -(trans s5336 s1379) -(trans s5337 s1360) -(trans s5337 s1373) -(trans s5337 s1386) -(trans s5338 s1367) -(trans s5338 s1380) -(trans s5338 s1393) -(trans s5339 s1374) -(trans s5339 s1387) -(trans s5339 s1400) -(trans s5340 s1381) -(trans s5340 s1394) -(trans s5340 s1407) -(trans s5341 s1388) -(trans s5341 s1401) -(trans s5341 s1414) -(trans s5342 s1395) -(trans s5342 s1408) -(trans s5342 s1421) -(trans s5343 s1402) -(trans s5343 s1415) -(trans s5343 s1428) -(trans s5344 s1409) -(trans s5344 s1422) -(trans s5344 s1435) -(trans s5345 s1416) -(trans s5345 s1429) -(trans s5345 s1442) -(trans s5346 s1423) -(trans s5346 s1436) -(trans s5346 s1449) -(trans s5347 s1430) -(trans s5347 s1443) -(trans s5347 s1456) -(trans s5348 s1437) -(trans s5348 s1450) -(trans s5348 s1463) -(trans s5349 s1444) -(trans s5349 s1457) -(trans s5349 s1470) -(trans s5350 s1451) -(trans s5350 s1464) -(trans s5350 s1477) -(trans s5351 s1458) -(trans s5351 s1471) -(trans s5351 s1484) -(trans s5352 s1465) -(trans s5352 s1478) -(trans s5352 s1491) -(trans s5353 s1472) -(trans s5353 s1485) -(trans s5353 s1498) -(trans s5354 s1479) -(trans s5354 s1492) -(trans s5354 s1505) -(trans s5355 s1486) -(trans s5355 s1499) -(trans s5355 s1512) -(trans s5356 s1493) -(trans s5356 s1506) -(trans s5356 s1519) -(trans s5357 s1500) -(trans s5357 s1513) -(trans s5357 s1526) -(trans s5358 s1507) -(trans s5358 s1520) -(trans s5358 s1533) -(trans s5359 s1514) -(trans s5359 s1527) -(trans s5359 s1540) -(trans s5360 s1521) -(trans s5360 s1534) -(trans s5360 s1547) -(trans s5361 s1528) -(trans s5361 s1541) -(trans s5361 s1554) -(trans s5362 s1535) -(trans s5362 s1548) -(trans s5362 s1561) -(trans s5363 s1542) -(trans s5363 s1555) -(trans s5363 s1568) -(trans s5364 s1549) -(trans s5364 s1562) -(trans s5364 s1575) -(trans s5365 s1556) -(trans s5365 s1569) -(trans s5365 s1582) -(trans s5366 s1563) -(trans s5366 s1576) -(trans s5366 s1589) -(trans s5367 s1570) -(trans s5367 s1583) -(trans s5367 s1596) -(trans s5368 s1577) -(trans s5368 s1590) -(trans s5368 s1603) -(trans s5369 s1584) -(trans s5369 s1597) -(trans s5369 s1610) -(trans s5370 s1591) -(trans s5370 s1604) -(trans s5370 s1617) -(trans s5371 s1598) -(trans s5371 s1611) -(trans s5371 s1624) -(trans s5372 s1605) -(trans s5372 s1618) -(trans s5372 s1631) -(trans s5373 s1612) -(trans s5373 s1625) -(trans s5373 s1638) -(trans s5374 s1619) -(trans s5374 s1632) -(trans s5374 s1645) -(trans s5375 s1626) -(trans s5375 s1639) -(trans s5375 s1652) -(trans s5376 s1633) -(trans s5376 s1646) -(trans s5376 s1659) -(trans s5377 s1640) -(trans s5377 s1653) -(trans s5377 s1666) -(trans s5378 s1647) -(trans s5378 s1660) -(trans s5378 s1673) -(trans s5379 s1654) -(trans s5379 s1667) -(trans s5379 s1680) -(trans s5380 s1661) -(trans s5380 s1674) -(trans s5380 s1687) -(trans s5381 s1668) -(trans s5381 s1681) -(trans s5381 s1694) -(trans s5382 s1675) -(trans s5382 s1688) -(trans s5382 s1701) -(trans s5383 s1682) -(trans s5383 s1695) -(trans s5383 s1708) -(trans s5384 s1689) -(trans s5384 s1702) -(trans s5384 s1715) -(trans s5385 s1696) -(trans s5385 s1709) -(trans s5385 s1722) -(trans s5386 s1703) -(trans s5386 s1716) -(trans s5386 s1729) -(trans s5387 s1710) -(trans s5387 s1723) -(trans s5387 s1736) -(trans s5388 s1717) -(trans s5388 s1730) -(trans s5388 s1743) -(trans s5389 s1724) -(trans s5389 s1737) -(trans s5389 s1750) -(trans s5390 s1731) -(trans s5390 s1744) -(trans s5390 s1757) -(trans s5391 s1738) -(trans s5391 s1751) -(trans s5391 s1764) -(trans s5392 s1745) -(trans s5392 s1758) -(trans s5392 s1771) -(trans s5393 s1752) -(trans s5393 s1765) -(trans s5393 s1778) -(trans s5394 s1759) -(trans s5394 s1772) -(trans s5394 s1785) -(trans s5395 s1766) -(trans s5395 s1779) -(trans s5395 s1792) -(trans s5396 s1773) -(trans s5396 s1786) -(trans s5396 s1799) -(trans s5397 s1780) -(trans s5397 s1793) -(trans s5397 s1806) -(trans s5398 s1787) -(trans s5398 s1800) -(trans s5398 s1813) -(trans s5399 s1794) -(trans s5399 s1807) -(trans s5399 s1820) -(trans s5400 s1801) -(trans s5400 s1814) -(trans s5400 s1827) -(trans s5401 s1808) -(trans s5401 s1821) -(trans s5401 s1834) -(trans s5402 s1815) -(trans s5402 s1828) -(trans s5402 s1841) -(trans s5403 s1822) -(trans s5403 s1835) -(trans s5403 s1848) -(trans s5404 s1829) -(trans s5404 s1842) -(trans s5404 s1855) -(trans s5405 s1836) -(trans s5405 s1849) -(trans s5405 s1862) -(trans s5406 s1843) -(trans s5406 s1856) -(trans s5406 s1869) -(trans s5407 s1850) -(trans s5407 s1863) -(trans s5407 s1876) -(trans s5408 s1857) -(trans s5408 s1870) -(trans s5408 s1883) -(trans s5409 s1864) -(trans s5409 s1877) -(trans s5409 s1890) -(trans s5410 s1871) -(trans s5410 s1884) -(trans s5410 s1897) -(trans s5411 s1878) -(trans s5411 s1891) -(trans s5411 s1904) -(trans s5412 s1885) -(trans s5412 s1898) -(trans s5412 s1911) -(trans s5413 s1892) -(trans s5413 s1905) -(trans s5413 s1918) -(trans s5414 s1899) -(trans s5414 s1912) -(trans s5414 s1925) -(trans s5415 s1906) -(trans s5415 s1919) -(trans s5415 s1932) -(trans s5416 s1913) -(trans s5416 s1926) -(trans s5416 s1939) -(trans s5417 s1920) -(trans s5417 s1933) -(trans s5417 s1946) -(trans s5418 s1927) -(trans s5418 s1940) -(trans s5418 s1953) -(trans s5419 s1934) -(trans s5419 s1947) -(trans s5419 s1960) -(trans s5420 s1941) -(trans s5420 s1954) -(trans s5420 s1967) -(trans s5421 s1948) -(trans s5421 s1961) -(trans s5421 s1974) -(trans s5422 s1955) -(trans s5422 s1968) -(trans s5422 s1981) -(trans s5423 s1962) -(trans s5423 s1975) -(trans s5423 s1988) -(trans s5424 s1969) -(trans s5424 s1982) -(trans s5424 s1995) -(trans s5425 s1976) -(trans s5425 s1989) -(trans s5425 s2002) -(trans s5426 s1983) -(trans s5426 s1996) -(trans s5426 s2009) -(trans s5427 s1990) -(trans s5427 s2003) -(trans s5427 s2016) -(trans s5428 s1997) -(trans s5428 s2010) -(trans s5428 s2023) -(trans s5429 s2004) -(trans s5429 s2017) -(trans s5429 s2030) -(trans s5430 s2011) -(trans s5430 s2024) -(trans s5430 s2037) -(trans s5431 s2018) -(trans s5431 s2031) -(trans s5431 s2044) -(trans s5432 s2025) -(trans s5432 s2038) -(trans s5432 s2051) -(trans s5433 s2032) -(trans s5433 s2045) -(trans s5433 s2058) -(trans s5434 s2039) -(trans s5434 s2052) -(trans s5434 s2065) -(trans s5435 s2046) -(trans s5435 s2059) -(trans s5435 s2072) -(trans s5436 s2053) -(trans s5436 s2066) -(trans s5436 s2079) -(trans s5437 s2060) -(trans s5437 s2073) -(trans s5437 s2086) -(trans s5438 s2067) -(trans s5438 s2080) -(trans s5438 s2093) -(trans s5439 s2074) -(trans s5439 s2087) -(trans s5439 s2100) -(trans s5440 s2081) -(trans s5440 s2094) -(trans s5440 s2107) -(trans s5441 s2088) -(trans s5441 s2101) -(trans s5441 s2114) -(trans s5442 s2095) -(trans s5442 s2108) -(trans s5442 s2121) -(trans s5443 s2102) -(trans s5443 s2115) -(trans s5443 s2128) -(trans s5444 s2109) -(trans s5444 s2122) -(trans s5444 s2135) -(trans s5445 s2116) -(trans s5445 s2129) -(trans s5445 s2142) -(trans s5446 s2123) -(trans s5446 s2136) -(trans s5446 s2149) -(trans s5447 s2130) -(trans s5447 s2143) -(trans s5447 s2156) -(trans s5448 s2137) -(trans s5448 s2150) -(trans s5448 s2163) -(trans s5449 s2144) -(trans s5449 s2157) -(trans s5449 s2170) -(trans s5450 s2151) -(trans s5450 s2164) -(trans s5450 s2177) -(trans s5451 s2158) -(trans s5451 s2171) -(trans s5451 s2184) -(trans s5452 s2165) -(trans s5452 s2178) -(trans s5452 s2191) -(trans s5453 s2172) -(trans s5453 s2185) -(trans s5453 s2198) -(trans s5454 s2179) -(trans s5454 s2192) -(trans s5454 s2205) -(trans s5455 s2186) -(trans s5455 s2199) -(trans s5455 s2212) -(trans s5456 s2193) -(trans s5456 s2206) -(trans s5456 s2219) -(trans s5457 s2200) -(trans s5457 s2213) -(trans s5457 s2226) -(trans s5458 s2207) -(trans s5458 s2220) -(trans s5458 s2233) -(trans s5459 s2214) -(trans s5459 s2227) -(trans s5459 s2240) -(trans s5460 s2221) -(trans s5460 s2234) -(trans s5460 s2247) -(trans s5461 s2228) -(trans s5461 s2241) -(trans s5461 s2254) -(trans s5462 s2235) -(trans s5462 s2248) -(trans s5462 s2261) -(trans s5463 s2242) -(trans s5463 s2255) -(trans s5463 s2268) -(trans s5464 s2249) -(trans s5464 s2262) -(trans s5464 s2275) -(trans s5465 s2256) -(trans s5465 s2269) -(trans s5465 s2282) -(trans s5466 s2263) -(trans s5466 s2276) -(trans s5466 s2289) -(trans s5467 s2270) -(trans s5467 s2283) -(trans s5467 s2296) -(trans s5468 s2277) -(trans s5468 s2290) -(trans s5468 s2303) -(trans s5469 s2284) -(trans s5469 s2297) -(trans s5469 s2310) -(trans s5470 s2291) -(trans s5470 s2304) -(trans s5470 s2317) -(trans s5471 s2298) -(trans s5471 s2311) -(trans s5471 s2324) -(trans s5472 s2305) -(trans s5472 s2318) -(trans s5472 s2331) -(trans s5473 s2312) -(trans s5473 s2325) -(trans s5473 s2338) -(trans s5474 s2319) -(trans s5474 s2332) -(trans s5474 s2345) -(trans s5475 s2326) -(trans s5475 s2339) -(trans s5475 s2352) -(trans s5476 s2333) -(trans s5476 s2346) -(trans s5476 s2359) -(trans s5477 s2340) -(trans s5477 s2353) -(trans s5477 s2366) -(trans s5478 s2347) -(trans s5478 s2360) -(trans s5478 s2373) -(trans s5479 s2354) -(trans s5479 s2367) -(trans s5479 s2380) -(trans s5480 s2361) -(trans s5480 s2374) -(trans s5480 s2387) -(trans s5481 s2368) -(trans s5481 s2381) -(trans s5481 s2394) -(trans s5482 s2375) -(trans s5482 s2388) -(trans s5482 s2401) -(trans s5483 s2382) -(trans s5483 s2395) -(trans s5483 s2408) -(trans s5484 s2389) -(trans s5484 s2402) -(trans s5484 s2415) -(trans s5485 s2396) -(trans s5485 s2409) -(trans s5485 s2422) -(trans s5486 s2403) -(trans s5486 s2416) -(trans s5486 s2429) -(trans s5487 s2410) -(trans s5487 s2423) -(trans s5487 s2436) -(trans s5488 s2417) -(trans s5488 s2430) -(trans s5488 s2443) -(trans s5489 s2424) -(trans s5489 s2437) -(trans s5489 s2450) -(trans s5490 s2431) -(trans s5490 s2444) -(trans s5490 s2457) -(trans s5491 s2438) -(trans s5491 s2451) -(trans s5491 s2464) -(trans s5492 s2445) -(trans s5492 s2458) -(trans s5492 s2471) -(trans s5493 s2452) -(trans s5493 s2465) -(trans s5493 s2478) -(trans s5494 s2459) -(trans s5494 s2472) -(trans s5494 s2485) -(trans s5495 s2466) -(trans s5495 s2479) -(trans s5495 s2492) -(trans s5496 s2473) -(trans s5496 s2486) -(trans s5496 s2499) -(trans s5497 s2480) -(trans s5497 s2493) -(trans s5497 s2506) -(trans s5498 s2487) -(trans s5498 s2500) -(trans s5498 s2513) -(trans s5499 s2494) -(trans s5499 s2507) -(trans s5499 s2520) -(trans s5500 s2501) -(trans s5500 s2514) -(trans s5500 s2527) -(trans s5501 s2508) -(trans s5501 s2521) -(trans s5501 s2534) -(trans s5502 s2515) -(trans s5502 s2528) -(trans s5502 s2541) -(trans s5503 s2522) -(trans s5503 s2535) -(trans s5503 s2548) -(trans s5504 s2529) -(trans s5504 s2542) -(trans s5504 s2555) -(trans s5505 s2536) -(trans s5505 s2549) -(trans s5505 s2562) -(trans s5506 s2543) -(trans s5506 s2556) -(trans s5506 s2569) -(trans s5507 s2550) -(trans s5507 s2563) -(trans s5507 s2576) -(trans s5508 s2557) -(trans s5508 s2570) -(trans s5508 s2583) -(trans s5509 s2564) -(trans s5509 s2577) -(trans s5509 s2590) -(trans s5510 s2571) -(trans s5510 s2584) -(trans s5510 s2597) -(trans s5511 s2578) -(trans s5511 s2591) -(trans s5511 s2604) -(trans s5512 s2585) -(trans s5512 s2598) -(trans s5512 s2611) -(trans s5513 s2592) -(trans s5513 s2605) -(trans s5513 s2618) -(trans s5514 s2599) -(trans s5514 s2612) -(trans s5514 s2625) -(trans s5515 s2606) -(trans s5515 s2619) -(trans s5515 s2632) -(trans s5516 s2613) -(trans s5516 s2626) -(trans s5516 s2639) -(trans s5517 s2620) -(trans s5517 s2633) -(trans s5517 s2646) -(trans s5518 s2627) -(trans s5518 s2640) -(trans s5518 s2653) -(trans s5519 s2634) -(trans s5519 s2647) -(trans s5519 s2660) -(trans s5520 s2641) -(trans s5520 s2654) -(trans s5520 s2667) -(trans s5521 s2648) -(trans s5521 s2661) -(trans s5521 s2674) -(trans s5522 s2655) -(trans s5522 s2668) -(trans s5522 s2681) -(trans s5523 s2662) -(trans s5523 s2675) -(trans s5523 s2688) -(trans s5524 s2669) -(trans s5524 s2682) -(trans s5524 s2695) -(trans s5525 s2676) -(trans s5525 s2689) -(trans s5525 s2702) -(trans s5526 s2683) -(trans s5526 s2696) -(trans s5526 s2709) -(trans s5527 s2690) -(trans s5527 s2703) -(trans s5527 s2716) -(trans s5528 s2697) -(trans s5528 s2710) -(trans s5528 s2723) -(trans s5529 s2704) -(trans s5529 s2717) -(trans s5529 s2730) -(trans s5530 s2711) -(trans s5530 s2724) -(trans s5530 s2737) -(trans s5531 s2718) -(trans s5531 s2731) -(trans s5531 s2744) -(trans s5532 s2725) -(trans s5532 s2738) -(trans s5532 s2751) -(trans s5533 s2732) -(trans s5533 s2745) -(trans s5533 s2758) -(trans s5534 s2739) -(trans s5534 s2752) -(trans s5534 s2765) -(trans s5535 s2746) -(trans s5535 s2759) -(trans s5535 s2772) -(trans s5536 s2753) -(trans s5536 s2766) -(trans s5536 s2779) -(trans s5537 s2760) -(trans s5537 s2773) -(trans s5537 s2786) -(trans s5538 s2767) -(trans s5538 s2780) -(trans s5538 s2793) -(trans s5539 s2774) -(trans s5539 s2787) -(trans s5539 s2800) -(trans s5540 s2781) -(trans s5540 s2794) -(trans s5540 s2807) -(trans s5541 s2788) -(trans s5541 s2801) -(trans s5541 s2814) -(trans s5542 s2795) -(trans s5542 s2808) -(trans s5542 s2821) -(trans s5543 s2802) -(trans s5543 s2815) -(trans s5543 s2828) -(trans s5544 s2809) -(trans s5544 s2822) -(trans s5544 s2835) -(trans s5545 s2816) -(trans s5545 s2829) -(trans s5545 s2842) -(trans s5546 s2823) -(trans s5546 s2836) -(trans s5546 s2849) -(trans s5547 s2830) -(trans s5547 s2843) -(trans s5547 s2856) -(trans s5548 s2837) -(trans s5548 s2850) -(trans s5548 s2863) -(trans s5549 s2844) -(trans s5549 s2857) -(trans s5549 s2870) -(trans s5550 s2851) -(trans s5550 s2864) -(trans s5550 s2877) -(trans s5551 s2858) -(trans s5551 s2871) -(trans s5551 s2884) -(trans s5552 s2865) -(trans s5552 s2878) -(trans s5552 s2891) -(trans s5553 s2872) -(trans s5553 s2885) -(trans s5553 s2898) -(trans s5554 s2879) -(trans s5554 s2892) -(trans s5554 s2905) -(trans s5555 s2886) -(trans s5555 s2899) -(trans s5555 s2912) -(trans s5556 s2893) -(trans s5556 s2906) -(trans s5556 s2919) -(trans s5557 s2900) -(trans s5557 s2913) -(trans s5557 s2926) -(trans s5558 s2907) -(trans s5558 s2920) -(trans s5558 s2933) -(trans s5559 s2914) -(trans s5559 s2927) -(trans s5559 s2940) -(trans s5560 s2921) -(trans s5560 s2934) -(trans s5560 s2947) -(trans s5561 s2928) -(trans s5561 s2941) -(trans s5561 s2954) -(trans s5562 s2935) -(trans s5562 s2948) -(trans s5562 s2961) -(trans s5563 s2942) -(trans s5563 s2955) -(trans s5563 s2968) -(trans s5564 s2949) -(trans s5564 s2962) -(trans s5564 s2975) -(trans s5565 s2956) -(trans s5565 s2969) -(trans s5565 s2982) -(trans s5566 s2963) -(trans s5566 s2976) -(trans s5566 s2989) -(trans s5567 s2970) -(trans s5567 s2983) -(trans s5567 s2996) -(trans s5568 s2977) -(trans s5568 s2990) -(trans s5568 s3003) -(trans s5569 s2984) -(trans s5569 s2997) -(trans s5569 s3010) -(trans s5570 s2991) -(trans s5570 s3004) -(trans s5570 s3017) -(trans s5571 s2998) -(trans s5571 s3011) -(trans s5571 s3024) -(trans s5572 s3005) -(trans s5572 s3018) -(trans s5572 s3031) -(trans s5573 s3012) -(trans s5573 s3025) -(trans s5573 s3038) -(trans s5574 s3019) -(trans s5574 s3032) -(trans s5574 s3045) -(trans s5575 s3026) -(trans s5575 s3039) -(trans s5575 s3052) -(trans s5576 s3033) -(trans s5576 s3046) -(trans s5576 s3059) -(trans s5577 s3040) -(trans s5577 s3053) -(trans s5577 s3066) -(trans s5578 s3047) -(trans s5578 s3060) -(trans s5578 s3073) -(trans s5579 s3054) -(trans s5579 s3067) -(trans s5579 s3080) -(trans s5580 s3061) -(trans s5580 s3074) -(trans s5580 s3087) -(trans s5581 s3068) -(trans s5581 s3081) -(trans s5581 s3094) -(trans s5582 s3075) -(trans s5582 s3088) -(trans s5582 s3101) -(trans s5583 s3082) -(trans s5583 s3095) -(trans s5583 s3108) -(trans s5584 s3089) -(trans s5584 s3102) -(trans s5584 s3115) -(trans s5585 s3096) -(trans s5585 s3109) -(trans s5585 s3122) -(trans s5586 s3103) -(trans s5586 s3116) -(trans s5586 s3129) -(trans s5587 s3110) -(trans s5587 s3123) -(trans s5587 s3136) -(trans s5588 s3117) -(trans s5588 s3130) -(trans s5588 s3143) -(trans s5589 s3124) -(trans s5589 s3137) -(trans s5589 s3150) -(trans s5590 s3131) -(trans s5590 s3144) -(trans s5590 s3157) -(trans s5591 s3138) -(trans s5591 s3151) -(trans s5591 s3164) -(trans s5592 s3145) -(trans s5592 s3158) -(trans s5592 s3171) -(trans s5593 s3152) -(trans s5593 s3165) -(trans s5593 s3178) -(trans s5594 s3159) -(trans s5594 s3172) -(trans s5594 s3185) -(trans s5595 s3166) -(trans s5595 s3179) -(trans s5595 s3192) -(trans s5596 s3173) -(trans s5596 s3186) -(trans s5596 s3199) -(trans s5597 s3180) -(trans s5597 s3193) -(trans s5597 s3206) -(trans s5598 s3187) -(trans s5598 s3200) -(trans s5598 s3213) -(trans s5599 s3194) -(trans s5599 s3207) -(trans s5599 s3220) -(trans s5600 s3201) -(trans s5600 s3214) -(trans s5600 s3227) -(trans s5601 s3208) -(trans s5601 s3221) -(trans s5601 s3234) -(trans s5602 s3215) -(trans s5602 s3228) -(trans s5602 s3241) -(trans s5603 s3222) -(trans s5603 s3235) -(trans s5603 s3248) -(trans s5604 s3229) -(trans s5604 s3242) -(trans s5604 s3255) -(trans s5605 s3236) -(trans s5605 s3249) -(trans s5605 s3262) -(trans s5606 s3243) -(trans s5606 s3256) -(trans s5606 s3269) -(trans s5607 s3250) -(trans s5607 s3263) -(trans s5607 s3276) -(trans s5608 s3257) -(trans s5608 s3270) -(trans s5608 s3283) -(trans s5609 s3264) -(trans s5609 s3277) -(trans s5609 s3290) -(trans s5610 s3271) -(trans s5610 s3284) -(trans s5610 s3297) -(trans s5611 s3278) -(trans s5611 s3291) -(trans s5611 s3304) -(trans s5612 s3285) -(trans s5612 s3298) -(trans s5612 s3311) -(trans s5613 s3292) -(trans s5613 s3305) -(trans s5613 s3318) -(trans s5614 s3299) -(trans s5614 s3312) -(trans s5614 s3325) -(trans s5615 s3306) -(trans s5615 s3319) -(trans s5615 s3332) -(trans s5616 s3313) -(trans s5616 s3326) -(trans s5616 s3339) -(trans s5617 s3320) -(trans s5617 s3333) -(trans s5617 s3346) -(trans s5618 s3327) -(trans s5618 s3340) -(trans s5618 s3353) -(trans s5619 s3334) -(trans s5619 s3347) -(trans s5619 s3360) -(trans s5620 s3341) -(trans s5620 s3354) -(trans s5620 s3367) -(trans s5621 s3348) -(trans s5621 s3361) -(trans s5621 s3374) -(trans s5622 s3355) -(trans s5622 s3368) -(trans s5622 s3381) -(trans s5623 s3362) -(trans s5623 s3375) -(trans s5623 s3388) -(trans s5624 s3369) -(trans s5624 s3382) -(trans s5624 s3395) -(trans s5625 s3376) -(trans s5625 s3389) -(trans s5625 s3402) -(trans s5626 s3383) -(trans s5626 s3396) -(trans s5626 s3409) -(trans s5627 s3390) -(trans s5627 s3403) -(trans s5627 s3416) -(trans s5628 s3397) -(trans s5628 s3410) -(trans s5628 s3423) -(trans s5629 s3404) -(trans s5629 s3417) -(trans s5629 s3430) -(trans s5630 s3411) -(trans s5630 s3424) -(trans s5630 s3437) -(trans s5631 s3418) -(trans s5631 s3431) -(trans s5631 s3444) -(trans s5632 s3425) -(trans s5632 s3438) -(trans s5632 s3451) -(trans s5633 s3432) -(trans s5633 s3445) -(trans s5633 s3458) -(trans s5634 s3439) -(trans s5634 s3452) -(trans s5634 s3465) -(trans s5635 s3446) -(trans s5635 s3459) -(trans s5635 s3472) -(trans s5636 s3453) -(trans s5636 s3466) -(trans s5636 s3479) -(trans s5637 s3460) -(trans s5637 s3473) -(trans s5637 s3486) -(trans s5638 s3467) -(trans s5638 s3480) -(trans s5638 s3493) -(trans s5639 s3474) -(trans s5639 s3487) -(trans s5639 s3500) -(trans s5640 s3481) -(trans s5640 s3494) -(trans s5640 s3507) -(trans s5641 s3488) -(trans s5641 s3501) -(trans s5641 s3514) -(trans s5642 s3495) -(trans s5642 s3508) -(trans s5642 s3521) -(trans s5643 s3502) -(trans s5643 s3515) -(trans s5643 s3528) -(trans s5644 s3509) -(trans s5644 s3522) -(trans s5644 s3535) -(trans s5645 s3516) -(trans s5645 s3529) -(trans s5645 s3542) -(trans s5646 s3523) -(trans s5646 s3536) -(trans s5646 s3549) -(trans s5647 s3530) -(trans s5647 s3543) -(trans s5647 s3556) -(trans s5648 s3537) -(trans s5648 s3550) -(trans s5648 s3563) -(trans s5649 s3544) -(trans s5649 s3557) -(trans s5649 s3570) -(trans s5650 s3551) -(trans s5650 s3564) -(trans s5650 s3577) -(trans s5651 s3558) -(trans s5651 s3571) -(trans s5651 s3584) -(trans s5652 s3565) -(trans s5652 s3578) -(trans s5652 s3591) -(trans s5653 s3572) -(trans s5653 s3585) -(trans s5653 s3598) -(trans s5654 s3579) -(trans s5654 s3592) -(trans s5654 s3605) -(trans s5655 s3586) -(trans s5655 s3599) -(trans s5655 s3612) -(trans s5656 s3593) -(trans s5656 s3606) -(trans s5656 s3619) -(trans s5657 s3600) -(trans s5657 s3613) -(trans s5657 s3626) -(trans s5658 s3607) -(trans s5658 s3620) -(trans s5658 s3633) -(trans s5659 s3614) -(trans s5659 s3627) -(trans s5659 s3640) -(trans s5660 s3621) -(trans s5660 s3634) -(trans s5660 s3647) -(trans s5661 s3628) -(trans s5661 s3641) -(trans s5661 s3654) -(trans s5662 s3635) -(trans s5662 s3648) -(trans s5662 s3661) -(trans s5663 s3642) -(trans s5663 s3655) -(trans s5663 s3668) -(trans s5664 s3649) -(trans s5664 s3662) -(trans s5664 s3675) -(trans s5665 s3656) -(trans s5665 s3669) -(trans s5665 s3682) -(trans s5666 s3663) -(trans s5666 s3676) -(trans s5666 s3689) -(trans s5667 s3670) -(trans s5667 s3683) -(trans s5667 s3696) -(trans s5668 s3677) -(trans s5668 s3690) -(trans s5668 s3703) -(trans s5669 s3684) -(trans s5669 s3697) -(trans s5669 s3710) -(trans s5670 s3691) -(trans s5670 s3704) -(trans s5670 s3717) -(trans s5671 s3698) -(trans s5671 s3711) -(trans s5671 s3724) -(trans s5672 s3705) -(trans s5672 s3718) -(trans s5672 s3731) -(trans s5673 s3712) -(trans s5673 s3725) -(trans s5673 s3738) -(trans s5674 s3719) -(trans s5674 s3732) -(trans s5674 s3745) -(trans s5675 s3726) -(trans s5675 s3739) -(trans s5675 s3752) -(trans s5676 s3733) -(trans s5676 s3746) -(trans s5676 s3759) -(trans s5677 s3740) -(trans s5677 s3753) -(trans s5677 s3766) -(trans s5678 s3747) -(trans s5678 s3760) -(trans s5678 s3773) -(trans s5679 s3754) -(trans s5679 s3767) -(trans s5679 s3780) -(trans s5680 s3761) -(trans s5680 s3774) -(trans s5680 s3787) -(trans s5681 s3768) -(trans s5681 s3781) -(trans s5681 s3794) -(trans s5682 s3775) -(trans s5682 s3788) -(trans s5682 s3801) -(trans s5683 s3782) -(trans s5683 s3795) -(trans s5683 s3808) -(trans s5684 s3789) -(trans s5684 s3802) -(trans s5684 s3815) -(trans s5685 s3796) -(trans s5685 s3809) -(trans s5685 s3822) -(trans s5686 s3803) -(trans s5686 s3816) -(trans s5686 s3829) -(trans s5687 s3810) -(trans s5687 s3823) -(trans s5687 s3836) -(trans s5688 s3817) -(trans s5688 s3830) -(trans s5688 s3843) -(trans s5689 s3824) -(trans s5689 s3837) -(trans s5689 s3850) -(trans s5690 s3831) -(trans s5690 s3844) -(trans s5690 s3857) -(trans s5691 s3838) -(trans s5691 s3851) -(trans s5691 s3864) -(trans s5692 s3845) -(trans s5692 s3858) -(trans s5692 s3871) -(trans s5693 s3852) -(trans s5693 s3865) -(trans s5693 s3878) -(trans s5694 s3859) -(trans s5694 s3872) -(trans s5694 s3885) -(trans s5695 s3866) -(trans s5695 s3879) -(trans s5695 s3892) -(trans s5696 s3873) -(trans s5696 s3886) -(trans s5696 s3899) -(trans s5697 s3880) -(trans s5697 s3893) -(trans s5697 s3906) -(trans s5698 s3887) -(trans s5698 s3900) -(trans s5698 s3913) -(trans s5699 s3894) -(trans s5699 s3907) -(trans s5699 s3920) -(trans s5700 s3901) -(trans s5700 s3914) -(trans s5700 s3927) -(trans s5701 s3908) -(trans s5701 s3921) -(trans s5701 s3934) -(trans s5702 s3915) -(trans s5702 s3928) -(trans s5702 s3941) -(trans s5703 s3922) -(trans s5703 s3935) -(trans s5703 s3948) -(trans s5704 s3929) -(trans s5704 s3942) -(trans s5704 s3955) -(trans s5705 s3936) -(trans s5705 s3949) -(trans s5705 s3962) -(trans s5706 s3943) -(trans s5706 s3956) -(trans s5706 s3969) -(trans s5707 s3950) -(trans s5707 s3963) -(trans s5707 s3976) -(trans s5708 s3957) -(trans s5708 s3970) -(trans s5708 s3983) -(trans s5709 s3964) -(trans s5709 s3977) -(trans s5709 s3990) -(trans s5710 s3971) -(trans s5710 s3984) -(trans s5710 s3997) -(trans s5711 s3978) -(trans s5711 s3991) -(trans s5711 s4004) -(trans s5712 s3985) -(trans s5712 s3998) -(trans s5712 s4011) -(trans s5713 s3992) -(trans s5713 s4005) -(trans s5713 s4018) -(trans s5714 s3999) -(trans s5714 s4012) -(trans s5714 s4025) -(trans s5715 s4006) -(trans s5715 s4019) -(trans s5715 s4032) -(trans s5716 s4013) -(trans s5716 s4026) -(trans s5716 s4039) -(trans s5717 s4020) -(trans s5717 s4033) -(trans s5717 s4046) -(trans s5718 s4027) -(trans s5718 s4040) -(trans s5718 s4053) -(trans s5719 s4034) -(trans s5719 s4047) -(trans s5719 s4060) -(trans s5720 s4041) -(trans s5720 s4054) -(trans s5720 s4067) -(trans s5721 s4048) -(trans s5721 s4061) -(trans s5721 s4074) -(trans s5722 s4055) -(trans s5722 s4068) -(trans s5722 s4081) -(trans s5723 s4062) -(trans s5723 s4075) -(trans s5723 s4088) -(trans s5724 s4069) -(trans s5724 s4082) -(trans s5724 s4095) -(trans s5725 s4076) -(trans s5725 s4089) -(trans s5725 s4102) -(trans s5726 s4083) -(trans s5726 s4096) -(trans s5726 s4109) -(trans s5727 s4090) -(trans s5727 s4103) -(trans s5727 s4116) -(trans s5728 s4097) -(trans s5728 s4110) -(trans s5728 s4123) -(trans s5729 s4104) -(trans s5729 s4117) -(trans s5729 s4130) -(trans s5730 s4111) -(trans s5730 s4124) -(trans s5730 s4137) -(trans s5731 s4118) -(trans s5731 s4131) -(trans s5731 s4144) -(trans s5732 s4125) -(trans s5732 s4138) -(trans s5732 s4151) -(trans s5733 s4132) -(trans s5733 s4145) -(trans s5733 s4158) -(trans s5734 s4139) -(trans s5734 s4152) -(trans s5734 s4165) -(trans s5735 s4146) -(trans s5735 s4159) -(trans s5735 s4172) -(trans s5736 s4153) -(trans s5736 s4166) -(trans s5736 s4179) -(trans s5737 s4160) -(trans s5737 s4173) -(trans s5737 s4186) -(trans s5738 s4167) -(trans s5738 s4180) -(trans s5738 s4193) -(trans s5739 s4174) -(trans s5739 s4187) -(trans s5739 s4200) -(trans s5740 s4181) -(trans s5740 s4194) -(trans s5740 s4207) -(trans s5741 s4188) -(trans s5741 s4201) -(trans s5741 s4214) -(trans s5742 s4195) -(trans s5742 s4208) -(trans s5742 s4221) -(trans s5743 s4202) -(trans s5743 s4215) -(trans s5743 s4228) -(trans s5744 s4209) -(trans s5744 s4222) -(trans s5744 s4235) -(trans s5745 s4216) -(trans s5745 s4229) -(trans s5745 s4242) -(trans s5746 s4223) -(trans s5746 s4236) -(trans s5746 s4249) -(trans s5747 s4230) -(trans s5747 s4243) -(trans s5747 s4256) -(trans s5748 s4237) -(trans s5748 s4250) -(trans s5748 s4263) -(trans s5749 s4244) -(trans s5749 s4257) -(trans s5749 s4270) -(trans s5750 s4251) -(trans s5750 s4264) -(trans s5750 s4277) -(trans s5751 s4258) -(trans s5751 s4271) -(trans s5751 s4284) -(trans s5752 s4265) -(trans s5752 s4278) -(trans s5752 s4291) -(trans s5753 s4272) -(trans s5753 s4285) -(trans s5753 s4298) -(trans s5754 s4279) -(trans s5754 s4292) -(trans s5754 s4305) -(trans s5755 s4286) -(trans s5755 s4299) -(trans s5755 s4312) -(trans s5756 s4293) -(trans s5756 s4306) -(trans s5756 s4319) -(trans s5757 s4300) -(trans s5757 s4313) -(trans s5757 s4326) -(trans s5758 s4307) -(trans s5758 s4320) -(trans s5758 s4333) -(trans s5759 s4314) -(trans s5759 s4327) -(trans s5759 s4340) -(trans s5760 s4321) -(trans s5760 s4334) -(trans s5760 s4347) -(trans s5761 s4328) -(trans s5761 s4341) -(trans s5761 s4354) -(trans s5762 s4335) -(trans s5762 s4348) -(trans s5762 s4361) -(trans s5763 s4342) -(trans s5763 s4355) -(trans s5763 s4368) -(trans s5764 s4349) -(trans s5764 s4362) -(trans s5764 s4375) -(trans s5765 s4356) -(trans s5765 s4369) -(trans s5765 s4382) -(trans s5766 s4363) -(trans s5766 s4376) -(trans s5766 s4389) -(trans s5767 s4370) -(trans s5767 s4383) -(trans s5767 s4396) -(trans s5768 s4377) -(trans s5768 s4390) -(trans s5768 s4403) -(trans s5769 s4384) -(trans s5769 s4397) -(trans s5769 s4410) -(trans s5770 s4391) -(trans s5770 s4404) -(trans s5770 s4417) -(trans s5771 s4398) -(trans s5771 s4411) -(trans s5771 s4424) -(trans s5772 s4405) -(trans s5772 s4418) -(trans s5772 s4431) -(trans s5773 s4412) -(trans s5773 s4425) -(trans s5773 s4438) -(trans s5774 s4419) -(trans s5774 s4432) -(trans s5774 s4445) -(trans s5775 s4426) -(trans s5775 s4439) -(trans s5775 s4452) -(trans s5776 s4433) -(trans s5776 s4446) -(trans s5776 s4459) -(trans s5777 s4440) -(trans s5777 s4453) -(trans s5777 s4466) -(trans s5778 s4447) -(trans s5778 s4460) -(trans s5778 s4473) -(trans s5779 s4454) -(trans s5779 s4467) -(trans s5779 s4480) -(trans s5780 s4461) -(trans s5780 s4474) -(trans s5780 s4487) -(trans s5781 s4468) -(trans s5781 s4481) -(trans s5781 s4494) -(trans s5782 s4475) -(trans s5782 s4488) -(trans s5782 s4501) -(trans s5783 s4482) -(trans s5783 s4495) -(trans s5783 s4508) -(trans s5784 s4489) -(trans s5784 s4502) -(trans s5784 s4515) -(trans s5785 s4496) -(trans s5785 s4509) -(trans s5785 s4522) -(trans s5786 s4503) -(trans s5786 s4516) -(trans s5786 s4529) -(trans s5787 s4510) -(trans s5787 s4523) -(trans s5787 s4536) -(trans s5788 s4517) -(trans s5788 s4530) -(trans s5788 s4543) -(trans s5789 s4524) -(trans s5789 s4537) -(trans s5789 s4550) -(trans s5790 s4531) -(trans s5790 s4544) -(trans s5790 s4557) -(trans s5791 s4538) -(trans s5791 s4551) -(trans s5791 s4564) -(trans s5792 s4545) -(trans s5792 s4558) -(trans s5792 s4571) -(trans s5793 s4552) -(trans s5793 s4565) -(trans s5793 s4578) -(trans s5794 s4559) -(trans s5794 s4572) -(trans s5794 s4585) -(trans s5795 s4566) -(trans s5795 s4579) -(trans s5795 s4592) -(trans s5796 s4573) -(trans s5796 s4586) -(trans s5796 s4599) -(trans s5797 s4580) -(trans s5797 s4593) -(trans s5797 s4606) -(trans s5798 s4587) -(trans s5798 s4600) -(trans s5798 s4613) -(trans s5799 s4594) -(trans s5799 s4607) -(trans s5799 s4620) -(trans s5800 s4601) -(trans s5800 s4614) -(trans s5800 s4627) -(trans s5801 s4608) -(trans s5801 s4621) -(trans s5801 s4634) -(trans s5802 s4615) -(trans s5802 s4628) -(trans s5802 s4641) -(trans s5803 s4622) -(trans s5803 s4635) -(trans s5803 s4648) -(trans s5804 s4629) -(trans s5804 s4642) -(trans s5804 s4655) -(trans s5805 s4636) -(trans s5805 s4649) -(trans s5805 s4662) -(trans s5806 s4643) -(trans s5806 s4656) -(trans s5806 s4669) -(trans s5807 s4650) -(trans s5807 s4663) -(trans s5807 s4676) -(trans s5808 s4657) -(trans s5808 s4670) -(trans s5808 s4683) -(trans s5809 s4664) -(trans s5809 s4677) -(trans s5809 s4690) -(trans s5810 s4671) -(trans s5810 s4684) -(trans s5810 s4697) -(trans s5811 s4678) -(trans s5811 s4691) -(trans s5811 s4704) -(trans s5812 s4685) -(trans s5812 s4698) -(trans s5812 s4711) -(trans s5813 s4692) -(trans s5813 s4705) -(trans s5813 s4718) -(trans s5814 s4699) -(trans s5814 s4712) -(trans s5814 s4725) -(trans s5815 s4706) -(trans s5815 s4719) -(trans s5815 s4732) -(trans s5816 s4713) -(trans s5816 s4726) -(trans s5816 s4739) -(trans s5817 s4720) -(trans s5817 s4733) -(trans s5817 s4746) -(trans s5818 s4727) -(trans s5818 s4740) -(trans s5818 s4753) -(trans s5819 s4734) -(trans s5819 s4747) -(trans s5819 s4760) -(trans s5820 s4741) -(trans s5820 s4754) -(trans s5820 s4767) -(trans s5821 s4748) -(trans s5821 s4761) -(trans s5821 s4774) -(trans s5822 s4755) -(trans s5822 s4768) -(trans s5822 s4781) -(trans s5823 s4762) -(trans s5823 s4775) -(trans s5823 s4788) -(trans s5824 s4769) -(trans s5824 s4782) -(trans s5824 s4795) -(trans s5825 s4776) -(trans s5825 s4789) -(trans s5825 s4802) -(trans s5826 s4783) -(trans s5826 s4796) -(trans s5826 s4809) -(trans s5827 s4790) -(trans s5827 s4803) -(trans s5827 s4816) -(trans s5828 s4797) -(trans s5828 s4810) -(trans s5828 s4823) -(trans s5829 s4804) -(trans s5829 s4817) -(trans s5829 s4830) -(trans s5830 s4811) -(trans s5830 s4824) -(trans s5830 s4837) -(trans s5831 s4818) -(trans s5831 s4831) -(trans s5831 s4844) -(trans s5832 s4825) -(trans s5832 s4838) -(trans s5832 s4851) -(trans s5833 s4832) -(trans s5833 s4845) -(trans s5833 s4858) -(trans s5834 s4839) -(trans s5834 s4852) -(trans s5834 s4865) -(trans s5835 s4846) -(trans s5835 s4859) -(trans s5835 s4872) -(trans s5836 s4853) -(trans s5836 s4866) -(trans s5836 s4879) -(trans s5837 s4860) -(trans s5837 s4873) -(trans s5837 s4886) -(trans s5838 s4867) -(trans s5838 s4880) -(trans s5838 s4893) -(trans s5839 s4874) -(trans s5839 s4887) -(trans s5839 s4900) -(trans s5840 s4881) -(trans s5840 s4894) -(trans s5840 s4907) -(trans s5841 s4888) -(trans s5841 s4901) -(trans s5841 s4914) -(trans s5842 s4895) -(trans s5842 s4908) -(trans s5842 s4921) -(trans s5843 s4902) -(trans s5843 s4915) -(trans s5843 s4928) -(trans s5844 s4909) -(trans s5844 s4922) -(trans s5844 s4935) -(trans s5845 s4916) -(trans s5845 s4929) -(trans s5845 s4942) -(trans s5846 s4923) -(trans s5846 s4936) -(trans s5846 s4949) -(trans s5847 s4930) -(trans s5847 s4943) -(trans s5847 s4956) -(trans s5848 s4937) -(trans s5848 s4950) -(trans s5848 s4963) -(trans s5849 s4944) -(trans s5849 s4957) -(trans s5849 s4970) -(trans s5850 s4951) -(trans s5850 s4964) -(trans s5850 s4977) -(trans s5851 s4958) -(trans s5851 s4971) -(trans s5851 s4984) -(trans s5852 s4965) -(trans s5852 s4978) -(trans s5852 s4991) -(trans s5853 s4972) -(trans s5853 s4985) -(trans s5853 s4998) -(trans s5854 s4979) -(trans s5854 s4992) -(trans s5854 s5005) -(trans s5855 s4986) -(trans s5855 s4999) -(trans s5855 s5012) -(trans s5856 s4993) -(trans s5856 s5006) -(trans s5856 s5019) -(trans s5857 s5000) -(trans s5857 s5013) -(trans s5857 s5026) -(trans s5858 s5007) -(trans s5858 s5020) -(trans s5858 s5033) -(trans s5859 s5014) -(trans s5859 s5027) -(trans s5859 s5040) -(trans s5860 s5021) -(trans s5860 s5034) -(trans s5860 s5047) -(trans s5861 s5028) -(trans s5861 s5041) -(trans s5861 s5054) -(trans s5862 s5035) -(trans s5862 s5048) -(trans s5862 s5061) -(trans s5863 s5042) -(trans s5863 s5055) -(trans s5863 s5068) -(trans s5864 s5049) -(trans s5864 s5062) -(trans s5864 s5075) -(trans s5865 s5056) -(trans s5865 s5069) -(trans s5865 s5082) -(trans s5866 s5063) -(trans s5866 s5076) -(trans s5866 s5089) -(trans s5867 s5070) -(trans s5867 s5083) -(trans s5867 s5096) -(trans s5868 s5077) -(trans s5868 s5090) -(trans s5868 s5103) -(trans s5869 s5084) -(trans s5869 s5097) -(trans s5869 s5110) -(trans s5870 s5091) -(trans s5870 s5104) -(trans s5870 s5117) -(trans s5871 s5098) -(trans s5871 s5111) -(trans s5871 s5124) -(trans s5872 s5105) -(trans s5872 s5118) -(trans s5872 s5131) -(trans s5873 s5112) -(trans s5873 s5125) -(trans s5873 s5138) -(trans s5874 s5119) -(trans s5874 s5132) -(trans s5874 s5145) -(trans s5875 s5126) -(trans s5875 s5139) -(trans s5875 s5152) -(trans s5876 s5133) -(trans s5876 s5146) -(trans s5876 s5159) -(trans s5877 s5140) -(trans s5877 s5153) -(trans s5877 s5166) -(trans s5878 s5147) -(trans s5878 s5160) -(trans s5878 s5173) -(trans s5879 s5154) -(trans s5879 s5167) -(trans s5879 s5180) -(trans s5880 s5161) -(trans s5880 s5174) -(trans s5880 s5187) -(trans s5881 s5168) -(trans s5881 s5181) -(trans s5881 s5194) -(trans s5882 s5175) -(trans s5882 s5188) -(trans s5882 s5201) -(trans s5883 s5182) -(trans s5883 s5195) -(trans s5883 s5208) -(trans s5884 s5189) -(trans s5884 s5202) -(trans s5884 s5215) -(trans s5885 s5196) -(trans s5885 s5209) -(trans s5885 s5222) -(trans s5886 s5203) -(trans s5886 s5216) -(trans s5886 s5229) -(trans s5887 s5210) -(trans s5887 s5223) -(trans s5887 s5236) -(trans s5888 s5217) -(trans s5888 s5230) -(trans s5888 s5243) -(trans s5889 s5224) -(trans s5889 s5237) -(trans s5889 s5250) -(trans s5890 s5231) -(trans s5890 s5244) -(trans s5890 s5257) -(trans s5891 s5238) -(trans s5891 s5251) -(trans s5891 s5264) -(trans s5892 s5245) -(trans s5892 s5258) -(trans s5892 s5271) -(trans s5893 s5252) -(trans s5893 s5265) -(trans s5893 s5278) -(trans s5894 s5259) -(trans s5894 s5272) -(trans s5894 s5285) -(trans s5895 s5266) -(trans s5895 s5279) -(trans s5895 s5292) -(trans s5896 s5273) -(trans s5896 s5286) -(trans s5896 s5299) -(trans s5897 s5280) -(trans s5897 s5293) -(trans s5897 s5306) -(trans s5898 s5287) -(trans s5898 s5300) -(trans s5898 s5313) -(trans s5899 s5294) -(trans s5899 s5307) -(trans s5899 s5320) -(trans s5900 s5301) -(trans s5900 s5314) -(trans s5900 s5327) -(trans s5901 s5308) -(trans s5901 s5321) -(trans s5901 s5334) -(trans s5902 s5315) -(trans s5902 s5328) -(trans s5902 s5341) -(trans s5903 s5322) -(trans s5903 s5335) -(trans s5903 s5348) -(trans s5904 s5329) -(trans s5904 s5342) -(trans s5904 s5355) -(trans s5905 s5336) -(trans s5905 s5349) -(trans s5905 s5362) -(trans s5906 s5343) -(trans s5906 s5356) -(trans s5906 s5369) -(trans s5907 s5350) -(trans s5907 s5363) -(trans s5907 s5376) -(trans s5908 s5357) -(trans s5908 s5370) -(trans s5908 s5383) -(trans s5909 s5364) -(trans s5909 s5377) -(trans s5909 s5390) -(trans s5910 s5371) -(trans s5910 s5384) -(trans s5910 s5397) -(trans s5911 s5378) -(trans s5911 s5391) -(trans s5911 s5404) -(trans s5912 s5385) -(trans s5912 s5398) -(trans s5912 s5411) -(trans s5913 s5392) -(trans s5913 s5405) -(trans s5913 s5418) -(trans s5914 s5399) -(trans s5914 s5412) -(trans s5914 s5425) -(trans s5915 s5406) -(trans s5915 s5419) -(trans s5915 s5432) -(trans s5916 s5413) -(trans s5916 s5426) -(trans s5916 s5439) -(trans s5917 s5420) -(trans s5917 s5433) -(trans s5917 s5446) -(trans s5918 s5427) -(trans s5918 s5440) -(trans s5918 s5453) -(trans s5919 s5434) -(trans s5919 s5447) -(trans s5919 s5460) -(trans s5920 s5441) -(trans s5920 s5454) -(trans s5920 s5467) -(trans s5921 s5448) -(trans s5921 s5461) -(trans s5921 s5474) -(trans s5922 s5455) -(trans s5922 s5468) -(trans s5922 s5481) -(trans s5923 s5462) -(trans s5923 s5475) -(trans s5923 s5488) -(trans s5924 s5469) -(trans s5924 s5482) -(trans s5924 s5495) -(trans s5925 s5476) -(trans s5925 s5489) -(trans s5925 s5502) -(trans s5926 s5483) -(trans s5926 s5496) -(trans s5926 s5509) -(trans s5927 s5490) -(trans s5927 s5503) -(trans s5927 s5516) -(trans s5928 s5497) -(trans s5928 s5510) -(trans s5928 s5523) -(trans s5929 s5504) -(trans s5929 s5517) -(trans s5929 s5530) -(trans s5930 s5511) -(trans s5930 s5524) -(trans s5930 s5537) -(trans s5931 s5518) -(trans s5931 s5531) -(trans s5931 s5544) -(trans s5932 s5525) -(trans s5932 s5538) -(trans s5932 s5551) -(trans s5933 s5532) -(trans s5933 s5545) -(trans s5933 s5558) -(trans s5934 s5539) -(trans s5934 s5552) -(trans s5934 s5565) -(trans s5935 s5546) -(trans s5935 s5559) -(trans s5935 s5572) -(trans s5936 s5553) -(trans s5936 s5566) -(trans s5936 s5579) -(trans s5937 s5560) -(trans s5937 s5573) -(trans s5937 s5586) -(trans s5938 s5567) -(trans s5938 s5580) -(trans s5938 s5593) -(trans s5939 s5574) -(trans s5939 s5587) -(trans s5939 s5600) -(trans s5940 s5581) -(trans s5940 s5594) -(trans s5940 s5607) -(trans s5941 s5588) -(trans s5941 s5601) -(trans s5941 s5614) -(trans s5942 s5595) -(trans s5942 s5608) -(trans s5942 s5621) -(trans s5943 s5602) -(trans s5943 s5615) -(trans s5943 s5628) -(trans s5944 s5609) -(trans s5944 s5622) -(trans s5944 s5635) -(trans s5945 s5616) -(trans s5945 s5629) -(trans s5945 s5642) -(trans s5946 s5623) -(trans s5946 s5636) -(trans s5946 s5649) -(trans s5947 s5630) -(trans s5947 s5643) -(trans s5947 s5656) -(trans s5948 s5637) -(trans s5948 s5650) -(trans s5948 s5663) -(trans s5949 s5644) -(trans s5949 s5657) -(trans s5949 s5670) -(trans s5950 s5651) -(trans s5950 s5664) -(trans s5950 s5677) -(trans s5951 s5658) -(trans s5951 s5671) -(trans s5951 s5684) -(trans s5952 s5665) -(trans s5952 s5678) -(trans s5952 s5691) -(trans s5953 s5672) -(trans s5953 s5685) -(trans s5953 s5698) -(trans s5954 s5679) -(trans s5954 s5692) -(trans s5954 s5705) -(trans s5955 s5686) -(trans s5955 s5699) -(trans s5955 s5712) -(trans s5956 s5693) -(trans s5956 s5706) -(trans s5956 s5719) -(trans s5957 s5700) -(trans s5957 s5713) -(trans s5957 s5726) -(trans s5958 s5707) -(trans s5958 s5720) -(trans s5958 s5733) -(trans s5959 s5714) -(trans s5959 s5727) -(trans s5959 s5740) -(trans s5960 s5721) -(trans s5960 s5734) -(trans s5960 s5747) -(trans s5961 s5728) -(trans s5961 s5741) -(trans s5961 s5754) -(trans s5962 s5735) -(trans s5962 s5748) -(trans s5962 s5761) -(trans s5963 s5742) -(trans s5963 s5755) -(trans s5963 s5768) -(trans s5964 s5749) -(trans s5964 s5762) -(trans s5964 s5775) -(trans s5965 s5756) -(trans s5965 s5769) -(trans s5965 s5782) -(trans s5966 s5763) -(trans s5966 s5776) -(trans s5966 s5789) -(trans s5967 s5770) -(trans s5967 s5783) -(trans s5967 s5796) -(trans s5968 s5777) -(trans s5968 s5790) -(trans s5968 s5803) -(trans s5969 s5784) -(trans s5969 s5797) -(trans s5969 s5810) -(trans s5970 s5791) -(trans s5970 s5804) -(trans s5970 s5817) -(trans s5971 s5798) -(trans s5971 s5811) -(trans s5971 s5824) -(trans s5972 s5805) -(trans s5972 s5818) -(trans s5972 s5831) -(trans s5973 s5812) -(trans s5973 s5825) -(trans s5973 s5838) -(trans s5974 s5819) -(trans s5974 s5832) -(trans s5974 s5845) -(trans s5975 s5826) -(trans s5975 s5839) -(trans s5975 s5852) -(trans s5976 s5833) -(trans s5976 s5846) -(trans s5976 s5859) -(trans s5977 s5840) -(trans s5977 s5853) -(trans s5977 s5866) -(trans s5978 s5847) -(trans s5978 s5860) -(trans s5978 s5873) -(trans s5979 s5854) -(trans s5979 s5867) -(trans s5979 s5880) -(trans s5980 s5861) -(trans s5980 s5874) -(trans s5980 s5887) -(trans s5981 s5868) -(trans s5981 s5881) -(trans s5981 s5894) -(trans s5982 s5875) -(trans s5982 s5888) -(trans s5982 s5901) -(trans s5983 s5882) -(trans s5983 s5895) -(trans s5983 s5908) -(trans s5984 s5889) -(trans s5984 s5902) -(trans s5984 s5915) -(trans s5985 s5896) -(trans s5985 s5909) -(trans s5985 s5922) -(trans s5986 s5903) -(trans s5986 s5916) -(trans s5986 s5929) -(trans s5987 s5910) -(trans s5987 s5923) -(trans s5987 s5936) -(trans s5988 s5917) -(trans s5988 s5930) -(trans s5988 s5943) -(trans s5989 s5924) -(trans s5989 s5937) -(trans s5989 s5950) -(trans s5990 s5931) -(trans s5990 s5944) -(trans s5990 s5957) -(trans s5991 s5938) -(trans s5991 s5951) -(trans s5991 s5964) -(trans s5992 s5945) -(trans s5992 s5958) -(trans s5992 s5971) -(trans s5993 s5952) -(trans s5993 s5965) -(trans s5993 s5978) -(trans s5994 s5959) -(trans s5994 s5972) -(trans s5994 s5985) -(trans s5995 s5966) -(trans s5995 s5979) -(trans s5995 s5992) -(trans s5996 s5973) -(trans s5996 s5986) -(trans s5996 s5999) -(trans s5997 s5980) -(trans s5997 s5993) -(trans s5997 s6) -(trans s5998 s5987) -(trans s5998 s0) -(trans s5998 s13) -(trans s5999 s5994) -(trans s5999 s7) -(trans s5999 s20) -(state s0) -(dstate s0) -(fuelD (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))))))))))))) - - -;; One exec: take the worklist, publish successors into both the state set and the worklist, -;; retire what was taken. A separate promotion exec would be starved -- this family re-adds -;; itself and sorts first, so it consumes all the fuel before the promoter ever runs. -(exec (1 Z) (, (exec (1 $l) $p $t) (fuelD (S $k)) (dstate $s) (trans $s $u)) - (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (dstate $u)) - (- (dstate $s)) (+ (fuelD $k)) (- (fuelD (S $k))))) diff --git a/examples/transforms/lts_naive.mm2 b/examples/transforms/lts_naive.mm2 deleted file mode 100644 index fc76dd74..00000000 --- a/examples/transforms/lts_naive.mm2 +++ /dev/null @@ -1,18005 +0,0 @@ -(trans s0 s1) -(trans s0 s14) -(trans s0 s27) -(trans s1 s8) -(trans s1 s21) -(trans s1 s34) -(trans s2 s15) -(trans s2 s28) -(trans s2 s41) -(trans s3 s22) -(trans s3 s35) -(trans s3 s48) -(trans s4 s29) -(trans s4 s42) -(trans s4 s55) -(trans s5 s36) -(trans s5 s49) -(trans s5 s62) -(trans s6 s43) -(trans s6 s56) -(trans s6 s69) -(trans s7 s50) -(trans s7 s63) -(trans s7 s76) -(trans s8 s57) -(trans s8 s70) -(trans s8 s83) -(trans s9 s64) -(trans s9 s77) -(trans s9 s90) -(trans s10 s71) -(trans s10 s84) -(trans s10 s97) -(trans s11 s78) -(trans s11 s91) -(trans s11 s104) -(trans s12 s85) -(trans s12 s98) -(trans s12 s111) -(trans s13 s92) -(trans s13 s105) -(trans s13 s118) -(trans s14 s99) -(trans s14 s112) -(trans s14 s125) -(trans s15 s106) -(trans s15 s119) -(trans s15 s132) -(trans s16 s113) -(trans s16 s126) -(trans s16 s139) -(trans s17 s120) -(trans s17 s133) -(trans s17 s146) -(trans s18 s127) -(trans s18 s140) -(trans s18 s153) -(trans s19 s134) -(trans s19 s147) -(trans s19 s160) -(trans s20 s141) -(trans s20 s154) -(trans s20 s167) -(trans s21 s148) -(trans s21 s161) -(trans s21 s174) -(trans s22 s155) -(trans s22 s168) -(trans s22 s181) -(trans s23 s162) -(trans s23 s175) -(trans s23 s188) -(trans s24 s169) -(trans s24 s182) -(trans s24 s195) -(trans s25 s176) -(trans s25 s189) -(trans s25 s202) -(trans s26 s183) -(trans s26 s196) -(trans s26 s209) -(trans s27 s190) -(trans s27 s203) -(trans s27 s216) -(trans s28 s197) -(trans s28 s210) -(trans s28 s223) -(trans s29 s204) -(trans s29 s217) -(trans s29 s230) -(trans s30 s211) -(trans s30 s224) -(trans s30 s237) -(trans s31 s218) -(trans s31 s231) -(trans s31 s244) -(trans s32 s225) -(trans s32 s238) -(trans s32 s251) -(trans s33 s232) -(trans s33 s245) -(trans s33 s258) -(trans s34 s239) -(trans s34 s252) -(trans s34 s265) -(trans s35 s246) -(trans s35 s259) -(trans s35 s272) -(trans s36 s253) -(trans s36 s266) -(trans s36 s279) -(trans s37 s260) -(trans s37 s273) -(trans s37 s286) -(trans s38 s267) -(trans s38 s280) -(trans s38 s293) -(trans s39 s274) -(trans s39 s287) -(trans s39 s300) -(trans s40 s281) -(trans s40 s294) -(trans s40 s307) -(trans s41 s288) -(trans s41 s301) -(trans s41 s314) -(trans s42 s295) -(trans s42 s308) -(trans s42 s321) -(trans s43 s302) -(trans s43 s315) -(trans s43 s328) -(trans s44 s309) -(trans s44 s322) -(trans s44 s335) -(trans s45 s316) -(trans s45 s329) -(trans s45 s342) -(trans s46 s323) -(trans s46 s336) -(trans s46 s349) -(trans s47 s330) -(trans s47 s343) -(trans s47 s356) -(trans s48 s337) -(trans s48 s350) -(trans s48 s363) -(trans s49 s344) -(trans s49 s357) -(trans s49 s370) -(trans s50 s351) -(trans s50 s364) -(trans s50 s377) -(trans s51 s358) -(trans s51 s371) -(trans s51 s384) -(trans s52 s365) -(trans s52 s378) -(trans s52 s391) -(trans s53 s372) -(trans s53 s385) -(trans s53 s398) -(trans s54 s379) -(trans s54 s392) -(trans s54 s405) -(trans s55 s386) -(trans s55 s399) -(trans s55 s412) -(trans s56 s393) -(trans s56 s406) -(trans s56 s419) -(trans s57 s400) -(trans s57 s413) -(trans s57 s426) -(trans s58 s407) -(trans s58 s420) -(trans s58 s433) -(trans s59 s414) -(trans s59 s427) -(trans s59 s440) -(trans s60 s421) -(trans s60 s434) -(trans s60 s447) -(trans s61 s428) -(trans s61 s441) -(trans s61 s454) -(trans s62 s435) -(trans s62 s448) -(trans s62 s461) -(trans s63 s442) -(trans s63 s455) -(trans s63 s468) -(trans s64 s449) -(trans s64 s462) -(trans s64 s475) -(trans s65 s456) -(trans s65 s469) -(trans s65 s482) -(trans s66 s463) -(trans s66 s476) -(trans s66 s489) -(trans s67 s470) -(trans s67 s483) -(trans s67 s496) -(trans s68 s477) -(trans s68 s490) -(trans s68 s503) -(trans s69 s484) -(trans s69 s497) -(trans s69 s510) -(trans s70 s491) -(trans s70 s504) -(trans s70 s517) -(trans s71 s498) -(trans s71 s511) -(trans s71 s524) -(trans s72 s505) -(trans s72 s518) -(trans s72 s531) -(trans s73 s512) -(trans s73 s525) -(trans s73 s538) -(trans s74 s519) -(trans s74 s532) -(trans s74 s545) -(trans s75 s526) -(trans s75 s539) -(trans s75 s552) -(trans s76 s533) -(trans s76 s546) -(trans s76 s559) -(trans s77 s540) -(trans s77 s553) -(trans s77 s566) -(trans s78 s547) -(trans s78 s560) -(trans s78 s573) -(trans s79 s554) -(trans s79 s567) -(trans s79 s580) -(trans s80 s561) -(trans s80 s574) -(trans s80 s587) -(trans s81 s568) -(trans s81 s581) -(trans s81 s594) -(trans s82 s575) -(trans s82 s588) -(trans s82 s601) -(trans s83 s582) -(trans s83 s595) -(trans s83 s608) -(trans s84 s589) -(trans s84 s602) -(trans s84 s615) -(trans s85 s596) -(trans s85 s609) -(trans s85 s622) -(trans s86 s603) -(trans s86 s616) -(trans s86 s629) -(trans s87 s610) -(trans s87 s623) -(trans s87 s636) -(trans s88 s617) -(trans s88 s630) -(trans s88 s643) -(trans s89 s624) -(trans s89 s637) -(trans s89 s650) -(trans s90 s631) -(trans s90 s644) -(trans s90 s657) -(trans s91 s638) -(trans s91 s651) -(trans s91 s664) -(trans s92 s645) -(trans s92 s658) -(trans s92 s671) -(trans s93 s652) -(trans s93 s665) -(trans s93 s678) -(trans s94 s659) -(trans s94 s672) -(trans s94 s685) -(trans s95 s666) -(trans s95 s679) -(trans s95 s692) -(trans s96 s673) -(trans s96 s686) -(trans s96 s699) -(trans s97 s680) -(trans s97 s693) -(trans s97 s706) -(trans s98 s687) -(trans s98 s700) -(trans s98 s713) -(trans s99 s694) -(trans s99 s707) -(trans s99 s720) -(trans s100 s701) -(trans s100 s714) -(trans s100 s727) -(trans s101 s708) -(trans s101 s721) -(trans s101 s734) -(trans s102 s715) -(trans s102 s728) -(trans s102 s741) -(trans s103 s722) -(trans s103 s735) -(trans s103 s748) -(trans s104 s729) -(trans s104 s742) -(trans s104 s755) -(trans s105 s736) -(trans s105 s749) -(trans s105 s762) -(trans s106 s743) -(trans s106 s756) -(trans s106 s769) -(trans s107 s750) -(trans s107 s763) -(trans s107 s776) -(trans s108 s757) -(trans s108 s770) -(trans s108 s783) -(trans s109 s764) -(trans s109 s777) -(trans s109 s790) -(trans s110 s771) -(trans s110 s784) -(trans s110 s797) -(trans s111 s778) -(trans s111 s791) -(trans s111 s804) -(trans s112 s785) -(trans s112 s798) -(trans s112 s811) -(trans s113 s792) -(trans s113 s805) -(trans s113 s818) -(trans s114 s799) -(trans s114 s812) -(trans s114 s825) -(trans s115 s806) -(trans s115 s819) -(trans s115 s832) -(trans s116 s813) -(trans s116 s826) -(trans s116 s839) -(trans s117 s820) -(trans s117 s833) -(trans s117 s846) -(trans s118 s827) -(trans s118 s840) -(trans s118 s853) -(trans s119 s834) -(trans s119 s847) -(trans s119 s860) -(trans s120 s841) -(trans s120 s854) -(trans s120 s867) -(trans s121 s848) -(trans s121 s861) -(trans s121 s874) -(trans s122 s855) -(trans s122 s868) -(trans s122 s881) -(trans s123 s862) -(trans s123 s875) -(trans s123 s888) -(trans s124 s869) -(trans s124 s882) -(trans s124 s895) -(trans s125 s876) -(trans s125 s889) -(trans s125 s902) -(trans s126 s883) -(trans s126 s896) -(trans s126 s909) -(trans s127 s890) -(trans s127 s903) -(trans s127 s916) -(trans s128 s897) -(trans s128 s910) -(trans s128 s923) -(trans s129 s904) -(trans s129 s917) -(trans s129 s930) -(trans s130 s911) -(trans s130 s924) -(trans s130 s937) -(trans s131 s918) -(trans s131 s931) -(trans s131 s944) -(trans s132 s925) -(trans s132 s938) -(trans s132 s951) -(trans s133 s932) -(trans s133 s945) -(trans s133 s958) -(trans s134 s939) -(trans s134 s952) -(trans s134 s965) -(trans s135 s946) -(trans s135 s959) -(trans s135 s972) -(trans s136 s953) -(trans s136 s966) -(trans s136 s979) -(trans s137 s960) -(trans s137 s973) -(trans s137 s986) -(trans s138 s967) -(trans s138 s980) -(trans s138 s993) -(trans s139 s974) -(trans s139 s987) -(trans s139 s1000) -(trans s140 s981) -(trans s140 s994) -(trans s140 s1007) -(trans s141 s988) -(trans s141 s1001) -(trans s141 s1014) -(trans s142 s995) -(trans s142 s1008) -(trans s142 s1021) -(trans s143 s1002) -(trans s143 s1015) -(trans s143 s1028) -(trans s144 s1009) -(trans s144 s1022) -(trans s144 s1035) -(trans s145 s1016) -(trans s145 s1029) -(trans s145 s1042) -(trans s146 s1023) -(trans s146 s1036) -(trans s146 s1049) -(trans s147 s1030) -(trans s147 s1043) -(trans s147 s1056) -(trans s148 s1037) -(trans s148 s1050) -(trans s148 s1063) -(trans s149 s1044) -(trans s149 s1057) -(trans s149 s1070) -(trans s150 s1051) -(trans s150 s1064) -(trans s150 s1077) -(trans s151 s1058) -(trans s151 s1071) -(trans s151 s1084) -(trans s152 s1065) -(trans s152 s1078) -(trans s152 s1091) -(trans s153 s1072) -(trans s153 s1085) -(trans s153 s1098) -(trans s154 s1079) -(trans s154 s1092) -(trans s154 s1105) -(trans s155 s1086) -(trans s155 s1099) -(trans s155 s1112) -(trans s156 s1093) -(trans s156 s1106) -(trans s156 s1119) -(trans s157 s1100) -(trans s157 s1113) -(trans s157 s1126) -(trans s158 s1107) -(trans s158 s1120) -(trans s158 s1133) -(trans s159 s1114) -(trans s159 s1127) -(trans s159 s1140) -(trans s160 s1121) -(trans s160 s1134) -(trans s160 s1147) -(trans s161 s1128) -(trans s161 s1141) -(trans s161 s1154) -(trans s162 s1135) -(trans s162 s1148) -(trans s162 s1161) -(trans s163 s1142) -(trans s163 s1155) -(trans s163 s1168) -(trans s164 s1149) -(trans s164 s1162) -(trans s164 s1175) -(trans s165 s1156) -(trans s165 s1169) -(trans s165 s1182) -(trans s166 s1163) -(trans s166 s1176) -(trans s166 s1189) -(trans s167 s1170) -(trans s167 s1183) -(trans s167 s1196) -(trans s168 s1177) -(trans s168 s1190) -(trans s168 s1203) -(trans s169 s1184) -(trans s169 s1197) -(trans s169 s1210) -(trans s170 s1191) -(trans s170 s1204) -(trans s170 s1217) -(trans s171 s1198) -(trans s171 s1211) -(trans s171 s1224) -(trans s172 s1205) -(trans s172 s1218) -(trans s172 s1231) -(trans s173 s1212) -(trans s173 s1225) -(trans s173 s1238) -(trans s174 s1219) -(trans s174 s1232) -(trans s174 s1245) -(trans s175 s1226) -(trans s175 s1239) -(trans s175 s1252) -(trans s176 s1233) -(trans s176 s1246) -(trans s176 s1259) -(trans s177 s1240) -(trans s177 s1253) -(trans s177 s1266) -(trans s178 s1247) -(trans s178 s1260) -(trans s178 s1273) -(trans s179 s1254) -(trans s179 s1267) -(trans s179 s1280) -(trans s180 s1261) -(trans s180 s1274) -(trans s180 s1287) -(trans s181 s1268) -(trans s181 s1281) -(trans s181 s1294) -(trans s182 s1275) -(trans s182 s1288) -(trans s182 s1301) -(trans s183 s1282) -(trans s183 s1295) -(trans s183 s1308) -(trans s184 s1289) -(trans s184 s1302) -(trans s184 s1315) -(trans s185 s1296) -(trans s185 s1309) -(trans s185 s1322) -(trans s186 s1303) -(trans s186 s1316) -(trans s186 s1329) -(trans s187 s1310) -(trans s187 s1323) -(trans s187 s1336) -(trans s188 s1317) -(trans s188 s1330) -(trans s188 s1343) -(trans s189 s1324) -(trans s189 s1337) -(trans s189 s1350) -(trans s190 s1331) -(trans s190 s1344) -(trans s190 s1357) -(trans s191 s1338) -(trans s191 s1351) -(trans s191 s1364) -(trans s192 s1345) -(trans s192 s1358) -(trans s192 s1371) -(trans s193 s1352) -(trans s193 s1365) -(trans s193 s1378) -(trans s194 s1359) -(trans s194 s1372) -(trans s194 s1385) -(trans s195 s1366) -(trans s195 s1379) -(trans s195 s1392) -(trans s196 s1373) -(trans s196 s1386) -(trans s196 s1399) -(trans s197 s1380) -(trans s197 s1393) -(trans s197 s1406) -(trans s198 s1387) -(trans s198 s1400) -(trans s198 s1413) -(trans s199 s1394) -(trans s199 s1407) -(trans s199 s1420) -(trans s200 s1401) -(trans s200 s1414) -(trans s200 s1427) -(trans s201 s1408) -(trans s201 s1421) -(trans s201 s1434) -(trans s202 s1415) -(trans s202 s1428) -(trans s202 s1441) -(trans s203 s1422) -(trans s203 s1435) -(trans s203 s1448) -(trans s204 s1429) -(trans s204 s1442) -(trans s204 s1455) -(trans s205 s1436) -(trans s205 s1449) -(trans s205 s1462) -(trans s206 s1443) -(trans s206 s1456) -(trans s206 s1469) -(trans s207 s1450) -(trans s207 s1463) -(trans s207 s1476) -(trans s208 s1457) -(trans s208 s1470) -(trans s208 s1483) -(trans s209 s1464) -(trans s209 s1477) -(trans s209 s1490) -(trans s210 s1471) -(trans s210 s1484) -(trans s210 s1497) -(trans s211 s1478) -(trans s211 s1491) -(trans s211 s1504) -(trans s212 s1485) -(trans s212 s1498) -(trans s212 s1511) -(trans s213 s1492) -(trans s213 s1505) -(trans s213 s1518) -(trans s214 s1499) -(trans s214 s1512) -(trans s214 s1525) -(trans s215 s1506) -(trans s215 s1519) -(trans s215 s1532) -(trans s216 s1513) -(trans s216 s1526) -(trans s216 s1539) -(trans s217 s1520) -(trans s217 s1533) -(trans s217 s1546) -(trans s218 s1527) -(trans s218 s1540) -(trans s218 s1553) -(trans s219 s1534) -(trans s219 s1547) -(trans s219 s1560) -(trans s220 s1541) -(trans s220 s1554) -(trans s220 s1567) -(trans s221 s1548) -(trans s221 s1561) -(trans s221 s1574) -(trans s222 s1555) -(trans s222 s1568) -(trans s222 s1581) -(trans s223 s1562) -(trans s223 s1575) -(trans s223 s1588) -(trans s224 s1569) -(trans s224 s1582) -(trans s224 s1595) -(trans s225 s1576) -(trans s225 s1589) -(trans s225 s1602) -(trans s226 s1583) -(trans s226 s1596) -(trans s226 s1609) -(trans s227 s1590) -(trans s227 s1603) -(trans s227 s1616) -(trans s228 s1597) -(trans s228 s1610) -(trans s228 s1623) -(trans s229 s1604) -(trans s229 s1617) -(trans s229 s1630) -(trans s230 s1611) -(trans s230 s1624) -(trans s230 s1637) -(trans s231 s1618) -(trans s231 s1631) -(trans s231 s1644) -(trans s232 s1625) -(trans s232 s1638) -(trans s232 s1651) -(trans s233 s1632) -(trans s233 s1645) -(trans s233 s1658) -(trans s234 s1639) -(trans s234 s1652) -(trans s234 s1665) -(trans s235 s1646) -(trans s235 s1659) -(trans s235 s1672) -(trans s236 s1653) -(trans s236 s1666) -(trans s236 s1679) -(trans s237 s1660) -(trans s237 s1673) -(trans s237 s1686) -(trans s238 s1667) -(trans s238 s1680) -(trans s238 s1693) -(trans s239 s1674) -(trans s239 s1687) -(trans s239 s1700) -(trans s240 s1681) -(trans s240 s1694) -(trans s240 s1707) -(trans s241 s1688) -(trans s241 s1701) -(trans s241 s1714) -(trans s242 s1695) -(trans s242 s1708) -(trans s242 s1721) -(trans s243 s1702) -(trans s243 s1715) -(trans s243 s1728) -(trans s244 s1709) -(trans s244 s1722) -(trans s244 s1735) -(trans s245 s1716) -(trans s245 s1729) -(trans s245 s1742) -(trans s246 s1723) -(trans s246 s1736) -(trans s246 s1749) -(trans s247 s1730) -(trans s247 s1743) -(trans s247 s1756) -(trans s248 s1737) -(trans s248 s1750) -(trans s248 s1763) -(trans s249 s1744) -(trans s249 s1757) -(trans s249 s1770) -(trans s250 s1751) -(trans s250 s1764) -(trans s250 s1777) -(trans s251 s1758) -(trans s251 s1771) -(trans s251 s1784) -(trans s252 s1765) -(trans s252 s1778) -(trans s252 s1791) -(trans s253 s1772) -(trans s253 s1785) -(trans s253 s1798) -(trans s254 s1779) -(trans s254 s1792) -(trans s254 s1805) -(trans s255 s1786) -(trans s255 s1799) -(trans s255 s1812) -(trans s256 s1793) -(trans s256 s1806) -(trans s256 s1819) -(trans s257 s1800) -(trans s257 s1813) -(trans s257 s1826) -(trans s258 s1807) -(trans s258 s1820) -(trans s258 s1833) -(trans s259 s1814) -(trans s259 s1827) -(trans s259 s1840) -(trans s260 s1821) -(trans s260 s1834) -(trans s260 s1847) -(trans s261 s1828) -(trans s261 s1841) -(trans s261 s1854) -(trans s262 s1835) -(trans s262 s1848) -(trans s262 s1861) -(trans s263 s1842) -(trans s263 s1855) -(trans s263 s1868) -(trans s264 s1849) -(trans s264 s1862) -(trans s264 s1875) -(trans s265 s1856) -(trans s265 s1869) -(trans s265 s1882) -(trans s266 s1863) -(trans s266 s1876) -(trans s266 s1889) -(trans s267 s1870) -(trans s267 s1883) -(trans s267 s1896) -(trans s268 s1877) -(trans s268 s1890) -(trans s268 s1903) -(trans s269 s1884) -(trans s269 s1897) -(trans s269 s1910) -(trans s270 s1891) -(trans s270 s1904) -(trans s270 s1917) -(trans s271 s1898) -(trans s271 s1911) -(trans s271 s1924) -(trans s272 s1905) -(trans s272 s1918) -(trans s272 s1931) -(trans s273 s1912) -(trans s273 s1925) -(trans s273 s1938) -(trans s274 s1919) -(trans s274 s1932) -(trans s274 s1945) -(trans s275 s1926) -(trans s275 s1939) -(trans s275 s1952) -(trans s276 s1933) -(trans s276 s1946) -(trans s276 s1959) -(trans s277 s1940) -(trans s277 s1953) -(trans s277 s1966) -(trans s278 s1947) -(trans s278 s1960) -(trans s278 s1973) -(trans s279 s1954) -(trans s279 s1967) -(trans s279 s1980) -(trans s280 s1961) -(trans s280 s1974) -(trans s280 s1987) -(trans s281 s1968) -(trans s281 s1981) -(trans s281 s1994) -(trans s282 s1975) -(trans s282 s1988) -(trans s282 s2001) -(trans s283 s1982) -(trans s283 s1995) -(trans s283 s2008) -(trans s284 s1989) -(trans s284 s2002) -(trans s284 s2015) -(trans s285 s1996) -(trans s285 s2009) -(trans s285 s2022) -(trans s286 s2003) -(trans s286 s2016) -(trans s286 s2029) -(trans s287 s2010) -(trans s287 s2023) -(trans s287 s2036) -(trans s288 s2017) -(trans s288 s2030) -(trans s288 s2043) -(trans s289 s2024) -(trans s289 s2037) -(trans s289 s2050) -(trans s290 s2031) -(trans s290 s2044) -(trans s290 s2057) -(trans s291 s2038) -(trans s291 s2051) -(trans s291 s2064) -(trans s292 s2045) -(trans s292 s2058) -(trans s292 s2071) -(trans s293 s2052) -(trans s293 s2065) -(trans s293 s2078) -(trans s294 s2059) -(trans s294 s2072) -(trans s294 s2085) -(trans s295 s2066) -(trans s295 s2079) -(trans s295 s2092) -(trans s296 s2073) -(trans s296 s2086) -(trans s296 s2099) -(trans s297 s2080) -(trans s297 s2093) -(trans s297 s2106) -(trans s298 s2087) -(trans s298 s2100) -(trans s298 s2113) -(trans s299 s2094) -(trans s299 s2107) -(trans s299 s2120) -(trans s300 s2101) -(trans s300 s2114) -(trans s300 s2127) -(trans s301 s2108) -(trans s301 s2121) -(trans s301 s2134) -(trans s302 s2115) -(trans s302 s2128) -(trans s302 s2141) -(trans s303 s2122) -(trans s303 s2135) -(trans s303 s2148) -(trans s304 s2129) -(trans s304 s2142) -(trans s304 s2155) -(trans s305 s2136) -(trans s305 s2149) -(trans s305 s2162) -(trans s306 s2143) -(trans s306 s2156) -(trans s306 s2169) -(trans s307 s2150) -(trans s307 s2163) -(trans s307 s2176) -(trans s308 s2157) -(trans s308 s2170) -(trans s308 s2183) -(trans s309 s2164) -(trans s309 s2177) -(trans s309 s2190) -(trans s310 s2171) -(trans s310 s2184) -(trans s310 s2197) -(trans s311 s2178) -(trans s311 s2191) -(trans s311 s2204) -(trans s312 s2185) -(trans s312 s2198) -(trans s312 s2211) -(trans s313 s2192) -(trans s313 s2205) -(trans s313 s2218) -(trans s314 s2199) -(trans s314 s2212) -(trans s314 s2225) -(trans s315 s2206) -(trans s315 s2219) -(trans s315 s2232) -(trans s316 s2213) -(trans s316 s2226) -(trans s316 s2239) -(trans s317 s2220) -(trans s317 s2233) -(trans s317 s2246) -(trans s318 s2227) -(trans s318 s2240) -(trans s318 s2253) -(trans s319 s2234) -(trans s319 s2247) -(trans s319 s2260) -(trans s320 s2241) -(trans s320 s2254) -(trans s320 s2267) -(trans s321 s2248) -(trans s321 s2261) -(trans s321 s2274) -(trans s322 s2255) -(trans s322 s2268) -(trans s322 s2281) -(trans s323 s2262) -(trans s323 s2275) -(trans s323 s2288) -(trans s324 s2269) -(trans s324 s2282) -(trans s324 s2295) -(trans s325 s2276) -(trans s325 s2289) -(trans s325 s2302) -(trans s326 s2283) -(trans s326 s2296) -(trans s326 s2309) -(trans s327 s2290) -(trans s327 s2303) -(trans s327 s2316) -(trans s328 s2297) -(trans s328 s2310) -(trans s328 s2323) -(trans s329 s2304) -(trans s329 s2317) -(trans s329 s2330) -(trans s330 s2311) -(trans s330 s2324) -(trans s330 s2337) -(trans s331 s2318) -(trans s331 s2331) -(trans s331 s2344) -(trans s332 s2325) -(trans s332 s2338) -(trans s332 s2351) -(trans s333 s2332) -(trans s333 s2345) -(trans s333 s2358) -(trans s334 s2339) -(trans s334 s2352) -(trans s334 s2365) -(trans s335 s2346) -(trans s335 s2359) -(trans s335 s2372) -(trans s336 s2353) -(trans s336 s2366) -(trans s336 s2379) -(trans s337 s2360) -(trans s337 s2373) -(trans s337 s2386) -(trans s338 s2367) -(trans s338 s2380) -(trans s338 s2393) -(trans s339 s2374) -(trans s339 s2387) -(trans s339 s2400) -(trans s340 s2381) -(trans s340 s2394) -(trans s340 s2407) -(trans s341 s2388) -(trans s341 s2401) -(trans s341 s2414) -(trans s342 s2395) -(trans s342 s2408) -(trans s342 s2421) -(trans s343 s2402) -(trans s343 s2415) -(trans s343 s2428) -(trans s344 s2409) -(trans s344 s2422) -(trans s344 s2435) -(trans s345 s2416) -(trans s345 s2429) -(trans s345 s2442) -(trans s346 s2423) -(trans s346 s2436) -(trans s346 s2449) -(trans s347 s2430) -(trans s347 s2443) -(trans s347 s2456) -(trans s348 s2437) -(trans s348 s2450) -(trans s348 s2463) -(trans s349 s2444) -(trans s349 s2457) -(trans s349 s2470) -(trans s350 s2451) -(trans s350 s2464) -(trans s350 s2477) -(trans s351 s2458) -(trans s351 s2471) -(trans s351 s2484) -(trans s352 s2465) -(trans s352 s2478) -(trans s352 s2491) -(trans s353 s2472) -(trans s353 s2485) -(trans s353 s2498) -(trans s354 s2479) -(trans s354 s2492) -(trans s354 s2505) -(trans s355 s2486) -(trans s355 s2499) -(trans s355 s2512) -(trans s356 s2493) -(trans s356 s2506) -(trans s356 s2519) -(trans s357 s2500) -(trans s357 s2513) -(trans s357 s2526) -(trans s358 s2507) -(trans s358 s2520) -(trans s358 s2533) -(trans s359 s2514) -(trans s359 s2527) -(trans s359 s2540) -(trans s360 s2521) -(trans s360 s2534) -(trans s360 s2547) -(trans s361 s2528) -(trans s361 s2541) -(trans s361 s2554) -(trans s362 s2535) -(trans s362 s2548) -(trans s362 s2561) -(trans s363 s2542) -(trans s363 s2555) -(trans s363 s2568) -(trans s364 s2549) -(trans s364 s2562) -(trans s364 s2575) -(trans s365 s2556) -(trans s365 s2569) -(trans s365 s2582) -(trans s366 s2563) -(trans s366 s2576) -(trans s366 s2589) -(trans s367 s2570) -(trans s367 s2583) -(trans s367 s2596) -(trans s368 s2577) -(trans s368 s2590) -(trans s368 s2603) -(trans s369 s2584) -(trans s369 s2597) -(trans s369 s2610) -(trans s370 s2591) -(trans s370 s2604) -(trans s370 s2617) -(trans s371 s2598) -(trans s371 s2611) -(trans s371 s2624) -(trans s372 s2605) -(trans s372 s2618) -(trans s372 s2631) -(trans s373 s2612) -(trans s373 s2625) -(trans s373 s2638) -(trans s374 s2619) -(trans s374 s2632) -(trans s374 s2645) -(trans s375 s2626) -(trans s375 s2639) -(trans s375 s2652) -(trans s376 s2633) -(trans s376 s2646) -(trans s376 s2659) -(trans s377 s2640) -(trans s377 s2653) -(trans s377 s2666) -(trans s378 s2647) -(trans s378 s2660) -(trans s378 s2673) -(trans s379 s2654) -(trans s379 s2667) -(trans s379 s2680) -(trans s380 s2661) -(trans s380 s2674) -(trans s380 s2687) -(trans s381 s2668) -(trans s381 s2681) -(trans s381 s2694) -(trans s382 s2675) -(trans s382 s2688) -(trans s382 s2701) -(trans s383 s2682) -(trans s383 s2695) -(trans s383 s2708) -(trans s384 s2689) -(trans s384 s2702) -(trans s384 s2715) -(trans s385 s2696) -(trans s385 s2709) -(trans s385 s2722) -(trans s386 s2703) -(trans s386 s2716) -(trans s386 s2729) -(trans s387 s2710) -(trans s387 s2723) -(trans s387 s2736) -(trans s388 s2717) -(trans s388 s2730) -(trans s388 s2743) -(trans s389 s2724) -(trans s389 s2737) -(trans s389 s2750) -(trans s390 s2731) -(trans s390 s2744) -(trans s390 s2757) -(trans s391 s2738) -(trans s391 s2751) -(trans s391 s2764) -(trans s392 s2745) -(trans s392 s2758) -(trans s392 s2771) -(trans s393 s2752) -(trans s393 s2765) -(trans s393 s2778) -(trans s394 s2759) -(trans s394 s2772) -(trans s394 s2785) -(trans s395 s2766) -(trans s395 s2779) -(trans s395 s2792) -(trans s396 s2773) -(trans s396 s2786) -(trans s396 s2799) -(trans s397 s2780) -(trans s397 s2793) -(trans s397 s2806) -(trans s398 s2787) -(trans s398 s2800) -(trans s398 s2813) -(trans s399 s2794) -(trans s399 s2807) -(trans s399 s2820) -(trans s400 s2801) -(trans s400 s2814) -(trans s400 s2827) -(trans s401 s2808) -(trans s401 s2821) -(trans s401 s2834) -(trans s402 s2815) -(trans s402 s2828) -(trans s402 s2841) -(trans s403 s2822) -(trans s403 s2835) -(trans s403 s2848) -(trans s404 s2829) -(trans s404 s2842) -(trans s404 s2855) -(trans s405 s2836) -(trans s405 s2849) -(trans s405 s2862) -(trans s406 s2843) -(trans s406 s2856) -(trans s406 s2869) -(trans s407 s2850) -(trans s407 s2863) -(trans s407 s2876) -(trans s408 s2857) -(trans s408 s2870) -(trans s408 s2883) -(trans s409 s2864) -(trans s409 s2877) -(trans s409 s2890) -(trans s410 s2871) -(trans s410 s2884) -(trans s410 s2897) -(trans s411 s2878) -(trans s411 s2891) -(trans s411 s2904) -(trans s412 s2885) -(trans s412 s2898) -(trans s412 s2911) -(trans s413 s2892) -(trans s413 s2905) -(trans s413 s2918) -(trans s414 s2899) -(trans s414 s2912) -(trans s414 s2925) -(trans s415 s2906) -(trans s415 s2919) -(trans s415 s2932) -(trans s416 s2913) -(trans s416 s2926) -(trans s416 s2939) -(trans s417 s2920) -(trans s417 s2933) -(trans s417 s2946) -(trans s418 s2927) -(trans s418 s2940) -(trans s418 s2953) -(trans s419 s2934) -(trans s419 s2947) -(trans s419 s2960) -(trans s420 s2941) -(trans s420 s2954) -(trans s420 s2967) -(trans s421 s2948) -(trans s421 s2961) -(trans s421 s2974) -(trans s422 s2955) -(trans s422 s2968) -(trans s422 s2981) -(trans s423 s2962) -(trans s423 s2975) -(trans s423 s2988) -(trans s424 s2969) -(trans s424 s2982) -(trans s424 s2995) -(trans s425 s2976) -(trans s425 s2989) -(trans s425 s3002) -(trans s426 s2983) -(trans s426 s2996) -(trans s426 s3009) -(trans s427 s2990) -(trans s427 s3003) -(trans s427 s3016) -(trans s428 s2997) -(trans s428 s3010) -(trans s428 s3023) -(trans s429 s3004) -(trans s429 s3017) -(trans s429 s3030) -(trans s430 s3011) -(trans s430 s3024) -(trans s430 s3037) -(trans s431 s3018) -(trans s431 s3031) -(trans s431 s3044) -(trans s432 s3025) -(trans s432 s3038) -(trans s432 s3051) -(trans s433 s3032) -(trans s433 s3045) -(trans s433 s3058) -(trans s434 s3039) -(trans s434 s3052) -(trans s434 s3065) -(trans s435 s3046) -(trans s435 s3059) -(trans s435 s3072) -(trans s436 s3053) -(trans s436 s3066) -(trans s436 s3079) -(trans s437 s3060) -(trans s437 s3073) -(trans s437 s3086) -(trans s438 s3067) -(trans s438 s3080) -(trans s438 s3093) -(trans s439 s3074) -(trans s439 s3087) -(trans s439 s3100) -(trans s440 s3081) -(trans s440 s3094) -(trans s440 s3107) -(trans s441 s3088) -(trans s441 s3101) -(trans s441 s3114) -(trans s442 s3095) -(trans s442 s3108) -(trans s442 s3121) -(trans s443 s3102) -(trans s443 s3115) -(trans s443 s3128) -(trans s444 s3109) -(trans s444 s3122) -(trans s444 s3135) -(trans s445 s3116) -(trans s445 s3129) -(trans s445 s3142) -(trans s446 s3123) -(trans s446 s3136) -(trans s446 s3149) -(trans s447 s3130) -(trans s447 s3143) -(trans s447 s3156) -(trans s448 s3137) -(trans s448 s3150) -(trans s448 s3163) -(trans s449 s3144) -(trans s449 s3157) -(trans s449 s3170) -(trans s450 s3151) -(trans s450 s3164) -(trans s450 s3177) -(trans s451 s3158) -(trans s451 s3171) -(trans s451 s3184) -(trans s452 s3165) -(trans s452 s3178) -(trans s452 s3191) -(trans s453 s3172) -(trans s453 s3185) -(trans s453 s3198) -(trans s454 s3179) -(trans s454 s3192) -(trans s454 s3205) -(trans s455 s3186) -(trans s455 s3199) -(trans s455 s3212) -(trans s456 s3193) -(trans s456 s3206) -(trans s456 s3219) -(trans s457 s3200) -(trans s457 s3213) -(trans s457 s3226) -(trans s458 s3207) -(trans s458 s3220) -(trans s458 s3233) -(trans s459 s3214) -(trans s459 s3227) -(trans s459 s3240) -(trans s460 s3221) -(trans s460 s3234) -(trans s460 s3247) -(trans s461 s3228) -(trans s461 s3241) -(trans s461 s3254) -(trans s462 s3235) -(trans s462 s3248) -(trans s462 s3261) -(trans s463 s3242) -(trans s463 s3255) -(trans s463 s3268) -(trans s464 s3249) -(trans s464 s3262) -(trans s464 s3275) -(trans s465 s3256) -(trans s465 s3269) -(trans s465 s3282) -(trans s466 s3263) -(trans s466 s3276) -(trans s466 s3289) -(trans s467 s3270) -(trans s467 s3283) -(trans s467 s3296) -(trans s468 s3277) -(trans s468 s3290) -(trans s468 s3303) -(trans s469 s3284) -(trans s469 s3297) -(trans s469 s3310) -(trans s470 s3291) -(trans s470 s3304) -(trans s470 s3317) -(trans s471 s3298) -(trans s471 s3311) -(trans s471 s3324) -(trans s472 s3305) -(trans s472 s3318) -(trans s472 s3331) -(trans s473 s3312) -(trans s473 s3325) -(trans s473 s3338) -(trans s474 s3319) -(trans s474 s3332) -(trans s474 s3345) -(trans s475 s3326) -(trans s475 s3339) -(trans s475 s3352) -(trans s476 s3333) -(trans s476 s3346) -(trans s476 s3359) -(trans s477 s3340) -(trans s477 s3353) -(trans s477 s3366) -(trans s478 s3347) -(trans s478 s3360) -(trans s478 s3373) -(trans s479 s3354) -(trans s479 s3367) -(trans s479 s3380) -(trans s480 s3361) -(trans s480 s3374) -(trans s480 s3387) -(trans s481 s3368) -(trans s481 s3381) -(trans s481 s3394) -(trans s482 s3375) -(trans s482 s3388) -(trans s482 s3401) -(trans s483 s3382) -(trans s483 s3395) -(trans s483 s3408) -(trans s484 s3389) -(trans s484 s3402) -(trans s484 s3415) -(trans s485 s3396) -(trans s485 s3409) -(trans s485 s3422) -(trans s486 s3403) -(trans s486 s3416) -(trans s486 s3429) -(trans s487 s3410) -(trans s487 s3423) -(trans s487 s3436) -(trans s488 s3417) -(trans s488 s3430) -(trans s488 s3443) -(trans s489 s3424) -(trans s489 s3437) -(trans s489 s3450) -(trans s490 s3431) -(trans s490 s3444) -(trans s490 s3457) -(trans s491 s3438) -(trans s491 s3451) -(trans s491 s3464) -(trans s492 s3445) -(trans s492 s3458) -(trans s492 s3471) -(trans s493 s3452) -(trans s493 s3465) -(trans s493 s3478) -(trans s494 s3459) -(trans s494 s3472) -(trans s494 s3485) -(trans s495 s3466) -(trans s495 s3479) -(trans s495 s3492) -(trans s496 s3473) -(trans s496 s3486) -(trans s496 s3499) -(trans s497 s3480) -(trans s497 s3493) -(trans s497 s3506) -(trans s498 s3487) -(trans s498 s3500) -(trans s498 s3513) -(trans s499 s3494) -(trans s499 s3507) -(trans s499 s3520) -(trans s500 s3501) -(trans s500 s3514) -(trans s500 s3527) -(trans s501 s3508) -(trans s501 s3521) -(trans s501 s3534) -(trans s502 s3515) -(trans s502 s3528) -(trans s502 s3541) -(trans s503 s3522) -(trans s503 s3535) -(trans s503 s3548) -(trans s504 s3529) -(trans s504 s3542) -(trans s504 s3555) -(trans s505 s3536) -(trans s505 s3549) -(trans s505 s3562) -(trans s506 s3543) -(trans s506 s3556) -(trans s506 s3569) -(trans s507 s3550) -(trans s507 s3563) -(trans s507 s3576) -(trans s508 s3557) -(trans s508 s3570) -(trans s508 s3583) -(trans s509 s3564) -(trans s509 s3577) -(trans s509 s3590) -(trans s510 s3571) -(trans s510 s3584) -(trans s510 s3597) -(trans s511 s3578) -(trans s511 s3591) -(trans s511 s3604) -(trans s512 s3585) -(trans s512 s3598) -(trans s512 s3611) -(trans s513 s3592) -(trans s513 s3605) -(trans s513 s3618) -(trans s514 s3599) -(trans s514 s3612) -(trans s514 s3625) -(trans s515 s3606) -(trans s515 s3619) -(trans s515 s3632) -(trans s516 s3613) -(trans s516 s3626) -(trans s516 s3639) -(trans s517 s3620) -(trans s517 s3633) -(trans s517 s3646) -(trans s518 s3627) -(trans s518 s3640) -(trans s518 s3653) -(trans s519 s3634) -(trans s519 s3647) -(trans s519 s3660) -(trans s520 s3641) -(trans s520 s3654) -(trans s520 s3667) -(trans s521 s3648) -(trans s521 s3661) -(trans s521 s3674) -(trans s522 s3655) -(trans s522 s3668) -(trans s522 s3681) -(trans s523 s3662) -(trans s523 s3675) -(trans s523 s3688) -(trans s524 s3669) -(trans s524 s3682) -(trans s524 s3695) -(trans s525 s3676) -(trans s525 s3689) -(trans s525 s3702) -(trans s526 s3683) -(trans s526 s3696) -(trans s526 s3709) -(trans s527 s3690) -(trans s527 s3703) -(trans s527 s3716) -(trans s528 s3697) -(trans s528 s3710) -(trans s528 s3723) -(trans s529 s3704) -(trans s529 s3717) -(trans s529 s3730) -(trans s530 s3711) -(trans s530 s3724) -(trans s530 s3737) -(trans s531 s3718) -(trans s531 s3731) -(trans s531 s3744) -(trans s532 s3725) -(trans s532 s3738) -(trans s532 s3751) -(trans s533 s3732) -(trans s533 s3745) -(trans s533 s3758) -(trans s534 s3739) -(trans s534 s3752) -(trans s534 s3765) -(trans s535 s3746) -(trans s535 s3759) -(trans s535 s3772) -(trans s536 s3753) -(trans s536 s3766) -(trans s536 s3779) -(trans s537 s3760) -(trans s537 s3773) -(trans s537 s3786) -(trans s538 s3767) -(trans s538 s3780) -(trans s538 s3793) -(trans s539 s3774) -(trans s539 s3787) -(trans s539 s3800) -(trans s540 s3781) -(trans s540 s3794) -(trans s540 s3807) -(trans s541 s3788) -(trans s541 s3801) -(trans s541 s3814) -(trans s542 s3795) -(trans s542 s3808) -(trans s542 s3821) -(trans s543 s3802) -(trans s543 s3815) -(trans s543 s3828) -(trans s544 s3809) -(trans s544 s3822) -(trans s544 s3835) -(trans s545 s3816) -(trans s545 s3829) -(trans s545 s3842) -(trans s546 s3823) -(trans s546 s3836) -(trans s546 s3849) -(trans s547 s3830) -(trans s547 s3843) -(trans s547 s3856) -(trans s548 s3837) -(trans s548 s3850) -(trans s548 s3863) -(trans s549 s3844) -(trans s549 s3857) -(trans s549 s3870) -(trans s550 s3851) -(trans s550 s3864) -(trans s550 s3877) -(trans s551 s3858) -(trans s551 s3871) -(trans s551 s3884) -(trans s552 s3865) -(trans s552 s3878) -(trans s552 s3891) -(trans s553 s3872) -(trans s553 s3885) -(trans s553 s3898) -(trans s554 s3879) -(trans s554 s3892) -(trans s554 s3905) -(trans s555 s3886) -(trans s555 s3899) -(trans s555 s3912) -(trans s556 s3893) -(trans s556 s3906) -(trans s556 s3919) -(trans s557 s3900) -(trans s557 s3913) -(trans s557 s3926) -(trans s558 s3907) -(trans s558 s3920) -(trans s558 s3933) -(trans s559 s3914) -(trans s559 s3927) -(trans s559 s3940) -(trans s560 s3921) -(trans s560 s3934) -(trans s560 s3947) -(trans s561 s3928) -(trans s561 s3941) -(trans s561 s3954) -(trans s562 s3935) -(trans s562 s3948) -(trans s562 s3961) -(trans s563 s3942) -(trans s563 s3955) -(trans s563 s3968) -(trans s564 s3949) -(trans s564 s3962) -(trans s564 s3975) -(trans s565 s3956) -(trans s565 s3969) -(trans s565 s3982) -(trans s566 s3963) -(trans s566 s3976) -(trans s566 s3989) -(trans s567 s3970) -(trans s567 s3983) -(trans s567 s3996) -(trans s568 s3977) -(trans s568 s3990) -(trans s568 s4003) -(trans s569 s3984) -(trans s569 s3997) -(trans s569 s4010) -(trans s570 s3991) -(trans s570 s4004) -(trans s570 s4017) -(trans s571 s3998) -(trans s571 s4011) -(trans s571 s4024) -(trans s572 s4005) -(trans s572 s4018) -(trans s572 s4031) -(trans s573 s4012) -(trans s573 s4025) -(trans s573 s4038) -(trans s574 s4019) -(trans s574 s4032) -(trans s574 s4045) -(trans s575 s4026) -(trans s575 s4039) -(trans s575 s4052) -(trans s576 s4033) -(trans s576 s4046) -(trans s576 s4059) -(trans s577 s4040) -(trans s577 s4053) -(trans s577 s4066) -(trans s578 s4047) -(trans s578 s4060) -(trans s578 s4073) -(trans s579 s4054) -(trans s579 s4067) -(trans s579 s4080) -(trans s580 s4061) -(trans s580 s4074) -(trans s580 s4087) -(trans s581 s4068) -(trans s581 s4081) -(trans s581 s4094) -(trans s582 s4075) -(trans s582 s4088) -(trans s582 s4101) -(trans s583 s4082) -(trans s583 s4095) -(trans s583 s4108) -(trans s584 s4089) -(trans s584 s4102) -(trans s584 s4115) -(trans s585 s4096) -(trans s585 s4109) -(trans s585 s4122) -(trans s586 s4103) -(trans s586 s4116) -(trans s586 s4129) -(trans s587 s4110) -(trans s587 s4123) -(trans s587 s4136) -(trans s588 s4117) -(trans s588 s4130) -(trans s588 s4143) -(trans s589 s4124) -(trans s589 s4137) -(trans s589 s4150) -(trans s590 s4131) -(trans s590 s4144) -(trans s590 s4157) -(trans s591 s4138) -(trans s591 s4151) -(trans s591 s4164) -(trans s592 s4145) -(trans s592 s4158) -(trans s592 s4171) -(trans s593 s4152) -(trans s593 s4165) -(trans s593 s4178) -(trans s594 s4159) -(trans s594 s4172) -(trans s594 s4185) -(trans s595 s4166) -(trans s595 s4179) -(trans s595 s4192) -(trans s596 s4173) -(trans s596 s4186) -(trans s596 s4199) -(trans s597 s4180) -(trans s597 s4193) -(trans s597 s4206) -(trans s598 s4187) -(trans s598 s4200) -(trans s598 s4213) -(trans s599 s4194) -(trans s599 s4207) -(trans s599 s4220) -(trans s600 s4201) -(trans s600 s4214) -(trans s600 s4227) -(trans s601 s4208) -(trans s601 s4221) -(trans s601 s4234) -(trans s602 s4215) -(trans s602 s4228) -(trans s602 s4241) -(trans s603 s4222) -(trans s603 s4235) -(trans s603 s4248) -(trans s604 s4229) -(trans s604 s4242) -(trans s604 s4255) -(trans s605 s4236) -(trans s605 s4249) -(trans s605 s4262) -(trans s606 s4243) -(trans s606 s4256) -(trans s606 s4269) -(trans s607 s4250) -(trans s607 s4263) -(trans s607 s4276) -(trans s608 s4257) -(trans s608 s4270) -(trans s608 s4283) -(trans s609 s4264) -(trans s609 s4277) -(trans s609 s4290) -(trans s610 s4271) -(trans s610 s4284) -(trans s610 s4297) -(trans s611 s4278) -(trans s611 s4291) -(trans s611 s4304) -(trans s612 s4285) -(trans s612 s4298) -(trans s612 s4311) -(trans s613 s4292) -(trans s613 s4305) -(trans s613 s4318) -(trans s614 s4299) -(trans s614 s4312) -(trans s614 s4325) -(trans s615 s4306) -(trans s615 s4319) -(trans s615 s4332) -(trans s616 s4313) -(trans s616 s4326) -(trans s616 s4339) -(trans s617 s4320) -(trans s617 s4333) -(trans s617 s4346) -(trans s618 s4327) -(trans s618 s4340) -(trans s618 s4353) -(trans s619 s4334) -(trans s619 s4347) -(trans s619 s4360) -(trans s620 s4341) -(trans s620 s4354) -(trans s620 s4367) -(trans s621 s4348) -(trans s621 s4361) -(trans s621 s4374) -(trans s622 s4355) -(trans s622 s4368) -(trans s622 s4381) -(trans s623 s4362) -(trans s623 s4375) -(trans s623 s4388) -(trans s624 s4369) -(trans s624 s4382) -(trans s624 s4395) -(trans s625 s4376) -(trans s625 s4389) -(trans s625 s4402) -(trans s626 s4383) -(trans s626 s4396) -(trans s626 s4409) -(trans s627 s4390) -(trans s627 s4403) -(trans s627 s4416) -(trans s628 s4397) -(trans s628 s4410) -(trans s628 s4423) -(trans s629 s4404) -(trans s629 s4417) -(trans s629 s4430) -(trans s630 s4411) -(trans s630 s4424) -(trans s630 s4437) -(trans s631 s4418) -(trans s631 s4431) -(trans s631 s4444) -(trans s632 s4425) -(trans s632 s4438) -(trans s632 s4451) -(trans s633 s4432) -(trans s633 s4445) -(trans s633 s4458) -(trans s634 s4439) -(trans s634 s4452) -(trans s634 s4465) -(trans s635 s4446) -(trans s635 s4459) -(trans s635 s4472) -(trans s636 s4453) -(trans s636 s4466) -(trans s636 s4479) -(trans s637 s4460) -(trans s637 s4473) -(trans s637 s4486) -(trans s638 s4467) -(trans s638 s4480) -(trans s638 s4493) -(trans s639 s4474) -(trans s639 s4487) -(trans s639 s4500) -(trans s640 s4481) -(trans s640 s4494) -(trans s640 s4507) -(trans s641 s4488) -(trans s641 s4501) -(trans s641 s4514) -(trans s642 s4495) -(trans s642 s4508) -(trans s642 s4521) -(trans s643 s4502) -(trans s643 s4515) -(trans s643 s4528) -(trans s644 s4509) -(trans s644 s4522) -(trans s644 s4535) -(trans s645 s4516) -(trans s645 s4529) -(trans s645 s4542) -(trans s646 s4523) -(trans s646 s4536) -(trans s646 s4549) -(trans s647 s4530) -(trans s647 s4543) -(trans s647 s4556) -(trans s648 s4537) -(trans s648 s4550) -(trans s648 s4563) -(trans s649 s4544) -(trans s649 s4557) -(trans s649 s4570) -(trans s650 s4551) -(trans s650 s4564) -(trans s650 s4577) -(trans s651 s4558) -(trans s651 s4571) -(trans s651 s4584) -(trans s652 s4565) -(trans s652 s4578) -(trans s652 s4591) -(trans s653 s4572) -(trans s653 s4585) -(trans s653 s4598) -(trans s654 s4579) -(trans s654 s4592) -(trans s654 s4605) -(trans s655 s4586) -(trans s655 s4599) -(trans s655 s4612) -(trans s656 s4593) -(trans s656 s4606) -(trans s656 s4619) -(trans s657 s4600) -(trans s657 s4613) -(trans s657 s4626) -(trans s658 s4607) -(trans s658 s4620) -(trans s658 s4633) -(trans s659 s4614) -(trans s659 s4627) -(trans s659 s4640) -(trans s660 s4621) -(trans s660 s4634) -(trans s660 s4647) -(trans s661 s4628) -(trans s661 s4641) -(trans s661 s4654) -(trans s662 s4635) -(trans s662 s4648) -(trans s662 s4661) -(trans s663 s4642) -(trans s663 s4655) -(trans s663 s4668) -(trans s664 s4649) -(trans s664 s4662) -(trans s664 s4675) -(trans s665 s4656) -(trans s665 s4669) -(trans s665 s4682) -(trans s666 s4663) -(trans s666 s4676) -(trans s666 s4689) -(trans s667 s4670) -(trans s667 s4683) -(trans s667 s4696) -(trans s668 s4677) -(trans s668 s4690) -(trans s668 s4703) -(trans s669 s4684) -(trans s669 s4697) -(trans s669 s4710) -(trans s670 s4691) -(trans s670 s4704) -(trans s670 s4717) -(trans s671 s4698) -(trans s671 s4711) -(trans s671 s4724) -(trans s672 s4705) -(trans s672 s4718) -(trans s672 s4731) -(trans s673 s4712) -(trans s673 s4725) -(trans s673 s4738) -(trans s674 s4719) -(trans s674 s4732) -(trans s674 s4745) -(trans s675 s4726) -(trans s675 s4739) -(trans s675 s4752) -(trans s676 s4733) -(trans s676 s4746) -(trans s676 s4759) -(trans s677 s4740) -(trans s677 s4753) -(trans s677 s4766) -(trans s678 s4747) -(trans s678 s4760) -(trans s678 s4773) -(trans s679 s4754) -(trans s679 s4767) -(trans s679 s4780) -(trans s680 s4761) -(trans s680 s4774) -(trans s680 s4787) -(trans s681 s4768) -(trans s681 s4781) -(trans s681 s4794) -(trans s682 s4775) -(trans s682 s4788) -(trans s682 s4801) -(trans s683 s4782) -(trans s683 s4795) -(trans s683 s4808) -(trans s684 s4789) -(trans s684 s4802) -(trans s684 s4815) -(trans s685 s4796) -(trans s685 s4809) -(trans s685 s4822) -(trans s686 s4803) -(trans s686 s4816) -(trans s686 s4829) -(trans s687 s4810) -(trans s687 s4823) -(trans s687 s4836) -(trans s688 s4817) -(trans s688 s4830) -(trans s688 s4843) -(trans s689 s4824) -(trans s689 s4837) -(trans s689 s4850) -(trans s690 s4831) -(trans s690 s4844) -(trans s690 s4857) -(trans s691 s4838) -(trans s691 s4851) -(trans s691 s4864) -(trans s692 s4845) -(trans s692 s4858) -(trans s692 s4871) -(trans s693 s4852) -(trans s693 s4865) -(trans s693 s4878) -(trans s694 s4859) -(trans s694 s4872) -(trans s694 s4885) -(trans s695 s4866) -(trans s695 s4879) -(trans s695 s4892) -(trans s696 s4873) -(trans s696 s4886) -(trans s696 s4899) -(trans s697 s4880) -(trans s697 s4893) -(trans s697 s4906) -(trans s698 s4887) -(trans s698 s4900) -(trans s698 s4913) -(trans s699 s4894) -(trans s699 s4907) -(trans s699 s4920) -(trans s700 s4901) -(trans s700 s4914) -(trans s700 s4927) -(trans s701 s4908) -(trans s701 s4921) -(trans s701 s4934) -(trans s702 s4915) -(trans s702 s4928) -(trans s702 s4941) -(trans s703 s4922) -(trans s703 s4935) -(trans s703 s4948) -(trans s704 s4929) -(trans s704 s4942) -(trans s704 s4955) -(trans s705 s4936) -(trans s705 s4949) -(trans s705 s4962) -(trans s706 s4943) -(trans s706 s4956) -(trans s706 s4969) -(trans s707 s4950) -(trans s707 s4963) -(trans s707 s4976) -(trans s708 s4957) -(trans s708 s4970) -(trans s708 s4983) -(trans s709 s4964) -(trans s709 s4977) -(trans s709 s4990) -(trans s710 s4971) -(trans s710 s4984) -(trans s710 s4997) -(trans s711 s4978) -(trans s711 s4991) -(trans s711 s5004) -(trans s712 s4985) -(trans s712 s4998) -(trans s712 s5011) -(trans s713 s4992) -(trans s713 s5005) -(trans s713 s5018) -(trans s714 s4999) -(trans s714 s5012) -(trans s714 s5025) -(trans s715 s5006) -(trans s715 s5019) -(trans s715 s5032) -(trans s716 s5013) -(trans s716 s5026) -(trans s716 s5039) -(trans s717 s5020) -(trans s717 s5033) -(trans s717 s5046) -(trans s718 s5027) -(trans s718 s5040) -(trans s718 s5053) -(trans s719 s5034) -(trans s719 s5047) -(trans s719 s5060) -(trans s720 s5041) -(trans s720 s5054) -(trans s720 s5067) -(trans s721 s5048) -(trans s721 s5061) -(trans s721 s5074) -(trans s722 s5055) -(trans s722 s5068) -(trans s722 s5081) -(trans s723 s5062) -(trans s723 s5075) -(trans s723 s5088) -(trans s724 s5069) -(trans s724 s5082) -(trans s724 s5095) -(trans s725 s5076) -(trans s725 s5089) -(trans s725 s5102) -(trans s726 s5083) -(trans s726 s5096) -(trans s726 s5109) -(trans s727 s5090) -(trans s727 s5103) -(trans s727 s5116) -(trans s728 s5097) -(trans s728 s5110) -(trans s728 s5123) -(trans s729 s5104) -(trans s729 s5117) -(trans s729 s5130) -(trans s730 s5111) -(trans s730 s5124) -(trans s730 s5137) -(trans s731 s5118) -(trans s731 s5131) -(trans s731 s5144) -(trans s732 s5125) -(trans s732 s5138) -(trans s732 s5151) -(trans s733 s5132) -(trans s733 s5145) -(trans s733 s5158) -(trans s734 s5139) -(trans s734 s5152) -(trans s734 s5165) -(trans s735 s5146) -(trans s735 s5159) -(trans s735 s5172) -(trans s736 s5153) -(trans s736 s5166) -(trans s736 s5179) -(trans s737 s5160) -(trans s737 s5173) -(trans s737 s5186) -(trans s738 s5167) -(trans s738 s5180) -(trans s738 s5193) -(trans s739 s5174) -(trans s739 s5187) -(trans s739 s5200) -(trans s740 s5181) -(trans s740 s5194) -(trans s740 s5207) -(trans s741 s5188) -(trans s741 s5201) -(trans s741 s5214) -(trans s742 s5195) -(trans s742 s5208) -(trans s742 s5221) -(trans s743 s5202) -(trans s743 s5215) -(trans s743 s5228) -(trans s744 s5209) -(trans s744 s5222) -(trans s744 s5235) -(trans s745 s5216) -(trans s745 s5229) -(trans s745 s5242) -(trans s746 s5223) -(trans s746 s5236) -(trans s746 s5249) -(trans s747 s5230) -(trans s747 s5243) -(trans s747 s5256) -(trans s748 s5237) -(trans s748 s5250) -(trans s748 s5263) -(trans s749 s5244) -(trans s749 s5257) -(trans s749 s5270) -(trans s750 s5251) -(trans s750 s5264) -(trans s750 s5277) -(trans s751 s5258) -(trans s751 s5271) -(trans s751 s5284) -(trans s752 s5265) -(trans s752 s5278) -(trans s752 s5291) -(trans s753 s5272) -(trans s753 s5285) -(trans s753 s5298) -(trans s754 s5279) -(trans s754 s5292) -(trans s754 s5305) -(trans s755 s5286) -(trans s755 s5299) -(trans s755 s5312) -(trans s756 s5293) -(trans s756 s5306) -(trans s756 s5319) -(trans s757 s5300) -(trans s757 s5313) -(trans s757 s5326) -(trans s758 s5307) -(trans s758 s5320) -(trans s758 s5333) -(trans s759 s5314) -(trans s759 s5327) -(trans s759 s5340) -(trans s760 s5321) -(trans s760 s5334) -(trans s760 s5347) -(trans s761 s5328) -(trans s761 s5341) -(trans s761 s5354) -(trans s762 s5335) -(trans s762 s5348) -(trans s762 s5361) -(trans s763 s5342) -(trans s763 s5355) -(trans s763 s5368) -(trans s764 s5349) -(trans s764 s5362) -(trans s764 s5375) -(trans s765 s5356) -(trans s765 s5369) -(trans s765 s5382) -(trans s766 s5363) -(trans s766 s5376) -(trans s766 s5389) -(trans s767 s5370) -(trans s767 s5383) -(trans s767 s5396) -(trans s768 s5377) -(trans s768 s5390) -(trans s768 s5403) -(trans s769 s5384) -(trans s769 s5397) -(trans s769 s5410) -(trans s770 s5391) -(trans s770 s5404) -(trans s770 s5417) -(trans s771 s5398) -(trans s771 s5411) -(trans s771 s5424) -(trans s772 s5405) -(trans s772 s5418) -(trans s772 s5431) -(trans s773 s5412) -(trans s773 s5425) -(trans s773 s5438) -(trans s774 s5419) -(trans s774 s5432) -(trans s774 s5445) -(trans s775 s5426) -(trans s775 s5439) -(trans s775 s5452) -(trans s776 s5433) -(trans s776 s5446) -(trans s776 s5459) -(trans s777 s5440) -(trans s777 s5453) -(trans s777 s5466) -(trans s778 s5447) -(trans s778 s5460) -(trans s778 s5473) -(trans s779 s5454) -(trans s779 s5467) -(trans s779 s5480) -(trans s780 s5461) -(trans s780 s5474) -(trans s780 s5487) -(trans s781 s5468) -(trans s781 s5481) -(trans s781 s5494) -(trans s782 s5475) -(trans s782 s5488) -(trans s782 s5501) -(trans s783 s5482) -(trans s783 s5495) -(trans s783 s5508) -(trans s784 s5489) -(trans s784 s5502) -(trans s784 s5515) -(trans s785 s5496) -(trans s785 s5509) -(trans s785 s5522) -(trans s786 s5503) -(trans s786 s5516) -(trans s786 s5529) -(trans s787 s5510) -(trans s787 s5523) -(trans s787 s5536) -(trans s788 s5517) -(trans s788 s5530) -(trans s788 s5543) -(trans s789 s5524) -(trans s789 s5537) -(trans s789 s5550) -(trans s790 s5531) -(trans s790 s5544) -(trans s790 s5557) -(trans s791 s5538) -(trans s791 s5551) -(trans s791 s5564) -(trans s792 s5545) -(trans s792 s5558) -(trans s792 s5571) -(trans s793 s5552) -(trans s793 s5565) -(trans s793 s5578) -(trans s794 s5559) -(trans s794 s5572) -(trans s794 s5585) -(trans s795 s5566) -(trans s795 s5579) -(trans s795 s5592) -(trans s796 s5573) -(trans s796 s5586) -(trans s796 s5599) -(trans s797 s5580) -(trans s797 s5593) -(trans s797 s5606) -(trans s798 s5587) -(trans s798 s5600) -(trans s798 s5613) -(trans s799 s5594) -(trans s799 s5607) -(trans s799 s5620) -(trans s800 s5601) -(trans s800 s5614) -(trans s800 s5627) -(trans s801 s5608) -(trans s801 s5621) -(trans s801 s5634) -(trans s802 s5615) -(trans s802 s5628) -(trans s802 s5641) -(trans s803 s5622) -(trans s803 s5635) -(trans s803 s5648) -(trans s804 s5629) -(trans s804 s5642) -(trans s804 s5655) -(trans s805 s5636) -(trans s805 s5649) -(trans s805 s5662) -(trans s806 s5643) -(trans s806 s5656) -(trans s806 s5669) -(trans s807 s5650) -(trans s807 s5663) -(trans s807 s5676) -(trans s808 s5657) -(trans s808 s5670) -(trans s808 s5683) -(trans s809 s5664) -(trans s809 s5677) -(trans s809 s5690) -(trans s810 s5671) -(trans s810 s5684) -(trans s810 s5697) -(trans s811 s5678) -(trans s811 s5691) -(trans s811 s5704) -(trans s812 s5685) -(trans s812 s5698) -(trans s812 s5711) -(trans s813 s5692) -(trans s813 s5705) -(trans s813 s5718) -(trans s814 s5699) -(trans s814 s5712) -(trans s814 s5725) -(trans s815 s5706) -(trans s815 s5719) -(trans s815 s5732) -(trans s816 s5713) -(trans s816 s5726) -(trans s816 s5739) -(trans s817 s5720) -(trans s817 s5733) -(trans s817 s5746) -(trans s818 s5727) -(trans s818 s5740) -(trans s818 s5753) -(trans s819 s5734) -(trans s819 s5747) -(trans s819 s5760) -(trans s820 s5741) -(trans s820 s5754) -(trans s820 s5767) -(trans s821 s5748) -(trans s821 s5761) -(trans s821 s5774) -(trans s822 s5755) -(trans s822 s5768) -(trans s822 s5781) -(trans s823 s5762) -(trans s823 s5775) -(trans s823 s5788) -(trans s824 s5769) -(trans s824 s5782) -(trans s824 s5795) -(trans s825 s5776) -(trans s825 s5789) -(trans s825 s5802) -(trans s826 s5783) -(trans s826 s5796) -(trans s826 s5809) -(trans s827 s5790) -(trans s827 s5803) -(trans s827 s5816) -(trans s828 s5797) -(trans s828 s5810) -(trans s828 s5823) -(trans s829 s5804) -(trans s829 s5817) -(trans s829 s5830) -(trans s830 s5811) -(trans s830 s5824) -(trans s830 s5837) -(trans s831 s5818) -(trans s831 s5831) -(trans s831 s5844) -(trans s832 s5825) -(trans s832 s5838) -(trans s832 s5851) -(trans s833 s5832) -(trans s833 s5845) -(trans s833 s5858) -(trans s834 s5839) -(trans s834 s5852) -(trans s834 s5865) -(trans s835 s5846) -(trans s835 s5859) -(trans s835 s5872) -(trans s836 s5853) -(trans s836 s5866) -(trans s836 s5879) -(trans s837 s5860) -(trans s837 s5873) -(trans s837 s5886) -(trans s838 s5867) -(trans s838 s5880) -(trans s838 s5893) -(trans s839 s5874) -(trans s839 s5887) -(trans s839 s5900) -(trans s840 s5881) -(trans s840 s5894) -(trans s840 s5907) -(trans s841 s5888) -(trans s841 s5901) -(trans s841 s5914) -(trans s842 s5895) -(trans s842 s5908) -(trans s842 s5921) -(trans s843 s5902) -(trans s843 s5915) -(trans s843 s5928) -(trans s844 s5909) -(trans s844 s5922) -(trans s844 s5935) -(trans s845 s5916) -(trans s845 s5929) -(trans s845 s5942) -(trans s846 s5923) -(trans s846 s5936) -(trans s846 s5949) -(trans s847 s5930) -(trans s847 s5943) -(trans s847 s5956) -(trans s848 s5937) -(trans s848 s5950) -(trans s848 s5963) -(trans s849 s5944) -(trans s849 s5957) -(trans s849 s5970) -(trans s850 s5951) -(trans s850 s5964) -(trans s850 s5977) -(trans s851 s5958) -(trans s851 s5971) -(trans s851 s5984) -(trans s852 s5965) -(trans s852 s5978) -(trans s852 s5991) -(trans s853 s5972) -(trans s853 s5985) -(trans s853 s5998) -(trans s854 s5979) -(trans s854 s5992) -(trans s854 s5) -(trans s855 s5986) -(trans s855 s5999) -(trans s855 s12) -(trans s856 s5993) -(trans s856 s6) -(trans s856 s19) -(trans s857 s0) -(trans s857 s13) -(trans s857 s26) -(trans s858 s7) -(trans s858 s20) -(trans s858 s33) -(trans s859 s14) -(trans s859 s27) -(trans s859 s40) -(trans s860 s21) -(trans s860 s34) -(trans s860 s47) -(trans s861 s28) -(trans s861 s41) -(trans s861 s54) -(trans s862 s35) -(trans s862 s48) -(trans s862 s61) -(trans s863 s42) -(trans s863 s55) -(trans s863 s68) -(trans s864 s49) -(trans s864 s62) -(trans s864 s75) -(trans s865 s56) -(trans s865 s69) -(trans s865 s82) -(trans s866 s63) -(trans s866 s76) -(trans s866 s89) -(trans s867 s70) -(trans s867 s83) -(trans s867 s96) -(trans s868 s77) -(trans s868 s90) -(trans s868 s103) -(trans s869 s84) -(trans s869 s97) -(trans s869 s110) -(trans s870 s91) -(trans s870 s104) -(trans s870 s117) -(trans s871 s98) -(trans s871 s111) -(trans s871 s124) -(trans s872 s105) -(trans s872 s118) -(trans s872 s131) -(trans s873 s112) -(trans s873 s125) -(trans s873 s138) -(trans s874 s119) -(trans s874 s132) -(trans s874 s145) -(trans s875 s126) -(trans s875 s139) -(trans s875 s152) -(trans s876 s133) -(trans s876 s146) -(trans s876 s159) -(trans s877 s140) -(trans s877 s153) -(trans s877 s166) -(trans s878 s147) -(trans s878 s160) -(trans s878 s173) -(trans s879 s154) -(trans s879 s167) -(trans s879 s180) -(trans s880 s161) -(trans s880 s174) -(trans s880 s187) -(trans s881 s168) -(trans s881 s181) -(trans s881 s194) -(trans s882 s175) -(trans s882 s188) -(trans s882 s201) -(trans s883 s182) -(trans s883 s195) -(trans s883 s208) -(trans s884 s189) -(trans s884 s202) -(trans s884 s215) -(trans s885 s196) -(trans s885 s209) -(trans s885 s222) -(trans s886 s203) -(trans s886 s216) -(trans s886 s229) -(trans s887 s210) -(trans s887 s223) -(trans s887 s236) -(trans s888 s217) -(trans s888 s230) -(trans s888 s243) -(trans s889 s224) -(trans s889 s237) -(trans s889 s250) -(trans s890 s231) -(trans s890 s244) -(trans s890 s257) -(trans s891 s238) -(trans s891 s251) -(trans s891 s264) -(trans s892 s245) -(trans s892 s258) -(trans s892 s271) -(trans s893 s252) -(trans s893 s265) -(trans s893 s278) -(trans s894 s259) -(trans s894 s272) -(trans s894 s285) -(trans s895 s266) -(trans s895 s279) -(trans s895 s292) -(trans s896 s273) -(trans s896 s286) -(trans s896 s299) -(trans s897 s280) -(trans s897 s293) -(trans s897 s306) -(trans s898 s287) -(trans s898 s300) -(trans s898 s313) -(trans s899 s294) -(trans s899 s307) -(trans s899 s320) -(trans s900 s301) -(trans s900 s314) -(trans s900 s327) -(trans s901 s308) -(trans s901 s321) -(trans s901 s334) -(trans s902 s315) -(trans s902 s328) -(trans s902 s341) -(trans s903 s322) -(trans s903 s335) -(trans s903 s348) -(trans s904 s329) -(trans s904 s342) -(trans s904 s355) -(trans s905 s336) -(trans s905 s349) -(trans s905 s362) -(trans s906 s343) -(trans s906 s356) -(trans s906 s369) -(trans s907 s350) -(trans s907 s363) -(trans s907 s376) -(trans s908 s357) -(trans s908 s370) -(trans s908 s383) -(trans s909 s364) -(trans s909 s377) -(trans s909 s390) -(trans s910 s371) -(trans s910 s384) -(trans s910 s397) -(trans s911 s378) -(trans s911 s391) -(trans s911 s404) -(trans s912 s385) -(trans s912 s398) -(trans s912 s411) -(trans s913 s392) -(trans s913 s405) -(trans s913 s418) -(trans s914 s399) -(trans s914 s412) -(trans s914 s425) -(trans s915 s406) -(trans s915 s419) -(trans s915 s432) -(trans s916 s413) -(trans s916 s426) -(trans s916 s439) -(trans s917 s420) -(trans s917 s433) -(trans s917 s446) -(trans s918 s427) -(trans s918 s440) -(trans s918 s453) -(trans s919 s434) -(trans s919 s447) -(trans s919 s460) -(trans s920 s441) -(trans s920 s454) -(trans s920 s467) -(trans s921 s448) -(trans s921 s461) -(trans s921 s474) -(trans s922 s455) -(trans s922 s468) -(trans s922 s481) -(trans s923 s462) -(trans s923 s475) -(trans s923 s488) -(trans s924 s469) -(trans s924 s482) -(trans s924 s495) -(trans s925 s476) -(trans s925 s489) -(trans s925 s502) -(trans s926 s483) -(trans s926 s496) -(trans s926 s509) -(trans s927 s490) -(trans s927 s503) -(trans s927 s516) -(trans s928 s497) -(trans s928 s510) -(trans s928 s523) -(trans s929 s504) -(trans s929 s517) -(trans s929 s530) -(trans s930 s511) -(trans s930 s524) -(trans s930 s537) -(trans s931 s518) -(trans s931 s531) -(trans s931 s544) -(trans s932 s525) -(trans s932 s538) -(trans s932 s551) -(trans s933 s532) -(trans s933 s545) -(trans s933 s558) -(trans s934 s539) -(trans s934 s552) -(trans s934 s565) -(trans s935 s546) -(trans s935 s559) -(trans s935 s572) -(trans s936 s553) -(trans s936 s566) -(trans s936 s579) -(trans s937 s560) -(trans s937 s573) -(trans s937 s586) -(trans s938 s567) -(trans s938 s580) -(trans s938 s593) -(trans s939 s574) -(trans s939 s587) -(trans s939 s600) -(trans s940 s581) -(trans s940 s594) -(trans s940 s607) -(trans s941 s588) -(trans s941 s601) -(trans s941 s614) -(trans s942 s595) -(trans s942 s608) -(trans s942 s621) -(trans s943 s602) -(trans s943 s615) -(trans s943 s628) -(trans s944 s609) -(trans s944 s622) -(trans s944 s635) -(trans s945 s616) -(trans s945 s629) -(trans s945 s642) -(trans s946 s623) -(trans s946 s636) -(trans s946 s649) -(trans s947 s630) -(trans s947 s643) -(trans s947 s656) -(trans s948 s637) -(trans s948 s650) -(trans s948 s663) -(trans s949 s644) -(trans s949 s657) -(trans s949 s670) -(trans s950 s651) -(trans s950 s664) -(trans s950 s677) -(trans s951 s658) -(trans s951 s671) -(trans s951 s684) -(trans s952 s665) -(trans s952 s678) -(trans s952 s691) -(trans s953 s672) -(trans s953 s685) -(trans s953 s698) -(trans s954 s679) -(trans s954 s692) -(trans s954 s705) -(trans s955 s686) -(trans s955 s699) -(trans s955 s712) -(trans s956 s693) -(trans s956 s706) -(trans s956 s719) -(trans s957 s700) -(trans s957 s713) -(trans s957 s726) -(trans s958 s707) -(trans s958 s720) -(trans s958 s733) -(trans s959 s714) -(trans s959 s727) -(trans s959 s740) -(trans s960 s721) -(trans s960 s734) -(trans s960 s747) -(trans s961 s728) -(trans s961 s741) -(trans s961 s754) -(trans s962 s735) -(trans s962 s748) -(trans s962 s761) -(trans s963 s742) -(trans s963 s755) -(trans s963 s768) -(trans s964 s749) -(trans s964 s762) -(trans s964 s775) -(trans s965 s756) -(trans s965 s769) -(trans s965 s782) -(trans s966 s763) -(trans s966 s776) -(trans s966 s789) -(trans s967 s770) -(trans s967 s783) -(trans s967 s796) -(trans s968 s777) -(trans s968 s790) -(trans s968 s803) -(trans s969 s784) -(trans s969 s797) -(trans s969 s810) -(trans s970 s791) -(trans s970 s804) -(trans s970 s817) -(trans s971 s798) -(trans s971 s811) -(trans s971 s824) -(trans s972 s805) -(trans s972 s818) -(trans s972 s831) -(trans s973 s812) -(trans s973 s825) -(trans s973 s838) -(trans s974 s819) -(trans s974 s832) -(trans s974 s845) -(trans s975 s826) -(trans s975 s839) -(trans s975 s852) -(trans s976 s833) -(trans s976 s846) -(trans s976 s859) -(trans s977 s840) -(trans s977 s853) -(trans s977 s866) -(trans s978 s847) -(trans s978 s860) -(trans s978 s873) -(trans s979 s854) -(trans s979 s867) -(trans s979 s880) -(trans s980 s861) -(trans s980 s874) -(trans s980 s887) -(trans s981 s868) -(trans s981 s881) -(trans s981 s894) -(trans s982 s875) -(trans s982 s888) -(trans s982 s901) -(trans s983 s882) -(trans s983 s895) -(trans s983 s908) -(trans s984 s889) -(trans s984 s902) -(trans s984 s915) -(trans s985 s896) -(trans s985 s909) -(trans s985 s922) -(trans s986 s903) -(trans s986 s916) -(trans s986 s929) -(trans s987 s910) -(trans s987 s923) -(trans s987 s936) -(trans s988 s917) -(trans s988 s930) -(trans s988 s943) -(trans s989 s924) -(trans s989 s937) -(trans s989 s950) -(trans s990 s931) -(trans s990 s944) -(trans s990 s957) -(trans s991 s938) -(trans s991 s951) -(trans s991 s964) -(trans s992 s945) -(trans s992 s958) -(trans s992 s971) -(trans s993 s952) -(trans s993 s965) -(trans s993 s978) -(trans s994 s959) -(trans s994 s972) -(trans s994 s985) -(trans s995 s966) -(trans s995 s979) -(trans s995 s992) -(trans s996 s973) -(trans s996 s986) -(trans s996 s999) -(trans s997 s980) -(trans s997 s993) -(trans s997 s1006) -(trans s998 s987) -(trans s998 s1000) -(trans s998 s1013) -(trans s999 s994) -(trans s999 s1007) -(trans s999 s1020) -(trans s1000 s1001) -(trans s1000 s1014) -(trans s1000 s1027) -(trans s1001 s1008) -(trans s1001 s1021) -(trans s1001 s1034) -(trans s1002 s1015) -(trans s1002 s1028) -(trans s1002 s1041) -(trans s1003 s1022) -(trans s1003 s1035) -(trans s1003 s1048) -(trans s1004 s1029) -(trans s1004 s1042) -(trans s1004 s1055) -(trans s1005 s1036) -(trans s1005 s1049) -(trans s1005 s1062) -(trans s1006 s1043) -(trans s1006 s1056) -(trans s1006 s1069) -(trans s1007 s1050) -(trans s1007 s1063) -(trans s1007 s1076) -(trans s1008 s1057) -(trans s1008 s1070) -(trans s1008 s1083) -(trans s1009 s1064) -(trans s1009 s1077) -(trans s1009 s1090) -(trans s1010 s1071) -(trans s1010 s1084) -(trans s1010 s1097) -(trans s1011 s1078) -(trans s1011 s1091) -(trans s1011 s1104) -(trans s1012 s1085) -(trans s1012 s1098) -(trans s1012 s1111) -(trans s1013 s1092) -(trans s1013 s1105) -(trans s1013 s1118) -(trans s1014 s1099) -(trans s1014 s1112) -(trans s1014 s1125) -(trans s1015 s1106) -(trans s1015 s1119) -(trans s1015 s1132) -(trans s1016 s1113) -(trans s1016 s1126) -(trans s1016 s1139) -(trans s1017 s1120) -(trans s1017 s1133) -(trans s1017 s1146) -(trans s1018 s1127) -(trans s1018 s1140) -(trans s1018 s1153) -(trans s1019 s1134) -(trans s1019 s1147) -(trans s1019 s1160) -(trans s1020 s1141) -(trans s1020 s1154) -(trans s1020 s1167) -(trans s1021 s1148) -(trans s1021 s1161) -(trans s1021 s1174) -(trans s1022 s1155) -(trans s1022 s1168) -(trans s1022 s1181) -(trans s1023 s1162) -(trans s1023 s1175) -(trans s1023 s1188) -(trans s1024 s1169) -(trans s1024 s1182) -(trans s1024 s1195) -(trans s1025 s1176) -(trans s1025 s1189) -(trans s1025 s1202) -(trans s1026 s1183) -(trans s1026 s1196) -(trans s1026 s1209) -(trans s1027 s1190) -(trans s1027 s1203) -(trans s1027 s1216) -(trans s1028 s1197) -(trans s1028 s1210) -(trans s1028 s1223) -(trans s1029 s1204) -(trans s1029 s1217) -(trans s1029 s1230) -(trans s1030 s1211) -(trans s1030 s1224) -(trans s1030 s1237) -(trans s1031 s1218) -(trans s1031 s1231) -(trans s1031 s1244) -(trans s1032 s1225) -(trans s1032 s1238) -(trans s1032 s1251) -(trans s1033 s1232) -(trans s1033 s1245) -(trans s1033 s1258) -(trans s1034 s1239) -(trans s1034 s1252) -(trans s1034 s1265) -(trans s1035 s1246) -(trans s1035 s1259) -(trans s1035 s1272) -(trans s1036 s1253) -(trans s1036 s1266) -(trans s1036 s1279) -(trans s1037 s1260) -(trans s1037 s1273) -(trans s1037 s1286) -(trans s1038 s1267) -(trans s1038 s1280) -(trans s1038 s1293) -(trans s1039 s1274) -(trans s1039 s1287) -(trans s1039 s1300) -(trans s1040 s1281) -(trans s1040 s1294) -(trans s1040 s1307) -(trans s1041 s1288) -(trans s1041 s1301) -(trans s1041 s1314) -(trans s1042 s1295) -(trans s1042 s1308) -(trans s1042 s1321) -(trans s1043 s1302) -(trans s1043 s1315) -(trans s1043 s1328) -(trans s1044 s1309) -(trans s1044 s1322) -(trans s1044 s1335) -(trans s1045 s1316) -(trans s1045 s1329) -(trans s1045 s1342) -(trans s1046 s1323) -(trans s1046 s1336) -(trans s1046 s1349) -(trans s1047 s1330) -(trans s1047 s1343) -(trans s1047 s1356) -(trans s1048 s1337) -(trans s1048 s1350) -(trans s1048 s1363) -(trans s1049 s1344) -(trans s1049 s1357) -(trans s1049 s1370) -(trans s1050 s1351) -(trans s1050 s1364) -(trans s1050 s1377) -(trans s1051 s1358) -(trans s1051 s1371) -(trans s1051 s1384) -(trans s1052 s1365) -(trans s1052 s1378) -(trans s1052 s1391) -(trans s1053 s1372) -(trans s1053 s1385) -(trans s1053 s1398) -(trans s1054 s1379) -(trans s1054 s1392) -(trans s1054 s1405) -(trans s1055 s1386) -(trans s1055 s1399) -(trans s1055 s1412) -(trans s1056 s1393) -(trans s1056 s1406) -(trans s1056 s1419) -(trans s1057 s1400) -(trans s1057 s1413) -(trans s1057 s1426) -(trans s1058 s1407) -(trans s1058 s1420) -(trans s1058 s1433) -(trans s1059 s1414) -(trans s1059 s1427) -(trans s1059 s1440) -(trans s1060 s1421) -(trans s1060 s1434) -(trans s1060 s1447) -(trans s1061 s1428) -(trans s1061 s1441) -(trans s1061 s1454) -(trans s1062 s1435) -(trans s1062 s1448) -(trans s1062 s1461) -(trans s1063 s1442) -(trans s1063 s1455) -(trans s1063 s1468) -(trans s1064 s1449) -(trans s1064 s1462) -(trans s1064 s1475) -(trans s1065 s1456) -(trans s1065 s1469) -(trans s1065 s1482) -(trans s1066 s1463) -(trans s1066 s1476) -(trans s1066 s1489) -(trans s1067 s1470) -(trans s1067 s1483) -(trans s1067 s1496) -(trans s1068 s1477) -(trans s1068 s1490) -(trans s1068 s1503) -(trans s1069 s1484) -(trans s1069 s1497) -(trans s1069 s1510) -(trans s1070 s1491) -(trans s1070 s1504) -(trans s1070 s1517) -(trans s1071 s1498) -(trans s1071 s1511) -(trans s1071 s1524) -(trans s1072 s1505) -(trans s1072 s1518) -(trans s1072 s1531) -(trans s1073 s1512) -(trans s1073 s1525) -(trans s1073 s1538) -(trans s1074 s1519) -(trans s1074 s1532) -(trans s1074 s1545) -(trans s1075 s1526) -(trans s1075 s1539) -(trans s1075 s1552) -(trans s1076 s1533) -(trans s1076 s1546) -(trans s1076 s1559) -(trans s1077 s1540) -(trans s1077 s1553) -(trans s1077 s1566) -(trans s1078 s1547) -(trans s1078 s1560) -(trans s1078 s1573) -(trans s1079 s1554) -(trans s1079 s1567) -(trans s1079 s1580) -(trans s1080 s1561) -(trans s1080 s1574) -(trans s1080 s1587) -(trans s1081 s1568) -(trans s1081 s1581) -(trans s1081 s1594) -(trans s1082 s1575) -(trans s1082 s1588) -(trans s1082 s1601) -(trans s1083 s1582) -(trans s1083 s1595) -(trans s1083 s1608) -(trans s1084 s1589) -(trans s1084 s1602) -(trans s1084 s1615) -(trans s1085 s1596) -(trans s1085 s1609) -(trans s1085 s1622) -(trans s1086 s1603) -(trans s1086 s1616) -(trans s1086 s1629) -(trans s1087 s1610) -(trans s1087 s1623) -(trans s1087 s1636) -(trans s1088 s1617) -(trans s1088 s1630) -(trans s1088 s1643) -(trans s1089 s1624) -(trans s1089 s1637) -(trans s1089 s1650) -(trans s1090 s1631) -(trans s1090 s1644) -(trans s1090 s1657) -(trans s1091 s1638) -(trans s1091 s1651) -(trans s1091 s1664) -(trans s1092 s1645) -(trans s1092 s1658) -(trans s1092 s1671) -(trans s1093 s1652) -(trans s1093 s1665) -(trans s1093 s1678) -(trans s1094 s1659) -(trans s1094 s1672) -(trans s1094 s1685) -(trans s1095 s1666) -(trans s1095 s1679) -(trans s1095 s1692) -(trans s1096 s1673) -(trans s1096 s1686) -(trans s1096 s1699) -(trans s1097 s1680) -(trans s1097 s1693) -(trans s1097 s1706) -(trans s1098 s1687) -(trans s1098 s1700) -(trans s1098 s1713) -(trans s1099 s1694) -(trans s1099 s1707) -(trans s1099 s1720) -(trans s1100 s1701) -(trans s1100 s1714) -(trans s1100 s1727) -(trans s1101 s1708) -(trans s1101 s1721) -(trans s1101 s1734) -(trans s1102 s1715) -(trans s1102 s1728) -(trans s1102 s1741) -(trans s1103 s1722) -(trans s1103 s1735) -(trans s1103 s1748) -(trans s1104 s1729) -(trans s1104 s1742) -(trans s1104 s1755) -(trans s1105 s1736) -(trans s1105 s1749) -(trans s1105 s1762) -(trans s1106 s1743) -(trans s1106 s1756) -(trans s1106 s1769) -(trans s1107 s1750) -(trans s1107 s1763) -(trans s1107 s1776) -(trans s1108 s1757) -(trans s1108 s1770) -(trans s1108 s1783) -(trans s1109 s1764) -(trans s1109 s1777) -(trans s1109 s1790) -(trans s1110 s1771) -(trans s1110 s1784) -(trans s1110 s1797) -(trans s1111 s1778) -(trans s1111 s1791) -(trans s1111 s1804) -(trans s1112 s1785) -(trans s1112 s1798) -(trans s1112 s1811) -(trans s1113 s1792) -(trans s1113 s1805) -(trans s1113 s1818) -(trans s1114 s1799) -(trans s1114 s1812) -(trans s1114 s1825) -(trans s1115 s1806) -(trans s1115 s1819) -(trans s1115 s1832) -(trans s1116 s1813) -(trans s1116 s1826) -(trans s1116 s1839) -(trans s1117 s1820) -(trans s1117 s1833) -(trans s1117 s1846) -(trans s1118 s1827) -(trans s1118 s1840) -(trans s1118 s1853) -(trans s1119 s1834) -(trans s1119 s1847) -(trans s1119 s1860) -(trans s1120 s1841) -(trans s1120 s1854) -(trans s1120 s1867) -(trans s1121 s1848) -(trans s1121 s1861) -(trans s1121 s1874) -(trans s1122 s1855) -(trans s1122 s1868) -(trans s1122 s1881) -(trans s1123 s1862) -(trans s1123 s1875) -(trans s1123 s1888) -(trans s1124 s1869) -(trans s1124 s1882) -(trans s1124 s1895) -(trans s1125 s1876) -(trans s1125 s1889) -(trans s1125 s1902) -(trans s1126 s1883) -(trans s1126 s1896) -(trans s1126 s1909) -(trans s1127 s1890) -(trans s1127 s1903) -(trans s1127 s1916) -(trans s1128 s1897) -(trans s1128 s1910) -(trans s1128 s1923) -(trans s1129 s1904) -(trans s1129 s1917) -(trans s1129 s1930) -(trans s1130 s1911) -(trans s1130 s1924) -(trans s1130 s1937) -(trans s1131 s1918) -(trans s1131 s1931) -(trans s1131 s1944) -(trans s1132 s1925) -(trans s1132 s1938) -(trans s1132 s1951) -(trans s1133 s1932) -(trans s1133 s1945) -(trans s1133 s1958) -(trans s1134 s1939) -(trans s1134 s1952) -(trans s1134 s1965) -(trans s1135 s1946) -(trans s1135 s1959) -(trans s1135 s1972) -(trans s1136 s1953) -(trans s1136 s1966) -(trans s1136 s1979) -(trans s1137 s1960) -(trans s1137 s1973) -(trans s1137 s1986) -(trans s1138 s1967) -(trans s1138 s1980) -(trans s1138 s1993) -(trans s1139 s1974) -(trans s1139 s1987) -(trans s1139 s2000) -(trans s1140 s1981) -(trans s1140 s1994) -(trans s1140 s2007) -(trans s1141 s1988) -(trans s1141 s2001) -(trans s1141 s2014) -(trans s1142 s1995) -(trans s1142 s2008) -(trans s1142 s2021) -(trans s1143 s2002) -(trans s1143 s2015) -(trans s1143 s2028) -(trans s1144 s2009) -(trans s1144 s2022) -(trans s1144 s2035) -(trans s1145 s2016) -(trans s1145 s2029) -(trans s1145 s2042) -(trans s1146 s2023) -(trans s1146 s2036) -(trans s1146 s2049) -(trans s1147 s2030) -(trans s1147 s2043) -(trans s1147 s2056) -(trans s1148 s2037) -(trans s1148 s2050) -(trans s1148 s2063) -(trans s1149 s2044) -(trans s1149 s2057) -(trans s1149 s2070) -(trans s1150 s2051) -(trans s1150 s2064) -(trans s1150 s2077) -(trans s1151 s2058) -(trans s1151 s2071) -(trans s1151 s2084) -(trans s1152 s2065) -(trans s1152 s2078) -(trans s1152 s2091) -(trans s1153 s2072) -(trans s1153 s2085) -(trans s1153 s2098) -(trans s1154 s2079) -(trans s1154 s2092) -(trans s1154 s2105) -(trans s1155 s2086) -(trans s1155 s2099) -(trans s1155 s2112) -(trans s1156 s2093) -(trans s1156 s2106) -(trans s1156 s2119) -(trans s1157 s2100) -(trans s1157 s2113) -(trans s1157 s2126) -(trans s1158 s2107) -(trans s1158 s2120) -(trans s1158 s2133) -(trans s1159 s2114) -(trans s1159 s2127) -(trans s1159 s2140) -(trans s1160 s2121) -(trans s1160 s2134) -(trans s1160 s2147) -(trans s1161 s2128) -(trans s1161 s2141) -(trans s1161 s2154) -(trans s1162 s2135) -(trans s1162 s2148) -(trans s1162 s2161) -(trans s1163 s2142) -(trans s1163 s2155) -(trans s1163 s2168) -(trans s1164 s2149) -(trans s1164 s2162) -(trans s1164 s2175) -(trans s1165 s2156) -(trans s1165 s2169) -(trans s1165 s2182) -(trans s1166 s2163) -(trans s1166 s2176) -(trans s1166 s2189) -(trans s1167 s2170) -(trans s1167 s2183) -(trans s1167 s2196) -(trans s1168 s2177) -(trans s1168 s2190) -(trans s1168 s2203) -(trans s1169 s2184) -(trans s1169 s2197) -(trans s1169 s2210) -(trans s1170 s2191) -(trans s1170 s2204) -(trans s1170 s2217) -(trans s1171 s2198) -(trans s1171 s2211) -(trans s1171 s2224) -(trans s1172 s2205) -(trans s1172 s2218) -(trans s1172 s2231) -(trans s1173 s2212) -(trans s1173 s2225) -(trans s1173 s2238) -(trans s1174 s2219) -(trans s1174 s2232) -(trans s1174 s2245) -(trans s1175 s2226) -(trans s1175 s2239) -(trans s1175 s2252) -(trans s1176 s2233) -(trans s1176 s2246) -(trans s1176 s2259) -(trans s1177 s2240) -(trans s1177 s2253) -(trans s1177 s2266) -(trans s1178 s2247) -(trans s1178 s2260) -(trans s1178 s2273) -(trans s1179 s2254) -(trans s1179 s2267) -(trans s1179 s2280) -(trans s1180 s2261) -(trans s1180 s2274) -(trans s1180 s2287) -(trans s1181 s2268) -(trans s1181 s2281) -(trans s1181 s2294) -(trans s1182 s2275) -(trans s1182 s2288) -(trans s1182 s2301) -(trans s1183 s2282) -(trans s1183 s2295) -(trans s1183 s2308) -(trans s1184 s2289) -(trans s1184 s2302) -(trans s1184 s2315) -(trans s1185 s2296) -(trans s1185 s2309) -(trans s1185 s2322) -(trans s1186 s2303) -(trans s1186 s2316) -(trans s1186 s2329) -(trans s1187 s2310) -(trans s1187 s2323) -(trans s1187 s2336) -(trans s1188 s2317) -(trans s1188 s2330) -(trans s1188 s2343) -(trans s1189 s2324) -(trans s1189 s2337) -(trans s1189 s2350) -(trans s1190 s2331) -(trans s1190 s2344) -(trans s1190 s2357) -(trans s1191 s2338) -(trans s1191 s2351) -(trans s1191 s2364) -(trans s1192 s2345) -(trans s1192 s2358) -(trans s1192 s2371) -(trans s1193 s2352) -(trans s1193 s2365) -(trans s1193 s2378) -(trans s1194 s2359) -(trans s1194 s2372) -(trans s1194 s2385) -(trans s1195 s2366) -(trans s1195 s2379) -(trans s1195 s2392) -(trans s1196 s2373) -(trans s1196 s2386) -(trans s1196 s2399) -(trans s1197 s2380) -(trans s1197 s2393) -(trans s1197 s2406) -(trans s1198 s2387) -(trans s1198 s2400) -(trans s1198 s2413) -(trans s1199 s2394) -(trans s1199 s2407) -(trans s1199 s2420) -(trans s1200 s2401) -(trans s1200 s2414) -(trans s1200 s2427) -(trans s1201 s2408) -(trans s1201 s2421) -(trans s1201 s2434) -(trans s1202 s2415) -(trans s1202 s2428) -(trans s1202 s2441) -(trans s1203 s2422) -(trans s1203 s2435) -(trans s1203 s2448) -(trans s1204 s2429) -(trans s1204 s2442) -(trans s1204 s2455) -(trans s1205 s2436) -(trans s1205 s2449) -(trans s1205 s2462) -(trans s1206 s2443) -(trans s1206 s2456) -(trans s1206 s2469) -(trans s1207 s2450) -(trans s1207 s2463) -(trans s1207 s2476) -(trans s1208 s2457) -(trans s1208 s2470) -(trans s1208 s2483) -(trans s1209 s2464) -(trans s1209 s2477) -(trans s1209 s2490) -(trans s1210 s2471) -(trans s1210 s2484) -(trans s1210 s2497) -(trans s1211 s2478) -(trans s1211 s2491) -(trans s1211 s2504) -(trans s1212 s2485) -(trans s1212 s2498) -(trans s1212 s2511) -(trans s1213 s2492) -(trans s1213 s2505) -(trans s1213 s2518) -(trans s1214 s2499) -(trans s1214 s2512) -(trans s1214 s2525) -(trans s1215 s2506) -(trans s1215 s2519) -(trans s1215 s2532) -(trans s1216 s2513) -(trans s1216 s2526) -(trans s1216 s2539) -(trans s1217 s2520) -(trans s1217 s2533) -(trans s1217 s2546) -(trans s1218 s2527) -(trans s1218 s2540) -(trans s1218 s2553) -(trans s1219 s2534) -(trans s1219 s2547) -(trans s1219 s2560) -(trans s1220 s2541) -(trans s1220 s2554) -(trans s1220 s2567) -(trans s1221 s2548) -(trans s1221 s2561) -(trans s1221 s2574) -(trans s1222 s2555) -(trans s1222 s2568) -(trans s1222 s2581) -(trans s1223 s2562) -(trans s1223 s2575) -(trans s1223 s2588) -(trans s1224 s2569) -(trans s1224 s2582) -(trans s1224 s2595) -(trans s1225 s2576) -(trans s1225 s2589) -(trans s1225 s2602) -(trans s1226 s2583) -(trans s1226 s2596) -(trans s1226 s2609) -(trans s1227 s2590) -(trans s1227 s2603) -(trans s1227 s2616) -(trans s1228 s2597) -(trans s1228 s2610) -(trans s1228 s2623) -(trans s1229 s2604) -(trans s1229 s2617) -(trans s1229 s2630) -(trans s1230 s2611) -(trans s1230 s2624) -(trans s1230 s2637) -(trans s1231 s2618) -(trans s1231 s2631) -(trans s1231 s2644) -(trans s1232 s2625) -(trans s1232 s2638) -(trans s1232 s2651) -(trans s1233 s2632) -(trans s1233 s2645) -(trans s1233 s2658) -(trans s1234 s2639) -(trans s1234 s2652) -(trans s1234 s2665) -(trans s1235 s2646) -(trans s1235 s2659) -(trans s1235 s2672) -(trans s1236 s2653) -(trans s1236 s2666) -(trans s1236 s2679) -(trans s1237 s2660) -(trans s1237 s2673) -(trans s1237 s2686) -(trans s1238 s2667) -(trans s1238 s2680) -(trans s1238 s2693) -(trans s1239 s2674) -(trans s1239 s2687) -(trans s1239 s2700) -(trans s1240 s2681) -(trans s1240 s2694) -(trans s1240 s2707) -(trans s1241 s2688) -(trans s1241 s2701) -(trans s1241 s2714) -(trans s1242 s2695) -(trans s1242 s2708) -(trans s1242 s2721) -(trans s1243 s2702) -(trans s1243 s2715) -(trans s1243 s2728) -(trans s1244 s2709) -(trans s1244 s2722) -(trans s1244 s2735) -(trans s1245 s2716) -(trans s1245 s2729) -(trans s1245 s2742) -(trans s1246 s2723) -(trans s1246 s2736) -(trans s1246 s2749) -(trans s1247 s2730) -(trans s1247 s2743) -(trans s1247 s2756) -(trans s1248 s2737) -(trans s1248 s2750) -(trans s1248 s2763) -(trans s1249 s2744) -(trans s1249 s2757) -(trans s1249 s2770) -(trans s1250 s2751) -(trans s1250 s2764) -(trans s1250 s2777) -(trans s1251 s2758) -(trans s1251 s2771) -(trans s1251 s2784) -(trans s1252 s2765) -(trans s1252 s2778) -(trans s1252 s2791) -(trans s1253 s2772) -(trans s1253 s2785) -(trans s1253 s2798) -(trans s1254 s2779) -(trans s1254 s2792) -(trans s1254 s2805) -(trans s1255 s2786) -(trans s1255 s2799) -(trans s1255 s2812) -(trans s1256 s2793) -(trans s1256 s2806) -(trans s1256 s2819) -(trans s1257 s2800) -(trans s1257 s2813) -(trans s1257 s2826) -(trans s1258 s2807) -(trans s1258 s2820) -(trans s1258 s2833) -(trans s1259 s2814) -(trans s1259 s2827) -(trans s1259 s2840) -(trans s1260 s2821) -(trans s1260 s2834) -(trans s1260 s2847) -(trans s1261 s2828) -(trans s1261 s2841) -(trans s1261 s2854) -(trans s1262 s2835) -(trans s1262 s2848) -(trans s1262 s2861) -(trans s1263 s2842) -(trans s1263 s2855) -(trans s1263 s2868) -(trans s1264 s2849) -(trans s1264 s2862) -(trans s1264 s2875) -(trans s1265 s2856) -(trans s1265 s2869) -(trans s1265 s2882) -(trans s1266 s2863) -(trans s1266 s2876) -(trans s1266 s2889) -(trans s1267 s2870) -(trans s1267 s2883) -(trans s1267 s2896) -(trans s1268 s2877) -(trans s1268 s2890) -(trans s1268 s2903) -(trans s1269 s2884) -(trans s1269 s2897) -(trans s1269 s2910) -(trans s1270 s2891) -(trans s1270 s2904) -(trans s1270 s2917) -(trans s1271 s2898) -(trans s1271 s2911) -(trans s1271 s2924) -(trans s1272 s2905) -(trans s1272 s2918) -(trans s1272 s2931) -(trans s1273 s2912) -(trans s1273 s2925) -(trans s1273 s2938) -(trans s1274 s2919) -(trans s1274 s2932) -(trans s1274 s2945) -(trans s1275 s2926) -(trans s1275 s2939) -(trans s1275 s2952) -(trans s1276 s2933) -(trans s1276 s2946) -(trans s1276 s2959) -(trans s1277 s2940) -(trans s1277 s2953) -(trans s1277 s2966) -(trans s1278 s2947) -(trans s1278 s2960) -(trans s1278 s2973) -(trans s1279 s2954) -(trans s1279 s2967) -(trans s1279 s2980) -(trans s1280 s2961) -(trans s1280 s2974) -(trans s1280 s2987) -(trans s1281 s2968) -(trans s1281 s2981) -(trans s1281 s2994) -(trans s1282 s2975) -(trans s1282 s2988) -(trans s1282 s3001) -(trans s1283 s2982) -(trans s1283 s2995) -(trans s1283 s3008) -(trans s1284 s2989) -(trans s1284 s3002) -(trans s1284 s3015) -(trans s1285 s2996) -(trans s1285 s3009) -(trans s1285 s3022) -(trans s1286 s3003) -(trans s1286 s3016) -(trans s1286 s3029) -(trans s1287 s3010) -(trans s1287 s3023) -(trans s1287 s3036) -(trans s1288 s3017) -(trans s1288 s3030) -(trans s1288 s3043) -(trans s1289 s3024) -(trans s1289 s3037) -(trans s1289 s3050) -(trans s1290 s3031) -(trans s1290 s3044) -(trans s1290 s3057) -(trans s1291 s3038) -(trans s1291 s3051) -(trans s1291 s3064) -(trans s1292 s3045) -(trans s1292 s3058) -(trans s1292 s3071) -(trans s1293 s3052) -(trans s1293 s3065) -(trans s1293 s3078) -(trans s1294 s3059) -(trans s1294 s3072) -(trans s1294 s3085) -(trans s1295 s3066) -(trans s1295 s3079) -(trans s1295 s3092) -(trans s1296 s3073) -(trans s1296 s3086) -(trans s1296 s3099) -(trans s1297 s3080) -(trans s1297 s3093) -(trans s1297 s3106) -(trans s1298 s3087) -(trans s1298 s3100) -(trans s1298 s3113) -(trans s1299 s3094) -(trans s1299 s3107) -(trans s1299 s3120) -(trans s1300 s3101) -(trans s1300 s3114) -(trans s1300 s3127) -(trans s1301 s3108) -(trans s1301 s3121) -(trans s1301 s3134) -(trans s1302 s3115) -(trans s1302 s3128) -(trans s1302 s3141) -(trans s1303 s3122) -(trans s1303 s3135) -(trans s1303 s3148) -(trans s1304 s3129) -(trans s1304 s3142) -(trans s1304 s3155) -(trans s1305 s3136) -(trans s1305 s3149) -(trans s1305 s3162) -(trans s1306 s3143) -(trans s1306 s3156) -(trans s1306 s3169) -(trans s1307 s3150) -(trans s1307 s3163) -(trans s1307 s3176) -(trans s1308 s3157) -(trans s1308 s3170) -(trans s1308 s3183) -(trans s1309 s3164) -(trans s1309 s3177) -(trans s1309 s3190) -(trans s1310 s3171) -(trans s1310 s3184) -(trans s1310 s3197) -(trans s1311 s3178) -(trans s1311 s3191) -(trans s1311 s3204) -(trans s1312 s3185) -(trans s1312 s3198) -(trans s1312 s3211) -(trans s1313 s3192) -(trans s1313 s3205) -(trans s1313 s3218) -(trans s1314 s3199) -(trans s1314 s3212) -(trans s1314 s3225) -(trans s1315 s3206) -(trans s1315 s3219) -(trans s1315 s3232) -(trans s1316 s3213) -(trans s1316 s3226) -(trans s1316 s3239) -(trans s1317 s3220) -(trans s1317 s3233) -(trans s1317 s3246) -(trans s1318 s3227) -(trans s1318 s3240) -(trans s1318 s3253) -(trans s1319 s3234) -(trans s1319 s3247) -(trans s1319 s3260) -(trans s1320 s3241) -(trans s1320 s3254) -(trans s1320 s3267) -(trans s1321 s3248) -(trans s1321 s3261) -(trans s1321 s3274) -(trans s1322 s3255) -(trans s1322 s3268) -(trans s1322 s3281) -(trans s1323 s3262) -(trans s1323 s3275) -(trans s1323 s3288) -(trans s1324 s3269) -(trans s1324 s3282) -(trans s1324 s3295) -(trans s1325 s3276) -(trans s1325 s3289) -(trans s1325 s3302) -(trans s1326 s3283) -(trans s1326 s3296) -(trans s1326 s3309) -(trans s1327 s3290) -(trans s1327 s3303) -(trans s1327 s3316) -(trans s1328 s3297) -(trans s1328 s3310) -(trans s1328 s3323) -(trans s1329 s3304) -(trans s1329 s3317) -(trans s1329 s3330) -(trans s1330 s3311) -(trans s1330 s3324) -(trans s1330 s3337) -(trans s1331 s3318) -(trans s1331 s3331) -(trans s1331 s3344) -(trans s1332 s3325) -(trans s1332 s3338) -(trans s1332 s3351) -(trans s1333 s3332) -(trans s1333 s3345) -(trans s1333 s3358) -(trans s1334 s3339) -(trans s1334 s3352) -(trans s1334 s3365) -(trans s1335 s3346) -(trans s1335 s3359) -(trans s1335 s3372) -(trans s1336 s3353) -(trans s1336 s3366) -(trans s1336 s3379) -(trans s1337 s3360) -(trans s1337 s3373) -(trans s1337 s3386) -(trans s1338 s3367) -(trans s1338 s3380) -(trans s1338 s3393) -(trans s1339 s3374) -(trans s1339 s3387) -(trans s1339 s3400) -(trans s1340 s3381) -(trans s1340 s3394) -(trans s1340 s3407) -(trans s1341 s3388) -(trans s1341 s3401) -(trans s1341 s3414) -(trans s1342 s3395) -(trans s1342 s3408) -(trans s1342 s3421) -(trans s1343 s3402) -(trans s1343 s3415) -(trans s1343 s3428) -(trans s1344 s3409) -(trans s1344 s3422) -(trans s1344 s3435) -(trans s1345 s3416) -(trans s1345 s3429) -(trans s1345 s3442) -(trans s1346 s3423) -(trans s1346 s3436) -(trans s1346 s3449) -(trans s1347 s3430) -(trans s1347 s3443) -(trans s1347 s3456) -(trans s1348 s3437) -(trans s1348 s3450) -(trans s1348 s3463) -(trans s1349 s3444) -(trans s1349 s3457) -(trans s1349 s3470) -(trans s1350 s3451) -(trans s1350 s3464) -(trans s1350 s3477) -(trans s1351 s3458) -(trans s1351 s3471) -(trans s1351 s3484) -(trans s1352 s3465) -(trans s1352 s3478) -(trans s1352 s3491) -(trans s1353 s3472) -(trans s1353 s3485) -(trans s1353 s3498) -(trans s1354 s3479) -(trans s1354 s3492) -(trans s1354 s3505) -(trans s1355 s3486) -(trans s1355 s3499) -(trans s1355 s3512) -(trans s1356 s3493) -(trans s1356 s3506) -(trans s1356 s3519) -(trans s1357 s3500) -(trans s1357 s3513) -(trans s1357 s3526) -(trans s1358 s3507) -(trans s1358 s3520) -(trans s1358 s3533) -(trans s1359 s3514) -(trans s1359 s3527) -(trans s1359 s3540) -(trans s1360 s3521) -(trans s1360 s3534) -(trans s1360 s3547) -(trans s1361 s3528) -(trans s1361 s3541) -(trans s1361 s3554) -(trans s1362 s3535) -(trans s1362 s3548) -(trans s1362 s3561) -(trans s1363 s3542) -(trans s1363 s3555) -(trans s1363 s3568) -(trans s1364 s3549) -(trans s1364 s3562) -(trans s1364 s3575) -(trans s1365 s3556) -(trans s1365 s3569) -(trans s1365 s3582) -(trans s1366 s3563) -(trans s1366 s3576) -(trans s1366 s3589) -(trans s1367 s3570) -(trans s1367 s3583) -(trans s1367 s3596) -(trans s1368 s3577) -(trans s1368 s3590) -(trans s1368 s3603) -(trans s1369 s3584) -(trans s1369 s3597) -(trans s1369 s3610) -(trans s1370 s3591) -(trans s1370 s3604) -(trans s1370 s3617) -(trans s1371 s3598) -(trans s1371 s3611) -(trans s1371 s3624) -(trans s1372 s3605) -(trans s1372 s3618) -(trans s1372 s3631) -(trans s1373 s3612) -(trans s1373 s3625) -(trans s1373 s3638) -(trans s1374 s3619) -(trans s1374 s3632) -(trans s1374 s3645) -(trans s1375 s3626) -(trans s1375 s3639) -(trans s1375 s3652) -(trans s1376 s3633) -(trans s1376 s3646) -(trans s1376 s3659) -(trans s1377 s3640) -(trans s1377 s3653) -(trans s1377 s3666) -(trans s1378 s3647) -(trans s1378 s3660) -(trans s1378 s3673) -(trans s1379 s3654) -(trans s1379 s3667) -(trans s1379 s3680) -(trans s1380 s3661) -(trans s1380 s3674) -(trans s1380 s3687) -(trans s1381 s3668) -(trans s1381 s3681) -(trans s1381 s3694) -(trans s1382 s3675) -(trans s1382 s3688) -(trans s1382 s3701) -(trans s1383 s3682) -(trans s1383 s3695) -(trans s1383 s3708) -(trans s1384 s3689) -(trans s1384 s3702) -(trans s1384 s3715) -(trans s1385 s3696) -(trans s1385 s3709) -(trans s1385 s3722) -(trans s1386 s3703) -(trans s1386 s3716) -(trans s1386 s3729) -(trans s1387 s3710) -(trans s1387 s3723) -(trans s1387 s3736) -(trans s1388 s3717) -(trans s1388 s3730) -(trans s1388 s3743) -(trans s1389 s3724) -(trans s1389 s3737) -(trans s1389 s3750) -(trans s1390 s3731) -(trans s1390 s3744) -(trans s1390 s3757) -(trans s1391 s3738) -(trans s1391 s3751) -(trans s1391 s3764) -(trans s1392 s3745) -(trans s1392 s3758) -(trans s1392 s3771) -(trans s1393 s3752) -(trans s1393 s3765) -(trans s1393 s3778) -(trans s1394 s3759) -(trans s1394 s3772) -(trans s1394 s3785) -(trans s1395 s3766) -(trans s1395 s3779) -(trans s1395 s3792) -(trans s1396 s3773) -(trans s1396 s3786) -(trans s1396 s3799) -(trans s1397 s3780) -(trans s1397 s3793) -(trans s1397 s3806) -(trans s1398 s3787) -(trans s1398 s3800) -(trans s1398 s3813) -(trans s1399 s3794) -(trans s1399 s3807) -(trans s1399 s3820) -(trans s1400 s3801) -(trans s1400 s3814) -(trans s1400 s3827) -(trans s1401 s3808) -(trans s1401 s3821) -(trans s1401 s3834) -(trans s1402 s3815) -(trans s1402 s3828) -(trans s1402 s3841) -(trans s1403 s3822) -(trans s1403 s3835) -(trans s1403 s3848) -(trans s1404 s3829) -(trans s1404 s3842) -(trans s1404 s3855) -(trans s1405 s3836) -(trans s1405 s3849) -(trans s1405 s3862) -(trans s1406 s3843) -(trans s1406 s3856) -(trans s1406 s3869) -(trans s1407 s3850) -(trans s1407 s3863) -(trans s1407 s3876) -(trans s1408 s3857) -(trans s1408 s3870) -(trans s1408 s3883) -(trans s1409 s3864) -(trans s1409 s3877) -(trans s1409 s3890) -(trans s1410 s3871) -(trans s1410 s3884) -(trans s1410 s3897) -(trans s1411 s3878) -(trans s1411 s3891) -(trans s1411 s3904) -(trans s1412 s3885) -(trans s1412 s3898) -(trans s1412 s3911) -(trans s1413 s3892) -(trans s1413 s3905) -(trans s1413 s3918) -(trans s1414 s3899) -(trans s1414 s3912) -(trans s1414 s3925) -(trans s1415 s3906) -(trans s1415 s3919) -(trans s1415 s3932) -(trans s1416 s3913) -(trans s1416 s3926) -(trans s1416 s3939) -(trans s1417 s3920) -(trans s1417 s3933) -(trans s1417 s3946) -(trans s1418 s3927) -(trans s1418 s3940) -(trans s1418 s3953) -(trans s1419 s3934) -(trans s1419 s3947) -(trans s1419 s3960) -(trans s1420 s3941) -(trans s1420 s3954) -(trans s1420 s3967) -(trans s1421 s3948) -(trans s1421 s3961) -(trans s1421 s3974) -(trans s1422 s3955) -(trans s1422 s3968) -(trans s1422 s3981) -(trans s1423 s3962) -(trans s1423 s3975) -(trans s1423 s3988) -(trans s1424 s3969) -(trans s1424 s3982) -(trans s1424 s3995) -(trans s1425 s3976) -(trans s1425 s3989) -(trans s1425 s4002) -(trans s1426 s3983) -(trans s1426 s3996) -(trans s1426 s4009) -(trans s1427 s3990) -(trans s1427 s4003) -(trans s1427 s4016) -(trans s1428 s3997) -(trans s1428 s4010) -(trans s1428 s4023) -(trans s1429 s4004) -(trans s1429 s4017) -(trans s1429 s4030) -(trans s1430 s4011) -(trans s1430 s4024) -(trans s1430 s4037) -(trans s1431 s4018) -(trans s1431 s4031) -(trans s1431 s4044) -(trans s1432 s4025) -(trans s1432 s4038) -(trans s1432 s4051) -(trans s1433 s4032) -(trans s1433 s4045) -(trans s1433 s4058) -(trans s1434 s4039) -(trans s1434 s4052) -(trans s1434 s4065) -(trans s1435 s4046) -(trans s1435 s4059) -(trans s1435 s4072) -(trans s1436 s4053) -(trans s1436 s4066) -(trans s1436 s4079) -(trans s1437 s4060) -(trans s1437 s4073) -(trans s1437 s4086) -(trans s1438 s4067) -(trans s1438 s4080) -(trans s1438 s4093) -(trans s1439 s4074) -(trans s1439 s4087) -(trans s1439 s4100) -(trans s1440 s4081) -(trans s1440 s4094) -(trans s1440 s4107) -(trans s1441 s4088) -(trans s1441 s4101) -(trans s1441 s4114) -(trans s1442 s4095) -(trans s1442 s4108) -(trans s1442 s4121) -(trans s1443 s4102) -(trans s1443 s4115) -(trans s1443 s4128) -(trans s1444 s4109) -(trans s1444 s4122) -(trans s1444 s4135) -(trans s1445 s4116) -(trans s1445 s4129) -(trans s1445 s4142) -(trans s1446 s4123) -(trans s1446 s4136) -(trans s1446 s4149) -(trans s1447 s4130) -(trans s1447 s4143) -(trans s1447 s4156) -(trans s1448 s4137) -(trans s1448 s4150) -(trans s1448 s4163) -(trans s1449 s4144) -(trans s1449 s4157) -(trans s1449 s4170) -(trans s1450 s4151) -(trans s1450 s4164) -(trans s1450 s4177) -(trans s1451 s4158) -(trans s1451 s4171) -(trans s1451 s4184) -(trans s1452 s4165) -(trans s1452 s4178) -(trans s1452 s4191) -(trans s1453 s4172) -(trans s1453 s4185) -(trans s1453 s4198) -(trans s1454 s4179) -(trans s1454 s4192) -(trans s1454 s4205) -(trans s1455 s4186) -(trans s1455 s4199) -(trans s1455 s4212) -(trans s1456 s4193) -(trans s1456 s4206) -(trans s1456 s4219) -(trans s1457 s4200) -(trans s1457 s4213) -(trans s1457 s4226) -(trans s1458 s4207) -(trans s1458 s4220) -(trans s1458 s4233) -(trans s1459 s4214) -(trans s1459 s4227) -(trans s1459 s4240) -(trans s1460 s4221) -(trans s1460 s4234) -(trans s1460 s4247) -(trans s1461 s4228) -(trans s1461 s4241) -(trans s1461 s4254) -(trans s1462 s4235) -(trans s1462 s4248) -(trans s1462 s4261) -(trans s1463 s4242) -(trans s1463 s4255) -(trans s1463 s4268) -(trans s1464 s4249) -(trans s1464 s4262) -(trans s1464 s4275) -(trans s1465 s4256) -(trans s1465 s4269) -(trans s1465 s4282) -(trans s1466 s4263) -(trans s1466 s4276) -(trans s1466 s4289) -(trans s1467 s4270) -(trans s1467 s4283) -(trans s1467 s4296) -(trans s1468 s4277) -(trans s1468 s4290) -(trans s1468 s4303) -(trans s1469 s4284) -(trans s1469 s4297) -(trans s1469 s4310) -(trans s1470 s4291) -(trans s1470 s4304) -(trans s1470 s4317) -(trans s1471 s4298) -(trans s1471 s4311) -(trans s1471 s4324) -(trans s1472 s4305) -(trans s1472 s4318) -(trans s1472 s4331) -(trans s1473 s4312) -(trans s1473 s4325) -(trans s1473 s4338) -(trans s1474 s4319) -(trans s1474 s4332) -(trans s1474 s4345) -(trans s1475 s4326) -(trans s1475 s4339) -(trans s1475 s4352) -(trans s1476 s4333) -(trans s1476 s4346) -(trans s1476 s4359) -(trans s1477 s4340) -(trans s1477 s4353) -(trans s1477 s4366) -(trans s1478 s4347) -(trans s1478 s4360) -(trans s1478 s4373) -(trans s1479 s4354) -(trans s1479 s4367) -(trans s1479 s4380) -(trans s1480 s4361) -(trans s1480 s4374) -(trans s1480 s4387) -(trans s1481 s4368) -(trans s1481 s4381) -(trans s1481 s4394) -(trans s1482 s4375) -(trans s1482 s4388) -(trans s1482 s4401) -(trans s1483 s4382) -(trans s1483 s4395) -(trans s1483 s4408) -(trans s1484 s4389) -(trans s1484 s4402) -(trans s1484 s4415) -(trans s1485 s4396) -(trans s1485 s4409) -(trans s1485 s4422) -(trans s1486 s4403) -(trans s1486 s4416) -(trans s1486 s4429) -(trans s1487 s4410) -(trans s1487 s4423) -(trans s1487 s4436) -(trans s1488 s4417) -(trans s1488 s4430) -(trans s1488 s4443) -(trans s1489 s4424) -(trans s1489 s4437) -(trans s1489 s4450) -(trans s1490 s4431) -(trans s1490 s4444) -(trans s1490 s4457) -(trans s1491 s4438) -(trans s1491 s4451) -(trans s1491 s4464) -(trans s1492 s4445) -(trans s1492 s4458) -(trans s1492 s4471) -(trans s1493 s4452) -(trans s1493 s4465) -(trans s1493 s4478) -(trans s1494 s4459) -(trans s1494 s4472) -(trans s1494 s4485) -(trans s1495 s4466) -(trans s1495 s4479) -(trans s1495 s4492) -(trans s1496 s4473) -(trans s1496 s4486) -(trans s1496 s4499) -(trans s1497 s4480) -(trans s1497 s4493) -(trans s1497 s4506) -(trans s1498 s4487) -(trans s1498 s4500) -(trans s1498 s4513) -(trans s1499 s4494) -(trans s1499 s4507) -(trans s1499 s4520) -(trans s1500 s4501) -(trans s1500 s4514) -(trans s1500 s4527) -(trans s1501 s4508) -(trans s1501 s4521) -(trans s1501 s4534) -(trans s1502 s4515) -(trans s1502 s4528) -(trans s1502 s4541) -(trans s1503 s4522) -(trans s1503 s4535) -(trans s1503 s4548) -(trans s1504 s4529) -(trans s1504 s4542) -(trans s1504 s4555) -(trans s1505 s4536) -(trans s1505 s4549) -(trans s1505 s4562) -(trans s1506 s4543) -(trans s1506 s4556) -(trans s1506 s4569) -(trans s1507 s4550) -(trans s1507 s4563) -(trans s1507 s4576) -(trans s1508 s4557) -(trans s1508 s4570) -(trans s1508 s4583) -(trans s1509 s4564) -(trans s1509 s4577) -(trans s1509 s4590) -(trans s1510 s4571) -(trans s1510 s4584) -(trans s1510 s4597) -(trans s1511 s4578) -(trans s1511 s4591) -(trans s1511 s4604) -(trans s1512 s4585) -(trans s1512 s4598) -(trans s1512 s4611) -(trans s1513 s4592) -(trans s1513 s4605) -(trans s1513 s4618) -(trans s1514 s4599) -(trans s1514 s4612) -(trans s1514 s4625) -(trans s1515 s4606) -(trans s1515 s4619) -(trans s1515 s4632) -(trans s1516 s4613) -(trans s1516 s4626) -(trans s1516 s4639) -(trans s1517 s4620) -(trans s1517 s4633) -(trans s1517 s4646) -(trans s1518 s4627) -(trans s1518 s4640) -(trans s1518 s4653) -(trans s1519 s4634) -(trans s1519 s4647) -(trans s1519 s4660) -(trans s1520 s4641) -(trans s1520 s4654) -(trans s1520 s4667) -(trans s1521 s4648) -(trans s1521 s4661) -(trans s1521 s4674) -(trans s1522 s4655) -(trans s1522 s4668) -(trans s1522 s4681) -(trans s1523 s4662) -(trans s1523 s4675) -(trans s1523 s4688) -(trans s1524 s4669) -(trans s1524 s4682) -(trans s1524 s4695) -(trans s1525 s4676) -(trans s1525 s4689) -(trans s1525 s4702) -(trans s1526 s4683) -(trans s1526 s4696) -(trans s1526 s4709) -(trans s1527 s4690) -(trans s1527 s4703) -(trans s1527 s4716) -(trans s1528 s4697) -(trans s1528 s4710) -(trans s1528 s4723) -(trans s1529 s4704) -(trans s1529 s4717) -(trans s1529 s4730) -(trans s1530 s4711) -(trans s1530 s4724) -(trans s1530 s4737) -(trans s1531 s4718) -(trans s1531 s4731) -(trans s1531 s4744) -(trans s1532 s4725) -(trans s1532 s4738) -(trans s1532 s4751) -(trans s1533 s4732) -(trans s1533 s4745) -(trans s1533 s4758) -(trans s1534 s4739) -(trans s1534 s4752) -(trans s1534 s4765) -(trans s1535 s4746) -(trans s1535 s4759) -(trans s1535 s4772) -(trans s1536 s4753) -(trans s1536 s4766) -(trans s1536 s4779) -(trans s1537 s4760) -(trans s1537 s4773) -(trans s1537 s4786) -(trans s1538 s4767) -(trans s1538 s4780) -(trans s1538 s4793) -(trans s1539 s4774) -(trans s1539 s4787) -(trans s1539 s4800) -(trans s1540 s4781) -(trans s1540 s4794) -(trans s1540 s4807) -(trans s1541 s4788) -(trans s1541 s4801) -(trans s1541 s4814) -(trans s1542 s4795) -(trans s1542 s4808) -(trans s1542 s4821) -(trans s1543 s4802) -(trans s1543 s4815) -(trans s1543 s4828) -(trans s1544 s4809) -(trans s1544 s4822) -(trans s1544 s4835) -(trans s1545 s4816) -(trans s1545 s4829) -(trans s1545 s4842) -(trans s1546 s4823) -(trans s1546 s4836) -(trans s1546 s4849) -(trans s1547 s4830) -(trans s1547 s4843) -(trans s1547 s4856) -(trans s1548 s4837) -(trans s1548 s4850) -(trans s1548 s4863) -(trans s1549 s4844) -(trans s1549 s4857) -(trans s1549 s4870) -(trans s1550 s4851) -(trans s1550 s4864) -(trans s1550 s4877) -(trans s1551 s4858) -(trans s1551 s4871) -(trans s1551 s4884) -(trans s1552 s4865) -(trans s1552 s4878) -(trans s1552 s4891) -(trans s1553 s4872) -(trans s1553 s4885) -(trans s1553 s4898) -(trans s1554 s4879) -(trans s1554 s4892) -(trans s1554 s4905) -(trans s1555 s4886) -(trans s1555 s4899) -(trans s1555 s4912) -(trans s1556 s4893) -(trans s1556 s4906) -(trans s1556 s4919) -(trans s1557 s4900) -(trans s1557 s4913) -(trans s1557 s4926) -(trans s1558 s4907) -(trans s1558 s4920) -(trans s1558 s4933) -(trans s1559 s4914) -(trans s1559 s4927) -(trans s1559 s4940) -(trans s1560 s4921) -(trans s1560 s4934) -(trans s1560 s4947) -(trans s1561 s4928) -(trans s1561 s4941) -(trans s1561 s4954) -(trans s1562 s4935) -(trans s1562 s4948) -(trans s1562 s4961) -(trans s1563 s4942) -(trans s1563 s4955) -(trans s1563 s4968) -(trans s1564 s4949) -(trans s1564 s4962) -(trans s1564 s4975) -(trans s1565 s4956) -(trans s1565 s4969) -(trans s1565 s4982) -(trans s1566 s4963) -(trans s1566 s4976) -(trans s1566 s4989) -(trans s1567 s4970) -(trans s1567 s4983) -(trans s1567 s4996) -(trans s1568 s4977) -(trans s1568 s4990) -(trans s1568 s5003) -(trans s1569 s4984) -(trans s1569 s4997) -(trans s1569 s5010) -(trans s1570 s4991) -(trans s1570 s5004) -(trans s1570 s5017) -(trans s1571 s4998) -(trans s1571 s5011) -(trans s1571 s5024) -(trans s1572 s5005) -(trans s1572 s5018) -(trans s1572 s5031) -(trans s1573 s5012) -(trans s1573 s5025) -(trans s1573 s5038) -(trans s1574 s5019) -(trans s1574 s5032) -(trans s1574 s5045) -(trans s1575 s5026) -(trans s1575 s5039) -(trans s1575 s5052) -(trans s1576 s5033) -(trans s1576 s5046) -(trans s1576 s5059) -(trans s1577 s5040) -(trans s1577 s5053) -(trans s1577 s5066) -(trans s1578 s5047) -(trans s1578 s5060) -(trans s1578 s5073) -(trans s1579 s5054) -(trans s1579 s5067) -(trans s1579 s5080) -(trans s1580 s5061) -(trans s1580 s5074) -(trans s1580 s5087) -(trans s1581 s5068) -(trans s1581 s5081) -(trans s1581 s5094) -(trans s1582 s5075) -(trans s1582 s5088) -(trans s1582 s5101) -(trans s1583 s5082) -(trans s1583 s5095) -(trans s1583 s5108) -(trans s1584 s5089) -(trans s1584 s5102) -(trans s1584 s5115) -(trans s1585 s5096) -(trans s1585 s5109) -(trans s1585 s5122) -(trans s1586 s5103) -(trans s1586 s5116) -(trans s1586 s5129) -(trans s1587 s5110) -(trans s1587 s5123) -(trans s1587 s5136) -(trans s1588 s5117) -(trans s1588 s5130) -(trans s1588 s5143) -(trans s1589 s5124) -(trans s1589 s5137) -(trans s1589 s5150) -(trans s1590 s5131) -(trans s1590 s5144) -(trans s1590 s5157) -(trans s1591 s5138) -(trans s1591 s5151) -(trans s1591 s5164) -(trans s1592 s5145) -(trans s1592 s5158) -(trans s1592 s5171) -(trans s1593 s5152) -(trans s1593 s5165) -(trans s1593 s5178) -(trans s1594 s5159) -(trans s1594 s5172) -(trans s1594 s5185) -(trans s1595 s5166) -(trans s1595 s5179) -(trans s1595 s5192) -(trans s1596 s5173) -(trans s1596 s5186) -(trans s1596 s5199) -(trans s1597 s5180) -(trans s1597 s5193) -(trans s1597 s5206) -(trans s1598 s5187) -(trans s1598 s5200) -(trans s1598 s5213) -(trans s1599 s5194) -(trans s1599 s5207) -(trans s1599 s5220) -(trans s1600 s5201) -(trans s1600 s5214) -(trans s1600 s5227) -(trans s1601 s5208) -(trans s1601 s5221) -(trans s1601 s5234) -(trans s1602 s5215) -(trans s1602 s5228) -(trans s1602 s5241) -(trans s1603 s5222) -(trans s1603 s5235) -(trans s1603 s5248) -(trans s1604 s5229) -(trans s1604 s5242) -(trans s1604 s5255) -(trans s1605 s5236) -(trans s1605 s5249) -(trans s1605 s5262) -(trans s1606 s5243) -(trans s1606 s5256) -(trans s1606 s5269) -(trans s1607 s5250) -(trans s1607 s5263) -(trans s1607 s5276) -(trans s1608 s5257) -(trans s1608 s5270) -(trans s1608 s5283) -(trans s1609 s5264) -(trans s1609 s5277) -(trans s1609 s5290) -(trans s1610 s5271) -(trans s1610 s5284) -(trans s1610 s5297) -(trans s1611 s5278) -(trans s1611 s5291) -(trans s1611 s5304) -(trans s1612 s5285) -(trans s1612 s5298) -(trans s1612 s5311) -(trans s1613 s5292) -(trans s1613 s5305) -(trans s1613 s5318) -(trans s1614 s5299) -(trans s1614 s5312) -(trans s1614 s5325) -(trans s1615 s5306) -(trans s1615 s5319) -(trans s1615 s5332) -(trans s1616 s5313) -(trans s1616 s5326) -(trans s1616 s5339) -(trans s1617 s5320) -(trans s1617 s5333) -(trans s1617 s5346) -(trans s1618 s5327) -(trans s1618 s5340) -(trans s1618 s5353) -(trans s1619 s5334) -(trans s1619 s5347) -(trans s1619 s5360) -(trans s1620 s5341) -(trans s1620 s5354) -(trans s1620 s5367) -(trans s1621 s5348) -(trans s1621 s5361) -(trans s1621 s5374) -(trans s1622 s5355) -(trans s1622 s5368) -(trans s1622 s5381) -(trans s1623 s5362) -(trans s1623 s5375) -(trans s1623 s5388) -(trans s1624 s5369) -(trans s1624 s5382) -(trans s1624 s5395) -(trans s1625 s5376) -(trans s1625 s5389) -(trans s1625 s5402) -(trans s1626 s5383) -(trans s1626 s5396) -(trans s1626 s5409) -(trans s1627 s5390) -(trans s1627 s5403) -(trans s1627 s5416) -(trans s1628 s5397) -(trans s1628 s5410) -(trans s1628 s5423) -(trans s1629 s5404) -(trans s1629 s5417) -(trans s1629 s5430) -(trans s1630 s5411) -(trans s1630 s5424) -(trans s1630 s5437) -(trans s1631 s5418) -(trans s1631 s5431) -(trans s1631 s5444) -(trans s1632 s5425) -(trans s1632 s5438) -(trans s1632 s5451) -(trans s1633 s5432) -(trans s1633 s5445) -(trans s1633 s5458) -(trans s1634 s5439) -(trans s1634 s5452) -(trans s1634 s5465) -(trans s1635 s5446) -(trans s1635 s5459) -(trans s1635 s5472) -(trans s1636 s5453) -(trans s1636 s5466) -(trans s1636 s5479) -(trans s1637 s5460) -(trans s1637 s5473) -(trans s1637 s5486) -(trans s1638 s5467) -(trans s1638 s5480) -(trans s1638 s5493) -(trans s1639 s5474) -(trans s1639 s5487) -(trans s1639 s5500) -(trans s1640 s5481) -(trans s1640 s5494) -(trans s1640 s5507) -(trans s1641 s5488) -(trans s1641 s5501) -(trans s1641 s5514) -(trans s1642 s5495) -(trans s1642 s5508) -(trans s1642 s5521) -(trans s1643 s5502) -(trans s1643 s5515) -(trans s1643 s5528) -(trans s1644 s5509) -(trans s1644 s5522) -(trans s1644 s5535) -(trans s1645 s5516) -(trans s1645 s5529) -(trans s1645 s5542) -(trans s1646 s5523) -(trans s1646 s5536) -(trans s1646 s5549) -(trans s1647 s5530) -(trans s1647 s5543) -(trans s1647 s5556) -(trans s1648 s5537) -(trans s1648 s5550) -(trans s1648 s5563) -(trans s1649 s5544) -(trans s1649 s5557) -(trans s1649 s5570) -(trans s1650 s5551) -(trans s1650 s5564) -(trans s1650 s5577) -(trans s1651 s5558) -(trans s1651 s5571) -(trans s1651 s5584) -(trans s1652 s5565) -(trans s1652 s5578) -(trans s1652 s5591) -(trans s1653 s5572) -(trans s1653 s5585) -(trans s1653 s5598) -(trans s1654 s5579) -(trans s1654 s5592) -(trans s1654 s5605) -(trans s1655 s5586) -(trans s1655 s5599) -(trans s1655 s5612) -(trans s1656 s5593) -(trans s1656 s5606) -(trans s1656 s5619) -(trans s1657 s5600) -(trans s1657 s5613) -(trans s1657 s5626) -(trans s1658 s5607) -(trans s1658 s5620) -(trans s1658 s5633) -(trans s1659 s5614) -(trans s1659 s5627) -(trans s1659 s5640) -(trans s1660 s5621) -(trans s1660 s5634) -(trans s1660 s5647) -(trans s1661 s5628) -(trans s1661 s5641) -(trans s1661 s5654) -(trans s1662 s5635) -(trans s1662 s5648) -(trans s1662 s5661) -(trans s1663 s5642) -(trans s1663 s5655) -(trans s1663 s5668) -(trans s1664 s5649) -(trans s1664 s5662) -(trans s1664 s5675) -(trans s1665 s5656) -(trans s1665 s5669) -(trans s1665 s5682) -(trans s1666 s5663) -(trans s1666 s5676) -(trans s1666 s5689) -(trans s1667 s5670) -(trans s1667 s5683) -(trans s1667 s5696) -(trans s1668 s5677) -(trans s1668 s5690) -(trans s1668 s5703) -(trans s1669 s5684) -(trans s1669 s5697) -(trans s1669 s5710) -(trans s1670 s5691) -(trans s1670 s5704) -(trans s1670 s5717) -(trans s1671 s5698) -(trans s1671 s5711) -(trans s1671 s5724) -(trans s1672 s5705) -(trans s1672 s5718) -(trans s1672 s5731) -(trans s1673 s5712) -(trans s1673 s5725) -(trans s1673 s5738) -(trans s1674 s5719) -(trans s1674 s5732) -(trans s1674 s5745) -(trans s1675 s5726) -(trans s1675 s5739) -(trans s1675 s5752) -(trans s1676 s5733) -(trans s1676 s5746) -(trans s1676 s5759) -(trans s1677 s5740) -(trans s1677 s5753) -(trans s1677 s5766) -(trans s1678 s5747) -(trans s1678 s5760) -(trans s1678 s5773) -(trans s1679 s5754) -(trans s1679 s5767) -(trans s1679 s5780) -(trans s1680 s5761) -(trans s1680 s5774) -(trans s1680 s5787) -(trans s1681 s5768) -(trans s1681 s5781) -(trans s1681 s5794) -(trans s1682 s5775) -(trans s1682 s5788) -(trans s1682 s5801) -(trans s1683 s5782) -(trans s1683 s5795) -(trans s1683 s5808) -(trans s1684 s5789) -(trans s1684 s5802) -(trans s1684 s5815) -(trans s1685 s5796) -(trans s1685 s5809) -(trans s1685 s5822) -(trans s1686 s5803) -(trans s1686 s5816) -(trans s1686 s5829) -(trans s1687 s5810) -(trans s1687 s5823) -(trans s1687 s5836) -(trans s1688 s5817) -(trans s1688 s5830) -(trans s1688 s5843) -(trans s1689 s5824) -(trans s1689 s5837) -(trans s1689 s5850) -(trans s1690 s5831) -(trans s1690 s5844) -(trans s1690 s5857) -(trans s1691 s5838) -(trans s1691 s5851) -(trans s1691 s5864) -(trans s1692 s5845) -(trans s1692 s5858) -(trans s1692 s5871) -(trans s1693 s5852) -(trans s1693 s5865) -(trans s1693 s5878) -(trans s1694 s5859) -(trans s1694 s5872) -(trans s1694 s5885) -(trans s1695 s5866) -(trans s1695 s5879) -(trans s1695 s5892) -(trans s1696 s5873) -(trans s1696 s5886) -(trans s1696 s5899) -(trans s1697 s5880) -(trans s1697 s5893) -(trans s1697 s5906) -(trans s1698 s5887) -(trans s1698 s5900) -(trans s1698 s5913) -(trans s1699 s5894) -(trans s1699 s5907) -(trans s1699 s5920) -(trans s1700 s5901) -(trans s1700 s5914) -(trans s1700 s5927) -(trans s1701 s5908) -(trans s1701 s5921) -(trans s1701 s5934) -(trans s1702 s5915) -(trans s1702 s5928) -(trans s1702 s5941) -(trans s1703 s5922) -(trans s1703 s5935) -(trans s1703 s5948) -(trans s1704 s5929) -(trans s1704 s5942) -(trans s1704 s5955) -(trans s1705 s5936) -(trans s1705 s5949) -(trans s1705 s5962) -(trans s1706 s5943) -(trans s1706 s5956) -(trans s1706 s5969) -(trans s1707 s5950) -(trans s1707 s5963) -(trans s1707 s5976) -(trans s1708 s5957) -(trans s1708 s5970) -(trans s1708 s5983) -(trans s1709 s5964) -(trans s1709 s5977) -(trans s1709 s5990) -(trans s1710 s5971) -(trans s1710 s5984) -(trans s1710 s5997) -(trans s1711 s5978) -(trans s1711 s5991) -(trans s1711 s4) -(trans s1712 s5985) -(trans s1712 s5998) -(trans s1712 s11) -(trans s1713 s5992) -(trans s1713 s5) -(trans s1713 s18) -(trans s1714 s5999) -(trans s1714 s12) -(trans s1714 s25) -(trans s1715 s6) -(trans s1715 s19) -(trans s1715 s32) -(trans s1716 s13) -(trans s1716 s26) -(trans s1716 s39) -(trans s1717 s20) -(trans s1717 s33) -(trans s1717 s46) -(trans s1718 s27) -(trans s1718 s40) -(trans s1718 s53) -(trans s1719 s34) -(trans s1719 s47) -(trans s1719 s60) -(trans s1720 s41) -(trans s1720 s54) -(trans s1720 s67) -(trans s1721 s48) -(trans s1721 s61) -(trans s1721 s74) -(trans s1722 s55) -(trans s1722 s68) -(trans s1722 s81) -(trans s1723 s62) -(trans s1723 s75) -(trans s1723 s88) -(trans s1724 s69) -(trans s1724 s82) -(trans s1724 s95) -(trans s1725 s76) -(trans s1725 s89) -(trans s1725 s102) -(trans s1726 s83) -(trans s1726 s96) -(trans s1726 s109) -(trans s1727 s90) -(trans s1727 s103) -(trans s1727 s116) -(trans s1728 s97) -(trans s1728 s110) -(trans s1728 s123) -(trans s1729 s104) -(trans s1729 s117) -(trans s1729 s130) -(trans s1730 s111) -(trans s1730 s124) -(trans s1730 s137) -(trans s1731 s118) -(trans s1731 s131) -(trans s1731 s144) -(trans s1732 s125) -(trans s1732 s138) -(trans s1732 s151) -(trans s1733 s132) -(trans s1733 s145) -(trans s1733 s158) -(trans s1734 s139) -(trans s1734 s152) -(trans s1734 s165) -(trans s1735 s146) -(trans s1735 s159) -(trans s1735 s172) -(trans s1736 s153) -(trans s1736 s166) -(trans s1736 s179) -(trans s1737 s160) -(trans s1737 s173) -(trans s1737 s186) -(trans s1738 s167) -(trans s1738 s180) -(trans s1738 s193) -(trans s1739 s174) -(trans s1739 s187) -(trans s1739 s200) -(trans s1740 s181) -(trans s1740 s194) -(trans s1740 s207) -(trans s1741 s188) -(trans s1741 s201) -(trans s1741 s214) -(trans s1742 s195) -(trans s1742 s208) -(trans s1742 s221) -(trans s1743 s202) -(trans s1743 s215) -(trans s1743 s228) -(trans s1744 s209) -(trans s1744 s222) -(trans s1744 s235) -(trans s1745 s216) -(trans s1745 s229) -(trans s1745 s242) -(trans s1746 s223) -(trans s1746 s236) -(trans s1746 s249) -(trans s1747 s230) -(trans s1747 s243) -(trans s1747 s256) -(trans s1748 s237) -(trans s1748 s250) -(trans s1748 s263) -(trans s1749 s244) -(trans s1749 s257) -(trans s1749 s270) -(trans s1750 s251) -(trans s1750 s264) -(trans s1750 s277) -(trans s1751 s258) -(trans s1751 s271) -(trans s1751 s284) -(trans s1752 s265) -(trans s1752 s278) -(trans s1752 s291) -(trans s1753 s272) -(trans s1753 s285) -(trans s1753 s298) -(trans s1754 s279) -(trans s1754 s292) -(trans s1754 s305) -(trans s1755 s286) -(trans s1755 s299) -(trans s1755 s312) -(trans s1756 s293) -(trans s1756 s306) -(trans s1756 s319) -(trans s1757 s300) -(trans s1757 s313) -(trans s1757 s326) -(trans s1758 s307) -(trans s1758 s320) -(trans s1758 s333) -(trans s1759 s314) -(trans s1759 s327) -(trans s1759 s340) -(trans s1760 s321) -(trans s1760 s334) -(trans s1760 s347) -(trans s1761 s328) -(trans s1761 s341) -(trans s1761 s354) -(trans s1762 s335) -(trans s1762 s348) -(trans s1762 s361) -(trans s1763 s342) -(trans s1763 s355) -(trans s1763 s368) -(trans s1764 s349) -(trans s1764 s362) -(trans s1764 s375) -(trans s1765 s356) -(trans s1765 s369) -(trans s1765 s382) -(trans s1766 s363) -(trans s1766 s376) -(trans s1766 s389) -(trans s1767 s370) -(trans s1767 s383) -(trans s1767 s396) -(trans s1768 s377) -(trans s1768 s390) -(trans s1768 s403) -(trans s1769 s384) -(trans s1769 s397) -(trans s1769 s410) -(trans s1770 s391) -(trans s1770 s404) -(trans s1770 s417) -(trans s1771 s398) -(trans s1771 s411) -(trans s1771 s424) -(trans s1772 s405) -(trans s1772 s418) -(trans s1772 s431) -(trans s1773 s412) -(trans s1773 s425) -(trans s1773 s438) -(trans s1774 s419) -(trans s1774 s432) -(trans s1774 s445) -(trans s1775 s426) -(trans s1775 s439) -(trans s1775 s452) -(trans s1776 s433) -(trans s1776 s446) -(trans s1776 s459) -(trans s1777 s440) -(trans s1777 s453) -(trans s1777 s466) -(trans s1778 s447) -(trans s1778 s460) -(trans s1778 s473) -(trans s1779 s454) -(trans s1779 s467) -(trans s1779 s480) -(trans s1780 s461) -(trans s1780 s474) -(trans s1780 s487) -(trans s1781 s468) -(trans s1781 s481) -(trans s1781 s494) -(trans s1782 s475) -(trans s1782 s488) -(trans s1782 s501) -(trans s1783 s482) -(trans s1783 s495) -(trans s1783 s508) -(trans s1784 s489) -(trans s1784 s502) -(trans s1784 s515) -(trans s1785 s496) -(trans s1785 s509) -(trans s1785 s522) -(trans s1786 s503) -(trans s1786 s516) -(trans s1786 s529) -(trans s1787 s510) -(trans s1787 s523) -(trans s1787 s536) -(trans s1788 s517) -(trans s1788 s530) -(trans s1788 s543) -(trans s1789 s524) -(trans s1789 s537) -(trans s1789 s550) -(trans s1790 s531) -(trans s1790 s544) -(trans s1790 s557) -(trans s1791 s538) -(trans s1791 s551) -(trans s1791 s564) -(trans s1792 s545) -(trans s1792 s558) -(trans s1792 s571) -(trans s1793 s552) -(trans s1793 s565) -(trans s1793 s578) -(trans s1794 s559) -(trans s1794 s572) -(trans s1794 s585) -(trans s1795 s566) -(trans s1795 s579) -(trans s1795 s592) -(trans s1796 s573) -(trans s1796 s586) -(trans s1796 s599) -(trans s1797 s580) -(trans s1797 s593) -(trans s1797 s606) -(trans s1798 s587) -(trans s1798 s600) -(trans s1798 s613) -(trans s1799 s594) -(trans s1799 s607) -(trans s1799 s620) -(trans s1800 s601) -(trans s1800 s614) -(trans s1800 s627) -(trans s1801 s608) -(trans s1801 s621) -(trans s1801 s634) -(trans s1802 s615) -(trans s1802 s628) -(trans s1802 s641) -(trans s1803 s622) -(trans s1803 s635) -(trans s1803 s648) -(trans s1804 s629) -(trans s1804 s642) -(trans s1804 s655) -(trans s1805 s636) -(trans s1805 s649) -(trans s1805 s662) -(trans s1806 s643) -(trans s1806 s656) -(trans s1806 s669) -(trans s1807 s650) -(trans s1807 s663) -(trans s1807 s676) -(trans s1808 s657) -(trans s1808 s670) -(trans s1808 s683) -(trans s1809 s664) -(trans s1809 s677) -(trans s1809 s690) -(trans s1810 s671) -(trans s1810 s684) -(trans s1810 s697) -(trans s1811 s678) -(trans s1811 s691) -(trans s1811 s704) -(trans s1812 s685) -(trans s1812 s698) -(trans s1812 s711) -(trans s1813 s692) -(trans s1813 s705) -(trans s1813 s718) -(trans s1814 s699) -(trans s1814 s712) -(trans s1814 s725) -(trans s1815 s706) -(trans s1815 s719) -(trans s1815 s732) -(trans s1816 s713) -(trans s1816 s726) -(trans s1816 s739) -(trans s1817 s720) -(trans s1817 s733) -(trans s1817 s746) -(trans s1818 s727) -(trans s1818 s740) -(trans s1818 s753) -(trans s1819 s734) -(trans s1819 s747) -(trans s1819 s760) -(trans s1820 s741) -(trans s1820 s754) -(trans s1820 s767) -(trans s1821 s748) -(trans s1821 s761) -(trans s1821 s774) -(trans s1822 s755) -(trans s1822 s768) -(trans s1822 s781) -(trans s1823 s762) -(trans s1823 s775) -(trans s1823 s788) -(trans s1824 s769) -(trans s1824 s782) -(trans s1824 s795) -(trans s1825 s776) -(trans s1825 s789) -(trans s1825 s802) -(trans s1826 s783) -(trans s1826 s796) -(trans s1826 s809) -(trans s1827 s790) -(trans s1827 s803) -(trans s1827 s816) -(trans s1828 s797) -(trans s1828 s810) -(trans s1828 s823) -(trans s1829 s804) -(trans s1829 s817) -(trans s1829 s830) -(trans s1830 s811) -(trans s1830 s824) -(trans s1830 s837) -(trans s1831 s818) -(trans s1831 s831) -(trans s1831 s844) -(trans s1832 s825) -(trans s1832 s838) -(trans s1832 s851) -(trans s1833 s832) -(trans s1833 s845) -(trans s1833 s858) -(trans s1834 s839) -(trans s1834 s852) -(trans s1834 s865) -(trans s1835 s846) -(trans s1835 s859) -(trans s1835 s872) -(trans s1836 s853) -(trans s1836 s866) -(trans s1836 s879) -(trans s1837 s860) -(trans s1837 s873) -(trans s1837 s886) -(trans s1838 s867) -(trans s1838 s880) -(trans s1838 s893) -(trans s1839 s874) -(trans s1839 s887) -(trans s1839 s900) -(trans s1840 s881) -(trans s1840 s894) -(trans s1840 s907) -(trans s1841 s888) -(trans s1841 s901) -(trans s1841 s914) -(trans s1842 s895) -(trans s1842 s908) -(trans s1842 s921) -(trans s1843 s902) -(trans s1843 s915) -(trans s1843 s928) -(trans s1844 s909) -(trans s1844 s922) -(trans s1844 s935) -(trans s1845 s916) -(trans s1845 s929) -(trans s1845 s942) -(trans s1846 s923) -(trans s1846 s936) -(trans s1846 s949) -(trans s1847 s930) -(trans s1847 s943) -(trans s1847 s956) -(trans s1848 s937) -(trans s1848 s950) -(trans s1848 s963) -(trans s1849 s944) -(trans s1849 s957) -(trans s1849 s970) -(trans s1850 s951) -(trans s1850 s964) -(trans s1850 s977) -(trans s1851 s958) -(trans s1851 s971) -(trans s1851 s984) -(trans s1852 s965) -(trans s1852 s978) -(trans s1852 s991) -(trans s1853 s972) -(trans s1853 s985) -(trans s1853 s998) -(trans s1854 s979) -(trans s1854 s992) -(trans s1854 s1005) -(trans s1855 s986) -(trans s1855 s999) -(trans s1855 s1012) -(trans s1856 s993) -(trans s1856 s1006) -(trans s1856 s1019) -(trans s1857 s1000) -(trans s1857 s1013) -(trans s1857 s1026) -(trans s1858 s1007) -(trans s1858 s1020) -(trans s1858 s1033) -(trans s1859 s1014) -(trans s1859 s1027) -(trans s1859 s1040) -(trans s1860 s1021) -(trans s1860 s1034) -(trans s1860 s1047) -(trans s1861 s1028) -(trans s1861 s1041) -(trans s1861 s1054) -(trans s1862 s1035) -(trans s1862 s1048) -(trans s1862 s1061) -(trans s1863 s1042) -(trans s1863 s1055) -(trans s1863 s1068) -(trans s1864 s1049) -(trans s1864 s1062) -(trans s1864 s1075) -(trans s1865 s1056) -(trans s1865 s1069) -(trans s1865 s1082) -(trans s1866 s1063) -(trans s1866 s1076) -(trans s1866 s1089) -(trans s1867 s1070) -(trans s1867 s1083) -(trans s1867 s1096) -(trans s1868 s1077) -(trans s1868 s1090) -(trans s1868 s1103) -(trans s1869 s1084) -(trans s1869 s1097) -(trans s1869 s1110) -(trans s1870 s1091) -(trans s1870 s1104) -(trans s1870 s1117) -(trans s1871 s1098) -(trans s1871 s1111) -(trans s1871 s1124) -(trans s1872 s1105) -(trans s1872 s1118) -(trans s1872 s1131) -(trans s1873 s1112) -(trans s1873 s1125) -(trans s1873 s1138) -(trans s1874 s1119) -(trans s1874 s1132) -(trans s1874 s1145) -(trans s1875 s1126) -(trans s1875 s1139) -(trans s1875 s1152) -(trans s1876 s1133) -(trans s1876 s1146) -(trans s1876 s1159) -(trans s1877 s1140) -(trans s1877 s1153) -(trans s1877 s1166) -(trans s1878 s1147) -(trans s1878 s1160) -(trans s1878 s1173) -(trans s1879 s1154) -(trans s1879 s1167) -(trans s1879 s1180) -(trans s1880 s1161) -(trans s1880 s1174) -(trans s1880 s1187) -(trans s1881 s1168) -(trans s1881 s1181) -(trans s1881 s1194) -(trans s1882 s1175) -(trans s1882 s1188) -(trans s1882 s1201) -(trans s1883 s1182) -(trans s1883 s1195) -(trans s1883 s1208) -(trans s1884 s1189) -(trans s1884 s1202) -(trans s1884 s1215) -(trans s1885 s1196) -(trans s1885 s1209) -(trans s1885 s1222) -(trans s1886 s1203) -(trans s1886 s1216) -(trans s1886 s1229) -(trans s1887 s1210) -(trans s1887 s1223) -(trans s1887 s1236) -(trans s1888 s1217) -(trans s1888 s1230) -(trans s1888 s1243) -(trans s1889 s1224) -(trans s1889 s1237) -(trans s1889 s1250) -(trans s1890 s1231) -(trans s1890 s1244) -(trans s1890 s1257) -(trans s1891 s1238) -(trans s1891 s1251) -(trans s1891 s1264) -(trans s1892 s1245) -(trans s1892 s1258) -(trans s1892 s1271) -(trans s1893 s1252) -(trans s1893 s1265) -(trans s1893 s1278) -(trans s1894 s1259) -(trans s1894 s1272) -(trans s1894 s1285) -(trans s1895 s1266) -(trans s1895 s1279) -(trans s1895 s1292) -(trans s1896 s1273) -(trans s1896 s1286) -(trans s1896 s1299) -(trans s1897 s1280) -(trans s1897 s1293) -(trans s1897 s1306) -(trans s1898 s1287) -(trans s1898 s1300) -(trans s1898 s1313) -(trans s1899 s1294) -(trans s1899 s1307) -(trans s1899 s1320) -(trans s1900 s1301) -(trans s1900 s1314) -(trans s1900 s1327) -(trans s1901 s1308) -(trans s1901 s1321) -(trans s1901 s1334) -(trans s1902 s1315) -(trans s1902 s1328) -(trans s1902 s1341) -(trans s1903 s1322) -(trans s1903 s1335) -(trans s1903 s1348) -(trans s1904 s1329) -(trans s1904 s1342) -(trans s1904 s1355) -(trans s1905 s1336) -(trans s1905 s1349) -(trans s1905 s1362) -(trans s1906 s1343) -(trans s1906 s1356) -(trans s1906 s1369) -(trans s1907 s1350) -(trans s1907 s1363) -(trans s1907 s1376) -(trans s1908 s1357) -(trans s1908 s1370) -(trans s1908 s1383) -(trans s1909 s1364) -(trans s1909 s1377) -(trans s1909 s1390) -(trans s1910 s1371) -(trans s1910 s1384) -(trans s1910 s1397) -(trans s1911 s1378) -(trans s1911 s1391) -(trans s1911 s1404) -(trans s1912 s1385) -(trans s1912 s1398) -(trans s1912 s1411) -(trans s1913 s1392) -(trans s1913 s1405) -(trans s1913 s1418) -(trans s1914 s1399) -(trans s1914 s1412) -(trans s1914 s1425) -(trans s1915 s1406) -(trans s1915 s1419) -(trans s1915 s1432) -(trans s1916 s1413) -(trans s1916 s1426) -(trans s1916 s1439) -(trans s1917 s1420) -(trans s1917 s1433) -(trans s1917 s1446) -(trans s1918 s1427) -(trans s1918 s1440) -(trans s1918 s1453) -(trans s1919 s1434) -(trans s1919 s1447) -(trans s1919 s1460) -(trans s1920 s1441) -(trans s1920 s1454) -(trans s1920 s1467) -(trans s1921 s1448) -(trans s1921 s1461) -(trans s1921 s1474) -(trans s1922 s1455) -(trans s1922 s1468) -(trans s1922 s1481) -(trans s1923 s1462) -(trans s1923 s1475) -(trans s1923 s1488) -(trans s1924 s1469) -(trans s1924 s1482) -(trans s1924 s1495) -(trans s1925 s1476) -(trans s1925 s1489) -(trans s1925 s1502) -(trans s1926 s1483) -(trans s1926 s1496) -(trans s1926 s1509) -(trans s1927 s1490) -(trans s1927 s1503) -(trans s1927 s1516) -(trans s1928 s1497) -(trans s1928 s1510) -(trans s1928 s1523) -(trans s1929 s1504) -(trans s1929 s1517) -(trans s1929 s1530) -(trans s1930 s1511) -(trans s1930 s1524) -(trans s1930 s1537) -(trans s1931 s1518) -(trans s1931 s1531) -(trans s1931 s1544) -(trans s1932 s1525) -(trans s1932 s1538) -(trans s1932 s1551) -(trans s1933 s1532) -(trans s1933 s1545) -(trans s1933 s1558) -(trans s1934 s1539) -(trans s1934 s1552) -(trans s1934 s1565) -(trans s1935 s1546) -(trans s1935 s1559) -(trans s1935 s1572) -(trans s1936 s1553) -(trans s1936 s1566) -(trans s1936 s1579) -(trans s1937 s1560) -(trans s1937 s1573) -(trans s1937 s1586) -(trans s1938 s1567) -(trans s1938 s1580) -(trans s1938 s1593) -(trans s1939 s1574) -(trans s1939 s1587) -(trans s1939 s1600) -(trans s1940 s1581) -(trans s1940 s1594) -(trans s1940 s1607) -(trans s1941 s1588) -(trans s1941 s1601) -(trans s1941 s1614) -(trans s1942 s1595) -(trans s1942 s1608) -(trans s1942 s1621) -(trans s1943 s1602) -(trans s1943 s1615) -(trans s1943 s1628) -(trans s1944 s1609) -(trans s1944 s1622) -(trans s1944 s1635) -(trans s1945 s1616) -(trans s1945 s1629) -(trans s1945 s1642) -(trans s1946 s1623) -(trans s1946 s1636) -(trans s1946 s1649) -(trans s1947 s1630) -(trans s1947 s1643) -(trans s1947 s1656) -(trans s1948 s1637) -(trans s1948 s1650) -(trans s1948 s1663) -(trans s1949 s1644) -(trans s1949 s1657) -(trans s1949 s1670) -(trans s1950 s1651) -(trans s1950 s1664) -(trans s1950 s1677) -(trans s1951 s1658) -(trans s1951 s1671) -(trans s1951 s1684) -(trans s1952 s1665) -(trans s1952 s1678) -(trans s1952 s1691) -(trans s1953 s1672) -(trans s1953 s1685) -(trans s1953 s1698) -(trans s1954 s1679) -(trans s1954 s1692) -(trans s1954 s1705) -(trans s1955 s1686) -(trans s1955 s1699) -(trans s1955 s1712) -(trans s1956 s1693) -(trans s1956 s1706) -(trans s1956 s1719) -(trans s1957 s1700) -(trans s1957 s1713) -(trans s1957 s1726) -(trans s1958 s1707) -(trans s1958 s1720) -(trans s1958 s1733) -(trans s1959 s1714) -(trans s1959 s1727) -(trans s1959 s1740) -(trans s1960 s1721) -(trans s1960 s1734) -(trans s1960 s1747) -(trans s1961 s1728) -(trans s1961 s1741) -(trans s1961 s1754) -(trans s1962 s1735) -(trans s1962 s1748) -(trans s1962 s1761) -(trans s1963 s1742) -(trans s1963 s1755) -(trans s1963 s1768) -(trans s1964 s1749) -(trans s1964 s1762) -(trans s1964 s1775) -(trans s1965 s1756) -(trans s1965 s1769) -(trans s1965 s1782) -(trans s1966 s1763) -(trans s1966 s1776) -(trans s1966 s1789) -(trans s1967 s1770) -(trans s1967 s1783) -(trans s1967 s1796) -(trans s1968 s1777) -(trans s1968 s1790) -(trans s1968 s1803) -(trans s1969 s1784) -(trans s1969 s1797) -(trans s1969 s1810) -(trans s1970 s1791) -(trans s1970 s1804) -(trans s1970 s1817) -(trans s1971 s1798) -(trans s1971 s1811) -(trans s1971 s1824) -(trans s1972 s1805) -(trans s1972 s1818) -(trans s1972 s1831) -(trans s1973 s1812) -(trans s1973 s1825) -(trans s1973 s1838) -(trans s1974 s1819) -(trans s1974 s1832) -(trans s1974 s1845) -(trans s1975 s1826) -(trans s1975 s1839) -(trans s1975 s1852) -(trans s1976 s1833) -(trans s1976 s1846) -(trans s1976 s1859) -(trans s1977 s1840) -(trans s1977 s1853) -(trans s1977 s1866) -(trans s1978 s1847) -(trans s1978 s1860) -(trans s1978 s1873) -(trans s1979 s1854) -(trans s1979 s1867) -(trans s1979 s1880) -(trans s1980 s1861) -(trans s1980 s1874) -(trans s1980 s1887) -(trans s1981 s1868) -(trans s1981 s1881) -(trans s1981 s1894) -(trans s1982 s1875) -(trans s1982 s1888) -(trans s1982 s1901) -(trans s1983 s1882) -(trans s1983 s1895) -(trans s1983 s1908) -(trans s1984 s1889) -(trans s1984 s1902) -(trans s1984 s1915) -(trans s1985 s1896) -(trans s1985 s1909) -(trans s1985 s1922) -(trans s1986 s1903) -(trans s1986 s1916) -(trans s1986 s1929) -(trans s1987 s1910) -(trans s1987 s1923) -(trans s1987 s1936) -(trans s1988 s1917) -(trans s1988 s1930) -(trans s1988 s1943) -(trans s1989 s1924) -(trans s1989 s1937) -(trans s1989 s1950) -(trans s1990 s1931) -(trans s1990 s1944) -(trans s1990 s1957) -(trans s1991 s1938) -(trans s1991 s1951) -(trans s1991 s1964) -(trans s1992 s1945) -(trans s1992 s1958) -(trans s1992 s1971) -(trans s1993 s1952) -(trans s1993 s1965) -(trans s1993 s1978) -(trans s1994 s1959) -(trans s1994 s1972) -(trans s1994 s1985) -(trans s1995 s1966) -(trans s1995 s1979) -(trans s1995 s1992) -(trans s1996 s1973) -(trans s1996 s1986) -(trans s1996 s1999) -(trans s1997 s1980) -(trans s1997 s1993) -(trans s1997 s2006) -(trans s1998 s1987) -(trans s1998 s2000) -(trans s1998 s2013) -(trans s1999 s1994) -(trans s1999 s2007) -(trans s1999 s2020) -(trans s2000 s2001) -(trans s2000 s2014) -(trans s2000 s2027) -(trans s2001 s2008) -(trans s2001 s2021) -(trans s2001 s2034) -(trans s2002 s2015) -(trans s2002 s2028) -(trans s2002 s2041) -(trans s2003 s2022) -(trans s2003 s2035) -(trans s2003 s2048) -(trans s2004 s2029) -(trans s2004 s2042) -(trans s2004 s2055) -(trans s2005 s2036) -(trans s2005 s2049) -(trans s2005 s2062) -(trans s2006 s2043) -(trans s2006 s2056) -(trans s2006 s2069) -(trans s2007 s2050) -(trans s2007 s2063) -(trans s2007 s2076) -(trans s2008 s2057) -(trans s2008 s2070) -(trans s2008 s2083) -(trans s2009 s2064) -(trans s2009 s2077) -(trans s2009 s2090) -(trans s2010 s2071) -(trans s2010 s2084) -(trans s2010 s2097) -(trans s2011 s2078) -(trans s2011 s2091) -(trans s2011 s2104) -(trans s2012 s2085) -(trans s2012 s2098) -(trans s2012 s2111) -(trans s2013 s2092) -(trans s2013 s2105) -(trans s2013 s2118) -(trans s2014 s2099) -(trans s2014 s2112) -(trans s2014 s2125) -(trans s2015 s2106) -(trans s2015 s2119) -(trans s2015 s2132) -(trans s2016 s2113) -(trans s2016 s2126) -(trans s2016 s2139) -(trans s2017 s2120) -(trans s2017 s2133) -(trans s2017 s2146) -(trans s2018 s2127) -(trans s2018 s2140) -(trans s2018 s2153) -(trans s2019 s2134) -(trans s2019 s2147) -(trans s2019 s2160) -(trans s2020 s2141) -(trans s2020 s2154) -(trans s2020 s2167) -(trans s2021 s2148) -(trans s2021 s2161) -(trans s2021 s2174) -(trans s2022 s2155) -(trans s2022 s2168) -(trans s2022 s2181) -(trans s2023 s2162) -(trans s2023 s2175) -(trans s2023 s2188) -(trans s2024 s2169) -(trans s2024 s2182) -(trans s2024 s2195) -(trans s2025 s2176) -(trans s2025 s2189) -(trans s2025 s2202) -(trans s2026 s2183) -(trans s2026 s2196) -(trans s2026 s2209) -(trans s2027 s2190) -(trans s2027 s2203) -(trans s2027 s2216) -(trans s2028 s2197) -(trans s2028 s2210) -(trans s2028 s2223) -(trans s2029 s2204) -(trans s2029 s2217) -(trans s2029 s2230) -(trans s2030 s2211) -(trans s2030 s2224) -(trans s2030 s2237) -(trans s2031 s2218) -(trans s2031 s2231) -(trans s2031 s2244) -(trans s2032 s2225) -(trans s2032 s2238) -(trans s2032 s2251) -(trans s2033 s2232) -(trans s2033 s2245) -(trans s2033 s2258) -(trans s2034 s2239) -(trans s2034 s2252) -(trans s2034 s2265) -(trans s2035 s2246) -(trans s2035 s2259) -(trans s2035 s2272) -(trans s2036 s2253) -(trans s2036 s2266) -(trans s2036 s2279) -(trans s2037 s2260) -(trans s2037 s2273) -(trans s2037 s2286) -(trans s2038 s2267) -(trans s2038 s2280) -(trans s2038 s2293) -(trans s2039 s2274) -(trans s2039 s2287) -(trans s2039 s2300) -(trans s2040 s2281) -(trans s2040 s2294) -(trans s2040 s2307) -(trans s2041 s2288) -(trans s2041 s2301) -(trans s2041 s2314) -(trans s2042 s2295) -(trans s2042 s2308) -(trans s2042 s2321) -(trans s2043 s2302) -(trans s2043 s2315) -(trans s2043 s2328) -(trans s2044 s2309) -(trans s2044 s2322) -(trans s2044 s2335) -(trans s2045 s2316) -(trans s2045 s2329) -(trans s2045 s2342) -(trans s2046 s2323) -(trans s2046 s2336) -(trans s2046 s2349) -(trans s2047 s2330) -(trans s2047 s2343) -(trans s2047 s2356) -(trans s2048 s2337) -(trans s2048 s2350) -(trans s2048 s2363) -(trans s2049 s2344) -(trans s2049 s2357) -(trans s2049 s2370) -(trans s2050 s2351) -(trans s2050 s2364) -(trans s2050 s2377) -(trans s2051 s2358) -(trans s2051 s2371) -(trans s2051 s2384) -(trans s2052 s2365) -(trans s2052 s2378) -(trans s2052 s2391) -(trans s2053 s2372) -(trans s2053 s2385) -(trans s2053 s2398) -(trans s2054 s2379) -(trans s2054 s2392) -(trans s2054 s2405) -(trans s2055 s2386) -(trans s2055 s2399) -(trans s2055 s2412) -(trans s2056 s2393) -(trans s2056 s2406) -(trans s2056 s2419) -(trans s2057 s2400) -(trans s2057 s2413) -(trans s2057 s2426) -(trans s2058 s2407) -(trans s2058 s2420) -(trans s2058 s2433) -(trans s2059 s2414) -(trans s2059 s2427) -(trans s2059 s2440) -(trans s2060 s2421) -(trans s2060 s2434) -(trans s2060 s2447) -(trans s2061 s2428) -(trans s2061 s2441) -(trans s2061 s2454) -(trans s2062 s2435) -(trans s2062 s2448) -(trans s2062 s2461) -(trans s2063 s2442) -(trans s2063 s2455) -(trans s2063 s2468) -(trans s2064 s2449) -(trans s2064 s2462) -(trans s2064 s2475) -(trans s2065 s2456) -(trans s2065 s2469) -(trans s2065 s2482) -(trans s2066 s2463) -(trans s2066 s2476) -(trans s2066 s2489) -(trans s2067 s2470) -(trans s2067 s2483) -(trans s2067 s2496) -(trans s2068 s2477) -(trans s2068 s2490) -(trans s2068 s2503) -(trans s2069 s2484) -(trans s2069 s2497) -(trans s2069 s2510) -(trans s2070 s2491) -(trans s2070 s2504) -(trans s2070 s2517) -(trans s2071 s2498) -(trans s2071 s2511) -(trans s2071 s2524) -(trans s2072 s2505) -(trans s2072 s2518) -(trans s2072 s2531) -(trans s2073 s2512) -(trans s2073 s2525) -(trans s2073 s2538) -(trans s2074 s2519) -(trans s2074 s2532) -(trans s2074 s2545) -(trans s2075 s2526) -(trans s2075 s2539) -(trans s2075 s2552) -(trans s2076 s2533) -(trans s2076 s2546) -(trans s2076 s2559) -(trans s2077 s2540) -(trans s2077 s2553) -(trans s2077 s2566) -(trans s2078 s2547) -(trans s2078 s2560) -(trans s2078 s2573) -(trans s2079 s2554) -(trans s2079 s2567) -(trans s2079 s2580) -(trans s2080 s2561) -(trans s2080 s2574) -(trans s2080 s2587) -(trans s2081 s2568) -(trans s2081 s2581) -(trans s2081 s2594) -(trans s2082 s2575) -(trans s2082 s2588) -(trans s2082 s2601) -(trans s2083 s2582) -(trans s2083 s2595) -(trans s2083 s2608) -(trans s2084 s2589) -(trans s2084 s2602) -(trans s2084 s2615) -(trans s2085 s2596) -(trans s2085 s2609) -(trans s2085 s2622) -(trans s2086 s2603) -(trans s2086 s2616) -(trans s2086 s2629) -(trans s2087 s2610) -(trans s2087 s2623) -(trans s2087 s2636) -(trans s2088 s2617) -(trans s2088 s2630) -(trans s2088 s2643) -(trans s2089 s2624) -(trans s2089 s2637) -(trans s2089 s2650) -(trans s2090 s2631) -(trans s2090 s2644) -(trans s2090 s2657) -(trans s2091 s2638) -(trans s2091 s2651) -(trans s2091 s2664) -(trans s2092 s2645) -(trans s2092 s2658) -(trans s2092 s2671) -(trans s2093 s2652) -(trans s2093 s2665) -(trans s2093 s2678) -(trans s2094 s2659) -(trans s2094 s2672) -(trans s2094 s2685) -(trans s2095 s2666) -(trans s2095 s2679) -(trans s2095 s2692) -(trans s2096 s2673) -(trans s2096 s2686) -(trans s2096 s2699) -(trans s2097 s2680) -(trans s2097 s2693) -(trans s2097 s2706) -(trans s2098 s2687) -(trans s2098 s2700) -(trans s2098 s2713) -(trans s2099 s2694) -(trans s2099 s2707) -(trans s2099 s2720) -(trans s2100 s2701) -(trans s2100 s2714) -(trans s2100 s2727) -(trans s2101 s2708) -(trans s2101 s2721) -(trans s2101 s2734) -(trans s2102 s2715) -(trans s2102 s2728) -(trans s2102 s2741) -(trans s2103 s2722) -(trans s2103 s2735) -(trans s2103 s2748) -(trans s2104 s2729) -(trans s2104 s2742) -(trans s2104 s2755) -(trans s2105 s2736) -(trans s2105 s2749) -(trans s2105 s2762) -(trans s2106 s2743) -(trans s2106 s2756) -(trans s2106 s2769) -(trans s2107 s2750) -(trans s2107 s2763) -(trans s2107 s2776) -(trans s2108 s2757) -(trans s2108 s2770) -(trans s2108 s2783) -(trans s2109 s2764) -(trans s2109 s2777) -(trans s2109 s2790) -(trans s2110 s2771) -(trans s2110 s2784) -(trans s2110 s2797) -(trans s2111 s2778) -(trans s2111 s2791) -(trans s2111 s2804) -(trans s2112 s2785) -(trans s2112 s2798) -(trans s2112 s2811) -(trans s2113 s2792) -(trans s2113 s2805) -(trans s2113 s2818) -(trans s2114 s2799) -(trans s2114 s2812) -(trans s2114 s2825) -(trans s2115 s2806) -(trans s2115 s2819) -(trans s2115 s2832) -(trans s2116 s2813) -(trans s2116 s2826) -(trans s2116 s2839) -(trans s2117 s2820) -(trans s2117 s2833) -(trans s2117 s2846) -(trans s2118 s2827) -(trans s2118 s2840) -(trans s2118 s2853) -(trans s2119 s2834) -(trans s2119 s2847) -(trans s2119 s2860) -(trans s2120 s2841) -(trans s2120 s2854) -(trans s2120 s2867) -(trans s2121 s2848) -(trans s2121 s2861) -(trans s2121 s2874) -(trans s2122 s2855) -(trans s2122 s2868) -(trans s2122 s2881) -(trans s2123 s2862) -(trans s2123 s2875) -(trans s2123 s2888) -(trans s2124 s2869) -(trans s2124 s2882) -(trans s2124 s2895) -(trans s2125 s2876) -(trans s2125 s2889) -(trans s2125 s2902) -(trans s2126 s2883) -(trans s2126 s2896) -(trans s2126 s2909) -(trans s2127 s2890) -(trans s2127 s2903) -(trans s2127 s2916) -(trans s2128 s2897) -(trans s2128 s2910) -(trans s2128 s2923) -(trans s2129 s2904) -(trans s2129 s2917) -(trans s2129 s2930) -(trans s2130 s2911) -(trans s2130 s2924) -(trans s2130 s2937) -(trans s2131 s2918) -(trans s2131 s2931) -(trans s2131 s2944) -(trans s2132 s2925) -(trans s2132 s2938) -(trans s2132 s2951) -(trans s2133 s2932) -(trans s2133 s2945) -(trans s2133 s2958) -(trans s2134 s2939) -(trans s2134 s2952) -(trans s2134 s2965) -(trans s2135 s2946) -(trans s2135 s2959) -(trans s2135 s2972) -(trans s2136 s2953) -(trans s2136 s2966) -(trans s2136 s2979) -(trans s2137 s2960) -(trans s2137 s2973) -(trans s2137 s2986) -(trans s2138 s2967) -(trans s2138 s2980) -(trans s2138 s2993) -(trans s2139 s2974) -(trans s2139 s2987) -(trans s2139 s3000) -(trans s2140 s2981) -(trans s2140 s2994) -(trans s2140 s3007) -(trans s2141 s2988) -(trans s2141 s3001) -(trans s2141 s3014) -(trans s2142 s2995) -(trans s2142 s3008) -(trans s2142 s3021) -(trans s2143 s3002) -(trans s2143 s3015) -(trans s2143 s3028) -(trans s2144 s3009) -(trans s2144 s3022) -(trans s2144 s3035) -(trans s2145 s3016) -(trans s2145 s3029) -(trans s2145 s3042) -(trans s2146 s3023) -(trans s2146 s3036) -(trans s2146 s3049) -(trans s2147 s3030) -(trans s2147 s3043) -(trans s2147 s3056) -(trans s2148 s3037) -(trans s2148 s3050) -(trans s2148 s3063) -(trans s2149 s3044) -(trans s2149 s3057) -(trans s2149 s3070) -(trans s2150 s3051) -(trans s2150 s3064) -(trans s2150 s3077) -(trans s2151 s3058) -(trans s2151 s3071) -(trans s2151 s3084) -(trans s2152 s3065) -(trans s2152 s3078) -(trans s2152 s3091) -(trans s2153 s3072) -(trans s2153 s3085) -(trans s2153 s3098) -(trans s2154 s3079) -(trans s2154 s3092) -(trans s2154 s3105) -(trans s2155 s3086) -(trans s2155 s3099) -(trans s2155 s3112) -(trans s2156 s3093) -(trans s2156 s3106) -(trans s2156 s3119) -(trans s2157 s3100) -(trans s2157 s3113) -(trans s2157 s3126) -(trans s2158 s3107) -(trans s2158 s3120) -(trans s2158 s3133) -(trans s2159 s3114) -(trans s2159 s3127) -(trans s2159 s3140) -(trans s2160 s3121) -(trans s2160 s3134) -(trans s2160 s3147) -(trans s2161 s3128) -(trans s2161 s3141) -(trans s2161 s3154) -(trans s2162 s3135) -(trans s2162 s3148) -(trans s2162 s3161) -(trans s2163 s3142) -(trans s2163 s3155) -(trans s2163 s3168) -(trans s2164 s3149) -(trans s2164 s3162) -(trans s2164 s3175) -(trans s2165 s3156) -(trans s2165 s3169) -(trans s2165 s3182) -(trans s2166 s3163) -(trans s2166 s3176) -(trans s2166 s3189) -(trans s2167 s3170) -(trans s2167 s3183) -(trans s2167 s3196) -(trans s2168 s3177) -(trans s2168 s3190) -(trans s2168 s3203) -(trans s2169 s3184) -(trans s2169 s3197) -(trans s2169 s3210) -(trans s2170 s3191) -(trans s2170 s3204) -(trans s2170 s3217) -(trans s2171 s3198) -(trans s2171 s3211) -(trans s2171 s3224) -(trans s2172 s3205) -(trans s2172 s3218) -(trans s2172 s3231) -(trans s2173 s3212) -(trans s2173 s3225) -(trans s2173 s3238) -(trans s2174 s3219) -(trans s2174 s3232) -(trans s2174 s3245) -(trans s2175 s3226) -(trans s2175 s3239) -(trans s2175 s3252) -(trans s2176 s3233) -(trans s2176 s3246) -(trans s2176 s3259) -(trans s2177 s3240) -(trans s2177 s3253) -(trans s2177 s3266) -(trans s2178 s3247) -(trans s2178 s3260) -(trans s2178 s3273) -(trans s2179 s3254) -(trans s2179 s3267) -(trans s2179 s3280) -(trans s2180 s3261) -(trans s2180 s3274) -(trans s2180 s3287) -(trans s2181 s3268) -(trans s2181 s3281) -(trans s2181 s3294) -(trans s2182 s3275) -(trans s2182 s3288) -(trans s2182 s3301) -(trans s2183 s3282) -(trans s2183 s3295) -(trans s2183 s3308) -(trans s2184 s3289) -(trans s2184 s3302) -(trans s2184 s3315) -(trans s2185 s3296) -(trans s2185 s3309) -(trans s2185 s3322) -(trans s2186 s3303) -(trans s2186 s3316) -(trans s2186 s3329) -(trans s2187 s3310) -(trans s2187 s3323) -(trans s2187 s3336) -(trans s2188 s3317) -(trans s2188 s3330) -(trans s2188 s3343) -(trans s2189 s3324) -(trans s2189 s3337) -(trans s2189 s3350) -(trans s2190 s3331) -(trans s2190 s3344) -(trans s2190 s3357) -(trans s2191 s3338) -(trans s2191 s3351) -(trans s2191 s3364) -(trans s2192 s3345) -(trans s2192 s3358) -(trans s2192 s3371) -(trans s2193 s3352) -(trans s2193 s3365) -(trans s2193 s3378) -(trans s2194 s3359) -(trans s2194 s3372) -(trans s2194 s3385) -(trans s2195 s3366) -(trans s2195 s3379) -(trans s2195 s3392) -(trans s2196 s3373) -(trans s2196 s3386) -(trans s2196 s3399) -(trans s2197 s3380) -(trans s2197 s3393) -(trans s2197 s3406) -(trans s2198 s3387) -(trans s2198 s3400) -(trans s2198 s3413) -(trans s2199 s3394) -(trans s2199 s3407) -(trans s2199 s3420) -(trans s2200 s3401) -(trans s2200 s3414) -(trans s2200 s3427) -(trans s2201 s3408) -(trans s2201 s3421) -(trans s2201 s3434) -(trans s2202 s3415) -(trans s2202 s3428) -(trans s2202 s3441) -(trans s2203 s3422) -(trans s2203 s3435) -(trans s2203 s3448) -(trans s2204 s3429) -(trans s2204 s3442) -(trans s2204 s3455) -(trans s2205 s3436) -(trans s2205 s3449) -(trans s2205 s3462) -(trans s2206 s3443) -(trans s2206 s3456) -(trans s2206 s3469) -(trans s2207 s3450) -(trans s2207 s3463) -(trans s2207 s3476) -(trans s2208 s3457) -(trans s2208 s3470) -(trans s2208 s3483) -(trans s2209 s3464) -(trans s2209 s3477) -(trans s2209 s3490) -(trans s2210 s3471) -(trans s2210 s3484) -(trans s2210 s3497) -(trans s2211 s3478) -(trans s2211 s3491) -(trans s2211 s3504) -(trans s2212 s3485) -(trans s2212 s3498) -(trans s2212 s3511) -(trans s2213 s3492) -(trans s2213 s3505) -(trans s2213 s3518) -(trans s2214 s3499) -(trans s2214 s3512) -(trans s2214 s3525) -(trans s2215 s3506) -(trans s2215 s3519) -(trans s2215 s3532) -(trans s2216 s3513) -(trans s2216 s3526) -(trans s2216 s3539) -(trans s2217 s3520) -(trans s2217 s3533) -(trans s2217 s3546) -(trans s2218 s3527) -(trans s2218 s3540) -(trans s2218 s3553) -(trans s2219 s3534) -(trans s2219 s3547) -(trans s2219 s3560) -(trans s2220 s3541) -(trans s2220 s3554) -(trans s2220 s3567) -(trans s2221 s3548) -(trans s2221 s3561) -(trans s2221 s3574) -(trans s2222 s3555) -(trans s2222 s3568) -(trans s2222 s3581) -(trans s2223 s3562) -(trans s2223 s3575) -(trans s2223 s3588) -(trans s2224 s3569) -(trans s2224 s3582) -(trans s2224 s3595) -(trans s2225 s3576) -(trans s2225 s3589) -(trans s2225 s3602) -(trans s2226 s3583) -(trans s2226 s3596) -(trans s2226 s3609) -(trans s2227 s3590) -(trans s2227 s3603) -(trans s2227 s3616) -(trans s2228 s3597) -(trans s2228 s3610) -(trans s2228 s3623) -(trans s2229 s3604) -(trans s2229 s3617) -(trans s2229 s3630) -(trans s2230 s3611) -(trans s2230 s3624) -(trans s2230 s3637) -(trans s2231 s3618) -(trans s2231 s3631) -(trans s2231 s3644) -(trans s2232 s3625) -(trans s2232 s3638) -(trans s2232 s3651) -(trans s2233 s3632) -(trans s2233 s3645) -(trans s2233 s3658) -(trans s2234 s3639) -(trans s2234 s3652) -(trans s2234 s3665) -(trans s2235 s3646) -(trans s2235 s3659) -(trans s2235 s3672) -(trans s2236 s3653) -(trans s2236 s3666) -(trans s2236 s3679) -(trans s2237 s3660) -(trans s2237 s3673) -(trans s2237 s3686) -(trans s2238 s3667) -(trans s2238 s3680) -(trans s2238 s3693) -(trans s2239 s3674) -(trans s2239 s3687) -(trans s2239 s3700) -(trans s2240 s3681) -(trans s2240 s3694) -(trans s2240 s3707) -(trans s2241 s3688) -(trans s2241 s3701) -(trans s2241 s3714) -(trans s2242 s3695) -(trans s2242 s3708) -(trans s2242 s3721) -(trans s2243 s3702) -(trans s2243 s3715) -(trans s2243 s3728) -(trans s2244 s3709) -(trans s2244 s3722) -(trans s2244 s3735) -(trans s2245 s3716) -(trans s2245 s3729) -(trans s2245 s3742) -(trans s2246 s3723) -(trans s2246 s3736) -(trans s2246 s3749) -(trans s2247 s3730) -(trans s2247 s3743) -(trans s2247 s3756) -(trans s2248 s3737) -(trans s2248 s3750) -(trans s2248 s3763) -(trans s2249 s3744) -(trans s2249 s3757) -(trans s2249 s3770) -(trans s2250 s3751) -(trans s2250 s3764) -(trans s2250 s3777) -(trans s2251 s3758) -(trans s2251 s3771) -(trans s2251 s3784) -(trans s2252 s3765) -(trans s2252 s3778) -(trans s2252 s3791) -(trans s2253 s3772) -(trans s2253 s3785) -(trans s2253 s3798) -(trans s2254 s3779) -(trans s2254 s3792) -(trans s2254 s3805) -(trans s2255 s3786) -(trans s2255 s3799) -(trans s2255 s3812) -(trans s2256 s3793) -(trans s2256 s3806) -(trans s2256 s3819) -(trans s2257 s3800) -(trans s2257 s3813) -(trans s2257 s3826) -(trans s2258 s3807) -(trans s2258 s3820) -(trans s2258 s3833) -(trans s2259 s3814) -(trans s2259 s3827) -(trans s2259 s3840) -(trans s2260 s3821) -(trans s2260 s3834) -(trans s2260 s3847) -(trans s2261 s3828) -(trans s2261 s3841) -(trans s2261 s3854) -(trans s2262 s3835) -(trans s2262 s3848) -(trans s2262 s3861) -(trans s2263 s3842) -(trans s2263 s3855) -(trans s2263 s3868) -(trans s2264 s3849) -(trans s2264 s3862) -(trans s2264 s3875) -(trans s2265 s3856) -(trans s2265 s3869) -(trans s2265 s3882) -(trans s2266 s3863) -(trans s2266 s3876) -(trans s2266 s3889) -(trans s2267 s3870) -(trans s2267 s3883) -(trans s2267 s3896) -(trans s2268 s3877) -(trans s2268 s3890) -(trans s2268 s3903) -(trans s2269 s3884) -(trans s2269 s3897) -(trans s2269 s3910) -(trans s2270 s3891) -(trans s2270 s3904) -(trans s2270 s3917) -(trans s2271 s3898) -(trans s2271 s3911) -(trans s2271 s3924) -(trans s2272 s3905) -(trans s2272 s3918) -(trans s2272 s3931) -(trans s2273 s3912) -(trans s2273 s3925) -(trans s2273 s3938) -(trans s2274 s3919) -(trans s2274 s3932) -(trans s2274 s3945) -(trans s2275 s3926) -(trans s2275 s3939) -(trans s2275 s3952) -(trans s2276 s3933) -(trans s2276 s3946) -(trans s2276 s3959) -(trans s2277 s3940) -(trans s2277 s3953) -(trans s2277 s3966) -(trans s2278 s3947) -(trans s2278 s3960) -(trans s2278 s3973) -(trans s2279 s3954) -(trans s2279 s3967) -(trans s2279 s3980) -(trans s2280 s3961) -(trans s2280 s3974) -(trans s2280 s3987) -(trans s2281 s3968) -(trans s2281 s3981) -(trans s2281 s3994) -(trans s2282 s3975) -(trans s2282 s3988) -(trans s2282 s4001) -(trans s2283 s3982) -(trans s2283 s3995) -(trans s2283 s4008) -(trans s2284 s3989) -(trans s2284 s4002) -(trans s2284 s4015) -(trans s2285 s3996) -(trans s2285 s4009) -(trans s2285 s4022) -(trans s2286 s4003) -(trans s2286 s4016) -(trans s2286 s4029) -(trans s2287 s4010) -(trans s2287 s4023) -(trans s2287 s4036) -(trans s2288 s4017) -(trans s2288 s4030) -(trans s2288 s4043) -(trans s2289 s4024) -(trans s2289 s4037) -(trans s2289 s4050) -(trans s2290 s4031) -(trans s2290 s4044) -(trans s2290 s4057) -(trans s2291 s4038) -(trans s2291 s4051) -(trans s2291 s4064) -(trans s2292 s4045) -(trans s2292 s4058) -(trans s2292 s4071) -(trans s2293 s4052) -(trans s2293 s4065) -(trans s2293 s4078) -(trans s2294 s4059) -(trans s2294 s4072) -(trans s2294 s4085) -(trans s2295 s4066) -(trans s2295 s4079) -(trans s2295 s4092) -(trans s2296 s4073) -(trans s2296 s4086) -(trans s2296 s4099) -(trans s2297 s4080) -(trans s2297 s4093) -(trans s2297 s4106) -(trans s2298 s4087) -(trans s2298 s4100) -(trans s2298 s4113) -(trans s2299 s4094) -(trans s2299 s4107) -(trans s2299 s4120) -(trans s2300 s4101) -(trans s2300 s4114) -(trans s2300 s4127) -(trans s2301 s4108) -(trans s2301 s4121) -(trans s2301 s4134) -(trans s2302 s4115) -(trans s2302 s4128) -(trans s2302 s4141) -(trans s2303 s4122) -(trans s2303 s4135) -(trans s2303 s4148) -(trans s2304 s4129) -(trans s2304 s4142) -(trans s2304 s4155) -(trans s2305 s4136) -(trans s2305 s4149) -(trans s2305 s4162) -(trans s2306 s4143) -(trans s2306 s4156) -(trans s2306 s4169) -(trans s2307 s4150) -(trans s2307 s4163) -(trans s2307 s4176) -(trans s2308 s4157) -(trans s2308 s4170) -(trans s2308 s4183) -(trans s2309 s4164) -(trans s2309 s4177) -(trans s2309 s4190) -(trans s2310 s4171) -(trans s2310 s4184) -(trans s2310 s4197) -(trans s2311 s4178) -(trans s2311 s4191) -(trans s2311 s4204) -(trans s2312 s4185) -(trans s2312 s4198) -(trans s2312 s4211) -(trans s2313 s4192) -(trans s2313 s4205) -(trans s2313 s4218) -(trans s2314 s4199) -(trans s2314 s4212) -(trans s2314 s4225) -(trans s2315 s4206) -(trans s2315 s4219) -(trans s2315 s4232) -(trans s2316 s4213) -(trans s2316 s4226) -(trans s2316 s4239) -(trans s2317 s4220) -(trans s2317 s4233) -(trans s2317 s4246) -(trans s2318 s4227) -(trans s2318 s4240) -(trans s2318 s4253) -(trans s2319 s4234) -(trans s2319 s4247) -(trans s2319 s4260) -(trans s2320 s4241) -(trans s2320 s4254) -(trans s2320 s4267) -(trans s2321 s4248) -(trans s2321 s4261) -(trans s2321 s4274) -(trans s2322 s4255) -(trans s2322 s4268) -(trans s2322 s4281) -(trans s2323 s4262) -(trans s2323 s4275) -(trans s2323 s4288) -(trans s2324 s4269) -(trans s2324 s4282) -(trans s2324 s4295) -(trans s2325 s4276) -(trans s2325 s4289) -(trans s2325 s4302) -(trans s2326 s4283) -(trans s2326 s4296) -(trans s2326 s4309) -(trans s2327 s4290) -(trans s2327 s4303) -(trans s2327 s4316) -(trans s2328 s4297) -(trans s2328 s4310) -(trans s2328 s4323) -(trans s2329 s4304) -(trans s2329 s4317) -(trans s2329 s4330) -(trans s2330 s4311) -(trans s2330 s4324) -(trans s2330 s4337) -(trans s2331 s4318) -(trans s2331 s4331) -(trans s2331 s4344) -(trans s2332 s4325) -(trans s2332 s4338) -(trans s2332 s4351) -(trans s2333 s4332) -(trans s2333 s4345) -(trans s2333 s4358) -(trans s2334 s4339) -(trans s2334 s4352) -(trans s2334 s4365) -(trans s2335 s4346) -(trans s2335 s4359) -(trans s2335 s4372) -(trans s2336 s4353) -(trans s2336 s4366) -(trans s2336 s4379) -(trans s2337 s4360) -(trans s2337 s4373) -(trans s2337 s4386) -(trans s2338 s4367) -(trans s2338 s4380) -(trans s2338 s4393) -(trans s2339 s4374) -(trans s2339 s4387) -(trans s2339 s4400) -(trans s2340 s4381) -(trans s2340 s4394) -(trans s2340 s4407) -(trans s2341 s4388) -(trans s2341 s4401) -(trans s2341 s4414) -(trans s2342 s4395) -(trans s2342 s4408) -(trans s2342 s4421) -(trans s2343 s4402) -(trans s2343 s4415) -(trans s2343 s4428) -(trans s2344 s4409) -(trans s2344 s4422) -(trans s2344 s4435) -(trans s2345 s4416) -(trans s2345 s4429) -(trans s2345 s4442) -(trans s2346 s4423) -(trans s2346 s4436) -(trans s2346 s4449) -(trans s2347 s4430) -(trans s2347 s4443) -(trans s2347 s4456) -(trans s2348 s4437) -(trans s2348 s4450) -(trans s2348 s4463) -(trans s2349 s4444) -(trans s2349 s4457) -(trans s2349 s4470) -(trans s2350 s4451) -(trans s2350 s4464) -(trans s2350 s4477) -(trans s2351 s4458) -(trans s2351 s4471) -(trans s2351 s4484) -(trans s2352 s4465) -(trans s2352 s4478) -(trans s2352 s4491) -(trans s2353 s4472) -(trans s2353 s4485) -(trans s2353 s4498) -(trans s2354 s4479) -(trans s2354 s4492) -(trans s2354 s4505) -(trans s2355 s4486) -(trans s2355 s4499) -(trans s2355 s4512) -(trans s2356 s4493) -(trans s2356 s4506) -(trans s2356 s4519) -(trans s2357 s4500) -(trans s2357 s4513) -(trans s2357 s4526) -(trans s2358 s4507) -(trans s2358 s4520) -(trans s2358 s4533) -(trans s2359 s4514) -(trans s2359 s4527) -(trans s2359 s4540) -(trans s2360 s4521) -(trans s2360 s4534) -(trans s2360 s4547) -(trans s2361 s4528) -(trans s2361 s4541) -(trans s2361 s4554) -(trans s2362 s4535) -(trans s2362 s4548) -(trans s2362 s4561) -(trans s2363 s4542) -(trans s2363 s4555) -(trans s2363 s4568) -(trans s2364 s4549) -(trans s2364 s4562) -(trans s2364 s4575) -(trans s2365 s4556) -(trans s2365 s4569) -(trans s2365 s4582) -(trans s2366 s4563) -(trans s2366 s4576) -(trans s2366 s4589) -(trans s2367 s4570) -(trans s2367 s4583) -(trans s2367 s4596) -(trans s2368 s4577) -(trans s2368 s4590) -(trans s2368 s4603) -(trans s2369 s4584) -(trans s2369 s4597) -(trans s2369 s4610) -(trans s2370 s4591) -(trans s2370 s4604) -(trans s2370 s4617) -(trans s2371 s4598) -(trans s2371 s4611) -(trans s2371 s4624) -(trans s2372 s4605) -(trans s2372 s4618) -(trans s2372 s4631) -(trans s2373 s4612) -(trans s2373 s4625) -(trans s2373 s4638) -(trans s2374 s4619) -(trans s2374 s4632) -(trans s2374 s4645) -(trans s2375 s4626) -(trans s2375 s4639) -(trans s2375 s4652) -(trans s2376 s4633) -(trans s2376 s4646) -(trans s2376 s4659) -(trans s2377 s4640) -(trans s2377 s4653) -(trans s2377 s4666) -(trans s2378 s4647) -(trans s2378 s4660) -(trans s2378 s4673) -(trans s2379 s4654) -(trans s2379 s4667) -(trans s2379 s4680) -(trans s2380 s4661) -(trans s2380 s4674) -(trans s2380 s4687) -(trans s2381 s4668) -(trans s2381 s4681) -(trans s2381 s4694) -(trans s2382 s4675) -(trans s2382 s4688) -(trans s2382 s4701) -(trans s2383 s4682) -(trans s2383 s4695) -(trans s2383 s4708) -(trans s2384 s4689) -(trans s2384 s4702) -(trans s2384 s4715) -(trans s2385 s4696) -(trans s2385 s4709) -(trans s2385 s4722) -(trans s2386 s4703) -(trans s2386 s4716) -(trans s2386 s4729) -(trans s2387 s4710) -(trans s2387 s4723) -(trans s2387 s4736) -(trans s2388 s4717) -(trans s2388 s4730) -(trans s2388 s4743) -(trans s2389 s4724) -(trans s2389 s4737) -(trans s2389 s4750) -(trans s2390 s4731) -(trans s2390 s4744) -(trans s2390 s4757) -(trans s2391 s4738) -(trans s2391 s4751) -(trans s2391 s4764) -(trans s2392 s4745) -(trans s2392 s4758) -(trans s2392 s4771) -(trans s2393 s4752) -(trans s2393 s4765) -(trans s2393 s4778) -(trans s2394 s4759) -(trans s2394 s4772) -(trans s2394 s4785) -(trans s2395 s4766) -(trans s2395 s4779) -(trans s2395 s4792) -(trans s2396 s4773) -(trans s2396 s4786) -(trans s2396 s4799) -(trans s2397 s4780) -(trans s2397 s4793) -(trans s2397 s4806) -(trans s2398 s4787) -(trans s2398 s4800) -(trans s2398 s4813) -(trans s2399 s4794) -(trans s2399 s4807) -(trans s2399 s4820) -(trans s2400 s4801) -(trans s2400 s4814) -(trans s2400 s4827) -(trans s2401 s4808) -(trans s2401 s4821) -(trans s2401 s4834) -(trans s2402 s4815) -(trans s2402 s4828) -(trans s2402 s4841) -(trans s2403 s4822) -(trans s2403 s4835) -(trans s2403 s4848) -(trans s2404 s4829) -(trans s2404 s4842) -(trans s2404 s4855) -(trans s2405 s4836) -(trans s2405 s4849) -(trans s2405 s4862) -(trans s2406 s4843) -(trans s2406 s4856) -(trans s2406 s4869) -(trans s2407 s4850) -(trans s2407 s4863) -(trans s2407 s4876) -(trans s2408 s4857) -(trans s2408 s4870) -(trans s2408 s4883) -(trans s2409 s4864) -(trans s2409 s4877) -(trans s2409 s4890) -(trans s2410 s4871) -(trans s2410 s4884) -(trans s2410 s4897) -(trans s2411 s4878) -(trans s2411 s4891) -(trans s2411 s4904) -(trans s2412 s4885) -(trans s2412 s4898) -(trans s2412 s4911) -(trans s2413 s4892) -(trans s2413 s4905) -(trans s2413 s4918) -(trans s2414 s4899) -(trans s2414 s4912) -(trans s2414 s4925) -(trans s2415 s4906) -(trans s2415 s4919) -(trans s2415 s4932) -(trans s2416 s4913) -(trans s2416 s4926) -(trans s2416 s4939) -(trans s2417 s4920) -(trans s2417 s4933) -(trans s2417 s4946) -(trans s2418 s4927) -(trans s2418 s4940) -(trans s2418 s4953) -(trans s2419 s4934) -(trans s2419 s4947) -(trans s2419 s4960) -(trans s2420 s4941) -(trans s2420 s4954) -(trans s2420 s4967) -(trans s2421 s4948) -(trans s2421 s4961) -(trans s2421 s4974) -(trans s2422 s4955) -(trans s2422 s4968) -(trans s2422 s4981) -(trans s2423 s4962) -(trans s2423 s4975) -(trans s2423 s4988) -(trans s2424 s4969) -(trans s2424 s4982) -(trans s2424 s4995) -(trans s2425 s4976) -(trans s2425 s4989) -(trans s2425 s5002) -(trans s2426 s4983) -(trans s2426 s4996) -(trans s2426 s5009) -(trans s2427 s4990) -(trans s2427 s5003) -(trans s2427 s5016) -(trans s2428 s4997) -(trans s2428 s5010) -(trans s2428 s5023) -(trans s2429 s5004) -(trans s2429 s5017) -(trans s2429 s5030) -(trans s2430 s5011) -(trans s2430 s5024) -(trans s2430 s5037) -(trans s2431 s5018) -(trans s2431 s5031) -(trans s2431 s5044) -(trans s2432 s5025) -(trans s2432 s5038) -(trans s2432 s5051) -(trans s2433 s5032) -(trans s2433 s5045) -(trans s2433 s5058) -(trans s2434 s5039) -(trans s2434 s5052) -(trans s2434 s5065) -(trans s2435 s5046) -(trans s2435 s5059) -(trans s2435 s5072) -(trans s2436 s5053) -(trans s2436 s5066) -(trans s2436 s5079) -(trans s2437 s5060) -(trans s2437 s5073) -(trans s2437 s5086) -(trans s2438 s5067) -(trans s2438 s5080) -(trans s2438 s5093) -(trans s2439 s5074) -(trans s2439 s5087) -(trans s2439 s5100) -(trans s2440 s5081) -(trans s2440 s5094) -(trans s2440 s5107) -(trans s2441 s5088) -(trans s2441 s5101) -(trans s2441 s5114) -(trans s2442 s5095) -(trans s2442 s5108) -(trans s2442 s5121) -(trans s2443 s5102) -(trans s2443 s5115) -(trans s2443 s5128) -(trans s2444 s5109) -(trans s2444 s5122) -(trans s2444 s5135) -(trans s2445 s5116) -(trans s2445 s5129) -(trans s2445 s5142) -(trans s2446 s5123) -(trans s2446 s5136) -(trans s2446 s5149) -(trans s2447 s5130) -(trans s2447 s5143) -(trans s2447 s5156) -(trans s2448 s5137) -(trans s2448 s5150) -(trans s2448 s5163) -(trans s2449 s5144) -(trans s2449 s5157) -(trans s2449 s5170) -(trans s2450 s5151) -(trans s2450 s5164) -(trans s2450 s5177) -(trans s2451 s5158) -(trans s2451 s5171) -(trans s2451 s5184) -(trans s2452 s5165) -(trans s2452 s5178) -(trans s2452 s5191) -(trans s2453 s5172) -(trans s2453 s5185) -(trans s2453 s5198) -(trans s2454 s5179) -(trans s2454 s5192) -(trans s2454 s5205) -(trans s2455 s5186) -(trans s2455 s5199) -(trans s2455 s5212) -(trans s2456 s5193) -(trans s2456 s5206) -(trans s2456 s5219) -(trans s2457 s5200) -(trans s2457 s5213) -(trans s2457 s5226) -(trans s2458 s5207) -(trans s2458 s5220) -(trans s2458 s5233) -(trans s2459 s5214) -(trans s2459 s5227) -(trans s2459 s5240) -(trans s2460 s5221) -(trans s2460 s5234) -(trans s2460 s5247) -(trans s2461 s5228) -(trans s2461 s5241) -(trans s2461 s5254) -(trans s2462 s5235) -(trans s2462 s5248) -(trans s2462 s5261) -(trans s2463 s5242) -(trans s2463 s5255) -(trans s2463 s5268) -(trans s2464 s5249) -(trans s2464 s5262) -(trans s2464 s5275) -(trans s2465 s5256) -(trans s2465 s5269) -(trans s2465 s5282) -(trans s2466 s5263) -(trans s2466 s5276) -(trans s2466 s5289) -(trans s2467 s5270) -(trans s2467 s5283) -(trans s2467 s5296) -(trans s2468 s5277) -(trans s2468 s5290) -(trans s2468 s5303) -(trans s2469 s5284) -(trans s2469 s5297) -(trans s2469 s5310) -(trans s2470 s5291) -(trans s2470 s5304) -(trans s2470 s5317) -(trans s2471 s5298) -(trans s2471 s5311) -(trans s2471 s5324) -(trans s2472 s5305) -(trans s2472 s5318) -(trans s2472 s5331) -(trans s2473 s5312) -(trans s2473 s5325) -(trans s2473 s5338) -(trans s2474 s5319) -(trans s2474 s5332) -(trans s2474 s5345) -(trans s2475 s5326) -(trans s2475 s5339) -(trans s2475 s5352) -(trans s2476 s5333) -(trans s2476 s5346) -(trans s2476 s5359) -(trans s2477 s5340) -(trans s2477 s5353) -(trans s2477 s5366) -(trans s2478 s5347) -(trans s2478 s5360) -(trans s2478 s5373) -(trans s2479 s5354) -(trans s2479 s5367) -(trans s2479 s5380) -(trans s2480 s5361) -(trans s2480 s5374) -(trans s2480 s5387) -(trans s2481 s5368) -(trans s2481 s5381) -(trans s2481 s5394) -(trans s2482 s5375) -(trans s2482 s5388) -(trans s2482 s5401) -(trans s2483 s5382) -(trans s2483 s5395) -(trans s2483 s5408) -(trans s2484 s5389) -(trans s2484 s5402) -(trans s2484 s5415) -(trans s2485 s5396) -(trans s2485 s5409) -(trans s2485 s5422) -(trans s2486 s5403) -(trans s2486 s5416) -(trans s2486 s5429) -(trans s2487 s5410) -(trans s2487 s5423) -(trans s2487 s5436) -(trans s2488 s5417) -(trans s2488 s5430) -(trans s2488 s5443) -(trans s2489 s5424) -(trans s2489 s5437) -(trans s2489 s5450) -(trans s2490 s5431) -(trans s2490 s5444) -(trans s2490 s5457) -(trans s2491 s5438) -(trans s2491 s5451) -(trans s2491 s5464) -(trans s2492 s5445) -(trans s2492 s5458) -(trans s2492 s5471) -(trans s2493 s5452) -(trans s2493 s5465) -(trans s2493 s5478) -(trans s2494 s5459) -(trans s2494 s5472) -(trans s2494 s5485) -(trans s2495 s5466) -(trans s2495 s5479) -(trans s2495 s5492) -(trans s2496 s5473) -(trans s2496 s5486) -(trans s2496 s5499) -(trans s2497 s5480) -(trans s2497 s5493) -(trans s2497 s5506) -(trans s2498 s5487) -(trans s2498 s5500) -(trans s2498 s5513) -(trans s2499 s5494) -(trans s2499 s5507) -(trans s2499 s5520) -(trans s2500 s5501) -(trans s2500 s5514) -(trans s2500 s5527) -(trans s2501 s5508) -(trans s2501 s5521) -(trans s2501 s5534) -(trans s2502 s5515) -(trans s2502 s5528) -(trans s2502 s5541) -(trans s2503 s5522) -(trans s2503 s5535) -(trans s2503 s5548) -(trans s2504 s5529) -(trans s2504 s5542) -(trans s2504 s5555) -(trans s2505 s5536) -(trans s2505 s5549) -(trans s2505 s5562) -(trans s2506 s5543) -(trans s2506 s5556) -(trans s2506 s5569) -(trans s2507 s5550) -(trans s2507 s5563) -(trans s2507 s5576) -(trans s2508 s5557) -(trans s2508 s5570) -(trans s2508 s5583) -(trans s2509 s5564) -(trans s2509 s5577) -(trans s2509 s5590) -(trans s2510 s5571) -(trans s2510 s5584) -(trans s2510 s5597) -(trans s2511 s5578) -(trans s2511 s5591) -(trans s2511 s5604) -(trans s2512 s5585) -(trans s2512 s5598) -(trans s2512 s5611) -(trans s2513 s5592) -(trans s2513 s5605) -(trans s2513 s5618) -(trans s2514 s5599) -(trans s2514 s5612) -(trans s2514 s5625) -(trans s2515 s5606) -(trans s2515 s5619) -(trans s2515 s5632) -(trans s2516 s5613) -(trans s2516 s5626) -(trans s2516 s5639) -(trans s2517 s5620) -(trans s2517 s5633) -(trans s2517 s5646) -(trans s2518 s5627) -(trans s2518 s5640) -(trans s2518 s5653) -(trans s2519 s5634) -(trans s2519 s5647) -(trans s2519 s5660) -(trans s2520 s5641) -(trans s2520 s5654) -(trans s2520 s5667) -(trans s2521 s5648) -(trans s2521 s5661) -(trans s2521 s5674) -(trans s2522 s5655) -(trans s2522 s5668) -(trans s2522 s5681) -(trans s2523 s5662) -(trans s2523 s5675) -(trans s2523 s5688) -(trans s2524 s5669) -(trans s2524 s5682) -(trans s2524 s5695) -(trans s2525 s5676) -(trans s2525 s5689) -(trans s2525 s5702) -(trans s2526 s5683) -(trans s2526 s5696) -(trans s2526 s5709) -(trans s2527 s5690) -(trans s2527 s5703) -(trans s2527 s5716) -(trans s2528 s5697) -(trans s2528 s5710) -(trans s2528 s5723) -(trans s2529 s5704) -(trans s2529 s5717) -(trans s2529 s5730) -(trans s2530 s5711) -(trans s2530 s5724) -(trans s2530 s5737) -(trans s2531 s5718) -(trans s2531 s5731) -(trans s2531 s5744) -(trans s2532 s5725) -(trans s2532 s5738) -(trans s2532 s5751) -(trans s2533 s5732) -(trans s2533 s5745) -(trans s2533 s5758) -(trans s2534 s5739) -(trans s2534 s5752) -(trans s2534 s5765) -(trans s2535 s5746) -(trans s2535 s5759) -(trans s2535 s5772) -(trans s2536 s5753) -(trans s2536 s5766) -(trans s2536 s5779) -(trans s2537 s5760) -(trans s2537 s5773) -(trans s2537 s5786) -(trans s2538 s5767) -(trans s2538 s5780) -(trans s2538 s5793) -(trans s2539 s5774) -(trans s2539 s5787) -(trans s2539 s5800) -(trans s2540 s5781) -(trans s2540 s5794) -(trans s2540 s5807) -(trans s2541 s5788) -(trans s2541 s5801) -(trans s2541 s5814) -(trans s2542 s5795) -(trans s2542 s5808) -(trans s2542 s5821) -(trans s2543 s5802) -(trans s2543 s5815) -(trans s2543 s5828) -(trans s2544 s5809) -(trans s2544 s5822) -(trans s2544 s5835) -(trans s2545 s5816) -(trans s2545 s5829) -(trans s2545 s5842) -(trans s2546 s5823) -(trans s2546 s5836) -(trans s2546 s5849) -(trans s2547 s5830) -(trans s2547 s5843) -(trans s2547 s5856) -(trans s2548 s5837) -(trans s2548 s5850) -(trans s2548 s5863) -(trans s2549 s5844) -(trans s2549 s5857) -(trans s2549 s5870) -(trans s2550 s5851) -(trans s2550 s5864) -(trans s2550 s5877) -(trans s2551 s5858) -(trans s2551 s5871) -(trans s2551 s5884) -(trans s2552 s5865) -(trans s2552 s5878) -(trans s2552 s5891) -(trans s2553 s5872) -(trans s2553 s5885) -(trans s2553 s5898) -(trans s2554 s5879) -(trans s2554 s5892) -(trans s2554 s5905) -(trans s2555 s5886) -(trans s2555 s5899) -(trans s2555 s5912) -(trans s2556 s5893) -(trans s2556 s5906) -(trans s2556 s5919) -(trans s2557 s5900) -(trans s2557 s5913) -(trans s2557 s5926) -(trans s2558 s5907) -(trans s2558 s5920) -(trans s2558 s5933) -(trans s2559 s5914) -(trans s2559 s5927) -(trans s2559 s5940) -(trans s2560 s5921) -(trans s2560 s5934) -(trans s2560 s5947) -(trans s2561 s5928) -(trans s2561 s5941) -(trans s2561 s5954) -(trans s2562 s5935) -(trans s2562 s5948) -(trans s2562 s5961) -(trans s2563 s5942) -(trans s2563 s5955) -(trans s2563 s5968) -(trans s2564 s5949) -(trans s2564 s5962) -(trans s2564 s5975) -(trans s2565 s5956) -(trans s2565 s5969) -(trans s2565 s5982) -(trans s2566 s5963) -(trans s2566 s5976) -(trans s2566 s5989) -(trans s2567 s5970) -(trans s2567 s5983) -(trans s2567 s5996) -(trans s2568 s5977) -(trans s2568 s5990) -(trans s2568 s3) -(trans s2569 s5984) -(trans s2569 s5997) -(trans s2569 s10) -(trans s2570 s5991) -(trans s2570 s4) -(trans s2570 s17) -(trans s2571 s5998) -(trans s2571 s11) -(trans s2571 s24) -(trans s2572 s5) -(trans s2572 s18) -(trans s2572 s31) -(trans s2573 s12) -(trans s2573 s25) -(trans s2573 s38) -(trans s2574 s19) -(trans s2574 s32) -(trans s2574 s45) -(trans s2575 s26) -(trans s2575 s39) -(trans s2575 s52) -(trans s2576 s33) -(trans s2576 s46) -(trans s2576 s59) -(trans s2577 s40) -(trans s2577 s53) -(trans s2577 s66) -(trans s2578 s47) -(trans s2578 s60) -(trans s2578 s73) -(trans s2579 s54) -(trans s2579 s67) -(trans s2579 s80) -(trans s2580 s61) -(trans s2580 s74) -(trans s2580 s87) -(trans s2581 s68) -(trans s2581 s81) -(trans s2581 s94) -(trans s2582 s75) -(trans s2582 s88) -(trans s2582 s101) -(trans s2583 s82) -(trans s2583 s95) -(trans s2583 s108) -(trans s2584 s89) -(trans s2584 s102) -(trans s2584 s115) -(trans s2585 s96) -(trans s2585 s109) -(trans s2585 s122) -(trans s2586 s103) -(trans s2586 s116) -(trans s2586 s129) -(trans s2587 s110) -(trans s2587 s123) -(trans s2587 s136) -(trans s2588 s117) -(trans s2588 s130) -(trans s2588 s143) -(trans s2589 s124) -(trans s2589 s137) -(trans s2589 s150) -(trans s2590 s131) -(trans s2590 s144) -(trans s2590 s157) -(trans s2591 s138) -(trans s2591 s151) -(trans s2591 s164) -(trans s2592 s145) -(trans s2592 s158) -(trans s2592 s171) -(trans s2593 s152) -(trans s2593 s165) -(trans s2593 s178) -(trans s2594 s159) -(trans s2594 s172) -(trans s2594 s185) -(trans s2595 s166) -(trans s2595 s179) -(trans s2595 s192) -(trans s2596 s173) -(trans s2596 s186) -(trans s2596 s199) -(trans s2597 s180) -(trans s2597 s193) -(trans s2597 s206) -(trans s2598 s187) -(trans s2598 s200) -(trans s2598 s213) -(trans s2599 s194) -(trans s2599 s207) -(trans s2599 s220) -(trans s2600 s201) -(trans s2600 s214) -(trans s2600 s227) -(trans s2601 s208) -(trans s2601 s221) -(trans s2601 s234) -(trans s2602 s215) -(trans s2602 s228) -(trans s2602 s241) -(trans s2603 s222) -(trans s2603 s235) -(trans s2603 s248) -(trans s2604 s229) -(trans s2604 s242) -(trans s2604 s255) -(trans s2605 s236) -(trans s2605 s249) -(trans s2605 s262) -(trans s2606 s243) -(trans s2606 s256) -(trans s2606 s269) -(trans s2607 s250) -(trans s2607 s263) -(trans s2607 s276) -(trans s2608 s257) -(trans s2608 s270) -(trans s2608 s283) -(trans s2609 s264) -(trans s2609 s277) -(trans s2609 s290) -(trans s2610 s271) -(trans s2610 s284) -(trans s2610 s297) -(trans s2611 s278) -(trans s2611 s291) -(trans s2611 s304) -(trans s2612 s285) -(trans s2612 s298) -(trans s2612 s311) -(trans s2613 s292) -(trans s2613 s305) -(trans s2613 s318) -(trans s2614 s299) -(trans s2614 s312) -(trans s2614 s325) -(trans s2615 s306) -(trans s2615 s319) -(trans s2615 s332) -(trans s2616 s313) -(trans s2616 s326) -(trans s2616 s339) -(trans s2617 s320) -(trans s2617 s333) -(trans s2617 s346) -(trans s2618 s327) -(trans s2618 s340) -(trans s2618 s353) -(trans s2619 s334) -(trans s2619 s347) -(trans s2619 s360) -(trans s2620 s341) -(trans s2620 s354) -(trans s2620 s367) -(trans s2621 s348) -(trans s2621 s361) -(trans s2621 s374) -(trans s2622 s355) -(trans s2622 s368) -(trans s2622 s381) -(trans s2623 s362) -(trans s2623 s375) -(trans s2623 s388) -(trans s2624 s369) -(trans s2624 s382) -(trans s2624 s395) -(trans s2625 s376) -(trans s2625 s389) -(trans s2625 s402) -(trans s2626 s383) -(trans s2626 s396) -(trans s2626 s409) -(trans s2627 s390) -(trans s2627 s403) -(trans s2627 s416) -(trans s2628 s397) -(trans s2628 s410) -(trans s2628 s423) -(trans s2629 s404) -(trans s2629 s417) -(trans s2629 s430) -(trans s2630 s411) -(trans s2630 s424) -(trans s2630 s437) -(trans s2631 s418) -(trans s2631 s431) -(trans s2631 s444) -(trans s2632 s425) -(trans s2632 s438) -(trans s2632 s451) -(trans s2633 s432) -(trans s2633 s445) -(trans s2633 s458) -(trans s2634 s439) -(trans s2634 s452) -(trans s2634 s465) -(trans s2635 s446) -(trans s2635 s459) -(trans s2635 s472) -(trans s2636 s453) -(trans s2636 s466) -(trans s2636 s479) -(trans s2637 s460) -(trans s2637 s473) -(trans s2637 s486) -(trans s2638 s467) -(trans s2638 s480) -(trans s2638 s493) -(trans s2639 s474) -(trans s2639 s487) -(trans s2639 s500) -(trans s2640 s481) -(trans s2640 s494) -(trans s2640 s507) -(trans s2641 s488) -(trans s2641 s501) -(trans s2641 s514) -(trans s2642 s495) -(trans s2642 s508) -(trans s2642 s521) -(trans s2643 s502) -(trans s2643 s515) -(trans s2643 s528) -(trans s2644 s509) -(trans s2644 s522) -(trans s2644 s535) -(trans s2645 s516) -(trans s2645 s529) -(trans s2645 s542) -(trans s2646 s523) -(trans s2646 s536) -(trans s2646 s549) -(trans s2647 s530) -(trans s2647 s543) -(trans s2647 s556) -(trans s2648 s537) -(trans s2648 s550) -(trans s2648 s563) -(trans s2649 s544) -(trans s2649 s557) -(trans s2649 s570) -(trans s2650 s551) -(trans s2650 s564) -(trans s2650 s577) -(trans s2651 s558) -(trans s2651 s571) -(trans s2651 s584) -(trans s2652 s565) -(trans s2652 s578) -(trans s2652 s591) -(trans s2653 s572) -(trans s2653 s585) -(trans s2653 s598) -(trans s2654 s579) -(trans s2654 s592) -(trans s2654 s605) -(trans s2655 s586) -(trans s2655 s599) -(trans s2655 s612) -(trans s2656 s593) -(trans s2656 s606) -(trans s2656 s619) -(trans s2657 s600) -(trans s2657 s613) -(trans s2657 s626) -(trans s2658 s607) -(trans s2658 s620) -(trans s2658 s633) -(trans s2659 s614) -(trans s2659 s627) -(trans s2659 s640) -(trans s2660 s621) -(trans s2660 s634) -(trans s2660 s647) -(trans s2661 s628) -(trans s2661 s641) -(trans s2661 s654) -(trans s2662 s635) -(trans s2662 s648) -(trans s2662 s661) -(trans s2663 s642) -(trans s2663 s655) -(trans s2663 s668) -(trans s2664 s649) -(trans s2664 s662) -(trans s2664 s675) -(trans s2665 s656) -(trans s2665 s669) -(trans s2665 s682) -(trans s2666 s663) -(trans s2666 s676) -(trans s2666 s689) -(trans s2667 s670) -(trans s2667 s683) -(trans s2667 s696) -(trans s2668 s677) -(trans s2668 s690) -(trans s2668 s703) -(trans s2669 s684) -(trans s2669 s697) -(trans s2669 s710) -(trans s2670 s691) -(trans s2670 s704) -(trans s2670 s717) -(trans s2671 s698) -(trans s2671 s711) -(trans s2671 s724) -(trans s2672 s705) -(trans s2672 s718) -(trans s2672 s731) -(trans s2673 s712) -(trans s2673 s725) -(trans s2673 s738) -(trans s2674 s719) -(trans s2674 s732) -(trans s2674 s745) -(trans s2675 s726) -(trans s2675 s739) -(trans s2675 s752) -(trans s2676 s733) -(trans s2676 s746) -(trans s2676 s759) -(trans s2677 s740) -(trans s2677 s753) -(trans s2677 s766) -(trans s2678 s747) -(trans s2678 s760) -(trans s2678 s773) -(trans s2679 s754) -(trans s2679 s767) -(trans s2679 s780) -(trans s2680 s761) -(trans s2680 s774) -(trans s2680 s787) -(trans s2681 s768) -(trans s2681 s781) -(trans s2681 s794) -(trans s2682 s775) -(trans s2682 s788) -(trans s2682 s801) -(trans s2683 s782) -(trans s2683 s795) -(trans s2683 s808) -(trans s2684 s789) -(trans s2684 s802) -(trans s2684 s815) -(trans s2685 s796) -(trans s2685 s809) -(trans s2685 s822) -(trans s2686 s803) -(trans s2686 s816) -(trans s2686 s829) -(trans s2687 s810) -(trans s2687 s823) -(trans s2687 s836) -(trans s2688 s817) -(trans s2688 s830) -(trans s2688 s843) -(trans s2689 s824) -(trans s2689 s837) -(trans s2689 s850) -(trans s2690 s831) -(trans s2690 s844) -(trans s2690 s857) -(trans s2691 s838) -(trans s2691 s851) -(trans s2691 s864) -(trans s2692 s845) -(trans s2692 s858) -(trans s2692 s871) -(trans s2693 s852) -(trans s2693 s865) -(trans s2693 s878) -(trans s2694 s859) -(trans s2694 s872) -(trans s2694 s885) -(trans s2695 s866) -(trans s2695 s879) -(trans s2695 s892) -(trans s2696 s873) -(trans s2696 s886) -(trans s2696 s899) -(trans s2697 s880) -(trans s2697 s893) -(trans s2697 s906) -(trans s2698 s887) -(trans s2698 s900) -(trans s2698 s913) -(trans s2699 s894) -(trans s2699 s907) -(trans s2699 s920) -(trans s2700 s901) -(trans s2700 s914) -(trans s2700 s927) -(trans s2701 s908) -(trans s2701 s921) -(trans s2701 s934) -(trans s2702 s915) -(trans s2702 s928) -(trans s2702 s941) -(trans s2703 s922) -(trans s2703 s935) -(trans s2703 s948) -(trans s2704 s929) -(trans s2704 s942) -(trans s2704 s955) -(trans s2705 s936) -(trans s2705 s949) -(trans s2705 s962) -(trans s2706 s943) -(trans s2706 s956) -(trans s2706 s969) -(trans s2707 s950) -(trans s2707 s963) -(trans s2707 s976) -(trans s2708 s957) -(trans s2708 s970) -(trans s2708 s983) -(trans s2709 s964) -(trans s2709 s977) -(trans s2709 s990) -(trans s2710 s971) -(trans s2710 s984) -(trans s2710 s997) -(trans s2711 s978) -(trans s2711 s991) -(trans s2711 s1004) -(trans s2712 s985) -(trans s2712 s998) -(trans s2712 s1011) -(trans s2713 s992) -(trans s2713 s1005) -(trans s2713 s1018) -(trans s2714 s999) -(trans s2714 s1012) -(trans s2714 s1025) -(trans s2715 s1006) -(trans s2715 s1019) -(trans s2715 s1032) -(trans s2716 s1013) -(trans s2716 s1026) -(trans s2716 s1039) -(trans s2717 s1020) -(trans s2717 s1033) -(trans s2717 s1046) -(trans s2718 s1027) -(trans s2718 s1040) -(trans s2718 s1053) -(trans s2719 s1034) -(trans s2719 s1047) -(trans s2719 s1060) -(trans s2720 s1041) -(trans s2720 s1054) -(trans s2720 s1067) -(trans s2721 s1048) -(trans s2721 s1061) -(trans s2721 s1074) -(trans s2722 s1055) -(trans s2722 s1068) -(trans s2722 s1081) -(trans s2723 s1062) -(trans s2723 s1075) -(trans s2723 s1088) -(trans s2724 s1069) -(trans s2724 s1082) -(trans s2724 s1095) -(trans s2725 s1076) -(trans s2725 s1089) -(trans s2725 s1102) -(trans s2726 s1083) -(trans s2726 s1096) -(trans s2726 s1109) -(trans s2727 s1090) -(trans s2727 s1103) -(trans s2727 s1116) -(trans s2728 s1097) -(trans s2728 s1110) -(trans s2728 s1123) -(trans s2729 s1104) -(trans s2729 s1117) -(trans s2729 s1130) -(trans s2730 s1111) -(trans s2730 s1124) -(trans s2730 s1137) -(trans s2731 s1118) -(trans s2731 s1131) -(trans s2731 s1144) -(trans s2732 s1125) -(trans s2732 s1138) -(trans s2732 s1151) -(trans s2733 s1132) -(trans s2733 s1145) -(trans s2733 s1158) -(trans s2734 s1139) -(trans s2734 s1152) -(trans s2734 s1165) -(trans s2735 s1146) -(trans s2735 s1159) -(trans s2735 s1172) -(trans s2736 s1153) -(trans s2736 s1166) -(trans s2736 s1179) -(trans s2737 s1160) -(trans s2737 s1173) -(trans s2737 s1186) -(trans s2738 s1167) -(trans s2738 s1180) -(trans s2738 s1193) -(trans s2739 s1174) -(trans s2739 s1187) -(trans s2739 s1200) -(trans s2740 s1181) -(trans s2740 s1194) -(trans s2740 s1207) -(trans s2741 s1188) -(trans s2741 s1201) -(trans s2741 s1214) -(trans s2742 s1195) -(trans s2742 s1208) -(trans s2742 s1221) -(trans s2743 s1202) -(trans s2743 s1215) -(trans s2743 s1228) -(trans s2744 s1209) -(trans s2744 s1222) -(trans s2744 s1235) -(trans s2745 s1216) -(trans s2745 s1229) -(trans s2745 s1242) -(trans s2746 s1223) -(trans s2746 s1236) -(trans s2746 s1249) -(trans s2747 s1230) -(trans s2747 s1243) -(trans s2747 s1256) -(trans s2748 s1237) -(trans s2748 s1250) -(trans s2748 s1263) -(trans s2749 s1244) -(trans s2749 s1257) -(trans s2749 s1270) -(trans s2750 s1251) -(trans s2750 s1264) -(trans s2750 s1277) -(trans s2751 s1258) -(trans s2751 s1271) -(trans s2751 s1284) -(trans s2752 s1265) -(trans s2752 s1278) -(trans s2752 s1291) -(trans s2753 s1272) -(trans s2753 s1285) -(trans s2753 s1298) -(trans s2754 s1279) -(trans s2754 s1292) -(trans s2754 s1305) -(trans s2755 s1286) -(trans s2755 s1299) -(trans s2755 s1312) -(trans s2756 s1293) -(trans s2756 s1306) -(trans s2756 s1319) -(trans s2757 s1300) -(trans s2757 s1313) -(trans s2757 s1326) -(trans s2758 s1307) -(trans s2758 s1320) -(trans s2758 s1333) -(trans s2759 s1314) -(trans s2759 s1327) -(trans s2759 s1340) -(trans s2760 s1321) -(trans s2760 s1334) -(trans s2760 s1347) -(trans s2761 s1328) -(trans s2761 s1341) -(trans s2761 s1354) -(trans s2762 s1335) -(trans s2762 s1348) -(trans s2762 s1361) -(trans s2763 s1342) -(trans s2763 s1355) -(trans s2763 s1368) -(trans s2764 s1349) -(trans s2764 s1362) -(trans s2764 s1375) -(trans s2765 s1356) -(trans s2765 s1369) -(trans s2765 s1382) -(trans s2766 s1363) -(trans s2766 s1376) -(trans s2766 s1389) -(trans s2767 s1370) -(trans s2767 s1383) -(trans s2767 s1396) -(trans s2768 s1377) -(trans s2768 s1390) -(trans s2768 s1403) -(trans s2769 s1384) -(trans s2769 s1397) -(trans s2769 s1410) -(trans s2770 s1391) -(trans s2770 s1404) -(trans s2770 s1417) -(trans s2771 s1398) -(trans s2771 s1411) -(trans s2771 s1424) -(trans s2772 s1405) -(trans s2772 s1418) -(trans s2772 s1431) -(trans s2773 s1412) -(trans s2773 s1425) -(trans s2773 s1438) -(trans s2774 s1419) -(trans s2774 s1432) -(trans s2774 s1445) -(trans s2775 s1426) -(trans s2775 s1439) -(trans s2775 s1452) -(trans s2776 s1433) -(trans s2776 s1446) -(trans s2776 s1459) -(trans s2777 s1440) -(trans s2777 s1453) -(trans s2777 s1466) -(trans s2778 s1447) -(trans s2778 s1460) -(trans s2778 s1473) -(trans s2779 s1454) -(trans s2779 s1467) -(trans s2779 s1480) -(trans s2780 s1461) -(trans s2780 s1474) -(trans s2780 s1487) -(trans s2781 s1468) -(trans s2781 s1481) -(trans s2781 s1494) -(trans s2782 s1475) -(trans s2782 s1488) -(trans s2782 s1501) -(trans s2783 s1482) -(trans s2783 s1495) -(trans s2783 s1508) -(trans s2784 s1489) -(trans s2784 s1502) -(trans s2784 s1515) -(trans s2785 s1496) -(trans s2785 s1509) -(trans s2785 s1522) -(trans s2786 s1503) -(trans s2786 s1516) -(trans s2786 s1529) -(trans s2787 s1510) -(trans s2787 s1523) -(trans s2787 s1536) -(trans s2788 s1517) -(trans s2788 s1530) -(trans s2788 s1543) -(trans s2789 s1524) -(trans s2789 s1537) -(trans s2789 s1550) -(trans s2790 s1531) -(trans s2790 s1544) -(trans s2790 s1557) -(trans s2791 s1538) -(trans s2791 s1551) -(trans s2791 s1564) -(trans s2792 s1545) -(trans s2792 s1558) -(trans s2792 s1571) -(trans s2793 s1552) -(trans s2793 s1565) -(trans s2793 s1578) -(trans s2794 s1559) -(trans s2794 s1572) -(trans s2794 s1585) -(trans s2795 s1566) -(trans s2795 s1579) -(trans s2795 s1592) -(trans s2796 s1573) -(trans s2796 s1586) -(trans s2796 s1599) -(trans s2797 s1580) -(trans s2797 s1593) -(trans s2797 s1606) -(trans s2798 s1587) -(trans s2798 s1600) -(trans s2798 s1613) -(trans s2799 s1594) -(trans s2799 s1607) -(trans s2799 s1620) -(trans s2800 s1601) -(trans s2800 s1614) -(trans s2800 s1627) -(trans s2801 s1608) -(trans s2801 s1621) -(trans s2801 s1634) -(trans s2802 s1615) -(trans s2802 s1628) -(trans s2802 s1641) -(trans s2803 s1622) -(trans s2803 s1635) -(trans s2803 s1648) -(trans s2804 s1629) -(trans s2804 s1642) -(trans s2804 s1655) -(trans s2805 s1636) -(trans s2805 s1649) -(trans s2805 s1662) -(trans s2806 s1643) -(trans s2806 s1656) -(trans s2806 s1669) -(trans s2807 s1650) -(trans s2807 s1663) -(trans s2807 s1676) -(trans s2808 s1657) -(trans s2808 s1670) -(trans s2808 s1683) -(trans s2809 s1664) -(trans s2809 s1677) -(trans s2809 s1690) -(trans s2810 s1671) -(trans s2810 s1684) -(trans s2810 s1697) -(trans s2811 s1678) -(trans s2811 s1691) -(trans s2811 s1704) -(trans s2812 s1685) -(trans s2812 s1698) -(trans s2812 s1711) -(trans s2813 s1692) -(trans s2813 s1705) -(trans s2813 s1718) -(trans s2814 s1699) -(trans s2814 s1712) -(trans s2814 s1725) -(trans s2815 s1706) -(trans s2815 s1719) -(trans s2815 s1732) -(trans s2816 s1713) -(trans s2816 s1726) -(trans s2816 s1739) -(trans s2817 s1720) -(trans s2817 s1733) -(trans s2817 s1746) -(trans s2818 s1727) -(trans s2818 s1740) -(trans s2818 s1753) -(trans s2819 s1734) -(trans s2819 s1747) -(trans s2819 s1760) -(trans s2820 s1741) -(trans s2820 s1754) -(trans s2820 s1767) -(trans s2821 s1748) -(trans s2821 s1761) -(trans s2821 s1774) -(trans s2822 s1755) -(trans s2822 s1768) -(trans s2822 s1781) -(trans s2823 s1762) -(trans s2823 s1775) -(trans s2823 s1788) -(trans s2824 s1769) -(trans s2824 s1782) -(trans s2824 s1795) -(trans s2825 s1776) -(trans s2825 s1789) -(trans s2825 s1802) -(trans s2826 s1783) -(trans s2826 s1796) -(trans s2826 s1809) -(trans s2827 s1790) -(trans s2827 s1803) -(trans s2827 s1816) -(trans s2828 s1797) -(trans s2828 s1810) -(trans s2828 s1823) -(trans s2829 s1804) -(trans s2829 s1817) -(trans s2829 s1830) -(trans s2830 s1811) -(trans s2830 s1824) -(trans s2830 s1837) -(trans s2831 s1818) -(trans s2831 s1831) -(trans s2831 s1844) -(trans s2832 s1825) -(trans s2832 s1838) -(trans s2832 s1851) -(trans s2833 s1832) -(trans s2833 s1845) -(trans s2833 s1858) -(trans s2834 s1839) -(trans s2834 s1852) -(trans s2834 s1865) -(trans s2835 s1846) -(trans s2835 s1859) -(trans s2835 s1872) -(trans s2836 s1853) -(trans s2836 s1866) -(trans s2836 s1879) -(trans s2837 s1860) -(trans s2837 s1873) -(trans s2837 s1886) -(trans s2838 s1867) -(trans s2838 s1880) -(trans s2838 s1893) -(trans s2839 s1874) -(trans s2839 s1887) -(trans s2839 s1900) -(trans s2840 s1881) -(trans s2840 s1894) -(trans s2840 s1907) -(trans s2841 s1888) -(trans s2841 s1901) -(trans s2841 s1914) -(trans s2842 s1895) -(trans s2842 s1908) -(trans s2842 s1921) -(trans s2843 s1902) -(trans s2843 s1915) -(trans s2843 s1928) -(trans s2844 s1909) -(trans s2844 s1922) -(trans s2844 s1935) -(trans s2845 s1916) -(trans s2845 s1929) -(trans s2845 s1942) -(trans s2846 s1923) -(trans s2846 s1936) -(trans s2846 s1949) -(trans s2847 s1930) -(trans s2847 s1943) -(trans s2847 s1956) -(trans s2848 s1937) -(trans s2848 s1950) -(trans s2848 s1963) -(trans s2849 s1944) -(trans s2849 s1957) -(trans s2849 s1970) -(trans s2850 s1951) -(trans s2850 s1964) -(trans s2850 s1977) -(trans s2851 s1958) -(trans s2851 s1971) -(trans s2851 s1984) -(trans s2852 s1965) -(trans s2852 s1978) -(trans s2852 s1991) -(trans s2853 s1972) -(trans s2853 s1985) -(trans s2853 s1998) -(trans s2854 s1979) -(trans s2854 s1992) -(trans s2854 s2005) -(trans s2855 s1986) -(trans s2855 s1999) -(trans s2855 s2012) -(trans s2856 s1993) -(trans s2856 s2006) -(trans s2856 s2019) -(trans s2857 s2000) -(trans s2857 s2013) -(trans s2857 s2026) -(trans s2858 s2007) -(trans s2858 s2020) -(trans s2858 s2033) -(trans s2859 s2014) -(trans s2859 s2027) -(trans s2859 s2040) -(trans s2860 s2021) -(trans s2860 s2034) -(trans s2860 s2047) -(trans s2861 s2028) -(trans s2861 s2041) -(trans s2861 s2054) -(trans s2862 s2035) -(trans s2862 s2048) -(trans s2862 s2061) -(trans s2863 s2042) -(trans s2863 s2055) -(trans s2863 s2068) -(trans s2864 s2049) -(trans s2864 s2062) -(trans s2864 s2075) -(trans s2865 s2056) -(trans s2865 s2069) -(trans s2865 s2082) -(trans s2866 s2063) -(trans s2866 s2076) -(trans s2866 s2089) -(trans s2867 s2070) -(trans s2867 s2083) -(trans s2867 s2096) -(trans s2868 s2077) -(trans s2868 s2090) -(trans s2868 s2103) -(trans s2869 s2084) -(trans s2869 s2097) -(trans s2869 s2110) -(trans s2870 s2091) -(trans s2870 s2104) -(trans s2870 s2117) -(trans s2871 s2098) -(trans s2871 s2111) -(trans s2871 s2124) -(trans s2872 s2105) -(trans s2872 s2118) -(trans s2872 s2131) -(trans s2873 s2112) -(trans s2873 s2125) -(trans s2873 s2138) -(trans s2874 s2119) -(trans s2874 s2132) -(trans s2874 s2145) -(trans s2875 s2126) -(trans s2875 s2139) -(trans s2875 s2152) -(trans s2876 s2133) -(trans s2876 s2146) -(trans s2876 s2159) -(trans s2877 s2140) -(trans s2877 s2153) -(trans s2877 s2166) -(trans s2878 s2147) -(trans s2878 s2160) -(trans s2878 s2173) -(trans s2879 s2154) -(trans s2879 s2167) -(trans s2879 s2180) -(trans s2880 s2161) -(trans s2880 s2174) -(trans s2880 s2187) -(trans s2881 s2168) -(trans s2881 s2181) -(trans s2881 s2194) -(trans s2882 s2175) -(trans s2882 s2188) -(trans s2882 s2201) -(trans s2883 s2182) -(trans s2883 s2195) -(trans s2883 s2208) -(trans s2884 s2189) -(trans s2884 s2202) -(trans s2884 s2215) -(trans s2885 s2196) -(trans s2885 s2209) -(trans s2885 s2222) -(trans s2886 s2203) -(trans s2886 s2216) -(trans s2886 s2229) -(trans s2887 s2210) -(trans s2887 s2223) -(trans s2887 s2236) -(trans s2888 s2217) -(trans s2888 s2230) -(trans s2888 s2243) -(trans s2889 s2224) -(trans s2889 s2237) -(trans s2889 s2250) -(trans s2890 s2231) -(trans s2890 s2244) -(trans s2890 s2257) -(trans s2891 s2238) -(trans s2891 s2251) -(trans s2891 s2264) -(trans s2892 s2245) -(trans s2892 s2258) -(trans s2892 s2271) -(trans s2893 s2252) -(trans s2893 s2265) -(trans s2893 s2278) -(trans s2894 s2259) -(trans s2894 s2272) -(trans s2894 s2285) -(trans s2895 s2266) -(trans s2895 s2279) -(trans s2895 s2292) -(trans s2896 s2273) -(trans s2896 s2286) -(trans s2896 s2299) -(trans s2897 s2280) -(trans s2897 s2293) -(trans s2897 s2306) -(trans s2898 s2287) -(trans s2898 s2300) -(trans s2898 s2313) -(trans s2899 s2294) -(trans s2899 s2307) -(trans s2899 s2320) -(trans s2900 s2301) -(trans s2900 s2314) -(trans s2900 s2327) -(trans s2901 s2308) -(trans s2901 s2321) -(trans s2901 s2334) -(trans s2902 s2315) -(trans s2902 s2328) -(trans s2902 s2341) -(trans s2903 s2322) -(trans s2903 s2335) -(trans s2903 s2348) -(trans s2904 s2329) -(trans s2904 s2342) -(trans s2904 s2355) -(trans s2905 s2336) -(trans s2905 s2349) -(trans s2905 s2362) -(trans s2906 s2343) -(trans s2906 s2356) -(trans s2906 s2369) -(trans s2907 s2350) -(trans s2907 s2363) -(trans s2907 s2376) -(trans s2908 s2357) -(trans s2908 s2370) -(trans s2908 s2383) -(trans s2909 s2364) -(trans s2909 s2377) -(trans s2909 s2390) -(trans s2910 s2371) -(trans s2910 s2384) -(trans s2910 s2397) -(trans s2911 s2378) -(trans s2911 s2391) -(trans s2911 s2404) -(trans s2912 s2385) -(trans s2912 s2398) -(trans s2912 s2411) -(trans s2913 s2392) -(trans s2913 s2405) -(trans s2913 s2418) -(trans s2914 s2399) -(trans s2914 s2412) -(trans s2914 s2425) -(trans s2915 s2406) -(trans s2915 s2419) -(trans s2915 s2432) -(trans s2916 s2413) -(trans s2916 s2426) -(trans s2916 s2439) -(trans s2917 s2420) -(trans s2917 s2433) -(trans s2917 s2446) -(trans s2918 s2427) -(trans s2918 s2440) -(trans s2918 s2453) -(trans s2919 s2434) -(trans s2919 s2447) -(trans s2919 s2460) -(trans s2920 s2441) -(trans s2920 s2454) -(trans s2920 s2467) -(trans s2921 s2448) -(trans s2921 s2461) -(trans s2921 s2474) -(trans s2922 s2455) -(trans s2922 s2468) -(trans s2922 s2481) -(trans s2923 s2462) -(trans s2923 s2475) -(trans s2923 s2488) -(trans s2924 s2469) -(trans s2924 s2482) -(trans s2924 s2495) -(trans s2925 s2476) -(trans s2925 s2489) -(trans s2925 s2502) -(trans s2926 s2483) -(trans s2926 s2496) -(trans s2926 s2509) -(trans s2927 s2490) -(trans s2927 s2503) -(trans s2927 s2516) -(trans s2928 s2497) -(trans s2928 s2510) -(trans s2928 s2523) -(trans s2929 s2504) -(trans s2929 s2517) -(trans s2929 s2530) -(trans s2930 s2511) -(trans s2930 s2524) -(trans s2930 s2537) -(trans s2931 s2518) -(trans s2931 s2531) -(trans s2931 s2544) -(trans s2932 s2525) -(trans s2932 s2538) -(trans s2932 s2551) -(trans s2933 s2532) -(trans s2933 s2545) -(trans s2933 s2558) -(trans s2934 s2539) -(trans s2934 s2552) -(trans s2934 s2565) -(trans s2935 s2546) -(trans s2935 s2559) -(trans s2935 s2572) -(trans s2936 s2553) -(trans s2936 s2566) -(trans s2936 s2579) -(trans s2937 s2560) -(trans s2937 s2573) -(trans s2937 s2586) -(trans s2938 s2567) -(trans s2938 s2580) -(trans s2938 s2593) -(trans s2939 s2574) -(trans s2939 s2587) -(trans s2939 s2600) -(trans s2940 s2581) -(trans s2940 s2594) -(trans s2940 s2607) -(trans s2941 s2588) -(trans s2941 s2601) -(trans s2941 s2614) -(trans s2942 s2595) -(trans s2942 s2608) -(trans s2942 s2621) -(trans s2943 s2602) -(trans s2943 s2615) -(trans s2943 s2628) -(trans s2944 s2609) -(trans s2944 s2622) -(trans s2944 s2635) -(trans s2945 s2616) -(trans s2945 s2629) -(trans s2945 s2642) -(trans s2946 s2623) -(trans s2946 s2636) -(trans s2946 s2649) -(trans s2947 s2630) -(trans s2947 s2643) -(trans s2947 s2656) -(trans s2948 s2637) -(trans s2948 s2650) -(trans s2948 s2663) -(trans s2949 s2644) -(trans s2949 s2657) -(trans s2949 s2670) -(trans s2950 s2651) -(trans s2950 s2664) -(trans s2950 s2677) -(trans s2951 s2658) -(trans s2951 s2671) -(trans s2951 s2684) -(trans s2952 s2665) -(trans s2952 s2678) -(trans s2952 s2691) -(trans s2953 s2672) -(trans s2953 s2685) -(trans s2953 s2698) -(trans s2954 s2679) -(trans s2954 s2692) -(trans s2954 s2705) -(trans s2955 s2686) -(trans s2955 s2699) -(trans s2955 s2712) -(trans s2956 s2693) -(trans s2956 s2706) -(trans s2956 s2719) -(trans s2957 s2700) -(trans s2957 s2713) -(trans s2957 s2726) -(trans s2958 s2707) -(trans s2958 s2720) -(trans s2958 s2733) -(trans s2959 s2714) -(trans s2959 s2727) -(trans s2959 s2740) -(trans s2960 s2721) -(trans s2960 s2734) -(trans s2960 s2747) -(trans s2961 s2728) -(trans s2961 s2741) -(trans s2961 s2754) -(trans s2962 s2735) -(trans s2962 s2748) -(trans s2962 s2761) -(trans s2963 s2742) -(trans s2963 s2755) -(trans s2963 s2768) -(trans s2964 s2749) -(trans s2964 s2762) -(trans s2964 s2775) -(trans s2965 s2756) -(trans s2965 s2769) -(trans s2965 s2782) -(trans s2966 s2763) -(trans s2966 s2776) -(trans s2966 s2789) -(trans s2967 s2770) -(trans s2967 s2783) -(trans s2967 s2796) -(trans s2968 s2777) -(trans s2968 s2790) -(trans s2968 s2803) -(trans s2969 s2784) -(trans s2969 s2797) -(trans s2969 s2810) -(trans s2970 s2791) -(trans s2970 s2804) -(trans s2970 s2817) -(trans s2971 s2798) -(trans s2971 s2811) -(trans s2971 s2824) -(trans s2972 s2805) -(trans s2972 s2818) -(trans s2972 s2831) -(trans s2973 s2812) -(trans s2973 s2825) -(trans s2973 s2838) -(trans s2974 s2819) -(trans s2974 s2832) -(trans s2974 s2845) -(trans s2975 s2826) -(trans s2975 s2839) -(trans s2975 s2852) -(trans s2976 s2833) -(trans s2976 s2846) -(trans s2976 s2859) -(trans s2977 s2840) -(trans s2977 s2853) -(trans s2977 s2866) -(trans s2978 s2847) -(trans s2978 s2860) -(trans s2978 s2873) -(trans s2979 s2854) -(trans s2979 s2867) -(trans s2979 s2880) -(trans s2980 s2861) -(trans s2980 s2874) -(trans s2980 s2887) -(trans s2981 s2868) -(trans s2981 s2881) -(trans s2981 s2894) -(trans s2982 s2875) -(trans s2982 s2888) -(trans s2982 s2901) -(trans s2983 s2882) -(trans s2983 s2895) -(trans s2983 s2908) -(trans s2984 s2889) -(trans s2984 s2902) -(trans s2984 s2915) -(trans s2985 s2896) -(trans s2985 s2909) -(trans s2985 s2922) -(trans s2986 s2903) -(trans s2986 s2916) -(trans s2986 s2929) -(trans s2987 s2910) -(trans s2987 s2923) -(trans s2987 s2936) -(trans s2988 s2917) -(trans s2988 s2930) -(trans s2988 s2943) -(trans s2989 s2924) -(trans s2989 s2937) -(trans s2989 s2950) -(trans s2990 s2931) -(trans s2990 s2944) -(trans s2990 s2957) -(trans s2991 s2938) -(trans s2991 s2951) -(trans s2991 s2964) -(trans s2992 s2945) -(trans s2992 s2958) -(trans s2992 s2971) -(trans s2993 s2952) -(trans s2993 s2965) -(trans s2993 s2978) -(trans s2994 s2959) -(trans s2994 s2972) -(trans s2994 s2985) -(trans s2995 s2966) -(trans s2995 s2979) -(trans s2995 s2992) -(trans s2996 s2973) -(trans s2996 s2986) -(trans s2996 s2999) -(trans s2997 s2980) -(trans s2997 s2993) -(trans s2997 s3006) -(trans s2998 s2987) -(trans s2998 s3000) -(trans s2998 s3013) -(trans s2999 s2994) -(trans s2999 s3007) -(trans s2999 s3020) -(trans s3000 s3001) -(trans s3000 s3014) -(trans s3000 s3027) -(trans s3001 s3008) -(trans s3001 s3021) -(trans s3001 s3034) -(trans s3002 s3015) -(trans s3002 s3028) -(trans s3002 s3041) -(trans s3003 s3022) -(trans s3003 s3035) -(trans s3003 s3048) -(trans s3004 s3029) -(trans s3004 s3042) -(trans s3004 s3055) -(trans s3005 s3036) -(trans s3005 s3049) -(trans s3005 s3062) -(trans s3006 s3043) -(trans s3006 s3056) -(trans s3006 s3069) -(trans s3007 s3050) -(trans s3007 s3063) -(trans s3007 s3076) -(trans s3008 s3057) -(trans s3008 s3070) -(trans s3008 s3083) -(trans s3009 s3064) -(trans s3009 s3077) -(trans s3009 s3090) -(trans s3010 s3071) -(trans s3010 s3084) -(trans s3010 s3097) -(trans s3011 s3078) -(trans s3011 s3091) -(trans s3011 s3104) -(trans s3012 s3085) -(trans s3012 s3098) -(trans s3012 s3111) -(trans s3013 s3092) -(trans s3013 s3105) -(trans s3013 s3118) -(trans s3014 s3099) -(trans s3014 s3112) -(trans s3014 s3125) -(trans s3015 s3106) -(trans s3015 s3119) -(trans s3015 s3132) -(trans s3016 s3113) -(trans s3016 s3126) -(trans s3016 s3139) -(trans s3017 s3120) -(trans s3017 s3133) -(trans s3017 s3146) -(trans s3018 s3127) -(trans s3018 s3140) -(trans s3018 s3153) -(trans s3019 s3134) -(trans s3019 s3147) -(trans s3019 s3160) -(trans s3020 s3141) -(trans s3020 s3154) -(trans s3020 s3167) -(trans s3021 s3148) -(trans s3021 s3161) -(trans s3021 s3174) -(trans s3022 s3155) -(trans s3022 s3168) -(trans s3022 s3181) -(trans s3023 s3162) -(trans s3023 s3175) -(trans s3023 s3188) -(trans s3024 s3169) -(trans s3024 s3182) -(trans s3024 s3195) -(trans s3025 s3176) -(trans s3025 s3189) -(trans s3025 s3202) -(trans s3026 s3183) -(trans s3026 s3196) -(trans s3026 s3209) -(trans s3027 s3190) -(trans s3027 s3203) -(trans s3027 s3216) -(trans s3028 s3197) -(trans s3028 s3210) -(trans s3028 s3223) -(trans s3029 s3204) -(trans s3029 s3217) -(trans s3029 s3230) -(trans s3030 s3211) -(trans s3030 s3224) -(trans s3030 s3237) -(trans s3031 s3218) -(trans s3031 s3231) -(trans s3031 s3244) -(trans s3032 s3225) -(trans s3032 s3238) -(trans s3032 s3251) -(trans s3033 s3232) -(trans s3033 s3245) -(trans s3033 s3258) -(trans s3034 s3239) -(trans s3034 s3252) -(trans s3034 s3265) -(trans s3035 s3246) -(trans s3035 s3259) -(trans s3035 s3272) -(trans s3036 s3253) -(trans s3036 s3266) -(trans s3036 s3279) -(trans s3037 s3260) -(trans s3037 s3273) -(trans s3037 s3286) -(trans s3038 s3267) -(trans s3038 s3280) -(trans s3038 s3293) -(trans s3039 s3274) -(trans s3039 s3287) -(trans s3039 s3300) -(trans s3040 s3281) -(trans s3040 s3294) -(trans s3040 s3307) -(trans s3041 s3288) -(trans s3041 s3301) -(trans s3041 s3314) -(trans s3042 s3295) -(trans s3042 s3308) -(trans s3042 s3321) -(trans s3043 s3302) -(trans s3043 s3315) -(trans s3043 s3328) -(trans s3044 s3309) -(trans s3044 s3322) -(trans s3044 s3335) -(trans s3045 s3316) -(trans s3045 s3329) -(trans s3045 s3342) -(trans s3046 s3323) -(trans s3046 s3336) -(trans s3046 s3349) -(trans s3047 s3330) -(trans s3047 s3343) -(trans s3047 s3356) -(trans s3048 s3337) -(trans s3048 s3350) -(trans s3048 s3363) -(trans s3049 s3344) -(trans s3049 s3357) -(trans s3049 s3370) -(trans s3050 s3351) -(trans s3050 s3364) -(trans s3050 s3377) -(trans s3051 s3358) -(trans s3051 s3371) -(trans s3051 s3384) -(trans s3052 s3365) -(trans s3052 s3378) -(trans s3052 s3391) -(trans s3053 s3372) -(trans s3053 s3385) -(trans s3053 s3398) -(trans s3054 s3379) -(trans s3054 s3392) -(trans s3054 s3405) -(trans s3055 s3386) -(trans s3055 s3399) -(trans s3055 s3412) -(trans s3056 s3393) -(trans s3056 s3406) -(trans s3056 s3419) -(trans s3057 s3400) -(trans s3057 s3413) -(trans s3057 s3426) -(trans s3058 s3407) -(trans s3058 s3420) -(trans s3058 s3433) -(trans s3059 s3414) -(trans s3059 s3427) -(trans s3059 s3440) -(trans s3060 s3421) -(trans s3060 s3434) -(trans s3060 s3447) -(trans s3061 s3428) -(trans s3061 s3441) -(trans s3061 s3454) -(trans s3062 s3435) -(trans s3062 s3448) -(trans s3062 s3461) -(trans s3063 s3442) -(trans s3063 s3455) -(trans s3063 s3468) -(trans s3064 s3449) -(trans s3064 s3462) -(trans s3064 s3475) -(trans s3065 s3456) -(trans s3065 s3469) -(trans s3065 s3482) -(trans s3066 s3463) -(trans s3066 s3476) -(trans s3066 s3489) -(trans s3067 s3470) -(trans s3067 s3483) -(trans s3067 s3496) -(trans s3068 s3477) -(trans s3068 s3490) -(trans s3068 s3503) -(trans s3069 s3484) -(trans s3069 s3497) -(trans s3069 s3510) -(trans s3070 s3491) -(trans s3070 s3504) -(trans s3070 s3517) -(trans s3071 s3498) -(trans s3071 s3511) -(trans s3071 s3524) -(trans s3072 s3505) -(trans s3072 s3518) -(trans s3072 s3531) -(trans s3073 s3512) -(trans s3073 s3525) -(trans s3073 s3538) -(trans s3074 s3519) -(trans s3074 s3532) -(trans s3074 s3545) -(trans s3075 s3526) -(trans s3075 s3539) -(trans s3075 s3552) -(trans s3076 s3533) -(trans s3076 s3546) -(trans s3076 s3559) -(trans s3077 s3540) -(trans s3077 s3553) -(trans s3077 s3566) -(trans s3078 s3547) -(trans s3078 s3560) -(trans s3078 s3573) -(trans s3079 s3554) -(trans s3079 s3567) -(trans s3079 s3580) -(trans s3080 s3561) -(trans s3080 s3574) -(trans s3080 s3587) -(trans s3081 s3568) -(trans s3081 s3581) -(trans s3081 s3594) -(trans s3082 s3575) -(trans s3082 s3588) -(trans s3082 s3601) -(trans s3083 s3582) -(trans s3083 s3595) -(trans s3083 s3608) -(trans s3084 s3589) -(trans s3084 s3602) -(trans s3084 s3615) -(trans s3085 s3596) -(trans s3085 s3609) -(trans s3085 s3622) -(trans s3086 s3603) -(trans s3086 s3616) -(trans s3086 s3629) -(trans s3087 s3610) -(trans s3087 s3623) -(trans s3087 s3636) -(trans s3088 s3617) -(trans s3088 s3630) -(trans s3088 s3643) -(trans s3089 s3624) -(trans s3089 s3637) -(trans s3089 s3650) -(trans s3090 s3631) -(trans s3090 s3644) -(trans s3090 s3657) -(trans s3091 s3638) -(trans s3091 s3651) -(trans s3091 s3664) -(trans s3092 s3645) -(trans s3092 s3658) -(trans s3092 s3671) -(trans s3093 s3652) -(trans s3093 s3665) -(trans s3093 s3678) -(trans s3094 s3659) -(trans s3094 s3672) -(trans s3094 s3685) -(trans s3095 s3666) -(trans s3095 s3679) -(trans s3095 s3692) -(trans s3096 s3673) -(trans s3096 s3686) -(trans s3096 s3699) -(trans s3097 s3680) -(trans s3097 s3693) -(trans s3097 s3706) -(trans s3098 s3687) -(trans s3098 s3700) -(trans s3098 s3713) -(trans s3099 s3694) -(trans s3099 s3707) -(trans s3099 s3720) -(trans s3100 s3701) -(trans s3100 s3714) -(trans s3100 s3727) -(trans s3101 s3708) -(trans s3101 s3721) -(trans s3101 s3734) -(trans s3102 s3715) -(trans s3102 s3728) -(trans s3102 s3741) -(trans s3103 s3722) -(trans s3103 s3735) -(trans s3103 s3748) -(trans s3104 s3729) -(trans s3104 s3742) -(trans s3104 s3755) -(trans s3105 s3736) -(trans s3105 s3749) -(trans s3105 s3762) -(trans s3106 s3743) -(trans s3106 s3756) -(trans s3106 s3769) -(trans s3107 s3750) -(trans s3107 s3763) -(trans s3107 s3776) -(trans s3108 s3757) -(trans s3108 s3770) -(trans s3108 s3783) -(trans s3109 s3764) -(trans s3109 s3777) -(trans s3109 s3790) -(trans s3110 s3771) -(trans s3110 s3784) -(trans s3110 s3797) -(trans s3111 s3778) -(trans s3111 s3791) -(trans s3111 s3804) -(trans s3112 s3785) -(trans s3112 s3798) -(trans s3112 s3811) -(trans s3113 s3792) -(trans s3113 s3805) -(trans s3113 s3818) -(trans s3114 s3799) -(trans s3114 s3812) -(trans s3114 s3825) -(trans s3115 s3806) -(trans s3115 s3819) -(trans s3115 s3832) -(trans s3116 s3813) -(trans s3116 s3826) -(trans s3116 s3839) -(trans s3117 s3820) -(trans s3117 s3833) -(trans s3117 s3846) -(trans s3118 s3827) -(trans s3118 s3840) -(trans s3118 s3853) -(trans s3119 s3834) -(trans s3119 s3847) -(trans s3119 s3860) -(trans s3120 s3841) -(trans s3120 s3854) -(trans s3120 s3867) -(trans s3121 s3848) -(trans s3121 s3861) -(trans s3121 s3874) -(trans s3122 s3855) -(trans s3122 s3868) -(trans s3122 s3881) -(trans s3123 s3862) -(trans s3123 s3875) -(trans s3123 s3888) -(trans s3124 s3869) -(trans s3124 s3882) -(trans s3124 s3895) -(trans s3125 s3876) -(trans s3125 s3889) -(trans s3125 s3902) -(trans s3126 s3883) -(trans s3126 s3896) -(trans s3126 s3909) -(trans s3127 s3890) -(trans s3127 s3903) -(trans s3127 s3916) -(trans s3128 s3897) -(trans s3128 s3910) -(trans s3128 s3923) -(trans s3129 s3904) -(trans s3129 s3917) -(trans s3129 s3930) -(trans s3130 s3911) -(trans s3130 s3924) -(trans s3130 s3937) -(trans s3131 s3918) -(trans s3131 s3931) -(trans s3131 s3944) -(trans s3132 s3925) -(trans s3132 s3938) -(trans s3132 s3951) -(trans s3133 s3932) -(trans s3133 s3945) -(trans s3133 s3958) -(trans s3134 s3939) -(trans s3134 s3952) -(trans s3134 s3965) -(trans s3135 s3946) -(trans s3135 s3959) -(trans s3135 s3972) -(trans s3136 s3953) -(trans s3136 s3966) -(trans s3136 s3979) -(trans s3137 s3960) -(trans s3137 s3973) -(trans s3137 s3986) -(trans s3138 s3967) -(trans s3138 s3980) -(trans s3138 s3993) -(trans s3139 s3974) -(trans s3139 s3987) -(trans s3139 s4000) -(trans s3140 s3981) -(trans s3140 s3994) -(trans s3140 s4007) -(trans s3141 s3988) -(trans s3141 s4001) -(trans s3141 s4014) -(trans s3142 s3995) -(trans s3142 s4008) -(trans s3142 s4021) -(trans s3143 s4002) -(trans s3143 s4015) -(trans s3143 s4028) -(trans s3144 s4009) -(trans s3144 s4022) -(trans s3144 s4035) -(trans s3145 s4016) -(trans s3145 s4029) -(trans s3145 s4042) -(trans s3146 s4023) -(trans s3146 s4036) -(trans s3146 s4049) -(trans s3147 s4030) -(trans s3147 s4043) -(trans s3147 s4056) -(trans s3148 s4037) -(trans s3148 s4050) -(trans s3148 s4063) -(trans s3149 s4044) -(trans s3149 s4057) -(trans s3149 s4070) -(trans s3150 s4051) -(trans s3150 s4064) -(trans s3150 s4077) -(trans s3151 s4058) -(trans s3151 s4071) -(trans s3151 s4084) -(trans s3152 s4065) -(trans s3152 s4078) -(trans s3152 s4091) -(trans s3153 s4072) -(trans s3153 s4085) -(trans s3153 s4098) -(trans s3154 s4079) -(trans s3154 s4092) -(trans s3154 s4105) -(trans s3155 s4086) -(trans s3155 s4099) -(trans s3155 s4112) -(trans s3156 s4093) -(trans s3156 s4106) -(trans s3156 s4119) -(trans s3157 s4100) -(trans s3157 s4113) -(trans s3157 s4126) -(trans s3158 s4107) -(trans s3158 s4120) -(trans s3158 s4133) -(trans s3159 s4114) -(trans s3159 s4127) -(trans s3159 s4140) -(trans s3160 s4121) -(trans s3160 s4134) -(trans s3160 s4147) -(trans s3161 s4128) -(trans s3161 s4141) -(trans s3161 s4154) -(trans s3162 s4135) -(trans s3162 s4148) -(trans s3162 s4161) -(trans s3163 s4142) -(trans s3163 s4155) -(trans s3163 s4168) -(trans s3164 s4149) -(trans s3164 s4162) -(trans s3164 s4175) -(trans s3165 s4156) -(trans s3165 s4169) -(trans s3165 s4182) -(trans s3166 s4163) -(trans s3166 s4176) -(trans s3166 s4189) -(trans s3167 s4170) -(trans s3167 s4183) -(trans s3167 s4196) -(trans s3168 s4177) -(trans s3168 s4190) -(trans s3168 s4203) -(trans s3169 s4184) -(trans s3169 s4197) -(trans s3169 s4210) -(trans s3170 s4191) -(trans s3170 s4204) -(trans s3170 s4217) -(trans s3171 s4198) -(trans s3171 s4211) -(trans s3171 s4224) -(trans s3172 s4205) -(trans s3172 s4218) -(trans s3172 s4231) -(trans s3173 s4212) -(trans s3173 s4225) -(trans s3173 s4238) -(trans s3174 s4219) -(trans s3174 s4232) -(trans s3174 s4245) -(trans s3175 s4226) -(trans s3175 s4239) -(trans s3175 s4252) -(trans s3176 s4233) -(trans s3176 s4246) -(trans s3176 s4259) -(trans s3177 s4240) -(trans s3177 s4253) -(trans s3177 s4266) -(trans s3178 s4247) -(trans s3178 s4260) -(trans s3178 s4273) -(trans s3179 s4254) -(trans s3179 s4267) -(trans s3179 s4280) -(trans s3180 s4261) -(trans s3180 s4274) -(trans s3180 s4287) -(trans s3181 s4268) -(trans s3181 s4281) -(trans s3181 s4294) -(trans s3182 s4275) -(trans s3182 s4288) -(trans s3182 s4301) -(trans s3183 s4282) -(trans s3183 s4295) -(trans s3183 s4308) -(trans s3184 s4289) -(trans s3184 s4302) -(trans s3184 s4315) -(trans s3185 s4296) -(trans s3185 s4309) -(trans s3185 s4322) -(trans s3186 s4303) -(trans s3186 s4316) -(trans s3186 s4329) -(trans s3187 s4310) -(trans s3187 s4323) -(trans s3187 s4336) -(trans s3188 s4317) -(trans s3188 s4330) -(trans s3188 s4343) -(trans s3189 s4324) -(trans s3189 s4337) -(trans s3189 s4350) -(trans s3190 s4331) -(trans s3190 s4344) -(trans s3190 s4357) -(trans s3191 s4338) -(trans s3191 s4351) -(trans s3191 s4364) -(trans s3192 s4345) -(trans s3192 s4358) -(trans s3192 s4371) -(trans s3193 s4352) -(trans s3193 s4365) -(trans s3193 s4378) -(trans s3194 s4359) -(trans s3194 s4372) -(trans s3194 s4385) -(trans s3195 s4366) -(trans s3195 s4379) -(trans s3195 s4392) -(trans s3196 s4373) -(trans s3196 s4386) -(trans s3196 s4399) -(trans s3197 s4380) -(trans s3197 s4393) -(trans s3197 s4406) -(trans s3198 s4387) -(trans s3198 s4400) -(trans s3198 s4413) -(trans s3199 s4394) -(trans s3199 s4407) -(trans s3199 s4420) -(trans s3200 s4401) -(trans s3200 s4414) -(trans s3200 s4427) -(trans s3201 s4408) -(trans s3201 s4421) -(trans s3201 s4434) -(trans s3202 s4415) -(trans s3202 s4428) -(trans s3202 s4441) -(trans s3203 s4422) -(trans s3203 s4435) -(trans s3203 s4448) -(trans s3204 s4429) -(trans s3204 s4442) -(trans s3204 s4455) -(trans s3205 s4436) -(trans s3205 s4449) -(trans s3205 s4462) -(trans s3206 s4443) -(trans s3206 s4456) -(trans s3206 s4469) -(trans s3207 s4450) -(trans s3207 s4463) -(trans s3207 s4476) -(trans s3208 s4457) -(trans s3208 s4470) -(trans s3208 s4483) -(trans s3209 s4464) -(trans s3209 s4477) -(trans s3209 s4490) -(trans s3210 s4471) -(trans s3210 s4484) -(trans s3210 s4497) -(trans s3211 s4478) -(trans s3211 s4491) -(trans s3211 s4504) -(trans s3212 s4485) -(trans s3212 s4498) -(trans s3212 s4511) -(trans s3213 s4492) -(trans s3213 s4505) -(trans s3213 s4518) -(trans s3214 s4499) -(trans s3214 s4512) -(trans s3214 s4525) -(trans s3215 s4506) -(trans s3215 s4519) -(trans s3215 s4532) -(trans s3216 s4513) -(trans s3216 s4526) -(trans s3216 s4539) -(trans s3217 s4520) -(trans s3217 s4533) -(trans s3217 s4546) -(trans s3218 s4527) -(trans s3218 s4540) -(trans s3218 s4553) -(trans s3219 s4534) -(trans s3219 s4547) -(trans s3219 s4560) -(trans s3220 s4541) -(trans s3220 s4554) -(trans s3220 s4567) -(trans s3221 s4548) -(trans s3221 s4561) -(trans s3221 s4574) -(trans s3222 s4555) -(trans s3222 s4568) -(trans s3222 s4581) -(trans s3223 s4562) -(trans s3223 s4575) -(trans s3223 s4588) -(trans s3224 s4569) -(trans s3224 s4582) -(trans s3224 s4595) -(trans s3225 s4576) -(trans s3225 s4589) -(trans s3225 s4602) -(trans s3226 s4583) -(trans s3226 s4596) -(trans s3226 s4609) -(trans s3227 s4590) -(trans s3227 s4603) -(trans s3227 s4616) -(trans s3228 s4597) -(trans s3228 s4610) -(trans s3228 s4623) -(trans s3229 s4604) -(trans s3229 s4617) -(trans s3229 s4630) -(trans s3230 s4611) -(trans s3230 s4624) -(trans s3230 s4637) -(trans s3231 s4618) -(trans s3231 s4631) -(trans s3231 s4644) -(trans s3232 s4625) -(trans s3232 s4638) -(trans s3232 s4651) -(trans s3233 s4632) -(trans s3233 s4645) -(trans s3233 s4658) -(trans s3234 s4639) -(trans s3234 s4652) -(trans s3234 s4665) -(trans s3235 s4646) -(trans s3235 s4659) -(trans s3235 s4672) -(trans s3236 s4653) -(trans s3236 s4666) -(trans s3236 s4679) -(trans s3237 s4660) -(trans s3237 s4673) -(trans s3237 s4686) -(trans s3238 s4667) -(trans s3238 s4680) -(trans s3238 s4693) -(trans s3239 s4674) -(trans s3239 s4687) -(trans s3239 s4700) -(trans s3240 s4681) -(trans s3240 s4694) -(trans s3240 s4707) -(trans s3241 s4688) -(trans s3241 s4701) -(trans s3241 s4714) -(trans s3242 s4695) -(trans s3242 s4708) -(trans s3242 s4721) -(trans s3243 s4702) -(trans s3243 s4715) -(trans s3243 s4728) -(trans s3244 s4709) -(trans s3244 s4722) -(trans s3244 s4735) -(trans s3245 s4716) -(trans s3245 s4729) -(trans s3245 s4742) -(trans s3246 s4723) -(trans s3246 s4736) -(trans s3246 s4749) -(trans s3247 s4730) -(trans s3247 s4743) -(trans s3247 s4756) -(trans s3248 s4737) -(trans s3248 s4750) -(trans s3248 s4763) -(trans s3249 s4744) -(trans s3249 s4757) -(trans s3249 s4770) -(trans s3250 s4751) -(trans s3250 s4764) -(trans s3250 s4777) -(trans s3251 s4758) -(trans s3251 s4771) -(trans s3251 s4784) -(trans s3252 s4765) -(trans s3252 s4778) -(trans s3252 s4791) -(trans s3253 s4772) -(trans s3253 s4785) -(trans s3253 s4798) -(trans s3254 s4779) -(trans s3254 s4792) -(trans s3254 s4805) -(trans s3255 s4786) -(trans s3255 s4799) -(trans s3255 s4812) -(trans s3256 s4793) -(trans s3256 s4806) -(trans s3256 s4819) -(trans s3257 s4800) -(trans s3257 s4813) -(trans s3257 s4826) -(trans s3258 s4807) -(trans s3258 s4820) -(trans s3258 s4833) -(trans s3259 s4814) -(trans s3259 s4827) -(trans s3259 s4840) -(trans s3260 s4821) -(trans s3260 s4834) -(trans s3260 s4847) -(trans s3261 s4828) -(trans s3261 s4841) -(trans s3261 s4854) -(trans s3262 s4835) -(trans s3262 s4848) -(trans s3262 s4861) -(trans s3263 s4842) -(trans s3263 s4855) -(trans s3263 s4868) -(trans s3264 s4849) -(trans s3264 s4862) -(trans s3264 s4875) -(trans s3265 s4856) -(trans s3265 s4869) -(trans s3265 s4882) -(trans s3266 s4863) -(trans s3266 s4876) -(trans s3266 s4889) -(trans s3267 s4870) -(trans s3267 s4883) -(trans s3267 s4896) -(trans s3268 s4877) -(trans s3268 s4890) -(trans s3268 s4903) -(trans s3269 s4884) -(trans s3269 s4897) -(trans s3269 s4910) -(trans s3270 s4891) -(trans s3270 s4904) -(trans s3270 s4917) -(trans s3271 s4898) -(trans s3271 s4911) -(trans s3271 s4924) -(trans s3272 s4905) -(trans s3272 s4918) -(trans s3272 s4931) -(trans s3273 s4912) -(trans s3273 s4925) -(trans s3273 s4938) -(trans s3274 s4919) -(trans s3274 s4932) -(trans s3274 s4945) -(trans s3275 s4926) -(trans s3275 s4939) -(trans s3275 s4952) -(trans s3276 s4933) -(trans s3276 s4946) -(trans s3276 s4959) -(trans s3277 s4940) -(trans s3277 s4953) -(trans s3277 s4966) -(trans s3278 s4947) -(trans s3278 s4960) -(trans s3278 s4973) -(trans s3279 s4954) -(trans s3279 s4967) -(trans s3279 s4980) -(trans s3280 s4961) -(trans s3280 s4974) -(trans s3280 s4987) -(trans s3281 s4968) -(trans s3281 s4981) -(trans s3281 s4994) -(trans s3282 s4975) -(trans s3282 s4988) -(trans s3282 s5001) -(trans s3283 s4982) -(trans s3283 s4995) -(trans s3283 s5008) -(trans s3284 s4989) -(trans s3284 s5002) -(trans s3284 s5015) -(trans s3285 s4996) -(trans s3285 s5009) -(trans s3285 s5022) -(trans s3286 s5003) -(trans s3286 s5016) -(trans s3286 s5029) -(trans s3287 s5010) -(trans s3287 s5023) -(trans s3287 s5036) -(trans s3288 s5017) -(trans s3288 s5030) -(trans s3288 s5043) -(trans s3289 s5024) -(trans s3289 s5037) -(trans s3289 s5050) -(trans s3290 s5031) -(trans s3290 s5044) -(trans s3290 s5057) -(trans s3291 s5038) -(trans s3291 s5051) -(trans s3291 s5064) -(trans s3292 s5045) -(trans s3292 s5058) -(trans s3292 s5071) -(trans s3293 s5052) -(trans s3293 s5065) -(trans s3293 s5078) -(trans s3294 s5059) -(trans s3294 s5072) -(trans s3294 s5085) -(trans s3295 s5066) -(trans s3295 s5079) -(trans s3295 s5092) -(trans s3296 s5073) -(trans s3296 s5086) -(trans s3296 s5099) -(trans s3297 s5080) -(trans s3297 s5093) -(trans s3297 s5106) -(trans s3298 s5087) -(trans s3298 s5100) -(trans s3298 s5113) -(trans s3299 s5094) -(trans s3299 s5107) -(trans s3299 s5120) -(trans s3300 s5101) -(trans s3300 s5114) -(trans s3300 s5127) -(trans s3301 s5108) -(trans s3301 s5121) -(trans s3301 s5134) -(trans s3302 s5115) -(trans s3302 s5128) -(trans s3302 s5141) -(trans s3303 s5122) -(trans s3303 s5135) -(trans s3303 s5148) -(trans s3304 s5129) -(trans s3304 s5142) -(trans s3304 s5155) -(trans s3305 s5136) -(trans s3305 s5149) -(trans s3305 s5162) -(trans s3306 s5143) -(trans s3306 s5156) -(trans s3306 s5169) -(trans s3307 s5150) -(trans s3307 s5163) -(trans s3307 s5176) -(trans s3308 s5157) -(trans s3308 s5170) -(trans s3308 s5183) -(trans s3309 s5164) -(trans s3309 s5177) -(trans s3309 s5190) -(trans s3310 s5171) -(trans s3310 s5184) -(trans s3310 s5197) -(trans s3311 s5178) -(trans s3311 s5191) -(trans s3311 s5204) -(trans s3312 s5185) -(trans s3312 s5198) -(trans s3312 s5211) -(trans s3313 s5192) -(trans s3313 s5205) -(trans s3313 s5218) -(trans s3314 s5199) -(trans s3314 s5212) -(trans s3314 s5225) -(trans s3315 s5206) -(trans s3315 s5219) -(trans s3315 s5232) -(trans s3316 s5213) -(trans s3316 s5226) -(trans s3316 s5239) -(trans s3317 s5220) -(trans s3317 s5233) -(trans s3317 s5246) -(trans s3318 s5227) -(trans s3318 s5240) -(trans s3318 s5253) -(trans s3319 s5234) -(trans s3319 s5247) -(trans s3319 s5260) -(trans s3320 s5241) -(trans s3320 s5254) -(trans s3320 s5267) -(trans s3321 s5248) -(trans s3321 s5261) -(trans s3321 s5274) -(trans s3322 s5255) -(trans s3322 s5268) -(trans s3322 s5281) -(trans s3323 s5262) -(trans s3323 s5275) -(trans s3323 s5288) -(trans s3324 s5269) -(trans s3324 s5282) -(trans s3324 s5295) -(trans s3325 s5276) -(trans s3325 s5289) -(trans s3325 s5302) -(trans s3326 s5283) -(trans s3326 s5296) -(trans s3326 s5309) -(trans s3327 s5290) -(trans s3327 s5303) -(trans s3327 s5316) -(trans s3328 s5297) -(trans s3328 s5310) -(trans s3328 s5323) -(trans s3329 s5304) -(trans s3329 s5317) -(trans s3329 s5330) -(trans s3330 s5311) -(trans s3330 s5324) -(trans s3330 s5337) -(trans s3331 s5318) -(trans s3331 s5331) -(trans s3331 s5344) -(trans s3332 s5325) -(trans s3332 s5338) -(trans s3332 s5351) -(trans s3333 s5332) -(trans s3333 s5345) -(trans s3333 s5358) -(trans s3334 s5339) -(trans s3334 s5352) -(trans s3334 s5365) -(trans s3335 s5346) -(trans s3335 s5359) -(trans s3335 s5372) -(trans s3336 s5353) -(trans s3336 s5366) -(trans s3336 s5379) -(trans s3337 s5360) -(trans s3337 s5373) -(trans s3337 s5386) -(trans s3338 s5367) -(trans s3338 s5380) -(trans s3338 s5393) -(trans s3339 s5374) -(trans s3339 s5387) -(trans s3339 s5400) -(trans s3340 s5381) -(trans s3340 s5394) -(trans s3340 s5407) -(trans s3341 s5388) -(trans s3341 s5401) -(trans s3341 s5414) -(trans s3342 s5395) -(trans s3342 s5408) -(trans s3342 s5421) -(trans s3343 s5402) -(trans s3343 s5415) -(trans s3343 s5428) -(trans s3344 s5409) -(trans s3344 s5422) -(trans s3344 s5435) -(trans s3345 s5416) -(trans s3345 s5429) -(trans s3345 s5442) -(trans s3346 s5423) -(trans s3346 s5436) -(trans s3346 s5449) -(trans s3347 s5430) -(trans s3347 s5443) -(trans s3347 s5456) -(trans s3348 s5437) -(trans s3348 s5450) -(trans s3348 s5463) -(trans s3349 s5444) -(trans s3349 s5457) -(trans s3349 s5470) -(trans s3350 s5451) -(trans s3350 s5464) -(trans s3350 s5477) -(trans s3351 s5458) -(trans s3351 s5471) -(trans s3351 s5484) -(trans s3352 s5465) -(trans s3352 s5478) -(trans s3352 s5491) -(trans s3353 s5472) -(trans s3353 s5485) -(trans s3353 s5498) -(trans s3354 s5479) -(trans s3354 s5492) -(trans s3354 s5505) -(trans s3355 s5486) -(trans s3355 s5499) -(trans s3355 s5512) -(trans s3356 s5493) -(trans s3356 s5506) -(trans s3356 s5519) -(trans s3357 s5500) -(trans s3357 s5513) -(trans s3357 s5526) -(trans s3358 s5507) -(trans s3358 s5520) -(trans s3358 s5533) -(trans s3359 s5514) -(trans s3359 s5527) -(trans s3359 s5540) -(trans s3360 s5521) -(trans s3360 s5534) -(trans s3360 s5547) -(trans s3361 s5528) -(trans s3361 s5541) -(trans s3361 s5554) -(trans s3362 s5535) -(trans s3362 s5548) -(trans s3362 s5561) -(trans s3363 s5542) -(trans s3363 s5555) -(trans s3363 s5568) -(trans s3364 s5549) -(trans s3364 s5562) -(trans s3364 s5575) -(trans s3365 s5556) -(trans s3365 s5569) -(trans s3365 s5582) -(trans s3366 s5563) -(trans s3366 s5576) -(trans s3366 s5589) -(trans s3367 s5570) -(trans s3367 s5583) -(trans s3367 s5596) -(trans s3368 s5577) -(trans s3368 s5590) -(trans s3368 s5603) -(trans s3369 s5584) -(trans s3369 s5597) -(trans s3369 s5610) -(trans s3370 s5591) -(trans s3370 s5604) -(trans s3370 s5617) -(trans s3371 s5598) -(trans s3371 s5611) -(trans s3371 s5624) -(trans s3372 s5605) -(trans s3372 s5618) -(trans s3372 s5631) -(trans s3373 s5612) -(trans s3373 s5625) -(trans s3373 s5638) -(trans s3374 s5619) -(trans s3374 s5632) -(trans s3374 s5645) -(trans s3375 s5626) -(trans s3375 s5639) -(trans s3375 s5652) -(trans s3376 s5633) -(trans s3376 s5646) -(trans s3376 s5659) -(trans s3377 s5640) -(trans s3377 s5653) -(trans s3377 s5666) -(trans s3378 s5647) -(trans s3378 s5660) -(trans s3378 s5673) -(trans s3379 s5654) -(trans s3379 s5667) -(trans s3379 s5680) -(trans s3380 s5661) -(trans s3380 s5674) -(trans s3380 s5687) -(trans s3381 s5668) -(trans s3381 s5681) -(trans s3381 s5694) -(trans s3382 s5675) -(trans s3382 s5688) -(trans s3382 s5701) -(trans s3383 s5682) -(trans s3383 s5695) -(trans s3383 s5708) -(trans s3384 s5689) -(trans s3384 s5702) -(trans s3384 s5715) -(trans s3385 s5696) -(trans s3385 s5709) -(trans s3385 s5722) -(trans s3386 s5703) -(trans s3386 s5716) -(trans s3386 s5729) -(trans s3387 s5710) -(trans s3387 s5723) -(trans s3387 s5736) -(trans s3388 s5717) -(trans s3388 s5730) -(trans s3388 s5743) -(trans s3389 s5724) -(trans s3389 s5737) -(trans s3389 s5750) -(trans s3390 s5731) -(trans s3390 s5744) -(trans s3390 s5757) -(trans s3391 s5738) -(trans s3391 s5751) -(trans s3391 s5764) -(trans s3392 s5745) -(trans s3392 s5758) -(trans s3392 s5771) -(trans s3393 s5752) -(trans s3393 s5765) -(trans s3393 s5778) -(trans s3394 s5759) -(trans s3394 s5772) -(trans s3394 s5785) -(trans s3395 s5766) -(trans s3395 s5779) -(trans s3395 s5792) -(trans s3396 s5773) -(trans s3396 s5786) -(trans s3396 s5799) -(trans s3397 s5780) -(trans s3397 s5793) -(trans s3397 s5806) -(trans s3398 s5787) -(trans s3398 s5800) -(trans s3398 s5813) -(trans s3399 s5794) -(trans s3399 s5807) -(trans s3399 s5820) -(trans s3400 s5801) -(trans s3400 s5814) -(trans s3400 s5827) -(trans s3401 s5808) -(trans s3401 s5821) -(trans s3401 s5834) -(trans s3402 s5815) -(trans s3402 s5828) -(trans s3402 s5841) -(trans s3403 s5822) -(trans s3403 s5835) -(trans s3403 s5848) -(trans s3404 s5829) -(trans s3404 s5842) -(trans s3404 s5855) -(trans s3405 s5836) -(trans s3405 s5849) -(trans s3405 s5862) -(trans s3406 s5843) -(trans s3406 s5856) -(trans s3406 s5869) -(trans s3407 s5850) -(trans s3407 s5863) -(trans s3407 s5876) -(trans s3408 s5857) -(trans s3408 s5870) -(trans s3408 s5883) -(trans s3409 s5864) -(trans s3409 s5877) -(trans s3409 s5890) -(trans s3410 s5871) -(trans s3410 s5884) -(trans s3410 s5897) -(trans s3411 s5878) -(trans s3411 s5891) -(trans s3411 s5904) -(trans s3412 s5885) -(trans s3412 s5898) -(trans s3412 s5911) -(trans s3413 s5892) -(trans s3413 s5905) -(trans s3413 s5918) -(trans s3414 s5899) -(trans s3414 s5912) -(trans s3414 s5925) -(trans s3415 s5906) -(trans s3415 s5919) -(trans s3415 s5932) -(trans s3416 s5913) -(trans s3416 s5926) -(trans s3416 s5939) -(trans s3417 s5920) -(trans s3417 s5933) -(trans s3417 s5946) -(trans s3418 s5927) -(trans s3418 s5940) -(trans s3418 s5953) -(trans s3419 s5934) -(trans s3419 s5947) -(trans s3419 s5960) -(trans s3420 s5941) -(trans s3420 s5954) -(trans s3420 s5967) -(trans s3421 s5948) -(trans s3421 s5961) -(trans s3421 s5974) -(trans s3422 s5955) -(trans s3422 s5968) -(trans s3422 s5981) -(trans s3423 s5962) -(trans s3423 s5975) -(trans s3423 s5988) -(trans s3424 s5969) -(trans s3424 s5982) -(trans s3424 s5995) -(trans s3425 s5976) -(trans s3425 s5989) -(trans s3425 s2) -(trans s3426 s5983) -(trans s3426 s5996) -(trans s3426 s9) -(trans s3427 s5990) -(trans s3427 s3) -(trans s3427 s16) -(trans s3428 s5997) -(trans s3428 s10) -(trans s3428 s23) -(trans s3429 s4) -(trans s3429 s17) -(trans s3429 s30) -(trans s3430 s11) -(trans s3430 s24) -(trans s3430 s37) -(trans s3431 s18) -(trans s3431 s31) -(trans s3431 s44) -(trans s3432 s25) -(trans s3432 s38) -(trans s3432 s51) -(trans s3433 s32) -(trans s3433 s45) -(trans s3433 s58) -(trans s3434 s39) -(trans s3434 s52) -(trans s3434 s65) -(trans s3435 s46) -(trans s3435 s59) -(trans s3435 s72) -(trans s3436 s53) -(trans s3436 s66) -(trans s3436 s79) -(trans s3437 s60) -(trans s3437 s73) -(trans s3437 s86) -(trans s3438 s67) -(trans s3438 s80) -(trans s3438 s93) -(trans s3439 s74) -(trans s3439 s87) -(trans s3439 s100) -(trans s3440 s81) -(trans s3440 s94) -(trans s3440 s107) -(trans s3441 s88) -(trans s3441 s101) -(trans s3441 s114) -(trans s3442 s95) -(trans s3442 s108) -(trans s3442 s121) -(trans s3443 s102) -(trans s3443 s115) -(trans s3443 s128) -(trans s3444 s109) -(trans s3444 s122) -(trans s3444 s135) -(trans s3445 s116) -(trans s3445 s129) -(trans s3445 s142) -(trans s3446 s123) -(trans s3446 s136) -(trans s3446 s149) -(trans s3447 s130) -(trans s3447 s143) -(trans s3447 s156) -(trans s3448 s137) -(trans s3448 s150) -(trans s3448 s163) -(trans s3449 s144) -(trans s3449 s157) -(trans s3449 s170) -(trans s3450 s151) -(trans s3450 s164) -(trans s3450 s177) -(trans s3451 s158) -(trans s3451 s171) -(trans s3451 s184) -(trans s3452 s165) -(trans s3452 s178) -(trans s3452 s191) -(trans s3453 s172) -(trans s3453 s185) -(trans s3453 s198) -(trans s3454 s179) -(trans s3454 s192) -(trans s3454 s205) -(trans s3455 s186) -(trans s3455 s199) -(trans s3455 s212) -(trans s3456 s193) -(trans s3456 s206) -(trans s3456 s219) -(trans s3457 s200) -(trans s3457 s213) -(trans s3457 s226) -(trans s3458 s207) -(trans s3458 s220) -(trans s3458 s233) -(trans s3459 s214) -(trans s3459 s227) -(trans s3459 s240) -(trans s3460 s221) -(trans s3460 s234) -(trans s3460 s247) -(trans s3461 s228) -(trans s3461 s241) -(trans s3461 s254) -(trans s3462 s235) -(trans s3462 s248) -(trans s3462 s261) -(trans s3463 s242) -(trans s3463 s255) -(trans s3463 s268) -(trans s3464 s249) -(trans s3464 s262) -(trans s3464 s275) -(trans s3465 s256) -(trans s3465 s269) -(trans s3465 s282) -(trans s3466 s263) -(trans s3466 s276) -(trans s3466 s289) -(trans s3467 s270) -(trans s3467 s283) -(trans s3467 s296) -(trans s3468 s277) -(trans s3468 s290) -(trans s3468 s303) -(trans s3469 s284) -(trans s3469 s297) -(trans s3469 s310) -(trans s3470 s291) -(trans s3470 s304) -(trans s3470 s317) -(trans s3471 s298) -(trans s3471 s311) -(trans s3471 s324) -(trans s3472 s305) -(trans s3472 s318) -(trans s3472 s331) -(trans s3473 s312) -(trans s3473 s325) -(trans s3473 s338) -(trans s3474 s319) -(trans s3474 s332) -(trans s3474 s345) -(trans s3475 s326) -(trans s3475 s339) -(trans s3475 s352) -(trans s3476 s333) -(trans s3476 s346) -(trans s3476 s359) -(trans s3477 s340) -(trans s3477 s353) -(trans s3477 s366) -(trans s3478 s347) -(trans s3478 s360) -(trans s3478 s373) -(trans s3479 s354) -(trans s3479 s367) -(trans s3479 s380) -(trans s3480 s361) -(trans s3480 s374) -(trans s3480 s387) -(trans s3481 s368) -(trans s3481 s381) -(trans s3481 s394) -(trans s3482 s375) -(trans s3482 s388) -(trans s3482 s401) -(trans s3483 s382) -(trans s3483 s395) -(trans s3483 s408) -(trans s3484 s389) -(trans s3484 s402) -(trans s3484 s415) -(trans s3485 s396) -(trans s3485 s409) -(trans s3485 s422) -(trans s3486 s403) -(trans s3486 s416) -(trans s3486 s429) -(trans s3487 s410) -(trans s3487 s423) -(trans s3487 s436) -(trans s3488 s417) -(trans s3488 s430) -(trans s3488 s443) -(trans s3489 s424) -(trans s3489 s437) -(trans s3489 s450) -(trans s3490 s431) -(trans s3490 s444) -(trans s3490 s457) -(trans s3491 s438) -(trans s3491 s451) -(trans s3491 s464) -(trans s3492 s445) -(trans s3492 s458) -(trans s3492 s471) -(trans s3493 s452) -(trans s3493 s465) -(trans s3493 s478) -(trans s3494 s459) -(trans s3494 s472) -(trans s3494 s485) -(trans s3495 s466) -(trans s3495 s479) -(trans s3495 s492) -(trans s3496 s473) -(trans s3496 s486) -(trans s3496 s499) -(trans s3497 s480) -(trans s3497 s493) -(trans s3497 s506) -(trans s3498 s487) -(trans s3498 s500) -(trans s3498 s513) -(trans s3499 s494) -(trans s3499 s507) -(trans s3499 s520) -(trans s3500 s501) -(trans s3500 s514) -(trans s3500 s527) -(trans s3501 s508) -(trans s3501 s521) -(trans s3501 s534) -(trans s3502 s515) -(trans s3502 s528) -(trans s3502 s541) -(trans s3503 s522) -(trans s3503 s535) -(trans s3503 s548) -(trans s3504 s529) -(trans s3504 s542) -(trans s3504 s555) -(trans s3505 s536) -(trans s3505 s549) -(trans s3505 s562) -(trans s3506 s543) -(trans s3506 s556) -(trans s3506 s569) -(trans s3507 s550) -(trans s3507 s563) -(trans s3507 s576) -(trans s3508 s557) -(trans s3508 s570) -(trans s3508 s583) -(trans s3509 s564) -(trans s3509 s577) -(trans s3509 s590) -(trans s3510 s571) -(trans s3510 s584) -(trans s3510 s597) -(trans s3511 s578) -(trans s3511 s591) -(trans s3511 s604) -(trans s3512 s585) -(trans s3512 s598) -(trans s3512 s611) -(trans s3513 s592) -(trans s3513 s605) -(trans s3513 s618) -(trans s3514 s599) -(trans s3514 s612) -(trans s3514 s625) -(trans s3515 s606) -(trans s3515 s619) -(trans s3515 s632) -(trans s3516 s613) -(trans s3516 s626) -(trans s3516 s639) -(trans s3517 s620) -(trans s3517 s633) -(trans s3517 s646) -(trans s3518 s627) -(trans s3518 s640) -(trans s3518 s653) -(trans s3519 s634) -(trans s3519 s647) -(trans s3519 s660) -(trans s3520 s641) -(trans s3520 s654) -(trans s3520 s667) -(trans s3521 s648) -(trans s3521 s661) -(trans s3521 s674) -(trans s3522 s655) -(trans s3522 s668) -(trans s3522 s681) -(trans s3523 s662) -(trans s3523 s675) -(trans s3523 s688) -(trans s3524 s669) -(trans s3524 s682) -(trans s3524 s695) -(trans s3525 s676) -(trans s3525 s689) -(trans s3525 s702) -(trans s3526 s683) -(trans s3526 s696) -(trans s3526 s709) -(trans s3527 s690) -(trans s3527 s703) -(trans s3527 s716) -(trans s3528 s697) -(trans s3528 s710) -(trans s3528 s723) -(trans s3529 s704) -(trans s3529 s717) -(trans s3529 s730) -(trans s3530 s711) -(trans s3530 s724) -(trans s3530 s737) -(trans s3531 s718) -(trans s3531 s731) -(trans s3531 s744) -(trans s3532 s725) -(trans s3532 s738) -(trans s3532 s751) -(trans s3533 s732) -(trans s3533 s745) -(trans s3533 s758) -(trans s3534 s739) -(trans s3534 s752) -(trans s3534 s765) -(trans s3535 s746) -(trans s3535 s759) -(trans s3535 s772) -(trans s3536 s753) -(trans s3536 s766) -(trans s3536 s779) -(trans s3537 s760) -(trans s3537 s773) -(trans s3537 s786) -(trans s3538 s767) -(trans s3538 s780) -(trans s3538 s793) -(trans s3539 s774) -(trans s3539 s787) -(trans s3539 s800) -(trans s3540 s781) -(trans s3540 s794) -(trans s3540 s807) -(trans s3541 s788) -(trans s3541 s801) -(trans s3541 s814) -(trans s3542 s795) -(trans s3542 s808) -(trans s3542 s821) -(trans s3543 s802) -(trans s3543 s815) -(trans s3543 s828) -(trans s3544 s809) -(trans s3544 s822) -(trans s3544 s835) -(trans s3545 s816) -(trans s3545 s829) -(trans s3545 s842) -(trans s3546 s823) -(trans s3546 s836) -(trans s3546 s849) -(trans s3547 s830) -(trans s3547 s843) -(trans s3547 s856) -(trans s3548 s837) -(trans s3548 s850) -(trans s3548 s863) -(trans s3549 s844) -(trans s3549 s857) -(trans s3549 s870) -(trans s3550 s851) -(trans s3550 s864) -(trans s3550 s877) -(trans s3551 s858) -(trans s3551 s871) -(trans s3551 s884) -(trans s3552 s865) -(trans s3552 s878) -(trans s3552 s891) -(trans s3553 s872) -(trans s3553 s885) -(trans s3553 s898) -(trans s3554 s879) -(trans s3554 s892) -(trans s3554 s905) -(trans s3555 s886) -(trans s3555 s899) -(trans s3555 s912) -(trans s3556 s893) -(trans s3556 s906) -(trans s3556 s919) -(trans s3557 s900) -(trans s3557 s913) -(trans s3557 s926) -(trans s3558 s907) -(trans s3558 s920) -(trans s3558 s933) -(trans s3559 s914) -(trans s3559 s927) -(trans s3559 s940) -(trans s3560 s921) -(trans s3560 s934) -(trans s3560 s947) -(trans s3561 s928) -(trans s3561 s941) -(trans s3561 s954) -(trans s3562 s935) -(trans s3562 s948) -(trans s3562 s961) -(trans s3563 s942) -(trans s3563 s955) -(trans s3563 s968) -(trans s3564 s949) -(trans s3564 s962) -(trans s3564 s975) -(trans s3565 s956) -(trans s3565 s969) -(trans s3565 s982) -(trans s3566 s963) -(trans s3566 s976) -(trans s3566 s989) -(trans s3567 s970) -(trans s3567 s983) -(trans s3567 s996) -(trans s3568 s977) -(trans s3568 s990) -(trans s3568 s1003) -(trans s3569 s984) -(trans s3569 s997) -(trans s3569 s1010) -(trans s3570 s991) -(trans s3570 s1004) -(trans s3570 s1017) -(trans s3571 s998) -(trans s3571 s1011) -(trans s3571 s1024) -(trans s3572 s1005) -(trans s3572 s1018) -(trans s3572 s1031) -(trans s3573 s1012) -(trans s3573 s1025) -(trans s3573 s1038) -(trans s3574 s1019) -(trans s3574 s1032) -(trans s3574 s1045) -(trans s3575 s1026) -(trans s3575 s1039) -(trans s3575 s1052) -(trans s3576 s1033) -(trans s3576 s1046) -(trans s3576 s1059) -(trans s3577 s1040) -(trans s3577 s1053) -(trans s3577 s1066) -(trans s3578 s1047) -(trans s3578 s1060) -(trans s3578 s1073) -(trans s3579 s1054) -(trans s3579 s1067) -(trans s3579 s1080) -(trans s3580 s1061) -(trans s3580 s1074) -(trans s3580 s1087) -(trans s3581 s1068) -(trans s3581 s1081) -(trans s3581 s1094) -(trans s3582 s1075) -(trans s3582 s1088) -(trans s3582 s1101) -(trans s3583 s1082) -(trans s3583 s1095) -(trans s3583 s1108) -(trans s3584 s1089) -(trans s3584 s1102) -(trans s3584 s1115) -(trans s3585 s1096) -(trans s3585 s1109) -(trans s3585 s1122) -(trans s3586 s1103) -(trans s3586 s1116) -(trans s3586 s1129) -(trans s3587 s1110) -(trans s3587 s1123) -(trans s3587 s1136) -(trans s3588 s1117) -(trans s3588 s1130) -(trans s3588 s1143) -(trans s3589 s1124) -(trans s3589 s1137) -(trans s3589 s1150) -(trans s3590 s1131) -(trans s3590 s1144) -(trans s3590 s1157) -(trans s3591 s1138) -(trans s3591 s1151) -(trans s3591 s1164) -(trans s3592 s1145) -(trans s3592 s1158) -(trans s3592 s1171) -(trans s3593 s1152) -(trans s3593 s1165) -(trans s3593 s1178) -(trans s3594 s1159) -(trans s3594 s1172) -(trans s3594 s1185) -(trans s3595 s1166) -(trans s3595 s1179) -(trans s3595 s1192) -(trans s3596 s1173) -(trans s3596 s1186) -(trans s3596 s1199) -(trans s3597 s1180) -(trans s3597 s1193) -(trans s3597 s1206) -(trans s3598 s1187) -(trans s3598 s1200) -(trans s3598 s1213) -(trans s3599 s1194) -(trans s3599 s1207) -(trans s3599 s1220) -(trans s3600 s1201) -(trans s3600 s1214) -(trans s3600 s1227) -(trans s3601 s1208) -(trans s3601 s1221) -(trans s3601 s1234) -(trans s3602 s1215) -(trans s3602 s1228) -(trans s3602 s1241) -(trans s3603 s1222) -(trans s3603 s1235) -(trans s3603 s1248) -(trans s3604 s1229) -(trans s3604 s1242) -(trans s3604 s1255) -(trans s3605 s1236) -(trans s3605 s1249) -(trans s3605 s1262) -(trans s3606 s1243) -(trans s3606 s1256) -(trans s3606 s1269) -(trans s3607 s1250) -(trans s3607 s1263) -(trans s3607 s1276) -(trans s3608 s1257) -(trans s3608 s1270) -(trans s3608 s1283) -(trans s3609 s1264) -(trans s3609 s1277) -(trans s3609 s1290) -(trans s3610 s1271) -(trans s3610 s1284) -(trans s3610 s1297) -(trans s3611 s1278) -(trans s3611 s1291) -(trans s3611 s1304) -(trans s3612 s1285) -(trans s3612 s1298) -(trans s3612 s1311) -(trans s3613 s1292) -(trans s3613 s1305) -(trans s3613 s1318) -(trans s3614 s1299) -(trans s3614 s1312) -(trans s3614 s1325) -(trans s3615 s1306) -(trans s3615 s1319) -(trans s3615 s1332) -(trans s3616 s1313) -(trans s3616 s1326) -(trans s3616 s1339) -(trans s3617 s1320) -(trans s3617 s1333) -(trans s3617 s1346) -(trans s3618 s1327) -(trans s3618 s1340) -(trans s3618 s1353) -(trans s3619 s1334) -(trans s3619 s1347) -(trans s3619 s1360) -(trans s3620 s1341) -(trans s3620 s1354) -(trans s3620 s1367) -(trans s3621 s1348) -(trans s3621 s1361) -(trans s3621 s1374) -(trans s3622 s1355) -(trans s3622 s1368) -(trans s3622 s1381) -(trans s3623 s1362) -(trans s3623 s1375) -(trans s3623 s1388) -(trans s3624 s1369) -(trans s3624 s1382) -(trans s3624 s1395) -(trans s3625 s1376) -(trans s3625 s1389) -(trans s3625 s1402) -(trans s3626 s1383) -(trans s3626 s1396) -(trans s3626 s1409) -(trans s3627 s1390) -(trans s3627 s1403) -(trans s3627 s1416) -(trans s3628 s1397) -(trans s3628 s1410) -(trans s3628 s1423) -(trans s3629 s1404) -(trans s3629 s1417) -(trans s3629 s1430) -(trans s3630 s1411) -(trans s3630 s1424) -(trans s3630 s1437) -(trans s3631 s1418) -(trans s3631 s1431) -(trans s3631 s1444) -(trans s3632 s1425) -(trans s3632 s1438) -(trans s3632 s1451) -(trans s3633 s1432) -(trans s3633 s1445) -(trans s3633 s1458) -(trans s3634 s1439) -(trans s3634 s1452) -(trans s3634 s1465) -(trans s3635 s1446) -(trans s3635 s1459) -(trans s3635 s1472) -(trans s3636 s1453) -(trans s3636 s1466) -(trans s3636 s1479) -(trans s3637 s1460) -(trans s3637 s1473) -(trans s3637 s1486) -(trans s3638 s1467) -(trans s3638 s1480) -(trans s3638 s1493) -(trans s3639 s1474) -(trans s3639 s1487) -(trans s3639 s1500) -(trans s3640 s1481) -(trans s3640 s1494) -(trans s3640 s1507) -(trans s3641 s1488) -(trans s3641 s1501) -(trans s3641 s1514) -(trans s3642 s1495) -(trans s3642 s1508) -(trans s3642 s1521) -(trans s3643 s1502) -(trans s3643 s1515) -(trans s3643 s1528) -(trans s3644 s1509) -(trans s3644 s1522) -(trans s3644 s1535) -(trans s3645 s1516) -(trans s3645 s1529) -(trans s3645 s1542) -(trans s3646 s1523) -(trans s3646 s1536) -(trans s3646 s1549) -(trans s3647 s1530) -(trans s3647 s1543) -(trans s3647 s1556) -(trans s3648 s1537) -(trans s3648 s1550) -(trans s3648 s1563) -(trans s3649 s1544) -(trans s3649 s1557) -(trans s3649 s1570) -(trans s3650 s1551) -(trans s3650 s1564) -(trans s3650 s1577) -(trans s3651 s1558) -(trans s3651 s1571) -(trans s3651 s1584) -(trans s3652 s1565) -(trans s3652 s1578) -(trans s3652 s1591) -(trans s3653 s1572) -(trans s3653 s1585) -(trans s3653 s1598) -(trans s3654 s1579) -(trans s3654 s1592) -(trans s3654 s1605) -(trans s3655 s1586) -(trans s3655 s1599) -(trans s3655 s1612) -(trans s3656 s1593) -(trans s3656 s1606) -(trans s3656 s1619) -(trans s3657 s1600) -(trans s3657 s1613) -(trans s3657 s1626) -(trans s3658 s1607) -(trans s3658 s1620) -(trans s3658 s1633) -(trans s3659 s1614) -(trans s3659 s1627) -(trans s3659 s1640) -(trans s3660 s1621) -(trans s3660 s1634) -(trans s3660 s1647) -(trans s3661 s1628) -(trans s3661 s1641) -(trans s3661 s1654) -(trans s3662 s1635) -(trans s3662 s1648) -(trans s3662 s1661) -(trans s3663 s1642) -(trans s3663 s1655) -(trans s3663 s1668) -(trans s3664 s1649) -(trans s3664 s1662) -(trans s3664 s1675) -(trans s3665 s1656) -(trans s3665 s1669) -(trans s3665 s1682) -(trans s3666 s1663) -(trans s3666 s1676) -(trans s3666 s1689) -(trans s3667 s1670) -(trans s3667 s1683) -(trans s3667 s1696) -(trans s3668 s1677) -(trans s3668 s1690) -(trans s3668 s1703) -(trans s3669 s1684) -(trans s3669 s1697) -(trans s3669 s1710) -(trans s3670 s1691) -(trans s3670 s1704) -(trans s3670 s1717) -(trans s3671 s1698) -(trans s3671 s1711) -(trans s3671 s1724) -(trans s3672 s1705) -(trans s3672 s1718) -(trans s3672 s1731) -(trans s3673 s1712) -(trans s3673 s1725) -(trans s3673 s1738) -(trans s3674 s1719) -(trans s3674 s1732) -(trans s3674 s1745) -(trans s3675 s1726) -(trans s3675 s1739) -(trans s3675 s1752) -(trans s3676 s1733) -(trans s3676 s1746) -(trans s3676 s1759) -(trans s3677 s1740) -(trans s3677 s1753) -(trans s3677 s1766) -(trans s3678 s1747) -(trans s3678 s1760) -(trans s3678 s1773) -(trans s3679 s1754) -(trans s3679 s1767) -(trans s3679 s1780) -(trans s3680 s1761) -(trans s3680 s1774) -(trans s3680 s1787) -(trans s3681 s1768) -(trans s3681 s1781) -(trans s3681 s1794) -(trans s3682 s1775) -(trans s3682 s1788) -(trans s3682 s1801) -(trans s3683 s1782) -(trans s3683 s1795) -(trans s3683 s1808) -(trans s3684 s1789) -(trans s3684 s1802) -(trans s3684 s1815) -(trans s3685 s1796) -(trans s3685 s1809) -(trans s3685 s1822) -(trans s3686 s1803) -(trans s3686 s1816) -(trans s3686 s1829) -(trans s3687 s1810) -(trans s3687 s1823) -(trans s3687 s1836) -(trans s3688 s1817) -(trans s3688 s1830) -(trans s3688 s1843) -(trans s3689 s1824) -(trans s3689 s1837) -(trans s3689 s1850) -(trans s3690 s1831) -(trans s3690 s1844) -(trans s3690 s1857) -(trans s3691 s1838) -(trans s3691 s1851) -(trans s3691 s1864) -(trans s3692 s1845) -(trans s3692 s1858) -(trans s3692 s1871) -(trans s3693 s1852) -(trans s3693 s1865) -(trans s3693 s1878) -(trans s3694 s1859) -(trans s3694 s1872) -(trans s3694 s1885) -(trans s3695 s1866) -(trans s3695 s1879) -(trans s3695 s1892) -(trans s3696 s1873) -(trans s3696 s1886) -(trans s3696 s1899) -(trans s3697 s1880) -(trans s3697 s1893) -(trans s3697 s1906) -(trans s3698 s1887) -(trans s3698 s1900) -(trans s3698 s1913) -(trans s3699 s1894) -(trans s3699 s1907) -(trans s3699 s1920) -(trans s3700 s1901) -(trans s3700 s1914) -(trans s3700 s1927) -(trans s3701 s1908) -(trans s3701 s1921) -(trans s3701 s1934) -(trans s3702 s1915) -(trans s3702 s1928) -(trans s3702 s1941) -(trans s3703 s1922) -(trans s3703 s1935) -(trans s3703 s1948) -(trans s3704 s1929) -(trans s3704 s1942) -(trans s3704 s1955) -(trans s3705 s1936) -(trans s3705 s1949) -(trans s3705 s1962) -(trans s3706 s1943) -(trans s3706 s1956) -(trans s3706 s1969) -(trans s3707 s1950) -(trans s3707 s1963) -(trans s3707 s1976) -(trans s3708 s1957) -(trans s3708 s1970) -(trans s3708 s1983) -(trans s3709 s1964) -(trans s3709 s1977) -(trans s3709 s1990) -(trans s3710 s1971) -(trans s3710 s1984) -(trans s3710 s1997) -(trans s3711 s1978) -(trans s3711 s1991) -(trans s3711 s2004) -(trans s3712 s1985) -(trans s3712 s1998) -(trans s3712 s2011) -(trans s3713 s1992) -(trans s3713 s2005) -(trans s3713 s2018) -(trans s3714 s1999) -(trans s3714 s2012) -(trans s3714 s2025) -(trans s3715 s2006) -(trans s3715 s2019) -(trans s3715 s2032) -(trans s3716 s2013) -(trans s3716 s2026) -(trans s3716 s2039) -(trans s3717 s2020) -(trans s3717 s2033) -(trans s3717 s2046) -(trans s3718 s2027) -(trans s3718 s2040) -(trans s3718 s2053) -(trans s3719 s2034) -(trans s3719 s2047) -(trans s3719 s2060) -(trans s3720 s2041) -(trans s3720 s2054) -(trans s3720 s2067) -(trans s3721 s2048) -(trans s3721 s2061) -(trans s3721 s2074) -(trans s3722 s2055) -(trans s3722 s2068) -(trans s3722 s2081) -(trans s3723 s2062) -(trans s3723 s2075) -(trans s3723 s2088) -(trans s3724 s2069) -(trans s3724 s2082) -(trans s3724 s2095) -(trans s3725 s2076) -(trans s3725 s2089) -(trans s3725 s2102) -(trans s3726 s2083) -(trans s3726 s2096) -(trans s3726 s2109) -(trans s3727 s2090) -(trans s3727 s2103) -(trans s3727 s2116) -(trans s3728 s2097) -(trans s3728 s2110) -(trans s3728 s2123) -(trans s3729 s2104) -(trans s3729 s2117) -(trans s3729 s2130) -(trans s3730 s2111) -(trans s3730 s2124) -(trans s3730 s2137) -(trans s3731 s2118) -(trans s3731 s2131) -(trans s3731 s2144) -(trans s3732 s2125) -(trans s3732 s2138) -(trans s3732 s2151) -(trans s3733 s2132) -(trans s3733 s2145) -(trans s3733 s2158) -(trans s3734 s2139) -(trans s3734 s2152) -(trans s3734 s2165) -(trans s3735 s2146) -(trans s3735 s2159) -(trans s3735 s2172) -(trans s3736 s2153) -(trans s3736 s2166) -(trans s3736 s2179) -(trans s3737 s2160) -(trans s3737 s2173) -(trans s3737 s2186) -(trans s3738 s2167) -(trans s3738 s2180) -(trans s3738 s2193) -(trans s3739 s2174) -(trans s3739 s2187) -(trans s3739 s2200) -(trans s3740 s2181) -(trans s3740 s2194) -(trans s3740 s2207) -(trans s3741 s2188) -(trans s3741 s2201) -(trans s3741 s2214) -(trans s3742 s2195) -(trans s3742 s2208) -(trans s3742 s2221) -(trans s3743 s2202) -(trans s3743 s2215) -(trans s3743 s2228) -(trans s3744 s2209) -(trans s3744 s2222) -(trans s3744 s2235) -(trans s3745 s2216) -(trans s3745 s2229) -(trans s3745 s2242) -(trans s3746 s2223) -(trans s3746 s2236) -(trans s3746 s2249) -(trans s3747 s2230) -(trans s3747 s2243) -(trans s3747 s2256) -(trans s3748 s2237) -(trans s3748 s2250) -(trans s3748 s2263) -(trans s3749 s2244) -(trans s3749 s2257) -(trans s3749 s2270) -(trans s3750 s2251) -(trans s3750 s2264) -(trans s3750 s2277) -(trans s3751 s2258) -(trans s3751 s2271) -(trans s3751 s2284) -(trans s3752 s2265) -(trans s3752 s2278) -(trans s3752 s2291) -(trans s3753 s2272) -(trans s3753 s2285) -(trans s3753 s2298) -(trans s3754 s2279) -(trans s3754 s2292) -(trans s3754 s2305) -(trans s3755 s2286) -(trans s3755 s2299) -(trans s3755 s2312) -(trans s3756 s2293) -(trans s3756 s2306) -(trans s3756 s2319) -(trans s3757 s2300) -(trans s3757 s2313) -(trans s3757 s2326) -(trans s3758 s2307) -(trans s3758 s2320) -(trans s3758 s2333) -(trans s3759 s2314) -(trans s3759 s2327) -(trans s3759 s2340) -(trans s3760 s2321) -(trans s3760 s2334) -(trans s3760 s2347) -(trans s3761 s2328) -(trans s3761 s2341) -(trans s3761 s2354) -(trans s3762 s2335) -(trans s3762 s2348) -(trans s3762 s2361) -(trans s3763 s2342) -(trans s3763 s2355) -(trans s3763 s2368) -(trans s3764 s2349) -(trans s3764 s2362) -(trans s3764 s2375) -(trans s3765 s2356) -(trans s3765 s2369) -(trans s3765 s2382) -(trans s3766 s2363) -(trans s3766 s2376) -(trans s3766 s2389) -(trans s3767 s2370) -(trans s3767 s2383) -(trans s3767 s2396) -(trans s3768 s2377) -(trans s3768 s2390) -(trans s3768 s2403) -(trans s3769 s2384) -(trans s3769 s2397) -(trans s3769 s2410) -(trans s3770 s2391) -(trans s3770 s2404) -(trans s3770 s2417) -(trans s3771 s2398) -(trans s3771 s2411) -(trans s3771 s2424) -(trans s3772 s2405) -(trans s3772 s2418) -(trans s3772 s2431) -(trans s3773 s2412) -(trans s3773 s2425) -(trans s3773 s2438) -(trans s3774 s2419) -(trans s3774 s2432) -(trans s3774 s2445) -(trans s3775 s2426) -(trans s3775 s2439) -(trans s3775 s2452) -(trans s3776 s2433) -(trans s3776 s2446) -(trans s3776 s2459) -(trans s3777 s2440) -(trans s3777 s2453) -(trans s3777 s2466) -(trans s3778 s2447) -(trans s3778 s2460) -(trans s3778 s2473) -(trans s3779 s2454) -(trans s3779 s2467) -(trans s3779 s2480) -(trans s3780 s2461) -(trans s3780 s2474) -(trans s3780 s2487) -(trans s3781 s2468) -(trans s3781 s2481) -(trans s3781 s2494) -(trans s3782 s2475) -(trans s3782 s2488) -(trans s3782 s2501) -(trans s3783 s2482) -(trans s3783 s2495) -(trans s3783 s2508) -(trans s3784 s2489) -(trans s3784 s2502) -(trans s3784 s2515) -(trans s3785 s2496) -(trans s3785 s2509) -(trans s3785 s2522) -(trans s3786 s2503) -(trans s3786 s2516) -(trans s3786 s2529) -(trans s3787 s2510) -(trans s3787 s2523) -(trans s3787 s2536) -(trans s3788 s2517) -(trans s3788 s2530) -(trans s3788 s2543) -(trans s3789 s2524) -(trans s3789 s2537) -(trans s3789 s2550) -(trans s3790 s2531) -(trans s3790 s2544) -(trans s3790 s2557) -(trans s3791 s2538) -(trans s3791 s2551) -(trans s3791 s2564) -(trans s3792 s2545) -(trans s3792 s2558) -(trans s3792 s2571) -(trans s3793 s2552) -(trans s3793 s2565) -(trans s3793 s2578) -(trans s3794 s2559) -(trans s3794 s2572) -(trans s3794 s2585) -(trans s3795 s2566) -(trans s3795 s2579) -(trans s3795 s2592) -(trans s3796 s2573) -(trans s3796 s2586) -(trans s3796 s2599) -(trans s3797 s2580) -(trans s3797 s2593) -(trans s3797 s2606) -(trans s3798 s2587) -(trans s3798 s2600) -(trans s3798 s2613) -(trans s3799 s2594) -(trans s3799 s2607) -(trans s3799 s2620) -(trans s3800 s2601) -(trans s3800 s2614) -(trans s3800 s2627) -(trans s3801 s2608) -(trans s3801 s2621) -(trans s3801 s2634) -(trans s3802 s2615) -(trans s3802 s2628) -(trans s3802 s2641) -(trans s3803 s2622) -(trans s3803 s2635) -(trans s3803 s2648) -(trans s3804 s2629) -(trans s3804 s2642) -(trans s3804 s2655) -(trans s3805 s2636) -(trans s3805 s2649) -(trans s3805 s2662) -(trans s3806 s2643) -(trans s3806 s2656) -(trans s3806 s2669) -(trans s3807 s2650) -(trans s3807 s2663) -(trans s3807 s2676) -(trans s3808 s2657) -(trans s3808 s2670) -(trans s3808 s2683) -(trans s3809 s2664) -(trans s3809 s2677) -(trans s3809 s2690) -(trans s3810 s2671) -(trans s3810 s2684) -(trans s3810 s2697) -(trans s3811 s2678) -(trans s3811 s2691) -(trans s3811 s2704) -(trans s3812 s2685) -(trans s3812 s2698) -(trans s3812 s2711) -(trans s3813 s2692) -(trans s3813 s2705) -(trans s3813 s2718) -(trans s3814 s2699) -(trans s3814 s2712) -(trans s3814 s2725) -(trans s3815 s2706) -(trans s3815 s2719) -(trans s3815 s2732) -(trans s3816 s2713) -(trans s3816 s2726) -(trans s3816 s2739) -(trans s3817 s2720) -(trans s3817 s2733) -(trans s3817 s2746) -(trans s3818 s2727) -(trans s3818 s2740) -(trans s3818 s2753) -(trans s3819 s2734) -(trans s3819 s2747) -(trans s3819 s2760) -(trans s3820 s2741) -(trans s3820 s2754) -(trans s3820 s2767) -(trans s3821 s2748) -(trans s3821 s2761) -(trans s3821 s2774) -(trans s3822 s2755) -(trans s3822 s2768) -(trans s3822 s2781) -(trans s3823 s2762) -(trans s3823 s2775) -(trans s3823 s2788) -(trans s3824 s2769) -(trans s3824 s2782) -(trans s3824 s2795) -(trans s3825 s2776) -(trans s3825 s2789) -(trans s3825 s2802) -(trans s3826 s2783) -(trans s3826 s2796) -(trans s3826 s2809) -(trans s3827 s2790) -(trans s3827 s2803) -(trans s3827 s2816) -(trans s3828 s2797) -(trans s3828 s2810) -(trans s3828 s2823) -(trans s3829 s2804) -(trans s3829 s2817) -(trans s3829 s2830) -(trans s3830 s2811) -(trans s3830 s2824) -(trans s3830 s2837) -(trans s3831 s2818) -(trans s3831 s2831) -(trans s3831 s2844) -(trans s3832 s2825) -(trans s3832 s2838) -(trans s3832 s2851) -(trans s3833 s2832) -(trans s3833 s2845) -(trans s3833 s2858) -(trans s3834 s2839) -(trans s3834 s2852) -(trans s3834 s2865) -(trans s3835 s2846) -(trans s3835 s2859) -(trans s3835 s2872) -(trans s3836 s2853) -(trans s3836 s2866) -(trans s3836 s2879) -(trans s3837 s2860) -(trans s3837 s2873) -(trans s3837 s2886) -(trans s3838 s2867) -(trans s3838 s2880) -(trans s3838 s2893) -(trans s3839 s2874) -(trans s3839 s2887) -(trans s3839 s2900) -(trans s3840 s2881) -(trans s3840 s2894) -(trans s3840 s2907) -(trans s3841 s2888) -(trans s3841 s2901) -(trans s3841 s2914) -(trans s3842 s2895) -(trans s3842 s2908) -(trans s3842 s2921) -(trans s3843 s2902) -(trans s3843 s2915) -(trans s3843 s2928) -(trans s3844 s2909) -(trans s3844 s2922) -(trans s3844 s2935) -(trans s3845 s2916) -(trans s3845 s2929) -(trans s3845 s2942) -(trans s3846 s2923) -(trans s3846 s2936) -(trans s3846 s2949) -(trans s3847 s2930) -(trans s3847 s2943) -(trans s3847 s2956) -(trans s3848 s2937) -(trans s3848 s2950) -(trans s3848 s2963) -(trans s3849 s2944) -(trans s3849 s2957) -(trans s3849 s2970) -(trans s3850 s2951) -(trans s3850 s2964) -(trans s3850 s2977) -(trans s3851 s2958) -(trans s3851 s2971) -(trans s3851 s2984) -(trans s3852 s2965) -(trans s3852 s2978) -(trans s3852 s2991) -(trans s3853 s2972) -(trans s3853 s2985) -(trans s3853 s2998) -(trans s3854 s2979) -(trans s3854 s2992) -(trans s3854 s3005) -(trans s3855 s2986) -(trans s3855 s2999) -(trans s3855 s3012) -(trans s3856 s2993) -(trans s3856 s3006) -(trans s3856 s3019) -(trans s3857 s3000) -(trans s3857 s3013) -(trans s3857 s3026) -(trans s3858 s3007) -(trans s3858 s3020) -(trans s3858 s3033) -(trans s3859 s3014) -(trans s3859 s3027) -(trans s3859 s3040) -(trans s3860 s3021) -(trans s3860 s3034) -(trans s3860 s3047) -(trans s3861 s3028) -(trans s3861 s3041) -(trans s3861 s3054) -(trans s3862 s3035) -(trans s3862 s3048) -(trans s3862 s3061) -(trans s3863 s3042) -(trans s3863 s3055) -(trans s3863 s3068) -(trans s3864 s3049) -(trans s3864 s3062) -(trans s3864 s3075) -(trans s3865 s3056) -(trans s3865 s3069) -(trans s3865 s3082) -(trans s3866 s3063) -(trans s3866 s3076) -(trans s3866 s3089) -(trans s3867 s3070) -(trans s3867 s3083) -(trans s3867 s3096) -(trans s3868 s3077) -(trans s3868 s3090) -(trans s3868 s3103) -(trans s3869 s3084) -(trans s3869 s3097) -(trans s3869 s3110) -(trans s3870 s3091) -(trans s3870 s3104) -(trans s3870 s3117) -(trans s3871 s3098) -(trans s3871 s3111) -(trans s3871 s3124) -(trans s3872 s3105) -(trans s3872 s3118) -(trans s3872 s3131) -(trans s3873 s3112) -(trans s3873 s3125) -(trans s3873 s3138) -(trans s3874 s3119) -(trans s3874 s3132) -(trans s3874 s3145) -(trans s3875 s3126) -(trans s3875 s3139) -(trans s3875 s3152) -(trans s3876 s3133) -(trans s3876 s3146) -(trans s3876 s3159) -(trans s3877 s3140) -(trans s3877 s3153) -(trans s3877 s3166) -(trans s3878 s3147) -(trans s3878 s3160) -(trans s3878 s3173) -(trans s3879 s3154) -(trans s3879 s3167) -(trans s3879 s3180) -(trans s3880 s3161) -(trans s3880 s3174) -(trans s3880 s3187) -(trans s3881 s3168) -(trans s3881 s3181) -(trans s3881 s3194) -(trans s3882 s3175) -(trans s3882 s3188) -(trans s3882 s3201) -(trans s3883 s3182) -(trans s3883 s3195) -(trans s3883 s3208) -(trans s3884 s3189) -(trans s3884 s3202) -(trans s3884 s3215) -(trans s3885 s3196) -(trans s3885 s3209) -(trans s3885 s3222) -(trans s3886 s3203) -(trans s3886 s3216) -(trans s3886 s3229) -(trans s3887 s3210) -(trans s3887 s3223) -(trans s3887 s3236) -(trans s3888 s3217) -(trans s3888 s3230) -(trans s3888 s3243) -(trans s3889 s3224) -(trans s3889 s3237) -(trans s3889 s3250) -(trans s3890 s3231) -(trans s3890 s3244) -(trans s3890 s3257) -(trans s3891 s3238) -(trans s3891 s3251) -(trans s3891 s3264) -(trans s3892 s3245) -(trans s3892 s3258) -(trans s3892 s3271) -(trans s3893 s3252) -(trans s3893 s3265) -(trans s3893 s3278) -(trans s3894 s3259) -(trans s3894 s3272) -(trans s3894 s3285) -(trans s3895 s3266) -(trans s3895 s3279) -(trans s3895 s3292) -(trans s3896 s3273) -(trans s3896 s3286) -(trans s3896 s3299) -(trans s3897 s3280) -(trans s3897 s3293) -(trans s3897 s3306) -(trans s3898 s3287) -(trans s3898 s3300) -(trans s3898 s3313) -(trans s3899 s3294) -(trans s3899 s3307) -(trans s3899 s3320) -(trans s3900 s3301) -(trans s3900 s3314) -(trans s3900 s3327) -(trans s3901 s3308) -(trans s3901 s3321) -(trans s3901 s3334) -(trans s3902 s3315) -(trans s3902 s3328) -(trans s3902 s3341) -(trans s3903 s3322) -(trans s3903 s3335) -(trans s3903 s3348) -(trans s3904 s3329) -(trans s3904 s3342) -(trans s3904 s3355) -(trans s3905 s3336) -(trans s3905 s3349) -(trans s3905 s3362) -(trans s3906 s3343) -(trans s3906 s3356) -(trans s3906 s3369) -(trans s3907 s3350) -(trans s3907 s3363) -(trans s3907 s3376) -(trans s3908 s3357) -(trans s3908 s3370) -(trans s3908 s3383) -(trans s3909 s3364) -(trans s3909 s3377) -(trans s3909 s3390) -(trans s3910 s3371) -(trans s3910 s3384) -(trans s3910 s3397) -(trans s3911 s3378) -(trans s3911 s3391) -(trans s3911 s3404) -(trans s3912 s3385) -(trans s3912 s3398) -(trans s3912 s3411) -(trans s3913 s3392) -(trans s3913 s3405) -(trans s3913 s3418) -(trans s3914 s3399) -(trans s3914 s3412) -(trans s3914 s3425) -(trans s3915 s3406) -(trans s3915 s3419) -(trans s3915 s3432) -(trans s3916 s3413) -(trans s3916 s3426) -(trans s3916 s3439) -(trans s3917 s3420) -(trans s3917 s3433) -(trans s3917 s3446) -(trans s3918 s3427) -(trans s3918 s3440) -(trans s3918 s3453) -(trans s3919 s3434) -(trans s3919 s3447) -(trans s3919 s3460) -(trans s3920 s3441) -(trans s3920 s3454) -(trans s3920 s3467) -(trans s3921 s3448) -(trans s3921 s3461) -(trans s3921 s3474) -(trans s3922 s3455) -(trans s3922 s3468) -(trans s3922 s3481) -(trans s3923 s3462) -(trans s3923 s3475) -(trans s3923 s3488) -(trans s3924 s3469) -(trans s3924 s3482) -(trans s3924 s3495) -(trans s3925 s3476) -(trans s3925 s3489) -(trans s3925 s3502) -(trans s3926 s3483) -(trans s3926 s3496) -(trans s3926 s3509) -(trans s3927 s3490) -(trans s3927 s3503) -(trans s3927 s3516) -(trans s3928 s3497) -(trans s3928 s3510) -(trans s3928 s3523) -(trans s3929 s3504) -(trans s3929 s3517) -(trans s3929 s3530) -(trans s3930 s3511) -(trans s3930 s3524) -(trans s3930 s3537) -(trans s3931 s3518) -(trans s3931 s3531) -(trans s3931 s3544) -(trans s3932 s3525) -(trans s3932 s3538) -(trans s3932 s3551) -(trans s3933 s3532) -(trans s3933 s3545) -(trans s3933 s3558) -(trans s3934 s3539) -(trans s3934 s3552) -(trans s3934 s3565) -(trans s3935 s3546) -(trans s3935 s3559) -(trans s3935 s3572) -(trans s3936 s3553) -(trans s3936 s3566) -(trans s3936 s3579) -(trans s3937 s3560) -(trans s3937 s3573) -(trans s3937 s3586) -(trans s3938 s3567) -(trans s3938 s3580) -(trans s3938 s3593) -(trans s3939 s3574) -(trans s3939 s3587) -(trans s3939 s3600) -(trans s3940 s3581) -(trans s3940 s3594) -(trans s3940 s3607) -(trans s3941 s3588) -(trans s3941 s3601) -(trans s3941 s3614) -(trans s3942 s3595) -(trans s3942 s3608) -(trans s3942 s3621) -(trans s3943 s3602) -(trans s3943 s3615) -(trans s3943 s3628) -(trans s3944 s3609) -(trans s3944 s3622) -(trans s3944 s3635) -(trans s3945 s3616) -(trans s3945 s3629) -(trans s3945 s3642) -(trans s3946 s3623) -(trans s3946 s3636) -(trans s3946 s3649) -(trans s3947 s3630) -(trans s3947 s3643) -(trans s3947 s3656) -(trans s3948 s3637) -(trans s3948 s3650) -(trans s3948 s3663) -(trans s3949 s3644) -(trans s3949 s3657) -(trans s3949 s3670) -(trans s3950 s3651) -(trans s3950 s3664) -(trans s3950 s3677) -(trans s3951 s3658) -(trans s3951 s3671) -(trans s3951 s3684) -(trans s3952 s3665) -(trans s3952 s3678) -(trans s3952 s3691) -(trans s3953 s3672) -(trans s3953 s3685) -(trans s3953 s3698) -(trans s3954 s3679) -(trans s3954 s3692) -(trans s3954 s3705) -(trans s3955 s3686) -(trans s3955 s3699) -(trans s3955 s3712) -(trans s3956 s3693) -(trans s3956 s3706) -(trans s3956 s3719) -(trans s3957 s3700) -(trans s3957 s3713) -(trans s3957 s3726) -(trans s3958 s3707) -(trans s3958 s3720) -(trans s3958 s3733) -(trans s3959 s3714) -(trans s3959 s3727) -(trans s3959 s3740) -(trans s3960 s3721) -(trans s3960 s3734) -(trans s3960 s3747) -(trans s3961 s3728) -(trans s3961 s3741) -(trans s3961 s3754) -(trans s3962 s3735) -(trans s3962 s3748) -(trans s3962 s3761) -(trans s3963 s3742) -(trans s3963 s3755) -(trans s3963 s3768) -(trans s3964 s3749) -(trans s3964 s3762) -(trans s3964 s3775) -(trans s3965 s3756) -(trans s3965 s3769) -(trans s3965 s3782) -(trans s3966 s3763) -(trans s3966 s3776) -(trans s3966 s3789) -(trans s3967 s3770) -(trans s3967 s3783) -(trans s3967 s3796) -(trans s3968 s3777) -(trans s3968 s3790) -(trans s3968 s3803) -(trans s3969 s3784) -(trans s3969 s3797) -(trans s3969 s3810) -(trans s3970 s3791) -(trans s3970 s3804) -(trans s3970 s3817) -(trans s3971 s3798) -(trans s3971 s3811) -(trans s3971 s3824) -(trans s3972 s3805) -(trans s3972 s3818) -(trans s3972 s3831) -(trans s3973 s3812) -(trans s3973 s3825) -(trans s3973 s3838) -(trans s3974 s3819) -(trans s3974 s3832) -(trans s3974 s3845) -(trans s3975 s3826) -(trans s3975 s3839) -(trans s3975 s3852) -(trans s3976 s3833) -(trans s3976 s3846) -(trans s3976 s3859) -(trans s3977 s3840) -(trans s3977 s3853) -(trans s3977 s3866) -(trans s3978 s3847) -(trans s3978 s3860) -(trans s3978 s3873) -(trans s3979 s3854) -(trans s3979 s3867) -(trans s3979 s3880) -(trans s3980 s3861) -(trans s3980 s3874) -(trans s3980 s3887) -(trans s3981 s3868) -(trans s3981 s3881) -(trans s3981 s3894) -(trans s3982 s3875) -(trans s3982 s3888) -(trans s3982 s3901) -(trans s3983 s3882) -(trans s3983 s3895) -(trans s3983 s3908) -(trans s3984 s3889) -(trans s3984 s3902) -(trans s3984 s3915) -(trans s3985 s3896) -(trans s3985 s3909) -(trans s3985 s3922) -(trans s3986 s3903) -(trans s3986 s3916) -(trans s3986 s3929) -(trans s3987 s3910) -(trans s3987 s3923) -(trans s3987 s3936) -(trans s3988 s3917) -(trans s3988 s3930) -(trans s3988 s3943) -(trans s3989 s3924) -(trans s3989 s3937) -(trans s3989 s3950) -(trans s3990 s3931) -(trans s3990 s3944) -(trans s3990 s3957) -(trans s3991 s3938) -(trans s3991 s3951) -(trans s3991 s3964) -(trans s3992 s3945) -(trans s3992 s3958) -(trans s3992 s3971) -(trans s3993 s3952) -(trans s3993 s3965) -(trans s3993 s3978) -(trans s3994 s3959) -(trans s3994 s3972) -(trans s3994 s3985) -(trans s3995 s3966) -(trans s3995 s3979) -(trans s3995 s3992) -(trans s3996 s3973) -(trans s3996 s3986) -(trans s3996 s3999) -(trans s3997 s3980) -(trans s3997 s3993) -(trans s3997 s4006) -(trans s3998 s3987) -(trans s3998 s4000) -(trans s3998 s4013) -(trans s3999 s3994) -(trans s3999 s4007) -(trans s3999 s4020) -(trans s4000 s4001) -(trans s4000 s4014) -(trans s4000 s4027) -(trans s4001 s4008) -(trans s4001 s4021) -(trans s4001 s4034) -(trans s4002 s4015) -(trans s4002 s4028) -(trans s4002 s4041) -(trans s4003 s4022) -(trans s4003 s4035) -(trans s4003 s4048) -(trans s4004 s4029) -(trans s4004 s4042) -(trans s4004 s4055) -(trans s4005 s4036) -(trans s4005 s4049) -(trans s4005 s4062) -(trans s4006 s4043) -(trans s4006 s4056) -(trans s4006 s4069) -(trans s4007 s4050) -(trans s4007 s4063) -(trans s4007 s4076) -(trans s4008 s4057) -(trans s4008 s4070) -(trans s4008 s4083) -(trans s4009 s4064) -(trans s4009 s4077) -(trans s4009 s4090) -(trans s4010 s4071) -(trans s4010 s4084) -(trans s4010 s4097) -(trans s4011 s4078) -(trans s4011 s4091) -(trans s4011 s4104) -(trans s4012 s4085) -(trans s4012 s4098) -(trans s4012 s4111) -(trans s4013 s4092) -(trans s4013 s4105) -(trans s4013 s4118) -(trans s4014 s4099) -(trans s4014 s4112) -(trans s4014 s4125) -(trans s4015 s4106) -(trans s4015 s4119) -(trans s4015 s4132) -(trans s4016 s4113) -(trans s4016 s4126) -(trans s4016 s4139) -(trans s4017 s4120) -(trans s4017 s4133) -(trans s4017 s4146) -(trans s4018 s4127) -(trans s4018 s4140) -(trans s4018 s4153) -(trans s4019 s4134) -(trans s4019 s4147) -(trans s4019 s4160) -(trans s4020 s4141) -(trans s4020 s4154) -(trans s4020 s4167) -(trans s4021 s4148) -(trans s4021 s4161) -(trans s4021 s4174) -(trans s4022 s4155) -(trans s4022 s4168) -(trans s4022 s4181) -(trans s4023 s4162) -(trans s4023 s4175) -(trans s4023 s4188) -(trans s4024 s4169) -(trans s4024 s4182) -(trans s4024 s4195) -(trans s4025 s4176) -(trans s4025 s4189) -(trans s4025 s4202) -(trans s4026 s4183) -(trans s4026 s4196) -(trans s4026 s4209) -(trans s4027 s4190) -(trans s4027 s4203) -(trans s4027 s4216) -(trans s4028 s4197) -(trans s4028 s4210) -(trans s4028 s4223) -(trans s4029 s4204) -(trans s4029 s4217) -(trans s4029 s4230) -(trans s4030 s4211) -(trans s4030 s4224) -(trans s4030 s4237) -(trans s4031 s4218) -(trans s4031 s4231) -(trans s4031 s4244) -(trans s4032 s4225) -(trans s4032 s4238) -(trans s4032 s4251) -(trans s4033 s4232) -(trans s4033 s4245) -(trans s4033 s4258) -(trans s4034 s4239) -(trans s4034 s4252) -(trans s4034 s4265) -(trans s4035 s4246) -(trans s4035 s4259) -(trans s4035 s4272) -(trans s4036 s4253) -(trans s4036 s4266) -(trans s4036 s4279) -(trans s4037 s4260) -(trans s4037 s4273) -(trans s4037 s4286) -(trans s4038 s4267) -(trans s4038 s4280) -(trans s4038 s4293) -(trans s4039 s4274) -(trans s4039 s4287) -(trans s4039 s4300) -(trans s4040 s4281) -(trans s4040 s4294) -(trans s4040 s4307) -(trans s4041 s4288) -(trans s4041 s4301) -(trans s4041 s4314) -(trans s4042 s4295) -(trans s4042 s4308) -(trans s4042 s4321) -(trans s4043 s4302) -(trans s4043 s4315) -(trans s4043 s4328) -(trans s4044 s4309) -(trans s4044 s4322) -(trans s4044 s4335) -(trans s4045 s4316) -(trans s4045 s4329) -(trans s4045 s4342) -(trans s4046 s4323) -(trans s4046 s4336) -(trans s4046 s4349) -(trans s4047 s4330) -(trans s4047 s4343) -(trans s4047 s4356) -(trans s4048 s4337) -(trans s4048 s4350) -(trans s4048 s4363) -(trans s4049 s4344) -(trans s4049 s4357) -(trans s4049 s4370) -(trans s4050 s4351) -(trans s4050 s4364) -(trans s4050 s4377) -(trans s4051 s4358) -(trans s4051 s4371) -(trans s4051 s4384) -(trans s4052 s4365) -(trans s4052 s4378) -(trans s4052 s4391) -(trans s4053 s4372) -(trans s4053 s4385) -(trans s4053 s4398) -(trans s4054 s4379) -(trans s4054 s4392) -(trans s4054 s4405) -(trans s4055 s4386) -(trans s4055 s4399) -(trans s4055 s4412) -(trans s4056 s4393) -(trans s4056 s4406) -(trans s4056 s4419) -(trans s4057 s4400) -(trans s4057 s4413) -(trans s4057 s4426) -(trans s4058 s4407) -(trans s4058 s4420) -(trans s4058 s4433) -(trans s4059 s4414) -(trans s4059 s4427) -(trans s4059 s4440) -(trans s4060 s4421) -(trans s4060 s4434) -(trans s4060 s4447) -(trans s4061 s4428) -(trans s4061 s4441) -(trans s4061 s4454) -(trans s4062 s4435) -(trans s4062 s4448) -(trans s4062 s4461) -(trans s4063 s4442) -(trans s4063 s4455) -(trans s4063 s4468) -(trans s4064 s4449) -(trans s4064 s4462) -(trans s4064 s4475) -(trans s4065 s4456) -(trans s4065 s4469) -(trans s4065 s4482) -(trans s4066 s4463) -(trans s4066 s4476) -(trans s4066 s4489) -(trans s4067 s4470) -(trans s4067 s4483) -(trans s4067 s4496) -(trans s4068 s4477) -(trans s4068 s4490) -(trans s4068 s4503) -(trans s4069 s4484) -(trans s4069 s4497) -(trans s4069 s4510) -(trans s4070 s4491) -(trans s4070 s4504) -(trans s4070 s4517) -(trans s4071 s4498) -(trans s4071 s4511) -(trans s4071 s4524) -(trans s4072 s4505) -(trans s4072 s4518) -(trans s4072 s4531) -(trans s4073 s4512) -(trans s4073 s4525) -(trans s4073 s4538) -(trans s4074 s4519) -(trans s4074 s4532) -(trans s4074 s4545) -(trans s4075 s4526) -(trans s4075 s4539) -(trans s4075 s4552) -(trans s4076 s4533) -(trans s4076 s4546) -(trans s4076 s4559) -(trans s4077 s4540) -(trans s4077 s4553) -(trans s4077 s4566) -(trans s4078 s4547) -(trans s4078 s4560) -(trans s4078 s4573) -(trans s4079 s4554) -(trans s4079 s4567) -(trans s4079 s4580) -(trans s4080 s4561) -(trans s4080 s4574) -(trans s4080 s4587) -(trans s4081 s4568) -(trans s4081 s4581) -(trans s4081 s4594) -(trans s4082 s4575) -(trans s4082 s4588) -(trans s4082 s4601) -(trans s4083 s4582) -(trans s4083 s4595) -(trans s4083 s4608) -(trans s4084 s4589) -(trans s4084 s4602) -(trans s4084 s4615) -(trans s4085 s4596) -(trans s4085 s4609) -(trans s4085 s4622) -(trans s4086 s4603) -(trans s4086 s4616) -(trans s4086 s4629) -(trans s4087 s4610) -(trans s4087 s4623) -(trans s4087 s4636) -(trans s4088 s4617) -(trans s4088 s4630) -(trans s4088 s4643) -(trans s4089 s4624) -(trans s4089 s4637) -(trans s4089 s4650) -(trans s4090 s4631) -(trans s4090 s4644) -(trans s4090 s4657) -(trans s4091 s4638) -(trans s4091 s4651) -(trans s4091 s4664) -(trans s4092 s4645) -(trans s4092 s4658) -(trans s4092 s4671) -(trans s4093 s4652) -(trans s4093 s4665) -(trans s4093 s4678) -(trans s4094 s4659) -(trans s4094 s4672) -(trans s4094 s4685) -(trans s4095 s4666) -(trans s4095 s4679) -(trans s4095 s4692) -(trans s4096 s4673) -(trans s4096 s4686) -(trans s4096 s4699) -(trans s4097 s4680) -(trans s4097 s4693) -(trans s4097 s4706) -(trans s4098 s4687) -(trans s4098 s4700) -(trans s4098 s4713) -(trans s4099 s4694) -(trans s4099 s4707) -(trans s4099 s4720) -(trans s4100 s4701) -(trans s4100 s4714) -(trans s4100 s4727) -(trans s4101 s4708) -(trans s4101 s4721) -(trans s4101 s4734) -(trans s4102 s4715) -(trans s4102 s4728) -(trans s4102 s4741) -(trans s4103 s4722) -(trans s4103 s4735) -(trans s4103 s4748) -(trans s4104 s4729) -(trans s4104 s4742) -(trans s4104 s4755) -(trans s4105 s4736) -(trans s4105 s4749) -(trans s4105 s4762) -(trans s4106 s4743) -(trans s4106 s4756) -(trans s4106 s4769) -(trans s4107 s4750) -(trans s4107 s4763) -(trans s4107 s4776) -(trans s4108 s4757) -(trans s4108 s4770) -(trans s4108 s4783) -(trans s4109 s4764) -(trans s4109 s4777) -(trans s4109 s4790) -(trans s4110 s4771) -(trans s4110 s4784) -(trans s4110 s4797) -(trans s4111 s4778) -(trans s4111 s4791) -(trans s4111 s4804) -(trans s4112 s4785) -(trans s4112 s4798) -(trans s4112 s4811) -(trans s4113 s4792) -(trans s4113 s4805) -(trans s4113 s4818) -(trans s4114 s4799) -(trans s4114 s4812) -(trans s4114 s4825) -(trans s4115 s4806) -(trans s4115 s4819) -(trans s4115 s4832) -(trans s4116 s4813) -(trans s4116 s4826) -(trans s4116 s4839) -(trans s4117 s4820) -(trans s4117 s4833) -(trans s4117 s4846) -(trans s4118 s4827) -(trans s4118 s4840) -(trans s4118 s4853) -(trans s4119 s4834) -(trans s4119 s4847) -(trans s4119 s4860) -(trans s4120 s4841) -(trans s4120 s4854) -(trans s4120 s4867) -(trans s4121 s4848) -(trans s4121 s4861) -(trans s4121 s4874) -(trans s4122 s4855) -(trans s4122 s4868) -(trans s4122 s4881) -(trans s4123 s4862) -(trans s4123 s4875) -(trans s4123 s4888) -(trans s4124 s4869) -(trans s4124 s4882) -(trans s4124 s4895) -(trans s4125 s4876) -(trans s4125 s4889) -(trans s4125 s4902) -(trans s4126 s4883) -(trans s4126 s4896) -(trans s4126 s4909) -(trans s4127 s4890) -(trans s4127 s4903) -(trans s4127 s4916) -(trans s4128 s4897) -(trans s4128 s4910) -(trans s4128 s4923) -(trans s4129 s4904) -(trans s4129 s4917) -(trans s4129 s4930) -(trans s4130 s4911) -(trans s4130 s4924) -(trans s4130 s4937) -(trans s4131 s4918) -(trans s4131 s4931) -(trans s4131 s4944) -(trans s4132 s4925) -(trans s4132 s4938) -(trans s4132 s4951) -(trans s4133 s4932) -(trans s4133 s4945) -(trans s4133 s4958) -(trans s4134 s4939) -(trans s4134 s4952) -(trans s4134 s4965) -(trans s4135 s4946) -(trans s4135 s4959) -(trans s4135 s4972) -(trans s4136 s4953) -(trans s4136 s4966) -(trans s4136 s4979) -(trans s4137 s4960) -(trans s4137 s4973) -(trans s4137 s4986) -(trans s4138 s4967) -(trans s4138 s4980) -(trans s4138 s4993) -(trans s4139 s4974) -(trans s4139 s4987) -(trans s4139 s5000) -(trans s4140 s4981) -(trans s4140 s4994) -(trans s4140 s5007) -(trans s4141 s4988) -(trans s4141 s5001) -(trans s4141 s5014) -(trans s4142 s4995) -(trans s4142 s5008) -(trans s4142 s5021) -(trans s4143 s5002) -(trans s4143 s5015) -(trans s4143 s5028) -(trans s4144 s5009) -(trans s4144 s5022) -(trans s4144 s5035) -(trans s4145 s5016) -(trans s4145 s5029) -(trans s4145 s5042) -(trans s4146 s5023) -(trans s4146 s5036) -(trans s4146 s5049) -(trans s4147 s5030) -(trans s4147 s5043) -(trans s4147 s5056) -(trans s4148 s5037) -(trans s4148 s5050) -(trans s4148 s5063) -(trans s4149 s5044) -(trans s4149 s5057) -(trans s4149 s5070) -(trans s4150 s5051) -(trans s4150 s5064) -(trans s4150 s5077) -(trans s4151 s5058) -(trans s4151 s5071) -(trans s4151 s5084) -(trans s4152 s5065) -(trans s4152 s5078) -(trans s4152 s5091) -(trans s4153 s5072) -(trans s4153 s5085) -(trans s4153 s5098) -(trans s4154 s5079) -(trans s4154 s5092) -(trans s4154 s5105) -(trans s4155 s5086) -(trans s4155 s5099) -(trans s4155 s5112) -(trans s4156 s5093) -(trans s4156 s5106) -(trans s4156 s5119) -(trans s4157 s5100) -(trans s4157 s5113) -(trans s4157 s5126) -(trans s4158 s5107) -(trans s4158 s5120) -(trans s4158 s5133) -(trans s4159 s5114) -(trans s4159 s5127) -(trans s4159 s5140) -(trans s4160 s5121) -(trans s4160 s5134) -(trans s4160 s5147) -(trans s4161 s5128) -(trans s4161 s5141) -(trans s4161 s5154) -(trans s4162 s5135) -(trans s4162 s5148) -(trans s4162 s5161) -(trans s4163 s5142) -(trans s4163 s5155) -(trans s4163 s5168) -(trans s4164 s5149) -(trans s4164 s5162) -(trans s4164 s5175) -(trans s4165 s5156) -(trans s4165 s5169) -(trans s4165 s5182) -(trans s4166 s5163) -(trans s4166 s5176) -(trans s4166 s5189) -(trans s4167 s5170) -(trans s4167 s5183) -(trans s4167 s5196) -(trans s4168 s5177) -(trans s4168 s5190) -(trans s4168 s5203) -(trans s4169 s5184) -(trans s4169 s5197) -(trans s4169 s5210) -(trans s4170 s5191) -(trans s4170 s5204) -(trans s4170 s5217) -(trans s4171 s5198) -(trans s4171 s5211) -(trans s4171 s5224) -(trans s4172 s5205) -(trans s4172 s5218) -(trans s4172 s5231) -(trans s4173 s5212) -(trans s4173 s5225) -(trans s4173 s5238) -(trans s4174 s5219) -(trans s4174 s5232) -(trans s4174 s5245) -(trans s4175 s5226) -(trans s4175 s5239) -(trans s4175 s5252) -(trans s4176 s5233) -(trans s4176 s5246) -(trans s4176 s5259) -(trans s4177 s5240) -(trans s4177 s5253) -(trans s4177 s5266) -(trans s4178 s5247) -(trans s4178 s5260) -(trans s4178 s5273) -(trans s4179 s5254) -(trans s4179 s5267) -(trans s4179 s5280) -(trans s4180 s5261) -(trans s4180 s5274) -(trans s4180 s5287) -(trans s4181 s5268) -(trans s4181 s5281) -(trans s4181 s5294) -(trans s4182 s5275) -(trans s4182 s5288) -(trans s4182 s5301) -(trans s4183 s5282) -(trans s4183 s5295) -(trans s4183 s5308) -(trans s4184 s5289) -(trans s4184 s5302) -(trans s4184 s5315) -(trans s4185 s5296) -(trans s4185 s5309) -(trans s4185 s5322) -(trans s4186 s5303) -(trans s4186 s5316) -(trans s4186 s5329) -(trans s4187 s5310) -(trans s4187 s5323) -(trans s4187 s5336) -(trans s4188 s5317) -(trans s4188 s5330) -(trans s4188 s5343) -(trans s4189 s5324) -(trans s4189 s5337) -(trans s4189 s5350) -(trans s4190 s5331) -(trans s4190 s5344) -(trans s4190 s5357) -(trans s4191 s5338) -(trans s4191 s5351) -(trans s4191 s5364) -(trans s4192 s5345) -(trans s4192 s5358) -(trans s4192 s5371) -(trans s4193 s5352) -(trans s4193 s5365) -(trans s4193 s5378) -(trans s4194 s5359) -(trans s4194 s5372) -(trans s4194 s5385) -(trans s4195 s5366) -(trans s4195 s5379) -(trans s4195 s5392) -(trans s4196 s5373) -(trans s4196 s5386) -(trans s4196 s5399) -(trans s4197 s5380) -(trans s4197 s5393) -(trans s4197 s5406) -(trans s4198 s5387) -(trans s4198 s5400) -(trans s4198 s5413) -(trans s4199 s5394) -(trans s4199 s5407) -(trans s4199 s5420) -(trans s4200 s5401) -(trans s4200 s5414) -(trans s4200 s5427) -(trans s4201 s5408) -(trans s4201 s5421) -(trans s4201 s5434) -(trans s4202 s5415) -(trans s4202 s5428) -(trans s4202 s5441) -(trans s4203 s5422) -(trans s4203 s5435) -(trans s4203 s5448) -(trans s4204 s5429) -(trans s4204 s5442) -(trans s4204 s5455) -(trans s4205 s5436) -(trans s4205 s5449) -(trans s4205 s5462) -(trans s4206 s5443) -(trans s4206 s5456) -(trans s4206 s5469) -(trans s4207 s5450) -(trans s4207 s5463) -(trans s4207 s5476) -(trans s4208 s5457) -(trans s4208 s5470) -(trans s4208 s5483) -(trans s4209 s5464) -(trans s4209 s5477) -(trans s4209 s5490) -(trans s4210 s5471) -(trans s4210 s5484) -(trans s4210 s5497) -(trans s4211 s5478) -(trans s4211 s5491) -(trans s4211 s5504) -(trans s4212 s5485) -(trans s4212 s5498) -(trans s4212 s5511) -(trans s4213 s5492) -(trans s4213 s5505) -(trans s4213 s5518) -(trans s4214 s5499) -(trans s4214 s5512) -(trans s4214 s5525) -(trans s4215 s5506) -(trans s4215 s5519) -(trans s4215 s5532) -(trans s4216 s5513) -(trans s4216 s5526) -(trans s4216 s5539) -(trans s4217 s5520) -(trans s4217 s5533) -(trans s4217 s5546) -(trans s4218 s5527) -(trans s4218 s5540) -(trans s4218 s5553) -(trans s4219 s5534) -(trans s4219 s5547) -(trans s4219 s5560) -(trans s4220 s5541) -(trans s4220 s5554) -(trans s4220 s5567) -(trans s4221 s5548) -(trans s4221 s5561) -(trans s4221 s5574) -(trans s4222 s5555) -(trans s4222 s5568) -(trans s4222 s5581) -(trans s4223 s5562) -(trans s4223 s5575) -(trans s4223 s5588) -(trans s4224 s5569) -(trans s4224 s5582) -(trans s4224 s5595) -(trans s4225 s5576) -(trans s4225 s5589) -(trans s4225 s5602) -(trans s4226 s5583) -(trans s4226 s5596) -(trans s4226 s5609) -(trans s4227 s5590) -(trans s4227 s5603) -(trans s4227 s5616) -(trans s4228 s5597) -(trans s4228 s5610) -(trans s4228 s5623) -(trans s4229 s5604) -(trans s4229 s5617) -(trans s4229 s5630) -(trans s4230 s5611) -(trans s4230 s5624) -(trans s4230 s5637) -(trans s4231 s5618) -(trans s4231 s5631) -(trans s4231 s5644) -(trans s4232 s5625) -(trans s4232 s5638) -(trans s4232 s5651) -(trans s4233 s5632) -(trans s4233 s5645) -(trans s4233 s5658) -(trans s4234 s5639) -(trans s4234 s5652) -(trans s4234 s5665) -(trans s4235 s5646) -(trans s4235 s5659) -(trans s4235 s5672) -(trans s4236 s5653) -(trans s4236 s5666) -(trans s4236 s5679) -(trans s4237 s5660) -(trans s4237 s5673) -(trans s4237 s5686) -(trans s4238 s5667) -(trans s4238 s5680) -(trans s4238 s5693) -(trans s4239 s5674) -(trans s4239 s5687) -(trans s4239 s5700) -(trans s4240 s5681) -(trans s4240 s5694) -(trans s4240 s5707) -(trans s4241 s5688) -(trans s4241 s5701) -(trans s4241 s5714) -(trans s4242 s5695) -(trans s4242 s5708) -(trans s4242 s5721) -(trans s4243 s5702) -(trans s4243 s5715) -(trans s4243 s5728) -(trans s4244 s5709) -(trans s4244 s5722) -(trans s4244 s5735) -(trans s4245 s5716) -(trans s4245 s5729) -(trans s4245 s5742) -(trans s4246 s5723) -(trans s4246 s5736) -(trans s4246 s5749) -(trans s4247 s5730) -(trans s4247 s5743) -(trans s4247 s5756) -(trans s4248 s5737) -(trans s4248 s5750) -(trans s4248 s5763) -(trans s4249 s5744) -(trans s4249 s5757) -(trans s4249 s5770) -(trans s4250 s5751) -(trans s4250 s5764) -(trans s4250 s5777) -(trans s4251 s5758) -(trans s4251 s5771) -(trans s4251 s5784) -(trans s4252 s5765) -(trans s4252 s5778) -(trans s4252 s5791) -(trans s4253 s5772) -(trans s4253 s5785) -(trans s4253 s5798) -(trans s4254 s5779) -(trans s4254 s5792) -(trans s4254 s5805) -(trans s4255 s5786) -(trans s4255 s5799) -(trans s4255 s5812) -(trans s4256 s5793) -(trans s4256 s5806) -(trans s4256 s5819) -(trans s4257 s5800) -(trans s4257 s5813) -(trans s4257 s5826) -(trans s4258 s5807) -(trans s4258 s5820) -(trans s4258 s5833) -(trans s4259 s5814) -(trans s4259 s5827) -(trans s4259 s5840) -(trans s4260 s5821) -(trans s4260 s5834) -(trans s4260 s5847) -(trans s4261 s5828) -(trans s4261 s5841) -(trans s4261 s5854) -(trans s4262 s5835) -(trans s4262 s5848) -(trans s4262 s5861) -(trans s4263 s5842) -(trans s4263 s5855) -(trans s4263 s5868) -(trans s4264 s5849) -(trans s4264 s5862) -(trans s4264 s5875) -(trans s4265 s5856) -(trans s4265 s5869) -(trans s4265 s5882) -(trans s4266 s5863) -(trans s4266 s5876) -(trans s4266 s5889) -(trans s4267 s5870) -(trans s4267 s5883) -(trans s4267 s5896) -(trans s4268 s5877) -(trans s4268 s5890) -(trans s4268 s5903) -(trans s4269 s5884) -(trans s4269 s5897) -(trans s4269 s5910) -(trans s4270 s5891) -(trans s4270 s5904) -(trans s4270 s5917) -(trans s4271 s5898) -(trans s4271 s5911) -(trans s4271 s5924) -(trans s4272 s5905) -(trans s4272 s5918) -(trans s4272 s5931) -(trans s4273 s5912) -(trans s4273 s5925) -(trans s4273 s5938) -(trans s4274 s5919) -(trans s4274 s5932) -(trans s4274 s5945) -(trans s4275 s5926) -(trans s4275 s5939) -(trans s4275 s5952) -(trans s4276 s5933) -(trans s4276 s5946) -(trans s4276 s5959) -(trans s4277 s5940) -(trans s4277 s5953) -(trans s4277 s5966) -(trans s4278 s5947) -(trans s4278 s5960) -(trans s4278 s5973) -(trans s4279 s5954) -(trans s4279 s5967) -(trans s4279 s5980) -(trans s4280 s5961) -(trans s4280 s5974) -(trans s4280 s5987) -(trans s4281 s5968) -(trans s4281 s5981) -(trans s4281 s5994) -(trans s4282 s5975) -(trans s4282 s5988) -(trans s4282 s1) -(trans s4283 s5982) -(trans s4283 s5995) -(trans s4283 s8) -(trans s4284 s5989) -(trans s4284 s2) -(trans s4284 s15) -(trans s4285 s5996) -(trans s4285 s9) -(trans s4285 s22) -(trans s4286 s3) -(trans s4286 s16) -(trans s4286 s29) -(trans s4287 s10) -(trans s4287 s23) -(trans s4287 s36) -(trans s4288 s17) -(trans s4288 s30) -(trans s4288 s43) -(trans s4289 s24) -(trans s4289 s37) -(trans s4289 s50) -(trans s4290 s31) -(trans s4290 s44) -(trans s4290 s57) -(trans s4291 s38) -(trans s4291 s51) -(trans s4291 s64) -(trans s4292 s45) -(trans s4292 s58) -(trans s4292 s71) -(trans s4293 s52) -(trans s4293 s65) -(trans s4293 s78) -(trans s4294 s59) -(trans s4294 s72) -(trans s4294 s85) -(trans s4295 s66) -(trans s4295 s79) -(trans s4295 s92) -(trans s4296 s73) -(trans s4296 s86) -(trans s4296 s99) -(trans s4297 s80) -(trans s4297 s93) -(trans s4297 s106) -(trans s4298 s87) -(trans s4298 s100) -(trans s4298 s113) -(trans s4299 s94) -(trans s4299 s107) -(trans s4299 s120) -(trans s4300 s101) -(trans s4300 s114) -(trans s4300 s127) -(trans s4301 s108) -(trans s4301 s121) -(trans s4301 s134) -(trans s4302 s115) -(trans s4302 s128) -(trans s4302 s141) -(trans s4303 s122) -(trans s4303 s135) -(trans s4303 s148) -(trans s4304 s129) -(trans s4304 s142) -(trans s4304 s155) -(trans s4305 s136) -(trans s4305 s149) -(trans s4305 s162) -(trans s4306 s143) -(trans s4306 s156) -(trans s4306 s169) -(trans s4307 s150) -(trans s4307 s163) -(trans s4307 s176) -(trans s4308 s157) -(trans s4308 s170) -(trans s4308 s183) -(trans s4309 s164) -(trans s4309 s177) -(trans s4309 s190) -(trans s4310 s171) -(trans s4310 s184) -(trans s4310 s197) -(trans s4311 s178) -(trans s4311 s191) -(trans s4311 s204) -(trans s4312 s185) -(trans s4312 s198) -(trans s4312 s211) -(trans s4313 s192) -(trans s4313 s205) -(trans s4313 s218) -(trans s4314 s199) -(trans s4314 s212) -(trans s4314 s225) -(trans s4315 s206) -(trans s4315 s219) -(trans s4315 s232) -(trans s4316 s213) -(trans s4316 s226) -(trans s4316 s239) -(trans s4317 s220) -(trans s4317 s233) -(trans s4317 s246) -(trans s4318 s227) -(trans s4318 s240) -(trans s4318 s253) -(trans s4319 s234) -(trans s4319 s247) -(trans s4319 s260) -(trans s4320 s241) -(trans s4320 s254) -(trans s4320 s267) -(trans s4321 s248) -(trans s4321 s261) -(trans s4321 s274) -(trans s4322 s255) -(trans s4322 s268) -(trans s4322 s281) -(trans s4323 s262) -(trans s4323 s275) -(trans s4323 s288) -(trans s4324 s269) -(trans s4324 s282) -(trans s4324 s295) -(trans s4325 s276) -(trans s4325 s289) -(trans s4325 s302) -(trans s4326 s283) -(trans s4326 s296) -(trans s4326 s309) -(trans s4327 s290) -(trans s4327 s303) -(trans s4327 s316) -(trans s4328 s297) -(trans s4328 s310) -(trans s4328 s323) -(trans s4329 s304) -(trans s4329 s317) -(trans s4329 s330) -(trans s4330 s311) -(trans s4330 s324) -(trans s4330 s337) -(trans s4331 s318) -(trans s4331 s331) -(trans s4331 s344) -(trans s4332 s325) -(trans s4332 s338) -(trans s4332 s351) -(trans s4333 s332) -(trans s4333 s345) -(trans s4333 s358) -(trans s4334 s339) -(trans s4334 s352) -(trans s4334 s365) -(trans s4335 s346) -(trans s4335 s359) -(trans s4335 s372) -(trans s4336 s353) -(trans s4336 s366) -(trans s4336 s379) -(trans s4337 s360) -(trans s4337 s373) -(trans s4337 s386) -(trans s4338 s367) -(trans s4338 s380) -(trans s4338 s393) -(trans s4339 s374) -(trans s4339 s387) -(trans s4339 s400) -(trans s4340 s381) -(trans s4340 s394) -(trans s4340 s407) -(trans s4341 s388) -(trans s4341 s401) -(trans s4341 s414) -(trans s4342 s395) -(trans s4342 s408) -(trans s4342 s421) -(trans s4343 s402) -(trans s4343 s415) -(trans s4343 s428) -(trans s4344 s409) -(trans s4344 s422) -(trans s4344 s435) -(trans s4345 s416) -(trans s4345 s429) -(trans s4345 s442) -(trans s4346 s423) -(trans s4346 s436) -(trans s4346 s449) -(trans s4347 s430) -(trans s4347 s443) -(trans s4347 s456) -(trans s4348 s437) -(trans s4348 s450) -(trans s4348 s463) -(trans s4349 s444) -(trans s4349 s457) -(trans s4349 s470) -(trans s4350 s451) -(trans s4350 s464) -(trans s4350 s477) -(trans s4351 s458) -(trans s4351 s471) -(trans s4351 s484) -(trans s4352 s465) -(trans s4352 s478) -(trans s4352 s491) -(trans s4353 s472) -(trans s4353 s485) -(trans s4353 s498) -(trans s4354 s479) -(trans s4354 s492) -(trans s4354 s505) -(trans s4355 s486) -(trans s4355 s499) -(trans s4355 s512) -(trans s4356 s493) -(trans s4356 s506) -(trans s4356 s519) -(trans s4357 s500) -(trans s4357 s513) -(trans s4357 s526) -(trans s4358 s507) -(trans s4358 s520) -(trans s4358 s533) -(trans s4359 s514) -(trans s4359 s527) -(trans s4359 s540) -(trans s4360 s521) -(trans s4360 s534) -(trans s4360 s547) -(trans s4361 s528) -(trans s4361 s541) -(trans s4361 s554) -(trans s4362 s535) -(trans s4362 s548) -(trans s4362 s561) -(trans s4363 s542) -(trans s4363 s555) -(trans s4363 s568) -(trans s4364 s549) -(trans s4364 s562) -(trans s4364 s575) -(trans s4365 s556) -(trans s4365 s569) -(trans s4365 s582) -(trans s4366 s563) -(trans s4366 s576) -(trans s4366 s589) -(trans s4367 s570) -(trans s4367 s583) -(trans s4367 s596) -(trans s4368 s577) -(trans s4368 s590) -(trans s4368 s603) -(trans s4369 s584) -(trans s4369 s597) -(trans s4369 s610) -(trans s4370 s591) -(trans s4370 s604) -(trans s4370 s617) -(trans s4371 s598) -(trans s4371 s611) -(trans s4371 s624) -(trans s4372 s605) -(trans s4372 s618) -(trans s4372 s631) -(trans s4373 s612) -(trans s4373 s625) -(trans s4373 s638) -(trans s4374 s619) -(trans s4374 s632) -(trans s4374 s645) -(trans s4375 s626) -(trans s4375 s639) -(trans s4375 s652) -(trans s4376 s633) -(trans s4376 s646) -(trans s4376 s659) -(trans s4377 s640) -(trans s4377 s653) -(trans s4377 s666) -(trans s4378 s647) -(trans s4378 s660) -(trans s4378 s673) -(trans s4379 s654) -(trans s4379 s667) -(trans s4379 s680) -(trans s4380 s661) -(trans s4380 s674) -(trans s4380 s687) -(trans s4381 s668) -(trans s4381 s681) -(trans s4381 s694) -(trans s4382 s675) -(trans s4382 s688) -(trans s4382 s701) -(trans s4383 s682) -(trans s4383 s695) -(trans s4383 s708) -(trans s4384 s689) -(trans s4384 s702) -(trans s4384 s715) -(trans s4385 s696) -(trans s4385 s709) -(trans s4385 s722) -(trans s4386 s703) -(trans s4386 s716) -(trans s4386 s729) -(trans s4387 s710) -(trans s4387 s723) -(trans s4387 s736) -(trans s4388 s717) -(trans s4388 s730) -(trans s4388 s743) -(trans s4389 s724) -(trans s4389 s737) -(trans s4389 s750) -(trans s4390 s731) -(trans s4390 s744) -(trans s4390 s757) -(trans s4391 s738) -(trans s4391 s751) -(trans s4391 s764) -(trans s4392 s745) -(trans s4392 s758) -(trans s4392 s771) -(trans s4393 s752) -(trans s4393 s765) -(trans s4393 s778) -(trans s4394 s759) -(trans s4394 s772) -(trans s4394 s785) -(trans s4395 s766) -(trans s4395 s779) -(trans s4395 s792) -(trans s4396 s773) -(trans s4396 s786) -(trans s4396 s799) -(trans s4397 s780) -(trans s4397 s793) -(trans s4397 s806) -(trans s4398 s787) -(trans s4398 s800) -(trans s4398 s813) -(trans s4399 s794) -(trans s4399 s807) -(trans s4399 s820) -(trans s4400 s801) -(trans s4400 s814) -(trans s4400 s827) -(trans s4401 s808) -(trans s4401 s821) -(trans s4401 s834) -(trans s4402 s815) -(trans s4402 s828) -(trans s4402 s841) -(trans s4403 s822) -(trans s4403 s835) -(trans s4403 s848) -(trans s4404 s829) -(trans s4404 s842) -(trans s4404 s855) -(trans s4405 s836) -(trans s4405 s849) -(trans s4405 s862) -(trans s4406 s843) -(trans s4406 s856) -(trans s4406 s869) -(trans s4407 s850) -(trans s4407 s863) -(trans s4407 s876) -(trans s4408 s857) -(trans s4408 s870) -(trans s4408 s883) -(trans s4409 s864) -(trans s4409 s877) -(trans s4409 s890) -(trans s4410 s871) -(trans s4410 s884) -(trans s4410 s897) -(trans s4411 s878) -(trans s4411 s891) -(trans s4411 s904) -(trans s4412 s885) -(trans s4412 s898) -(trans s4412 s911) -(trans s4413 s892) -(trans s4413 s905) -(trans s4413 s918) -(trans s4414 s899) -(trans s4414 s912) -(trans s4414 s925) -(trans s4415 s906) -(trans s4415 s919) -(trans s4415 s932) -(trans s4416 s913) -(trans s4416 s926) -(trans s4416 s939) -(trans s4417 s920) -(trans s4417 s933) -(trans s4417 s946) -(trans s4418 s927) -(trans s4418 s940) -(trans s4418 s953) -(trans s4419 s934) -(trans s4419 s947) -(trans s4419 s960) -(trans s4420 s941) -(trans s4420 s954) -(trans s4420 s967) -(trans s4421 s948) -(trans s4421 s961) -(trans s4421 s974) -(trans s4422 s955) -(trans s4422 s968) -(trans s4422 s981) -(trans s4423 s962) -(trans s4423 s975) -(trans s4423 s988) -(trans s4424 s969) -(trans s4424 s982) -(trans s4424 s995) -(trans s4425 s976) -(trans s4425 s989) -(trans s4425 s1002) -(trans s4426 s983) -(trans s4426 s996) -(trans s4426 s1009) -(trans s4427 s990) -(trans s4427 s1003) -(trans s4427 s1016) -(trans s4428 s997) -(trans s4428 s1010) -(trans s4428 s1023) -(trans s4429 s1004) -(trans s4429 s1017) -(trans s4429 s1030) -(trans s4430 s1011) -(trans s4430 s1024) -(trans s4430 s1037) -(trans s4431 s1018) -(trans s4431 s1031) -(trans s4431 s1044) -(trans s4432 s1025) -(trans s4432 s1038) -(trans s4432 s1051) -(trans s4433 s1032) -(trans s4433 s1045) -(trans s4433 s1058) -(trans s4434 s1039) -(trans s4434 s1052) -(trans s4434 s1065) -(trans s4435 s1046) -(trans s4435 s1059) -(trans s4435 s1072) -(trans s4436 s1053) -(trans s4436 s1066) -(trans s4436 s1079) -(trans s4437 s1060) -(trans s4437 s1073) -(trans s4437 s1086) -(trans s4438 s1067) -(trans s4438 s1080) -(trans s4438 s1093) -(trans s4439 s1074) -(trans s4439 s1087) -(trans s4439 s1100) -(trans s4440 s1081) -(trans s4440 s1094) -(trans s4440 s1107) -(trans s4441 s1088) -(trans s4441 s1101) -(trans s4441 s1114) -(trans s4442 s1095) -(trans s4442 s1108) -(trans s4442 s1121) -(trans s4443 s1102) -(trans s4443 s1115) -(trans s4443 s1128) -(trans s4444 s1109) -(trans s4444 s1122) -(trans s4444 s1135) -(trans s4445 s1116) -(trans s4445 s1129) -(trans s4445 s1142) -(trans s4446 s1123) -(trans s4446 s1136) -(trans s4446 s1149) -(trans s4447 s1130) -(trans s4447 s1143) -(trans s4447 s1156) -(trans s4448 s1137) -(trans s4448 s1150) -(trans s4448 s1163) -(trans s4449 s1144) -(trans s4449 s1157) -(trans s4449 s1170) -(trans s4450 s1151) -(trans s4450 s1164) -(trans s4450 s1177) -(trans s4451 s1158) -(trans s4451 s1171) -(trans s4451 s1184) -(trans s4452 s1165) -(trans s4452 s1178) -(trans s4452 s1191) -(trans s4453 s1172) -(trans s4453 s1185) -(trans s4453 s1198) -(trans s4454 s1179) -(trans s4454 s1192) -(trans s4454 s1205) -(trans s4455 s1186) -(trans s4455 s1199) -(trans s4455 s1212) -(trans s4456 s1193) -(trans s4456 s1206) -(trans s4456 s1219) -(trans s4457 s1200) -(trans s4457 s1213) -(trans s4457 s1226) -(trans s4458 s1207) -(trans s4458 s1220) -(trans s4458 s1233) -(trans s4459 s1214) -(trans s4459 s1227) -(trans s4459 s1240) -(trans s4460 s1221) -(trans s4460 s1234) -(trans s4460 s1247) -(trans s4461 s1228) -(trans s4461 s1241) -(trans s4461 s1254) -(trans s4462 s1235) -(trans s4462 s1248) -(trans s4462 s1261) -(trans s4463 s1242) -(trans s4463 s1255) -(trans s4463 s1268) -(trans s4464 s1249) -(trans s4464 s1262) -(trans s4464 s1275) -(trans s4465 s1256) -(trans s4465 s1269) -(trans s4465 s1282) -(trans s4466 s1263) -(trans s4466 s1276) -(trans s4466 s1289) -(trans s4467 s1270) -(trans s4467 s1283) -(trans s4467 s1296) -(trans s4468 s1277) -(trans s4468 s1290) -(trans s4468 s1303) -(trans s4469 s1284) -(trans s4469 s1297) -(trans s4469 s1310) -(trans s4470 s1291) -(trans s4470 s1304) -(trans s4470 s1317) -(trans s4471 s1298) -(trans s4471 s1311) -(trans s4471 s1324) -(trans s4472 s1305) -(trans s4472 s1318) -(trans s4472 s1331) -(trans s4473 s1312) -(trans s4473 s1325) -(trans s4473 s1338) -(trans s4474 s1319) -(trans s4474 s1332) -(trans s4474 s1345) -(trans s4475 s1326) -(trans s4475 s1339) -(trans s4475 s1352) -(trans s4476 s1333) -(trans s4476 s1346) -(trans s4476 s1359) -(trans s4477 s1340) -(trans s4477 s1353) -(trans s4477 s1366) -(trans s4478 s1347) -(trans s4478 s1360) -(trans s4478 s1373) -(trans s4479 s1354) -(trans s4479 s1367) -(trans s4479 s1380) -(trans s4480 s1361) -(trans s4480 s1374) -(trans s4480 s1387) -(trans s4481 s1368) -(trans s4481 s1381) -(trans s4481 s1394) -(trans s4482 s1375) -(trans s4482 s1388) -(trans s4482 s1401) -(trans s4483 s1382) -(trans s4483 s1395) -(trans s4483 s1408) -(trans s4484 s1389) -(trans s4484 s1402) -(trans s4484 s1415) -(trans s4485 s1396) -(trans s4485 s1409) -(trans s4485 s1422) -(trans s4486 s1403) -(trans s4486 s1416) -(trans s4486 s1429) -(trans s4487 s1410) -(trans s4487 s1423) -(trans s4487 s1436) -(trans s4488 s1417) -(trans s4488 s1430) -(trans s4488 s1443) -(trans s4489 s1424) -(trans s4489 s1437) -(trans s4489 s1450) -(trans s4490 s1431) -(trans s4490 s1444) -(trans s4490 s1457) -(trans s4491 s1438) -(trans s4491 s1451) -(trans s4491 s1464) -(trans s4492 s1445) -(trans s4492 s1458) -(trans s4492 s1471) -(trans s4493 s1452) -(trans s4493 s1465) -(trans s4493 s1478) -(trans s4494 s1459) -(trans s4494 s1472) -(trans s4494 s1485) -(trans s4495 s1466) -(trans s4495 s1479) -(trans s4495 s1492) -(trans s4496 s1473) -(trans s4496 s1486) -(trans s4496 s1499) -(trans s4497 s1480) -(trans s4497 s1493) -(trans s4497 s1506) -(trans s4498 s1487) -(trans s4498 s1500) -(trans s4498 s1513) -(trans s4499 s1494) -(trans s4499 s1507) -(trans s4499 s1520) -(trans s4500 s1501) -(trans s4500 s1514) -(trans s4500 s1527) -(trans s4501 s1508) -(trans s4501 s1521) -(trans s4501 s1534) -(trans s4502 s1515) -(trans s4502 s1528) -(trans s4502 s1541) -(trans s4503 s1522) -(trans s4503 s1535) -(trans s4503 s1548) -(trans s4504 s1529) -(trans s4504 s1542) -(trans s4504 s1555) -(trans s4505 s1536) -(trans s4505 s1549) -(trans s4505 s1562) -(trans s4506 s1543) -(trans s4506 s1556) -(trans s4506 s1569) -(trans s4507 s1550) -(trans s4507 s1563) -(trans s4507 s1576) -(trans s4508 s1557) -(trans s4508 s1570) -(trans s4508 s1583) -(trans s4509 s1564) -(trans s4509 s1577) -(trans s4509 s1590) -(trans s4510 s1571) -(trans s4510 s1584) -(trans s4510 s1597) -(trans s4511 s1578) -(trans s4511 s1591) -(trans s4511 s1604) -(trans s4512 s1585) -(trans s4512 s1598) -(trans s4512 s1611) -(trans s4513 s1592) -(trans s4513 s1605) -(trans s4513 s1618) -(trans s4514 s1599) -(trans s4514 s1612) -(trans s4514 s1625) -(trans s4515 s1606) -(trans s4515 s1619) -(trans s4515 s1632) -(trans s4516 s1613) -(trans s4516 s1626) -(trans s4516 s1639) -(trans s4517 s1620) -(trans s4517 s1633) -(trans s4517 s1646) -(trans s4518 s1627) -(trans s4518 s1640) -(trans s4518 s1653) -(trans s4519 s1634) -(trans s4519 s1647) -(trans s4519 s1660) -(trans s4520 s1641) -(trans s4520 s1654) -(trans s4520 s1667) -(trans s4521 s1648) -(trans s4521 s1661) -(trans s4521 s1674) -(trans s4522 s1655) -(trans s4522 s1668) -(trans s4522 s1681) -(trans s4523 s1662) -(trans s4523 s1675) -(trans s4523 s1688) -(trans s4524 s1669) -(trans s4524 s1682) -(trans s4524 s1695) -(trans s4525 s1676) -(trans s4525 s1689) -(trans s4525 s1702) -(trans s4526 s1683) -(trans s4526 s1696) -(trans s4526 s1709) -(trans s4527 s1690) -(trans s4527 s1703) -(trans s4527 s1716) -(trans s4528 s1697) -(trans s4528 s1710) -(trans s4528 s1723) -(trans s4529 s1704) -(trans s4529 s1717) -(trans s4529 s1730) -(trans s4530 s1711) -(trans s4530 s1724) -(trans s4530 s1737) -(trans s4531 s1718) -(trans s4531 s1731) -(trans s4531 s1744) -(trans s4532 s1725) -(trans s4532 s1738) -(trans s4532 s1751) -(trans s4533 s1732) -(trans s4533 s1745) -(trans s4533 s1758) -(trans s4534 s1739) -(trans s4534 s1752) -(trans s4534 s1765) -(trans s4535 s1746) -(trans s4535 s1759) -(trans s4535 s1772) -(trans s4536 s1753) -(trans s4536 s1766) -(trans s4536 s1779) -(trans s4537 s1760) -(trans s4537 s1773) -(trans s4537 s1786) -(trans s4538 s1767) -(trans s4538 s1780) -(trans s4538 s1793) -(trans s4539 s1774) -(trans s4539 s1787) -(trans s4539 s1800) -(trans s4540 s1781) -(trans s4540 s1794) -(trans s4540 s1807) -(trans s4541 s1788) -(trans s4541 s1801) -(trans s4541 s1814) -(trans s4542 s1795) -(trans s4542 s1808) -(trans s4542 s1821) -(trans s4543 s1802) -(trans s4543 s1815) -(trans s4543 s1828) -(trans s4544 s1809) -(trans s4544 s1822) -(trans s4544 s1835) -(trans s4545 s1816) -(trans s4545 s1829) -(trans s4545 s1842) -(trans s4546 s1823) -(trans s4546 s1836) -(trans s4546 s1849) -(trans s4547 s1830) -(trans s4547 s1843) -(trans s4547 s1856) -(trans s4548 s1837) -(trans s4548 s1850) -(trans s4548 s1863) -(trans s4549 s1844) -(trans s4549 s1857) -(trans s4549 s1870) -(trans s4550 s1851) -(trans s4550 s1864) -(trans s4550 s1877) -(trans s4551 s1858) -(trans s4551 s1871) -(trans s4551 s1884) -(trans s4552 s1865) -(trans s4552 s1878) -(trans s4552 s1891) -(trans s4553 s1872) -(trans s4553 s1885) -(trans s4553 s1898) -(trans s4554 s1879) -(trans s4554 s1892) -(trans s4554 s1905) -(trans s4555 s1886) -(trans s4555 s1899) -(trans s4555 s1912) -(trans s4556 s1893) -(trans s4556 s1906) -(trans s4556 s1919) -(trans s4557 s1900) -(trans s4557 s1913) -(trans s4557 s1926) -(trans s4558 s1907) -(trans s4558 s1920) -(trans s4558 s1933) -(trans s4559 s1914) -(trans s4559 s1927) -(trans s4559 s1940) -(trans s4560 s1921) -(trans s4560 s1934) -(trans s4560 s1947) -(trans s4561 s1928) -(trans s4561 s1941) -(trans s4561 s1954) -(trans s4562 s1935) -(trans s4562 s1948) -(trans s4562 s1961) -(trans s4563 s1942) -(trans s4563 s1955) -(trans s4563 s1968) -(trans s4564 s1949) -(trans s4564 s1962) -(trans s4564 s1975) -(trans s4565 s1956) -(trans s4565 s1969) -(trans s4565 s1982) -(trans s4566 s1963) -(trans s4566 s1976) -(trans s4566 s1989) -(trans s4567 s1970) -(trans s4567 s1983) -(trans s4567 s1996) -(trans s4568 s1977) -(trans s4568 s1990) -(trans s4568 s2003) -(trans s4569 s1984) -(trans s4569 s1997) -(trans s4569 s2010) -(trans s4570 s1991) -(trans s4570 s2004) -(trans s4570 s2017) -(trans s4571 s1998) -(trans s4571 s2011) -(trans s4571 s2024) -(trans s4572 s2005) -(trans s4572 s2018) -(trans s4572 s2031) -(trans s4573 s2012) -(trans s4573 s2025) -(trans s4573 s2038) -(trans s4574 s2019) -(trans s4574 s2032) -(trans s4574 s2045) -(trans s4575 s2026) -(trans s4575 s2039) -(trans s4575 s2052) -(trans s4576 s2033) -(trans s4576 s2046) -(trans s4576 s2059) -(trans s4577 s2040) -(trans s4577 s2053) -(trans s4577 s2066) -(trans s4578 s2047) -(trans s4578 s2060) -(trans s4578 s2073) -(trans s4579 s2054) -(trans s4579 s2067) -(trans s4579 s2080) -(trans s4580 s2061) -(trans s4580 s2074) -(trans s4580 s2087) -(trans s4581 s2068) -(trans s4581 s2081) -(trans s4581 s2094) -(trans s4582 s2075) -(trans s4582 s2088) -(trans s4582 s2101) -(trans s4583 s2082) -(trans s4583 s2095) -(trans s4583 s2108) -(trans s4584 s2089) -(trans s4584 s2102) -(trans s4584 s2115) -(trans s4585 s2096) -(trans s4585 s2109) -(trans s4585 s2122) -(trans s4586 s2103) -(trans s4586 s2116) -(trans s4586 s2129) -(trans s4587 s2110) -(trans s4587 s2123) -(trans s4587 s2136) -(trans s4588 s2117) -(trans s4588 s2130) -(trans s4588 s2143) -(trans s4589 s2124) -(trans s4589 s2137) -(trans s4589 s2150) -(trans s4590 s2131) -(trans s4590 s2144) -(trans s4590 s2157) -(trans s4591 s2138) -(trans s4591 s2151) -(trans s4591 s2164) -(trans s4592 s2145) -(trans s4592 s2158) -(trans s4592 s2171) -(trans s4593 s2152) -(trans s4593 s2165) -(trans s4593 s2178) -(trans s4594 s2159) -(trans s4594 s2172) -(trans s4594 s2185) -(trans s4595 s2166) -(trans s4595 s2179) -(trans s4595 s2192) -(trans s4596 s2173) -(trans s4596 s2186) -(trans s4596 s2199) -(trans s4597 s2180) -(trans s4597 s2193) -(trans s4597 s2206) -(trans s4598 s2187) -(trans s4598 s2200) -(trans s4598 s2213) -(trans s4599 s2194) -(trans s4599 s2207) -(trans s4599 s2220) -(trans s4600 s2201) -(trans s4600 s2214) -(trans s4600 s2227) -(trans s4601 s2208) -(trans s4601 s2221) -(trans s4601 s2234) -(trans s4602 s2215) -(trans s4602 s2228) -(trans s4602 s2241) -(trans s4603 s2222) -(trans s4603 s2235) -(trans s4603 s2248) -(trans s4604 s2229) -(trans s4604 s2242) -(trans s4604 s2255) -(trans s4605 s2236) -(trans s4605 s2249) -(trans s4605 s2262) -(trans s4606 s2243) -(trans s4606 s2256) -(trans s4606 s2269) -(trans s4607 s2250) -(trans s4607 s2263) -(trans s4607 s2276) -(trans s4608 s2257) -(trans s4608 s2270) -(trans s4608 s2283) -(trans s4609 s2264) -(trans s4609 s2277) -(trans s4609 s2290) -(trans s4610 s2271) -(trans s4610 s2284) -(trans s4610 s2297) -(trans s4611 s2278) -(trans s4611 s2291) -(trans s4611 s2304) -(trans s4612 s2285) -(trans s4612 s2298) -(trans s4612 s2311) -(trans s4613 s2292) -(trans s4613 s2305) -(trans s4613 s2318) -(trans s4614 s2299) -(trans s4614 s2312) -(trans s4614 s2325) -(trans s4615 s2306) -(trans s4615 s2319) -(trans s4615 s2332) -(trans s4616 s2313) -(trans s4616 s2326) -(trans s4616 s2339) -(trans s4617 s2320) -(trans s4617 s2333) -(trans s4617 s2346) -(trans s4618 s2327) -(trans s4618 s2340) -(trans s4618 s2353) -(trans s4619 s2334) -(trans s4619 s2347) -(trans s4619 s2360) -(trans s4620 s2341) -(trans s4620 s2354) -(trans s4620 s2367) -(trans s4621 s2348) -(trans s4621 s2361) -(trans s4621 s2374) -(trans s4622 s2355) -(trans s4622 s2368) -(trans s4622 s2381) -(trans s4623 s2362) -(trans s4623 s2375) -(trans s4623 s2388) -(trans s4624 s2369) -(trans s4624 s2382) -(trans s4624 s2395) -(trans s4625 s2376) -(trans s4625 s2389) -(trans s4625 s2402) -(trans s4626 s2383) -(trans s4626 s2396) -(trans s4626 s2409) -(trans s4627 s2390) -(trans s4627 s2403) -(trans s4627 s2416) -(trans s4628 s2397) -(trans s4628 s2410) -(trans s4628 s2423) -(trans s4629 s2404) -(trans s4629 s2417) -(trans s4629 s2430) -(trans s4630 s2411) -(trans s4630 s2424) -(trans s4630 s2437) -(trans s4631 s2418) -(trans s4631 s2431) -(trans s4631 s2444) -(trans s4632 s2425) -(trans s4632 s2438) -(trans s4632 s2451) -(trans s4633 s2432) -(trans s4633 s2445) -(trans s4633 s2458) -(trans s4634 s2439) -(trans s4634 s2452) -(trans s4634 s2465) -(trans s4635 s2446) -(trans s4635 s2459) -(trans s4635 s2472) -(trans s4636 s2453) -(trans s4636 s2466) -(trans s4636 s2479) -(trans s4637 s2460) -(trans s4637 s2473) -(trans s4637 s2486) -(trans s4638 s2467) -(trans s4638 s2480) -(trans s4638 s2493) -(trans s4639 s2474) -(trans s4639 s2487) -(trans s4639 s2500) -(trans s4640 s2481) -(trans s4640 s2494) -(trans s4640 s2507) -(trans s4641 s2488) -(trans s4641 s2501) -(trans s4641 s2514) -(trans s4642 s2495) -(trans s4642 s2508) -(trans s4642 s2521) -(trans s4643 s2502) -(trans s4643 s2515) -(trans s4643 s2528) -(trans s4644 s2509) -(trans s4644 s2522) -(trans s4644 s2535) -(trans s4645 s2516) -(trans s4645 s2529) -(trans s4645 s2542) -(trans s4646 s2523) -(trans s4646 s2536) -(trans s4646 s2549) -(trans s4647 s2530) -(trans s4647 s2543) -(trans s4647 s2556) -(trans s4648 s2537) -(trans s4648 s2550) -(trans s4648 s2563) -(trans s4649 s2544) -(trans s4649 s2557) -(trans s4649 s2570) -(trans s4650 s2551) -(trans s4650 s2564) -(trans s4650 s2577) -(trans s4651 s2558) -(trans s4651 s2571) -(trans s4651 s2584) -(trans s4652 s2565) -(trans s4652 s2578) -(trans s4652 s2591) -(trans s4653 s2572) -(trans s4653 s2585) -(trans s4653 s2598) -(trans s4654 s2579) -(trans s4654 s2592) -(trans s4654 s2605) -(trans s4655 s2586) -(trans s4655 s2599) -(trans s4655 s2612) -(trans s4656 s2593) -(trans s4656 s2606) -(trans s4656 s2619) -(trans s4657 s2600) -(trans s4657 s2613) -(trans s4657 s2626) -(trans s4658 s2607) -(trans s4658 s2620) -(trans s4658 s2633) -(trans s4659 s2614) -(trans s4659 s2627) -(trans s4659 s2640) -(trans s4660 s2621) -(trans s4660 s2634) -(trans s4660 s2647) -(trans s4661 s2628) -(trans s4661 s2641) -(trans s4661 s2654) -(trans s4662 s2635) -(trans s4662 s2648) -(trans s4662 s2661) -(trans s4663 s2642) -(trans s4663 s2655) -(trans s4663 s2668) -(trans s4664 s2649) -(trans s4664 s2662) -(trans s4664 s2675) -(trans s4665 s2656) -(trans s4665 s2669) -(trans s4665 s2682) -(trans s4666 s2663) -(trans s4666 s2676) -(trans s4666 s2689) -(trans s4667 s2670) -(trans s4667 s2683) -(trans s4667 s2696) -(trans s4668 s2677) -(trans s4668 s2690) -(trans s4668 s2703) -(trans s4669 s2684) -(trans s4669 s2697) -(trans s4669 s2710) -(trans s4670 s2691) -(trans s4670 s2704) -(trans s4670 s2717) -(trans s4671 s2698) -(trans s4671 s2711) -(trans s4671 s2724) -(trans s4672 s2705) -(trans s4672 s2718) -(trans s4672 s2731) -(trans s4673 s2712) -(trans s4673 s2725) -(trans s4673 s2738) -(trans s4674 s2719) -(trans s4674 s2732) -(trans s4674 s2745) -(trans s4675 s2726) -(trans s4675 s2739) -(trans s4675 s2752) -(trans s4676 s2733) -(trans s4676 s2746) -(trans s4676 s2759) -(trans s4677 s2740) -(trans s4677 s2753) -(trans s4677 s2766) -(trans s4678 s2747) -(trans s4678 s2760) -(trans s4678 s2773) -(trans s4679 s2754) -(trans s4679 s2767) -(trans s4679 s2780) -(trans s4680 s2761) -(trans s4680 s2774) -(trans s4680 s2787) -(trans s4681 s2768) -(trans s4681 s2781) -(trans s4681 s2794) -(trans s4682 s2775) -(trans s4682 s2788) -(trans s4682 s2801) -(trans s4683 s2782) -(trans s4683 s2795) -(trans s4683 s2808) -(trans s4684 s2789) -(trans s4684 s2802) -(trans s4684 s2815) -(trans s4685 s2796) -(trans s4685 s2809) -(trans s4685 s2822) -(trans s4686 s2803) -(trans s4686 s2816) -(trans s4686 s2829) -(trans s4687 s2810) -(trans s4687 s2823) -(trans s4687 s2836) -(trans s4688 s2817) -(trans s4688 s2830) -(trans s4688 s2843) -(trans s4689 s2824) -(trans s4689 s2837) -(trans s4689 s2850) -(trans s4690 s2831) -(trans s4690 s2844) -(trans s4690 s2857) -(trans s4691 s2838) -(trans s4691 s2851) -(trans s4691 s2864) -(trans s4692 s2845) -(trans s4692 s2858) -(trans s4692 s2871) -(trans s4693 s2852) -(trans s4693 s2865) -(trans s4693 s2878) -(trans s4694 s2859) -(trans s4694 s2872) -(trans s4694 s2885) -(trans s4695 s2866) -(trans s4695 s2879) -(trans s4695 s2892) -(trans s4696 s2873) -(trans s4696 s2886) -(trans s4696 s2899) -(trans s4697 s2880) -(trans s4697 s2893) -(trans s4697 s2906) -(trans s4698 s2887) -(trans s4698 s2900) -(trans s4698 s2913) -(trans s4699 s2894) -(trans s4699 s2907) -(trans s4699 s2920) -(trans s4700 s2901) -(trans s4700 s2914) -(trans s4700 s2927) -(trans s4701 s2908) -(trans s4701 s2921) -(trans s4701 s2934) -(trans s4702 s2915) -(trans s4702 s2928) -(trans s4702 s2941) -(trans s4703 s2922) -(trans s4703 s2935) -(trans s4703 s2948) -(trans s4704 s2929) -(trans s4704 s2942) -(trans s4704 s2955) -(trans s4705 s2936) -(trans s4705 s2949) -(trans s4705 s2962) -(trans s4706 s2943) -(trans s4706 s2956) -(trans s4706 s2969) -(trans s4707 s2950) -(trans s4707 s2963) -(trans s4707 s2976) -(trans s4708 s2957) -(trans s4708 s2970) -(trans s4708 s2983) -(trans s4709 s2964) -(trans s4709 s2977) -(trans s4709 s2990) -(trans s4710 s2971) -(trans s4710 s2984) -(trans s4710 s2997) -(trans s4711 s2978) -(trans s4711 s2991) -(trans s4711 s3004) -(trans s4712 s2985) -(trans s4712 s2998) -(trans s4712 s3011) -(trans s4713 s2992) -(trans s4713 s3005) -(trans s4713 s3018) -(trans s4714 s2999) -(trans s4714 s3012) -(trans s4714 s3025) -(trans s4715 s3006) -(trans s4715 s3019) -(trans s4715 s3032) -(trans s4716 s3013) -(trans s4716 s3026) -(trans s4716 s3039) -(trans s4717 s3020) -(trans s4717 s3033) -(trans s4717 s3046) -(trans s4718 s3027) -(trans s4718 s3040) -(trans s4718 s3053) -(trans s4719 s3034) -(trans s4719 s3047) -(trans s4719 s3060) -(trans s4720 s3041) -(trans s4720 s3054) -(trans s4720 s3067) -(trans s4721 s3048) -(trans s4721 s3061) -(trans s4721 s3074) -(trans s4722 s3055) -(trans s4722 s3068) -(trans s4722 s3081) -(trans s4723 s3062) -(trans s4723 s3075) -(trans s4723 s3088) -(trans s4724 s3069) -(trans s4724 s3082) -(trans s4724 s3095) -(trans s4725 s3076) -(trans s4725 s3089) -(trans s4725 s3102) -(trans s4726 s3083) -(trans s4726 s3096) -(trans s4726 s3109) -(trans s4727 s3090) -(trans s4727 s3103) -(trans s4727 s3116) -(trans s4728 s3097) -(trans s4728 s3110) -(trans s4728 s3123) -(trans s4729 s3104) -(trans s4729 s3117) -(trans s4729 s3130) -(trans s4730 s3111) -(trans s4730 s3124) -(trans s4730 s3137) -(trans s4731 s3118) -(trans s4731 s3131) -(trans s4731 s3144) -(trans s4732 s3125) -(trans s4732 s3138) -(trans s4732 s3151) -(trans s4733 s3132) -(trans s4733 s3145) -(trans s4733 s3158) -(trans s4734 s3139) -(trans s4734 s3152) -(trans s4734 s3165) -(trans s4735 s3146) -(trans s4735 s3159) -(trans s4735 s3172) -(trans s4736 s3153) -(trans s4736 s3166) -(trans s4736 s3179) -(trans s4737 s3160) -(trans s4737 s3173) -(trans s4737 s3186) -(trans s4738 s3167) -(trans s4738 s3180) -(trans s4738 s3193) -(trans s4739 s3174) -(trans s4739 s3187) -(trans s4739 s3200) -(trans s4740 s3181) -(trans s4740 s3194) -(trans s4740 s3207) -(trans s4741 s3188) -(trans s4741 s3201) -(trans s4741 s3214) -(trans s4742 s3195) -(trans s4742 s3208) -(trans s4742 s3221) -(trans s4743 s3202) -(trans s4743 s3215) -(trans s4743 s3228) -(trans s4744 s3209) -(trans s4744 s3222) -(trans s4744 s3235) -(trans s4745 s3216) -(trans s4745 s3229) -(trans s4745 s3242) -(trans s4746 s3223) -(trans s4746 s3236) -(trans s4746 s3249) -(trans s4747 s3230) -(trans s4747 s3243) -(trans s4747 s3256) -(trans s4748 s3237) -(trans s4748 s3250) -(trans s4748 s3263) -(trans s4749 s3244) -(trans s4749 s3257) -(trans s4749 s3270) -(trans s4750 s3251) -(trans s4750 s3264) -(trans s4750 s3277) -(trans s4751 s3258) -(trans s4751 s3271) -(trans s4751 s3284) -(trans s4752 s3265) -(trans s4752 s3278) -(trans s4752 s3291) -(trans s4753 s3272) -(trans s4753 s3285) -(trans s4753 s3298) -(trans s4754 s3279) -(trans s4754 s3292) -(trans s4754 s3305) -(trans s4755 s3286) -(trans s4755 s3299) -(trans s4755 s3312) -(trans s4756 s3293) -(trans s4756 s3306) -(trans s4756 s3319) -(trans s4757 s3300) -(trans s4757 s3313) -(trans s4757 s3326) -(trans s4758 s3307) -(trans s4758 s3320) -(trans s4758 s3333) -(trans s4759 s3314) -(trans s4759 s3327) -(trans s4759 s3340) -(trans s4760 s3321) -(trans s4760 s3334) -(trans s4760 s3347) -(trans s4761 s3328) -(trans s4761 s3341) -(trans s4761 s3354) -(trans s4762 s3335) -(trans s4762 s3348) -(trans s4762 s3361) -(trans s4763 s3342) -(trans s4763 s3355) -(trans s4763 s3368) -(trans s4764 s3349) -(trans s4764 s3362) -(trans s4764 s3375) -(trans s4765 s3356) -(trans s4765 s3369) -(trans s4765 s3382) -(trans s4766 s3363) -(trans s4766 s3376) -(trans s4766 s3389) -(trans s4767 s3370) -(trans s4767 s3383) -(trans s4767 s3396) -(trans s4768 s3377) -(trans s4768 s3390) -(trans s4768 s3403) -(trans s4769 s3384) -(trans s4769 s3397) -(trans s4769 s3410) -(trans s4770 s3391) -(trans s4770 s3404) -(trans s4770 s3417) -(trans s4771 s3398) -(trans s4771 s3411) -(trans s4771 s3424) -(trans s4772 s3405) -(trans s4772 s3418) -(trans s4772 s3431) -(trans s4773 s3412) -(trans s4773 s3425) -(trans s4773 s3438) -(trans s4774 s3419) -(trans s4774 s3432) -(trans s4774 s3445) -(trans s4775 s3426) -(trans s4775 s3439) -(trans s4775 s3452) -(trans s4776 s3433) -(trans s4776 s3446) -(trans s4776 s3459) -(trans s4777 s3440) -(trans s4777 s3453) -(trans s4777 s3466) -(trans s4778 s3447) -(trans s4778 s3460) -(trans s4778 s3473) -(trans s4779 s3454) -(trans s4779 s3467) -(trans s4779 s3480) -(trans s4780 s3461) -(trans s4780 s3474) -(trans s4780 s3487) -(trans s4781 s3468) -(trans s4781 s3481) -(trans s4781 s3494) -(trans s4782 s3475) -(trans s4782 s3488) -(trans s4782 s3501) -(trans s4783 s3482) -(trans s4783 s3495) -(trans s4783 s3508) -(trans s4784 s3489) -(trans s4784 s3502) -(trans s4784 s3515) -(trans s4785 s3496) -(trans s4785 s3509) -(trans s4785 s3522) -(trans s4786 s3503) -(trans s4786 s3516) -(trans s4786 s3529) -(trans s4787 s3510) -(trans s4787 s3523) -(trans s4787 s3536) -(trans s4788 s3517) -(trans s4788 s3530) -(trans s4788 s3543) -(trans s4789 s3524) -(trans s4789 s3537) -(trans s4789 s3550) -(trans s4790 s3531) -(trans s4790 s3544) -(trans s4790 s3557) -(trans s4791 s3538) -(trans s4791 s3551) -(trans s4791 s3564) -(trans s4792 s3545) -(trans s4792 s3558) -(trans s4792 s3571) -(trans s4793 s3552) -(trans s4793 s3565) -(trans s4793 s3578) -(trans s4794 s3559) -(trans s4794 s3572) -(trans s4794 s3585) -(trans s4795 s3566) -(trans s4795 s3579) -(trans s4795 s3592) -(trans s4796 s3573) -(trans s4796 s3586) -(trans s4796 s3599) -(trans s4797 s3580) -(trans s4797 s3593) -(trans s4797 s3606) -(trans s4798 s3587) -(trans s4798 s3600) -(trans s4798 s3613) -(trans s4799 s3594) -(trans s4799 s3607) -(trans s4799 s3620) -(trans s4800 s3601) -(trans s4800 s3614) -(trans s4800 s3627) -(trans s4801 s3608) -(trans s4801 s3621) -(trans s4801 s3634) -(trans s4802 s3615) -(trans s4802 s3628) -(trans s4802 s3641) -(trans s4803 s3622) -(trans s4803 s3635) -(trans s4803 s3648) -(trans s4804 s3629) -(trans s4804 s3642) -(trans s4804 s3655) -(trans s4805 s3636) -(trans s4805 s3649) -(trans s4805 s3662) -(trans s4806 s3643) -(trans s4806 s3656) -(trans s4806 s3669) -(trans s4807 s3650) -(trans s4807 s3663) -(trans s4807 s3676) -(trans s4808 s3657) -(trans s4808 s3670) -(trans s4808 s3683) -(trans s4809 s3664) -(trans s4809 s3677) -(trans s4809 s3690) -(trans s4810 s3671) -(trans s4810 s3684) -(trans s4810 s3697) -(trans s4811 s3678) -(trans s4811 s3691) -(trans s4811 s3704) -(trans s4812 s3685) -(trans s4812 s3698) -(trans s4812 s3711) -(trans s4813 s3692) -(trans s4813 s3705) -(trans s4813 s3718) -(trans s4814 s3699) -(trans s4814 s3712) -(trans s4814 s3725) -(trans s4815 s3706) -(trans s4815 s3719) -(trans s4815 s3732) -(trans s4816 s3713) -(trans s4816 s3726) -(trans s4816 s3739) -(trans s4817 s3720) -(trans s4817 s3733) -(trans s4817 s3746) -(trans s4818 s3727) -(trans s4818 s3740) -(trans s4818 s3753) -(trans s4819 s3734) -(trans s4819 s3747) -(trans s4819 s3760) -(trans s4820 s3741) -(trans s4820 s3754) -(trans s4820 s3767) -(trans s4821 s3748) -(trans s4821 s3761) -(trans s4821 s3774) -(trans s4822 s3755) -(trans s4822 s3768) -(trans s4822 s3781) -(trans s4823 s3762) -(trans s4823 s3775) -(trans s4823 s3788) -(trans s4824 s3769) -(trans s4824 s3782) -(trans s4824 s3795) -(trans s4825 s3776) -(trans s4825 s3789) -(trans s4825 s3802) -(trans s4826 s3783) -(trans s4826 s3796) -(trans s4826 s3809) -(trans s4827 s3790) -(trans s4827 s3803) -(trans s4827 s3816) -(trans s4828 s3797) -(trans s4828 s3810) -(trans s4828 s3823) -(trans s4829 s3804) -(trans s4829 s3817) -(trans s4829 s3830) -(trans s4830 s3811) -(trans s4830 s3824) -(trans s4830 s3837) -(trans s4831 s3818) -(trans s4831 s3831) -(trans s4831 s3844) -(trans s4832 s3825) -(trans s4832 s3838) -(trans s4832 s3851) -(trans s4833 s3832) -(trans s4833 s3845) -(trans s4833 s3858) -(trans s4834 s3839) -(trans s4834 s3852) -(trans s4834 s3865) -(trans s4835 s3846) -(trans s4835 s3859) -(trans s4835 s3872) -(trans s4836 s3853) -(trans s4836 s3866) -(trans s4836 s3879) -(trans s4837 s3860) -(trans s4837 s3873) -(trans s4837 s3886) -(trans s4838 s3867) -(trans s4838 s3880) -(trans s4838 s3893) -(trans s4839 s3874) -(trans s4839 s3887) -(trans s4839 s3900) -(trans s4840 s3881) -(trans s4840 s3894) -(trans s4840 s3907) -(trans s4841 s3888) -(trans s4841 s3901) -(trans s4841 s3914) -(trans s4842 s3895) -(trans s4842 s3908) -(trans s4842 s3921) -(trans s4843 s3902) -(trans s4843 s3915) -(trans s4843 s3928) -(trans s4844 s3909) -(trans s4844 s3922) -(trans s4844 s3935) -(trans s4845 s3916) -(trans s4845 s3929) -(trans s4845 s3942) -(trans s4846 s3923) -(trans s4846 s3936) -(trans s4846 s3949) -(trans s4847 s3930) -(trans s4847 s3943) -(trans s4847 s3956) -(trans s4848 s3937) -(trans s4848 s3950) -(trans s4848 s3963) -(trans s4849 s3944) -(trans s4849 s3957) -(trans s4849 s3970) -(trans s4850 s3951) -(trans s4850 s3964) -(trans s4850 s3977) -(trans s4851 s3958) -(trans s4851 s3971) -(trans s4851 s3984) -(trans s4852 s3965) -(trans s4852 s3978) -(trans s4852 s3991) -(trans s4853 s3972) -(trans s4853 s3985) -(trans s4853 s3998) -(trans s4854 s3979) -(trans s4854 s3992) -(trans s4854 s4005) -(trans s4855 s3986) -(trans s4855 s3999) -(trans s4855 s4012) -(trans s4856 s3993) -(trans s4856 s4006) -(trans s4856 s4019) -(trans s4857 s4000) -(trans s4857 s4013) -(trans s4857 s4026) -(trans s4858 s4007) -(trans s4858 s4020) -(trans s4858 s4033) -(trans s4859 s4014) -(trans s4859 s4027) -(trans s4859 s4040) -(trans s4860 s4021) -(trans s4860 s4034) -(trans s4860 s4047) -(trans s4861 s4028) -(trans s4861 s4041) -(trans s4861 s4054) -(trans s4862 s4035) -(trans s4862 s4048) -(trans s4862 s4061) -(trans s4863 s4042) -(trans s4863 s4055) -(trans s4863 s4068) -(trans s4864 s4049) -(trans s4864 s4062) -(trans s4864 s4075) -(trans s4865 s4056) -(trans s4865 s4069) -(trans s4865 s4082) -(trans s4866 s4063) -(trans s4866 s4076) -(trans s4866 s4089) -(trans s4867 s4070) -(trans s4867 s4083) -(trans s4867 s4096) -(trans s4868 s4077) -(trans s4868 s4090) -(trans s4868 s4103) -(trans s4869 s4084) -(trans s4869 s4097) -(trans s4869 s4110) -(trans s4870 s4091) -(trans s4870 s4104) -(trans s4870 s4117) -(trans s4871 s4098) -(trans s4871 s4111) -(trans s4871 s4124) -(trans s4872 s4105) -(trans s4872 s4118) -(trans s4872 s4131) -(trans s4873 s4112) -(trans s4873 s4125) -(trans s4873 s4138) -(trans s4874 s4119) -(trans s4874 s4132) -(trans s4874 s4145) -(trans s4875 s4126) -(trans s4875 s4139) -(trans s4875 s4152) -(trans s4876 s4133) -(trans s4876 s4146) -(trans s4876 s4159) -(trans s4877 s4140) -(trans s4877 s4153) -(trans s4877 s4166) -(trans s4878 s4147) -(trans s4878 s4160) -(trans s4878 s4173) -(trans s4879 s4154) -(trans s4879 s4167) -(trans s4879 s4180) -(trans s4880 s4161) -(trans s4880 s4174) -(trans s4880 s4187) -(trans s4881 s4168) -(trans s4881 s4181) -(trans s4881 s4194) -(trans s4882 s4175) -(trans s4882 s4188) -(trans s4882 s4201) -(trans s4883 s4182) -(trans s4883 s4195) -(trans s4883 s4208) -(trans s4884 s4189) -(trans s4884 s4202) -(trans s4884 s4215) -(trans s4885 s4196) -(trans s4885 s4209) -(trans s4885 s4222) -(trans s4886 s4203) -(trans s4886 s4216) -(trans s4886 s4229) -(trans s4887 s4210) -(trans s4887 s4223) -(trans s4887 s4236) -(trans s4888 s4217) -(trans s4888 s4230) -(trans s4888 s4243) -(trans s4889 s4224) -(trans s4889 s4237) -(trans s4889 s4250) -(trans s4890 s4231) -(trans s4890 s4244) -(trans s4890 s4257) -(trans s4891 s4238) -(trans s4891 s4251) -(trans s4891 s4264) -(trans s4892 s4245) -(trans s4892 s4258) -(trans s4892 s4271) -(trans s4893 s4252) -(trans s4893 s4265) -(trans s4893 s4278) -(trans s4894 s4259) -(trans s4894 s4272) -(trans s4894 s4285) -(trans s4895 s4266) -(trans s4895 s4279) -(trans s4895 s4292) -(trans s4896 s4273) -(trans s4896 s4286) -(trans s4896 s4299) -(trans s4897 s4280) -(trans s4897 s4293) -(trans s4897 s4306) -(trans s4898 s4287) -(trans s4898 s4300) -(trans s4898 s4313) -(trans s4899 s4294) -(trans s4899 s4307) -(trans s4899 s4320) -(trans s4900 s4301) -(trans s4900 s4314) -(trans s4900 s4327) -(trans s4901 s4308) -(trans s4901 s4321) -(trans s4901 s4334) -(trans s4902 s4315) -(trans s4902 s4328) -(trans s4902 s4341) -(trans s4903 s4322) -(trans s4903 s4335) -(trans s4903 s4348) -(trans s4904 s4329) -(trans s4904 s4342) -(trans s4904 s4355) -(trans s4905 s4336) -(trans s4905 s4349) -(trans s4905 s4362) -(trans s4906 s4343) -(trans s4906 s4356) -(trans s4906 s4369) -(trans s4907 s4350) -(trans s4907 s4363) -(trans s4907 s4376) -(trans s4908 s4357) -(trans s4908 s4370) -(trans s4908 s4383) -(trans s4909 s4364) -(trans s4909 s4377) -(trans s4909 s4390) -(trans s4910 s4371) -(trans s4910 s4384) -(trans s4910 s4397) -(trans s4911 s4378) -(trans s4911 s4391) -(trans s4911 s4404) -(trans s4912 s4385) -(trans s4912 s4398) -(trans s4912 s4411) -(trans s4913 s4392) -(trans s4913 s4405) -(trans s4913 s4418) -(trans s4914 s4399) -(trans s4914 s4412) -(trans s4914 s4425) -(trans s4915 s4406) -(trans s4915 s4419) -(trans s4915 s4432) -(trans s4916 s4413) -(trans s4916 s4426) -(trans s4916 s4439) -(trans s4917 s4420) -(trans s4917 s4433) -(trans s4917 s4446) -(trans s4918 s4427) -(trans s4918 s4440) -(trans s4918 s4453) -(trans s4919 s4434) -(trans s4919 s4447) -(trans s4919 s4460) -(trans s4920 s4441) -(trans s4920 s4454) -(trans s4920 s4467) -(trans s4921 s4448) -(trans s4921 s4461) -(trans s4921 s4474) -(trans s4922 s4455) -(trans s4922 s4468) -(trans s4922 s4481) -(trans s4923 s4462) -(trans s4923 s4475) -(trans s4923 s4488) -(trans s4924 s4469) -(trans s4924 s4482) -(trans s4924 s4495) -(trans s4925 s4476) -(trans s4925 s4489) -(trans s4925 s4502) -(trans s4926 s4483) -(trans s4926 s4496) -(trans s4926 s4509) -(trans s4927 s4490) -(trans s4927 s4503) -(trans s4927 s4516) -(trans s4928 s4497) -(trans s4928 s4510) -(trans s4928 s4523) -(trans s4929 s4504) -(trans s4929 s4517) -(trans s4929 s4530) -(trans s4930 s4511) -(trans s4930 s4524) -(trans s4930 s4537) -(trans s4931 s4518) -(trans s4931 s4531) -(trans s4931 s4544) -(trans s4932 s4525) -(trans s4932 s4538) -(trans s4932 s4551) -(trans s4933 s4532) -(trans s4933 s4545) -(trans s4933 s4558) -(trans s4934 s4539) -(trans s4934 s4552) -(trans s4934 s4565) -(trans s4935 s4546) -(trans s4935 s4559) -(trans s4935 s4572) -(trans s4936 s4553) -(trans s4936 s4566) -(trans s4936 s4579) -(trans s4937 s4560) -(trans s4937 s4573) -(trans s4937 s4586) -(trans s4938 s4567) -(trans s4938 s4580) -(trans s4938 s4593) -(trans s4939 s4574) -(trans s4939 s4587) -(trans s4939 s4600) -(trans s4940 s4581) -(trans s4940 s4594) -(trans s4940 s4607) -(trans s4941 s4588) -(trans s4941 s4601) -(trans s4941 s4614) -(trans s4942 s4595) -(trans s4942 s4608) -(trans s4942 s4621) -(trans s4943 s4602) -(trans s4943 s4615) -(trans s4943 s4628) -(trans s4944 s4609) -(trans s4944 s4622) -(trans s4944 s4635) -(trans s4945 s4616) -(trans s4945 s4629) -(trans s4945 s4642) -(trans s4946 s4623) -(trans s4946 s4636) -(trans s4946 s4649) -(trans s4947 s4630) -(trans s4947 s4643) -(trans s4947 s4656) -(trans s4948 s4637) -(trans s4948 s4650) -(trans s4948 s4663) -(trans s4949 s4644) -(trans s4949 s4657) -(trans s4949 s4670) -(trans s4950 s4651) -(trans s4950 s4664) -(trans s4950 s4677) -(trans s4951 s4658) -(trans s4951 s4671) -(trans s4951 s4684) -(trans s4952 s4665) -(trans s4952 s4678) -(trans s4952 s4691) -(trans s4953 s4672) -(trans s4953 s4685) -(trans s4953 s4698) -(trans s4954 s4679) -(trans s4954 s4692) -(trans s4954 s4705) -(trans s4955 s4686) -(trans s4955 s4699) -(trans s4955 s4712) -(trans s4956 s4693) -(trans s4956 s4706) -(trans s4956 s4719) -(trans s4957 s4700) -(trans s4957 s4713) -(trans s4957 s4726) -(trans s4958 s4707) -(trans s4958 s4720) -(trans s4958 s4733) -(trans s4959 s4714) -(trans s4959 s4727) -(trans s4959 s4740) -(trans s4960 s4721) -(trans s4960 s4734) -(trans s4960 s4747) -(trans s4961 s4728) -(trans s4961 s4741) -(trans s4961 s4754) -(trans s4962 s4735) -(trans s4962 s4748) -(trans s4962 s4761) -(trans s4963 s4742) -(trans s4963 s4755) -(trans s4963 s4768) -(trans s4964 s4749) -(trans s4964 s4762) -(trans s4964 s4775) -(trans s4965 s4756) -(trans s4965 s4769) -(trans s4965 s4782) -(trans s4966 s4763) -(trans s4966 s4776) -(trans s4966 s4789) -(trans s4967 s4770) -(trans s4967 s4783) -(trans s4967 s4796) -(trans s4968 s4777) -(trans s4968 s4790) -(trans s4968 s4803) -(trans s4969 s4784) -(trans s4969 s4797) -(trans s4969 s4810) -(trans s4970 s4791) -(trans s4970 s4804) -(trans s4970 s4817) -(trans s4971 s4798) -(trans s4971 s4811) -(trans s4971 s4824) -(trans s4972 s4805) -(trans s4972 s4818) -(trans s4972 s4831) -(trans s4973 s4812) -(trans s4973 s4825) -(trans s4973 s4838) -(trans s4974 s4819) -(trans s4974 s4832) -(trans s4974 s4845) -(trans s4975 s4826) -(trans s4975 s4839) -(trans s4975 s4852) -(trans s4976 s4833) -(trans s4976 s4846) -(trans s4976 s4859) -(trans s4977 s4840) -(trans s4977 s4853) -(trans s4977 s4866) -(trans s4978 s4847) -(trans s4978 s4860) -(trans s4978 s4873) -(trans s4979 s4854) -(trans s4979 s4867) -(trans s4979 s4880) -(trans s4980 s4861) -(trans s4980 s4874) -(trans s4980 s4887) -(trans s4981 s4868) -(trans s4981 s4881) -(trans s4981 s4894) -(trans s4982 s4875) -(trans s4982 s4888) -(trans s4982 s4901) -(trans s4983 s4882) -(trans s4983 s4895) -(trans s4983 s4908) -(trans s4984 s4889) -(trans s4984 s4902) -(trans s4984 s4915) -(trans s4985 s4896) -(trans s4985 s4909) -(trans s4985 s4922) -(trans s4986 s4903) -(trans s4986 s4916) -(trans s4986 s4929) -(trans s4987 s4910) -(trans s4987 s4923) -(trans s4987 s4936) -(trans s4988 s4917) -(trans s4988 s4930) -(trans s4988 s4943) -(trans s4989 s4924) -(trans s4989 s4937) -(trans s4989 s4950) -(trans s4990 s4931) -(trans s4990 s4944) -(trans s4990 s4957) -(trans s4991 s4938) -(trans s4991 s4951) -(trans s4991 s4964) -(trans s4992 s4945) -(trans s4992 s4958) -(trans s4992 s4971) -(trans s4993 s4952) -(trans s4993 s4965) -(trans s4993 s4978) -(trans s4994 s4959) -(trans s4994 s4972) -(trans s4994 s4985) -(trans s4995 s4966) -(trans s4995 s4979) -(trans s4995 s4992) -(trans s4996 s4973) -(trans s4996 s4986) -(trans s4996 s4999) -(trans s4997 s4980) -(trans s4997 s4993) -(trans s4997 s5006) -(trans s4998 s4987) -(trans s4998 s5000) -(trans s4998 s5013) -(trans s4999 s4994) -(trans s4999 s5007) -(trans s4999 s5020) -(trans s5000 s5001) -(trans s5000 s5014) -(trans s5000 s5027) -(trans s5001 s5008) -(trans s5001 s5021) -(trans s5001 s5034) -(trans s5002 s5015) -(trans s5002 s5028) -(trans s5002 s5041) -(trans s5003 s5022) -(trans s5003 s5035) -(trans s5003 s5048) -(trans s5004 s5029) -(trans s5004 s5042) -(trans s5004 s5055) -(trans s5005 s5036) -(trans s5005 s5049) -(trans s5005 s5062) -(trans s5006 s5043) -(trans s5006 s5056) -(trans s5006 s5069) -(trans s5007 s5050) -(trans s5007 s5063) -(trans s5007 s5076) -(trans s5008 s5057) -(trans s5008 s5070) -(trans s5008 s5083) -(trans s5009 s5064) -(trans s5009 s5077) -(trans s5009 s5090) -(trans s5010 s5071) -(trans s5010 s5084) -(trans s5010 s5097) -(trans s5011 s5078) -(trans s5011 s5091) -(trans s5011 s5104) -(trans s5012 s5085) -(trans s5012 s5098) -(trans s5012 s5111) -(trans s5013 s5092) -(trans s5013 s5105) -(trans s5013 s5118) -(trans s5014 s5099) -(trans s5014 s5112) -(trans s5014 s5125) -(trans s5015 s5106) -(trans s5015 s5119) -(trans s5015 s5132) -(trans s5016 s5113) -(trans s5016 s5126) -(trans s5016 s5139) -(trans s5017 s5120) -(trans s5017 s5133) -(trans s5017 s5146) -(trans s5018 s5127) -(trans s5018 s5140) -(trans s5018 s5153) -(trans s5019 s5134) -(trans s5019 s5147) -(trans s5019 s5160) -(trans s5020 s5141) -(trans s5020 s5154) -(trans s5020 s5167) -(trans s5021 s5148) -(trans s5021 s5161) -(trans s5021 s5174) -(trans s5022 s5155) -(trans s5022 s5168) -(trans s5022 s5181) -(trans s5023 s5162) -(trans s5023 s5175) -(trans s5023 s5188) -(trans s5024 s5169) -(trans s5024 s5182) -(trans s5024 s5195) -(trans s5025 s5176) -(trans s5025 s5189) -(trans s5025 s5202) -(trans s5026 s5183) -(trans s5026 s5196) -(trans s5026 s5209) -(trans s5027 s5190) -(trans s5027 s5203) -(trans s5027 s5216) -(trans s5028 s5197) -(trans s5028 s5210) -(trans s5028 s5223) -(trans s5029 s5204) -(trans s5029 s5217) -(trans s5029 s5230) -(trans s5030 s5211) -(trans s5030 s5224) -(trans s5030 s5237) -(trans s5031 s5218) -(trans s5031 s5231) -(trans s5031 s5244) -(trans s5032 s5225) -(trans s5032 s5238) -(trans s5032 s5251) -(trans s5033 s5232) -(trans s5033 s5245) -(trans s5033 s5258) -(trans s5034 s5239) -(trans s5034 s5252) -(trans s5034 s5265) -(trans s5035 s5246) -(trans s5035 s5259) -(trans s5035 s5272) -(trans s5036 s5253) -(trans s5036 s5266) -(trans s5036 s5279) -(trans s5037 s5260) -(trans s5037 s5273) -(trans s5037 s5286) -(trans s5038 s5267) -(trans s5038 s5280) -(trans s5038 s5293) -(trans s5039 s5274) -(trans s5039 s5287) -(trans s5039 s5300) -(trans s5040 s5281) -(trans s5040 s5294) -(trans s5040 s5307) -(trans s5041 s5288) -(trans s5041 s5301) -(trans s5041 s5314) -(trans s5042 s5295) -(trans s5042 s5308) -(trans s5042 s5321) -(trans s5043 s5302) -(trans s5043 s5315) -(trans s5043 s5328) -(trans s5044 s5309) -(trans s5044 s5322) -(trans s5044 s5335) -(trans s5045 s5316) -(trans s5045 s5329) -(trans s5045 s5342) -(trans s5046 s5323) -(trans s5046 s5336) -(trans s5046 s5349) -(trans s5047 s5330) -(trans s5047 s5343) -(trans s5047 s5356) -(trans s5048 s5337) -(trans s5048 s5350) -(trans s5048 s5363) -(trans s5049 s5344) -(trans s5049 s5357) -(trans s5049 s5370) -(trans s5050 s5351) -(trans s5050 s5364) -(trans s5050 s5377) -(trans s5051 s5358) -(trans s5051 s5371) -(trans s5051 s5384) -(trans s5052 s5365) -(trans s5052 s5378) -(trans s5052 s5391) -(trans s5053 s5372) -(trans s5053 s5385) -(trans s5053 s5398) -(trans s5054 s5379) -(trans s5054 s5392) -(trans s5054 s5405) -(trans s5055 s5386) -(trans s5055 s5399) -(trans s5055 s5412) -(trans s5056 s5393) -(trans s5056 s5406) -(trans s5056 s5419) -(trans s5057 s5400) -(trans s5057 s5413) -(trans s5057 s5426) -(trans s5058 s5407) -(trans s5058 s5420) -(trans s5058 s5433) -(trans s5059 s5414) -(trans s5059 s5427) -(trans s5059 s5440) -(trans s5060 s5421) -(trans s5060 s5434) -(trans s5060 s5447) -(trans s5061 s5428) -(trans s5061 s5441) -(trans s5061 s5454) -(trans s5062 s5435) -(trans s5062 s5448) -(trans s5062 s5461) -(trans s5063 s5442) -(trans s5063 s5455) -(trans s5063 s5468) -(trans s5064 s5449) -(trans s5064 s5462) -(trans s5064 s5475) -(trans s5065 s5456) -(trans s5065 s5469) -(trans s5065 s5482) -(trans s5066 s5463) -(trans s5066 s5476) -(trans s5066 s5489) -(trans s5067 s5470) -(trans s5067 s5483) -(trans s5067 s5496) -(trans s5068 s5477) -(trans s5068 s5490) -(trans s5068 s5503) -(trans s5069 s5484) -(trans s5069 s5497) -(trans s5069 s5510) -(trans s5070 s5491) -(trans s5070 s5504) -(trans s5070 s5517) -(trans s5071 s5498) -(trans s5071 s5511) -(trans s5071 s5524) -(trans s5072 s5505) -(trans s5072 s5518) -(trans s5072 s5531) -(trans s5073 s5512) -(trans s5073 s5525) -(trans s5073 s5538) -(trans s5074 s5519) -(trans s5074 s5532) -(trans s5074 s5545) -(trans s5075 s5526) -(trans s5075 s5539) -(trans s5075 s5552) -(trans s5076 s5533) -(trans s5076 s5546) -(trans s5076 s5559) -(trans s5077 s5540) -(trans s5077 s5553) -(trans s5077 s5566) -(trans s5078 s5547) -(trans s5078 s5560) -(trans s5078 s5573) -(trans s5079 s5554) -(trans s5079 s5567) -(trans s5079 s5580) -(trans s5080 s5561) -(trans s5080 s5574) -(trans s5080 s5587) -(trans s5081 s5568) -(trans s5081 s5581) -(trans s5081 s5594) -(trans s5082 s5575) -(trans s5082 s5588) -(trans s5082 s5601) -(trans s5083 s5582) -(trans s5083 s5595) -(trans s5083 s5608) -(trans s5084 s5589) -(trans s5084 s5602) -(trans s5084 s5615) -(trans s5085 s5596) -(trans s5085 s5609) -(trans s5085 s5622) -(trans s5086 s5603) -(trans s5086 s5616) -(trans s5086 s5629) -(trans s5087 s5610) -(trans s5087 s5623) -(trans s5087 s5636) -(trans s5088 s5617) -(trans s5088 s5630) -(trans s5088 s5643) -(trans s5089 s5624) -(trans s5089 s5637) -(trans s5089 s5650) -(trans s5090 s5631) -(trans s5090 s5644) -(trans s5090 s5657) -(trans s5091 s5638) -(trans s5091 s5651) -(trans s5091 s5664) -(trans s5092 s5645) -(trans s5092 s5658) -(trans s5092 s5671) -(trans s5093 s5652) -(trans s5093 s5665) -(trans s5093 s5678) -(trans s5094 s5659) -(trans s5094 s5672) -(trans s5094 s5685) -(trans s5095 s5666) -(trans s5095 s5679) -(trans s5095 s5692) -(trans s5096 s5673) -(trans s5096 s5686) -(trans s5096 s5699) -(trans s5097 s5680) -(trans s5097 s5693) -(trans s5097 s5706) -(trans s5098 s5687) -(trans s5098 s5700) -(trans s5098 s5713) -(trans s5099 s5694) -(trans s5099 s5707) -(trans s5099 s5720) -(trans s5100 s5701) -(trans s5100 s5714) -(trans s5100 s5727) -(trans s5101 s5708) -(trans s5101 s5721) -(trans s5101 s5734) -(trans s5102 s5715) -(trans s5102 s5728) -(trans s5102 s5741) -(trans s5103 s5722) -(trans s5103 s5735) -(trans s5103 s5748) -(trans s5104 s5729) -(trans s5104 s5742) -(trans s5104 s5755) -(trans s5105 s5736) -(trans s5105 s5749) -(trans s5105 s5762) -(trans s5106 s5743) -(trans s5106 s5756) -(trans s5106 s5769) -(trans s5107 s5750) -(trans s5107 s5763) -(trans s5107 s5776) -(trans s5108 s5757) -(trans s5108 s5770) -(trans s5108 s5783) -(trans s5109 s5764) -(trans s5109 s5777) -(trans s5109 s5790) -(trans s5110 s5771) -(trans s5110 s5784) -(trans s5110 s5797) -(trans s5111 s5778) -(trans s5111 s5791) -(trans s5111 s5804) -(trans s5112 s5785) -(trans s5112 s5798) -(trans s5112 s5811) -(trans s5113 s5792) -(trans s5113 s5805) -(trans s5113 s5818) -(trans s5114 s5799) -(trans s5114 s5812) -(trans s5114 s5825) -(trans s5115 s5806) -(trans s5115 s5819) -(trans s5115 s5832) -(trans s5116 s5813) -(trans s5116 s5826) -(trans s5116 s5839) -(trans s5117 s5820) -(trans s5117 s5833) -(trans s5117 s5846) -(trans s5118 s5827) -(trans s5118 s5840) -(trans s5118 s5853) -(trans s5119 s5834) -(trans s5119 s5847) -(trans s5119 s5860) -(trans s5120 s5841) -(trans s5120 s5854) -(trans s5120 s5867) -(trans s5121 s5848) -(trans s5121 s5861) -(trans s5121 s5874) -(trans s5122 s5855) -(trans s5122 s5868) -(trans s5122 s5881) -(trans s5123 s5862) -(trans s5123 s5875) -(trans s5123 s5888) -(trans s5124 s5869) -(trans s5124 s5882) -(trans s5124 s5895) -(trans s5125 s5876) -(trans s5125 s5889) -(trans s5125 s5902) -(trans s5126 s5883) -(trans s5126 s5896) -(trans s5126 s5909) -(trans s5127 s5890) -(trans s5127 s5903) -(trans s5127 s5916) -(trans s5128 s5897) -(trans s5128 s5910) -(trans s5128 s5923) -(trans s5129 s5904) -(trans s5129 s5917) -(trans s5129 s5930) -(trans s5130 s5911) -(trans s5130 s5924) -(trans s5130 s5937) -(trans s5131 s5918) -(trans s5131 s5931) -(trans s5131 s5944) -(trans s5132 s5925) -(trans s5132 s5938) -(trans s5132 s5951) -(trans s5133 s5932) -(trans s5133 s5945) -(trans s5133 s5958) -(trans s5134 s5939) -(trans s5134 s5952) -(trans s5134 s5965) -(trans s5135 s5946) -(trans s5135 s5959) -(trans s5135 s5972) -(trans s5136 s5953) -(trans s5136 s5966) -(trans s5136 s5979) -(trans s5137 s5960) -(trans s5137 s5973) -(trans s5137 s5986) -(trans s5138 s5967) -(trans s5138 s5980) -(trans s5138 s5993) -(trans s5139 s5974) -(trans s5139 s5987) -(trans s5139 s0) -(trans s5140 s5981) -(trans s5140 s5994) -(trans s5140 s7) -(trans s5141 s5988) -(trans s5141 s1) -(trans s5141 s14) -(trans s5142 s5995) -(trans s5142 s8) -(trans s5142 s21) -(trans s5143 s2) -(trans s5143 s15) -(trans s5143 s28) -(trans s5144 s9) -(trans s5144 s22) -(trans s5144 s35) -(trans s5145 s16) -(trans s5145 s29) -(trans s5145 s42) -(trans s5146 s23) -(trans s5146 s36) -(trans s5146 s49) -(trans s5147 s30) -(trans s5147 s43) -(trans s5147 s56) -(trans s5148 s37) -(trans s5148 s50) -(trans s5148 s63) -(trans s5149 s44) -(trans s5149 s57) -(trans s5149 s70) -(trans s5150 s51) -(trans s5150 s64) -(trans s5150 s77) -(trans s5151 s58) -(trans s5151 s71) -(trans s5151 s84) -(trans s5152 s65) -(trans s5152 s78) -(trans s5152 s91) -(trans s5153 s72) -(trans s5153 s85) -(trans s5153 s98) -(trans s5154 s79) -(trans s5154 s92) -(trans s5154 s105) -(trans s5155 s86) -(trans s5155 s99) -(trans s5155 s112) -(trans s5156 s93) -(trans s5156 s106) -(trans s5156 s119) -(trans s5157 s100) -(trans s5157 s113) -(trans s5157 s126) -(trans s5158 s107) -(trans s5158 s120) -(trans s5158 s133) -(trans s5159 s114) -(trans s5159 s127) -(trans s5159 s140) -(trans s5160 s121) -(trans s5160 s134) -(trans s5160 s147) -(trans s5161 s128) -(trans s5161 s141) -(trans s5161 s154) -(trans s5162 s135) -(trans s5162 s148) -(trans s5162 s161) -(trans s5163 s142) -(trans s5163 s155) -(trans s5163 s168) -(trans s5164 s149) -(trans s5164 s162) -(trans s5164 s175) -(trans s5165 s156) -(trans s5165 s169) -(trans s5165 s182) -(trans s5166 s163) -(trans s5166 s176) -(trans s5166 s189) -(trans s5167 s170) -(trans s5167 s183) -(trans s5167 s196) -(trans s5168 s177) -(trans s5168 s190) -(trans s5168 s203) -(trans s5169 s184) -(trans s5169 s197) -(trans s5169 s210) -(trans s5170 s191) -(trans s5170 s204) -(trans s5170 s217) -(trans s5171 s198) -(trans s5171 s211) -(trans s5171 s224) -(trans s5172 s205) -(trans s5172 s218) -(trans s5172 s231) -(trans s5173 s212) -(trans s5173 s225) -(trans s5173 s238) -(trans s5174 s219) -(trans s5174 s232) -(trans s5174 s245) -(trans s5175 s226) -(trans s5175 s239) -(trans s5175 s252) -(trans s5176 s233) -(trans s5176 s246) -(trans s5176 s259) -(trans s5177 s240) -(trans s5177 s253) -(trans s5177 s266) -(trans s5178 s247) -(trans s5178 s260) -(trans s5178 s273) -(trans s5179 s254) -(trans s5179 s267) -(trans s5179 s280) -(trans s5180 s261) -(trans s5180 s274) -(trans s5180 s287) -(trans s5181 s268) -(trans s5181 s281) -(trans s5181 s294) -(trans s5182 s275) -(trans s5182 s288) -(trans s5182 s301) -(trans s5183 s282) -(trans s5183 s295) -(trans s5183 s308) -(trans s5184 s289) -(trans s5184 s302) -(trans s5184 s315) -(trans s5185 s296) -(trans s5185 s309) -(trans s5185 s322) -(trans s5186 s303) -(trans s5186 s316) -(trans s5186 s329) -(trans s5187 s310) -(trans s5187 s323) -(trans s5187 s336) -(trans s5188 s317) -(trans s5188 s330) -(trans s5188 s343) -(trans s5189 s324) -(trans s5189 s337) -(trans s5189 s350) -(trans s5190 s331) -(trans s5190 s344) -(trans s5190 s357) -(trans s5191 s338) -(trans s5191 s351) -(trans s5191 s364) -(trans s5192 s345) -(trans s5192 s358) -(trans s5192 s371) -(trans s5193 s352) -(trans s5193 s365) -(trans s5193 s378) -(trans s5194 s359) -(trans s5194 s372) -(trans s5194 s385) -(trans s5195 s366) -(trans s5195 s379) -(trans s5195 s392) -(trans s5196 s373) -(trans s5196 s386) -(trans s5196 s399) -(trans s5197 s380) -(trans s5197 s393) -(trans s5197 s406) -(trans s5198 s387) -(trans s5198 s400) -(trans s5198 s413) -(trans s5199 s394) -(trans s5199 s407) -(trans s5199 s420) -(trans s5200 s401) -(trans s5200 s414) -(trans s5200 s427) -(trans s5201 s408) -(trans s5201 s421) -(trans s5201 s434) -(trans s5202 s415) -(trans s5202 s428) -(trans s5202 s441) -(trans s5203 s422) -(trans s5203 s435) -(trans s5203 s448) -(trans s5204 s429) -(trans s5204 s442) -(trans s5204 s455) -(trans s5205 s436) -(trans s5205 s449) -(trans s5205 s462) -(trans s5206 s443) -(trans s5206 s456) -(trans s5206 s469) -(trans s5207 s450) -(trans s5207 s463) -(trans s5207 s476) -(trans s5208 s457) -(trans s5208 s470) -(trans s5208 s483) -(trans s5209 s464) -(trans s5209 s477) -(trans s5209 s490) -(trans s5210 s471) -(trans s5210 s484) -(trans s5210 s497) -(trans s5211 s478) -(trans s5211 s491) -(trans s5211 s504) -(trans s5212 s485) -(trans s5212 s498) -(trans s5212 s511) -(trans s5213 s492) -(trans s5213 s505) -(trans s5213 s518) -(trans s5214 s499) -(trans s5214 s512) -(trans s5214 s525) -(trans s5215 s506) -(trans s5215 s519) -(trans s5215 s532) -(trans s5216 s513) -(trans s5216 s526) -(trans s5216 s539) -(trans s5217 s520) -(trans s5217 s533) -(trans s5217 s546) -(trans s5218 s527) -(trans s5218 s540) -(trans s5218 s553) -(trans s5219 s534) -(trans s5219 s547) -(trans s5219 s560) -(trans s5220 s541) -(trans s5220 s554) -(trans s5220 s567) -(trans s5221 s548) -(trans s5221 s561) -(trans s5221 s574) -(trans s5222 s555) -(trans s5222 s568) -(trans s5222 s581) -(trans s5223 s562) -(trans s5223 s575) -(trans s5223 s588) -(trans s5224 s569) -(trans s5224 s582) -(trans s5224 s595) -(trans s5225 s576) -(trans s5225 s589) -(trans s5225 s602) -(trans s5226 s583) -(trans s5226 s596) -(trans s5226 s609) -(trans s5227 s590) -(trans s5227 s603) -(trans s5227 s616) -(trans s5228 s597) -(trans s5228 s610) -(trans s5228 s623) -(trans s5229 s604) -(trans s5229 s617) -(trans s5229 s630) -(trans s5230 s611) -(trans s5230 s624) -(trans s5230 s637) -(trans s5231 s618) -(trans s5231 s631) -(trans s5231 s644) -(trans s5232 s625) -(trans s5232 s638) -(trans s5232 s651) -(trans s5233 s632) -(trans s5233 s645) -(trans s5233 s658) -(trans s5234 s639) -(trans s5234 s652) -(trans s5234 s665) -(trans s5235 s646) -(trans s5235 s659) -(trans s5235 s672) -(trans s5236 s653) -(trans s5236 s666) -(trans s5236 s679) -(trans s5237 s660) -(trans s5237 s673) -(trans s5237 s686) -(trans s5238 s667) -(trans s5238 s680) -(trans s5238 s693) -(trans s5239 s674) -(trans s5239 s687) -(trans s5239 s700) -(trans s5240 s681) -(trans s5240 s694) -(trans s5240 s707) -(trans s5241 s688) -(trans s5241 s701) -(trans s5241 s714) -(trans s5242 s695) -(trans s5242 s708) -(trans s5242 s721) -(trans s5243 s702) -(trans s5243 s715) -(trans s5243 s728) -(trans s5244 s709) -(trans s5244 s722) -(trans s5244 s735) -(trans s5245 s716) -(trans s5245 s729) -(trans s5245 s742) -(trans s5246 s723) -(trans s5246 s736) -(trans s5246 s749) -(trans s5247 s730) -(trans s5247 s743) -(trans s5247 s756) -(trans s5248 s737) -(trans s5248 s750) -(trans s5248 s763) -(trans s5249 s744) -(trans s5249 s757) -(trans s5249 s770) -(trans s5250 s751) -(trans s5250 s764) -(trans s5250 s777) -(trans s5251 s758) -(trans s5251 s771) -(trans s5251 s784) -(trans s5252 s765) -(trans s5252 s778) -(trans s5252 s791) -(trans s5253 s772) -(trans s5253 s785) -(trans s5253 s798) -(trans s5254 s779) -(trans s5254 s792) -(trans s5254 s805) -(trans s5255 s786) -(trans s5255 s799) -(trans s5255 s812) -(trans s5256 s793) -(trans s5256 s806) -(trans s5256 s819) -(trans s5257 s800) -(trans s5257 s813) -(trans s5257 s826) -(trans s5258 s807) -(trans s5258 s820) -(trans s5258 s833) -(trans s5259 s814) -(trans s5259 s827) -(trans s5259 s840) -(trans s5260 s821) -(trans s5260 s834) -(trans s5260 s847) -(trans s5261 s828) -(trans s5261 s841) -(trans s5261 s854) -(trans s5262 s835) -(trans s5262 s848) -(trans s5262 s861) -(trans s5263 s842) -(trans s5263 s855) -(trans s5263 s868) -(trans s5264 s849) -(trans s5264 s862) -(trans s5264 s875) -(trans s5265 s856) -(trans s5265 s869) -(trans s5265 s882) -(trans s5266 s863) -(trans s5266 s876) -(trans s5266 s889) -(trans s5267 s870) -(trans s5267 s883) -(trans s5267 s896) -(trans s5268 s877) -(trans s5268 s890) -(trans s5268 s903) -(trans s5269 s884) -(trans s5269 s897) -(trans s5269 s910) -(trans s5270 s891) -(trans s5270 s904) -(trans s5270 s917) -(trans s5271 s898) -(trans s5271 s911) -(trans s5271 s924) -(trans s5272 s905) -(trans s5272 s918) -(trans s5272 s931) -(trans s5273 s912) -(trans s5273 s925) -(trans s5273 s938) -(trans s5274 s919) -(trans s5274 s932) -(trans s5274 s945) -(trans s5275 s926) -(trans s5275 s939) -(trans s5275 s952) -(trans s5276 s933) -(trans s5276 s946) -(trans s5276 s959) -(trans s5277 s940) -(trans s5277 s953) -(trans s5277 s966) -(trans s5278 s947) -(trans s5278 s960) -(trans s5278 s973) -(trans s5279 s954) -(trans s5279 s967) -(trans s5279 s980) -(trans s5280 s961) -(trans s5280 s974) -(trans s5280 s987) -(trans s5281 s968) -(trans s5281 s981) -(trans s5281 s994) -(trans s5282 s975) -(trans s5282 s988) -(trans s5282 s1001) -(trans s5283 s982) -(trans s5283 s995) -(trans s5283 s1008) -(trans s5284 s989) -(trans s5284 s1002) -(trans s5284 s1015) -(trans s5285 s996) -(trans s5285 s1009) -(trans s5285 s1022) -(trans s5286 s1003) -(trans s5286 s1016) -(trans s5286 s1029) -(trans s5287 s1010) -(trans s5287 s1023) -(trans s5287 s1036) -(trans s5288 s1017) -(trans s5288 s1030) -(trans s5288 s1043) -(trans s5289 s1024) -(trans s5289 s1037) -(trans s5289 s1050) -(trans s5290 s1031) -(trans s5290 s1044) -(trans s5290 s1057) -(trans s5291 s1038) -(trans s5291 s1051) -(trans s5291 s1064) -(trans s5292 s1045) -(trans s5292 s1058) -(trans s5292 s1071) -(trans s5293 s1052) -(trans s5293 s1065) -(trans s5293 s1078) -(trans s5294 s1059) -(trans s5294 s1072) -(trans s5294 s1085) -(trans s5295 s1066) -(trans s5295 s1079) -(trans s5295 s1092) -(trans s5296 s1073) -(trans s5296 s1086) -(trans s5296 s1099) -(trans s5297 s1080) -(trans s5297 s1093) -(trans s5297 s1106) -(trans s5298 s1087) -(trans s5298 s1100) -(trans s5298 s1113) -(trans s5299 s1094) -(trans s5299 s1107) -(trans s5299 s1120) -(trans s5300 s1101) -(trans s5300 s1114) -(trans s5300 s1127) -(trans s5301 s1108) -(trans s5301 s1121) -(trans s5301 s1134) -(trans s5302 s1115) -(trans s5302 s1128) -(trans s5302 s1141) -(trans s5303 s1122) -(trans s5303 s1135) -(trans s5303 s1148) -(trans s5304 s1129) -(trans s5304 s1142) -(trans s5304 s1155) -(trans s5305 s1136) -(trans s5305 s1149) -(trans s5305 s1162) -(trans s5306 s1143) -(trans s5306 s1156) -(trans s5306 s1169) -(trans s5307 s1150) -(trans s5307 s1163) -(trans s5307 s1176) -(trans s5308 s1157) -(trans s5308 s1170) -(trans s5308 s1183) -(trans s5309 s1164) -(trans s5309 s1177) -(trans s5309 s1190) -(trans s5310 s1171) -(trans s5310 s1184) -(trans s5310 s1197) -(trans s5311 s1178) -(trans s5311 s1191) -(trans s5311 s1204) -(trans s5312 s1185) -(trans s5312 s1198) -(trans s5312 s1211) -(trans s5313 s1192) -(trans s5313 s1205) -(trans s5313 s1218) -(trans s5314 s1199) -(trans s5314 s1212) -(trans s5314 s1225) -(trans s5315 s1206) -(trans s5315 s1219) -(trans s5315 s1232) -(trans s5316 s1213) -(trans s5316 s1226) -(trans s5316 s1239) -(trans s5317 s1220) -(trans s5317 s1233) -(trans s5317 s1246) -(trans s5318 s1227) -(trans s5318 s1240) -(trans s5318 s1253) -(trans s5319 s1234) -(trans s5319 s1247) -(trans s5319 s1260) -(trans s5320 s1241) -(trans s5320 s1254) -(trans s5320 s1267) -(trans s5321 s1248) -(trans s5321 s1261) -(trans s5321 s1274) -(trans s5322 s1255) -(trans s5322 s1268) -(trans s5322 s1281) -(trans s5323 s1262) -(trans s5323 s1275) -(trans s5323 s1288) -(trans s5324 s1269) -(trans s5324 s1282) -(trans s5324 s1295) -(trans s5325 s1276) -(trans s5325 s1289) -(trans s5325 s1302) -(trans s5326 s1283) -(trans s5326 s1296) -(trans s5326 s1309) -(trans s5327 s1290) -(trans s5327 s1303) -(trans s5327 s1316) -(trans s5328 s1297) -(trans s5328 s1310) -(trans s5328 s1323) -(trans s5329 s1304) -(trans s5329 s1317) -(trans s5329 s1330) -(trans s5330 s1311) -(trans s5330 s1324) -(trans s5330 s1337) -(trans s5331 s1318) -(trans s5331 s1331) -(trans s5331 s1344) -(trans s5332 s1325) -(trans s5332 s1338) -(trans s5332 s1351) -(trans s5333 s1332) -(trans s5333 s1345) -(trans s5333 s1358) -(trans s5334 s1339) -(trans s5334 s1352) -(trans s5334 s1365) -(trans s5335 s1346) -(trans s5335 s1359) -(trans s5335 s1372) -(trans s5336 s1353) -(trans s5336 s1366) -(trans s5336 s1379) -(trans s5337 s1360) -(trans s5337 s1373) -(trans s5337 s1386) -(trans s5338 s1367) -(trans s5338 s1380) -(trans s5338 s1393) -(trans s5339 s1374) -(trans s5339 s1387) -(trans s5339 s1400) -(trans s5340 s1381) -(trans s5340 s1394) -(trans s5340 s1407) -(trans s5341 s1388) -(trans s5341 s1401) -(trans s5341 s1414) -(trans s5342 s1395) -(trans s5342 s1408) -(trans s5342 s1421) -(trans s5343 s1402) -(trans s5343 s1415) -(trans s5343 s1428) -(trans s5344 s1409) -(trans s5344 s1422) -(trans s5344 s1435) -(trans s5345 s1416) -(trans s5345 s1429) -(trans s5345 s1442) -(trans s5346 s1423) -(trans s5346 s1436) -(trans s5346 s1449) -(trans s5347 s1430) -(trans s5347 s1443) -(trans s5347 s1456) -(trans s5348 s1437) -(trans s5348 s1450) -(trans s5348 s1463) -(trans s5349 s1444) -(trans s5349 s1457) -(trans s5349 s1470) -(trans s5350 s1451) -(trans s5350 s1464) -(trans s5350 s1477) -(trans s5351 s1458) -(trans s5351 s1471) -(trans s5351 s1484) -(trans s5352 s1465) -(trans s5352 s1478) -(trans s5352 s1491) -(trans s5353 s1472) -(trans s5353 s1485) -(trans s5353 s1498) -(trans s5354 s1479) -(trans s5354 s1492) -(trans s5354 s1505) -(trans s5355 s1486) -(trans s5355 s1499) -(trans s5355 s1512) -(trans s5356 s1493) -(trans s5356 s1506) -(trans s5356 s1519) -(trans s5357 s1500) -(trans s5357 s1513) -(trans s5357 s1526) -(trans s5358 s1507) -(trans s5358 s1520) -(trans s5358 s1533) -(trans s5359 s1514) -(trans s5359 s1527) -(trans s5359 s1540) -(trans s5360 s1521) -(trans s5360 s1534) -(trans s5360 s1547) -(trans s5361 s1528) -(trans s5361 s1541) -(trans s5361 s1554) -(trans s5362 s1535) -(trans s5362 s1548) -(trans s5362 s1561) -(trans s5363 s1542) -(trans s5363 s1555) -(trans s5363 s1568) -(trans s5364 s1549) -(trans s5364 s1562) -(trans s5364 s1575) -(trans s5365 s1556) -(trans s5365 s1569) -(trans s5365 s1582) -(trans s5366 s1563) -(trans s5366 s1576) -(trans s5366 s1589) -(trans s5367 s1570) -(trans s5367 s1583) -(trans s5367 s1596) -(trans s5368 s1577) -(trans s5368 s1590) -(trans s5368 s1603) -(trans s5369 s1584) -(trans s5369 s1597) -(trans s5369 s1610) -(trans s5370 s1591) -(trans s5370 s1604) -(trans s5370 s1617) -(trans s5371 s1598) -(trans s5371 s1611) -(trans s5371 s1624) -(trans s5372 s1605) -(trans s5372 s1618) -(trans s5372 s1631) -(trans s5373 s1612) -(trans s5373 s1625) -(trans s5373 s1638) -(trans s5374 s1619) -(trans s5374 s1632) -(trans s5374 s1645) -(trans s5375 s1626) -(trans s5375 s1639) -(trans s5375 s1652) -(trans s5376 s1633) -(trans s5376 s1646) -(trans s5376 s1659) -(trans s5377 s1640) -(trans s5377 s1653) -(trans s5377 s1666) -(trans s5378 s1647) -(trans s5378 s1660) -(trans s5378 s1673) -(trans s5379 s1654) -(trans s5379 s1667) -(trans s5379 s1680) -(trans s5380 s1661) -(trans s5380 s1674) -(trans s5380 s1687) -(trans s5381 s1668) -(trans s5381 s1681) -(trans s5381 s1694) -(trans s5382 s1675) -(trans s5382 s1688) -(trans s5382 s1701) -(trans s5383 s1682) -(trans s5383 s1695) -(trans s5383 s1708) -(trans s5384 s1689) -(trans s5384 s1702) -(trans s5384 s1715) -(trans s5385 s1696) -(trans s5385 s1709) -(trans s5385 s1722) -(trans s5386 s1703) -(trans s5386 s1716) -(trans s5386 s1729) -(trans s5387 s1710) -(trans s5387 s1723) -(trans s5387 s1736) -(trans s5388 s1717) -(trans s5388 s1730) -(trans s5388 s1743) -(trans s5389 s1724) -(trans s5389 s1737) -(trans s5389 s1750) -(trans s5390 s1731) -(trans s5390 s1744) -(trans s5390 s1757) -(trans s5391 s1738) -(trans s5391 s1751) -(trans s5391 s1764) -(trans s5392 s1745) -(trans s5392 s1758) -(trans s5392 s1771) -(trans s5393 s1752) -(trans s5393 s1765) -(trans s5393 s1778) -(trans s5394 s1759) -(trans s5394 s1772) -(trans s5394 s1785) -(trans s5395 s1766) -(trans s5395 s1779) -(trans s5395 s1792) -(trans s5396 s1773) -(trans s5396 s1786) -(trans s5396 s1799) -(trans s5397 s1780) -(trans s5397 s1793) -(trans s5397 s1806) -(trans s5398 s1787) -(trans s5398 s1800) -(trans s5398 s1813) -(trans s5399 s1794) -(trans s5399 s1807) -(trans s5399 s1820) -(trans s5400 s1801) -(trans s5400 s1814) -(trans s5400 s1827) -(trans s5401 s1808) -(trans s5401 s1821) -(trans s5401 s1834) -(trans s5402 s1815) -(trans s5402 s1828) -(trans s5402 s1841) -(trans s5403 s1822) -(trans s5403 s1835) -(trans s5403 s1848) -(trans s5404 s1829) -(trans s5404 s1842) -(trans s5404 s1855) -(trans s5405 s1836) -(trans s5405 s1849) -(trans s5405 s1862) -(trans s5406 s1843) -(trans s5406 s1856) -(trans s5406 s1869) -(trans s5407 s1850) -(trans s5407 s1863) -(trans s5407 s1876) -(trans s5408 s1857) -(trans s5408 s1870) -(trans s5408 s1883) -(trans s5409 s1864) -(trans s5409 s1877) -(trans s5409 s1890) -(trans s5410 s1871) -(trans s5410 s1884) -(trans s5410 s1897) -(trans s5411 s1878) -(trans s5411 s1891) -(trans s5411 s1904) -(trans s5412 s1885) -(trans s5412 s1898) -(trans s5412 s1911) -(trans s5413 s1892) -(trans s5413 s1905) -(trans s5413 s1918) -(trans s5414 s1899) -(trans s5414 s1912) -(trans s5414 s1925) -(trans s5415 s1906) -(trans s5415 s1919) -(trans s5415 s1932) -(trans s5416 s1913) -(trans s5416 s1926) -(trans s5416 s1939) -(trans s5417 s1920) -(trans s5417 s1933) -(trans s5417 s1946) -(trans s5418 s1927) -(trans s5418 s1940) -(trans s5418 s1953) -(trans s5419 s1934) -(trans s5419 s1947) -(trans s5419 s1960) -(trans s5420 s1941) -(trans s5420 s1954) -(trans s5420 s1967) -(trans s5421 s1948) -(trans s5421 s1961) -(trans s5421 s1974) -(trans s5422 s1955) -(trans s5422 s1968) -(trans s5422 s1981) -(trans s5423 s1962) -(trans s5423 s1975) -(trans s5423 s1988) -(trans s5424 s1969) -(trans s5424 s1982) -(trans s5424 s1995) -(trans s5425 s1976) -(trans s5425 s1989) -(trans s5425 s2002) -(trans s5426 s1983) -(trans s5426 s1996) -(trans s5426 s2009) -(trans s5427 s1990) -(trans s5427 s2003) -(trans s5427 s2016) -(trans s5428 s1997) -(trans s5428 s2010) -(trans s5428 s2023) -(trans s5429 s2004) -(trans s5429 s2017) -(trans s5429 s2030) -(trans s5430 s2011) -(trans s5430 s2024) -(trans s5430 s2037) -(trans s5431 s2018) -(trans s5431 s2031) -(trans s5431 s2044) -(trans s5432 s2025) -(trans s5432 s2038) -(trans s5432 s2051) -(trans s5433 s2032) -(trans s5433 s2045) -(trans s5433 s2058) -(trans s5434 s2039) -(trans s5434 s2052) -(trans s5434 s2065) -(trans s5435 s2046) -(trans s5435 s2059) -(trans s5435 s2072) -(trans s5436 s2053) -(trans s5436 s2066) -(trans s5436 s2079) -(trans s5437 s2060) -(trans s5437 s2073) -(trans s5437 s2086) -(trans s5438 s2067) -(trans s5438 s2080) -(trans s5438 s2093) -(trans s5439 s2074) -(trans s5439 s2087) -(trans s5439 s2100) -(trans s5440 s2081) -(trans s5440 s2094) -(trans s5440 s2107) -(trans s5441 s2088) -(trans s5441 s2101) -(trans s5441 s2114) -(trans s5442 s2095) -(trans s5442 s2108) -(trans s5442 s2121) -(trans s5443 s2102) -(trans s5443 s2115) -(trans s5443 s2128) -(trans s5444 s2109) -(trans s5444 s2122) -(trans s5444 s2135) -(trans s5445 s2116) -(trans s5445 s2129) -(trans s5445 s2142) -(trans s5446 s2123) -(trans s5446 s2136) -(trans s5446 s2149) -(trans s5447 s2130) -(trans s5447 s2143) -(trans s5447 s2156) -(trans s5448 s2137) -(trans s5448 s2150) -(trans s5448 s2163) -(trans s5449 s2144) -(trans s5449 s2157) -(trans s5449 s2170) -(trans s5450 s2151) -(trans s5450 s2164) -(trans s5450 s2177) -(trans s5451 s2158) -(trans s5451 s2171) -(trans s5451 s2184) -(trans s5452 s2165) -(trans s5452 s2178) -(trans s5452 s2191) -(trans s5453 s2172) -(trans s5453 s2185) -(trans s5453 s2198) -(trans s5454 s2179) -(trans s5454 s2192) -(trans s5454 s2205) -(trans s5455 s2186) -(trans s5455 s2199) -(trans s5455 s2212) -(trans s5456 s2193) -(trans s5456 s2206) -(trans s5456 s2219) -(trans s5457 s2200) -(trans s5457 s2213) -(trans s5457 s2226) -(trans s5458 s2207) -(trans s5458 s2220) -(trans s5458 s2233) -(trans s5459 s2214) -(trans s5459 s2227) -(trans s5459 s2240) -(trans s5460 s2221) -(trans s5460 s2234) -(trans s5460 s2247) -(trans s5461 s2228) -(trans s5461 s2241) -(trans s5461 s2254) -(trans s5462 s2235) -(trans s5462 s2248) -(trans s5462 s2261) -(trans s5463 s2242) -(trans s5463 s2255) -(trans s5463 s2268) -(trans s5464 s2249) -(trans s5464 s2262) -(trans s5464 s2275) -(trans s5465 s2256) -(trans s5465 s2269) -(trans s5465 s2282) -(trans s5466 s2263) -(trans s5466 s2276) -(trans s5466 s2289) -(trans s5467 s2270) -(trans s5467 s2283) -(trans s5467 s2296) -(trans s5468 s2277) -(trans s5468 s2290) -(trans s5468 s2303) -(trans s5469 s2284) -(trans s5469 s2297) -(trans s5469 s2310) -(trans s5470 s2291) -(trans s5470 s2304) -(trans s5470 s2317) -(trans s5471 s2298) -(trans s5471 s2311) -(trans s5471 s2324) -(trans s5472 s2305) -(trans s5472 s2318) -(trans s5472 s2331) -(trans s5473 s2312) -(trans s5473 s2325) -(trans s5473 s2338) -(trans s5474 s2319) -(trans s5474 s2332) -(trans s5474 s2345) -(trans s5475 s2326) -(trans s5475 s2339) -(trans s5475 s2352) -(trans s5476 s2333) -(trans s5476 s2346) -(trans s5476 s2359) -(trans s5477 s2340) -(trans s5477 s2353) -(trans s5477 s2366) -(trans s5478 s2347) -(trans s5478 s2360) -(trans s5478 s2373) -(trans s5479 s2354) -(trans s5479 s2367) -(trans s5479 s2380) -(trans s5480 s2361) -(trans s5480 s2374) -(trans s5480 s2387) -(trans s5481 s2368) -(trans s5481 s2381) -(trans s5481 s2394) -(trans s5482 s2375) -(trans s5482 s2388) -(trans s5482 s2401) -(trans s5483 s2382) -(trans s5483 s2395) -(trans s5483 s2408) -(trans s5484 s2389) -(trans s5484 s2402) -(trans s5484 s2415) -(trans s5485 s2396) -(trans s5485 s2409) -(trans s5485 s2422) -(trans s5486 s2403) -(trans s5486 s2416) -(trans s5486 s2429) -(trans s5487 s2410) -(trans s5487 s2423) -(trans s5487 s2436) -(trans s5488 s2417) -(trans s5488 s2430) -(trans s5488 s2443) -(trans s5489 s2424) -(trans s5489 s2437) -(trans s5489 s2450) -(trans s5490 s2431) -(trans s5490 s2444) -(trans s5490 s2457) -(trans s5491 s2438) -(trans s5491 s2451) -(trans s5491 s2464) -(trans s5492 s2445) -(trans s5492 s2458) -(trans s5492 s2471) -(trans s5493 s2452) -(trans s5493 s2465) -(trans s5493 s2478) -(trans s5494 s2459) -(trans s5494 s2472) -(trans s5494 s2485) -(trans s5495 s2466) -(trans s5495 s2479) -(trans s5495 s2492) -(trans s5496 s2473) -(trans s5496 s2486) -(trans s5496 s2499) -(trans s5497 s2480) -(trans s5497 s2493) -(trans s5497 s2506) -(trans s5498 s2487) -(trans s5498 s2500) -(trans s5498 s2513) -(trans s5499 s2494) -(trans s5499 s2507) -(trans s5499 s2520) -(trans s5500 s2501) -(trans s5500 s2514) -(trans s5500 s2527) -(trans s5501 s2508) -(trans s5501 s2521) -(trans s5501 s2534) -(trans s5502 s2515) -(trans s5502 s2528) -(trans s5502 s2541) -(trans s5503 s2522) -(trans s5503 s2535) -(trans s5503 s2548) -(trans s5504 s2529) -(trans s5504 s2542) -(trans s5504 s2555) -(trans s5505 s2536) -(trans s5505 s2549) -(trans s5505 s2562) -(trans s5506 s2543) -(trans s5506 s2556) -(trans s5506 s2569) -(trans s5507 s2550) -(trans s5507 s2563) -(trans s5507 s2576) -(trans s5508 s2557) -(trans s5508 s2570) -(trans s5508 s2583) -(trans s5509 s2564) -(trans s5509 s2577) -(trans s5509 s2590) -(trans s5510 s2571) -(trans s5510 s2584) -(trans s5510 s2597) -(trans s5511 s2578) -(trans s5511 s2591) -(trans s5511 s2604) -(trans s5512 s2585) -(trans s5512 s2598) -(trans s5512 s2611) -(trans s5513 s2592) -(trans s5513 s2605) -(trans s5513 s2618) -(trans s5514 s2599) -(trans s5514 s2612) -(trans s5514 s2625) -(trans s5515 s2606) -(trans s5515 s2619) -(trans s5515 s2632) -(trans s5516 s2613) -(trans s5516 s2626) -(trans s5516 s2639) -(trans s5517 s2620) -(trans s5517 s2633) -(trans s5517 s2646) -(trans s5518 s2627) -(trans s5518 s2640) -(trans s5518 s2653) -(trans s5519 s2634) -(trans s5519 s2647) -(trans s5519 s2660) -(trans s5520 s2641) -(trans s5520 s2654) -(trans s5520 s2667) -(trans s5521 s2648) -(trans s5521 s2661) -(trans s5521 s2674) -(trans s5522 s2655) -(trans s5522 s2668) -(trans s5522 s2681) -(trans s5523 s2662) -(trans s5523 s2675) -(trans s5523 s2688) -(trans s5524 s2669) -(trans s5524 s2682) -(trans s5524 s2695) -(trans s5525 s2676) -(trans s5525 s2689) -(trans s5525 s2702) -(trans s5526 s2683) -(trans s5526 s2696) -(trans s5526 s2709) -(trans s5527 s2690) -(trans s5527 s2703) -(trans s5527 s2716) -(trans s5528 s2697) -(trans s5528 s2710) -(trans s5528 s2723) -(trans s5529 s2704) -(trans s5529 s2717) -(trans s5529 s2730) -(trans s5530 s2711) -(trans s5530 s2724) -(trans s5530 s2737) -(trans s5531 s2718) -(trans s5531 s2731) -(trans s5531 s2744) -(trans s5532 s2725) -(trans s5532 s2738) -(trans s5532 s2751) -(trans s5533 s2732) -(trans s5533 s2745) -(trans s5533 s2758) -(trans s5534 s2739) -(trans s5534 s2752) -(trans s5534 s2765) -(trans s5535 s2746) -(trans s5535 s2759) -(trans s5535 s2772) -(trans s5536 s2753) -(trans s5536 s2766) -(trans s5536 s2779) -(trans s5537 s2760) -(trans s5537 s2773) -(trans s5537 s2786) -(trans s5538 s2767) -(trans s5538 s2780) -(trans s5538 s2793) -(trans s5539 s2774) -(trans s5539 s2787) -(trans s5539 s2800) -(trans s5540 s2781) -(trans s5540 s2794) -(trans s5540 s2807) -(trans s5541 s2788) -(trans s5541 s2801) -(trans s5541 s2814) -(trans s5542 s2795) -(trans s5542 s2808) -(trans s5542 s2821) -(trans s5543 s2802) -(trans s5543 s2815) -(trans s5543 s2828) -(trans s5544 s2809) -(trans s5544 s2822) -(trans s5544 s2835) -(trans s5545 s2816) -(trans s5545 s2829) -(trans s5545 s2842) -(trans s5546 s2823) -(trans s5546 s2836) -(trans s5546 s2849) -(trans s5547 s2830) -(trans s5547 s2843) -(trans s5547 s2856) -(trans s5548 s2837) -(trans s5548 s2850) -(trans s5548 s2863) -(trans s5549 s2844) -(trans s5549 s2857) -(trans s5549 s2870) -(trans s5550 s2851) -(trans s5550 s2864) -(trans s5550 s2877) -(trans s5551 s2858) -(trans s5551 s2871) -(trans s5551 s2884) -(trans s5552 s2865) -(trans s5552 s2878) -(trans s5552 s2891) -(trans s5553 s2872) -(trans s5553 s2885) -(trans s5553 s2898) -(trans s5554 s2879) -(trans s5554 s2892) -(trans s5554 s2905) -(trans s5555 s2886) -(trans s5555 s2899) -(trans s5555 s2912) -(trans s5556 s2893) -(trans s5556 s2906) -(trans s5556 s2919) -(trans s5557 s2900) -(trans s5557 s2913) -(trans s5557 s2926) -(trans s5558 s2907) -(trans s5558 s2920) -(trans s5558 s2933) -(trans s5559 s2914) -(trans s5559 s2927) -(trans s5559 s2940) -(trans s5560 s2921) -(trans s5560 s2934) -(trans s5560 s2947) -(trans s5561 s2928) -(trans s5561 s2941) -(trans s5561 s2954) -(trans s5562 s2935) -(trans s5562 s2948) -(trans s5562 s2961) -(trans s5563 s2942) -(trans s5563 s2955) -(trans s5563 s2968) -(trans s5564 s2949) -(trans s5564 s2962) -(trans s5564 s2975) -(trans s5565 s2956) -(trans s5565 s2969) -(trans s5565 s2982) -(trans s5566 s2963) -(trans s5566 s2976) -(trans s5566 s2989) -(trans s5567 s2970) -(trans s5567 s2983) -(trans s5567 s2996) -(trans s5568 s2977) -(trans s5568 s2990) -(trans s5568 s3003) -(trans s5569 s2984) -(trans s5569 s2997) -(trans s5569 s3010) -(trans s5570 s2991) -(trans s5570 s3004) -(trans s5570 s3017) -(trans s5571 s2998) -(trans s5571 s3011) -(trans s5571 s3024) -(trans s5572 s3005) -(trans s5572 s3018) -(trans s5572 s3031) -(trans s5573 s3012) -(trans s5573 s3025) -(trans s5573 s3038) -(trans s5574 s3019) -(trans s5574 s3032) -(trans s5574 s3045) -(trans s5575 s3026) -(trans s5575 s3039) -(trans s5575 s3052) -(trans s5576 s3033) -(trans s5576 s3046) -(trans s5576 s3059) -(trans s5577 s3040) -(trans s5577 s3053) -(trans s5577 s3066) -(trans s5578 s3047) -(trans s5578 s3060) -(trans s5578 s3073) -(trans s5579 s3054) -(trans s5579 s3067) -(trans s5579 s3080) -(trans s5580 s3061) -(trans s5580 s3074) -(trans s5580 s3087) -(trans s5581 s3068) -(trans s5581 s3081) -(trans s5581 s3094) -(trans s5582 s3075) -(trans s5582 s3088) -(trans s5582 s3101) -(trans s5583 s3082) -(trans s5583 s3095) -(trans s5583 s3108) -(trans s5584 s3089) -(trans s5584 s3102) -(trans s5584 s3115) -(trans s5585 s3096) -(trans s5585 s3109) -(trans s5585 s3122) -(trans s5586 s3103) -(trans s5586 s3116) -(trans s5586 s3129) -(trans s5587 s3110) -(trans s5587 s3123) -(trans s5587 s3136) -(trans s5588 s3117) -(trans s5588 s3130) -(trans s5588 s3143) -(trans s5589 s3124) -(trans s5589 s3137) -(trans s5589 s3150) -(trans s5590 s3131) -(trans s5590 s3144) -(trans s5590 s3157) -(trans s5591 s3138) -(trans s5591 s3151) -(trans s5591 s3164) -(trans s5592 s3145) -(trans s5592 s3158) -(trans s5592 s3171) -(trans s5593 s3152) -(trans s5593 s3165) -(trans s5593 s3178) -(trans s5594 s3159) -(trans s5594 s3172) -(trans s5594 s3185) -(trans s5595 s3166) -(trans s5595 s3179) -(trans s5595 s3192) -(trans s5596 s3173) -(trans s5596 s3186) -(trans s5596 s3199) -(trans s5597 s3180) -(trans s5597 s3193) -(trans s5597 s3206) -(trans s5598 s3187) -(trans s5598 s3200) -(trans s5598 s3213) -(trans s5599 s3194) -(trans s5599 s3207) -(trans s5599 s3220) -(trans s5600 s3201) -(trans s5600 s3214) -(trans s5600 s3227) -(trans s5601 s3208) -(trans s5601 s3221) -(trans s5601 s3234) -(trans s5602 s3215) -(trans s5602 s3228) -(trans s5602 s3241) -(trans s5603 s3222) -(trans s5603 s3235) -(trans s5603 s3248) -(trans s5604 s3229) -(trans s5604 s3242) -(trans s5604 s3255) -(trans s5605 s3236) -(trans s5605 s3249) -(trans s5605 s3262) -(trans s5606 s3243) -(trans s5606 s3256) -(trans s5606 s3269) -(trans s5607 s3250) -(trans s5607 s3263) -(trans s5607 s3276) -(trans s5608 s3257) -(trans s5608 s3270) -(trans s5608 s3283) -(trans s5609 s3264) -(trans s5609 s3277) -(trans s5609 s3290) -(trans s5610 s3271) -(trans s5610 s3284) -(trans s5610 s3297) -(trans s5611 s3278) -(trans s5611 s3291) -(trans s5611 s3304) -(trans s5612 s3285) -(trans s5612 s3298) -(trans s5612 s3311) -(trans s5613 s3292) -(trans s5613 s3305) -(trans s5613 s3318) -(trans s5614 s3299) -(trans s5614 s3312) -(trans s5614 s3325) -(trans s5615 s3306) -(trans s5615 s3319) -(trans s5615 s3332) -(trans s5616 s3313) -(trans s5616 s3326) -(trans s5616 s3339) -(trans s5617 s3320) -(trans s5617 s3333) -(trans s5617 s3346) -(trans s5618 s3327) -(trans s5618 s3340) -(trans s5618 s3353) -(trans s5619 s3334) -(trans s5619 s3347) -(trans s5619 s3360) -(trans s5620 s3341) -(trans s5620 s3354) -(trans s5620 s3367) -(trans s5621 s3348) -(trans s5621 s3361) -(trans s5621 s3374) -(trans s5622 s3355) -(trans s5622 s3368) -(trans s5622 s3381) -(trans s5623 s3362) -(trans s5623 s3375) -(trans s5623 s3388) -(trans s5624 s3369) -(trans s5624 s3382) -(trans s5624 s3395) -(trans s5625 s3376) -(trans s5625 s3389) -(trans s5625 s3402) -(trans s5626 s3383) -(trans s5626 s3396) -(trans s5626 s3409) -(trans s5627 s3390) -(trans s5627 s3403) -(trans s5627 s3416) -(trans s5628 s3397) -(trans s5628 s3410) -(trans s5628 s3423) -(trans s5629 s3404) -(trans s5629 s3417) -(trans s5629 s3430) -(trans s5630 s3411) -(trans s5630 s3424) -(trans s5630 s3437) -(trans s5631 s3418) -(trans s5631 s3431) -(trans s5631 s3444) -(trans s5632 s3425) -(trans s5632 s3438) -(trans s5632 s3451) -(trans s5633 s3432) -(trans s5633 s3445) -(trans s5633 s3458) -(trans s5634 s3439) -(trans s5634 s3452) -(trans s5634 s3465) -(trans s5635 s3446) -(trans s5635 s3459) -(trans s5635 s3472) -(trans s5636 s3453) -(trans s5636 s3466) -(trans s5636 s3479) -(trans s5637 s3460) -(trans s5637 s3473) -(trans s5637 s3486) -(trans s5638 s3467) -(trans s5638 s3480) -(trans s5638 s3493) -(trans s5639 s3474) -(trans s5639 s3487) -(trans s5639 s3500) -(trans s5640 s3481) -(trans s5640 s3494) -(trans s5640 s3507) -(trans s5641 s3488) -(trans s5641 s3501) -(trans s5641 s3514) -(trans s5642 s3495) -(trans s5642 s3508) -(trans s5642 s3521) -(trans s5643 s3502) -(trans s5643 s3515) -(trans s5643 s3528) -(trans s5644 s3509) -(trans s5644 s3522) -(trans s5644 s3535) -(trans s5645 s3516) -(trans s5645 s3529) -(trans s5645 s3542) -(trans s5646 s3523) -(trans s5646 s3536) -(trans s5646 s3549) -(trans s5647 s3530) -(trans s5647 s3543) -(trans s5647 s3556) -(trans s5648 s3537) -(trans s5648 s3550) -(trans s5648 s3563) -(trans s5649 s3544) -(trans s5649 s3557) -(trans s5649 s3570) -(trans s5650 s3551) -(trans s5650 s3564) -(trans s5650 s3577) -(trans s5651 s3558) -(trans s5651 s3571) -(trans s5651 s3584) -(trans s5652 s3565) -(trans s5652 s3578) -(trans s5652 s3591) -(trans s5653 s3572) -(trans s5653 s3585) -(trans s5653 s3598) -(trans s5654 s3579) -(trans s5654 s3592) -(trans s5654 s3605) -(trans s5655 s3586) -(trans s5655 s3599) -(trans s5655 s3612) -(trans s5656 s3593) -(trans s5656 s3606) -(trans s5656 s3619) -(trans s5657 s3600) -(trans s5657 s3613) -(trans s5657 s3626) -(trans s5658 s3607) -(trans s5658 s3620) -(trans s5658 s3633) -(trans s5659 s3614) -(trans s5659 s3627) -(trans s5659 s3640) -(trans s5660 s3621) -(trans s5660 s3634) -(trans s5660 s3647) -(trans s5661 s3628) -(trans s5661 s3641) -(trans s5661 s3654) -(trans s5662 s3635) -(trans s5662 s3648) -(trans s5662 s3661) -(trans s5663 s3642) -(trans s5663 s3655) -(trans s5663 s3668) -(trans s5664 s3649) -(trans s5664 s3662) -(trans s5664 s3675) -(trans s5665 s3656) -(trans s5665 s3669) -(trans s5665 s3682) -(trans s5666 s3663) -(trans s5666 s3676) -(trans s5666 s3689) -(trans s5667 s3670) -(trans s5667 s3683) -(trans s5667 s3696) -(trans s5668 s3677) -(trans s5668 s3690) -(trans s5668 s3703) -(trans s5669 s3684) -(trans s5669 s3697) -(trans s5669 s3710) -(trans s5670 s3691) -(trans s5670 s3704) -(trans s5670 s3717) -(trans s5671 s3698) -(trans s5671 s3711) -(trans s5671 s3724) -(trans s5672 s3705) -(trans s5672 s3718) -(trans s5672 s3731) -(trans s5673 s3712) -(trans s5673 s3725) -(trans s5673 s3738) -(trans s5674 s3719) -(trans s5674 s3732) -(trans s5674 s3745) -(trans s5675 s3726) -(trans s5675 s3739) -(trans s5675 s3752) -(trans s5676 s3733) -(trans s5676 s3746) -(trans s5676 s3759) -(trans s5677 s3740) -(trans s5677 s3753) -(trans s5677 s3766) -(trans s5678 s3747) -(trans s5678 s3760) -(trans s5678 s3773) -(trans s5679 s3754) -(trans s5679 s3767) -(trans s5679 s3780) -(trans s5680 s3761) -(trans s5680 s3774) -(trans s5680 s3787) -(trans s5681 s3768) -(trans s5681 s3781) -(trans s5681 s3794) -(trans s5682 s3775) -(trans s5682 s3788) -(trans s5682 s3801) -(trans s5683 s3782) -(trans s5683 s3795) -(trans s5683 s3808) -(trans s5684 s3789) -(trans s5684 s3802) -(trans s5684 s3815) -(trans s5685 s3796) -(trans s5685 s3809) -(trans s5685 s3822) -(trans s5686 s3803) -(trans s5686 s3816) -(trans s5686 s3829) -(trans s5687 s3810) -(trans s5687 s3823) -(trans s5687 s3836) -(trans s5688 s3817) -(trans s5688 s3830) -(trans s5688 s3843) -(trans s5689 s3824) -(trans s5689 s3837) -(trans s5689 s3850) -(trans s5690 s3831) -(trans s5690 s3844) -(trans s5690 s3857) -(trans s5691 s3838) -(trans s5691 s3851) -(trans s5691 s3864) -(trans s5692 s3845) -(trans s5692 s3858) -(trans s5692 s3871) -(trans s5693 s3852) -(trans s5693 s3865) -(trans s5693 s3878) -(trans s5694 s3859) -(trans s5694 s3872) -(trans s5694 s3885) -(trans s5695 s3866) -(trans s5695 s3879) -(trans s5695 s3892) -(trans s5696 s3873) -(trans s5696 s3886) -(trans s5696 s3899) -(trans s5697 s3880) -(trans s5697 s3893) -(trans s5697 s3906) -(trans s5698 s3887) -(trans s5698 s3900) -(trans s5698 s3913) -(trans s5699 s3894) -(trans s5699 s3907) -(trans s5699 s3920) -(trans s5700 s3901) -(trans s5700 s3914) -(trans s5700 s3927) -(trans s5701 s3908) -(trans s5701 s3921) -(trans s5701 s3934) -(trans s5702 s3915) -(trans s5702 s3928) -(trans s5702 s3941) -(trans s5703 s3922) -(trans s5703 s3935) -(trans s5703 s3948) -(trans s5704 s3929) -(trans s5704 s3942) -(trans s5704 s3955) -(trans s5705 s3936) -(trans s5705 s3949) -(trans s5705 s3962) -(trans s5706 s3943) -(trans s5706 s3956) -(trans s5706 s3969) -(trans s5707 s3950) -(trans s5707 s3963) -(trans s5707 s3976) -(trans s5708 s3957) -(trans s5708 s3970) -(trans s5708 s3983) -(trans s5709 s3964) -(trans s5709 s3977) -(trans s5709 s3990) -(trans s5710 s3971) -(trans s5710 s3984) -(trans s5710 s3997) -(trans s5711 s3978) -(trans s5711 s3991) -(trans s5711 s4004) -(trans s5712 s3985) -(trans s5712 s3998) -(trans s5712 s4011) -(trans s5713 s3992) -(trans s5713 s4005) -(trans s5713 s4018) -(trans s5714 s3999) -(trans s5714 s4012) -(trans s5714 s4025) -(trans s5715 s4006) -(trans s5715 s4019) -(trans s5715 s4032) -(trans s5716 s4013) -(trans s5716 s4026) -(trans s5716 s4039) -(trans s5717 s4020) -(trans s5717 s4033) -(trans s5717 s4046) -(trans s5718 s4027) -(trans s5718 s4040) -(trans s5718 s4053) -(trans s5719 s4034) -(trans s5719 s4047) -(trans s5719 s4060) -(trans s5720 s4041) -(trans s5720 s4054) -(trans s5720 s4067) -(trans s5721 s4048) -(trans s5721 s4061) -(trans s5721 s4074) -(trans s5722 s4055) -(trans s5722 s4068) -(trans s5722 s4081) -(trans s5723 s4062) -(trans s5723 s4075) -(trans s5723 s4088) -(trans s5724 s4069) -(trans s5724 s4082) -(trans s5724 s4095) -(trans s5725 s4076) -(trans s5725 s4089) -(trans s5725 s4102) -(trans s5726 s4083) -(trans s5726 s4096) -(trans s5726 s4109) -(trans s5727 s4090) -(trans s5727 s4103) -(trans s5727 s4116) -(trans s5728 s4097) -(trans s5728 s4110) -(trans s5728 s4123) -(trans s5729 s4104) -(trans s5729 s4117) -(trans s5729 s4130) -(trans s5730 s4111) -(trans s5730 s4124) -(trans s5730 s4137) -(trans s5731 s4118) -(trans s5731 s4131) -(trans s5731 s4144) -(trans s5732 s4125) -(trans s5732 s4138) -(trans s5732 s4151) -(trans s5733 s4132) -(trans s5733 s4145) -(trans s5733 s4158) -(trans s5734 s4139) -(trans s5734 s4152) -(trans s5734 s4165) -(trans s5735 s4146) -(trans s5735 s4159) -(trans s5735 s4172) -(trans s5736 s4153) -(trans s5736 s4166) -(trans s5736 s4179) -(trans s5737 s4160) -(trans s5737 s4173) -(trans s5737 s4186) -(trans s5738 s4167) -(trans s5738 s4180) -(trans s5738 s4193) -(trans s5739 s4174) -(trans s5739 s4187) -(trans s5739 s4200) -(trans s5740 s4181) -(trans s5740 s4194) -(trans s5740 s4207) -(trans s5741 s4188) -(trans s5741 s4201) -(trans s5741 s4214) -(trans s5742 s4195) -(trans s5742 s4208) -(trans s5742 s4221) -(trans s5743 s4202) -(trans s5743 s4215) -(trans s5743 s4228) -(trans s5744 s4209) -(trans s5744 s4222) -(trans s5744 s4235) -(trans s5745 s4216) -(trans s5745 s4229) -(trans s5745 s4242) -(trans s5746 s4223) -(trans s5746 s4236) -(trans s5746 s4249) -(trans s5747 s4230) -(trans s5747 s4243) -(trans s5747 s4256) -(trans s5748 s4237) -(trans s5748 s4250) -(trans s5748 s4263) -(trans s5749 s4244) -(trans s5749 s4257) -(trans s5749 s4270) -(trans s5750 s4251) -(trans s5750 s4264) -(trans s5750 s4277) -(trans s5751 s4258) -(trans s5751 s4271) -(trans s5751 s4284) -(trans s5752 s4265) -(trans s5752 s4278) -(trans s5752 s4291) -(trans s5753 s4272) -(trans s5753 s4285) -(trans s5753 s4298) -(trans s5754 s4279) -(trans s5754 s4292) -(trans s5754 s4305) -(trans s5755 s4286) -(trans s5755 s4299) -(trans s5755 s4312) -(trans s5756 s4293) -(trans s5756 s4306) -(trans s5756 s4319) -(trans s5757 s4300) -(trans s5757 s4313) -(trans s5757 s4326) -(trans s5758 s4307) -(trans s5758 s4320) -(trans s5758 s4333) -(trans s5759 s4314) -(trans s5759 s4327) -(trans s5759 s4340) -(trans s5760 s4321) -(trans s5760 s4334) -(trans s5760 s4347) -(trans s5761 s4328) -(trans s5761 s4341) -(trans s5761 s4354) -(trans s5762 s4335) -(trans s5762 s4348) -(trans s5762 s4361) -(trans s5763 s4342) -(trans s5763 s4355) -(trans s5763 s4368) -(trans s5764 s4349) -(trans s5764 s4362) -(trans s5764 s4375) -(trans s5765 s4356) -(trans s5765 s4369) -(trans s5765 s4382) -(trans s5766 s4363) -(trans s5766 s4376) -(trans s5766 s4389) -(trans s5767 s4370) -(trans s5767 s4383) -(trans s5767 s4396) -(trans s5768 s4377) -(trans s5768 s4390) -(trans s5768 s4403) -(trans s5769 s4384) -(trans s5769 s4397) -(trans s5769 s4410) -(trans s5770 s4391) -(trans s5770 s4404) -(trans s5770 s4417) -(trans s5771 s4398) -(trans s5771 s4411) -(trans s5771 s4424) -(trans s5772 s4405) -(trans s5772 s4418) -(trans s5772 s4431) -(trans s5773 s4412) -(trans s5773 s4425) -(trans s5773 s4438) -(trans s5774 s4419) -(trans s5774 s4432) -(trans s5774 s4445) -(trans s5775 s4426) -(trans s5775 s4439) -(trans s5775 s4452) -(trans s5776 s4433) -(trans s5776 s4446) -(trans s5776 s4459) -(trans s5777 s4440) -(trans s5777 s4453) -(trans s5777 s4466) -(trans s5778 s4447) -(trans s5778 s4460) -(trans s5778 s4473) -(trans s5779 s4454) -(trans s5779 s4467) -(trans s5779 s4480) -(trans s5780 s4461) -(trans s5780 s4474) -(trans s5780 s4487) -(trans s5781 s4468) -(trans s5781 s4481) -(trans s5781 s4494) -(trans s5782 s4475) -(trans s5782 s4488) -(trans s5782 s4501) -(trans s5783 s4482) -(trans s5783 s4495) -(trans s5783 s4508) -(trans s5784 s4489) -(trans s5784 s4502) -(trans s5784 s4515) -(trans s5785 s4496) -(trans s5785 s4509) -(trans s5785 s4522) -(trans s5786 s4503) -(trans s5786 s4516) -(trans s5786 s4529) -(trans s5787 s4510) -(trans s5787 s4523) -(trans s5787 s4536) -(trans s5788 s4517) -(trans s5788 s4530) -(trans s5788 s4543) -(trans s5789 s4524) -(trans s5789 s4537) -(trans s5789 s4550) -(trans s5790 s4531) -(trans s5790 s4544) -(trans s5790 s4557) -(trans s5791 s4538) -(trans s5791 s4551) -(trans s5791 s4564) -(trans s5792 s4545) -(trans s5792 s4558) -(trans s5792 s4571) -(trans s5793 s4552) -(trans s5793 s4565) -(trans s5793 s4578) -(trans s5794 s4559) -(trans s5794 s4572) -(trans s5794 s4585) -(trans s5795 s4566) -(trans s5795 s4579) -(trans s5795 s4592) -(trans s5796 s4573) -(trans s5796 s4586) -(trans s5796 s4599) -(trans s5797 s4580) -(trans s5797 s4593) -(trans s5797 s4606) -(trans s5798 s4587) -(trans s5798 s4600) -(trans s5798 s4613) -(trans s5799 s4594) -(trans s5799 s4607) -(trans s5799 s4620) -(trans s5800 s4601) -(trans s5800 s4614) -(trans s5800 s4627) -(trans s5801 s4608) -(trans s5801 s4621) -(trans s5801 s4634) -(trans s5802 s4615) -(trans s5802 s4628) -(trans s5802 s4641) -(trans s5803 s4622) -(trans s5803 s4635) -(trans s5803 s4648) -(trans s5804 s4629) -(trans s5804 s4642) -(trans s5804 s4655) -(trans s5805 s4636) -(trans s5805 s4649) -(trans s5805 s4662) -(trans s5806 s4643) -(trans s5806 s4656) -(trans s5806 s4669) -(trans s5807 s4650) -(trans s5807 s4663) -(trans s5807 s4676) -(trans s5808 s4657) -(trans s5808 s4670) -(trans s5808 s4683) -(trans s5809 s4664) -(trans s5809 s4677) -(trans s5809 s4690) -(trans s5810 s4671) -(trans s5810 s4684) -(trans s5810 s4697) -(trans s5811 s4678) -(trans s5811 s4691) -(trans s5811 s4704) -(trans s5812 s4685) -(trans s5812 s4698) -(trans s5812 s4711) -(trans s5813 s4692) -(trans s5813 s4705) -(trans s5813 s4718) -(trans s5814 s4699) -(trans s5814 s4712) -(trans s5814 s4725) -(trans s5815 s4706) -(trans s5815 s4719) -(trans s5815 s4732) -(trans s5816 s4713) -(trans s5816 s4726) -(trans s5816 s4739) -(trans s5817 s4720) -(trans s5817 s4733) -(trans s5817 s4746) -(trans s5818 s4727) -(trans s5818 s4740) -(trans s5818 s4753) -(trans s5819 s4734) -(trans s5819 s4747) -(trans s5819 s4760) -(trans s5820 s4741) -(trans s5820 s4754) -(trans s5820 s4767) -(trans s5821 s4748) -(trans s5821 s4761) -(trans s5821 s4774) -(trans s5822 s4755) -(trans s5822 s4768) -(trans s5822 s4781) -(trans s5823 s4762) -(trans s5823 s4775) -(trans s5823 s4788) -(trans s5824 s4769) -(trans s5824 s4782) -(trans s5824 s4795) -(trans s5825 s4776) -(trans s5825 s4789) -(trans s5825 s4802) -(trans s5826 s4783) -(trans s5826 s4796) -(trans s5826 s4809) -(trans s5827 s4790) -(trans s5827 s4803) -(trans s5827 s4816) -(trans s5828 s4797) -(trans s5828 s4810) -(trans s5828 s4823) -(trans s5829 s4804) -(trans s5829 s4817) -(trans s5829 s4830) -(trans s5830 s4811) -(trans s5830 s4824) -(trans s5830 s4837) -(trans s5831 s4818) -(trans s5831 s4831) -(trans s5831 s4844) -(trans s5832 s4825) -(trans s5832 s4838) -(trans s5832 s4851) -(trans s5833 s4832) -(trans s5833 s4845) -(trans s5833 s4858) -(trans s5834 s4839) -(trans s5834 s4852) -(trans s5834 s4865) -(trans s5835 s4846) -(trans s5835 s4859) -(trans s5835 s4872) -(trans s5836 s4853) -(trans s5836 s4866) -(trans s5836 s4879) -(trans s5837 s4860) -(trans s5837 s4873) -(trans s5837 s4886) -(trans s5838 s4867) -(trans s5838 s4880) -(trans s5838 s4893) -(trans s5839 s4874) -(trans s5839 s4887) -(trans s5839 s4900) -(trans s5840 s4881) -(trans s5840 s4894) -(trans s5840 s4907) -(trans s5841 s4888) -(trans s5841 s4901) -(trans s5841 s4914) -(trans s5842 s4895) -(trans s5842 s4908) -(trans s5842 s4921) -(trans s5843 s4902) -(trans s5843 s4915) -(trans s5843 s4928) -(trans s5844 s4909) -(trans s5844 s4922) -(trans s5844 s4935) -(trans s5845 s4916) -(trans s5845 s4929) -(trans s5845 s4942) -(trans s5846 s4923) -(trans s5846 s4936) -(trans s5846 s4949) -(trans s5847 s4930) -(trans s5847 s4943) -(trans s5847 s4956) -(trans s5848 s4937) -(trans s5848 s4950) -(trans s5848 s4963) -(trans s5849 s4944) -(trans s5849 s4957) -(trans s5849 s4970) -(trans s5850 s4951) -(trans s5850 s4964) -(trans s5850 s4977) -(trans s5851 s4958) -(trans s5851 s4971) -(trans s5851 s4984) -(trans s5852 s4965) -(trans s5852 s4978) -(trans s5852 s4991) -(trans s5853 s4972) -(trans s5853 s4985) -(trans s5853 s4998) -(trans s5854 s4979) -(trans s5854 s4992) -(trans s5854 s5005) -(trans s5855 s4986) -(trans s5855 s4999) -(trans s5855 s5012) -(trans s5856 s4993) -(trans s5856 s5006) -(trans s5856 s5019) -(trans s5857 s5000) -(trans s5857 s5013) -(trans s5857 s5026) -(trans s5858 s5007) -(trans s5858 s5020) -(trans s5858 s5033) -(trans s5859 s5014) -(trans s5859 s5027) -(trans s5859 s5040) -(trans s5860 s5021) -(trans s5860 s5034) -(trans s5860 s5047) -(trans s5861 s5028) -(trans s5861 s5041) -(trans s5861 s5054) -(trans s5862 s5035) -(trans s5862 s5048) -(trans s5862 s5061) -(trans s5863 s5042) -(trans s5863 s5055) -(trans s5863 s5068) -(trans s5864 s5049) -(trans s5864 s5062) -(trans s5864 s5075) -(trans s5865 s5056) -(trans s5865 s5069) -(trans s5865 s5082) -(trans s5866 s5063) -(trans s5866 s5076) -(trans s5866 s5089) -(trans s5867 s5070) -(trans s5867 s5083) -(trans s5867 s5096) -(trans s5868 s5077) -(trans s5868 s5090) -(trans s5868 s5103) -(trans s5869 s5084) -(trans s5869 s5097) -(trans s5869 s5110) -(trans s5870 s5091) -(trans s5870 s5104) -(trans s5870 s5117) -(trans s5871 s5098) -(trans s5871 s5111) -(trans s5871 s5124) -(trans s5872 s5105) -(trans s5872 s5118) -(trans s5872 s5131) -(trans s5873 s5112) -(trans s5873 s5125) -(trans s5873 s5138) -(trans s5874 s5119) -(trans s5874 s5132) -(trans s5874 s5145) -(trans s5875 s5126) -(trans s5875 s5139) -(trans s5875 s5152) -(trans s5876 s5133) -(trans s5876 s5146) -(trans s5876 s5159) -(trans s5877 s5140) -(trans s5877 s5153) -(trans s5877 s5166) -(trans s5878 s5147) -(trans s5878 s5160) -(trans s5878 s5173) -(trans s5879 s5154) -(trans s5879 s5167) -(trans s5879 s5180) -(trans s5880 s5161) -(trans s5880 s5174) -(trans s5880 s5187) -(trans s5881 s5168) -(trans s5881 s5181) -(trans s5881 s5194) -(trans s5882 s5175) -(trans s5882 s5188) -(trans s5882 s5201) -(trans s5883 s5182) -(trans s5883 s5195) -(trans s5883 s5208) -(trans s5884 s5189) -(trans s5884 s5202) -(trans s5884 s5215) -(trans s5885 s5196) -(trans s5885 s5209) -(trans s5885 s5222) -(trans s5886 s5203) -(trans s5886 s5216) -(trans s5886 s5229) -(trans s5887 s5210) -(trans s5887 s5223) -(trans s5887 s5236) -(trans s5888 s5217) -(trans s5888 s5230) -(trans s5888 s5243) -(trans s5889 s5224) -(trans s5889 s5237) -(trans s5889 s5250) -(trans s5890 s5231) -(trans s5890 s5244) -(trans s5890 s5257) -(trans s5891 s5238) -(trans s5891 s5251) -(trans s5891 s5264) -(trans s5892 s5245) -(trans s5892 s5258) -(trans s5892 s5271) -(trans s5893 s5252) -(trans s5893 s5265) -(trans s5893 s5278) -(trans s5894 s5259) -(trans s5894 s5272) -(trans s5894 s5285) -(trans s5895 s5266) -(trans s5895 s5279) -(trans s5895 s5292) -(trans s5896 s5273) -(trans s5896 s5286) -(trans s5896 s5299) -(trans s5897 s5280) -(trans s5897 s5293) -(trans s5897 s5306) -(trans s5898 s5287) -(trans s5898 s5300) -(trans s5898 s5313) -(trans s5899 s5294) -(trans s5899 s5307) -(trans s5899 s5320) -(trans s5900 s5301) -(trans s5900 s5314) -(trans s5900 s5327) -(trans s5901 s5308) -(trans s5901 s5321) -(trans s5901 s5334) -(trans s5902 s5315) -(trans s5902 s5328) -(trans s5902 s5341) -(trans s5903 s5322) -(trans s5903 s5335) -(trans s5903 s5348) -(trans s5904 s5329) -(trans s5904 s5342) -(trans s5904 s5355) -(trans s5905 s5336) -(trans s5905 s5349) -(trans s5905 s5362) -(trans s5906 s5343) -(trans s5906 s5356) -(trans s5906 s5369) -(trans s5907 s5350) -(trans s5907 s5363) -(trans s5907 s5376) -(trans s5908 s5357) -(trans s5908 s5370) -(trans s5908 s5383) -(trans s5909 s5364) -(trans s5909 s5377) -(trans s5909 s5390) -(trans s5910 s5371) -(trans s5910 s5384) -(trans s5910 s5397) -(trans s5911 s5378) -(trans s5911 s5391) -(trans s5911 s5404) -(trans s5912 s5385) -(trans s5912 s5398) -(trans s5912 s5411) -(trans s5913 s5392) -(trans s5913 s5405) -(trans s5913 s5418) -(trans s5914 s5399) -(trans s5914 s5412) -(trans s5914 s5425) -(trans s5915 s5406) -(trans s5915 s5419) -(trans s5915 s5432) -(trans s5916 s5413) -(trans s5916 s5426) -(trans s5916 s5439) -(trans s5917 s5420) -(trans s5917 s5433) -(trans s5917 s5446) -(trans s5918 s5427) -(trans s5918 s5440) -(trans s5918 s5453) -(trans s5919 s5434) -(trans s5919 s5447) -(trans s5919 s5460) -(trans s5920 s5441) -(trans s5920 s5454) -(trans s5920 s5467) -(trans s5921 s5448) -(trans s5921 s5461) -(trans s5921 s5474) -(trans s5922 s5455) -(trans s5922 s5468) -(trans s5922 s5481) -(trans s5923 s5462) -(trans s5923 s5475) -(trans s5923 s5488) -(trans s5924 s5469) -(trans s5924 s5482) -(trans s5924 s5495) -(trans s5925 s5476) -(trans s5925 s5489) -(trans s5925 s5502) -(trans s5926 s5483) -(trans s5926 s5496) -(trans s5926 s5509) -(trans s5927 s5490) -(trans s5927 s5503) -(trans s5927 s5516) -(trans s5928 s5497) -(trans s5928 s5510) -(trans s5928 s5523) -(trans s5929 s5504) -(trans s5929 s5517) -(trans s5929 s5530) -(trans s5930 s5511) -(trans s5930 s5524) -(trans s5930 s5537) -(trans s5931 s5518) -(trans s5931 s5531) -(trans s5931 s5544) -(trans s5932 s5525) -(trans s5932 s5538) -(trans s5932 s5551) -(trans s5933 s5532) -(trans s5933 s5545) -(trans s5933 s5558) -(trans s5934 s5539) -(trans s5934 s5552) -(trans s5934 s5565) -(trans s5935 s5546) -(trans s5935 s5559) -(trans s5935 s5572) -(trans s5936 s5553) -(trans s5936 s5566) -(trans s5936 s5579) -(trans s5937 s5560) -(trans s5937 s5573) -(trans s5937 s5586) -(trans s5938 s5567) -(trans s5938 s5580) -(trans s5938 s5593) -(trans s5939 s5574) -(trans s5939 s5587) -(trans s5939 s5600) -(trans s5940 s5581) -(trans s5940 s5594) -(trans s5940 s5607) -(trans s5941 s5588) -(trans s5941 s5601) -(trans s5941 s5614) -(trans s5942 s5595) -(trans s5942 s5608) -(trans s5942 s5621) -(trans s5943 s5602) -(trans s5943 s5615) -(trans s5943 s5628) -(trans s5944 s5609) -(trans s5944 s5622) -(trans s5944 s5635) -(trans s5945 s5616) -(trans s5945 s5629) -(trans s5945 s5642) -(trans s5946 s5623) -(trans s5946 s5636) -(trans s5946 s5649) -(trans s5947 s5630) -(trans s5947 s5643) -(trans s5947 s5656) -(trans s5948 s5637) -(trans s5948 s5650) -(trans s5948 s5663) -(trans s5949 s5644) -(trans s5949 s5657) -(trans s5949 s5670) -(trans s5950 s5651) -(trans s5950 s5664) -(trans s5950 s5677) -(trans s5951 s5658) -(trans s5951 s5671) -(trans s5951 s5684) -(trans s5952 s5665) -(trans s5952 s5678) -(trans s5952 s5691) -(trans s5953 s5672) -(trans s5953 s5685) -(trans s5953 s5698) -(trans s5954 s5679) -(trans s5954 s5692) -(trans s5954 s5705) -(trans s5955 s5686) -(trans s5955 s5699) -(trans s5955 s5712) -(trans s5956 s5693) -(trans s5956 s5706) -(trans s5956 s5719) -(trans s5957 s5700) -(trans s5957 s5713) -(trans s5957 s5726) -(trans s5958 s5707) -(trans s5958 s5720) -(trans s5958 s5733) -(trans s5959 s5714) -(trans s5959 s5727) -(trans s5959 s5740) -(trans s5960 s5721) -(trans s5960 s5734) -(trans s5960 s5747) -(trans s5961 s5728) -(trans s5961 s5741) -(trans s5961 s5754) -(trans s5962 s5735) -(trans s5962 s5748) -(trans s5962 s5761) -(trans s5963 s5742) -(trans s5963 s5755) -(trans s5963 s5768) -(trans s5964 s5749) -(trans s5964 s5762) -(trans s5964 s5775) -(trans s5965 s5756) -(trans s5965 s5769) -(trans s5965 s5782) -(trans s5966 s5763) -(trans s5966 s5776) -(trans s5966 s5789) -(trans s5967 s5770) -(trans s5967 s5783) -(trans s5967 s5796) -(trans s5968 s5777) -(trans s5968 s5790) -(trans s5968 s5803) -(trans s5969 s5784) -(trans s5969 s5797) -(trans s5969 s5810) -(trans s5970 s5791) -(trans s5970 s5804) -(trans s5970 s5817) -(trans s5971 s5798) -(trans s5971 s5811) -(trans s5971 s5824) -(trans s5972 s5805) -(trans s5972 s5818) -(trans s5972 s5831) -(trans s5973 s5812) -(trans s5973 s5825) -(trans s5973 s5838) -(trans s5974 s5819) -(trans s5974 s5832) -(trans s5974 s5845) -(trans s5975 s5826) -(trans s5975 s5839) -(trans s5975 s5852) -(trans s5976 s5833) -(trans s5976 s5846) -(trans s5976 s5859) -(trans s5977 s5840) -(trans s5977 s5853) -(trans s5977 s5866) -(trans s5978 s5847) -(trans s5978 s5860) -(trans s5978 s5873) -(trans s5979 s5854) -(trans s5979 s5867) -(trans s5979 s5880) -(trans s5980 s5861) -(trans s5980 s5874) -(trans s5980 s5887) -(trans s5981 s5868) -(trans s5981 s5881) -(trans s5981 s5894) -(trans s5982 s5875) -(trans s5982 s5888) -(trans s5982 s5901) -(trans s5983 s5882) -(trans s5983 s5895) -(trans s5983 s5908) -(trans s5984 s5889) -(trans s5984 s5902) -(trans s5984 s5915) -(trans s5985 s5896) -(trans s5985 s5909) -(trans s5985 s5922) -(trans s5986 s5903) -(trans s5986 s5916) -(trans s5986 s5929) -(trans s5987 s5910) -(trans s5987 s5923) -(trans s5987 s5936) -(trans s5988 s5917) -(trans s5988 s5930) -(trans s5988 s5943) -(trans s5989 s5924) -(trans s5989 s5937) -(trans s5989 s5950) -(trans s5990 s5931) -(trans s5990 s5944) -(trans s5990 s5957) -(trans s5991 s5938) -(trans s5991 s5951) -(trans s5991 s5964) -(trans s5992 s5945) -(trans s5992 s5958) -(trans s5992 s5971) -(trans s5993 s5952) -(trans s5993 s5965) -(trans s5993 s5978) -(trans s5994 s5959) -(trans s5994 s5972) -(trans s5994 s5985) -(trans s5995 s5966) -(trans s5995 s5979) -(trans s5995 s5992) -(trans s5996 s5973) -(trans s5996 s5986) -(trans s5996 s5999) -(trans s5997 s5980) -(trans s5997 s5993) -(trans s5997 s6) -(trans s5998 s5987) -(trans s5998 s0) -(trans s5998 s13) -(trans s5999 s5994) -(trans s5999 s7) -(trans s5999 s20) -(state s0) -(fuelN (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))))))))))))) - -(exec (1 Z) (, (exec (1 $l) $p $t) (fuelN (S $k)) (state $s) (trans $s $u)) - (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (fuelN $k)) (- (fuelN (S $k))))) diff --git a/examples/transforms/pc2_delta.mm2 b/examples/transforms/pc2_delta.mm2 deleted file mode 100644 index 19a14162..00000000 --- a/examples/transforms/pc2_delta.mm2 +++ /dev/null @@ -1,4010 +0,0 @@ -(petri (? c0 p0 (! c1 p1))) -(petri (? c1 p1 (! c2 p2))) -(petri (? c2 p2 (! c3 p3))) -(petri (? c3 p3 (! c4 p4))) -(petri (? c4 p4 (! c5 p5))) -(petri (? c5 p5 (! c6 p6))) -(petri (? c6 p6 (! c7 p7))) -(petri (? c7 p7 (! c8 p8))) -(petri (? c8 p8 (! c9 p9))) -(petri (? c9 p9 (! c10 p10))) -(petri (? c10 p10 (! c11 p11))) -(petri (? c11 p11 (! c12 p12))) -(petri (? c12 p12 (! c13 p13))) -(petri (? c13 p13 (! c14 p14))) -(petri (? c14 p14 (! c15 p15))) -(petri (? c15 p15 (! c16 p16))) -(petri (? c16 p16 (! c17 p17))) -(petri (? c17 p17 (! c18 p18))) -(petri (? c18 p18 (! c19 p19))) -(petri (? c19 p19 (! c20 p20))) -(petri (? c20 p20 (! c21 p21))) -(petri (? c21 p21 (! c22 p22))) -(petri (? c22 p22 (! c23 p23))) -(petri (? c23 p23 (! c24 p24))) -(petri (? c24 p24 (! c25 p25))) -(petri (? c25 p25 (! c26 p26))) -(petri (? c26 p26 (! c27 p27))) -(petri (? c27 p27 (! c28 p28))) -(petri (? c28 p28 (! c29 p29))) -(petri (? c29 p29 (! c30 p30))) -(petri (? c30 p30 (! c31 p31))) -(petri (? c31 p31 (! c32 p32))) -(petri (? c32 p32 (! c33 p33))) -(petri (? c33 p33 (! c34 p34))) -(petri (? c34 p34 (! c35 p35))) -(petri (? c35 p35 (! c36 p36))) -(petri (? c36 p36 (! c37 p37))) -(petri (? c37 p37 (! c38 p38))) -(petri (? c38 p38 (! c39 p39))) -(petri (? c39 p39 (! c40 p40))) -(petri (? c40 p40 (! c41 p41))) -(petri (? c41 p41 (! c42 p42))) -(petri (? c42 p42 (! c43 p43))) -(petri (? c43 p43 (! c44 p44))) -(petri (? c44 p44 (! c45 p45))) -(petri (? c45 p45 (! c46 p46))) -(petri (? c46 p46 (! c47 p47))) -(petri (? c47 p47 (! c48 p48))) -(petri (? c48 p48 (! c49 p49))) -(petri (? c49 p49 (! c50 p50))) -(petri (? c50 p50 (! c51 p51))) -(petri (? c51 p51 (! c52 p52))) -(petri (? c52 p52 (! c53 p53))) -(petri (? c53 p53 (! c54 p54))) -(petri (? c54 p54 (! c55 p55))) -(petri (? c55 p55 (! c56 p56))) -(petri (? c56 p56 (! c57 p57))) -(petri (? c57 p57 (! c58 p58))) -(petri (? c58 p58 (! c59 p59))) -(petri (? c59 p59 (! c60 p60))) -(petri (? c60 p60 (! c61 p61))) -(petri (? c61 p61 (! c62 p62))) -(petri (? c62 p62 (! c63 p63))) -(petri (? c63 p63 (! c64 p64))) -(petri (? c64 p64 (! c65 p65))) -(petri (? c65 p65 (! c66 p66))) -(petri (? c66 p66 (! c67 p67))) -(petri (? c67 p67 (! c68 p68))) -(petri (? c68 p68 (! c69 p69))) -(petri (? c69 p69 (! c70 p70))) -(petri (? c70 p70 (! c71 p71))) -(petri (? c71 p71 (! c72 p72))) -(petri (? c72 p72 (! c73 p73))) -(petri (? c73 p73 (! c74 p74))) -(petri (? c74 p74 (! c75 p75))) -(petri (? c75 p75 (! c76 p76))) -(petri (? c76 p76 (! c77 p77))) -(petri (? c77 p77 (! c78 p78))) -(petri (? c78 p78 (! c79 p79))) -(petri (? c79 p79 (! c80 p80))) -(petri (? c80 p80 (! c81 p81))) -(petri (? c81 p81 (! c82 p82))) -(petri (? c82 p82 (! c83 p83))) -(petri (? c83 p83 (! c84 p84))) -(petri (? c84 p84 (! c85 p85))) -(petri (? c85 p85 (! c86 p86))) -(petri (? c86 p86 (! c87 p87))) -(petri (? c87 p87 (! c88 p88))) -(petri (? c88 p88 (! c89 p89))) -(petri (? c89 p89 (! c90 p90))) -(petri (? c90 p90 (! c91 p91))) -(petri (? c91 p91 (! c92 p92))) -(petri (? c92 p92 (! c93 p93))) -(petri (? c93 p93 (! c94 p94))) -(petri (? c94 p94 (! c95 p95))) -(petri (? c95 p95 (! c96 p96))) -(petri (? c96 p96 (! c97 p97))) -(petri (? c97 p97 (! c98 p98))) -(petri (? c98 p98 (! c99 p99))) -(petri (? c99 p99 (! c100 p100))) -(petri (? c100 p100 (! c101 p101))) -(petri (? c101 p101 (! c102 p102))) -(petri (? c102 p102 (! c103 p103))) -(petri (? c103 p103 (! c104 p104))) -(petri (? c104 p104 (! c105 p105))) -(petri (? c105 p105 (! c106 p106))) -(petri (? c106 p106 (! c107 p107))) -(petri (? c107 p107 (! c108 p108))) -(petri (? c108 p108 (! c109 p109))) -(petri (? c109 p109 (! c110 p110))) -(petri (? c110 p110 (! c111 p111))) -(petri (? c111 p111 (! c112 p112))) -(petri (? c112 p112 (! c113 p113))) -(petri (? c113 p113 (! c114 p114))) -(petri (? c114 p114 (! c115 p115))) -(petri (? c115 p115 (! c116 p116))) -(petri (? c116 p116 (! c117 p117))) -(petri (? c117 p117 (! c118 p118))) -(petri (? c118 p118 (! c119 p119))) -(petri (? c119 p119 (! c120 p120))) -(petri (? c120 p120 (! c121 p121))) -(petri (? c121 p121 (! c122 p122))) -(petri (? c122 p122 (! c123 p123))) -(petri (? c123 p123 (! c124 p124))) -(petri (? c124 p124 (! c125 p125))) -(petri (? c125 p125 (! c126 p126))) -(petri (? c126 p126 (! c127 p127))) -(petri (? c127 p127 (! c128 p128))) -(petri (? c128 p128 (! c129 p129))) -(petri (? c129 p129 (! c130 p130))) -(petri (? c130 p130 (! c131 p131))) -(petri (? c131 p131 (! c132 p132))) -(petri (? c132 p132 (! c133 p133))) -(petri (? c133 p133 (! c134 p134))) -(petri (? c134 p134 (! c135 p135))) -(petri (? c135 p135 (! c136 p136))) -(petri (? c136 p136 (! c137 p137))) -(petri (? c137 p137 (! c138 p138))) -(petri (? c138 p138 (! c139 p139))) -(petri (? c139 p139 (! c140 p140))) -(petri (? c140 p140 (! c141 p141))) -(petri (? c141 p141 (! c142 p142))) -(petri (? c142 p142 (! c143 p143))) -(petri (? c143 p143 (! c144 p144))) -(petri (? c144 p144 (! c145 p145))) -(petri (? c145 p145 (! c146 p146))) -(petri (? c146 p146 (! c147 p147))) -(petri (? c147 p147 (! c148 p148))) -(petri (? c148 p148 (! c149 p149))) -(petri (? c149 p149 (! c150 p150))) -(petri (? c150 p150 (! c151 p151))) -(petri (? c151 p151 (! c152 p152))) -(petri (? c152 p152 (! c153 p153))) -(petri (? c153 p153 (! c154 p154))) -(petri (? c154 p154 (! c155 p155))) -(petri (? c155 p155 (! c156 p156))) -(petri (? c156 p156 (! c157 p157))) -(petri (? c157 p157 (! c158 p158))) -(petri (? c158 p158 (! c159 p159))) -(petri (? c159 p159 (! c160 p160))) -(petri (? c160 p160 (! c161 p161))) -(petri (? c161 p161 (! c162 p162))) -(petri (? c162 p162 (! c163 p163))) -(petri (? c163 p163 (! c164 p164))) -(petri (? c164 p164 (! c165 p165))) -(petri (? c165 p165 (! c166 p166))) -(petri (? c166 p166 (! c167 p167))) -(petri (? c167 p167 (! c168 p168))) -(petri (? c168 p168 (! c169 p169))) -(petri (? c169 p169 (! c170 p170))) -(petri (? c170 p170 (! c171 p171))) -(petri (? c171 p171 (! c172 p172))) -(petri (? c172 p172 (! c173 p173))) -(petri (? c173 p173 (! c174 p174))) -(petri (? c174 p174 (! c175 p175))) -(petri (? c175 p175 (! c176 p176))) -(petri (? c176 p176 (! c177 p177))) -(petri (? c177 p177 (! c178 p178))) -(petri (? c178 p178 (! c179 p179))) -(petri (? c179 p179 (! c180 p180))) -(petri (? c180 p180 (! c181 p181))) -(petri (? c181 p181 (! c182 p182))) -(petri (? c182 p182 (! c183 p183))) -(petri (? c183 p183 (! c184 p184))) -(petri (? c184 p184 (! c185 p185))) -(petri (? c185 p185 (! c186 p186))) -(petri (? c186 p186 (! c187 p187))) -(petri (? c187 p187 (! c188 p188))) -(petri (? c188 p188 (! c189 p189))) -(petri (? c189 p189 (! c190 p190))) -(petri (? c190 p190 (! c191 p191))) -(petri (? c191 p191 (! c192 p192))) -(petri (? c192 p192 (! c193 p193))) -(petri (? c193 p193 (! c194 p194))) -(petri (? c194 p194 (! c195 p195))) -(petri (? c195 p195 (! c196 p196))) -(petri (? c196 p196 (! c197 p197))) -(petri (? c197 p197 (! c198 p198))) -(petri (? c198 p198 (! c199 p199))) -(petri (? c199 p199 (! c200 p200))) -(petri (? c200 p200 (! c201 p201))) -(petri (? c201 p201 (! c202 p202))) -(petri (? c202 p202 (! c203 p203))) -(petri (? c203 p203 (! c204 p204))) -(petri (? c204 p204 (! c205 p205))) -(petri (? c205 p205 (! c206 p206))) -(petri (? c206 p206 (! c207 p207))) -(petri (? c207 p207 (! c208 p208))) -(petri (? c208 p208 (! c209 p209))) -(petri (? c209 p209 (! c210 p210))) -(petri (? c210 p210 (! c211 p211))) -(petri (? c211 p211 (! c212 p212))) -(petri (? c212 p212 (! c213 p213))) -(petri (? c213 p213 (! c214 p214))) -(petri (? c214 p214 (! c215 p215))) -(petri (? c215 p215 (! c216 p216))) -(petri (? c216 p216 (! c217 p217))) -(petri (? c217 p217 (! c218 p218))) -(petri (? c218 p218 (! c219 p219))) -(petri (? c219 p219 (! c220 p220))) -(petri (? c220 p220 (! c221 p221))) -(petri (? c221 p221 (! c222 p222))) -(petri (? c222 p222 (! c223 p223))) -(petri (? c223 p223 (! c224 p224))) -(petri (? c224 p224 (! c225 p225))) -(petri (? c225 p225 (! c226 p226))) -(petri (? c226 p226 (! c227 p227))) -(petri (? c227 p227 (! c228 p228))) -(petri (? c228 p228 (! c229 p229))) -(petri (? c229 p229 (! c230 p230))) -(petri (? c230 p230 (! c231 p231))) -(petri (? c231 p231 (! c232 p232))) -(petri (? c232 p232 (! c233 p233))) -(petri (? c233 p233 (! c234 p234))) -(petri (? c234 p234 (! c235 p235))) -(petri (? c235 p235 (! c236 p236))) -(petri (? c236 p236 (! c237 p237))) -(petri (? c237 p237 (! c238 p238))) -(petri (? c238 p238 (! c239 p239))) -(petri (? c239 p239 (! c240 p240))) -(petri (? c240 p240 (! c241 p241))) -(petri (? c241 p241 (! c242 p242))) -(petri (? c242 p242 (! c243 p243))) -(petri (? c243 p243 (! c244 p244))) -(petri (? c244 p244 (! c245 p245))) -(petri (? c245 p245 (! c246 p246))) -(petri (? c246 p246 (! c247 p247))) -(petri (? c247 p247 (! c248 p248))) -(petri (? c248 p248 (! c249 p249))) -(petri (? c249 p249 (! c250 p250))) -(petri (? c250 p250 (! c251 p251))) -(petri (? c251 p251 (! c252 p252))) -(petri (? c252 p252 (! c253 p253))) -(petri (? c253 p253 (! c254 p254))) -(petri (? c254 p254 (! c255 p255))) -(petri (? c255 p255 (! c256 p256))) -(petri (? c256 p256 (! c257 p257))) -(petri (? c257 p257 (! c258 p258))) -(petri (? c258 p258 (! c259 p259))) -(petri (? c259 p259 (! c260 p260))) -(petri (? c260 p260 (! c261 p261))) -(petri (? c261 p261 (! c262 p262))) -(petri (? c262 p262 (! c263 p263))) -(petri (? c263 p263 (! c264 p264))) -(petri (? c264 p264 (! c265 p265))) -(petri (? c265 p265 (! c266 p266))) -(petri (? c266 p266 (! c267 p267))) -(petri (? c267 p267 (! c268 p268))) -(petri (? c268 p268 (! c269 p269))) -(petri (? c269 p269 (! c270 p270))) -(petri (? c270 p270 (! c271 p271))) -(petri (? c271 p271 (! c272 p272))) -(petri (? c272 p272 (! c273 p273))) -(petri (? c273 p273 (! c274 p274))) -(petri (? c274 p274 (! c275 p275))) -(petri (? c275 p275 (! c276 p276))) -(petri (? c276 p276 (! c277 p277))) -(petri (? c277 p277 (! c278 p278))) -(petri (? c278 p278 (! c279 p279))) -(petri (? c279 p279 (! c280 p280))) -(petri (? c280 p280 (! c281 p281))) -(petri (? c281 p281 (! c282 p282))) -(petri (? c282 p282 (! c283 p283))) -(petri (? c283 p283 (! c284 p284))) -(petri (? c284 p284 (! c285 p285))) -(petri (? c285 p285 (! c286 p286))) -(petri (? c286 p286 (! c287 p287))) -(petri (? c287 p287 (! c288 p288))) -(petri (? c288 p288 (! c289 p289))) -(petri (? c289 p289 (! c290 p290))) -(petri (? c290 p290 (! c291 p291))) -(petri (? c291 p291 (! c292 p292))) -(petri (? c292 p292 (! c293 p293))) -(petri (? c293 p293 (! c294 p294))) -(petri (? c294 p294 (! c295 p295))) -(petri (? c295 p295 (! c296 p296))) -(petri (? c296 p296 (! c297 p297))) -(petri (? c297 p297 (! c298 p298))) -(petri (? c298 p298 (! c299 p299))) -(petri (? c299 p299 (! c300 p300))) -(petri (? c300 p300 (! c301 p301))) -(petri (? c301 p301 (! c302 p302))) -(petri (? c302 p302 (! c303 p303))) -(petri (? c303 p303 (! c304 p304))) -(petri (? c304 p304 (! c305 p305))) -(petri (? c305 p305 (! c306 p306))) -(petri (? c306 p306 (! c307 p307))) -(petri (? c307 p307 (! c308 p308))) -(petri (? c308 p308 (! c309 p309))) -(petri (? c309 p309 (! c310 p310))) -(petri (? c310 p310 (! c311 p311))) -(petri (? c311 p311 (! c312 p312))) -(petri (? c312 p312 (! c313 p313))) -(petri (? c313 p313 (! c314 p314))) -(petri (? c314 p314 (! c315 p315))) -(petri (? c315 p315 (! c316 p316))) -(petri (? c316 p316 (! c317 p317))) -(petri (? c317 p317 (! c318 p318))) -(petri (? c318 p318 (! c319 p319))) -(petri (? c319 p319 (! c320 p320))) -(petri (? c320 p320 (! c321 p321))) -(petri (? c321 p321 (! c322 p322))) -(petri (? c322 p322 (! c323 p323))) -(petri (? c323 p323 (! c324 p324))) -(petri (? c324 p324 (! c325 p325))) -(petri (? c325 p325 (! c326 p326))) -(petri (? c326 p326 (! c327 p327))) -(petri (? c327 p327 (! c328 p328))) -(petri (? c328 p328 (! c329 p329))) -(petri (? c329 p329 (! c330 p330))) -(petri (? c330 p330 (! c331 p331))) -(petri (? c331 p331 (! c332 p332))) -(petri (? c332 p332 (! c333 p333))) -(petri (? c333 p333 (! c334 p334))) -(petri (? c334 p334 (! c335 p335))) -(petri (? c335 p335 (! c336 p336))) -(petri (? c336 p336 (! c337 p337))) -(petri (? c337 p337 (! c338 p338))) -(petri (? c338 p338 (! c339 p339))) -(petri (? c339 p339 (! c340 p340))) -(petri (? c340 p340 (! c341 p341))) -(petri (? c341 p341 (! c342 p342))) -(petri (? c342 p342 (! c343 p343))) -(petri (? c343 p343 (! c344 p344))) -(petri (? c344 p344 (! c345 p345))) -(petri (? c345 p345 (! c346 p346))) -(petri (? c346 p346 (! c347 p347))) -(petri (? c347 p347 (! c348 p348))) -(petri (? c348 p348 (! c349 p349))) -(petri (? c349 p349 (! c350 p350))) -(petri (? c350 p350 (! c351 p351))) -(petri (? c351 p351 (! c352 p352))) -(petri (? c352 p352 (! c353 p353))) -(petri (? c353 p353 (! c354 p354))) -(petri (? c354 p354 (! c355 p355))) -(petri (? c355 p355 (! c356 p356))) -(petri (? c356 p356 (! c357 p357))) -(petri (? c357 p357 (! c358 p358))) -(petri (? c358 p358 (! c359 p359))) -(petri (? c359 p359 (! c360 p360))) -(petri (? c360 p360 (! c361 p361))) -(petri (? c361 p361 (! c362 p362))) -(petri (? c362 p362 (! c363 p363))) -(petri (? c363 p363 (! c364 p364))) -(petri (? c364 p364 (! c365 p365))) -(petri (? c365 p365 (! c366 p366))) -(petri (? c366 p366 (! c367 p367))) -(petri (? c367 p367 (! c368 p368))) -(petri (? c368 p368 (! c369 p369))) -(petri (? c369 p369 (! c370 p370))) -(petri (? c370 p370 (! c371 p371))) -(petri (? c371 p371 (! c372 p372))) -(petri (? c372 p372 (! c373 p373))) -(petri (? c373 p373 (! c374 p374))) -(petri (? c374 p374 (! c375 p375))) -(petri (? c375 p375 (! c376 p376))) -(petri (? c376 p376 (! c377 p377))) -(petri (? c377 p377 (! c378 p378))) -(petri (? c378 p378 (! c379 p379))) -(petri (? c379 p379 (! c380 p380))) -(petri (? c380 p380 (! c381 p381))) -(petri (? c381 p381 (! c382 p382))) -(petri (? c382 p382 (! c383 p383))) -(petri (? c383 p383 (! c384 p384))) -(petri (? c384 p384 (! c385 p385))) -(petri (? c385 p385 (! c386 p386))) -(petri (? c386 p386 (! c387 p387))) -(petri (? c387 p387 (! c388 p388))) -(petri (? c388 p388 (! c389 p389))) -(petri (? c389 p389 (! c390 p390))) -(petri (? c390 p390 (! c391 p391))) -(petri (? c391 p391 (! c392 p392))) -(petri (? c392 p392 (! c393 p393))) -(petri (? c393 p393 (! c394 p394))) -(petri (? c394 p394 (! c395 p395))) -(petri (? c395 p395 (! c396 p396))) -(petri (? c396 p396 (! c397 p397))) -(petri (? c397 p397 (! c398 p398))) -(petri (? c398 p398 (! c399 p399))) -(petri (? c399 p399 (! c400 p400))) -(petri (? c400 p400 (! c401 p401))) -(petri (? c401 p401 (! c402 p402))) -(petri (? c402 p402 (! c403 p403))) -(petri (? c403 p403 (! c404 p404))) -(petri (? c404 p404 (! c405 p405))) -(petri (? c405 p405 (! c406 p406))) -(petri (? c406 p406 (! c407 p407))) -(petri (? c407 p407 (! c408 p408))) -(petri (? c408 p408 (! c409 p409))) -(petri (? c409 p409 (! c410 p410))) -(petri (? c410 p410 (! c411 p411))) -(petri (? c411 p411 (! c412 p412))) -(petri (? c412 p412 (! c413 p413))) -(petri (? c413 p413 (! c414 p414))) -(petri (? c414 p414 (! c415 p415))) -(petri (? c415 p415 (! c416 p416))) -(petri (? c416 p416 (! c417 p417))) -(petri (? c417 p417 (! c418 p418))) -(petri (? c418 p418 (! c419 p419))) -(petri (? c419 p419 (! c420 p420))) -(petri (? c420 p420 (! c421 p421))) -(petri (? c421 p421 (! c422 p422))) -(petri (? c422 p422 (! c423 p423))) -(petri (? c423 p423 (! c424 p424))) -(petri (? c424 p424 (! c425 p425))) -(petri (? c425 p425 (! c426 p426))) -(petri (? c426 p426 (! c427 p427))) -(petri (? c427 p427 (! c428 p428))) -(petri (? c428 p428 (! c429 p429))) -(petri (? c429 p429 (! c430 p430))) -(petri (? c430 p430 (! c431 p431))) -(petri (? c431 p431 (! c432 p432))) -(petri (? c432 p432 (! c433 p433))) -(petri (? c433 p433 (! c434 p434))) -(petri (? c434 p434 (! c435 p435))) -(petri (? c435 p435 (! c436 p436))) -(petri (? c436 p436 (! c437 p437))) -(petri (? c437 p437 (! c438 p438))) -(petri (? c438 p438 (! c439 p439))) -(petri (? c439 p439 (! c440 p440))) -(petri (? c440 p440 (! c441 p441))) -(petri (? c441 p441 (! c442 p442))) -(petri (? c442 p442 (! c443 p443))) -(petri (? c443 p443 (! c444 p444))) -(petri (? c444 p444 (! c445 p445))) -(petri (? c445 p445 (! c446 p446))) -(petri (? c446 p446 (! c447 p447))) -(petri (? c447 p447 (! c448 p448))) -(petri (? c448 p448 (! c449 p449))) -(petri (? c449 p449 (! c450 p450))) -(petri (? c450 p450 (! c451 p451))) -(petri (? c451 p451 (! c452 p452))) -(petri (? c452 p452 (! c453 p453))) -(petri (? c453 p453 (! c454 p454))) -(petri (? c454 p454 (! c455 p455))) -(petri (? c455 p455 (! c456 p456))) -(petri (? c456 p456 (! c457 p457))) -(petri (? c457 p457 (! c458 p458))) -(petri (? c458 p458 (! c459 p459))) -(petri (? c459 p459 (! c460 p460))) -(petri (? c460 p460 (! c461 p461))) -(petri (? c461 p461 (! c462 p462))) -(petri (? c462 p462 (! c463 p463))) -(petri (? c463 p463 (! c464 p464))) -(petri (? c464 p464 (! c465 p465))) -(petri (? c465 p465 (! c466 p466))) -(petri (? c466 p466 (! c467 p467))) -(petri (? c467 p467 (! c468 p468))) -(petri (? c468 p468 (! c469 p469))) -(petri (? c469 p469 (! c470 p470))) -(petri (? c470 p470 (! c471 p471))) -(petri (? c471 p471 (! c472 p472))) -(petri (? c472 p472 (! c473 p473))) -(petri (? c473 p473 (! c474 p474))) -(petri (? c474 p474 (! c475 p475))) -(petri (? c475 p475 (! c476 p476))) -(petri (? c476 p476 (! c477 p477))) -(petri (? c477 p477 (! c478 p478))) -(petri (? c478 p478 (! c479 p479))) -(petri (? c479 p479 (! c480 p480))) -(petri (? c480 p480 (! c481 p481))) -(petri (? c481 p481 (! c482 p482))) -(petri (? c482 p482 (! c483 p483))) -(petri (? c483 p483 (! c484 p484))) -(petri (? c484 p484 (! c485 p485))) -(petri (? c485 p485 (! c486 p486))) -(petri (? c486 p486 (! c487 p487))) -(petri (? c487 p487 (! c488 p488))) -(petri (? c488 p488 (! c489 p489))) -(petri (? c489 p489 (! c490 p490))) -(petri (? c490 p490 (! c491 p491))) -(petri (? c491 p491 (! c492 p492))) -(petri (? c492 p492 (! c493 p493))) -(petri (? c493 p493 (! c494 p494))) -(petri (? c494 p494 (! c495 p495))) -(petri (? c495 p495 (! c496 p496))) -(petri (? c496 p496 (! c497 p497))) -(petri (? c497 p497 (! c498 p498))) -(petri (? c498 p498 (! c499 p499))) -(petri (? c499 p499 (! c500 p500))) -(petri (? c500 p500 (! c501 p501))) -(petri (? c501 p501 (! c502 p502))) -(petri (? c502 p502 (! c503 p503))) -(petri (? c503 p503 (! c504 p504))) -(petri (? c504 p504 (! c505 p505))) -(petri (? c505 p505 (! c506 p506))) -(petri (? c506 p506 (! c507 p507))) -(petri (? c507 p507 (! c508 p508))) -(petri (? c508 p508 (! c509 p509))) -(petri (? c509 p509 (! c510 p510))) -(petri (? c510 p510 (! c511 p511))) -(petri (? c511 p511 (! c512 p512))) -(petri (? c512 p512 (! c513 p513))) -(petri (? c513 p513 (! c514 p514))) -(petri (? c514 p514 (! c515 p515))) -(petri (? c515 p515 (! c516 p516))) -(petri (? c516 p516 (! c517 p517))) -(petri (? c517 p517 (! c518 p518))) -(petri (? c518 p518 (! c519 p519))) -(petri (? c519 p519 (! c520 p520))) -(petri (? c520 p520 (! c521 p521))) -(petri (? c521 p521 (! c522 p522))) -(petri (? c522 p522 (! c523 p523))) -(petri (? c523 p523 (! c524 p524))) -(petri (? c524 p524 (! c525 p525))) -(petri (? c525 p525 (! c526 p526))) -(petri (? c526 p526 (! c527 p527))) -(petri (? c527 p527 (! c528 p528))) -(petri (? c528 p528 (! c529 p529))) -(petri (? c529 p529 (! c530 p530))) -(petri (? c530 p530 (! c531 p531))) -(petri (? c531 p531 (! c532 p532))) -(petri (? c532 p532 (! c533 p533))) -(petri (? c533 p533 (! c534 p534))) -(petri (? c534 p534 (! c535 p535))) -(petri (? c535 p535 (! c536 p536))) -(petri (? c536 p536 (! c537 p537))) -(petri (? c537 p537 (! c538 p538))) -(petri (? c538 p538 (! c539 p539))) -(petri (? c539 p539 (! c540 p540))) -(petri (? c540 p540 (! c541 p541))) -(petri (? c541 p541 (! c542 p542))) -(petri (? c542 p542 (! c543 p543))) -(petri (? c543 p543 (! c544 p544))) -(petri (? c544 p544 (! c545 p545))) -(petri (? c545 p545 (! c546 p546))) -(petri (? c546 p546 (! c547 p547))) -(petri (? c547 p547 (! c548 p548))) -(petri (? c548 p548 (! c549 p549))) -(petri (? c549 p549 (! c550 p550))) -(petri (? c550 p550 (! c551 p551))) -(petri (? c551 p551 (! c552 p552))) -(petri (? c552 p552 (! c553 p553))) -(petri (? c553 p553 (! c554 p554))) -(petri (? c554 p554 (! c555 p555))) -(petri (? c555 p555 (! c556 p556))) -(petri (? c556 p556 (! c557 p557))) -(petri (? c557 p557 (! c558 p558))) -(petri (? c558 p558 (! c559 p559))) -(petri (? c559 p559 (! c560 p560))) -(petri (? c560 p560 (! c561 p561))) -(petri (? c561 p561 (! c562 p562))) -(petri (? c562 p562 (! c563 p563))) -(petri (? c563 p563 (! c564 p564))) -(petri (? c564 p564 (! c565 p565))) -(petri (? c565 p565 (! c566 p566))) -(petri (? c566 p566 (! c567 p567))) -(petri (? c567 p567 (! c568 p568))) -(petri (? c568 p568 (! c569 p569))) -(petri (? c569 p569 (! c570 p570))) -(petri (? c570 p570 (! c571 p571))) -(petri (? c571 p571 (! c572 p572))) -(petri (? c572 p572 (! c573 p573))) -(petri (? c573 p573 (! c574 p574))) -(petri (? c574 p574 (! c575 p575))) -(petri (? c575 p575 (! c576 p576))) -(petri (? c576 p576 (! c577 p577))) -(petri (? c577 p577 (! c578 p578))) -(petri (? c578 p578 (! c579 p579))) -(petri (? c579 p579 (! c580 p580))) -(petri (? c580 p580 (! c581 p581))) -(petri (? c581 p581 (! c582 p582))) -(petri (? c582 p582 (! c583 p583))) -(petri (? c583 p583 (! c584 p584))) -(petri (? c584 p584 (! c585 p585))) -(petri (? c585 p585 (! c586 p586))) -(petri (? c586 p586 (! c587 p587))) -(petri (? c587 p587 (! c588 p588))) -(petri (? c588 p588 (! c589 p589))) -(petri (? c589 p589 (! c590 p590))) -(petri (? c590 p590 (! c591 p591))) -(petri (? c591 p591 (! c592 p592))) -(petri (? c592 p592 (! c593 p593))) -(petri (? c593 p593 (! c594 p594))) -(petri (? c594 p594 (! c595 p595))) -(petri (? c595 p595 (! c596 p596))) -(petri (? c596 p596 (! c597 p597))) -(petri (? c597 p597 (! c598 p598))) -(petri (? c598 p598 (! c599 p599))) -(petri (? c599 p599 (! c600 p600))) -(petri (? c600 p600 (! c601 p601))) -(petri (? c601 p601 (! c602 p602))) -(petri (? c602 p602 (! c603 p603))) -(petri (? c603 p603 (! c604 p604))) -(petri (? c604 p604 (! c605 p605))) -(petri (? c605 p605 (! c606 p606))) -(petri (? c606 p606 (! c607 p607))) -(petri (? c607 p607 (! c608 p608))) -(petri (? c608 p608 (! c609 p609))) -(petri (? c609 p609 (! c610 p610))) -(petri (? c610 p610 (! c611 p611))) -(petri (? c611 p611 (! c612 p612))) -(petri (? c612 p612 (! c613 p613))) -(petri (? c613 p613 (! c614 p614))) -(petri (? c614 p614 (! c615 p615))) -(petri (? c615 p615 (! c616 p616))) -(petri (? c616 p616 (! c617 p617))) -(petri (? c617 p617 (! c618 p618))) -(petri (? c618 p618 (! c619 p619))) -(petri (? c619 p619 (! c620 p620))) -(petri (? c620 p620 (! c621 p621))) -(petri (? c621 p621 (! c622 p622))) -(petri (? c622 p622 (! c623 p623))) -(petri (? c623 p623 (! c624 p624))) -(petri (? c624 p624 (! c625 p625))) -(petri (? c625 p625 (! c626 p626))) -(petri (? c626 p626 (! c627 p627))) -(petri (? c627 p627 (! c628 p628))) -(petri (? c628 p628 (! c629 p629))) -(petri (? c629 p629 (! c630 p630))) -(petri (? c630 p630 (! c631 p631))) -(petri (? c631 p631 (! c632 p632))) -(petri (? c632 p632 (! c633 p633))) -(petri (? c633 p633 (! c634 p634))) -(petri (? c634 p634 (! c635 p635))) -(petri (? c635 p635 (! c636 p636))) -(petri (? c636 p636 (! c637 p637))) -(petri (? c637 p637 (! c638 p638))) -(petri (? c638 p638 (! c639 p639))) -(petri (? c639 p639 (! c640 p640))) -(petri (? c640 p640 (! c641 p641))) -(petri (? c641 p641 (! c642 p642))) -(petri (? c642 p642 (! c643 p643))) -(petri (? c643 p643 (! c644 p644))) -(petri (? c644 p644 (! c645 p645))) -(petri (? c645 p645 (! c646 p646))) -(petri (? c646 p646 (! c647 p647))) -(petri (? c647 p647 (! c648 p648))) -(petri (? c648 p648 (! c649 p649))) -(petri (? c649 p649 (! c650 p650))) -(petri (? c650 p650 (! c651 p651))) -(petri (? c651 p651 (! c652 p652))) -(petri (? c652 p652 (! c653 p653))) -(petri (? c653 p653 (! c654 p654))) -(petri (? c654 p654 (! c655 p655))) -(petri (? c655 p655 (! c656 p656))) -(petri (? c656 p656 (! c657 p657))) -(petri (? c657 p657 (! c658 p658))) -(petri (? c658 p658 (! c659 p659))) -(petri (? c659 p659 (! c660 p660))) -(petri (? c660 p660 (! c661 p661))) -(petri (? c661 p661 (! c662 p662))) -(petri (? c662 p662 (! c663 p663))) -(petri (? c663 p663 (! c664 p664))) -(petri (? c664 p664 (! c665 p665))) -(petri (? c665 p665 (! c666 p666))) -(petri (? c666 p666 (! c667 p667))) -(petri (? c667 p667 (! c668 p668))) -(petri (? c668 p668 (! c669 p669))) -(petri (? c669 p669 (! c670 p670))) -(petri (? c670 p670 (! c671 p671))) -(petri (? c671 p671 (! c672 p672))) -(petri (? c672 p672 (! c673 p673))) -(petri (? c673 p673 (! c674 p674))) -(petri (? c674 p674 (! c675 p675))) -(petri (? c675 p675 (! c676 p676))) -(petri (? c676 p676 (! c677 p677))) -(petri (? c677 p677 (! c678 p678))) -(petri (? c678 p678 (! c679 p679))) -(petri (? c679 p679 (! c680 p680))) -(petri (? c680 p680 (! c681 p681))) -(petri (? c681 p681 (! c682 p682))) -(petri (? c682 p682 (! c683 p683))) -(petri (? c683 p683 (! c684 p684))) -(petri (? c684 p684 (! c685 p685))) -(petri (? c685 p685 (! c686 p686))) -(petri (? c686 p686 (! c687 p687))) -(petri (? c687 p687 (! c688 p688))) -(petri (? c688 p688 (! c689 p689))) -(petri (? c689 p689 (! c690 p690))) -(petri (? c690 p690 (! c691 p691))) -(petri (? c691 p691 (! c692 p692))) -(petri (? c692 p692 (! c693 p693))) -(petri (? c693 p693 (! c694 p694))) -(petri (? c694 p694 (! c695 p695))) -(petri (? c695 p695 (! c696 p696))) -(petri (? c696 p696 (! c697 p697))) -(petri (? c697 p697 (! c698 p698))) -(petri (? c698 p698 (! c699 p699))) -(petri (? c699 p699 (! c700 p700))) -(petri (? c700 p700 (! c701 p701))) -(petri (? c701 p701 (! c702 p702))) -(petri (? c702 p702 (! c703 p703))) -(petri (? c703 p703 (! c704 p704))) -(petri (? c704 p704 (! c705 p705))) -(petri (? c705 p705 (! c706 p706))) -(petri (? c706 p706 (! c707 p707))) -(petri (? c707 p707 (! c708 p708))) -(petri (? c708 p708 (! c709 p709))) -(petri (? c709 p709 (! c710 p710))) -(petri (? c710 p710 (! c711 p711))) -(petri (? c711 p711 (! c712 p712))) -(petri (? c712 p712 (! c713 p713))) -(petri (? c713 p713 (! c714 p714))) -(petri (? c714 p714 (! c715 p715))) -(petri (? c715 p715 (! c716 p716))) -(petri (? c716 p716 (! c717 p717))) -(petri (? c717 p717 (! c718 p718))) -(petri (? c718 p718 (! c719 p719))) -(petri (? c719 p719 (! c720 p720))) -(petri (? c720 p720 (! c721 p721))) -(petri (? c721 p721 (! c722 p722))) -(petri (? c722 p722 (! c723 p723))) -(petri (? c723 p723 (! c724 p724))) -(petri (? c724 p724 (! c725 p725))) -(petri (? c725 p725 (! c726 p726))) -(petri (? c726 p726 (! c727 p727))) -(petri (? c727 p727 (! c728 p728))) -(petri (? c728 p728 (! c729 p729))) -(petri (? c729 p729 (! c730 p730))) -(petri (? c730 p730 (! c731 p731))) -(petri (? c731 p731 (! c732 p732))) -(petri (? c732 p732 (! c733 p733))) -(petri (? c733 p733 (! c734 p734))) -(petri (? c734 p734 (! c735 p735))) -(petri (? c735 p735 (! c736 p736))) -(petri (? c736 p736 (! c737 p737))) -(petri (? c737 p737 (! c738 p738))) -(petri (? c738 p738 (! c739 p739))) -(petri (? c739 p739 (! c740 p740))) -(petri (? c740 p740 (! c741 p741))) -(petri (? c741 p741 (! c742 p742))) -(petri (? c742 p742 (! c743 p743))) -(petri (? c743 p743 (! c744 p744))) -(petri (? c744 p744 (! c745 p745))) -(petri (? c745 p745 (! c746 p746))) -(petri (? c746 p746 (! c747 p747))) -(petri (? c747 p747 (! c748 p748))) -(petri (? c748 p748 (! c749 p749))) -(petri (? c749 p749 (! c750 p750))) -(petri (? c750 p750 (! c751 p751))) -(petri (? c751 p751 (! c752 p752))) -(petri (? c752 p752 (! c753 p753))) -(petri (? c753 p753 (! c754 p754))) -(petri (? c754 p754 (! c755 p755))) -(petri (? c755 p755 (! c756 p756))) -(petri (? c756 p756 (! c757 p757))) -(petri (? c757 p757 (! c758 p758))) -(petri (? c758 p758 (! c759 p759))) -(petri (? c759 p759 (! c760 p760))) -(petri (? c760 p760 (! c761 p761))) -(petri (? c761 p761 (! c762 p762))) -(petri (? c762 p762 (! c763 p763))) -(petri (? c763 p763 (! c764 p764))) -(petri (? c764 p764 (! c765 p765))) -(petri (? c765 p765 (! c766 p766))) -(petri (? c766 p766 (! c767 p767))) -(petri (? c767 p767 (! c768 p768))) -(petri (? c768 p768 (! c769 p769))) -(petri (? c769 p769 (! c770 p770))) -(petri (? c770 p770 (! c771 p771))) -(petri (? c771 p771 (! c772 p772))) -(petri (? c772 p772 (! c773 p773))) -(petri (? c773 p773 (! c774 p774))) -(petri (? c774 p774 (! c775 p775))) -(petri (? c775 p775 (! c776 p776))) -(petri (? c776 p776 (! c777 p777))) -(petri (? c777 p777 (! c778 p778))) -(petri (? c778 p778 (! c779 p779))) -(petri (? c779 p779 (! c780 p780))) -(petri (? c780 p780 (! c781 p781))) -(petri (? c781 p781 (! c782 p782))) -(petri (? c782 p782 (! c783 p783))) -(petri (? c783 p783 (! c784 p784))) -(petri (? c784 p784 (! c785 p785))) -(petri (? c785 p785 (! c786 p786))) -(petri (? c786 p786 (! c787 p787))) -(petri (? c787 p787 (! c788 p788))) -(petri (? c788 p788 (! c789 p789))) -(petri (? c789 p789 (! c790 p790))) -(petri (? c790 p790 (! c791 p791))) -(petri (? c791 p791 (! c792 p792))) -(petri (? c792 p792 (! c793 p793))) -(petri (? c793 p793 (! c794 p794))) -(petri (? c794 p794 (! c795 p795))) -(petri (? c795 p795 (! c796 p796))) -(petri (? c796 p796 (! c797 p797))) -(petri (? c797 p797 (! c798 p798))) -(petri (? c798 p798 (! c799 p799))) -(petri (? c799 p799 (! c800 p800))) -(petri (? c800 p800 (! c801 p801))) -(petri (? c801 p801 (! c802 p802))) -(petri (? c802 p802 (! c803 p803))) -(petri (? c803 p803 (! c804 p804))) -(petri (? c804 p804 (! c805 p805))) -(petri (? c805 p805 (! c806 p806))) -(petri (? c806 p806 (! c807 p807))) -(petri (? c807 p807 (! c808 p808))) -(petri (? c808 p808 (! c809 p809))) -(petri (? c809 p809 (! c810 p810))) -(petri (? c810 p810 (! c811 p811))) -(petri (? c811 p811 (! c812 p812))) -(petri (? c812 p812 (! c813 p813))) -(petri (? c813 p813 (! c814 p814))) -(petri (? c814 p814 (! c815 p815))) -(petri (? c815 p815 (! c816 p816))) -(petri (? c816 p816 (! c817 p817))) -(petri (? c817 p817 (! c818 p818))) -(petri (? c818 p818 (! c819 p819))) -(petri (? c819 p819 (! c820 p820))) -(petri (? c820 p820 (! c821 p821))) -(petri (? c821 p821 (! c822 p822))) -(petri (? c822 p822 (! c823 p823))) -(petri (? c823 p823 (! c824 p824))) -(petri (? c824 p824 (! c825 p825))) -(petri (? c825 p825 (! c826 p826))) -(petri (? c826 p826 (! c827 p827))) -(petri (? c827 p827 (! c828 p828))) -(petri (? c828 p828 (! c829 p829))) -(petri (? c829 p829 (! c830 p830))) -(petri (? c830 p830 (! c831 p831))) -(petri (? c831 p831 (! c832 p832))) -(petri (? c832 p832 (! c833 p833))) -(petri (? c833 p833 (! c834 p834))) -(petri (? c834 p834 (! c835 p835))) -(petri (? c835 p835 (! c836 p836))) -(petri (? c836 p836 (! c837 p837))) -(petri (? c837 p837 (! c838 p838))) -(petri (? c838 p838 (! c839 p839))) -(petri (? c839 p839 (! c840 p840))) -(petri (? c840 p840 (! c841 p841))) -(petri (? c841 p841 (! c842 p842))) -(petri (? c842 p842 (! c843 p843))) -(petri (? c843 p843 (! c844 p844))) -(petri (? c844 p844 (! c845 p845))) -(petri (? c845 p845 (! c846 p846))) -(petri (? c846 p846 (! c847 p847))) -(petri (? c847 p847 (! c848 p848))) -(petri (? c848 p848 (! c849 p849))) -(petri (? c849 p849 (! c850 p850))) -(petri (? c850 p850 (! c851 p851))) -(petri (? c851 p851 (! c852 p852))) -(petri (? c852 p852 (! c853 p853))) -(petri (? c853 p853 (! c854 p854))) -(petri (? c854 p854 (! c855 p855))) -(petri (? c855 p855 (! c856 p856))) -(petri (? c856 p856 (! c857 p857))) -(petri (? c857 p857 (! c858 p858))) -(petri (? c858 p858 (! c859 p859))) -(petri (? c859 p859 (! c860 p860))) -(petri (? c860 p860 (! c861 p861))) -(petri (? c861 p861 (! c862 p862))) -(petri (? c862 p862 (! c863 p863))) -(petri (? c863 p863 (! c864 p864))) -(petri (? c864 p864 (! c865 p865))) -(petri (? c865 p865 (! c866 p866))) -(petri (? c866 p866 (! c867 p867))) -(petri (? c867 p867 (! c868 p868))) -(petri (? c868 p868 (! c869 p869))) -(petri (? c869 p869 (! c870 p870))) -(petri (? c870 p870 (! c871 p871))) -(petri (? c871 p871 (! c872 p872))) -(petri (? c872 p872 (! c873 p873))) -(petri (? c873 p873 (! c874 p874))) -(petri (? c874 p874 (! c875 p875))) -(petri (? c875 p875 (! c876 p876))) -(petri (? c876 p876 (! c877 p877))) -(petri (? c877 p877 (! c878 p878))) -(petri (? c878 p878 (! c879 p879))) -(petri (? c879 p879 (! c880 p880))) -(petri (? c880 p880 (! c881 p881))) -(petri (? c881 p881 (! c882 p882))) -(petri (? c882 p882 (! c883 p883))) -(petri (? c883 p883 (! c884 p884))) -(petri (? c884 p884 (! c885 p885))) -(petri (? c885 p885 (! c886 p886))) -(petri (? c886 p886 (! c887 p887))) -(petri (? c887 p887 (! c888 p888))) -(petri (? c888 p888 (! c889 p889))) -(petri (? c889 p889 (! c890 p890))) -(petri (? c890 p890 (! c891 p891))) -(petri (? c891 p891 (! c892 p892))) -(petri (? c892 p892 (! c893 p893))) -(petri (? c893 p893 (! c894 p894))) -(petri (? c894 p894 (! c895 p895))) -(petri (? c895 p895 (! c896 p896))) -(petri (? c896 p896 (! c897 p897))) -(petri (? c897 p897 (! c898 p898))) -(petri (? c898 p898 (! c899 p899))) -(petri (? c899 p899 (! c900 p900))) -(petri (? c900 p900 (! c901 p901))) -(petri (? c901 p901 (! c902 p902))) -(petri (? c902 p902 (! c903 p903))) -(petri (? c903 p903 (! c904 p904))) -(petri (? c904 p904 (! c905 p905))) -(petri (? c905 p905 (! c906 p906))) -(petri (? c906 p906 (! c907 p907))) -(petri (? c907 p907 (! c908 p908))) -(petri (? c908 p908 (! c909 p909))) -(petri (? c909 p909 (! c910 p910))) -(petri (? c910 p910 (! c911 p911))) -(petri (? c911 p911 (! c912 p912))) -(petri (? c912 p912 (! c913 p913))) -(petri (? c913 p913 (! c914 p914))) -(petri (? c914 p914 (! c915 p915))) -(petri (? c915 p915 (! c916 p916))) -(petri (? c916 p916 (! c917 p917))) -(petri (? c917 p917 (! c918 p918))) -(petri (? c918 p918 (! c919 p919))) -(petri (? c919 p919 (! c920 p920))) -(petri (? c920 p920 (! c921 p921))) -(petri (? c921 p921 (! c922 p922))) -(petri (? c922 p922 (! c923 p923))) -(petri (? c923 p923 (! c924 p924))) -(petri (? c924 p924 (! c925 p925))) -(petri (? c925 p925 (! c926 p926))) -(petri (? c926 p926 (! c927 p927))) -(petri (? c927 p927 (! c928 p928))) -(petri (? c928 p928 (! c929 p929))) -(petri (? c929 p929 (! c930 p930))) -(petri (? c930 p930 (! c931 p931))) -(petri (? c931 p931 (! c932 p932))) -(petri (? c932 p932 (! c933 p933))) -(petri (? c933 p933 (! c934 p934))) -(petri (? c934 p934 (! c935 p935))) -(petri (? c935 p935 (! c936 p936))) -(petri (? c936 p936 (! c937 p937))) -(petri (? c937 p937 (! c938 p938))) -(petri (? c938 p938 (! c939 p939))) -(petri (? c939 p939 (! c940 p940))) -(petri (? c940 p940 (! c941 p941))) -(petri (? c941 p941 (! c942 p942))) -(petri (? c942 p942 (! c943 p943))) -(petri (? c943 p943 (! c944 p944))) -(petri (? c944 p944 (! c945 p945))) -(petri (? c945 p945 (! c946 p946))) -(petri (? c946 p946 (! c947 p947))) -(petri (? c947 p947 (! c948 p948))) -(petri (? c948 p948 (! c949 p949))) -(petri (? c949 p949 (! c950 p950))) -(petri (? c950 p950 (! c951 p951))) -(petri (? c951 p951 (! c952 p952))) -(petri (? c952 p952 (! c953 p953))) -(petri (? c953 p953 (! c954 p954))) -(petri (? c954 p954 (! c955 p955))) -(petri (? c955 p955 (! c956 p956))) -(petri (? c956 p956 (! c957 p957))) -(petri (? c957 p957 (! c958 p958))) -(petri (? c958 p958 (! c959 p959))) -(petri (? c959 p959 (! c960 p960))) -(petri (? c960 p960 (! c961 p961))) -(petri (? c961 p961 (! c962 p962))) -(petri (? c962 p962 (! c963 p963))) -(petri (? c963 p963 (! c964 p964))) -(petri (? c964 p964 (! c965 p965))) -(petri (? c965 p965 (! c966 p966))) -(petri (? c966 p966 (! c967 p967))) -(petri (? c967 p967 (! c968 p968))) -(petri (? c968 p968 (! c969 p969))) -(petri (? c969 p969 (! c970 p970))) -(petri (? c970 p970 (! c971 p971))) -(petri (? c971 p971 (! c972 p972))) -(petri (? c972 p972 (! c973 p973))) -(petri (? c973 p973 (! c974 p974))) -(petri (? c974 p974 (! c975 p975))) -(petri (? c975 p975 (! c976 p976))) -(petri (? c976 p976 (! c977 p977))) -(petri (? c977 p977 (! c978 p978))) -(petri (? c978 p978 (! c979 p979))) -(petri (? c979 p979 (! c980 p980))) -(petri (? c980 p980 (! c981 p981))) -(petri (? c981 p981 (! c982 p982))) -(petri (? c982 p982 (! c983 p983))) -(petri (? c983 p983 (! c984 p984))) -(petri (? c984 p984 (! c985 p985))) -(petri (? c985 p985 (! c986 p986))) -(petri (? c986 p986 (! c987 p987))) -(petri (? c987 p987 (! c988 p988))) -(petri (? c988 p988 (! c989 p989))) -(petri (? c989 p989 (! c990 p990))) -(petri (? c990 p990 (! c991 p991))) -(petri (? c991 p991 (! c992 p992))) -(petri (? c992 p992 (! c993 p993))) -(petri (? c993 p993 (! c994 p994))) -(petri (? c994 p994 (! c995 p995))) -(petri (? c995 p995 (! c996 p996))) -(petri (? c996 p996 (! c997 p997))) -(petri (? c997 p997 (! c998 p998))) -(petri (? c998 p998 (! c999 p999))) -(petri (? c999 p999 (! c1000 p1000))) -(petri (? c1000 p1000 (! c1001 p1001))) -(petri (? c1001 p1001 (! c1002 p1002))) -(petri (? c1002 p1002 (! c1003 p1003))) -(petri (? c1003 p1003 (! c1004 p1004))) -(petri (? c1004 p1004 (! c1005 p1005))) -(petri (? c1005 p1005 (! c1006 p1006))) -(petri (? c1006 p1006 (! c1007 p1007))) -(petri (? c1007 p1007 (! c1008 p1008))) -(petri (? c1008 p1008 (! c1009 p1009))) -(petri (? c1009 p1009 (! c1010 p1010))) -(petri (? c1010 p1010 (! c1011 p1011))) -(petri (? c1011 p1011 (! c1012 p1012))) -(petri (? c1012 p1012 (! c1013 p1013))) -(petri (? c1013 p1013 (! c1014 p1014))) -(petri (? c1014 p1014 (! c1015 p1015))) -(petri (? c1015 p1015 (! c1016 p1016))) -(petri (? c1016 p1016 (! c1017 p1017))) -(petri (? c1017 p1017 (! c1018 p1018))) -(petri (? c1018 p1018 (! c1019 p1019))) -(petri (? c1019 p1019 (! c1020 p1020))) -(petri (? c1020 p1020 (! c1021 p1021))) -(petri (? c1021 p1021 (! c1022 p1022))) -(petri (? c1022 p1022 (! c1023 p1023))) -(petri (? c1023 p1023 (! c1024 p1024))) -(petri (? c1024 p1024 (! c1025 p1025))) -(petri (? c1025 p1025 (! c1026 p1026))) -(petri (? c1026 p1026 (! c1027 p1027))) -(petri (? c1027 p1027 (! c1028 p1028))) -(petri (? c1028 p1028 (! c1029 p1029))) -(petri (? c1029 p1029 (! c1030 p1030))) -(petri (? c1030 p1030 (! c1031 p1031))) -(petri (? c1031 p1031 (! c1032 p1032))) -(petri (? c1032 p1032 (! c1033 p1033))) -(petri (? c1033 p1033 (! c1034 p1034))) -(petri (? c1034 p1034 (! c1035 p1035))) -(petri (? c1035 p1035 (! c1036 p1036))) -(petri (? c1036 p1036 (! c1037 p1037))) -(petri (? c1037 p1037 (! c1038 p1038))) -(petri (? c1038 p1038 (! c1039 p1039))) -(petri (? c1039 p1039 (! c1040 p1040))) -(petri (? c1040 p1040 (! c1041 p1041))) -(petri (? c1041 p1041 (! c1042 p1042))) -(petri (? c1042 p1042 (! c1043 p1043))) -(petri (? c1043 p1043 (! c1044 p1044))) -(petri (? c1044 p1044 (! c1045 p1045))) -(petri (? c1045 p1045 (! c1046 p1046))) -(petri (? c1046 p1046 (! c1047 p1047))) -(petri (? c1047 p1047 (! c1048 p1048))) -(petri (? c1048 p1048 (! c1049 p1049))) -(petri (? c1049 p1049 (! c1050 p1050))) -(petri (? c1050 p1050 (! c1051 p1051))) -(petri (? c1051 p1051 (! c1052 p1052))) -(petri (? c1052 p1052 (! c1053 p1053))) -(petri (? c1053 p1053 (! c1054 p1054))) -(petri (? c1054 p1054 (! c1055 p1055))) -(petri (? c1055 p1055 (! c1056 p1056))) -(petri (? c1056 p1056 (! c1057 p1057))) -(petri (? c1057 p1057 (! c1058 p1058))) -(petri (? c1058 p1058 (! c1059 p1059))) -(petri (? c1059 p1059 (! c1060 p1060))) -(petri (? c1060 p1060 (! c1061 p1061))) -(petri (? c1061 p1061 (! c1062 p1062))) -(petri (? c1062 p1062 (! c1063 p1063))) -(petri (? c1063 p1063 (! c1064 p1064))) -(petri (? c1064 p1064 (! c1065 p1065))) -(petri (? c1065 p1065 (! c1066 p1066))) -(petri (? c1066 p1066 (! c1067 p1067))) -(petri (? c1067 p1067 (! c1068 p1068))) -(petri (? c1068 p1068 (! c1069 p1069))) -(petri (? c1069 p1069 (! c1070 p1070))) -(petri (? c1070 p1070 (! c1071 p1071))) -(petri (? c1071 p1071 (! c1072 p1072))) -(petri (? c1072 p1072 (! c1073 p1073))) -(petri (? c1073 p1073 (! c1074 p1074))) -(petri (? c1074 p1074 (! c1075 p1075))) -(petri (? c1075 p1075 (! c1076 p1076))) -(petri (? c1076 p1076 (! c1077 p1077))) -(petri (? c1077 p1077 (! c1078 p1078))) -(petri (? c1078 p1078 (! c1079 p1079))) -(petri (? c1079 p1079 (! c1080 p1080))) -(petri (? c1080 p1080 (! c1081 p1081))) -(petri (? c1081 p1081 (! c1082 p1082))) -(petri (? c1082 p1082 (! c1083 p1083))) -(petri (? c1083 p1083 (! c1084 p1084))) -(petri (? c1084 p1084 (! c1085 p1085))) -(petri (? c1085 p1085 (! c1086 p1086))) -(petri (? c1086 p1086 (! c1087 p1087))) -(petri (? c1087 p1087 (! c1088 p1088))) -(petri (? c1088 p1088 (! c1089 p1089))) -(petri (? c1089 p1089 (! c1090 p1090))) -(petri (? c1090 p1090 (! c1091 p1091))) -(petri (? c1091 p1091 (! c1092 p1092))) -(petri (? c1092 p1092 (! c1093 p1093))) -(petri (? c1093 p1093 (! c1094 p1094))) -(petri (? c1094 p1094 (! c1095 p1095))) -(petri (? c1095 p1095 (! c1096 p1096))) -(petri (? c1096 p1096 (! c1097 p1097))) -(petri (? c1097 p1097 (! c1098 p1098))) -(petri (? c1098 p1098 (! c1099 p1099))) -(petri (? c1099 p1099 (! c1100 p1100))) -(petri (? c1100 p1100 (! c1101 p1101))) -(petri (? c1101 p1101 (! c1102 p1102))) -(petri (? c1102 p1102 (! c1103 p1103))) -(petri (? c1103 p1103 (! c1104 p1104))) -(petri (? c1104 p1104 (! c1105 p1105))) -(petri (? c1105 p1105 (! c1106 p1106))) -(petri (? c1106 p1106 (! c1107 p1107))) -(petri (? c1107 p1107 (! c1108 p1108))) -(petri (? c1108 p1108 (! c1109 p1109))) -(petri (? c1109 p1109 (! c1110 p1110))) -(petri (? c1110 p1110 (! c1111 p1111))) -(petri (? c1111 p1111 (! c1112 p1112))) -(petri (? c1112 p1112 (! c1113 p1113))) -(petri (? c1113 p1113 (! c1114 p1114))) -(petri (? c1114 p1114 (! c1115 p1115))) -(petri (? c1115 p1115 (! c1116 p1116))) -(petri (? c1116 p1116 (! c1117 p1117))) -(petri (? c1117 p1117 (! c1118 p1118))) -(petri (? c1118 p1118 (! c1119 p1119))) -(petri (? c1119 p1119 (! c1120 p1120))) -(petri (? c1120 p1120 (! c1121 p1121))) -(petri (? c1121 p1121 (! c1122 p1122))) -(petri (? c1122 p1122 (! c1123 p1123))) -(petri (? c1123 p1123 (! c1124 p1124))) -(petri (? c1124 p1124 (! c1125 p1125))) -(petri (? c1125 p1125 (! c1126 p1126))) -(petri (? c1126 p1126 (! c1127 p1127))) -(petri (? c1127 p1127 (! c1128 p1128))) -(petri (? c1128 p1128 (! c1129 p1129))) -(petri (? c1129 p1129 (! c1130 p1130))) -(petri (? c1130 p1130 (! c1131 p1131))) -(petri (? c1131 p1131 (! c1132 p1132))) -(petri (? c1132 p1132 (! c1133 p1133))) -(petri (? c1133 p1133 (! c1134 p1134))) -(petri (? c1134 p1134 (! c1135 p1135))) -(petri (? c1135 p1135 (! c1136 p1136))) -(petri (? c1136 p1136 (! c1137 p1137))) -(petri (? c1137 p1137 (! c1138 p1138))) -(petri (? c1138 p1138 (! c1139 p1139))) -(petri (? c1139 p1139 (! c1140 p1140))) -(petri (? c1140 p1140 (! c1141 p1141))) -(petri (? c1141 p1141 (! c1142 p1142))) -(petri (? c1142 p1142 (! c1143 p1143))) -(petri (? c1143 p1143 (! c1144 p1144))) -(petri (? c1144 p1144 (! c1145 p1145))) -(petri (? c1145 p1145 (! c1146 p1146))) -(petri (? c1146 p1146 (! c1147 p1147))) -(petri (? c1147 p1147 (! c1148 p1148))) -(petri (? c1148 p1148 (! c1149 p1149))) -(petri (? c1149 p1149 (! c1150 p1150))) -(petri (? c1150 p1150 (! c1151 p1151))) -(petri (? c1151 p1151 (! c1152 p1152))) -(petri (? c1152 p1152 (! c1153 p1153))) -(petri (? c1153 p1153 (! c1154 p1154))) -(petri (? c1154 p1154 (! c1155 p1155))) -(petri (? c1155 p1155 (! c1156 p1156))) -(petri (? c1156 p1156 (! c1157 p1157))) -(petri (? c1157 p1157 (! c1158 p1158))) -(petri (? c1158 p1158 (! c1159 p1159))) -(petri (? c1159 p1159 (! c1160 p1160))) -(petri (? c1160 p1160 (! c1161 p1161))) -(petri (? c1161 p1161 (! c1162 p1162))) -(petri (? c1162 p1162 (! c1163 p1163))) -(petri (? c1163 p1163 (! c1164 p1164))) -(petri (? c1164 p1164 (! c1165 p1165))) -(petri (? c1165 p1165 (! c1166 p1166))) -(petri (? c1166 p1166 (! c1167 p1167))) -(petri (? c1167 p1167 (! c1168 p1168))) -(petri (? c1168 p1168 (! c1169 p1169))) -(petri (? c1169 p1169 (! c1170 p1170))) -(petri (? c1170 p1170 (! c1171 p1171))) -(petri (? c1171 p1171 (! c1172 p1172))) -(petri (? c1172 p1172 (! c1173 p1173))) -(petri (? c1173 p1173 (! c1174 p1174))) -(petri (? c1174 p1174 (! c1175 p1175))) -(petri (? c1175 p1175 (! c1176 p1176))) -(petri (? c1176 p1176 (! c1177 p1177))) -(petri (? c1177 p1177 (! c1178 p1178))) -(petri (? c1178 p1178 (! c1179 p1179))) -(petri (? c1179 p1179 (! c1180 p1180))) -(petri (? c1180 p1180 (! c1181 p1181))) -(petri (? c1181 p1181 (! c1182 p1182))) -(petri (? c1182 p1182 (! c1183 p1183))) -(petri (? c1183 p1183 (! c1184 p1184))) -(petri (? c1184 p1184 (! c1185 p1185))) -(petri (? c1185 p1185 (! c1186 p1186))) -(petri (? c1186 p1186 (! c1187 p1187))) -(petri (? c1187 p1187 (! c1188 p1188))) -(petri (? c1188 p1188 (! c1189 p1189))) -(petri (? c1189 p1189 (! c1190 p1190))) -(petri (? c1190 p1190 (! c1191 p1191))) -(petri (? c1191 p1191 (! c1192 p1192))) -(petri (? c1192 p1192 (! c1193 p1193))) -(petri (? c1193 p1193 (! c1194 p1194))) -(petri (? c1194 p1194 (! c1195 p1195))) -(petri (? c1195 p1195 (! c1196 p1196))) -(petri (? c1196 p1196 (! c1197 p1197))) -(petri (? c1197 p1197 (! c1198 p1198))) -(petri (? c1198 p1198 (! c1199 p1199))) -(petri (? c1199 p1199 (! c1200 p1200))) -(petri (? c1200 p1200 (! c1201 p1201))) -(petri (? c1201 p1201 (! c1202 p1202))) -(petri (? c1202 p1202 (! c1203 p1203))) -(petri (? c1203 p1203 (! c1204 p1204))) -(petri (? c1204 p1204 (! c1205 p1205))) -(petri (? c1205 p1205 (! c1206 p1206))) -(petri (? c1206 p1206 (! c1207 p1207))) -(petri (? c1207 p1207 (! c1208 p1208))) -(petri (? c1208 p1208 (! c1209 p1209))) -(petri (? c1209 p1209 (! c1210 p1210))) -(petri (? c1210 p1210 (! c1211 p1211))) -(petri (? c1211 p1211 (! c1212 p1212))) -(petri (? c1212 p1212 (! c1213 p1213))) -(petri (? c1213 p1213 (! c1214 p1214))) -(petri (? c1214 p1214 (! c1215 p1215))) -(petri (? c1215 p1215 (! c1216 p1216))) -(petri (? c1216 p1216 (! c1217 p1217))) -(petri (? c1217 p1217 (! c1218 p1218))) -(petri (? c1218 p1218 (! c1219 p1219))) -(petri (? c1219 p1219 (! c1220 p1220))) -(petri (? c1220 p1220 (! c1221 p1221))) -(petri (? c1221 p1221 (! c1222 p1222))) -(petri (? c1222 p1222 (! c1223 p1223))) -(petri (? c1223 p1223 (! c1224 p1224))) -(petri (? c1224 p1224 (! c1225 p1225))) -(petri (? c1225 p1225 (! c1226 p1226))) -(petri (? c1226 p1226 (! c1227 p1227))) -(petri (? c1227 p1227 (! c1228 p1228))) -(petri (? c1228 p1228 (! c1229 p1229))) -(petri (? c1229 p1229 (! c1230 p1230))) -(petri (? c1230 p1230 (! c1231 p1231))) -(petri (? c1231 p1231 (! c1232 p1232))) -(petri (? c1232 p1232 (! c1233 p1233))) -(petri (? c1233 p1233 (! c1234 p1234))) -(petri (? c1234 p1234 (! c1235 p1235))) -(petri (? c1235 p1235 (! c1236 p1236))) -(petri (? c1236 p1236 (! c1237 p1237))) -(petri (? c1237 p1237 (! c1238 p1238))) -(petri (? c1238 p1238 (! c1239 p1239))) -(petri (? c1239 p1239 (! c1240 p1240))) -(petri (? c1240 p1240 (! c1241 p1241))) -(petri (? c1241 p1241 (! c1242 p1242))) -(petri (? c1242 p1242 (! c1243 p1243))) -(petri (? c1243 p1243 (! c1244 p1244))) -(petri (? c1244 p1244 (! c1245 p1245))) -(petri (? c1245 p1245 (! c1246 p1246))) -(petri (? c1246 p1246 (! c1247 p1247))) -(petri (? c1247 p1247 (! c1248 p1248))) -(petri (? c1248 p1248 (! c1249 p1249))) -(petri (? c1249 p1249 (! c1250 p1250))) -(petri (? c1250 p1250 (! c1251 p1251))) -(petri (? c1251 p1251 (! c1252 p1252))) -(petri (? c1252 p1252 (! c1253 p1253))) -(petri (? c1253 p1253 (! c1254 p1254))) -(petri (? c1254 p1254 (! c1255 p1255))) -(petri (? c1255 p1255 (! c1256 p1256))) -(petri (? c1256 p1256 (! c1257 p1257))) -(petri (? c1257 p1257 (! c1258 p1258))) -(petri (? c1258 p1258 (! c1259 p1259))) -(petri (? c1259 p1259 (! c1260 p1260))) -(petri (? c1260 p1260 (! c1261 p1261))) -(petri (? c1261 p1261 (! c1262 p1262))) -(petri (? c1262 p1262 (! c1263 p1263))) -(petri (? c1263 p1263 (! c1264 p1264))) -(petri (? c1264 p1264 (! c1265 p1265))) -(petri (? c1265 p1265 (! c1266 p1266))) -(petri (? c1266 p1266 (! c1267 p1267))) -(petri (? c1267 p1267 (! c1268 p1268))) -(petri (? c1268 p1268 (! c1269 p1269))) -(petri (? c1269 p1269 (! c1270 p1270))) -(petri (? c1270 p1270 (! c1271 p1271))) -(petri (? c1271 p1271 (! c1272 p1272))) -(petri (? c1272 p1272 (! c1273 p1273))) -(petri (? c1273 p1273 (! c1274 p1274))) -(petri (? c1274 p1274 (! c1275 p1275))) -(petri (? c1275 p1275 (! c1276 p1276))) -(petri (? c1276 p1276 (! c1277 p1277))) -(petri (? c1277 p1277 (! c1278 p1278))) -(petri (? c1278 p1278 (! c1279 p1279))) -(petri (? c1279 p1279 (! c1280 p1280))) -(petri (? c1280 p1280 (! c1281 p1281))) -(petri (? c1281 p1281 (! c1282 p1282))) -(petri (? c1282 p1282 (! c1283 p1283))) -(petri (? c1283 p1283 (! c1284 p1284))) -(petri (? c1284 p1284 (! c1285 p1285))) -(petri (? c1285 p1285 (! c1286 p1286))) -(petri (? c1286 p1286 (! c1287 p1287))) -(petri (? c1287 p1287 (! c1288 p1288))) -(petri (? c1288 p1288 (! c1289 p1289))) -(petri (? c1289 p1289 (! c1290 p1290))) -(petri (? c1290 p1290 (! c1291 p1291))) -(petri (? c1291 p1291 (! c1292 p1292))) -(petri (? c1292 p1292 (! c1293 p1293))) -(petri (? c1293 p1293 (! c1294 p1294))) -(petri (? c1294 p1294 (! c1295 p1295))) -(petri (? c1295 p1295 (! c1296 p1296))) -(petri (? c1296 p1296 (! c1297 p1297))) -(petri (? c1297 p1297 (! c1298 p1298))) -(petri (? c1298 p1298 (! c1299 p1299))) -(petri (? c1299 p1299 (! c1300 p1300))) -(petri (? c1300 p1300 (! c1301 p1301))) -(petri (? c1301 p1301 (! c1302 p1302))) -(petri (? c1302 p1302 (! c1303 p1303))) -(petri (? c1303 p1303 (! c1304 p1304))) -(petri (? c1304 p1304 (! c1305 p1305))) -(petri (? c1305 p1305 (! c1306 p1306))) -(petri (? c1306 p1306 (! c1307 p1307))) -(petri (? c1307 p1307 (! c1308 p1308))) -(petri (? c1308 p1308 (! c1309 p1309))) -(petri (? c1309 p1309 (! c1310 p1310))) -(petri (? c1310 p1310 (! c1311 p1311))) -(petri (? c1311 p1311 (! c1312 p1312))) -(petri (? c1312 p1312 (! c1313 p1313))) -(petri (? c1313 p1313 (! c1314 p1314))) -(petri (? c1314 p1314 (! c1315 p1315))) -(petri (? c1315 p1315 (! c1316 p1316))) -(petri (? c1316 p1316 (! c1317 p1317))) -(petri (? c1317 p1317 (! c1318 p1318))) -(petri (? c1318 p1318 (! c1319 p1319))) -(petri (? c1319 p1319 (! c1320 p1320))) -(petri (? c1320 p1320 (! c1321 p1321))) -(petri (? c1321 p1321 (! c1322 p1322))) -(petri (? c1322 p1322 (! c1323 p1323))) -(petri (? c1323 p1323 (! c1324 p1324))) -(petri (? c1324 p1324 (! c1325 p1325))) -(petri (? c1325 p1325 (! c1326 p1326))) -(petri (? c1326 p1326 (! c1327 p1327))) -(petri (? c1327 p1327 (! c1328 p1328))) -(petri (? c1328 p1328 (! c1329 p1329))) -(petri (? c1329 p1329 (! c1330 p1330))) -(petri (? c1330 p1330 (! c1331 p1331))) -(petri (? c1331 p1331 (! c1332 p1332))) -(petri (? c1332 p1332 (! c1333 p1333))) -(petri (? c1333 p1333 (! c1334 p1334))) -(petri (? c1334 p1334 (! c1335 p1335))) -(petri (? c1335 p1335 (! c1336 p1336))) -(petri (? c1336 p1336 (! c1337 p1337))) -(petri (? c1337 p1337 (! c1338 p1338))) -(petri (? c1338 p1338 (! c1339 p1339))) -(petri (? c1339 p1339 (! c1340 p1340))) -(petri (? c1340 p1340 (! c1341 p1341))) -(petri (? c1341 p1341 (! c1342 p1342))) -(petri (? c1342 p1342 (! c1343 p1343))) -(petri (? c1343 p1343 (! c1344 p1344))) -(petri (? c1344 p1344 (! c1345 p1345))) -(petri (? c1345 p1345 (! c1346 p1346))) -(petri (? c1346 p1346 (! c1347 p1347))) -(petri (? c1347 p1347 (! c1348 p1348))) -(petri (? c1348 p1348 (! c1349 p1349))) -(petri (? c1349 p1349 (! c1350 p1350))) -(petri (? c1350 p1350 (! c1351 p1351))) -(petri (? c1351 p1351 (! c1352 p1352))) -(petri (? c1352 p1352 (! c1353 p1353))) -(petri (? c1353 p1353 (! c1354 p1354))) -(petri (? c1354 p1354 (! c1355 p1355))) -(petri (? c1355 p1355 (! c1356 p1356))) -(petri (? c1356 p1356 (! c1357 p1357))) -(petri (? c1357 p1357 (! c1358 p1358))) -(petri (? c1358 p1358 (! c1359 p1359))) -(petri (? c1359 p1359 (! c1360 p1360))) -(petri (? c1360 p1360 (! c1361 p1361))) -(petri (? c1361 p1361 (! c1362 p1362))) -(petri (? c1362 p1362 (! c1363 p1363))) -(petri (? c1363 p1363 (! c1364 p1364))) -(petri (? c1364 p1364 (! c1365 p1365))) -(petri (? c1365 p1365 (! c1366 p1366))) -(petri (? c1366 p1366 (! c1367 p1367))) -(petri (? c1367 p1367 (! c1368 p1368))) -(petri (? c1368 p1368 (! c1369 p1369))) -(petri (? c1369 p1369 (! c1370 p1370))) -(petri (? c1370 p1370 (! c1371 p1371))) -(petri (? c1371 p1371 (! c1372 p1372))) -(petri (? c1372 p1372 (! c1373 p1373))) -(petri (? c1373 p1373 (! c1374 p1374))) -(petri (? c1374 p1374 (! c1375 p1375))) -(petri (? c1375 p1375 (! c1376 p1376))) -(petri (? c1376 p1376 (! c1377 p1377))) -(petri (? c1377 p1377 (! c1378 p1378))) -(petri (? c1378 p1378 (! c1379 p1379))) -(petri (? c1379 p1379 (! c1380 p1380))) -(petri (? c1380 p1380 (! c1381 p1381))) -(petri (? c1381 p1381 (! c1382 p1382))) -(petri (? c1382 p1382 (! c1383 p1383))) -(petri (? c1383 p1383 (! c1384 p1384))) -(petri (? c1384 p1384 (! c1385 p1385))) -(petri (? c1385 p1385 (! c1386 p1386))) -(petri (? c1386 p1386 (! c1387 p1387))) -(petri (? c1387 p1387 (! c1388 p1388))) -(petri (? c1388 p1388 (! c1389 p1389))) -(petri (? c1389 p1389 (! c1390 p1390))) -(petri (? c1390 p1390 (! c1391 p1391))) -(petri (? c1391 p1391 (! c1392 p1392))) -(petri (? c1392 p1392 (! c1393 p1393))) -(petri (? c1393 p1393 (! c1394 p1394))) -(petri (? c1394 p1394 (! c1395 p1395))) -(petri (? c1395 p1395 (! c1396 p1396))) -(petri (? c1396 p1396 (! c1397 p1397))) -(petri (? c1397 p1397 (! c1398 p1398))) -(petri (? c1398 p1398 (! c1399 p1399))) -(petri (? c1399 p1399 (! c1400 p1400))) -(petri (? c1400 p1400 (! c1401 p1401))) -(petri (? c1401 p1401 (! c1402 p1402))) -(petri (? c1402 p1402 (! c1403 p1403))) -(petri (? c1403 p1403 (! c1404 p1404))) -(petri (? c1404 p1404 (! c1405 p1405))) -(petri (? c1405 p1405 (! c1406 p1406))) -(petri (? c1406 p1406 (! c1407 p1407))) -(petri (? c1407 p1407 (! c1408 p1408))) -(petri (? c1408 p1408 (! c1409 p1409))) -(petri (? c1409 p1409 (! c1410 p1410))) -(petri (? c1410 p1410 (! c1411 p1411))) -(petri (? c1411 p1411 (! c1412 p1412))) -(petri (? c1412 p1412 (! c1413 p1413))) -(petri (? c1413 p1413 (! c1414 p1414))) -(petri (? c1414 p1414 (! c1415 p1415))) -(petri (? c1415 p1415 (! c1416 p1416))) -(petri (? c1416 p1416 (! c1417 p1417))) -(petri (? c1417 p1417 (! c1418 p1418))) -(petri (? c1418 p1418 (! c1419 p1419))) -(petri (? c1419 p1419 (! c1420 p1420))) -(petri (? c1420 p1420 (! c1421 p1421))) -(petri (? c1421 p1421 (! c1422 p1422))) -(petri (? c1422 p1422 (! c1423 p1423))) -(petri (? c1423 p1423 (! c1424 p1424))) -(petri (? c1424 p1424 (! c1425 p1425))) -(petri (? c1425 p1425 (! c1426 p1426))) -(petri (? c1426 p1426 (! c1427 p1427))) -(petri (? c1427 p1427 (! c1428 p1428))) -(petri (? c1428 p1428 (! c1429 p1429))) -(petri (? c1429 p1429 (! c1430 p1430))) -(petri (? c1430 p1430 (! c1431 p1431))) -(petri (? c1431 p1431 (! c1432 p1432))) -(petri (? c1432 p1432 (! c1433 p1433))) -(petri (? c1433 p1433 (! c1434 p1434))) -(petri (? c1434 p1434 (! c1435 p1435))) -(petri (? c1435 p1435 (! c1436 p1436))) -(petri (? c1436 p1436 (! c1437 p1437))) -(petri (? c1437 p1437 (! c1438 p1438))) -(petri (? c1438 p1438 (! c1439 p1439))) -(petri (? c1439 p1439 (! c1440 p1440))) -(petri (? c1440 p1440 (! c1441 p1441))) -(petri (? c1441 p1441 (! c1442 p1442))) -(petri (? c1442 p1442 (! c1443 p1443))) -(petri (? c1443 p1443 (! c1444 p1444))) -(petri (? c1444 p1444 (! c1445 p1445))) -(petri (? c1445 p1445 (! c1446 p1446))) -(petri (? c1446 p1446 (! c1447 p1447))) -(petri (? c1447 p1447 (! c1448 p1448))) -(petri (? c1448 p1448 (! c1449 p1449))) -(petri (? c1449 p1449 (! c1450 p1450))) -(petri (? c1450 p1450 (! c1451 p1451))) -(petri (? c1451 p1451 (! c1452 p1452))) -(petri (? c1452 p1452 (! c1453 p1453))) -(petri (? c1453 p1453 (! c1454 p1454))) -(petri (? c1454 p1454 (! c1455 p1455))) -(petri (? c1455 p1455 (! c1456 p1456))) -(petri (? c1456 p1456 (! c1457 p1457))) -(petri (? c1457 p1457 (! c1458 p1458))) -(petri (? c1458 p1458 (! c1459 p1459))) -(petri (? c1459 p1459 (! c1460 p1460))) -(petri (? c1460 p1460 (! c1461 p1461))) -(petri (? c1461 p1461 (! c1462 p1462))) -(petri (? c1462 p1462 (! c1463 p1463))) -(petri (? c1463 p1463 (! c1464 p1464))) -(petri (? c1464 p1464 (! c1465 p1465))) -(petri (? c1465 p1465 (! c1466 p1466))) -(petri (? c1466 p1466 (! c1467 p1467))) -(petri (? c1467 p1467 (! c1468 p1468))) -(petri (? c1468 p1468 (! c1469 p1469))) -(petri (? c1469 p1469 (! c1470 p1470))) -(petri (? c1470 p1470 (! c1471 p1471))) -(petri (? c1471 p1471 (! c1472 p1472))) -(petri (? c1472 p1472 (! c1473 p1473))) -(petri (? c1473 p1473 (! c1474 p1474))) -(petri (? c1474 p1474 (! c1475 p1475))) -(petri (? c1475 p1475 (! c1476 p1476))) -(petri (? c1476 p1476 (! c1477 p1477))) -(petri (? c1477 p1477 (! c1478 p1478))) -(petri (? c1478 p1478 (! c1479 p1479))) -(petri (? c1479 p1479 (! c1480 p1480))) -(petri (? c1480 p1480 (! c1481 p1481))) -(petri (? c1481 p1481 (! c1482 p1482))) -(petri (? c1482 p1482 (! c1483 p1483))) -(petri (? c1483 p1483 (! c1484 p1484))) -(petri (? c1484 p1484 (! c1485 p1485))) -(petri (? c1485 p1485 (! c1486 p1486))) -(petri (? c1486 p1486 (! c1487 p1487))) -(petri (? c1487 p1487 (! c1488 p1488))) -(petri (? c1488 p1488 (! c1489 p1489))) -(petri (? c1489 p1489 (! c1490 p1490))) -(petri (? c1490 p1490 (! c1491 p1491))) -(petri (? c1491 p1491 (! c1492 p1492))) -(petri (? c1492 p1492 (! c1493 p1493))) -(petri (? c1493 p1493 (! c1494 p1494))) -(petri (? c1494 p1494 (! c1495 p1495))) -(petri (? c1495 p1495 (! c1496 p1496))) -(petri (? c1496 p1496 (! c1497 p1497))) -(petri (? c1497 p1497 (! c1498 p1498))) -(petri (? c1498 p1498 (! c1499 p1499))) -(petri (? c1499 p1499 (! c1500 p1500))) -(petri (? c1500 p1500 (! c1501 p1501))) -(petri (? c1501 p1501 (! c1502 p1502))) -(petri (? c1502 p1502 (! c1503 p1503))) -(petri (? c1503 p1503 (! c1504 p1504))) -(petri (? c1504 p1504 (! c1505 p1505))) -(petri (? c1505 p1505 (! c1506 p1506))) -(petri (? c1506 p1506 (! c1507 p1507))) -(petri (? c1507 p1507 (! c1508 p1508))) -(petri (? c1508 p1508 (! c1509 p1509))) -(petri (? c1509 p1509 (! c1510 p1510))) -(petri (? c1510 p1510 (! c1511 p1511))) -(petri (? c1511 p1511 (! c1512 p1512))) -(petri (? c1512 p1512 (! c1513 p1513))) -(petri (? c1513 p1513 (! c1514 p1514))) -(petri (? c1514 p1514 (! c1515 p1515))) -(petri (? c1515 p1515 (! c1516 p1516))) -(petri (? c1516 p1516 (! c1517 p1517))) -(petri (? c1517 p1517 (! c1518 p1518))) -(petri (? c1518 p1518 (! c1519 p1519))) -(petri (? c1519 p1519 (! c1520 p1520))) -(petri (? c1520 p1520 (! c1521 p1521))) -(petri (? c1521 p1521 (! c1522 p1522))) -(petri (? c1522 p1522 (! c1523 p1523))) -(petri (? c1523 p1523 (! c1524 p1524))) -(petri (? c1524 p1524 (! c1525 p1525))) -(petri (? c1525 p1525 (! c1526 p1526))) -(petri (? c1526 p1526 (! c1527 p1527))) -(petri (? c1527 p1527 (! c1528 p1528))) -(petri (? c1528 p1528 (! c1529 p1529))) -(petri (? c1529 p1529 (! c1530 p1530))) -(petri (? c1530 p1530 (! c1531 p1531))) -(petri (? c1531 p1531 (! c1532 p1532))) -(petri (? c1532 p1532 (! c1533 p1533))) -(petri (? c1533 p1533 (! c1534 p1534))) -(petri (? c1534 p1534 (! c1535 p1535))) -(petri (? c1535 p1535 (! c1536 p1536))) -(petri (? c1536 p1536 (! c1537 p1537))) -(petri (? c1537 p1537 (! c1538 p1538))) -(petri (? c1538 p1538 (! c1539 p1539))) -(petri (? c1539 p1539 (! c1540 p1540))) -(petri (? c1540 p1540 (! c1541 p1541))) -(petri (? c1541 p1541 (! c1542 p1542))) -(petri (? c1542 p1542 (! c1543 p1543))) -(petri (? c1543 p1543 (! c1544 p1544))) -(petri (? c1544 p1544 (! c1545 p1545))) -(petri (? c1545 p1545 (! c1546 p1546))) -(petri (? c1546 p1546 (! c1547 p1547))) -(petri (? c1547 p1547 (! c1548 p1548))) -(petri (? c1548 p1548 (! c1549 p1549))) -(petri (? c1549 p1549 (! c1550 p1550))) -(petri (? c1550 p1550 (! c1551 p1551))) -(petri (? c1551 p1551 (! c1552 p1552))) -(petri (? c1552 p1552 (! c1553 p1553))) -(petri (? c1553 p1553 (! c1554 p1554))) -(petri (? c1554 p1554 (! c1555 p1555))) -(petri (? c1555 p1555 (! c1556 p1556))) -(petri (? c1556 p1556 (! c1557 p1557))) -(petri (? c1557 p1557 (! c1558 p1558))) -(petri (? c1558 p1558 (! c1559 p1559))) -(petri (? c1559 p1559 (! c1560 p1560))) -(petri (? c1560 p1560 (! c1561 p1561))) -(petri (? c1561 p1561 (! c1562 p1562))) -(petri (? c1562 p1562 (! c1563 p1563))) -(petri (? c1563 p1563 (! c1564 p1564))) -(petri (? c1564 p1564 (! c1565 p1565))) -(petri (? c1565 p1565 (! c1566 p1566))) -(petri (? c1566 p1566 (! c1567 p1567))) -(petri (? c1567 p1567 (! c1568 p1568))) -(petri (? c1568 p1568 (! c1569 p1569))) -(petri (? c1569 p1569 (! c1570 p1570))) -(petri (? c1570 p1570 (! c1571 p1571))) -(petri (? c1571 p1571 (! c1572 p1572))) -(petri (? c1572 p1572 (! c1573 p1573))) -(petri (? c1573 p1573 (! c1574 p1574))) -(petri (? c1574 p1574 (! c1575 p1575))) -(petri (? c1575 p1575 (! c1576 p1576))) -(petri (? c1576 p1576 (! c1577 p1577))) -(petri (? c1577 p1577 (! c1578 p1578))) -(petri (? c1578 p1578 (! c1579 p1579))) -(petri (? c1579 p1579 (! c1580 p1580))) -(petri (? c1580 p1580 (! c1581 p1581))) -(petri (? c1581 p1581 (! c1582 p1582))) -(petri (? c1582 p1582 (! c1583 p1583))) -(petri (? c1583 p1583 (! c1584 p1584))) -(petri (? c1584 p1584 (! c1585 p1585))) -(petri (? c1585 p1585 (! c1586 p1586))) -(petri (? c1586 p1586 (! c1587 p1587))) -(petri (? c1587 p1587 (! c1588 p1588))) -(petri (? c1588 p1588 (! c1589 p1589))) -(petri (? c1589 p1589 (! c1590 p1590))) -(petri (? c1590 p1590 (! c1591 p1591))) -(petri (? c1591 p1591 (! c1592 p1592))) -(petri (? c1592 p1592 (! c1593 p1593))) -(petri (? c1593 p1593 (! c1594 p1594))) -(petri (? c1594 p1594 (! c1595 p1595))) -(petri (? c1595 p1595 (! c1596 p1596))) -(petri (? c1596 p1596 (! c1597 p1597))) -(petri (? c1597 p1597 (! c1598 p1598))) -(petri (? c1598 p1598 (! c1599 p1599))) -(petri (? c1599 p1599 (! c1600 p1600))) -(petri (? c1600 p1600 (! c1601 p1601))) -(petri (? c1601 p1601 (! c1602 p1602))) -(petri (? c1602 p1602 (! c1603 p1603))) -(petri (? c1603 p1603 (! c1604 p1604))) -(petri (? c1604 p1604 (! c1605 p1605))) -(petri (? c1605 p1605 (! c1606 p1606))) -(petri (? c1606 p1606 (! c1607 p1607))) -(petri (? c1607 p1607 (! c1608 p1608))) -(petri (? c1608 p1608 (! c1609 p1609))) -(petri (? c1609 p1609 (! c1610 p1610))) -(petri (? c1610 p1610 (! c1611 p1611))) -(petri (? c1611 p1611 (! c1612 p1612))) -(petri (? c1612 p1612 (! c1613 p1613))) -(petri (? c1613 p1613 (! c1614 p1614))) -(petri (? c1614 p1614 (! c1615 p1615))) -(petri (? c1615 p1615 (! c1616 p1616))) -(petri (? c1616 p1616 (! c1617 p1617))) -(petri (? c1617 p1617 (! c1618 p1618))) -(petri (? c1618 p1618 (! c1619 p1619))) -(petri (? c1619 p1619 (! c1620 p1620))) -(petri (? c1620 p1620 (! c1621 p1621))) -(petri (? c1621 p1621 (! c1622 p1622))) -(petri (? c1622 p1622 (! c1623 p1623))) -(petri (? c1623 p1623 (! c1624 p1624))) -(petri (? c1624 p1624 (! c1625 p1625))) -(petri (? c1625 p1625 (! c1626 p1626))) -(petri (? c1626 p1626 (! c1627 p1627))) -(petri (? c1627 p1627 (! c1628 p1628))) -(petri (? c1628 p1628 (! c1629 p1629))) -(petri (? c1629 p1629 (! c1630 p1630))) -(petri (? c1630 p1630 (! c1631 p1631))) -(petri (? c1631 p1631 (! c1632 p1632))) -(petri (? c1632 p1632 (! c1633 p1633))) -(petri (? c1633 p1633 (! c1634 p1634))) -(petri (? c1634 p1634 (! c1635 p1635))) -(petri (? c1635 p1635 (! c1636 p1636))) -(petri (? c1636 p1636 (! c1637 p1637))) -(petri (? c1637 p1637 (! c1638 p1638))) -(petri (? c1638 p1638 (! c1639 p1639))) -(petri (? c1639 p1639 (! c1640 p1640))) -(petri (? c1640 p1640 (! c1641 p1641))) -(petri (? c1641 p1641 (! c1642 p1642))) -(petri (? c1642 p1642 (! c1643 p1643))) -(petri (? c1643 p1643 (! c1644 p1644))) -(petri (? c1644 p1644 (! c1645 p1645))) -(petri (? c1645 p1645 (! c1646 p1646))) -(petri (? c1646 p1646 (! c1647 p1647))) -(petri (? c1647 p1647 (! c1648 p1648))) -(petri (? c1648 p1648 (! c1649 p1649))) -(petri (? c1649 p1649 (! c1650 p1650))) -(petri (? c1650 p1650 (! c1651 p1651))) -(petri (? c1651 p1651 (! c1652 p1652))) -(petri (? c1652 p1652 (! c1653 p1653))) -(petri (? c1653 p1653 (! c1654 p1654))) -(petri (? c1654 p1654 (! c1655 p1655))) -(petri (? c1655 p1655 (! c1656 p1656))) -(petri (? c1656 p1656 (! c1657 p1657))) -(petri (? c1657 p1657 (! c1658 p1658))) -(petri (? c1658 p1658 (! c1659 p1659))) -(petri (? c1659 p1659 (! c1660 p1660))) -(petri (? c1660 p1660 (! c1661 p1661))) -(petri (? c1661 p1661 (! c1662 p1662))) -(petri (? c1662 p1662 (! c1663 p1663))) -(petri (? c1663 p1663 (! c1664 p1664))) -(petri (? c1664 p1664 (! c1665 p1665))) -(petri (? c1665 p1665 (! c1666 p1666))) -(petri (? c1666 p1666 (! c1667 p1667))) -(petri (? c1667 p1667 (! c1668 p1668))) -(petri (? c1668 p1668 (! c1669 p1669))) -(petri (? c1669 p1669 (! c1670 p1670))) -(petri (? c1670 p1670 (! c1671 p1671))) -(petri (? c1671 p1671 (! c1672 p1672))) -(petri (? c1672 p1672 (! c1673 p1673))) -(petri (? c1673 p1673 (! c1674 p1674))) -(petri (? c1674 p1674 (! c1675 p1675))) -(petri (? c1675 p1675 (! c1676 p1676))) -(petri (? c1676 p1676 (! c1677 p1677))) -(petri (? c1677 p1677 (! c1678 p1678))) -(petri (? c1678 p1678 (! c1679 p1679))) -(petri (? c1679 p1679 (! c1680 p1680))) -(petri (? c1680 p1680 (! c1681 p1681))) -(petri (? c1681 p1681 (! c1682 p1682))) -(petri (? c1682 p1682 (! c1683 p1683))) -(petri (? c1683 p1683 (! c1684 p1684))) -(petri (? c1684 p1684 (! c1685 p1685))) -(petri (? c1685 p1685 (! c1686 p1686))) -(petri (? c1686 p1686 (! c1687 p1687))) -(petri (? c1687 p1687 (! c1688 p1688))) -(petri (? c1688 p1688 (! c1689 p1689))) -(petri (? c1689 p1689 (! c1690 p1690))) -(petri (? c1690 p1690 (! c1691 p1691))) -(petri (? c1691 p1691 (! c1692 p1692))) -(petri (? c1692 p1692 (! c1693 p1693))) -(petri (? c1693 p1693 (! c1694 p1694))) -(petri (? c1694 p1694 (! c1695 p1695))) -(petri (? c1695 p1695 (! c1696 p1696))) -(petri (? c1696 p1696 (! c1697 p1697))) -(petri (? c1697 p1697 (! c1698 p1698))) -(petri (? c1698 p1698 (! c1699 p1699))) -(petri (? c1699 p1699 (! c1700 p1700))) -(petri (? c1700 p1700 (! c1701 p1701))) -(petri (? c1701 p1701 (! c1702 p1702))) -(petri (? c1702 p1702 (! c1703 p1703))) -(petri (? c1703 p1703 (! c1704 p1704))) -(petri (? c1704 p1704 (! c1705 p1705))) -(petri (? c1705 p1705 (! c1706 p1706))) -(petri (? c1706 p1706 (! c1707 p1707))) -(petri (? c1707 p1707 (! c1708 p1708))) -(petri (? c1708 p1708 (! c1709 p1709))) -(petri (? c1709 p1709 (! c1710 p1710))) -(petri (? c1710 p1710 (! c1711 p1711))) -(petri (? c1711 p1711 (! c1712 p1712))) -(petri (? c1712 p1712 (! c1713 p1713))) -(petri (? c1713 p1713 (! c1714 p1714))) -(petri (? c1714 p1714 (! c1715 p1715))) -(petri (? c1715 p1715 (! c1716 p1716))) -(petri (? c1716 p1716 (! c1717 p1717))) -(petri (? c1717 p1717 (! c1718 p1718))) -(petri (? c1718 p1718 (! c1719 p1719))) -(petri (? c1719 p1719 (! c1720 p1720))) -(petri (? c1720 p1720 (! c1721 p1721))) -(petri (? c1721 p1721 (! c1722 p1722))) -(petri (? c1722 p1722 (! c1723 p1723))) -(petri (? c1723 p1723 (! c1724 p1724))) -(petri (? c1724 p1724 (! c1725 p1725))) -(petri (? c1725 p1725 (! c1726 p1726))) -(petri (? c1726 p1726 (! c1727 p1727))) -(petri (? c1727 p1727 (! c1728 p1728))) -(petri (? c1728 p1728 (! c1729 p1729))) -(petri (? c1729 p1729 (! c1730 p1730))) -(petri (? c1730 p1730 (! c1731 p1731))) -(petri (? c1731 p1731 (! c1732 p1732))) -(petri (? c1732 p1732 (! c1733 p1733))) -(petri (? c1733 p1733 (! c1734 p1734))) -(petri (? c1734 p1734 (! c1735 p1735))) -(petri (? c1735 p1735 (! c1736 p1736))) -(petri (? c1736 p1736 (! c1737 p1737))) -(petri (? c1737 p1737 (! c1738 p1738))) -(petri (? c1738 p1738 (! c1739 p1739))) -(petri (? c1739 p1739 (! c1740 p1740))) -(petri (? c1740 p1740 (! c1741 p1741))) -(petri (? c1741 p1741 (! c1742 p1742))) -(petri (? c1742 p1742 (! c1743 p1743))) -(petri (? c1743 p1743 (! c1744 p1744))) -(petri (? c1744 p1744 (! c1745 p1745))) -(petri (? c1745 p1745 (! c1746 p1746))) -(petri (? c1746 p1746 (! c1747 p1747))) -(petri (? c1747 p1747 (! c1748 p1748))) -(petri (? c1748 p1748 (! c1749 p1749))) -(petri (? c1749 p1749 (! c1750 p1750))) -(petri (? c1750 p1750 (! c1751 p1751))) -(petri (? c1751 p1751 (! c1752 p1752))) -(petri (? c1752 p1752 (! c1753 p1753))) -(petri (? c1753 p1753 (! c1754 p1754))) -(petri (? c1754 p1754 (! c1755 p1755))) -(petri (? c1755 p1755 (! c1756 p1756))) -(petri (? c1756 p1756 (! c1757 p1757))) -(petri (? c1757 p1757 (! c1758 p1758))) -(petri (? c1758 p1758 (! c1759 p1759))) -(petri (? c1759 p1759 (! c1760 p1760))) -(petri (? c1760 p1760 (! c1761 p1761))) -(petri (? c1761 p1761 (! c1762 p1762))) -(petri (? c1762 p1762 (! c1763 p1763))) -(petri (? c1763 p1763 (! c1764 p1764))) -(petri (? c1764 p1764 (! c1765 p1765))) -(petri (? c1765 p1765 (! c1766 p1766))) -(petri (? c1766 p1766 (! c1767 p1767))) -(petri (? c1767 p1767 (! c1768 p1768))) -(petri (? c1768 p1768 (! c1769 p1769))) -(petri (? c1769 p1769 (! c1770 p1770))) -(petri (? c1770 p1770 (! c1771 p1771))) -(petri (? c1771 p1771 (! c1772 p1772))) -(petri (? c1772 p1772 (! c1773 p1773))) -(petri (? c1773 p1773 (! c1774 p1774))) -(petri (? c1774 p1774 (! c1775 p1775))) -(petri (? c1775 p1775 (! c1776 p1776))) -(petri (? c1776 p1776 (! c1777 p1777))) -(petri (? c1777 p1777 (! c1778 p1778))) -(petri (? c1778 p1778 (! c1779 p1779))) -(petri (? c1779 p1779 (! c1780 p1780))) -(petri (? c1780 p1780 (! c1781 p1781))) -(petri (? c1781 p1781 (! c1782 p1782))) -(petri (? c1782 p1782 (! c1783 p1783))) -(petri (? c1783 p1783 (! c1784 p1784))) -(petri (? c1784 p1784 (! c1785 p1785))) -(petri (? c1785 p1785 (! c1786 p1786))) -(petri (? c1786 p1786 (! c1787 p1787))) -(petri (? c1787 p1787 (! c1788 p1788))) -(petri (? c1788 p1788 (! c1789 p1789))) -(petri (? c1789 p1789 (! c1790 p1790))) -(petri (? c1790 p1790 (! c1791 p1791))) -(petri (? c1791 p1791 (! c1792 p1792))) -(petri (? c1792 p1792 (! c1793 p1793))) -(petri (? c1793 p1793 (! c1794 p1794))) -(petri (? c1794 p1794 (! c1795 p1795))) -(petri (? c1795 p1795 (! c1796 p1796))) -(petri (? c1796 p1796 (! c1797 p1797))) -(petri (? c1797 p1797 (! c1798 p1798))) -(petri (? c1798 p1798 (! c1799 p1799))) -(petri (? c1799 p1799 (! c1800 p1800))) -(petri (? c1800 p1800 (! c1801 p1801))) -(petri (? c1801 p1801 (! c1802 p1802))) -(petri (? c1802 p1802 (! c1803 p1803))) -(petri (? c1803 p1803 (! c1804 p1804))) -(petri (? c1804 p1804 (! c1805 p1805))) -(petri (? c1805 p1805 (! c1806 p1806))) -(petri (? c1806 p1806 (! c1807 p1807))) -(petri (? c1807 p1807 (! c1808 p1808))) -(petri (? c1808 p1808 (! c1809 p1809))) -(petri (? c1809 p1809 (! c1810 p1810))) -(petri (? c1810 p1810 (! c1811 p1811))) -(petri (? c1811 p1811 (! c1812 p1812))) -(petri (? c1812 p1812 (! c1813 p1813))) -(petri (? c1813 p1813 (! c1814 p1814))) -(petri (? c1814 p1814 (! c1815 p1815))) -(petri (? c1815 p1815 (! c1816 p1816))) -(petri (? c1816 p1816 (! c1817 p1817))) -(petri (? c1817 p1817 (! c1818 p1818))) -(petri (? c1818 p1818 (! c1819 p1819))) -(petri (? c1819 p1819 (! c1820 p1820))) -(petri (? c1820 p1820 (! c1821 p1821))) -(petri (? c1821 p1821 (! c1822 p1822))) -(petri (? c1822 p1822 (! c1823 p1823))) -(petri (? c1823 p1823 (! c1824 p1824))) -(petri (? c1824 p1824 (! c1825 p1825))) -(petri (? c1825 p1825 (! c1826 p1826))) -(petri (? c1826 p1826 (! c1827 p1827))) -(petri (? c1827 p1827 (! c1828 p1828))) -(petri (? c1828 p1828 (! c1829 p1829))) -(petri (? c1829 p1829 (! c1830 p1830))) -(petri (? c1830 p1830 (! c1831 p1831))) -(petri (? c1831 p1831 (! c1832 p1832))) -(petri (? c1832 p1832 (! c1833 p1833))) -(petri (? c1833 p1833 (! c1834 p1834))) -(petri (? c1834 p1834 (! c1835 p1835))) -(petri (? c1835 p1835 (! c1836 p1836))) -(petri (? c1836 p1836 (! c1837 p1837))) -(petri (? c1837 p1837 (! c1838 p1838))) -(petri (? c1838 p1838 (! c1839 p1839))) -(petri (? c1839 p1839 (! c1840 p1840))) -(petri (? c1840 p1840 (! c1841 p1841))) -(petri (? c1841 p1841 (! c1842 p1842))) -(petri (? c1842 p1842 (! c1843 p1843))) -(petri (? c1843 p1843 (! c1844 p1844))) -(petri (? c1844 p1844 (! c1845 p1845))) -(petri (? c1845 p1845 (! c1846 p1846))) -(petri (? c1846 p1846 (! c1847 p1847))) -(petri (? c1847 p1847 (! c1848 p1848))) -(petri (? c1848 p1848 (! c1849 p1849))) -(petri (? c1849 p1849 (! c1850 p1850))) -(petri (? c1850 p1850 (! c1851 p1851))) -(petri (? c1851 p1851 (! c1852 p1852))) -(petri (? c1852 p1852 (! c1853 p1853))) -(petri (? c1853 p1853 (! c1854 p1854))) -(petri (? c1854 p1854 (! c1855 p1855))) -(petri (? c1855 p1855 (! c1856 p1856))) -(petri (? c1856 p1856 (! c1857 p1857))) -(petri (? c1857 p1857 (! c1858 p1858))) -(petri (? c1858 p1858 (! c1859 p1859))) -(petri (? c1859 p1859 (! c1860 p1860))) -(petri (? c1860 p1860 (! c1861 p1861))) -(petri (? c1861 p1861 (! c1862 p1862))) -(petri (? c1862 p1862 (! c1863 p1863))) -(petri (? c1863 p1863 (! c1864 p1864))) -(petri (? c1864 p1864 (! c1865 p1865))) -(petri (? c1865 p1865 (! c1866 p1866))) -(petri (? c1866 p1866 (! c1867 p1867))) -(petri (? c1867 p1867 (! c1868 p1868))) -(petri (? c1868 p1868 (! c1869 p1869))) -(petri (? c1869 p1869 (! c1870 p1870))) -(petri (? c1870 p1870 (! c1871 p1871))) -(petri (? c1871 p1871 (! c1872 p1872))) -(petri (? c1872 p1872 (! c1873 p1873))) -(petri (? c1873 p1873 (! c1874 p1874))) -(petri (? c1874 p1874 (! c1875 p1875))) -(petri (? c1875 p1875 (! c1876 p1876))) -(petri (? c1876 p1876 (! c1877 p1877))) -(petri (? c1877 p1877 (! c1878 p1878))) -(petri (? c1878 p1878 (! c1879 p1879))) -(petri (? c1879 p1879 (! c1880 p1880))) -(petri (? c1880 p1880 (! c1881 p1881))) -(petri (? c1881 p1881 (! c1882 p1882))) -(petri (? c1882 p1882 (! c1883 p1883))) -(petri (? c1883 p1883 (! c1884 p1884))) -(petri (? c1884 p1884 (! c1885 p1885))) -(petri (? c1885 p1885 (! c1886 p1886))) -(petri (? c1886 p1886 (! c1887 p1887))) -(petri (? c1887 p1887 (! c1888 p1888))) -(petri (? c1888 p1888 (! c1889 p1889))) -(petri (? c1889 p1889 (! c1890 p1890))) -(petri (? c1890 p1890 (! c1891 p1891))) -(petri (? c1891 p1891 (! c1892 p1892))) -(petri (? c1892 p1892 (! c1893 p1893))) -(petri (? c1893 p1893 (! c1894 p1894))) -(petri (? c1894 p1894 (! c1895 p1895))) -(petri (? c1895 p1895 (! c1896 p1896))) -(petri (? c1896 p1896 (! c1897 p1897))) -(petri (? c1897 p1897 (! c1898 p1898))) -(petri (? c1898 p1898 (! c1899 p1899))) -(petri (? c1899 p1899 (! c1900 p1900))) -(petri (? c1900 p1900 (! c1901 p1901))) -(petri (? c1901 p1901 (! c1902 p1902))) -(petri (? c1902 p1902 (! c1903 p1903))) -(petri (? c1903 p1903 (! c1904 p1904))) -(petri (? c1904 p1904 (! c1905 p1905))) -(petri (? c1905 p1905 (! c1906 p1906))) -(petri (? c1906 p1906 (! c1907 p1907))) -(petri (? c1907 p1907 (! c1908 p1908))) -(petri (? c1908 p1908 (! c1909 p1909))) -(petri (? c1909 p1909 (! c1910 p1910))) -(petri (? c1910 p1910 (! c1911 p1911))) -(petri (? c1911 p1911 (! c1912 p1912))) -(petri (? c1912 p1912 (! c1913 p1913))) -(petri (? c1913 p1913 (! c1914 p1914))) -(petri (? c1914 p1914 (! c1915 p1915))) -(petri (? c1915 p1915 (! c1916 p1916))) -(petri (? c1916 p1916 (! c1917 p1917))) -(petri (? c1917 p1917 (! c1918 p1918))) -(petri (? c1918 p1918 (! c1919 p1919))) -(petri (? c1919 p1919 (! c1920 p1920))) -(petri (? c1920 p1920 (! c1921 p1921))) -(petri (? c1921 p1921 (! c1922 p1922))) -(petri (? c1922 p1922 (! c1923 p1923))) -(petri (? c1923 p1923 (! c1924 p1924))) -(petri (? c1924 p1924 (! c1925 p1925))) -(petri (? c1925 p1925 (! c1926 p1926))) -(petri (? c1926 p1926 (! c1927 p1927))) -(petri (? c1927 p1927 (! c1928 p1928))) -(petri (? c1928 p1928 (! c1929 p1929))) -(petri (? c1929 p1929 (! c1930 p1930))) -(petri (? c1930 p1930 (! c1931 p1931))) -(petri (? c1931 p1931 (! c1932 p1932))) -(petri (? c1932 p1932 (! c1933 p1933))) -(petri (? c1933 p1933 (! c1934 p1934))) -(petri (? c1934 p1934 (! c1935 p1935))) -(petri (? c1935 p1935 (! c1936 p1936))) -(petri (? c1936 p1936 (! c1937 p1937))) -(petri (? c1937 p1937 (! c1938 p1938))) -(petri (? c1938 p1938 (! c1939 p1939))) -(petri (? c1939 p1939 (! c1940 p1940))) -(petri (? c1940 p1940 (! c1941 p1941))) -(petri (? c1941 p1941 (! c1942 p1942))) -(petri (? c1942 p1942 (! c1943 p1943))) -(petri (? c1943 p1943 (! c1944 p1944))) -(petri (? c1944 p1944 (! c1945 p1945))) -(petri (? c1945 p1945 (! c1946 p1946))) -(petri (? c1946 p1946 (! c1947 p1947))) -(petri (? c1947 p1947 (! c1948 p1948))) -(petri (? c1948 p1948 (! c1949 p1949))) -(petri (? c1949 p1949 (! c1950 p1950))) -(petri (? c1950 p1950 (! c1951 p1951))) -(petri (? c1951 p1951 (! c1952 p1952))) -(petri (? c1952 p1952 (! c1953 p1953))) -(petri (? c1953 p1953 (! c1954 p1954))) -(petri (? c1954 p1954 (! c1955 p1955))) -(petri (? c1955 p1955 (! c1956 p1956))) -(petri (? c1956 p1956 (! c1957 p1957))) -(petri (? c1957 p1957 (! c1958 p1958))) -(petri (? c1958 p1958 (! c1959 p1959))) -(petri (? c1959 p1959 (! c1960 p1960))) -(petri (? c1960 p1960 (! c1961 p1961))) -(petri (? c1961 p1961 (! c1962 p1962))) -(petri (? c1962 p1962 (! c1963 p1963))) -(petri (? c1963 p1963 (! c1964 p1964))) -(petri (? c1964 p1964 (! c1965 p1965))) -(petri (? c1965 p1965 (! c1966 p1966))) -(petri (? c1966 p1966 (! c1967 p1967))) -(petri (? c1967 p1967 (! c1968 p1968))) -(petri (? c1968 p1968 (! c1969 p1969))) -(petri (? c1969 p1969 (! c1970 p1970))) -(petri (? c1970 p1970 (! c1971 p1971))) -(petri (? c1971 p1971 (! c1972 p1972))) -(petri (? c1972 p1972 (! c1973 p1973))) -(petri (? c1973 p1973 (! c1974 p1974))) -(petri (? c1974 p1974 (! c1975 p1975))) -(petri (? c1975 p1975 (! c1976 p1976))) -(petri (? c1976 p1976 (! c1977 p1977))) -(petri (? c1977 p1977 (! c1978 p1978))) -(petri (? c1978 p1978 (! c1979 p1979))) -(petri (? c1979 p1979 (! c1980 p1980))) -(petri (? c1980 p1980 (! c1981 p1981))) -(petri (? c1981 p1981 (! c1982 p1982))) -(petri (? c1982 p1982 (! c1983 p1983))) -(petri (? c1983 p1983 (! c1984 p1984))) -(petri (? c1984 p1984 (! c1985 p1985))) -(petri (? c1985 p1985 (! c1986 p1986))) -(petri (? c1986 p1986 (! c1987 p1987))) -(petri (? c1987 p1987 (! c1988 p1988))) -(petri (? c1988 p1988 (! c1989 p1989))) -(petri (? c1989 p1989 (! c1990 p1990))) -(petri (? c1990 p1990 (! c1991 p1991))) -(petri (? c1991 p1991 (! c1992 p1992))) -(petri (? c1992 p1992 (! c1993 p1993))) -(petri (? c1993 p1993 (! c1994 p1994))) -(petri (? c1994 p1994 (! c1995 p1995))) -(petri (? c1995 p1995 (! c1996 p1996))) -(petri (? c1996 p1996 (! c1997 p1997))) -(petri (? c1997 p1997 (! c1998 p1998))) -(petri (? c1998 p1998 (! c1999 p1999))) -(petri (? c1999 p1999 (! c2000 p2000))) -(petri (? c2000 p2000 (! c2001 p2001))) -(petri (? c2001 p2001 (! c2002 p2002))) -(petri (? c2002 p2002 (! c2003 p2003))) -(petri (? c2003 p2003 (! c2004 p2004))) -(petri (? c2004 p2004 (! c2005 p2005))) -(petri (? c2005 p2005 (! c2006 p2006))) -(petri (? c2006 p2006 (! c2007 p2007))) -(petri (? c2007 p2007 (! c2008 p2008))) -(petri (? c2008 p2008 (! c2009 p2009))) -(petri (? c2009 p2009 (! c2010 p2010))) -(petri (? c2010 p2010 (! c2011 p2011))) -(petri (? c2011 p2011 (! c2012 p2012))) -(petri (? c2012 p2012 (! c2013 p2013))) -(petri (? c2013 p2013 (! c2014 p2014))) -(petri (? c2014 p2014 (! c2015 p2015))) -(petri (? c2015 p2015 (! c2016 p2016))) -(petri (? c2016 p2016 (! c2017 p2017))) -(petri (? c2017 p2017 (! c2018 p2018))) -(petri (? c2018 p2018 (! c2019 p2019))) -(petri (? c2019 p2019 (! c2020 p2020))) -(petri (? c2020 p2020 (! c2021 p2021))) -(petri (? c2021 p2021 (! c2022 p2022))) -(petri (? c2022 p2022 (! c2023 p2023))) -(petri (? c2023 p2023 (! c2024 p2024))) -(petri (? c2024 p2024 (! c2025 p2025))) -(petri (? c2025 p2025 (! c2026 p2026))) -(petri (? c2026 p2026 (! c2027 p2027))) -(petri (? c2027 p2027 (! c2028 p2028))) -(petri (? c2028 p2028 (! c2029 p2029))) -(petri (? c2029 p2029 (! c2030 p2030))) -(petri (? c2030 p2030 (! c2031 p2031))) -(petri (? c2031 p2031 (! c2032 p2032))) -(petri (? c2032 p2032 (! c2033 p2033))) -(petri (? c2033 p2033 (! c2034 p2034))) -(petri (? c2034 p2034 (! c2035 p2035))) -(petri (? c2035 p2035 (! c2036 p2036))) -(petri (? c2036 p2036 (! c2037 p2037))) -(petri (? c2037 p2037 (! c2038 p2038))) -(petri (? c2038 p2038 (! c2039 p2039))) -(petri (? c2039 p2039 (! c2040 p2040))) -(petri (? c2040 p2040 (! c2041 p2041))) -(petri (? c2041 p2041 (! c2042 p2042))) -(petri (? c2042 p2042 (! c2043 p2043))) -(petri (? c2043 p2043 (! c2044 p2044))) -(petri (? c2044 p2044 (! c2045 p2045))) -(petri (? c2045 p2045 (! c2046 p2046))) -(petri (? c2046 p2046 (! c2047 p2047))) -(petri (? c2047 p2047 (! c2048 p2048))) -(petri (? c2048 p2048 (! c2049 p2049))) -(petri (? c2049 p2049 (! c2050 p2050))) -(petri (? c2050 p2050 (! c2051 p2051))) -(petri (? c2051 p2051 (! c2052 p2052))) -(petri (? c2052 p2052 (! c2053 p2053))) -(petri (? c2053 p2053 (! c2054 p2054))) -(petri (? c2054 p2054 (! c2055 p2055))) -(petri (? c2055 p2055 (! c2056 p2056))) -(petri (? c2056 p2056 (! c2057 p2057))) -(petri (? c2057 p2057 (! c2058 p2058))) -(petri (? c2058 p2058 (! c2059 p2059))) -(petri (? c2059 p2059 (! c2060 p2060))) -(petri (? c2060 p2060 (! c2061 p2061))) -(petri (? c2061 p2061 (! c2062 p2062))) -(petri (? c2062 p2062 (! c2063 p2063))) -(petri (? c2063 p2063 (! c2064 p2064))) -(petri (? c2064 p2064 (! c2065 p2065))) -(petri (? c2065 p2065 (! c2066 p2066))) -(petri (? c2066 p2066 (! c2067 p2067))) -(petri (? c2067 p2067 (! c2068 p2068))) -(petri (? c2068 p2068 (! c2069 p2069))) -(petri (? c2069 p2069 (! c2070 p2070))) -(petri (? c2070 p2070 (! c2071 p2071))) -(petri (? c2071 p2071 (! c2072 p2072))) -(petri (? c2072 p2072 (! c2073 p2073))) -(petri (? c2073 p2073 (! c2074 p2074))) -(petri (? c2074 p2074 (! c2075 p2075))) -(petri (? c2075 p2075 (! c2076 p2076))) -(petri (? c2076 p2076 (! c2077 p2077))) -(petri (? c2077 p2077 (! c2078 p2078))) -(petri (? c2078 p2078 (! c2079 p2079))) -(petri (? c2079 p2079 (! c2080 p2080))) -(petri (? c2080 p2080 (! c2081 p2081))) -(petri (? c2081 p2081 (! c2082 p2082))) -(petri (? c2082 p2082 (! c2083 p2083))) -(petri (? c2083 p2083 (! c2084 p2084))) -(petri (? c2084 p2084 (! c2085 p2085))) -(petri (? c2085 p2085 (! c2086 p2086))) -(petri (? c2086 p2086 (! c2087 p2087))) -(petri (? c2087 p2087 (! c2088 p2088))) -(petri (? c2088 p2088 (! c2089 p2089))) -(petri (? c2089 p2089 (! c2090 p2090))) -(petri (? c2090 p2090 (! c2091 p2091))) -(petri (? c2091 p2091 (! c2092 p2092))) -(petri (? c2092 p2092 (! c2093 p2093))) -(petri (? c2093 p2093 (! c2094 p2094))) -(petri (? c2094 p2094 (! c2095 p2095))) -(petri (? c2095 p2095 (! c2096 p2096))) -(petri (? c2096 p2096 (! c2097 p2097))) -(petri (? c2097 p2097 (! c2098 p2098))) -(petri (? c2098 p2098 (! c2099 p2099))) -(petri (? c2099 p2099 (! c2100 p2100))) -(petri (? c2100 p2100 (! c2101 p2101))) -(petri (? c2101 p2101 (! c2102 p2102))) -(petri (? c2102 p2102 (! c2103 p2103))) -(petri (? c2103 p2103 (! c2104 p2104))) -(petri (? c2104 p2104 (! c2105 p2105))) -(petri (? c2105 p2105 (! c2106 p2106))) -(petri (? c2106 p2106 (! c2107 p2107))) -(petri (? c2107 p2107 (! c2108 p2108))) -(petri (? c2108 p2108 (! c2109 p2109))) -(petri (? c2109 p2109 (! c2110 p2110))) -(petri (? c2110 p2110 (! c2111 p2111))) -(petri (? c2111 p2111 (! c2112 p2112))) -(petri (? c2112 p2112 (! c2113 p2113))) -(petri (? c2113 p2113 (! c2114 p2114))) -(petri (? c2114 p2114 (! c2115 p2115))) -(petri (? c2115 p2115 (! c2116 p2116))) -(petri (? c2116 p2116 (! c2117 p2117))) -(petri (? c2117 p2117 (! c2118 p2118))) -(petri (? c2118 p2118 (! c2119 p2119))) -(petri (? c2119 p2119 (! c2120 p2120))) -(petri (? c2120 p2120 (! c2121 p2121))) -(petri (? c2121 p2121 (! c2122 p2122))) -(petri (? c2122 p2122 (! c2123 p2123))) -(petri (? c2123 p2123 (! c2124 p2124))) -(petri (? c2124 p2124 (! c2125 p2125))) -(petri (? c2125 p2125 (! c2126 p2126))) -(petri (? c2126 p2126 (! c2127 p2127))) -(petri (? c2127 p2127 (! c2128 p2128))) -(petri (? c2128 p2128 (! c2129 p2129))) -(petri (? c2129 p2129 (! c2130 p2130))) -(petri (? c2130 p2130 (! c2131 p2131))) -(petri (? c2131 p2131 (! c2132 p2132))) -(petri (? c2132 p2132 (! c2133 p2133))) -(petri (? c2133 p2133 (! c2134 p2134))) -(petri (? c2134 p2134 (! c2135 p2135))) -(petri (? c2135 p2135 (! c2136 p2136))) -(petri (? c2136 p2136 (! c2137 p2137))) -(petri (? c2137 p2137 (! c2138 p2138))) -(petri (? c2138 p2138 (! c2139 p2139))) -(petri (? c2139 p2139 (! c2140 p2140))) -(petri (? c2140 p2140 (! c2141 p2141))) -(petri (? c2141 p2141 (! c2142 p2142))) -(petri (? c2142 p2142 (! c2143 p2143))) -(petri (? c2143 p2143 (! c2144 p2144))) -(petri (? c2144 p2144 (! c2145 p2145))) -(petri (? c2145 p2145 (! c2146 p2146))) -(petri (? c2146 p2146 (! c2147 p2147))) -(petri (? c2147 p2147 (! c2148 p2148))) -(petri (? c2148 p2148 (! c2149 p2149))) -(petri (? c2149 p2149 (! c2150 p2150))) -(petri (? c2150 p2150 (! c2151 p2151))) -(petri (? c2151 p2151 (! c2152 p2152))) -(petri (? c2152 p2152 (! c2153 p2153))) -(petri (? c2153 p2153 (! c2154 p2154))) -(petri (? c2154 p2154 (! c2155 p2155))) -(petri (? c2155 p2155 (! c2156 p2156))) -(petri (? c2156 p2156 (! c2157 p2157))) -(petri (? c2157 p2157 (! c2158 p2158))) -(petri (? c2158 p2158 (! c2159 p2159))) -(petri (? c2159 p2159 (! c2160 p2160))) -(petri (? c2160 p2160 (! c2161 p2161))) -(petri (? c2161 p2161 (! c2162 p2162))) -(petri (? c2162 p2162 (! c2163 p2163))) -(petri (? c2163 p2163 (! c2164 p2164))) -(petri (? c2164 p2164 (! c2165 p2165))) -(petri (? c2165 p2165 (! c2166 p2166))) -(petri (? c2166 p2166 (! c2167 p2167))) -(petri (? c2167 p2167 (! c2168 p2168))) -(petri (? c2168 p2168 (! c2169 p2169))) -(petri (? c2169 p2169 (! c2170 p2170))) -(petri (? c2170 p2170 (! c2171 p2171))) -(petri (? c2171 p2171 (! c2172 p2172))) -(petri (? c2172 p2172 (! c2173 p2173))) -(petri (? c2173 p2173 (! c2174 p2174))) -(petri (? c2174 p2174 (! c2175 p2175))) -(petri (? c2175 p2175 (! c2176 p2176))) -(petri (? c2176 p2176 (! c2177 p2177))) -(petri (? c2177 p2177 (! c2178 p2178))) -(petri (? c2178 p2178 (! c2179 p2179))) -(petri (? c2179 p2179 (! c2180 p2180))) -(petri (? c2180 p2180 (! c2181 p2181))) -(petri (? c2181 p2181 (! c2182 p2182))) -(petri (? c2182 p2182 (! c2183 p2183))) -(petri (? c2183 p2183 (! c2184 p2184))) -(petri (? c2184 p2184 (! c2185 p2185))) -(petri (? c2185 p2185 (! c2186 p2186))) -(petri (? c2186 p2186 (! c2187 p2187))) -(petri (? c2187 p2187 (! c2188 p2188))) -(petri (? c2188 p2188 (! c2189 p2189))) -(petri (? c2189 p2189 (! c2190 p2190))) -(petri (? c2190 p2190 (! c2191 p2191))) -(petri (? c2191 p2191 (! c2192 p2192))) -(petri (? c2192 p2192 (! c2193 p2193))) -(petri (? c2193 p2193 (! c2194 p2194))) -(petri (? c2194 p2194 (! c2195 p2195))) -(petri (? c2195 p2195 (! c2196 p2196))) -(petri (? c2196 p2196 (! c2197 p2197))) -(petri (? c2197 p2197 (! c2198 p2198))) -(petri (? c2198 p2198 (! c2199 p2199))) -(petri (? c2199 p2199 (! c2200 p2200))) -(petri (? c2200 p2200 (! c2201 p2201))) -(petri (? c2201 p2201 (! c2202 p2202))) -(petri (? c2202 p2202 (! c2203 p2203))) -(petri (? c2203 p2203 (! c2204 p2204))) -(petri (? c2204 p2204 (! c2205 p2205))) -(petri (? c2205 p2205 (! c2206 p2206))) -(petri (? c2206 p2206 (! c2207 p2207))) -(petri (? c2207 p2207 (! c2208 p2208))) -(petri (? c2208 p2208 (! c2209 p2209))) -(petri (? c2209 p2209 (! c2210 p2210))) -(petri (? c2210 p2210 (! c2211 p2211))) -(petri (? c2211 p2211 (! c2212 p2212))) -(petri (? c2212 p2212 (! c2213 p2213))) -(petri (? c2213 p2213 (! c2214 p2214))) -(petri (? c2214 p2214 (! c2215 p2215))) -(petri (? c2215 p2215 (! c2216 p2216))) -(petri (? c2216 p2216 (! c2217 p2217))) -(petri (? c2217 p2217 (! c2218 p2218))) -(petri (? c2218 p2218 (! c2219 p2219))) -(petri (? c2219 p2219 (! c2220 p2220))) -(petri (? c2220 p2220 (! c2221 p2221))) -(petri (? c2221 p2221 (! c2222 p2222))) -(petri (? c2222 p2222 (! c2223 p2223))) -(petri (? c2223 p2223 (! c2224 p2224))) -(petri (? c2224 p2224 (! c2225 p2225))) -(petri (? c2225 p2225 (! c2226 p2226))) -(petri (? c2226 p2226 (! c2227 p2227))) -(petri (? c2227 p2227 (! c2228 p2228))) -(petri (? c2228 p2228 (! c2229 p2229))) -(petri (? c2229 p2229 (! c2230 p2230))) -(petri (? c2230 p2230 (! c2231 p2231))) -(petri (? c2231 p2231 (! c2232 p2232))) -(petri (? c2232 p2232 (! c2233 p2233))) -(petri (? c2233 p2233 (! c2234 p2234))) -(petri (? c2234 p2234 (! c2235 p2235))) -(petri (? c2235 p2235 (! c2236 p2236))) -(petri (? c2236 p2236 (! c2237 p2237))) -(petri (? c2237 p2237 (! c2238 p2238))) -(petri (? c2238 p2238 (! c2239 p2239))) -(petri (? c2239 p2239 (! c2240 p2240))) -(petri (? c2240 p2240 (! c2241 p2241))) -(petri (? c2241 p2241 (! c2242 p2242))) -(petri (? c2242 p2242 (! c2243 p2243))) -(petri (? c2243 p2243 (! c2244 p2244))) -(petri (? c2244 p2244 (! c2245 p2245))) -(petri (? c2245 p2245 (! c2246 p2246))) -(petri (? c2246 p2246 (! c2247 p2247))) -(petri (? c2247 p2247 (! c2248 p2248))) -(petri (? c2248 p2248 (! c2249 p2249))) -(petri (? c2249 p2249 (! c2250 p2250))) -(petri (? c2250 p2250 (! c2251 p2251))) -(petri (? c2251 p2251 (! c2252 p2252))) -(petri (? c2252 p2252 (! c2253 p2253))) -(petri (? c2253 p2253 (! c2254 p2254))) -(petri (? c2254 p2254 (! c2255 p2255))) -(petri (? c2255 p2255 (! c2256 p2256))) -(petri (? c2256 p2256 (! c2257 p2257))) -(petri (? c2257 p2257 (! c2258 p2258))) -(petri (? c2258 p2258 (! c2259 p2259))) -(petri (? c2259 p2259 (! c2260 p2260))) -(petri (? c2260 p2260 (! c2261 p2261))) -(petri (? c2261 p2261 (! c2262 p2262))) -(petri (? c2262 p2262 (! c2263 p2263))) -(petri (? c2263 p2263 (! c2264 p2264))) -(petri (? c2264 p2264 (! c2265 p2265))) -(petri (? c2265 p2265 (! c2266 p2266))) -(petri (? c2266 p2266 (! c2267 p2267))) -(petri (? c2267 p2267 (! c2268 p2268))) -(petri (? c2268 p2268 (! c2269 p2269))) -(petri (? c2269 p2269 (! c2270 p2270))) -(petri (? c2270 p2270 (! c2271 p2271))) -(petri (? c2271 p2271 (! c2272 p2272))) -(petri (? c2272 p2272 (! c2273 p2273))) -(petri (? c2273 p2273 (! c2274 p2274))) -(petri (? c2274 p2274 (! c2275 p2275))) -(petri (? c2275 p2275 (! c2276 p2276))) -(petri (? c2276 p2276 (! c2277 p2277))) -(petri (? c2277 p2277 (! c2278 p2278))) -(petri (? c2278 p2278 (! c2279 p2279))) -(petri (? c2279 p2279 (! c2280 p2280))) -(petri (? c2280 p2280 (! c2281 p2281))) -(petri (? c2281 p2281 (! c2282 p2282))) -(petri (? c2282 p2282 (! c2283 p2283))) -(petri (? c2283 p2283 (! c2284 p2284))) -(petri (? c2284 p2284 (! c2285 p2285))) -(petri (? c2285 p2285 (! c2286 p2286))) -(petri (? c2286 p2286 (! c2287 p2287))) -(petri (? c2287 p2287 (! c2288 p2288))) -(petri (? c2288 p2288 (! c2289 p2289))) -(petri (? c2289 p2289 (! c2290 p2290))) -(petri (? c2290 p2290 (! c2291 p2291))) -(petri (? c2291 p2291 (! c2292 p2292))) -(petri (? c2292 p2292 (! c2293 p2293))) -(petri (? c2293 p2293 (! c2294 p2294))) -(petri (? c2294 p2294 (! c2295 p2295))) -(petri (? c2295 p2295 (! c2296 p2296))) -(petri (? c2296 p2296 (! c2297 p2297))) -(petri (? c2297 p2297 (! c2298 p2298))) -(petri (? c2298 p2298 (! c2299 p2299))) -(petri (? c2299 p2299 (! c2300 p2300))) -(petri (? c2300 p2300 (! c2301 p2301))) -(petri (? c2301 p2301 (! c2302 p2302))) -(petri (? c2302 p2302 (! c2303 p2303))) -(petri (? c2303 p2303 (! c2304 p2304))) -(petri (? c2304 p2304 (! c2305 p2305))) -(petri (? c2305 p2305 (! c2306 p2306))) -(petri (? c2306 p2306 (! c2307 p2307))) -(petri (? c2307 p2307 (! c2308 p2308))) -(petri (? c2308 p2308 (! c2309 p2309))) -(petri (? c2309 p2309 (! c2310 p2310))) -(petri (? c2310 p2310 (! c2311 p2311))) -(petri (? c2311 p2311 (! c2312 p2312))) -(petri (? c2312 p2312 (! c2313 p2313))) -(petri (? c2313 p2313 (! c2314 p2314))) -(petri (? c2314 p2314 (! c2315 p2315))) -(petri (? c2315 p2315 (! c2316 p2316))) -(petri (? c2316 p2316 (! c2317 p2317))) -(petri (? c2317 p2317 (! c2318 p2318))) -(petri (? c2318 p2318 (! c2319 p2319))) -(petri (? c2319 p2319 (! c2320 p2320))) -(petri (? c2320 p2320 (! c2321 p2321))) -(petri (? c2321 p2321 (! c2322 p2322))) -(petri (? c2322 p2322 (! c2323 p2323))) -(petri (? c2323 p2323 (! c2324 p2324))) -(petri (? c2324 p2324 (! c2325 p2325))) -(petri (? c2325 p2325 (! c2326 p2326))) -(petri (? c2326 p2326 (! c2327 p2327))) -(petri (? c2327 p2327 (! c2328 p2328))) -(petri (? c2328 p2328 (! c2329 p2329))) -(petri (? c2329 p2329 (! c2330 p2330))) -(petri (? c2330 p2330 (! c2331 p2331))) -(petri (? c2331 p2331 (! c2332 p2332))) -(petri (? c2332 p2332 (! c2333 p2333))) -(petri (? c2333 p2333 (! c2334 p2334))) -(petri (? c2334 p2334 (! c2335 p2335))) -(petri (? c2335 p2335 (! c2336 p2336))) -(petri (? c2336 p2336 (! c2337 p2337))) -(petri (? c2337 p2337 (! c2338 p2338))) -(petri (? c2338 p2338 (! c2339 p2339))) -(petri (? c2339 p2339 (! c2340 p2340))) -(petri (? c2340 p2340 (! c2341 p2341))) -(petri (? c2341 p2341 (! c2342 p2342))) -(petri (? c2342 p2342 (! c2343 p2343))) -(petri (? c2343 p2343 (! c2344 p2344))) -(petri (? c2344 p2344 (! c2345 p2345))) -(petri (? c2345 p2345 (! c2346 p2346))) -(petri (? c2346 p2346 (! c2347 p2347))) -(petri (? c2347 p2347 (! c2348 p2348))) -(petri (? c2348 p2348 (! c2349 p2349))) -(petri (? c2349 p2349 (! c2350 p2350))) -(petri (? c2350 p2350 (! c2351 p2351))) -(petri (? c2351 p2351 (! c2352 p2352))) -(petri (? c2352 p2352 (! c2353 p2353))) -(petri (? c2353 p2353 (! c2354 p2354))) -(petri (? c2354 p2354 (! c2355 p2355))) -(petri (? c2355 p2355 (! c2356 p2356))) -(petri (? c2356 p2356 (! c2357 p2357))) -(petri (? c2357 p2357 (! c2358 p2358))) -(petri (? c2358 p2358 (! c2359 p2359))) -(petri (? c2359 p2359 (! c2360 p2360))) -(petri (? c2360 p2360 (! c2361 p2361))) -(petri (? c2361 p2361 (! c2362 p2362))) -(petri (? c2362 p2362 (! c2363 p2363))) -(petri (? c2363 p2363 (! c2364 p2364))) -(petri (? c2364 p2364 (! c2365 p2365))) -(petri (? c2365 p2365 (! c2366 p2366))) -(petri (? c2366 p2366 (! c2367 p2367))) -(petri (? c2367 p2367 (! c2368 p2368))) -(petri (? c2368 p2368 (! c2369 p2369))) -(petri (? c2369 p2369 (! c2370 p2370))) -(petri (? c2370 p2370 (! c2371 p2371))) -(petri (? c2371 p2371 (! c2372 p2372))) -(petri (? c2372 p2372 (! c2373 p2373))) -(petri (? c2373 p2373 (! c2374 p2374))) -(petri (? c2374 p2374 (! c2375 p2375))) -(petri (? c2375 p2375 (! c2376 p2376))) -(petri (? c2376 p2376 (! c2377 p2377))) -(petri (? c2377 p2377 (! c2378 p2378))) -(petri (? c2378 p2378 (! c2379 p2379))) -(petri (? c2379 p2379 (! c2380 p2380))) -(petri (? c2380 p2380 (! c2381 p2381))) -(petri (? c2381 p2381 (! c2382 p2382))) -(petri (? c2382 p2382 (! c2383 p2383))) -(petri (? c2383 p2383 (! c2384 p2384))) -(petri (? c2384 p2384 (! c2385 p2385))) -(petri (? c2385 p2385 (! c2386 p2386))) -(petri (? c2386 p2386 (! c2387 p2387))) -(petri (? c2387 p2387 (! c2388 p2388))) -(petri (? c2388 p2388 (! c2389 p2389))) -(petri (? c2389 p2389 (! c2390 p2390))) -(petri (? c2390 p2390 (! c2391 p2391))) -(petri (? c2391 p2391 (! c2392 p2392))) -(petri (? c2392 p2392 (! c2393 p2393))) -(petri (? c2393 p2393 (! c2394 p2394))) -(petri (? c2394 p2394 (! c2395 p2395))) -(petri (? c2395 p2395 (! c2396 p2396))) -(petri (? c2396 p2396 (! c2397 p2397))) -(petri (? c2397 p2397 (! c2398 p2398))) -(petri (? c2398 p2398 (! c2399 p2399))) -(petri (? c2399 p2399 (! c2400 p2400))) -(petri (? c2400 p2400 (! c2401 p2401))) -(petri (? c2401 p2401 (! c2402 p2402))) -(petri (? c2402 p2402 (! c2403 p2403))) -(petri (? c2403 p2403 (! c2404 p2404))) -(petri (? c2404 p2404 (! c2405 p2405))) -(petri (? c2405 p2405 (! c2406 p2406))) -(petri (? c2406 p2406 (! c2407 p2407))) -(petri (? c2407 p2407 (! c2408 p2408))) -(petri (? c2408 p2408 (! c2409 p2409))) -(petri (? c2409 p2409 (! c2410 p2410))) -(petri (? c2410 p2410 (! c2411 p2411))) -(petri (? c2411 p2411 (! c2412 p2412))) -(petri (? c2412 p2412 (! c2413 p2413))) -(petri (? c2413 p2413 (! c2414 p2414))) -(petri (? c2414 p2414 (! c2415 p2415))) -(petri (? c2415 p2415 (! c2416 p2416))) -(petri (? c2416 p2416 (! c2417 p2417))) -(petri (? c2417 p2417 (! c2418 p2418))) -(petri (? c2418 p2418 (! c2419 p2419))) -(petri (? c2419 p2419 (! c2420 p2420))) -(petri (? c2420 p2420 (! c2421 p2421))) -(petri (? c2421 p2421 (! c2422 p2422))) -(petri (? c2422 p2422 (! c2423 p2423))) -(petri (? c2423 p2423 (! c2424 p2424))) -(petri (? c2424 p2424 (! c2425 p2425))) -(petri (? c2425 p2425 (! c2426 p2426))) -(petri (? c2426 p2426 (! c2427 p2427))) -(petri (? c2427 p2427 (! c2428 p2428))) -(petri (? c2428 p2428 (! c2429 p2429))) -(petri (? c2429 p2429 (! c2430 p2430))) -(petri (? c2430 p2430 (! c2431 p2431))) -(petri (? c2431 p2431 (! c2432 p2432))) -(petri (? c2432 p2432 (! c2433 p2433))) -(petri (? c2433 p2433 (! c2434 p2434))) -(petri (? c2434 p2434 (! c2435 p2435))) -(petri (? c2435 p2435 (! c2436 p2436))) -(petri (? c2436 p2436 (! c2437 p2437))) -(petri (? c2437 p2437 (! c2438 p2438))) -(petri (? c2438 p2438 (! c2439 p2439))) -(petri (? c2439 p2439 (! c2440 p2440))) -(petri (? c2440 p2440 (! c2441 p2441))) -(petri (? c2441 p2441 (! c2442 p2442))) -(petri (? c2442 p2442 (! c2443 p2443))) -(petri (? c2443 p2443 (! c2444 p2444))) -(petri (? c2444 p2444 (! c2445 p2445))) -(petri (? c2445 p2445 (! c2446 p2446))) -(petri (? c2446 p2446 (! c2447 p2447))) -(petri (? c2447 p2447 (! c2448 p2448))) -(petri (? c2448 p2448 (! c2449 p2449))) -(petri (? c2449 p2449 (! c2450 p2450))) -(petri (? c2450 p2450 (! c2451 p2451))) -(petri (? c2451 p2451 (! c2452 p2452))) -(petri (? c2452 p2452 (! c2453 p2453))) -(petri (? c2453 p2453 (! c2454 p2454))) -(petri (? c2454 p2454 (! c2455 p2455))) -(petri (? c2455 p2455 (! c2456 p2456))) -(petri (? c2456 p2456 (! c2457 p2457))) -(petri (? c2457 p2457 (! c2458 p2458))) -(petri (? c2458 p2458 (! c2459 p2459))) -(petri (? c2459 p2459 (! c2460 p2460))) -(petri (? c2460 p2460 (! c2461 p2461))) -(petri (? c2461 p2461 (! c2462 p2462))) -(petri (? c2462 p2462 (! c2463 p2463))) -(petri (? c2463 p2463 (! c2464 p2464))) -(petri (? c2464 p2464 (! c2465 p2465))) -(petri (? c2465 p2465 (! c2466 p2466))) -(petri (? c2466 p2466 (! c2467 p2467))) -(petri (? c2467 p2467 (! c2468 p2468))) -(petri (? c2468 p2468 (! c2469 p2469))) -(petri (? c2469 p2469 (! c2470 p2470))) -(petri (? c2470 p2470 (! c2471 p2471))) -(petri (? c2471 p2471 (! c2472 p2472))) -(petri (? c2472 p2472 (! c2473 p2473))) -(petri (? c2473 p2473 (! c2474 p2474))) -(petri (? c2474 p2474 (! c2475 p2475))) -(petri (? c2475 p2475 (! c2476 p2476))) -(petri (? c2476 p2476 (! c2477 p2477))) -(petri (? c2477 p2477 (! c2478 p2478))) -(petri (? c2478 p2478 (! c2479 p2479))) -(petri (? c2479 p2479 (! c2480 p2480))) -(petri (? c2480 p2480 (! c2481 p2481))) -(petri (? c2481 p2481 (! c2482 p2482))) -(petri (? c2482 p2482 (! c2483 p2483))) -(petri (? c2483 p2483 (! c2484 p2484))) -(petri (? c2484 p2484 (! c2485 p2485))) -(petri (? c2485 p2485 (! c2486 p2486))) -(petri (? c2486 p2486 (! c2487 p2487))) -(petri (? c2487 p2487 (! c2488 p2488))) -(petri (? c2488 p2488 (! c2489 p2489))) -(petri (? c2489 p2489 (! c2490 p2490))) -(petri (? c2490 p2490 (! c2491 p2491))) -(petri (? c2491 p2491 (! c2492 p2492))) -(petri (? c2492 p2492 (! c2493 p2493))) -(petri (? c2493 p2493 (! c2494 p2494))) -(petri (? c2494 p2494 (! c2495 p2495))) -(petri (? c2495 p2495 (! c2496 p2496))) -(petri (? c2496 p2496 (! c2497 p2497))) -(petri (? c2497 p2497 (! c2498 p2498))) -(petri (? c2498 p2498 (! c2499 p2499))) -(petri (? c2499 p2499 (! c2500 p2500))) -(petri (? c2500 p2500 (! c2501 p2501))) -(petri (? c2501 p2501 (! c2502 p2502))) -(petri (? c2502 p2502 (! c2503 p2503))) -(petri (? c2503 p2503 (! c2504 p2504))) -(petri (? c2504 p2504 (! c2505 p2505))) -(petri (? c2505 p2505 (! c2506 p2506))) -(petri (? c2506 p2506 (! c2507 p2507))) -(petri (? c2507 p2507 (! c2508 p2508))) -(petri (? c2508 p2508 (! c2509 p2509))) -(petri (? c2509 p2509 (! c2510 p2510))) -(petri (? c2510 p2510 (! c2511 p2511))) -(petri (? c2511 p2511 (! c2512 p2512))) -(petri (? c2512 p2512 (! c2513 p2513))) -(petri (? c2513 p2513 (! c2514 p2514))) -(petri (? c2514 p2514 (! c2515 p2515))) -(petri (? c2515 p2515 (! c2516 p2516))) -(petri (? c2516 p2516 (! c2517 p2517))) -(petri (? c2517 p2517 (! c2518 p2518))) -(petri (? c2518 p2518 (! c2519 p2519))) -(petri (? c2519 p2519 (! c2520 p2520))) -(petri (? c2520 p2520 (! c2521 p2521))) -(petri (? c2521 p2521 (! c2522 p2522))) -(petri (? c2522 p2522 (! c2523 p2523))) -(petri (? c2523 p2523 (! c2524 p2524))) -(petri (? c2524 p2524 (! c2525 p2525))) -(petri (? c2525 p2525 (! c2526 p2526))) -(petri (? c2526 p2526 (! c2527 p2527))) -(petri (? c2527 p2527 (! c2528 p2528))) -(petri (? c2528 p2528 (! c2529 p2529))) -(petri (? c2529 p2529 (! c2530 p2530))) -(petri (? c2530 p2530 (! c2531 p2531))) -(petri (? c2531 p2531 (! c2532 p2532))) -(petri (? c2532 p2532 (! c2533 p2533))) -(petri (? c2533 p2533 (! c2534 p2534))) -(petri (? c2534 p2534 (! c2535 p2535))) -(petri (? c2535 p2535 (! c2536 p2536))) -(petri (? c2536 p2536 (! c2537 p2537))) -(petri (? c2537 p2537 (! c2538 p2538))) -(petri (? c2538 p2538 (! c2539 p2539))) -(petri (? c2539 p2539 (! c2540 p2540))) -(petri (? c2540 p2540 (! c2541 p2541))) -(petri (? c2541 p2541 (! c2542 p2542))) -(petri (? c2542 p2542 (! c2543 p2543))) -(petri (? c2543 p2543 (! c2544 p2544))) -(petri (? c2544 p2544 (! c2545 p2545))) -(petri (? c2545 p2545 (! c2546 p2546))) -(petri (? c2546 p2546 (! c2547 p2547))) -(petri (? c2547 p2547 (! c2548 p2548))) -(petri (? c2548 p2548 (! c2549 p2549))) -(petri (? c2549 p2549 (! c2550 p2550))) -(petri (? c2550 p2550 (! c2551 p2551))) -(petri (? c2551 p2551 (! c2552 p2552))) -(petri (? c2552 p2552 (! c2553 p2553))) -(petri (? c2553 p2553 (! c2554 p2554))) -(petri (? c2554 p2554 (! c2555 p2555))) -(petri (? c2555 p2555 (! c2556 p2556))) -(petri (? c2556 p2556 (! c2557 p2557))) -(petri (? c2557 p2557 (! c2558 p2558))) -(petri (? c2558 p2558 (! c2559 p2559))) -(petri (? c2559 p2559 (! c2560 p2560))) -(petri (? c2560 p2560 (! c2561 p2561))) -(petri (? c2561 p2561 (! c2562 p2562))) -(petri (? c2562 p2562 (! c2563 p2563))) -(petri (? c2563 p2563 (! c2564 p2564))) -(petri (? c2564 p2564 (! c2565 p2565))) -(petri (? c2565 p2565 (! c2566 p2566))) -(petri (? c2566 p2566 (! c2567 p2567))) -(petri (? c2567 p2567 (! c2568 p2568))) -(petri (? c2568 p2568 (! c2569 p2569))) -(petri (? c2569 p2569 (! c2570 p2570))) -(petri (? c2570 p2570 (! c2571 p2571))) -(petri (? c2571 p2571 (! c2572 p2572))) -(petri (? c2572 p2572 (! c2573 p2573))) -(petri (? c2573 p2573 (! c2574 p2574))) -(petri (? c2574 p2574 (! c2575 p2575))) -(petri (? c2575 p2575 (! c2576 p2576))) -(petri (? c2576 p2576 (! c2577 p2577))) -(petri (? c2577 p2577 (! c2578 p2578))) -(petri (? c2578 p2578 (! c2579 p2579))) -(petri (? c2579 p2579 (! c2580 p2580))) -(petri (? c2580 p2580 (! c2581 p2581))) -(petri (? c2581 p2581 (! c2582 p2582))) -(petri (? c2582 p2582 (! c2583 p2583))) -(petri (? c2583 p2583 (! c2584 p2584))) -(petri (? c2584 p2584 (! c2585 p2585))) -(petri (? c2585 p2585 (! c2586 p2586))) -(petri (? c2586 p2586 (! c2587 p2587))) -(petri (? c2587 p2587 (! c2588 p2588))) -(petri (? c2588 p2588 (! c2589 p2589))) -(petri (? c2589 p2589 (! c2590 p2590))) -(petri (? c2590 p2590 (! c2591 p2591))) -(petri (? c2591 p2591 (! c2592 p2592))) -(petri (? c2592 p2592 (! c2593 p2593))) -(petri (? c2593 p2593 (! c2594 p2594))) -(petri (? c2594 p2594 (! c2595 p2595))) -(petri (? c2595 p2595 (! c2596 p2596))) -(petri (? c2596 p2596 (! c2597 p2597))) -(petri (? c2597 p2597 (! c2598 p2598))) -(petri (? c2598 p2598 (! c2599 p2599))) -(petri (? c2599 p2599 (! c2600 p2600))) -(petri (? c2600 p2600 (! c2601 p2601))) -(petri (? c2601 p2601 (! c2602 p2602))) -(petri (? c2602 p2602 (! c2603 p2603))) -(petri (? c2603 p2603 (! c2604 p2604))) -(petri (? c2604 p2604 (! c2605 p2605))) -(petri (? c2605 p2605 (! c2606 p2606))) -(petri (? c2606 p2606 (! c2607 p2607))) -(petri (? c2607 p2607 (! c2608 p2608))) -(petri (? c2608 p2608 (! c2609 p2609))) -(petri (? c2609 p2609 (! c2610 p2610))) -(petri (? c2610 p2610 (! c2611 p2611))) -(petri (? c2611 p2611 (! c2612 p2612))) -(petri (? c2612 p2612 (! c2613 p2613))) -(petri (? c2613 p2613 (! c2614 p2614))) -(petri (? c2614 p2614 (! c2615 p2615))) -(petri (? c2615 p2615 (! c2616 p2616))) -(petri (? c2616 p2616 (! c2617 p2617))) -(petri (? c2617 p2617 (! c2618 p2618))) -(petri (? c2618 p2618 (! c2619 p2619))) -(petri (? c2619 p2619 (! c2620 p2620))) -(petri (? c2620 p2620 (! c2621 p2621))) -(petri (? c2621 p2621 (! c2622 p2622))) -(petri (? c2622 p2622 (! c2623 p2623))) -(petri (? c2623 p2623 (! c2624 p2624))) -(petri (? c2624 p2624 (! c2625 p2625))) -(petri (? c2625 p2625 (! c2626 p2626))) -(petri (? c2626 p2626 (! c2627 p2627))) -(petri (? c2627 p2627 (! c2628 p2628))) -(petri (? c2628 p2628 (! c2629 p2629))) -(petri (? c2629 p2629 (! c2630 p2630))) -(petri (? c2630 p2630 (! c2631 p2631))) -(petri (? c2631 p2631 (! c2632 p2632))) -(petri (? c2632 p2632 (! c2633 p2633))) -(petri (? c2633 p2633 (! c2634 p2634))) -(petri (? c2634 p2634 (! c2635 p2635))) -(petri (? c2635 p2635 (! c2636 p2636))) -(petri (? c2636 p2636 (! c2637 p2637))) -(petri (? c2637 p2637 (! c2638 p2638))) -(petri (? c2638 p2638 (! c2639 p2639))) -(petri (? c2639 p2639 (! c2640 p2640))) -(petri (? c2640 p2640 (! c2641 p2641))) -(petri (? c2641 p2641 (! c2642 p2642))) -(petri (? c2642 p2642 (! c2643 p2643))) -(petri (? c2643 p2643 (! c2644 p2644))) -(petri (? c2644 p2644 (! c2645 p2645))) -(petri (? c2645 p2645 (! c2646 p2646))) -(petri (? c2646 p2646 (! c2647 p2647))) -(petri (? c2647 p2647 (! c2648 p2648))) -(petri (? c2648 p2648 (! c2649 p2649))) -(petri (? c2649 p2649 (! c2650 p2650))) -(petri (? c2650 p2650 (! c2651 p2651))) -(petri (? c2651 p2651 (! c2652 p2652))) -(petri (? c2652 p2652 (! c2653 p2653))) -(petri (? c2653 p2653 (! c2654 p2654))) -(petri (? c2654 p2654 (! c2655 p2655))) -(petri (? c2655 p2655 (! c2656 p2656))) -(petri (? c2656 p2656 (! c2657 p2657))) -(petri (? c2657 p2657 (! c2658 p2658))) -(petri (? c2658 p2658 (! c2659 p2659))) -(petri (? c2659 p2659 (! c2660 p2660))) -(petri (? c2660 p2660 (! c2661 p2661))) -(petri (? c2661 p2661 (! c2662 p2662))) -(petri (? c2662 p2662 (! c2663 p2663))) -(petri (? c2663 p2663 (! c2664 p2664))) -(petri (? c2664 p2664 (! c2665 p2665))) -(petri (? c2665 p2665 (! c2666 p2666))) -(petri (? c2666 p2666 (! c2667 p2667))) -(petri (? c2667 p2667 (! c2668 p2668))) -(petri (? c2668 p2668 (! c2669 p2669))) -(petri (? c2669 p2669 (! c2670 p2670))) -(petri (? c2670 p2670 (! c2671 p2671))) -(petri (? c2671 p2671 (! c2672 p2672))) -(petri (? c2672 p2672 (! c2673 p2673))) -(petri (? c2673 p2673 (! c2674 p2674))) -(petri (? c2674 p2674 (! c2675 p2675))) -(petri (? c2675 p2675 (! c2676 p2676))) -(petri (? c2676 p2676 (! c2677 p2677))) -(petri (? c2677 p2677 (! c2678 p2678))) -(petri (? c2678 p2678 (! c2679 p2679))) -(petri (? c2679 p2679 (! c2680 p2680))) -(petri (? c2680 p2680 (! c2681 p2681))) -(petri (? c2681 p2681 (! c2682 p2682))) -(petri (? c2682 p2682 (! c2683 p2683))) -(petri (? c2683 p2683 (! c2684 p2684))) -(petri (? c2684 p2684 (! c2685 p2685))) -(petri (? c2685 p2685 (! c2686 p2686))) -(petri (? c2686 p2686 (! c2687 p2687))) -(petri (? c2687 p2687 (! c2688 p2688))) -(petri (? c2688 p2688 (! c2689 p2689))) -(petri (? c2689 p2689 (! c2690 p2690))) -(petri (? c2690 p2690 (! c2691 p2691))) -(petri (? c2691 p2691 (! c2692 p2692))) -(petri (? c2692 p2692 (! c2693 p2693))) -(petri (? c2693 p2693 (! c2694 p2694))) -(petri (? c2694 p2694 (! c2695 p2695))) -(petri (? c2695 p2695 (! c2696 p2696))) -(petri (? c2696 p2696 (! c2697 p2697))) -(petri (? c2697 p2697 (! c2698 p2698))) -(petri (? c2698 p2698 (! c2699 p2699))) -(petri (? c2699 p2699 (! c2700 p2700))) -(petri (? c2700 p2700 (! c2701 p2701))) -(petri (? c2701 p2701 (! c2702 p2702))) -(petri (? c2702 p2702 (! c2703 p2703))) -(petri (? c2703 p2703 (! c2704 p2704))) -(petri (? c2704 p2704 (! c2705 p2705))) -(petri (? c2705 p2705 (! c2706 p2706))) -(petri (? c2706 p2706 (! c2707 p2707))) -(petri (? c2707 p2707 (! c2708 p2708))) -(petri (? c2708 p2708 (! c2709 p2709))) -(petri (? c2709 p2709 (! c2710 p2710))) -(petri (? c2710 p2710 (! c2711 p2711))) -(petri (? c2711 p2711 (! c2712 p2712))) -(petri (? c2712 p2712 (! c2713 p2713))) -(petri (? c2713 p2713 (! c2714 p2714))) -(petri (? c2714 p2714 (! c2715 p2715))) -(petri (? c2715 p2715 (! c2716 p2716))) -(petri (? c2716 p2716 (! c2717 p2717))) -(petri (? c2717 p2717 (! c2718 p2718))) -(petri (? c2718 p2718 (! c2719 p2719))) -(petri (? c2719 p2719 (! c2720 p2720))) -(petri (? c2720 p2720 (! c2721 p2721))) -(petri (? c2721 p2721 (! c2722 p2722))) -(petri (? c2722 p2722 (! c2723 p2723))) -(petri (? c2723 p2723 (! c2724 p2724))) -(petri (? c2724 p2724 (! c2725 p2725))) -(petri (? c2725 p2725 (! c2726 p2726))) -(petri (? c2726 p2726 (! c2727 p2727))) -(petri (? c2727 p2727 (! c2728 p2728))) -(petri (? c2728 p2728 (! c2729 p2729))) -(petri (? c2729 p2729 (! c2730 p2730))) -(petri (? c2730 p2730 (! c2731 p2731))) -(petri (? c2731 p2731 (! c2732 p2732))) -(petri (? c2732 p2732 (! c2733 p2733))) -(petri (? c2733 p2733 (! c2734 p2734))) -(petri (? c2734 p2734 (! c2735 p2735))) -(petri (? c2735 p2735 (! c2736 p2736))) -(petri (? c2736 p2736 (! c2737 p2737))) -(petri (? c2737 p2737 (! c2738 p2738))) -(petri (? c2738 p2738 (! c2739 p2739))) -(petri (? c2739 p2739 (! c2740 p2740))) -(petri (? c2740 p2740 (! c2741 p2741))) -(petri (? c2741 p2741 (! c2742 p2742))) -(petri (? c2742 p2742 (! c2743 p2743))) -(petri (? c2743 p2743 (! c2744 p2744))) -(petri (? c2744 p2744 (! c2745 p2745))) -(petri (? c2745 p2745 (! c2746 p2746))) -(petri (? c2746 p2746 (! c2747 p2747))) -(petri (? c2747 p2747 (! c2748 p2748))) -(petri (? c2748 p2748 (! c2749 p2749))) -(petri (? c2749 p2749 (! c2750 p2750))) -(petri (? c2750 p2750 (! c2751 p2751))) -(petri (? c2751 p2751 (! c2752 p2752))) -(petri (? c2752 p2752 (! c2753 p2753))) -(petri (? c2753 p2753 (! c2754 p2754))) -(petri (? c2754 p2754 (! c2755 p2755))) -(petri (? c2755 p2755 (! c2756 p2756))) -(petri (? c2756 p2756 (! c2757 p2757))) -(petri (? c2757 p2757 (! c2758 p2758))) -(petri (? c2758 p2758 (! c2759 p2759))) -(petri (? c2759 p2759 (! c2760 p2760))) -(petri (? c2760 p2760 (! c2761 p2761))) -(petri (? c2761 p2761 (! c2762 p2762))) -(petri (? c2762 p2762 (! c2763 p2763))) -(petri (? c2763 p2763 (! c2764 p2764))) -(petri (? c2764 p2764 (! c2765 p2765))) -(petri (? c2765 p2765 (! c2766 p2766))) -(petri (? c2766 p2766 (! c2767 p2767))) -(petri (? c2767 p2767 (! c2768 p2768))) -(petri (? c2768 p2768 (! c2769 p2769))) -(petri (? c2769 p2769 (! c2770 p2770))) -(petri (? c2770 p2770 (! c2771 p2771))) -(petri (? c2771 p2771 (! c2772 p2772))) -(petri (? c2772 p2772 (! c2773 p2773))) -(petri (? c2773 p2773 (! c2774 p2774))) -(petri (? c2774 p2774 (! c2775 p2775))) -(petri (? c2775 p2775 (! c2776 p2776))) -(petri (? c2776 p2776 (! c2777 p2777))) -(petri (? c2777 p2777 (! c2778 p2778))) -(petri (? c2778 p2778 (! c2779 p2779))) -(petri (? c2779 p2779 (! c2780 p2780))) -(petri (? c2780 p2780 (! c2781 p2781))) -(petri (? c2781 p2781 (! c2782 p2782))) -(petri (? c2782 p2782 (! c2783 p2783))) -(petri (? c2783 p2783 (! c2784 p2784))) -(petri (? c2784 p2784 (! c2785 p2785))) -(petri (? c2785 p2785 (! c2786 p2786))) -(petri (? c2786 p2786 (! c2787 p2787))) -(petri (? c2787 p2787 (! c2788 p2788))) -(petri (? c2788 p2788 (! c2789 p2789))) -(petri (? c2789 p2789 (! c2790 p2790))) -(petri (? c2790 p2790 (! c2791 p2791))) -(petri (? c2791 p2791 (! c2792 p2792))) -(petri (? c2792 p2792 (! c2793 p2793))) -(petri (? c2793 p2793 (! c2794 p2794))) -(petri (? c2794 p2794 (! c2795 p2795))) -(petri (? c2795 p2795 (! c2796 p2796))) -(petri (? c2796 p2796 (! c2797 p2797))) -(petri (? c2797 p2797 (! c2798 p2798))) -(petri (? c2798 p2798 (! c2799 p2799))) -(petri (? c2799 p2799 (! c2800 p2800))) -(petri (? c2800 p2800 (! c2801 p2801))) -(petri (? c2801 p2801 (! c2802 p2802))) -(petri (? c2802 p2802 (! c2803 p2803))) -(petri (? c2803 p2803 (! c2804 p2804))) -(petri (? c2804 p2804 (! c2805 p2805))) -(petri (? c2805 p2805 (! c2806 p2806))) -(petri (? c2806 p2806 (! c2807 p2807))) -(petri (? c2807 p2807 (! c2808 p2808))) -(petri (? c2808 p2808 (! c2809 p2809))) -(petri (? c2809 p2809 (! c2810 p2810))) -(petri (? c2810 p2810 (! c2811 p2811))) -(petri (? c2811 p2811 (! c2812 p2812))) -(petri (? c2812 p2812 (! c2813 p2813))) -(petri (? c2813 p2813 (! c2814 p2814))) -(petri (? c2814 p2814 (! c2815 p2815))) -(petri (? c2815 p2815 (! c2816 p2816))) -(petri (? c2816 p2816 (! c2817 p2817))) -(petri (? c2817 p2817 (! c2818 p2818))) -(petri (? c2818 p2818 (! c2819 p2819))) -(petri (? c2819 p2819 (! c2820 p2820))) -(petri (? c2820 p2820 (! c2821 p2821))) -(petri (? c2821 p2821 (! c2822 p2822))) -(petri (? c2822 p2822 (! c2823 p2823))) -(petri (? c2823 p2823 (! c2824 p2824))) -(petri (? c2824 p2824 (! c2825 p2825))) -(petri (? c2825 p2825 (! c2826 p2826))) -(petri (? c2826 p2826 (! c2827 p2827))) -(petri (? c2827 p2827 (! c2828 p2828))) -(petri (? c2828 p2828 (! c2829 p2829))) -(petri (? c2829 p2829 (! c2830 p2830))) -(petri (? c2830 p2830 (! c2831 p2831))) -(petri (? c2831 p2831 (! c2832 p2832))) -(petri (? c2832 p2832 (! c2833 p2833))) -(petri (? c2833 p2833 (! c2834 p2834))) -(petri (? c2834 p2834 (! c2835 p2835))) -(petri (? c2835 p2835 (! c2836 p2836))) -(petri (? c2836 p2836 (! c2837 p2837))) -(petri (? c2837 p2837 (! c2838 p2838))) -(petri (? c2838 p2838 (! c2839 p2839))) -(petri (? c2839 p2839 (! c2840 p2840))) -(petri (? c2840 p2840 (! c2841 p2841))) -(petri (? c2841 p2841 (! c2842 p2842))) -(petri (? c2842 p2842 (! c2843 p2843))) -(petri (? c2843 p2843 (! c2844 p2844))) -(petri (? c2844 p2844 (! c2845 p2845))) -(petri (? c2845 p2845 (! c2846 p2846))) -(petri (? c2846 p2846 (! c2847 p2847))) -(petri (? c2847 p2847 (! c2848 p2848))) -(petri (? c2848 p2848 (! c2849 p2849))) -(petri (? c2849 p2849 (! c2850 p2850))) -(petri (? c2850 p2850 (! c2851 p2851))) -(petri (? c2851 p2851 (! c2852 p2852))) -(petri (? c2852 p2852 (! c2853 p2853))) -(petri (? c2853 p2853 (! c2854 p2854))) -(petri (? c2854 p2854 (! c2855 p2855))) -(petri (? c2855 p2855 (! c2856 p2856))) -(petri (? c2856 p2856 (! c2857 p2857))) -(petri (? c2857 p2857 (! c2858 p2858))) -(petri (? c2858 p2858 (! c2859 p2859))) -(petri (? c2859 p2859 (! c2860 p2860))) -(petri (? c2860 p2860 (! c2861 p2861))) -(petri (? c2861 p2861 (! c2862 p2862))) -(petri (? c2862 p2862 (! c2863 p2863))) -(petri (? c2863 p2863 (! c2864 p2864))) -(petri (? c2864 p2864 (! c2865 p2865))) -(petri (? c2865 p2865 (! c2866 p2866))) -(petri (? c2866 p2866 (! c2867 p2867))) -(petri (? c2867 p2867 (! c2868 p2868))) -(petri (? c2868 p2868 (! c2869 p2869))) -(petri (? c2869 p2869 (! c2870 p2870))) -(petri (? c2870 p2870 (! c2871 p2871))) -(petri (? c2871 p2871 (! c2872 p2872))) -(petri (? c2872 p2872 (! c2873 p2873))) -(petri (? c2873 p2873 (! c2874 p2874))) -(petri (? c2874 p2874 (! c2875 p2875))) -(petri (? c2875 p2875 (! c2876 p2876))) -(petri (? c2876 p2876 (! c2877 p2877))) -(petri (? c2877 p2877 (! c2878 p2878))) -(petri (? c2878 p2878 (! c2879 p2879))) -(petri (? c2879 p2879 (! c2880 p2880))) -(petri (? c2880 p2880 (! c2881 p2881))) -(petri (? c2881 p2881 (! c2882 p2882))) -(petri (? c2882 p2882 (! c2883 p2883))) -(petri (? c2883 p2883 (! c2884 p2884))) -(petri (? c2884 p2884 (! c2885 p2885))) -(petri (? c2885 p2885 (! c2886 p2886))) -(petri (? c2886 p2886 (! c2887 p2887))) -(petri (? c2887 p2887 (! c2888 p2888))) -(petri (? c2888 p2888 (! c2889 p2889))) -(petri (? c2889 p2889 (! c2890 p2890))) -(petri (? c2890 p2890 (! c2891 p2891))) -(petri (? c2891 p2891 (! c2892 p2892))) -(petri (? c2892 p2892 (! c2893 p2893))) -(petri (? c2893 p2893 (! c2894 p2894))) -(petri (? c2894 p2894 (! c2895 p2895))) -(petri (? c2895 p2895 (! c2896 p2896))) -(petri (? c2896 p2896 (! c2897 p2897))) -(petri (? c2897 p2897 (! c2898 p2898))) -(petri (? c2898 p2898 (! c2899 p2899))) -(petri (? c2899 p2899 (! c2900 p2900))) -(petri (? c2900 p2900 (! c2901 p2901))) -(petri (? c2901 p2901 (! c2902 p2902))) -(petri (? c2902 p2902 (! c2903 p2903))) -(petri (? c2903 p2903 (! c2904 p2904))) -(petri (? c2904 p2904 (! c2905 p2905))) -(petri (? c2905 p2905 (! c2906 p2906))) -(petri (? c2906 p2906 (! c2907 p2907))) -(petri (? c2907 p2907 (! c2908 p2908))) -(petri (? c2908 p2908 (! c2909 p2909))) -(petri (? c2909 p2909 (! c2910 p2910))) -(petri (? c2910 p2910 (! c2911 p2911))) -(petri (? c2911 p2911 (! c2912 p2912))) -(petri (? c2912 p2912 (! c2913 p2913))) -(petri (? c2913 p2913 (! c2914 p2914))) -(petri (? c2914 p2914 (! c2915 p2915))) -(petri (? c2915 p2915 (! c2916 p2916))) -(petri (? c2916 p2916 (! c2917 p2917))) -(petri (? c2917 p2917 (! c2918 p2918))) -(petri (? c2918 p2918 (! c2919 p2919))) -(petri (? c2919 p2919 (! c2920 p2920))) -(petri (? c2920 p2920 (! c2921 p2921))) -(petri (? c2921 p2921 (! c2922 p2922))) -(petri (? c2922 p2922 (! c2923 p2923))) -(petri (? c2923 p2923 (! c2924 p2924))) -(petri (? c2924 p2924 (! c2925 p2925))) -(petri (? c2925 p2925 (! c2926 p2926))) -(petri (? c2926 p2926 (! c2927 p2927))) -(petri (? c2927 p2927 (! c2928 p2928))) -(petri (? c2928 p2928 (! c2929 p2929))) -(petri (? c2929 p2929 (! c2930 p2930))) -(petri (? c2930 p2930 (! c2931 p2931))) -(petri (? c2931 p2931 (! c2932 p2932))) -(petri (? c2932 p2932 (! c2933 p2933))) -(petri (? c2933 p2933 (! c2934 p2934))) -(petri (? c2934 p2934 (! c2935 p2935))) -(petri (? c2935 p2935 (! c2936 p2936))) -(petri (? c2936 p2936 (! c2937 p2937))) -(petri (? c2937 p2937 (! c2938 p2938))) -(petri (? c2938 p2938 (! c2939 p2939))) -(petri (? c2939 p2939 (! c2940 p2940))) -(petri (? c2940 p2940 (! c2941 p2941))) -(petri (? c2941 p2941 (! c2942 p2942))) -(petri (? c2942 p2942 (! c2943 p2943))) -(petri (? c2943 p2943 (! c2944 p2944))) -(petri (? c2944 p2944 (! c2945 p2945))) -(petri (? c2945 p2945 (! c2946 p2946))) -(petri (? c2946 p2946 (! c2947 p2947))) -(petri (? c2947 p2947 (! c2948 p2948))) -(petri (? c2948 p2948 (! c2949 p2949))) -(petri (? c2949 p2949 (! c2950 p2950))) -(petri (? c2950 p2950 (! c2951 p2951))) -(petri (? c2951 p2951 (! c2952 p2952))) -(petri (? c2952 p2952 (! c2953 p2953))) -(petri (? c2953 p2953 (! c2954 p2954))) -(petri (? c2954 p2954 (! c2955 p2955))) -(petri (? c2955 p2955 (! c2956 p2956))) -(petri (? c2956 p2956 (! c2957 p2957))) -(petri (? c2957 p2957 (! c2958 p2958))) -(petri (? c2958 p2958 (! c2959 p2959))) -(petri (? c2959 p2959 (! c2960 p2960))) -(petri (? c2960 p2960 (! c2961 p2961))) -(petri (? c2961 p2961 (! c2962 p2962))) -(petri (? c2962 p2962 (! c2963 p2963))) -(petri (? c2963 p2963 (! c2964 p2964))) -(petri (? c2964 p2964 (! c2965 p2965))) -(petri (? c2965 p2965 (! c2966 p2966))) -(petri (? c2966 p2966 (! c2967 p2967))) -(petri (? c2967 p2967 (! c2968 p2968))) -(petri (? c2968 p2968 (! c2969 p2969))) -(petri (? c2969 p2969 (! c2970 p2970))) -(petri (? c2970 p2970 (! c2971 p2971))) -(petri (? c2971 p2971 (! c2972 p2972))) -(petri (? c2972 p2972 (! c2973 p2973))) -(petri (? c2973 p2973 (! c2974 p2974))) -(petri (? c2974 p2974 (! c2975 p2975))) -(petri (? c2975 p2975 (! c2976 p2976))) -(petri (? c2976 p2976 (! c2977 p2977))) -(petri (? c2977 p2977 (! c2978 p2978))) -(petri (? c2978 p2978 (! c2979 p2979))) -(petri (? c2979 p2979 (! c2980 p2980))) -(petri (? c2980 p2980 (! c2981 p2981))) -(petri (? c2981 p2981 (! c2982 p2982))) -(petri (? c2982 p2982 (! c2983 p2983))) -(petri (? c2983 p2983 (! c2984 p2984))) -(petri (? c2984 p2984 (! c2985 p2985))) -(petri (? c2985 p2985 (! c2986 p2986))) -(petri (? c2986 p2986 (! c2987 p2987))) -(petri (? c2987 p2987 (! c2988 p2988))) -(petri (? c2988 p2988 (! c2989 p2989))) -(petri (? c2989 p2989 (! c2990 p2990))) -(petri (? c2990 p2990 (! c2991 p2991))) -(petri (? c2991 p2991 (! c2992 p2992))) -(petri (? c2992 p2992 (! c2993 p2993))) -(petri (? c2993 p2993 (! c2994 p2994))) -(petri (? c2994 p2994 (! c2995 p2995))) -(petri (? c2995 p2995 (! c2996 p2996))) -(petri (? c2996 p2996 (! c2997 p2997))) -(petri (? c2997 p2997 (! c2998 p2998))) -(petri (? c2998 p2998 (! c2999 p2999))) -(petri (? c2999 p2999 (! c3000 p3000))) -(petri (? c3000 p3000 (! c3001 p3001))) -(petri (? c3001 p3001 (! c3002 p3002))) -(petri (? c3002 p3002 (! c3003 p3003))) -(petri (? c3003 p3003 (! c3004 p3004))) -(petri (? c3004 p3004 (! c3005 p3005))) -(petri (? c3005 p3005 (! c3006 p3006))) -(petri (? c3006 p3006 (! c3007 p3007))) -(petri (? c3007 p3007 (! c3008 p3008))) -(petri (? c3008 p3008 (! c3009 p3009))) -(petri (? c3009 p3009 (! c3010 p3010))) -(petri (? c3010 p3010 (! c3011 p3011))) -(petri (? c3011 p3011 (! c3012 p3012))) -(petri (? c3012 p3012 (! c3013 p3013))) -(petri (? c3013 p3013 (! c3014 p3014))) -(petri (? c3014 p3014 (! c3015 p3015))) -(petri (? c3015 p3015 (! c3016 p3016))) -(petri (? c3016 p3016 (! c3017 p3017))) -(petri (? c3017 p3017 (! c3018 p3018))) -(petri (? c3018 p3018 (! c3019 p3019))) -(petri (? c3019 p3019 (! c3020 p3020))) -(petri (? c3020 p3020 (! c3021 p3021))) -(petri (? c3021 p3021 (! c3022 p3022))) -(petri (? c3022 p3022 (! c3023 p3023))) -(petri (? c3023 p3023 (! c3024 p3024))) -(petri (? c3024 p3024 (! c3025 p3025))) -(petri (? c3025 p3025 (! c3026 p3026))) -(petri (? c3026 p3026 (! c3027 p3027))) -(petri (? c3027 p3027 (! c3028 p3028))) -(petri (? c3028 p3028 (! c3029 p3029))) -(petri (? c3029 p3029 (! c3030 p3030))) -(petri (? c3030 p3030 (! c3031 p3031))) -(petri (? c3031 p3031 (! c3032 p3032))) -(petri (? c3032 p3032 (! c3033 p3033))) -(petri (? c3033 p3033 (! c3034 p3034))) -(petri (? c3034 p3034 (! c3035 p3035))) -(petri (? c3035 p3035 (! c3036 p3036))) -(petri (? c3036 p3036 (! c3037 p3037))) -(petri (? c3037 p3037 (! c3038 p3038))) -(petri (? c3038 p3038 (! c3039 p3039))) -(petri (? c3039 p3039 (! c3040 p3040))) -(petri (? c3040 p3040 (! c3041 p3041))) -(petri (? c3041 p3041 (! c3042 p3042))) -(petri (? c3042 p3042 (! c3043 p3043))) -(petri (? c3043 p3043 (! c3044 p3044))) -(petri (? c3044 p3044 (! c3045 p3045))) -(petri (? c3045 p3045 (! c3046 p3046))) -(petri (? c3046 p3046 (! c3047 p3047))) -(petri (? c3047 p3047 (! c3048 p3048))) -(petri (? c3048 p3048 (! c3049 p3049))) -(petri (? c3049 p3049 (! c3050 p3050))) -(petri (? c3050 p3050 (! c3051 p3051))) -(petri (? c3051 p3051 (! c3052 p3052))) -(petri (? c3052 p3052 (! c3053 p3053))) -(petri (? c3053 p3053 (! c3054 p3054))) -(petri (? c3054 p3054 (! c3055 p3055))) -(petri (? c3055 p3055 (! c3056 p3056))) -(petri (? c3056 p3056 (! c3057 p3057))) -(petri (? c3057 p3057 (! c3058 p3058))) -(petri (? c3058 p3058 (! c3059 p3059))) -(petri (? c3059 p3059 (! c3060 p3060))) -(petri (? c3060 p3060 (! c3061 p3061))) -(petri (? c3061 p3061 (! c3062 p3062))) -(petri (? c3062 p3062 (! c3063 p3063))) -(petri (? c3063 p3063 (! c3064 p3064))) -(petri (? c3064 p3064 (! c3065 p3065))) -(petri (? c3065 p3065 (! c3066 p3066))) -(petri (? c3066 p3066 (! c3067 p3067))) -(petri (? c3067 p3067 (! c3068 p3068))) -(petri (? c3068 p3068 (! c3069 p3069))) -(petri (? c3069 p3069 (! c3070 p3070))) -(petri (? c3070 p3070 (! c3071 p3071))) -(petri (? c3071 p3071 (! c3072 p3072))) -(petri (? c3072 p3072 (! c3073 p3073))) -(petri (? c3073 p3073 (! c3074 p3074))) -(petri (? c3074 p3074 (! c3075 p3075))) -(petri (? c3075 p3075 (! c3076 p3076))) -(petri (? c3076 p3076 (! c3077 p3077))) -(petri (? c3077 p3077 (! c3078 p3078))) -(petri (? c3078 p3078 (! c3079 p3079))) -(petri (? c3079 p3079 (! c3080 p3080))) -(petri (? c3080 p3080 (! c3081 p3081))) -(petri (? c3081 p3081 (! c3082 p3082))) -(petri (? c3082 p3082 (! c3083 p3083))) -(petri (? c3083 p3083 (! c3084 p3084))) -(petri (? c3084 p3084 (! c3085 p3085))) -(petri (? c3085 p3085 (! c3086 p3086))) -(petri (? c3086 p3086 (! c3087 p3087))) -(petri (? c3087 p3087 (! c3088 p3088))) -(petri (? c3088 p3088 (! c3089 p3089))) -(petri (? c3089 p3089 (! c3090 p3090))) -(petri (? c3090 p3090 (! c3091 p3091))) -(petri (? c3091 p3091 (! c3092 p3092))) -(petri (? c3092 p3092 (! c3093 p3093))) -(petri (? c3093 p3093 (! c3094 p3094))) -(petri (? c3094 p3094 (! c3095 p3095))) -(petri (? c3095 p3095 (! c3096 p3096))) -(petri (? c3096 p3096 (! c3097 p3097))) -(petri (? c3097 p3097 (! c3098 p3098))) -(petri (? c3098 p3098 (! c3099 p3099))) -(petri (? c3099 p3099 (! c3100 p3100))) -(petri (? c3100 p3100 (! c3101 p3101))) -(petri (? c3101 p3101 (! c3102 p3102))) -(petri (? c3102 p3102 (! c3103 p3103))) -(petri (? c3103 p3103 (! c3104 p3104))) -(petri (? c3104 p3104 (! c3105 p3105))) -(petri (? c3105 p3105 (! c3106 p3106))) -(petri (? c3106 p3106 (! c3107 p3107))) -(petri (? c3107 p3107 (! c3108 p3108))) -(petri (? c3108 p3108 (! c3109 p3109))) -(petri (? c3109 p3109 (! c3110 p3110))) -(petri (? c3110 p3110 (! c3111 p3111))) -(petri (? c3111 p3111 (! c3112 p3112))) -(petri (? c3112 p3112 (! c3113 p3113))) -(petri (? c3113 p3113 (! c3114 p3114))) -(petri (? c3114 p3114 (! c3115 p3115))) -(petri (? c3115 p3115 (! c3116 p3116))) -(petri (? c3116 p3116 (! c3117 p3117))) -(petri (? c3117 p3117 (! c3118 p3118))) -(petri (? c3118 p3118 (! c3119 p3119))) -(petri (? c3119 p3119 (! c3120 p3120))) -(petri (? c3120 p3120 (! c3121 p3121))) -(petri (? c3121 p3121 (! c3122 p3122))) -(petri (? c3122 p3122 (! c3123 p3123))) -(petri (? c3123 p3123 (! c3124 p3124))) -(petri (? c3124 p3124 (! c3125 p3125))) -(petri (? c3125 p3125 (! c3126 p3126))) -(petri (? c3126 p3126 (! c3127 p3127))) -(petri (? c3127 p3127 (! c3128 p3128))) -(petri (? c3128 p3128 (! c3129 p3129))) -(petri (? c3129 p3129 (! c3130 p3130))) -(petri (? c3130 p3130 (! c3131 p3131))) -(petri (? c3131 p3131 (! c3132 p3132))) -(petri (? c3132 p3132 (! c3133 p3133))) -(petri (? c3133 p3133 (! c3134 p3134))) -(petri (? c3134 p3134 (! c3135 p3135))) -(petri (? c3135 p3135 (! c3136 p3136))) -(petri (? c3136 p3136 (! c3137 p3137))) -(petri (? c3137 p3137 (! c3138 p3138))) -(petri (? c3138 p3138 (! c3139 p3139))) -(petri (? c3139 p3139 (! c3140 p3140))) -(petri (? c3140 p3140 (! c3141 p3141))) -(petri (? c3141 p3141 (! c3142 p3142))) -(petri (? c3142 p3142 (! c3143 p3143))) -(petri (? c3143 p3143 (! c3144 p3144))) -(petri (? c3144 p3144 (! c3145 p3145))) -(petri (? c3145 p3145 (! c3146 p3146))) -(petri (? c3146 p3146 (! c3147 p3147))) -(petri (? c3147 p3147 (! c3148 p3148))) -(petri (? c3148 p3148 (! c3149 p3149))) -(petri (? c3149 p3149 (! c3150 p3150))) -(petri (? c3150 p3150 (! c3151 p3151))) -(petri (? c3151 p3151 (! c3152 p3152))) -(petri (? c3152 p3152 (! c3153 p3153))) -(petri (? c3153 p3153 (! c3154 p3154))) -(petri (? c3154 p3154 (! c3155 p3155))) -(petri (? c3155 p3155 (! c3156 p3156))) -(petri (? c3156 p3156 (! c3157 p3157))) -(petri (? c3157 p3157 (! c3158 p3158))) -(petri (? c3158 p3158 (! c3159 p3159))) -(petri (? c3159 p3159 (! c3160 p3160))) -(petri (? c3160 p3160 (! c3161 p3161))) -(petri (? c3161 p3161 (! c3162 p3162))) -(petri (? c3162 p3162 (! c3163 p3163))) -(petri (? c3163 p3163 (! c3164 p3164))) -(petri (? c3164 p3164 (! c3165 p3165))) -(petri (? c3165 p3165 (! c3166 p3166))) -(petri (? c3166 p3166 (! c3167 p3167))) -(petri (? c3167 p3167 (! c3168 p3168))) -(petri (? c3168 p3168 (! c3169 p3169))) -(petri (? c3169 p3169 (! c3170 p3170))) -(petri (? c3170 p3170 (! c3171 p3171))) -(petri (? c3171 p3171 (! c3172 p3172))) -(petri (? c3172 p3172 (! c3173 p3173))) -(petri (? c3173 p3173 (! c3174 p3174))) -(petri (? c3174 p3174 (! c3175 p3175))) -(petri (? c3175 p3175 (! c3176 p3176))) -(petri (? c3176 p3176 (! c3177 p3177))) -(petri (? c3177 p3177 (! c3178 p3178))) -(petri (? c3178 p3178 (! c3179 p3179))) -(petri (? c3179 p3179 (! c3180 p3180))) -(petri (? c3180 p3180 (! c3181 p3181))) -(petri (? c3181 p3181 (! c3182 p3182))) -(petri (? c3182 p3182 (! c3183 p3183))) -(petri (? c3183 p3183 (! c3184 p3184))) -(petri (? c3184 p3184 (! c3185 p3185))) -(petri (? c3185 p3185 (! c3186 p3186))) -(petri (? c3186 p3186 (! c3187 p3187))) -(petri (? c3187 p3187 (! c3188 p3188))) -(petri (? c3188 p3188 (! c3189 p3189))) -(petri (? c3189 p3189 (! c3190 p3190))) -(petri (? c3190 p3190 (! c3191 p3191))) -(petri (? c3191 p3191 (! c3192 p3192))) -(petri (? c3192 p3192 (! c3193 p3193))) -(petri (? c3193 p3193 (! c3194 p3194))) -(petri (? c3194 p3194 (! c3195 p3195))) -(petri (? c3195 p3195 (! c3196 p3196))) -(petri (? c3196 p3196 (! c3197 p3197))) -(petri (? c3197 p3197 (! c3198 p3198))) -(petri (? c3198 p3198 (! c3199 p3199))) -(petri (? c3199 p3199 (! c3200 p3200))) -(petri (? c3200 p3200 (! c3201 p3201))) -(petri (? c3201 p3201 (! c3202 p3202))) -(petri (? c3202 p3202 (! c3203 p3203))) -(petri (? c3203 p3203 (! c3204 p3204))) -(petri (? c3204 p3204 (! c3205 p3205))) -(petri (? c3205 p3205 (! c3206 p3206))) -(petri (? c3206 p3206 (! c3207 p3207))) -(petri (? c3207 p3207 (! c3208 p3208))) -(petri (? c3208 p3208 (! c3209 p3209))) -(petri (? c3209 p3209 (! c3210 p3210))) -(petri (? c3210 p3210 (! c3211 p3211))) -(petri (? c3211 p3211 (! c3212 p3212))) -(petri (? c3212 p3212 (! c3213 p3213))) -(petri (? c3213 p3213 (! c3214 p3214))) -(petri (? c3214 p3214 (! c3215 p3215))) -(petri (? c3215 p3215 (! c3216 p3216))) -(petri (? c3216 p3216 (! c3217 p3217))) -(petri (? c3217 p3217 (! c3218 p3218))) -(petri (? c3218 p3218 (! c3219 p3219))) -(petri (? c3219 p3219 (! c3220 p3220))) -(petri (? c3220 p3220 (! c3221 p3221))) -(petri (? c3221 p3221 (! c3222 p3222))) -(petri (? c3222 p3222 (! c3223 p3223))) -(petri (? c3223 p3223 (! c3224 p3224))) -(petri (? c3224 p3224 (! c3225 p3225))) -(petri (? c3225 p3225 (! c3226 p3226))) -(petri (? c3226 p3226 (! c3227 p3227))) -(petri (? c3227 p3227 (! c3228 p3228))) -(petri (? c3228 p3228 (! c3229 p3229))) -(petri (? c3229 p3229 (! c3230 p3230))) -(petri (? c3230 p3230 (! c3231 p3231))) -(petri (? c3231 p3231 (! c3232 p3232))) -(petri (? c3232 p3232 (! c3233 p3233))) -(petri (? c3233 p3233 (! c3234 p3234))) -(petri (? c3234 p3234 (! c3235 p3235))) -(petri (? c3235 p3235 (! c3236 p3236))) -(petri (? c3236 p3236 (! c3237 p3237))) -(petri (? c3237 p3237 (! c3238 p3238))) -(petri (? c3238 p3238 (! c3239 p3239))) -(petri (? c3239 p3239 (! c3240 p3240))) -(petri (? c3240 p3240 (! c3241 p3241))) -(petri (? c3241 p3241 (! c3242 p3242))) -(petri (? c3242 p3242 (! c3243 p3243))) -(petri (? c3243 p3243 (! c3244 p3244))) -(petri (? c3244 p3244 (! c3245 p3245))) -(petri (? c3245 p3245 (! c3246 p3246))) -(petri (? c3246 p3246 (! c3247 p3247))) -(petri (? c3247 p3247 (! c3248 p3248))) -(petri (? c3248 p3248 (! c3249 p3249))) -(petri (? c3249 p3249 (! c3250 p3250))) -(petri (? c3250 p3250 (! c3251 p3251))) -(petri (? c3251 p3251 (! c3252 p3252))) -(petri (? c3252 p3252 (! c3253 p3253))) -(petri (? c3253 p3253 (! c3254 p3254))) -(petri (? c3254 p3254 (! c3255 p3255))) -(petri (? c3255 p3255 (! c3256 p3256))) -(petri (? c3256 p3256 (! c3257 p3257))) -(petri (? c3257 p3257 (! c3258 p3258))) -(petri (? c3258 p3258 (! c3259 p3259))) -(petri (? c3259 p3259 (! c3260 p3260))) -(petri (? c3260 p3260 (! c3261 p3261))) -(petri (? c3261 p3261 (! c3262 p3262))) -(petri (? c3262 p3262 (! c3263 p3263))) -(petri (? c3263 p3263 (! c3264 p3264))) -(petri (? c3264 p3264 (! c3265 p3265))) -(petri (? c3265 p3265 (! c3266 p3266))) -(petri (? c3266 p3266 (! c3267 p3267))) -(petri (? c3267 p3267 (! c3268 p3268))) -(petri (? c3268 p3268 (! c3269 p3269))) -(petri (? c3269 p3269 (! c3270 p3270))) -(petri (? c3270 p3270 (! c3271 p3271))) -(petri (? c3271 p3271 (! c3272 p3272))) -(petri (? c3272 p3272 (! c3273 p3273))) -(petri (? c3273 p3273 (! c3274 p3274))) -(petri (? c3274 p3274 (! c3275 p3275))) -(petri (? c3275 p3275 (! c3276 p3276))) -(petri (? c3276 p3276 (! c3277 p3277))) -(petri (? c3277 p3277 (! c3278 p3278))) -(petri (? c3278 p3278 (! c3279 p3279))) -(petri (? c3279 p3279 (! c3280 p3280))) -(petri (? c3280 p3280 (! c3281 p3281))) -(petri (? c3281 p3281 (! c3282 p3282))) -(petri (? c3282 p3282 (! c3283 p3283))) -(petri (? c3283 p3283 (! c3284 p3284))) -(petri (? c3284 p3284 (! c3285 p3285))) -(petri (? c3285 p3285 (! c3286 p3286))) -(petri (? c3286 p3286 (! c3287 p3287))) -(petri (? c3287 p3287 (! c3288 p3288))) -(petri (? c3288 p3288 (! c3289 p3289))) -(petri (? c3289 p3289 (! c3290 p3290))) -(petri (? c3290 p3290 (! c3291 p3291))) -(petri (? c3291 p3291 (! c3292 p3292))) -(petri (? c3292 p3292 (! c3293 p3293))) -(petri (? c3293 p3293 (! c3294 p3294))) -(petri (? c3294 p3294 (! c3295 p3295))) -(petri (? c3295 p3295 (! c3296 p3296))) -(petri (? c3296 p3296 (! c3297 p3297))) -(petri (? c3297 p3297 (! c3298 p3298))) -(petri (? c3298 p3298 (! c3299 p3299))) -(petri (? c3299 p3299 (! c3300 p3300))) -(petri (? c3300 p3300 (! c3301 p3301))) -(petri (? c3301 p3301 (! c3302 p3302))) -(petri (? c3302 p3302 (! c3303 p3303))) -(petri (? c3303 p3303 (! c3304 p3304))) -(petri (? c3304 p3304 (! c3305 p3305))) -(petri (? c3305 p3305 (! c3306 p3306))) -(petri (? c3306 p3306 (! c3307 p3307))) -(petri (? c3307 p3307 (! c3308 p3308))) -(petri (? c3308 p3308 (! c3309 p3309))) -(petri (? c3309 p3309 (! c3310 p3310))) -(petri (? c3310 p3310 (! c3311 p3311))) -(petri (? c3311 p3311 (! c3312 p3312))) -(petri (? c3312 p3312 (! c3313 p3313))) -(petri (? c3313 p3313 (! c3314 p3314))) -(petri (? c3314 p3314 (! c3315 p3315))) -(petri (? c3315 p3315 (! c3316 p3316))) -(petri (? c3316 p3316 (! c3317 p3317))) -(petri (? c3317 p3317 (! c3318 p3318))) -(petri (? c3318 p3318 (! c3319 p3319))) -(petri (? c3319 p3319 (! c3320 p3320))) -(petri (? c3320 p3320 (! c3321 p3321))) -(petri (? c3321 p3321 (! c3322 p3322))) -(petri (? c3322 p3322 (! c3323 p3323))) -(petri (? c3323 p3323 (! c3324 p3324))) -(petri (? c3324 p3324 (! c3325 p3325))) -(petri (? c3325 p3325 (! c3326 p3326))) -(petri (? c3326 p3326 (! c3327 p3327))) -(petri (? c3327 p3327 (! c3328 p3328))) -(petri (? c3328 p3328 (! c3329 p3329))) -(petri (? c3329 p3329 (! c3330 p3330))) -(petri (? c3330 p3330 (! c3331 p3331))) -(petri (? c3331 p3331 (! c3332 p3332))) -(petri (? c3332 p3332 (! c3333 p3333))) -(petri (? c3333 p3333 (! c3334 p3334))) -(petri (? c3334 p3334 (! c3335 p3335))) -(petri (? c3335 p3335 (! c3336 p3336))) -(petri (? c3336 p3336 (! c3337 p3337))) -(petri (? c3337 p3337 (! c3338 p3338))) -(petri (? c3338 p3338 (! c3339 p3339))) -(petri (? c3339 p3339 (! c3340 p3340))) -(petri (? c3340 p3340 (! c3341 p3341))) -(petri (? c3341 p3341 (! c3342 p3342))) -(petri (? c3342 p3342 (! c3343 p3343))) -(petri (? c3343 p3343 (! c3344 p3344))) -(petri (? c3344 p3344 (! c3345 p3345))) -(petri (? c3345 p3345 (! c3346 p3346))) -(petri (? c3346 p3346 (! c3347 p3347))) -(petri (? c3347 p3347 (! c3348 p3348))) -(petri (? c3348 p3348 (! c3349 p3349))) -(petri (? c3349 p3349 (! c3350 p3350))) -(petri (? c3350 p3350 (! c3351 p3351))) -(petri (? c3351 p3351 (! c3352 p3352))) -(petri (? c3352 p3352 (! c3353 p3353))) -(petri (? c3353 p3353 (! c3354 p3354))) -(petri (? c3354 p3354 (! c3355 p3355))) -(petri (? c3355 p3355 (! c3356 p3356))) -(petri (? c3356 p3356 (! c3357 p3357))) -(petri (? c3357 p3357 (! c3358 p3358))) -(petri (? c3358 p3358 (! c3359 p3359))) -(petri (? c3359 p3359 (! c3360 p3360))) -(petri (? c3360 p3360 (! c3361 p3361))) -(petri (? c3361 p3361 (! c3362 p3362))) -(petri (? c3362 p3362 (! c3363 p3363))) -(petri (? c3363 p3363 (! c3364 p3364))) -(petri (? c3364 p3364 (! c3365 p3365))) -(petri (? c3365 p3365 (! c3366 p3366))) -(petri (? c3366 p3366 (! c3367 p3367))) -(petri (? c3367 p3367 (! c3368 p3368))) -(petri (? c3368 p3368 (! c3369 p3369))) -(petri (? c3369 p3369 (! c3370 p3370))) -(petri (? c3370 p3370 (! c3371 p3371))) -(petri (? c3371 p3371 (! c3372 p3372))) -(petri (? c3372 p3372 (! c3373 p3373))) -(petri (? c3373 p3373 (! c3374 p3374))) -(petri (? c3374 p3374 (! c3375 p3375))) -(petri (? c3375 p3375 (! c3376 p3376))) -(petri (? c3376 p3376 (! c3377 p3377))) -(petri (? c3377 p3377 (! c3378 p3378))) -(petri (? c3378 p3378 (! c3379 p3379))) -(petri (? c3379 p3379 (! c3380 p3380))) -(petri (? c3380 p3380 (! c3381 p3381))) -(petri (? c3381 p3381 (! c3382 p3382))) -(petri (? c3382 p3382 (! c3383 p3383))) -(petri (? c3383 p3383 (! c3384 p3384))) -(petri (? c3384 p3384 (! c3385 p3385))) -(petri (? c3385 p3385 (! c3386 p3386))) -(petri (? c3386 p3386 (! c3387 p3387))) -(petri (? c3387 p3387 (! c3388 p3388))) -(petri (? c3388 p3388 (! c3389 p3389))) -(petri (? c3389 p3389 (! c3390 p3390))) -(petri (? c3390 p3390 (! c3391 p3391))) -(petri (? c3391 p3391 (! c3392 p3392))) -(petri (? c3392 p3392 (! c3393 p3393))) -(petri (? c3393 p3393 (! c3394 p3394))) -(petri (? c3394 p3394 (! c3395 p3395))) -(petri (? c3395 p3395 (! c3396 p3396))) -(petri (? c3396 p3396 (! c3397 p3397))) -(petri (? c3397 p3397 (! c3398 p3398))) -(petri (? c3398 p3398 (! c3399 p3399))) -(petri (? c3399 p3399 (! c3400 p3400))) -(petri (? c3400 p3400 (! c3401 p3401))) -(petri (? c3401 p3401 (! c3402 p3402))) -(petri (? c3402 p3402 (! c3403 p3403))) -(petri (? c3403 p3403 (! c3404 p3404))) -(petri (? c3404 p3404 (! c3405 p3405))) -(petri (? c3405 p3405 (! c3406 p3406))) -(petri (? c3406 p3406 (! c3407 p3407))) -(petri (? c3407 p3407 (! c3408 p3408))) -(petri (? c3408 p3408 (! c3409 p3409))) -(petri (? c3409 p3409 (! c3410 p3410))) -(petri (? c3410 p3410 (! c3411 p3411))) -(petri (? c3411 p3411 (! c3412 p3412))) -(petri (? c3412 p3412 (! c3413 p3413))) -(petri (? c3413 p3413 (! c3414 p3414))) -(petri (? c3414 p3414 (! c3415 p3415))) -(petri (? c3415 p3415 (! c3416 p3416))) -(petri (? c3416 p3416 (! c3417 p3417))) -(petri (? c3417 p3417 (! c3418 p3418))) -(petri (? c3418 p3418 (! c3419 p3419))) -(petri (? c3419 p3419 (! c3420 p3420))) -(petri (? c3420 p3420 (! c3421 p3421))) -(petri (? c3421 p3421 (! c3422 p3422))) -(petri (? c3422 p3422 (! c3423 p3423))) -(petri (? c3423 p3423 (! c3424 p3424))) -(petri (? c3424 p3424 (! c3425 p3425))) -(petri (? c3425 p3425 (! c3426 p3426))) -(petri (? c3426 p3426 (! c3427 p3427))) -(petri (? c3427 p3427 (! c3428 p3428))) -(petri (? c3428 p3428 (! c3429 p3429))) -(petri (? c3429 p3429 (! c3430 p3430))) -(petri (? c3430 p3430 (! c3431 p3431))) -(petri (? c3431 p3431 (! c3432 p3432))) -(petri (? c3432 p3432 (! c3433 p3433))) -(petri (? c3433 p3433 (! c3434 p3434))) -(petri (? c3434 p3434 (! c3435 p3435))) -(petri (? c3435 p3435 (! c3436 p3436))) -(petri (? c3436 p3436 (! c3437 p3437))) -(petri (? c3437 p3437 (! c3438 p3438))) -(petri (? c3438 p3438 (! c3439 p3439))) -(petri (? c3439 p3439 (! c3440 p3440))) -(petri (? c3440 p3440 (! c3441 p3441))) -(petri (? c3441 p3441 (! c3442 p3442))) -(petri (? c3442 p3442 (! c3443 p3443))) -(petri (? c3443 p3443 (! c3444 p3444))) -(petri (? c3444 p3444 (! c3445 p3445))) -(petri (? c3445 p3445 (! c3446 p3446))) -(petri (? c3446 p3446 (! c3447 p3447))) -(petri (? c3447 p3447 (! c3448 p3448))) -(petri (? c3448 p3448 (! c3449 p3449))) -(petri (? c3449 p3449 (! c3450 p3450))) -(petri (? c3450 p3450 (! c3451 p3451))) -(petri (? c3451 p3451 (! c3452 p3452))) -(petri (? c3452 p3452 (! c3453 p3453))) -(petri (? c3453 p3453 (! c3454 p3454))) -(petri (? c3454 p3454 (! c3455 p3455))) -(petri (? c3455 p3455 (! c3456 p3456))) -(petri (? c3456 p3456 (! c3457 p3457))) -(petri (? c3457 p3457 (! c3458 p3458))) -(petri (? c3458 p3458 (! c3459 p3459))) -(petri (? c3459 p3459 (! c3460 p3460))) -(petri (? c3460 p3460 (! c3461 p3461))) -(petri (? c3461 p3461 (! c3462 p3462))) -(petri (? c3462 p3462 (! c3463 p3463))) -(petri (? c3463 p3463 (! c3464 p3464))) -(petri (? c3464 p3464 (! c3465 p3465))) -(petri (? c3465 p3465 (! c3466 p3466))) -(petri (? c3466 p3466 (! c3467 p3467))) -(petri (? c3467 p3467 (! c3468 p3468))) -(petri (? c3468 p3468 (! c3469 p3469))) -(petri (? c3469 p3469 (! c3470 p3470))) -(petri (? c3470 p3470 (! c3471 p3471))) -(petri (? c3471 p3471 (! c3472 p3472))) -(petri (? c3472 p3472 (! c3473 p3473))) -(petri (? c3473 p3473 (! c3474 p3474))) -(petri (? c3474 p3474 (! c3475 p3475))) -(petri (? c3475 p3475 (! c3476 p3476))) -(petri (? c3476 p3476 (! c3477 p3477))) -(petri (? c3477 p3477 (! c3478 p3478))) -(petri (? c3478 p3478 (! c3479 p3479))) -(petri (? c3479 p3479 (! c3480 p3480))) -(petri (? c3480 p3480 (! c3481 p3481))) -(petri (? c3481 p3481 (! c3482 p3482))) -(petri (? c3482 p3482 (! c3483 p3483))) -(petri (? c3483 p3483 (! c3484 p3484))) -(petri (? c3484 p3484 (! c3485 p3485))) -(petri (? c3485 p3485 (! c3486 p3486))) -(petri (? c3486 p3486 (! c3487 p3487))) -(petri (? c3487 p3487 (! c3488 p3488))) -(petri (? c3488 p3488 (! c3489 p3489))) -(petri (? c3489 p3489 (! c3490 p3490))) -(petri (? c3490 p3490 (! c3491 p3491))) -(petri (? c3491 p3491 (! c3492 p3492))) -(petri (? c3492 p3492 (! c3493 p3493))) -(petri (? c3493 p3493 (! c3494 p3494))) -(petri (? c3494 p3494 (! c3495 p3495))) -(petri (? c3495 p3495 (! c3496 p3496))) -(petri (? c3496 p3496 (! c3497 p3497))) -(petri (? c3497 p3497 (! c3498 p3498))) -(petri (? c3498 p3498 (! c3499 p3499))) -(petri (? c3499 p3499 (! c3500 p3500))) -(petri (? c3500 p3500 (! c3501 p3501))) -(petri (? c3501 p3501 (! c3502 p3502))) -(petri (? c3502 p3502 (! c3503 p3503))) -(petri (? c3503 p3503 (! c3504 p3504))) -(petri (? c3504 p3504 (! c3505 p3505))) -(petri (? c3505 p3505 (! c3506 p3506))) -(petri (? c3506 p3506 (! c3507 p3507))) -(petri (? c3507 p3507 (! c3508 p3508))) -(petri (? c3508 p3508 (! c3509 p3509))) -(petri (? c3509 p3509 (! c3510 p3510))) -(petri (? c3510 p3510 (! c3511 p3511))) -(petri (? c3511 p3511 (! c3512 p3512))) -(petri (? c3512 p3512 (! c3513 p3513))) -(petri (? c3513 p3513 (! c3514 p3514))) -(petri (? c3514 p3514 (! c3515 p3515))) -(petri (? c3515 p3515 (! c3516 p3516))) -(petri (? c3516 p3516 (! c3517 p3517))) -(petri (? c3517 p3517 (! c3518 p3518))) -(petri (? c3518 p3518 (! c3519 p3519))) -(petri (? c3519 p3519 (! c3520 p3520))) -(petri (? c3520 p3520 (! c3521 p3521))) -(petri (? c3521 p3521 (! c3522 p3522))) -(petri (? c3522 p3522 (! c3523 p3523))) -(petri (? c3523 p3523 (! c3524 p3524))) -(petri (? c3524 p3524 (! c3525 p3525))) -(petri (? c3525 p3525 (! c3526 p3526))) -(petri (? c3526 p3526 (! c3527 p3527))) -(petri (? c3527 p3527 (! c3528 p3528))) -(petri (? c3528 p3528 (! c3529 p3529))) -(petri (? c3529 p3529 (! c3530 p3530))) -(petri (? c3530 p3530 (! c3531 p3531))) -(petri (? c3531 p3531 (! c3532 p3532))) -(petri (? c3532 p3532 (! c3533 p3533))) -(petri (? c3533 p3533 (! c3534 p3534))) -(petri (? c3534 p3534 (! c3535 p3535))) -(petri (? c3535 p3535 (! c3536 p3536))) -(petri (? c3536 p3536 (! c3537 p3537))) -(petri (? c3537 p3537 (! c3538 p3538))) -(petri (? c3538 p3538 (! c3539 p3539))) -(petri (? c3539 p3539 (! c3540 p3540))) -(petri (? c3540 p3540 (! c3541 p3541))) -(petri (? c3541 p3541 (! c3542 p3542))) -(petri (? c3542 p3542 (! c3543 p3543))) -(petri (? c3543 p3543 (! c3544 p3544))) -(petri (? c3544 p3544 (! c3545 p3545))) -(petri (? c3545 p3545 (! c3546 p3546))) -(petri (? c3546 p3546 (! c3547 p3547))) -(petri (? c3547 p3547 (! c3548 p3548))) -(petri (? c3548 p3548 (! c3549 p3549))) -(petri (? c3549 p3549 (! c3550 p3550))) -(petri (? c3550 p3550 (! c3551 p3551))) -(petri (? c3551 p3551 (! c3552 p3552))) -(petri (? c3552 p3552 (! c3553 p3553))) -(petri (? c3553 p3553 (! c3554 p3554))) -(petri (? c3554 p3554 (! c3555 p3555))) -(petri (? c3555 p3555 (! c3556 p3556))) -(petri (? c3556 p3556 (! c3557 p3557))) -(petri (? c3557 p3557 (! c3558 p3558))) -(petri (? c3558 p3558 (! c3559 p3559))) -(petri (? c3559 p3559 (! c3560 p3560))) -(petri (? c3560 p3560 (! c3561 p3561))) -(petri (? c3561 p3561 (! c3562 p3562))) -(petri (? c3562 p3562 (! c3563 p3563))) -(petri (? c3563 p3563 (! c3564 p3564))) -(petri (? c3564 p3564 (! c3565 p3565))) -(petri (? c3565 p3565 (! c3566 p3566))) -(petri (? c3566 p3566 (! c3567 p3567))) -(petri (? c3567 p3567 (! c3568 p3568))) -(petri (? c3568 p3568 (! c3569 p3569))) -(petri (? c3569 p3569 (! c3570 p3570))) -(petri (? c3570 p3570 (! c3571 p3571))) -(petri (? c3571 p3571 (! c3572 p3572))) -(petri (? c3572 p3572 (! c3573 p3573))) -(petri (? c3573 p3573 (! c3574 p3574))) -(petri (? c3574 p3574 (! c3575 p3575))) -(petri (? c3575 p3575 (! c3576 p3576))) -(petri (? c3576 p3576 (! c3577 p3577))) -(petri (? c3577 p3577 (! c3578 p3578))) -(petri (? c3578 p3578 (! c3579 p3579))) -(petri (? c3579 p3579 (! c3580 p3580))) -(petri (? c3580 p3580 (! c3581 p3581))) -(petri (? c3581 p3581 (! c3582 p3582))) -(petri (? c3582 p3582 (! c3583 p3583))) -(petri (? c3583 p3583 (! c3584 p3584))) -(petri (? c3584 p3584 (! c3585 p3585))) -(petri (? c3585 p3585 (! c3586 p3586))) -(petri (? c3586 p3586 (! c3587 p3587))) -(petri (? c3587 p3587 (! c3588 p3588))) -(petri (? c3588 p3588 (! c3589 p3589))) -(petri (? c3589 p3589 (! c3590 p3590))) -(petri (? c3590 p3590 (! c3591 p3591))) -(petri (? c3591 p3591 (! c3592 p3592))) -(petri (? c3592 p3592 (! c3593 p3593))) -(petri (? c3593 p3593 (! c3594 p3594))) -(petri (? c3594 p3594 (! c3595 p3595))) -(petri (? c3595 p3595 (! c3596 p3596))) -(petri (? c3596 p3596 (! c3597 p3597))) -(petri (? c3597 p3597 (! c3598 p3598))) -(petri (? c3598 p3598 (! c3599 p3599))) -(petri (? c3599 p3599 (! c3600 p3600))) -(petri (? c3600 p3600 (! c3601 p3601))) -(petri (? c3601 p3601 (! c3602 p3602))) -(petri (? c3602 p3602 (! c3603 p3603))) -(petri (? c3603 p3603 (! c3604 p3604))) -(petri (? c3604 p3604 (! c3605 p3605))) -(petri (? c3605 p3605 (! c3606 p3606))) -(petri (? c3606 p3606 (! c3607 p3607))) -(petri (? c3607 p3607 (! c3608 p3608))) -(petri (? c3608 p3608 (! c3609 p3609))) -(petri (? c3609 p3609 (! c3610 p3610))) -(petri (? c3610 p3610 (! c3611 p3611))) -(petri (? c3611 p3611 (! c3612 p3612))) -(petri (? c3612 p3612 (! c3613 p3613))) -(petri (? c3613 p3613 (! c3614 p3614))) -(petri (? c3614 p3614 (! c3615 p3615))) -(petri (? c3615 p3615 (! c3616 p3616))) -(petri (? c3616 p3616 (! c3617 p3617))) -(petri (? c3617 p3617 (! c3618 p3618))) -(petri (? c3618 p3618 (! c3619 p3619))) -(petri (? c3619 p3619 (! c3620 p3620))) -(petri (? c3620 p3620 (! c3621 p3621))) -(petri (? c3621 p3621 (! c3622 p3622))) -(petri (? c3622 p3622 (! c3623 p3623))) -(petri (? c3623 p3623 (! c3624 p3624))) -(petri (? c3624 p3624 (! c3625 p3625))) -(petri (? c3625 p3625 (! c3626 p3626))) -(petri (? c3626 p3626 (! c3627 p3627))) -(petri (? c3627 p3627 (! c3628 p3628))) -(petri (? c3628 p3628 (! c3629 p3629))) -(petri (? c3629 p3629 (! c3630 p3630))) -(petri (? c3630 p3630 (! c3631 p3631))) -(petri (? c3631 p3631 (! c3632 p3632))) -(petri (? c3632 p3632 (! c3633 p3633))) -(petri (? c3633 p3633 (! c3634 p3634))) -(petri (? c3634 p3634 (! c3635 p3635))) -(petri (? c3635 p3635 (! c3636 p3636))) -(petri (? c3636 p3636 (! c3637 p3637))) -(petri (? c3637 p3637 (! c3638 p3638))) -(petri (? c3638 p3638 (! c3639 p3639))) -(petri (? c3639 p3639 (! c3640 p3640))) -(petri (? c3640 p3640 (! c3641 p3641))) -(petri (? c3641 p3641 (! c3642 p3642))) -(petri (? c3642 p3642 (! c3643 p3643))) -(petri (? c3643 p3643 (! c3644 p3644))) -(petri (? c3644 p3644 (! c3645 p3645))) -(petri (? c3645 p3645 (! c3646 p3646))) -(petri (? c3646 p3646 (! c3647 p3647))) -(petri (? c3647 p3647 (! c3648 p3648))) -(petri (? c3648 p3648 (! c3649 p3649))) -(petri (? c3649 p3649 (! c3650 p3650))) -(petri (? c3650 p3650 (! c3651 p3651))) -(petri (? c3651 p3651 (! c3652 p3652))) -(petri (? c3652 p3652 (! c3653 p3653))) -(petri (? c3653 p3653 (! c3654 p3654))) -(petri (? c3654 p3654 (! c3655 p3655))) -(petri (? c3655 p3655 (! c3656 p3656))) -(petri (? c3656 p3656 (! c3657 p3657))) -(petri (? c3657 p3657 (! c3658 p3658))) -(petri (? c3658 p3658 (! c3659 p3659))) -(petri (? c3659 p3659 (! c3660 p3660))) -(petri (? c3660 p3660 (! c3661 p3661))) -(petri (? c3661 p3661 (! c3662 p3662))) -(petri (? c3662 p3662 (! c3663 p3663))) -(petri (? c3663 p3663 (! c3664 p3664))) -(petri (? c3664 p3664 (! c3665 p3665))) -(petri (? c3665 p3665 (! c3666 p3666))) -(petri (? c3666 p3666 (! c3667 p3667))) -(petri (? c3667 p3667 (! c3668 p3668))) -(petri (? c3668 p3668 (! c3669 p3669))) -(petri (? c3669 p3669 (! c3670 p3670))) -(petri (? c3670 p3670 (! c3671 p3671))) -(petri (? c3671 p3671 (! c3672 p3672))) -(petri (? c3672 p3672 (! c3673 p3673))) -(petri (? c3673 p3673 (! c3674 p3674))) -(petri (? c3674 p3674 (! c3675 p3675))) -(petri (? c3675 p3675 (! c3676 p3676))) -(petri (? c3676 p3676 (! c3677 p3677))) -(petri (? c3677 p3677 (! c3678 p3678))) -(petri (? c3678 p3678 (! c3679 p3679))) -(petri (? c3679 p3679 (! c3680 p3680))) -(petri (? c3680 p3680 (! c3681 p3681))) -(petri (? c3681 p3681 (! c3682 p3682))) -(petri (? c3682 p3682 (! c3683 p3683))) -(petri (? c3683 p3683 (! c3684 p3684))) -(petri (? c3684 p3684 (! c3685 p3685))) -(petri (? c3685 p3685 (! c3686 p3686))) -(petri (? c3686 p3686 (! c3687 p3687))) -(petri (? c3687 p3687 (! c3688 p3688))) -(petri (? c3688 p3688 (! c3689 p3689))) -(petri (? c3689 p3689 (! c3690 p3690))) -(petri (? c3690 p3690 (! c3691 p3691))) -(petri (? c3691 p3691 (! c3692 p3692))) -(petri (? c3692 p3692 (! c3693 p3693))) -(petri (? c3693 p3693 (! c3694 p3694))) -(petri (? c3694 p3694 (! c3695 p3695))) -(petri (? c3695 p3695 (! c3696 p3696))) -(petri (? c3696 p3696 (! c3697 p3697))) -(petri (? c3697 p3697 (! c3698 p3698))) -(petri (? c3698 p3698 (! c3699 p3699))) -(petri (? c3699 p3699 (! c3700 p3700))) -(petri (? c3700 p3700 (! c3701 p3701))) -(petri (? c3701 p3701 (! c3702 p3702))) -(petri (? c3702 p3702 (! c3703 p3703))) -(petri (? c3703 p3703 (! c3704 p3704))) -(petri (? c3704 p3704 (! c3705 p3705))) -(petri (? c3705 p3705 (! c3706 p3706))) -(petri (? c3706 p3706 (! c3707 p3707))) -(petri (? c3707 p3707 (! c3708 p3708))) -(petri (? c3708 p3708 (! c3709 p3709))) -(petri (? c3709 p3709 (! c3710 p3710))) -(petri (? c3710 p3710 (! c3711 p3711))) -(petri (? c3711 p3711 (! c3712 p3712))) -(petri (? c3712 p3712 (! c3713 p3713))) -(petri (? c3713 p3713 (! c3714 p3714))) -(petri (? c3714 p3714 (! c3715 p3715))) -(petri (? c3715 p3715 (! c3716 p3716))) -(petri (? c3716 p3716 (! c3717 p3717))) -(petri (? c3717 p3717 (! c3718 p3718))) -(petri (? c3718 p3718 (! c3719 p3719))) -(petri (? c3719 p3719 (! c3720 p3720))) -(petri (? c3720 p3720 (! c3721 p3721))) -(petri (? c3721 p3721 (! c3722 p3722))) -(petri (? c3722 p3722 (! c3723 p3723))) -(petri (? c3723 p3723 (! c3724 p3724))) -(petri (? c3724 p3724 (! c3725 p3725))) -(petri (? c3725 p3725 (! c3726 p3726))) -(petri (? c3726 p3726 (! c3727 p3727))) -(petri (? c3727 p3727 (! c3728 p3728))) -(petri (? c3728 p3728 (! c3729 p3729))) -(petri (? c3729 p3729 (! c3730 p3730))) -(petri (? c3730 p3730 (! c3731 p3731))) -(petri (? c3731 p3731 (! c3732 p3732))) -(petri (? c3732 p3732 (! c3733 p3733))) -(petri (? c3733 p3733 (! c3734 p3734))) -(petri (? c3734 p3734 (! c3735 p3735))) -(petri (? c3735 p3735 (! c3736 p3736))) -(petri (? c3736 p3736 (! c3737 p3737))) -(petri (? c3737 p3737 (! c3738 p3738))) -(petri (? c3738 p3738 (! c3739 p3739))) -(petri (? c3739 p3739 (! c3740 p3740))) -(petri (? c3740 p3740 (! c3741 p3741))) -(petri (? c3741 p3741 (! c3742 p3742))) -(petri (? c3742 p3742 (! c3743 p3743))) -(petri (? c3743 p3743 (! c3744 p3744))) -(petri (? c3744 p3744 (! c3745 p3745))) -(petri (? c3745 p3745 (! c3746 p3746))) -(petri (? c3746 p3746 (! c3747 p3747))) -(petri (? c3747 p3747 (! c3748 p3748))) -(petri (? c3748 p3748 (! c3749 p3749))) -(petri (? c3749 p3749 (! c3750 p3750))) -(petri (? c3750 p3750 (! c3751 p3751))) -(petri (? c3751 p3751 (! c3752 p3752))) -(petri (? c3752 p3752 (! c3753 p3753))) -(petri (? c3753 p3753 (! c3754 p3754))) -(petri (? c3754 p3754 (! c3755 p3755))) -(petri (? c3755 p3755 (! c3756 p3756))) -(petri (? c3756 p3756 (! c3757 p3757))) -(petri (? c3757 p3757 (! c3758 p3758))) -(petri (? c3758 p3758 (! c3759 p3759))) -(petri (? c3759 p3759 (! c3760 p3760))) -(petri (? c3760 p3760 (! c3761 p3761))) -(petri (? c3761 p3761 (! c3762 p3762))) -(petri (? c3762 p3762 (! c3763 p3763))) -(petri (? c3763 p3763 (! c3764 p3764))) -(petri (? c3764 p3764 (! c3765 p3765))) -(petri (? c3765 p3765 (! c3766 p3766))) -(petri (? c3766 p3766 (! c3767 p3767))) -(petri (? c3767 p3767 (! c3768 p3768))) -(petri (? c3768 p3768 (! c3769 p3769))) -(petri (? c3769 p3769 (! c3770 p3770))) -(petri (? c3770 p3770 (! c3771 p3771))) -(petri (? c3771 p3771 (! c3772 p3772))) -(petri (? c3772 p3772 (! c3773 p3773))) -(petri (? c3773 p3773 (! c3774 p3774))) -(petri (? c3774 p3774 (! c3775 p3775))) -(petri (? c3775 p3775 (! c3776 p3776))) -(petri (? c3776 p3776 (! c3777 p3777))) -(petri (? c3777 p3777 (! c3778 p3778))) -(petri (? c3778 p3778 (! c3779 p3779))) -(petri (? c3779 p3779 (! c3780 p3780))) -(petri (? c3780 p3780 (! c3781 p3781))) -(petri (? c3781 p3781 (! c3782 p3782))) -(petri (? c3782 p3782 (! c3783 p3783))) -(petri (? c3783 p3783 (! c3784 p3784))) -(petri (? c3784 p3784 (! c3785 p3785))) -(petri (? c3785 p3785 (! c3786 p3786))) -(petri (? c3786 p3786 (! c3787 p3787))) -(petri (? c3787 p3787 (! c3788 p3788))) -(petri (? c3788 p3788 (! c3789 p3789))) -(petri (? c3789 p3789 (! c3790 p3790))) -(petri (? c3790 p3790 (! c3791 p3791))) -(petri (? c3791 p3791 (! c3792 p3792))) -(petri (? c3792 p3792 (! c3793 p3793))) -(petri (? c3793 p3793 (! c3794 p3794))) -(petri (? c3794 p3794 (! c3795 p3795))) -(petri (? c3795 p3795 (! c3796 p3796))) -(petri (? c3796 p3796 (! c3797 p3797))) -(petri (? c3797 p3797 (! c3798 p3798))) -(petri (? c3798 p3798 (! c3799 p3799))) -(petri (? c3799 p3799 (! c3800 p3800))) -(petri (? c3800 p3800 (! c3801 p3801))) -(petri (? c3801 p3801 (! c3802 p3802))) -(petri (? c3802 p3802 (! c3803 p3803))) -(petri (? c3803 p3803 (! c3804 p3804))) -(petri (? c3804 p3804 (! c3805 p3805))) -(petri (? c3805 p3805 (! c3806 p3806))) -(petri (? c3806 p3806 (! c3807 p3807))) -(petri (? c3807 p3807 (! c3808 p3808))) -(petri (? c3808 p3808 (! c3809 p3809))) -(petri (? c3809 p3809 (! c3810 p3810))) -(petri (? c3810 p3810 (! c3811 p3811))) -(petri (? c3811 p3811 (! c3812 p3812))) -(petri (? c3812 p3812 (! c3813 p3813))) -(petri (? c3813 p3813 (! c3814 p3814))) -(petri (? c3814 p3814 (! c3815 p3815))) -(petri (? c3815 p3815 (! c3816 p3816))) -(petri (? c3816 p3816 (! c3817 p3817))) -(petri (? c3817 p3817 (! c3818 p3818))) -(petri (? c3818 p3818 (! c3819 p3819))) -(petri (? c3819 p3819 (! c3820 p3820))) -(petri (? c3820 p3820 (! c3821 p3821))) -(petri (? c3821 p3821 (! c3822 p3822))) -(petri (? c3822 p3822 (! c3823 p3823))) -(petri (? c3823 p3823 (! c3824 p3824))) -(petri (? c3824 p3824 (! c3825 p3825))) -(petri (? c3825 p3825 (! c3826 p3826))) -(petri (? c3826 p3826 (! c3827 p3827))) -(petri (? c3827 p3827 (! c3828 p3828))) -(petri (? c3828 p3828 (! c3829 p3829))) -(petri (? c3829 p3829 (! c3830 p3830))) -(petri (? c3830 p3830 (! c3831 p3831))) -(petri (? c3831 p3831 (! c3832 p3832))) -(petri (? c3832 p3832 (! c3833 p3833))) -(petri (? c3833 p3833 (! c3834 p3834))) -(petri (? c3834 p3834 (! c3835 p3835))) -(petri (? c3835 p3835 (! c3836 p3836))) -(petri (? c3836 p3836 (! c3837 p3837))) -(petri (? c3837 p3837 (! c3838 p3838))) -(petri (? c3838 p3838 (! c3839 p3839))) -(petri (? c3839 p3839 (! c3840 p3840))) -(petri (? c3840 p3840 (! c3841 p3841))) -(petri (? c3841 p3841 (! c3842 p3842))) -(petri (? c3842 p3842 (! c3843 p3843))) -(petri (? c3843 p3843 (! c3844 p3844))) -(petri (? c3844 p3844 (! c3845 p3845))) -(petri (? c3845 p3845 (! c3846 p3846))) -(petri (? c3846 p3846 (! c3847 p3847))) -(petri (? c3847 p3847 (! c3848 p3848))) -(petri (? c3848 p3848 (! c3849 p3849))) -(petri (? c3849 p3849 (! c3850 p3850))) -(petri (? c3850 p3850 (! c3851 p3851))) -(petri (? c3851 p3851 (! c3852 p3852))) -(petri (? c3852 p3852 (! c3853 p3853))) -(petri (? c3853 p3853 (! c3854 p3854))) -(petri (? c3854 p3854 (! c3855 p3855))) -(petri (? c3855 p3855 (! c3856 p3856))) -(petri (? c3856 p3856 (! c3857 p3857))) -(petri (? c3857 p3857 (! c3858 p3858))) -(petri (? c3858 p3858 (! c3859 p3859))) -(petri (? c3859 p3859 (! c3860 p3860))) -(petri (? c3860 p3860 (! c3861 p3861))) -(petri (? c3861 p3861 (! c3862 p3862))) -(petri (? c3862 p3862 (! c3863 p3863))) -(petri (? c3863 p3863 (! c3864 p3864))) -(petri (? c3864 p3864 (! c3865 p3865))) -(petri (? c3865 p3865 (! c3866 p3866))) -(petri (? c3866 p3866 (! c3867 p3867))) -(petri (? c3867 p3867 (! c3868 p3868))) -(petri (? c3868 p3868 (! c3869 p3869))) -(petri (? c3869 p3869 (! c3870 p3870))) -(petri (? c3870 p3870 (! c3871 p3871))) -(petri (? c3871 p3871 (! c3872 p3872))) -(petri (? c3872 p3872 (! c3873 p3873))) -(petri (? c3873 p3873 (! c3874 p3874))) -(petri (? c3874 p3874 (! c3875 p3875))) -(petri (? c3875 p3875 (! c3876 p3876))) -(petri (? c3876 p3876 (! c3877 p3877))) -(petri (? c3877 p3877 (! c3878 p3878))) -(petri (? c3878 p3878 (! c3879 p3879))) -(petri (? c3879 p3879 (! c3880 p3880))) -(petri (? c3880 p3880 (! c3881 p3881))) -(petri (? c3881 p3881 (! c3882 p3882))) -(petri (? c3882 p3882 (! c3883 p3883))) -(petri (? c3883 p3883 (! c3884 p3884))) -(petri (? c3884 p3884 (! c3885 p3885))) -(petri (? c3885 p3885 (! c3886 p3886))) -(petri (? c3886 p3886 (! c3887 p3887))) -(petri (? c3887 p3887 (! c3888 p3888))) -(petri (? c3888 p3888 (! c3889 p3889))) -(petri (? c3889 p3889 (! c3890 p3890))) -(petri (? c3890 p3890 (! c3891 p3891))) -(petri (? c3891 p3891 (! c3892 p3892))) -(petri (? c3892 p3892 (! c3893 p3893))) -(petri (? c3893 p3893 (! c3894 p3894))) -(petri (? c3894 p3894 (! c3895 p3895))) -(petri (? c3895 p3895 (! c3896 p3896))) -(petri (? c3896 p3896 (! c3897 p3897))) -(petri (? c3897 p3897 (! c3898 p3898))) -(petri (? c3898 p3898 (! c3899 p3899))) -(petri (? c3899 p3899 (! c3900 p3900))) -(petri (? c3900 p3900 (! c3901 p3901))) -(petri (? c3901 p3901 (! c3902 p3902))) -(petri (? c3902 p3902 (! c3903 p3903))) -(petri (? c3903 p3903 (! c3904 p3904))) -(petri (? c3904 p3904 (! c3905 p3905))) -(petri (? c3905 p3905 (! c3906 p3906))) -(petri (? c3906 p3906 (! c3907 p3907))) -(petri (? c3907 p3907 (! c3908 p3908))) -(petri (? c3908 p3908 (! c3909 p3909))) -(petri (? c3909 p3909 (! c3910 p3910))) -(petri (? c3910 p3910 (! c3911 p3911))) -(petri (? c3911 p3911 (! c3912 p3912))) -(petri (? c3912 p3912 (! c3913 p3913))) -(petri (? c3913 p3913 (! c3914 p3914))) -(petri (? c3914 p3914 (! c3915 p3915))) -(petri (? c3915 p3915 (! c3916 p3916))) -(petri (? c3916 p3916 (! c3917 p3917))) -(petri (? c3917 p3917 (! c3918 p3918))) -(petri (? c3918 p3918 (! c3919 p3919))) -(petri (? c3919 p3919 (! c3920 p3920))) -(petri (? c3920 p3920 (! c3921 p3921))) -(petri (? c3921 p3921 (! c3922 p3922))) -(petri (? c3922 p3922 (! c3923 p3923))) -(petri (? c3923 p3923 (! c3924 p3924))) -(petri (? c3924 p3924 (! c3925 p3925))) -(petri (? c3925 p3925 (! c3926 p3926))) -(petri (? c3926 p3926 (! c3927 p3927))) -(petri (? c3927 p3927 (! c3928 p3928))) -(petri (? c3928 p3928 (! c3929 p3929))) -(petri (? c3929 p3929 (! c3930 p3930))) -(petri (? c3930 p3930 (! c3931 p3931))) -(petri (? c3931 p3931 (! c3932 p3932))) -(petri (? c3932 p3932 (! c3933 p3933))) -(petri (? c3933 p3933 (! c3934 p3934))) -(petri (? c3934 p3934 (! c3935 p3935))) -(petri (? c3935 p3935 (! c3936 p3936))) -(petri (? c3936 p3936 (! c3937 p3937))) -(petri (? c3937 p3937 (! c3938 p3938))) -(petri (? c3938 p3938 (! c3939 p3939))) -(petri (? c3939 p3939 (! c3940 p3940))) -(petri (? c3940 p3940 (! c3941 p3941))) -(petri (? c3941 p3941 (! c3942 p3942))) -(petri (? c3942 p3942 (! c3943 p3943))) -(petri (? c3943 p3943 (! c3944 p3944))) -(petri (? c3944 p3944 (! c3945 p3945))) -(petri (? c3945 p3945 (! c3946 p3946))) -(petri (? c3946 p3946 (! c3947 p3947))) -(petri (? c3947 p3947 (! c3948 p3948))) -(petri (? c3948 p3948 (! c3949 p3949))) -(petri (? c3949 p3949 (! c3950 p3950))) -(petri (? c3950 p3950 (! c3951 p3951))) -(petri (? c3951 p3951 (! c3952 p3952))) -(petri (? c3952 p3952 (! c3953 p3953))) -(petri (? c3953 p3953 (! c3954 p3954))) -(petri (? c3954 p3954 (! c3955 p3955))) -(petri (? c3955 p3955 (! c3956 p3956))) -(petri (? c3956 p3956 (! c3957 p3957))) -(petri (? c3957 p3957 (! c3958 p3958))) -(petri (? c3958 p3958 (! c3959 p3959))) -(petri (? c3959 p3959 (! c3960 p3960))) -(petri (? c3960 p3960 (! c3961 p3961))) -(petri (? c3961 p3961 (! c3962 p3962))) -(petri (? c3962 p3962 (! c3963 p3963))) -(petri (? c3963 p3963 (! c3964 p3964))) -(petri (? c3964 p3964 (! c3965 p3965))) -(petri (? c3965 p3965 (! c3966 p3966))) -(petri (? c3966 p3966 (! c3967 p3967))) -(petri (? c3967 p3967 (! c3968 p3968))) -(petri (? c3968 p3968 (! c3969 p3969))) -(petri (? c3969 p3969 (! c3970 p3970))) -(petri (? c3970 p3970 (! c3971 p3971))) -(petri (? c3971 p3971 (! c3972 p3972))) -(petri (? c3972 p3972 (! c3973 p3973))) -(petri (? c3973 p3973 (! c3974 p3974))) -(petri (? c3974 p3974 (! c3975 p3975))) -(petri (? c3975 p3975 (! c3976 p3976))) -(petri (? c3976 p3976 (! c3977 p3977))) -(petri (? c3977 p3977 (! c3978 p3978))) -(petri (? c3978 p3978 (! c3979 p3979))) -(petri (? c3979 p3979 (! c3980 p3980))) -(petri (? c3980 p3980 (! c3981 p3981))) -(petri (? c3981 p3981 (! c3982 p3982))) -(petri (? c3982 p3982 (! c3983 p3983))) -(petri (? c3983 p3983 (! c3984 p3984))) -(petri (? c3984 p3984 (! c3985 p3985))) -(petri (? c3985 p3985 (! c3986 p3986))) -(petri (? c3986 p3986 (! c3987 p3987))) -(petri (? c3987 p3987 (! c3988 p3988))) -(petri (? c3988 p3988 (! c3989 p3989))) -(petri (? c3989 p3989 (! c3990 p3990))) -(petri (? c3990 p3990 (! c3991 p3991))) -(petri (? c3991 p3991 (! c3992 p3992))) -(petri (? c3992 p3992 (! c3993 p3993))) -(petri (? c3993 p3993 (! c3994 p3994))) -(petri (? c3994 p3994 (! c3995 p3995))) -(petri (? c3995 p3995 (! c3996 p3996))) -(petri (? c3996 p3996 (! c3997 p3997))) -(petri (? c3997 p3997 (! c3998 p3998))) -(petri (? c3998 p3998 (! c3999 p3999))) -(petri (? c3999 p3999 (! c4000 p4000))) -(petri (! c0 p0)) -(dmsg (! c0 p0)) -(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))) - -;; One exec per round: consume the delta, add what it derives to both the soup and the next -;; delta. No separate promotion pass, so nothing can interleave between them. -(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) - (petri (? $c $pl $b)) (dmsg (! $c $pl))) - (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b)) - (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc2_naive.mm2 b/examples/transforms/pc2_naive.mm2 deleted file mode 100644 index 1766c9fc..00000000 --- a/examples/transforms/pc2_naive.mm2 +++ /dev/null @@ -1,4006 +0,0 @@ -(petri (? c0 p0 (! c1 p1))) -(petri (? c1 p1 (! c2 p2))) -(petri (? c2 p2 (! c3 p3))) -(petri (? c3 p3 (! c4 p4))) -(petri (? c4 p4 (! c5 p5))) -(petri (? c5 p5 (! c6 p6))) -(petri (? c6 p6 (! c7 p7))) -(petri (? c7 p7 (! c8 p8))) -(petri (? c8 p8 (! c9 p9))) -(petri (? c9 p9 (! c10 p10))) -(petri (? c10 p10 (! c11 p11))) -(petri (? c11 p11 (! c12 p12))) -(petri (? c12 p12 (! c13 p13))) -(petri (? c13 p13 (! c14 p14))) -(petri (? c14 p14 (! c15 p15))) -(petri (? c15 p15 (! c16 p16))) -(petri (? c16 p16 (! c17 p17))) -(petri (? c17 p17 (! c18 p18))) -(petri (? c18 p18 (! c19 p19))) -(petri (? c19 p19 (! c20 p20))) -(petri (? c20 p20 (! c21 p21))) -(petri (? c21 p21 (! c22 p22))) -(petri (? c22 p22 (! c23 p23))) -(petri (? c23 p23 (! c24 p24))) -(petri (? c24 p24 (! c25 p25))) -(petri (? c25 p25 (! c26 p26))) -(petri (? c26 p26 (! c27 p27))) -(petri (? c27 p27 (! c28 p28))) -(petri (? c28 p28 (! c29 p29))) -(petri (? c29 p29 (! c30 p30))) -(petri (? c30 p30 (! c31 p31))) -(petri (? c31 p31 (! c32 p32))) -(petri (? c32 p32 (! c33 p33))) -(petri (? c33 p33 (! c34 p34))) -(petri (? c34 p34 (! c35 p35))) -(petri (? c35 p35 (! c36 p36))) -(petri (? c36 p36 (! c37 p37))) -(petri (? c37 p37 (! c38 p38))) -(petri (? c38 p38 (! c39 p39))) -(petri (? c39 p39 (! c40 p40))) -(petri (? c40 p40 (! c41 p41))) -(petri (? c41 p41 (! c42 p42))) -(petri (? c42 p42 (! c43 p43))) -(petri (? c43 p43 (! c44 p44))) -(petri (? c44 p44 (! c45 p45))) -(petri (? c45 p45 (! c46 p46))) -(petri (? c46 p46 (! c47 p47))) -(petri (? c47 p47 (! c48 p48))) -(petri (? c48 p48 (! c49 p49))) -(petri (? c49 p49 (! c50 p50))) -(petri (? c50 p50 (! c51 p51))) -(petri (? c51 p51 (! c52 p52))) -(petri (? c52 p52 (! c53 p53))) -(petri (? c53 p53 (! c54 p54))) -(petri (? c54 p54 (! c55 p55))) -(petri (? c55 p55 (! c56 p56))) -(petri (? c56 p56 (! c57 p57))) -(petri (? c57 p57 (! c58 p58))) -(petri (? c58 p58 (! c59 p59))) -(petri (? c59 p59 (! c60 p60))) -(petri (? c60 p60 (! c61 p61))) -(petri (? c61 p61 (! c62 p62))) -(petri (? c62 p62 (! c63 p63))) -(petri (? c63 p63 (! c64 p64))) -(petri (? c64 p64 (! c65 p65))) -(petri (? c65 p65 (! c66 p66))) -(petri (? c66 p66 (! c67 p67))) -(petri (? c67 p67 (! c68 p68))) -(petri (? c68 p68 (! c69 p69))) -(petri (? c69 p69 (! c70 p70))) -(petri (? c70 p70 (! c71 p71))) -(petri (? c71 p71 (! c72 p72))) -(petri (? c72 p72 (! c73 p73))) -(petri (? c73 p73 (! c74 p74))) -(petri (? c74 p74 (! c75 p75))) -(petri (? c75 p75 (! c76 p76))) -(petri (? c76 p76 (! c77 p77))) -(petri (? c77 p77 (! c78 p78))) -(petri (? c78 p78 (! c79 p79))) -(petri (? c79 p79 (! c80 p80))) -(petri (? c80 p80 (! c81 p81))) -(petri (? c81 p81 (! c82 p82))) -(petri (? c82 p82 (! c83 p83))) -(petri (? c83 p83 (! c84 p84))) -(petri (? c84 p84 (! c85 p85))) -(petri (? c85 p85 (! c86 p86))) -(petri (? c86 p86 (! c87 p87))) -(petri (? c87 p87 (! c88 p88))) -(petri (? c88 p88 (! c89 p89))) -(petri (? c89 p89 (! c90 p90))) -(petri (? c90 p90 (! c91 p91))) -(petri (? c91 p91 (! c92 p92))) -(petri (? c92 p92 (! c93 p93))) -(petri (? c93 p93 (! c94 p94))) -(petri (? c94 p94 (! c95 p95))) -(petri (? c95 p95 (! c96 p96))) -(petri (? c96 p96 (! c97 p97))) -(petri (? c97 p97 (! c98 p98))) -(petri (? c98 p98 (! c99 p99))) -(petri (? c99 p99 (! c100 p100))) -(petri (? c100 p100 (! c101 p101))) -(petri (? c101 p101 (! c102 p102))) -(petri (? c102 p102 (! c103 p103))) -(petri (? c103 p103 (! c104 p104))) -(petri (? c104 p104 (! c105 p105))) -(petri (? c105 p105 (! c106 p106))) -(petri (? c106 p106 (! c107 p107))) -(petri (? c107 p107 (! c108 p108))) -(petri (? c108 p108 (! c109 p109))) -(petri (? c109 p109 (! c110 p110))) -(petri (? c110 p110 (! c111 p111))) -(petri (? c111 p111 (! c112 p112))) -(petri (? c112 p112 (! c113 p113))) -(petri (? c113 p113 (! c114 p114))) -(petri (? c114 p114 (! c115 p115))) -(petri (? c115 p115 (! c116 p116))) -(petri (? c116 p116 (! c117 p117))) -(petri (? c117 p117 (! c118 p118))) -(petri (? c118 p118 (! c119 p119))) -(petri (? c119 p119 (! c120 p120))) -(petri (? c120 p120 (! c121 p121))) -(petri (? c121 p121 (! c122 p122))) -(petri (? c122 p122 (! c123 p123))) -(petri (? c123 p123 (! c124 p124))) -(petri (? c124 p124 (! c125 p125))) -(petri (? c125 p125 (! c126 p126))) -(petri (? c126 p126 (! c127 p127))) -(petri (? c127 p127 (! c128 p128))) -(petri (? c128 p128 (! c129 p129))) -(petri (? c129 p129 (! c130 p130))) -(petri (? c130 p130 (! c131 p131))) -(petri (? c131 p131 (! c132 p132))) -(petri (? c132 p132 (! c133 p133))) -(petri (? c133 p133 (! c134 p134))) -(petri (? c134 p134 (! c135 p135))) -(petri (? c135 p135 (! c136 p136))) -(petri (? c136 p136 (! c137 p137))) -(petri (? c137 p137 (! c138 p138))) -(petri (? c138 p138 (! c139 p139))) -(petri (? c139 p139 (! c140 p140))) -(petri (? c140 p140 (! c141 p141))) -(petri (? c141 p141 (! c142 p142))) -(petri (? c142 p142 (! c143 p143))) -(petri (? c143 p143 (! c144 p144))) -(petri (? c144 p144 (! c145 p145))) -(petri (? c145 p145 (! c146 p146))) -(petri (? c146 p146 (! c147 p147))) -(petri (? c147 p147 (! c148 p148))) -(petri (? c148 p148 (! c149 p149))) -(petri (? c149 p149 (! c150 p150))) -(petri (? c150 p150 (! c151 p151))) -(petri (? c151 p151 (! c152 p152))) -(petri (? c152 p152 (! c153 p153))) -(petri (? c153 p153 (! c154 p154))) -(petri (? c154 p154 (! c155 p155))) -(petri (? c155 p155 (! c156 p156))) -(petri (? c156 p156 (! c157 p157))) -(petri (? c157 p157 (! c158 p158))) -(petri (? c158 p158 (! c159 p159))) -(petri (? c159 p159 (! c160 p160))) -(petri (? c160 p160 (! c161 p161))) -(petri (? c161 p161 (! c162 p162))) -(petri (? c162 p162 (! c163 p163))) -(petri (? c163 p163 (! c164 p164))) -(petri (? c164 p164 (! c165 p165))) -(petri (? c165 p165 (! c166 p166))) -(petri (? c166 p166 (! c167 p167))) -(petri (? c167 p167 (! c168 p168))) -(petri (? c168 p168 (! c169 p169))) -(petri (? c169 p169 (! c170 p170))) -(petri (? c170 p170 (! c171 p171))) -(petri (? c171 p171 (! c172 p172))) -(petri (? c172 p172 (! c173 p173))) -(petri (? c173 p173 (! c174 p174))) -(petri (? c174 p174 (! c175 p175))) -(petri (? c175 p175 (! c176 p176))) -(petri (? c176 p176 (! c177 p177))) -(petri (? c177 p177 (! c178 p178))) -(petri (? c178 p178 (! c179 p179))) -(petri (? c179 p179 (! c180 p180))) -(petri (? c180 p180 (! c181 p181))) -(petri (? c181 p181 (! c182 p182))) -(petri (? c182 p182 (! c183 p183))) -(petri (? c183 p183 (! c184 p184))) -(petri (? c184 p184 (! c185 p185))) -(petri (? c185 p185 (! c186 p186))) -(petri (? c186 p186 (! c187 p187))) -(petri (? c187 p187 (! c188 p188))) -(petri (? c188 p188 (! c189 p189))) -(petri (? c189 p189 (! c190 p190))) -(petri (? c190 p190 (! c191 p191))) -(petri (? c191 p191 (! c192 p192))) -(petri (? c192 p192 (! c193 p193))) -(petri (? c193 p193 (! c194 p194))) -(petri (? c194 p194 (! c195 p195))) -(petri (? c195 p195 (! c196 p196))) -(petri (? c196 p196 (! c197 p197))) -(petri (? c197 p197 (! c198 p198))) -(petri (? c198 p198 (! c199 p199))) -(petri (? c199 p199 (! c200 p200))) -(petri (? c200 p200 (! c201 p201))) -(petri (? c201 p201 (! c202 p202))) -(petri (? c202 p202 (! c203 p203))) -(petri (? c203 p203 (! c204 p204))) -(petri (? c204 p204 (! c205 p205))) -(petri (? c205 p205 (! c206 p206))) -(petri (? c206 p206 (! c207 p207))) -(petri (? c207 p207 (! c208 p208))) -(petri (? c208 p208 (! c209 p209))) -(petri (? c209 p209 (! c210 p210))) -(petri (? c210 p210 (! c211 p211))) -(petri (? c211 p211 (! c212 p212))) -(petri (? c212 p212 (! c213 p213))) -(petri (? c213 p213 (! c214 p214))) -(petri (? c214 p214 (! c215 p215))) -(petri (? c215 p215 (! c216 p216))) -(petri (? c216 p216 (! c217 p217))) -(petri (? c217 p217 (! c218 p218))) -(petri (? c218 p218 (! c219 p219))) -(petri (? c219 p219 (! c220 p220))) -(petri (? c220 p220 (! c221 p221))) -(petri (? c221 p221 (! c222 p222))) -(petri (? c222 p222 (! c223 p223))) -(petri (? c223 p223 (! c224 p224))) -(petri (? c224 p224 (! c225 p225))) -(petri (? c225 p225 (! c226 p226))) -(petri (? c226 p226 (! c227 p227))) -(petri (? c227 p227 (! c228 p228))) -(petri (? c228 p228 (! c229 p229))) -(petri (? c229 p229 (! c230 p230))) -(petri (? c230 p230 (! c231 p231))) -(petri (? c231 p231 (! c232 p232))) -(petri (? c232 p232 (! c233 p233))) -(petri (? c233 p233 (! c234 p234))) -(petri (? c234 p234 (! c235 p235))) -(petri (? c235 p235 (! c236 p236))) -(petri (? c236 p236 (! c237 p237))) -(petri (? c237 p237 (! c238 p238))) -(petri (? c238 p238 (! c239 p239))) -(petri (? c239 p239 (! c240 p240))) -(petri (? c240 p240 (! c241 p241))) -(petri (? c241 p241 (! c242 p242))) -(petri (? c242 p242 (! c243 p243))) -(petri (? c243 p243 (! c244 p244))) -(petri (? c244 p244 (! c245 p245))) -(petri (? c245 p245 (! c246 p246))) -(petri (? c246 p246 (! c247 p247))) -(petri (? c247 p247 (! c248 p248))) -(petri (? c248 p248 (! c249 p249))) -(petri (? c249 p249 (! c250 p250))) -(petri (? c250 p250 (! c251 p251))) -(petri (? c251 p251 (! c252 p252))) -(petri (? c252 p252 (! c253 p253))) -(petri (? c253 p253 (! c254 p254))) -(petri (? c254 p254 (! c255 p255))) -(petri (? c255 p255 (! c256 p256))) -(petri (? c256 p256 (! c257 p257))) -(petri (? c257 p257 (! c258 p258))) -(petri (? c258 p258 (! c259 p259))) -(petri (? c259 p259 (! c260 p260))) -(petri (? c260 p260 (! c261 p261))) -(petri (? c261 p261 (! c262 p262))) -(petri (? c262 p262 (! c263 p263))) -(petri (? c263 p263 (! c264 p264))) -(petri (? c264 p264 (! c265 p265))) -(petri (? c265 p265 (! c266 p266))) -(petri (? c266 p266 (! c267 p267))) -(petri (? c267 p267 (! c268 p268))) -(petri (? c268 p268 (! c269 p269))) -(petri (? c269 p269 (! c270 p270))) -(petri (? c270 p270 (! c271 p271))) -(petri (? c271 p271 (! c272 p272))) -(petri (? c272 p272 (! c273 p273))) -(petri (? c273 p273 (! c274 p274))) -(petri (? c274 p274 (! c275 p275))) -(petri (? c275 p275 (! c276 p276))) -(petri (? c276 p276 (! c277 p277))) -(petri (? c277 p277 (! c278 p278))) -(petri (? c278 p278 (! c279 p279))) -(petri (? c279 p279 (! c280 p280))) -(petri (? c280 p280 (! c281 p281))) -(petri (? c281 p281 (! c282 p282))) -(petri (? c282 p282 (! c283 p283))) -(petri (? c283 p283 (! c284 p284))) -(petri (? c284 p284 (! c285 p285))) -(petri (? c285 p285 (! c286 p286))) -(petri (? c286 p286 (! c287 p287))) -(petri (? c287 p287 (! c288 p288))) -(petri (? c288 p288 (! c289 p289))) -(petri (? c289 p289 (! c290 p290))) -(petri (? c290 p290 (! c291 p291))) -(petri (? c291 p291 (! c292 p292))) -(petri (? c292 p292 (! c293 p293))) -(petri (? c293 p293 (! c294 p294))) -(petri (? c294 p294 (! c295 p295))) -(petri (? c295 p295 (! c296 p296))) -(petri (? c296 p296 (! c297 p297))) -(petri (? c297 p297 (! c298 p298))) -(petri (? c298 p298 (! c299 p299))) -(petri (? c299 p299 (! c300 p300))) -(petri (? c300 p300 (! c301 p301))) -(petri (? c301 p301 (! c302 p302))) -(petri (? c302 p302 (! c303 p303))) -(petri (? c303 p303 (! c304 p304))) -(petri (? c304 p304 (! c305 p305))) -(petri (? c305 p305 (! c306 p306))) -(petri (? c306 p306 (! c307 p307))) -(petri (? c307 p307 (! c308 p308))) -(petri (? c308 p308 (! c309 p309))) -(petri (? c309 p309 (! c310 p310))) -(petri (? c310 p310 (! c311 p311))) -(petri (? c311 p311 (! c312 p312))) -(petri (? c312 p312 (! c313 p313))) -(petri (? c313 p313 (! c314 p314))) -(petri (? c314 p314 (! c315 p315))) -(petri (? c315 p315 (! c316 p316))) -(petri (? c316 p316 (! c317 p317))) -(petri (? c317 p317 (! c318 p318))) -(petri (? c318 p318 (! c319 p319))) -(petri (? c319 p319 (! c320 p320))) -(petri (? c320 p320 (! c321 p321))) -(petri (? c321 p321 (! c322 p322))) -(petri (? c322 p322 (! c323 p323))) -(petri (? c323 p323 (! c324 p324))) -(petri (? c324 p324 (! c325 p325))) -(petri (? c325 p325 (! c326 p326))) -(petri (? c326 p326 (! c327 p327))) -(petri (? c327 p327 (! c328 p328))) -(petri (? c328 p328 (! c329 p329))) -(petri (? c329 p329 (! c330 p330))) -(petri (? c330 p330 (! c331 p331))) -(petri (? c331 p331 (! c332 p332))) -(petri (? c332 p332 (! c333 p333))) -(petri (? c333 p333 (! c334 p334))) -(petri (? c334 p334 (! c335 p335))) -(petri (? c335 p335 (! c336 p336))) -(petri (? c336 p336 (! c337 p337))) -(petri (? c337 p337 (! c338 p338))) -(petri (? c338 p338 (! c339 p339))) -(petri (? c339 p339 (! c340 p340))) -(petri (? c340 p340 (! c341 p341))) -(petri (? c341 p341 (! c342 p342))) -(petri (? c342 p342 (! c343 p343))) -(petri (? c343 p343 (! c344 p344))) -(petri (? c344 p344 (! c345 p345))) -(petri (? c345 p345 (! c346 p346))) -(petri (? c346 p346 (! c347 p347))) -(petri (? c347 p347 (! c348 p348))) -(petri (? c348 p348 (! c349 p349))) -(petri (? c349 p349 (! c350 p350))) -(petri (? c350 p350 (! c351 p351))) -(petri (? c351 p351 (! c352 p352))) -(petri (? c352 p352 (! c353 p353))) -(petri (? c353 p353 (! c354 p354))) -(petri (? c354 p354 (! c355 p355))) -(petri (? c355 p355 (! c356 p356))) -(petri (? c356 p356 (! c357 p357))) -(petri (? c357 p357 (! c358 p358))) -(petri (? c358 p358 (! c359 p359))) -(petri (? c359 p359 (! c360 p360))) -(petri (? c360 p360 (! c361 p361))) -(petri (? c361 p361 (! c362 p362))) -(petri (? c362 p362 (! c363 p363))) -(petri (? c363 p363 (! c364 p364))) -(petri (? c364 p364 (! c365 p365))) -(petri (? c365 p365 (! c366 p366))) -(petri (? c366 p366 (! c367 p367))) -(petri (? c367 p367 (! c368 p368))) -(petri (? c368 p368 (! c369 p369))) -(petri (? c369 p369 (! c370 p370))) -(petri (? c370 p370 (! c371 p371))) -(petri (? c371 p371 (! c372 p372))) -(petri (? c372 p372 (! c373 p373))) -(petri (? c373 p373 (! c374 p374))) -(petri (? c374 p374 (! c375 p375))) -(petri (? c375 p375 (! c376 p376))) -(petri (? c376 p376 (! c377 p377))) -(petri (? c377 p377 (! c378 p378))) -(petri (? c378 p378 (! c379 p379))) -(petri (? c379 p379 (! c380 p380))) -(petri (? c380 p380 (! c381 p381))) -(petri (? c381 p381 (! c382 p382))) -(petri (? c382 p382 (! c383 p383))) -(petri (? c383 p383 (! c384 p384))) -(petri (? c384 p384 (! c385 p385))) -(petri (? c385 p385 (! c386 p386))) -(petri (? c386 p386 (! c387 p387))) -(petri (? c387 p387 (! c388 p388))) -(petri (? c388 p388 (! c389 p389))) -(petri (? c389 p389 (! c390 p390))) -(petri (? c390 p390 (! c391 p391))) -(petri (? c391 p391 (! c392 p392))) -(petri (? c392 p392 (! c393 p393))) -(petri (? c393 p393 (! c394 p394))) -(petri (? c394 p394 (! c395 p395))) -(petri (? c395 p395 (! c396 p396))) -(petri (? c396 p396 (! c397 p397))) -(petri (? c397 p397 (! c398 p398))) -(petri (? c398 p398 (! c399 p399))) -(petri (? c399 p399 (! c400 p400))) -(petri (? c400 p400 (! c401 p401))) -(petri (? c401 p401 (! c402 p402))) -(petri (? c402 p402 (! c403 p403))) -(petri (? c403 p403 (! c404 p404))) -(petri (? c404 p404 (! c405 p405))) -(petri (? c405 p405 (! c406 p406))) -(petri (? c406 p406 (! c407 p407))) -(petri (? c407 p407 (! c408 p408))) -(petri (? c408 p408 (! c409 p409))) -(petri (? c409 p409 (! c410 p410))) -(petri (? c410 p410 (! c411 p411))) -(petri (? c411 p411 (! c412 p412))) -(petri (? c412 p412 (! c413 p413))) -(petri (? c413 p413 (! c414 p414))) -(petri (? c414 p414 (! c415 p415))) -(petri (? c415 p415 (! c416 p416))) -(petri (? c416 p416 (! c417 p417))) -(petri (? c417 p417 (! c418 p418))) -(petri (? c418 p418 (! c419 p419))) -(petri (? c419 p419 (! c420 p420))) -(petri (? c420 p420 (! c421 p421))) -(petri (? c421 p421 (! c422 p422))) -(petri (? c422 p422 (! c423 p423))) -(petri (? c423 p423 (! c424 p424))) -(petri (? c424 p424 (! c425 p425))) -(petri (? c425 p425 (! c426 p426))) -(petri (? c426 p426 (! c427 p427))) -(petri (? c427 p427 (! c428 p428))) -(petri (? c428 p428 (! c429 p429))) -(petri (? c429 p429 (! c430 p430))) -(petri (? c430 p430 (! c431 p431))) -(petri (? c431 p431 (! c432 p432))) -(petri (? c432 p432 (! c433 p433))) -(petri (? c433 p433 (! c434 p434))) -(petri (? c434 p434 (! c435 p435))) -(petri (? c435 p435 (! c436 p436))) -(petri (? c436 p436 (! c437 p437))) -(petri (? c437 p437 (! c438 p438))) -(petri (? c438 p438 (! c439 p439))) -(petri (? c439 p439 (! c440 p440))) -(petri (? c440 p440 (! c441 p441))) -(petri (? c441 p441 (! c442 p442))) -(petri (? c442 p442 (! c443 p443))) -(petri (? c443 p443 (! c444 p444))) -(petri (? c444 p444 (! c445 p445))) -(petri (? c445 p445 (! c446 p446))) -(petri (? c446 p446 (! c447 p447))) -(petri (? c447 p447 (! c448 p448))) -(petri (? c448 p448 (! c449 p449))) -(petri (? c449 p449 (! c450 p450))) -(petri (? c450 p450 (! c451 p451))) -(petri (? c451 p451 (! c452 p452))) -(petri (? c452 p452 (! c453 p453))) -(petri (? c453 p453 (! c454 p454))) -(petri (? c454 p454 (! c455 p455))) -(petri (? c455 p455 (! c456 p456))) -(petri (? c456 p456 (! c457 p457))) -(petri (? c457 p457 (! c458 p458))) -(petri (? c458 p458 (! c459 p459))) -(petri (? c459 p459 (! c460 p460))) -(petri (? c460 p460 (! c461 p461))) -(petri (? c461 p461 (! c462 p462))) -(petri (? c462 p462 (! c463 p463))) -(petri (? c463 p463 (! c464 p464))) -(petri (? c464 p464 (! c465 p465))) -(petri (? c465 p465 (! c466 p466))) -(petri (? c466 p466 (! c467 p467))) -(petri (? c467 p467 (! c468 p468))) -(petri (? c468 p468 (! c469 p469))) -(petri (? c469 p469 (! c470 p470))) -(petri (? c470 p470 (! c471 p471))) -(petri (? c471 p471 (! c472 p472))) -(petri (? c472 p472 (! c473 p473))) -(petri (? c473 p473 (! c474 p474))) -(petri (? c474 p474 (! c475 p475))) -(petri (? c475 p475 (! c476 p476))) -(petri (? c476 p476 (! c477 p477))) -(petri (? c477 p477 (! c478 p478))) -(petri (? c478 p478 (! c479 p479))) -(petri (? c479 p479 (! c480 p480))) -(petri (? c480 p480 (! c481 p481))) -(petri (? c481 p481 (! c482 p482))) -(petri (? c482 p482 (! c483 p483))) -(petri (? c483 p483 (! c484 p484))) -(petri (? c484 p484 (! c485 p485))) -(petri (? c485 p485 (! c486 p486))) -(petri (? c486 p486 (! c487 p487))) -(petri (? c487 p487 (! c488 p488))) -(petri (? c488 p488 (! c489 p489))) -(petri (? c489 p489 (! c490 p490))) -(petri (? c490 p490 (! c491 p491))) -(petri (? c491 p491 (! c492 p492))) -(petri (? c492 p492 (! c493 p493))) -(petri (? c493 p493 (! c494 p494))) -(petri (? c494 p494 (! c495 p495))) -(petri (? c495 p495 (! c496 p496))) -(petri (? c496 p496 (! c497 p497))) -(petri (? c497 p497 (! c498 p498))) -(petri (? c498 p498 (! c499 p499))) -(petri (? c499 p499 (! c500 p500))) -(petri (? c500 p500 (! c501 p501))) -(petri (? c501 p501 (! c502 p502))) -(petri (? c502 p502 (! c503 p503))) -(petri (? c503 p503 (! c504 p504))) -(petri (? c504 p504 (! c505 p505))) -(petri (? c505 p505 (! c506 p506))) -(petri (? c506 p506 (! c507 p507))) -(petri (? c507 p507 (! c508 p508))) -(petri (? c508 p508 (! c509 p509))) -(petri (? c509 p509 (! c510 p510))) -(petri (? c510 p510 (! c511 p511))) -(petri (? c511 p511 (! c512 p512))) -(petri (? c512 p512 (! c513 p513))) -(petri (? c513 p513 (! c514 p514))) -(petri (? c514 p514 (! c515 p515))) -(petri (? c515 p515 (! c516 p516))) -(petri (? c516 p516 (! c517 p517))) -(petri (? c517 p517 (! c518 p518))) -(petri (? c518 p518 (! c519 p519))) -(petri (? c519 p519 (! c520 p520))) -(petri (? c520 p520 (! c521 p521))) -(petri (? c521 p521 (! c522 p522))) -(petri (? c522 p522 (! c523 p523))) -(petri (? c523 p523 (! c524 p524))) -(petri (? c524 p524 (! c525 p525))) -(petri (? c525 p525 (! c526 p526))) -(petri (? c526 p526 (! c527 p527))) -(petri (? c527 p527 (! c528 p528))) -(petri (? c528 p528 (! c529 p529))) -(petri (? c529 p529 (! c530 p530))) -(petri (? c530 p530 (! c531 p531))) -(petri (? c531 p531 (! c532 p532))) -(petri (? c532 p532 (! c533 p533))) -(petri (? c533 p533 (! c534 p534))) -(petri (? c534 p534 (! c535 p535))) -(petri (? c535 p535 (! c536 p536))) -(petri (? c536 p536 (! c537 p537))) -(petri (? c537 p537 (! c538 p538))) -(petri (? c538 p538 (! c539 p539))) -(petri (? c539 p539 (! c540 p540))) -(petri (? c540 p540 (! c541 p541))) -(petri (? c541 p541 (! c542 p542))) -(petri (? c542 p542 (! c543 p543))) -(petri (? c543 p543 (! c544 p544))) -(petri (? c544 p544 (! c545 p545))) -(petri (? c545 p545 (! c546 p546))) -(petri (? c546 p546 (! c547 p547))) -(petri (? c547 p547 (! c548 p548))) -(petri (? c548 p548 (! c549 p549))) -(petri (? c549 p549 (! c550 p550))) -(petri (? c550 p550 (! c551 p551))) -(petri (? c551 p551 (! c552 p552))) -(petri (? c552 p552 (! c553 p553))) -(petri (? c553 p553 (! c554 p554))) -(petri (? c554 p554 (! c555 p555))) -(petri (? c555 p555 (! c556 p556))) -(petri (? c556 p556 (! c557 p557))) -(petri (? c557 p557 (! c558 p558))) -(petri (? c558 p558 (! c559 p559))) -(petri (? c559 p559 (! c560 p560))) -(petri (? c560 p560 (! c561 p561))) -(petri (? c561 p561 (! c562 p562))) -(petri (? c562 p562 (! c563 p563))) -(petri (? c563 p563 (! c564 p564))) -(petri (? c564 p564 (! c565 p565))) -(petri (? c565 p565 (! c566 p566))) -(petri (? c566 p566 (! c567 p567))) -(petri (? c567 p567 (! c568 p568))) -(petri (? c568 p568 (! c569 p569))) -(petri (? c569 p569 (! c570 p570))) -(petri (? c570 p570 (! c571 p571))) -(petri (? c571 p571 (! c572 p572))) -(petri (? c572 p572 (! c573 p573))) -(petri (? c573 p573 (! c574 p574))) -(petri (? c574 p574 (! c575 p575))) -(petri (? c575 p575 (! c576 p576))) -(petri (? c576 p576 (! c577 p577))) -(petri (? c577 p577 (! c578 p578))) -(petri (? c578 p578 (! c579 p579))) -(petri (? c579 p579 (! c580 p580))) -(petri (? c580 p580 (! c581 p581))) -(petri (? c581 p581 (! c582 p582))) -(petri (? c582 p582 (! c583 p583))) -(petri (? c583 p583 (! c584 p584))) -(petri (? c584 p584 (! c585 p585))) -(petri (? c585 p585 (! c586 p586))) -(petri (? c586 p586 (! c587 p587))) -(petri (? c587 p587 (! c588 p588))) -(petri (? c588 p588 (! c589 p589))) -(petri (? c589 p589 (! c590 p590))) -(petri (? c590 p590 (! c591 p591))) -(petri (? c591 p591 (! c592 p592))) -(petri (? c592 p592 (! c593 p593))) -(petri (? c593 p593 (! c594 p594))) -(petri (? c594 p594 (! c595 p595))) -(petri (? c595 p595 (! c596 p596))) -(petri (? c596 p596 (! c597 p597))) -(petri (? c597 p597 (! c598 p598))) -(petri (? c598 p598 (! c599 p599))) -(petri (? c599 p599 (! c600 p600))) -(petri (? c600 p600 (! c601 p601))) -(petri (? c601 p601 (! c602 p602))) -(petri (? c602 p602 (! c603 p603))) -(petri (? c603 p603 (! c604 p604))) -(petri (? c604 p604 (! c605 p605))) -(petri (? c605 p605 (! c606 p606))) -(petri (? c606 p606 (! c607 p607))) -(petri (? c607 p607 (! c608 p608))) -(petri (? c608 p608 (! c609 p609))) -(petri (? c609 p609 (! c610 p610))) -(petri (? c610 p610 (! c611 p611))) -(petri (? c611 p611 (! c612 p612))) -(petri (? c612 p612 (! c613 p613))) -(petri (? c613 p613 (! c614 p614))) -(petri (? c614 p614 (! c615 p615))) -(petri (? c615 p615 (! c616 p616))) -(petri (? c616 p616 (! c617 p617))) -(petri (? c617 p617 (! c618 p618))) -(petri (? c618 p618 (! c619 p619))) -(petri (? c619 p619 (! c620 p620))) -(petri (? c620 p620 (! c621 p621))) -(petri (? c621 p621 (! c622 p622))) -(petri (? c622 p622 (! c623 p623))) -(petri (? c623 p623 (! c624 p624))) -(petri (? c624 p624 (! c625 p625))) -(petri (? c625 p625 (! c626 p626))) -(petri (? c626 p626 (! c627 p627))) -(petri (? c627 p627 (! c628 p628))) -(petri (? c628 p628 (! c629 p629))) -(petri (? c629 p629 (! c630 p630))) -(petri (? c630 p630 (! c631 p631))) -(petri (? c631 p631 (! c632 p632))) -(petri (? c632 p632 (! c633 p633))) -(petri (? c633 p633 (! c634 p634))) -(petri (? c634 p634 (! c635 p635))) -(petri (? c635 p635 (! c636 p636))) -(petri (? c636 p636 (! c637 p637))) -(petri (? c637 p637 (! c638 p638))) -(petri (? c638 p638 (! c639 p639))) -(petri (? c639 p639 (! c640 p640))) -(petri (? c640 p640 (! c641 p641))) -(petri (? c641 p641 (! c642 p642))) -(petri (? c642 p642 (! c643 p643))) -(petri (? c643 p643 (! c644 p644))) -(petri (? c644 p644 (! c645 p645))) -(petri (? c645 p645 (! c646 p646))) -(petri (? c646 p646 (! c647 p647))) -(petri (? c647 p647 (! c648 p648))) -(petri (? c648 p648 (! c649 p649))) -(petri (? c649 p649 (! c650 p650))) -(petri (? c650 p650 (! c651 p651))) -(petri (? c651 p651 (! c652 p652))) -(petri (? c652 p652 (! c653 p653))) -(petri (? c653 p653 (! c654 p654))) -(petri (? c654 p654 (! c655 p655))) -(petri (? c655 p655 (! c656 p656))) -(petri (? c656 p656 (! c657 p657))) -(petri (? c657 p657 (! c658 p658))) -(petri (? c658 p658 (! c659 p659))) -(petri (? c659 p659 (! c660 p660))) -(petri (? c660 p660 (! c661 p661))) -(petri (? c661 p661 (! c662 p662))) -(petri (? c662 p662 (! c663 p663))) -(petri (? c663 p663 (! c664 p664))) -(petri (? c664 p664 (! c665 p665))) -(petri (? c665 p665 (! c666 p666))) -(petri (? c666 p666 (! c667 p667))) -(petri (? c667 p667 (! c668 p668))) -(petri (? c668 p668 (! c669 p669))) -(petri (? c669 p669 (! c670 p670))) -(petri (? c670 p670 (! c671 p671))) -(petri (? c671 p671 (! c672 p672))) -(petri (? c672 p672 (! c673 p673))) -(petri (? c673 p673 (! c674 p674))) -(petri (? c674 p674 (! c675 p675))) -(petri (? c675 p675 (! c676 p676))) -(petri (? c676 p676 (! c677 p677))) -(petri (? c677 p677 (! c678 p678))) -(petri (? c678 p678 (! c679 p679))) -(petri (? c679 p679 (! c680 p680))) -(petri (? c680 p680 (! c681 p681))) -(petri (? c681 p681 (! c682 p682))) -(petri (? c682 p682 (! c683 p683))) -(petri (? c683 p683 (! c684 p684))) -(petri (? c684 p684 (! c685 p685))) -(petri (? c685 p685 (! c686 p686))) -(petri (? c686 p686 (! c687 p687))) -(petri (? c687 p687 (! c688 p688))) -(petri (? c688 p688 (! c689 p689))) -(petri (? c689 p689 (! c690 p690))) -(petri (? c690 p690 (! c691 p691))) -(petri (? c691 p691 (! c692 p692))) -(petri (? c692 p692 (! c693 p693))) -(petri (? c693 p693 (! c694 p694))) -(petri (? c694 p694 (! c695 p695))) -(petri (? c695 p695 (! c696 p696))) -(petri (? c696 p696 (! c697 p697))) -(petri (? c697 p697 (! c698 p698))) -(petri (? c698 p698 (! c699 p699))) -(petri (? c699 p699 (! c700 p700))) -(petri (? c700 p700 (! c701 p701))) -(petri (? c701 p701 (! c702 p702))) -(petri (? c702 p702 (! c703 p703))) -(petri (? c703 p703 (! c704 p704))) -(petri (? c704 p704 (! c705 p705))) -(petri (? c705 p705 (! c706 p706))) -(petri (? c706 p706 (! c707 p707))) -(petri (? c707 p707 (! c708 p708))) -(petri (? c708 p708 (! c709 p709))) -(petri (? c709 p709 (! c710 p710))) -(petri (? c710 p710 (! c711 p711))) -(petri (? c711 p711 (! c712 p712))) -(petri (? c712 p712 (! c713 p713))) -(petri (? c713 p713 (! c714 p714))) -(petri (? c714 p714 (! c715 p715))) -(petri (? c715 p715 (! c716 p716))) -(petri (? c716 p716 (! c717 p717))) -(petri (? c717 p717 (! c718 p718))) -(petri (? c718 p718 (! c719 p719))) -(petri (? c719 p719 (! c720 p720))) -(petri (? c720 p720 (! c721 p721))) -(petri (? c721 p721 (! c722 p722))) -(petri (? c722 p722 (! c723 p723))) -(petri (? c723 p723 (! c724 p724))) -(petri (? c724 p724 (! c725 p725))) -(petri (? c725 p725 (! c726 p726))) -(petri (? c726 p726 (! c727 p727))) -(petri (? c727 p727 (! c728 p728))) -(petri (? c728 p728 (! c729 p729))) -(petri (? c729 p729 (! c730 p730))) -(petri (? c730 p730 (! c731 p731))) -(petri (? c731 p731 (! c732 p732))) -(petri (? c732 p732 (! c733 p733))) -(petri (? c733 p733 (! c734 p734))) -(petri (? c734 p734 (! c735 p735))) -(petri (? c735 p735 (! c736 p736))) -(petri (? c736 p736 (! c737 p737))) -(petri (? c737 p737 (! c738 p738))) -(petri (? c738 p738 (! c739 p739))) -(petri (? c739 p739 (! c740 p740))) -(petri (? c740 p740 (! c741 p741))) -(petri (? c741 p741 (! c742 p742))) -(petri (? c742 p742 (! c743 p743))) -(petri (? c743 p743 (! c744 p744))) -(petri (? c744 p744 (! c745 p745))) -(petri (? c745 p745 (! c746 p746))) -(petri (? c746 p746 (! c747 p747))) -(petri (? c747 p747 (! c748 p748))) -(petri (? c748 p748 (! c749 p749))) -(petri (? c749 p749 (! c750 p750))) -(petri (? c750 p750 (! c751 p751))) -(petri (? c751 p751 (! c752 p752))) -(petri (? c752 p752 (! c753 p753))) -(petri (? c753 p753 (! c754 p754))) -(petri (? c754 p754 (! c755 p755))) -(petri (? c755 p755 (! c756 p756))) -(petri (? c756 p756 (! c757 p757))) -(petri (? c757 p757 (! c758 p758))) -(petri (? c758 p758 (! c759 p759))) -(petri (? c759 p759 (! c760 p760))) -(petri (? c760 p760 (! c761 p761))) -(petri (? c761 p761 (! c762 p762))) -(petri (? c762 p762 (! c763 p763))) -(petri (? c763 p763 (! c764 p764))) -(petri (? c764 p764 (! c765 p765))) -(petri (? c765 p765 (! c766 p766))) -(petri (? c766 p766 (! c767 p767))) -(petri (? c767 p767 (! c768 p768))) -(petri (? c768 p768 (! c769 p769))) -(petri (? c769 p769 (! c770 p770))) -(petri (? c770 p770 (! c771 p771))) -(petri (? c771 p771 (! c772 p772))) -(petri (? c772 p772 (! c773 p773))) -(petri (? c773 p773 (! c774 p774))) -(petri (? c774 p774 (! c775 p775))) -(petri (? c775 p775 (! c776 p776))) -(petri (? c776 p776 (! c777 p777))) -(petri (? c777 p777 (! c778 p778))) -(petri (? c778 p778 (! c779 p779))) -(petri (? c779 p779 (! c780 p780))) -(petri (? c780 p780 (! c781 p781))) -(petri (? c781 p781 (! c782 p782))) -(petri (? c782 p782 (! c783 p783))) -(petri (? c783 p783 (! c784 p784))) -(petri (? c784 p784 (! c785 p785))) -(petri (? c785 p785 (! c786 p786))) -(petri (? c786 p786 (! c787 p787))) -(petri (? c787 p787 (! c788 p788))) -(petri (? c788 p788 (! c789 p789))) -(petri (? c789 p789 (! c790 p790))) -(petri (? c790 p790 (! c791 p791))) -(petri (? c791 p791 (! c792 p792))) -(petri (? c792 p792 (! c793 p793))) -(petri (? c793 p793 (! c794 p794))) -(petri (? c794 p794 (! c795 p795))) -(petri (? c795 p795 (! c796 p796))) -(petri (? c796 p796 (! c797 p797))) -(petri (? c797 p797 (! c798 p798))) -(petri (? c798 p798 (! c799 p799))) -(petri (? c799 p799 (! c800 p800))) -(petri (? c800 p800 (! c801 p801))) -(petri (? c801 p801 (! c802 p802))) -(petri (? c802 p802 (! c803 p803))) -(petri (? c803 p803 (! c804 p804))) -(petri (? c804 p804 (! c805 p805))) -(petri (? c805 p805 (! c806 p806))) -(petri (? c806 p806 (! c807 p807))) -(petri (? c807 p807 (! c808 p808))) -(petri (? c808 p808 (! c809 p809))) -(petri (? c809 p809 (! c810 p810))) -(petri (? c810 p810 (! c811 p811))) -(petri (? c811 p811 (! c812 p812))) -(petri (? c812 p812 (! c813 p813))) -(petri (? c813 p813 (! c814 p814))) -(petri (? c814 p814 (! c815 p815))) -(petri (? c815 p815 (! c816 p816))) -(petri (? c816 p816 (! c817 p817))) -(petri (? c817 p817 (! c818 p818))) -(petri (? c818 p818 (! c819 p819))) -(petri (? c819 p819 (! c820 p820))) -(petri (? c820 p820 (! c821 p821))) -(petri (? c821 p821 (! c822 p822))) -(petri (? c822 p822 (! c823 p823))) -(petri (? c823 p823 (! c824 p824))) -(petri (? c824 p824 (! c825 p825))) -(petri (? c825 p825 (! c826 p826))) -(petri (? c826 p826 (! c827 p827))) -(petri (? c827 p827 (! c828 p828))) -(petri (? c828 p828 (! c829 p829))) -(petri (? c829 p829 (! c830 p830))) -(petri (? c830 p830 (! c831 p831))) -(petri (? c831 p831 (! c832 p832))) -(petri (? c832 p832 (! c833 p833))) -(petri (? c833 p833 (! c834 p834))) -(petri (? c834 p834 (! c835 p835))) -(petri (? c835 p835 (! c836 p836))) -(petri (? c836 p836 (! c837 p837))) -(petri (? c837 p837 (! c838 p838))) -(petri (? c838 p838 (! c839 p839))) -(petri (? c839 p839 (! c840 p840))) -(petri (? c840 p840 (! c841 p841))) -(petri (? c841 p841 (! c842 p842))) -(petri (? c842 p842 (! c843 p843))) -(petri (? c843 p843 (! c844 p844))) -(petri (? c844 p844 (! c845 p845))) -(petri (? c845 p845 (! c846 p846))) -(petri (? c846 p846 (! c847 p847))) -(petri (? c847 p847 (! c848 p848))) -(petri (? c848 p848 (! c849 p849))) -(petri (? c849 p849 (! c850 p850))) -(petri (? c850 p850 (! c851 p851))) -(petri (? c851 p851 (! c852 p852))) -(petri (? c852 p852 (! c853 p853))) -(petri (? c853 p853 (! c854 p854))) -(petri (? c854 p854 (! c855 p855))) -(petri (? c855 p855 (! c856 p856))) -(petri (? c856 p856 (! c857 p857))) -(petri (? c857 p857 (! c858 p858))) -(petri (? c858 p858 (! c859 p859))) -(petri (? c859 p859 (! c860 p860))) -(petri (? c860 p860 (! c861 p861))) -(petri (? c861 p861 (! c862 p862))) -(petri (? c862 p862 (! c863 p863))) -(petri (? c863 p863 (! c864 p864))) -(petri (? c864 p864 (! c865 p865))) -(petri (? c865 p865 (! c866 p866))) -(petri (? c866 p866 (! c867 p867))) -(petri (? c867 p867 (! c868 p868))) -(petri (? c868 p868 (! c869 p869))) -(petri (? c869 p869 (! c870 p870))) -(petri (? c870 p870 (! c871 p871))) -(petri (? c871 p871 (! c872 p872))) -(petri (? c872 p872 (! c873 p873))) -(petri (? c873 p873 (! c874 p874))) -(petri (? c874 p874 (! c875 p875))) -(petri (? c875 p875 (! c876 p876))) -(petri (? c876 p876 (! c877 p877))) -(petri (? c877 p877 (! c878 p878))) -(petri (? c878 p878 (! c879 p879))) -(petri (? c879 p879 (! c880 p880))) -(petri (? c880 p880 (! c881 p881))) -(petri (? c881 p881 (! c882 p882))) -(petri (? c882 p882 (! c883 p883))) -(petri (? c883 p883 (! c884 p884))) -(petri (? c884 p884 (! c885 p885))) -(petri (? c885 p885 (! c886 p886))) -(petri (? c886 p886 (! c887 p887))) -(petri (? c887 p887 (! c888 p888))) -(petri (? c888 p888 (! c889 p889))) -(petri (? c889 p889 (! c890 p890))) -(petri (? c890 p890 (! c891 p891))) -(petri (? c891 p891 (! c892 p892))) -(petri (? c892 p892 (! c893 p893))) -(petri (? c893 p893 (! c894 p894))) -(petri (? c894 p894 (! c895 p895))) -(petri (? c895 p895 (! c896 p896))) -(petri (? c896 p896 (! c897 p897))) -(petri (? c897 p897 (! c898 p898))) -(petri (? c898 p898 (! c899 p899))) -(petri (? c899 p899 (! c900 p900))) -(petri (? c900 p900 (! c901 p901))) -(petri (? c901 p901 (! c902 p902))) -(petri (? c902 p902 (! c903 p903))) -(petri (? c903 p903 (! c904 p904))) -(petri (? c904 p904 (! c905 p905))) -(petri (? c905 p905 (! c906 p906))) -(petri (? c906 p906 (! c907 p907))) -(petri (? c907 p907 (! c908 p908))) -(petri (? c908 p908 (! c909 p909))) -(petri (? c909 p909 (! c910 p910))) -(petri (? c910 p910 (! c911 p911))) -(petri (? c911 p911 (! c912 p912))) -(petri (? c912 p912 (! c913 p913))) -(petri (? c913 p913 (! c914 p914))) -(petri (? c914 p914 (! c915 p915))) -(petri (? c915 p915 (! c916 p916))) -(petri (? c916 p916 (! c917 p917))) -(petri (? c917 p917 (! c918 p918))) -(petri (? c918 p918 (! c919 p919))) -(petri (? c919 p919 (! c920 p920))) -(petri (? c920 p920 (! c921 p921))) -(petri (? c921 p921 (! c922 p922))) -(petri (? c922 p922 (! c923 p923))) -(petri (? c923 p923 (! c924 p924))) -(petri (? c924 p924 (! c925 p925))) -(petri (? c925 p925 (! c926 p926))) -(petri (? c926 p926 (! c927 p927))) -(petri (? c927 p927 (! c928 p928))) -(petri (? c928 p928 (! c929 p929))) -(petri (? c929 p929 (! c930 p930))) -(petri (? c930 p930 (! c931 p931))) -(petri (? c931 p931 (! c932 p932))) -(petri (? c932 p932 (! c933 p933))) -(petri (? c933 p933 (! c934 p934))) -(petri (? c934 p934 (! c935 p935))) -(petri (? c935 p935 (! c936 p936))) -(petri (? c936 p936 (! c937 p937))) -(petri (? c937 p937 (! c938 p938))) -(petri (? c938 p938 (! c939 p939))) -(petri (? c939 p939 (! c940 p940))) -(petri (? c940 p940 (! c941 p941))) -(petri (? c941 p941 (! c942 p942))) -(petri (? c942 p942 (! c943 p943))) -(petri (? c943 p943 (! c944 p944))) -(petri (? c944 p944 (! c945 p945))) -(petri (? c945 p945 (! c946 p946))) -(petri (? c946 p946 (! c947 p947))) -(petri (? c947 p947 (! c948 p948))) -(petri (? c948 p948 (! c949 p949))) -(petri (? c949 p949 (! c950 p950))) -(petri (? c950 p950 (! c951 p951))) -(petri (? c951 p951 (! c952 p952))) -(petri (? c952 p952 (! c953 p953))) -(petri (? c953 p953 (! c954 p954))) -(petri (? c954 p954 (! c955 p955))) -(petri (? c955 p955 (! c956 p956))) -(petri (? c956 p956 (! c957 p957))) -(petri (? c957 p957 (! c958 p958))) -(petri (? c958 p958 (! c959 p959))) -(petri (? c959 p959 (! c960 p960))) -(petri (? c960 p960 (! c961 p961))) -(petri (? c961 p961 (! c962 p962))) -(petri (? c962 p962 (! c963 p963))) -(petri (? c963 p963 (! c964 p964))) -(petri (? c964 p964 (! c965 p965))) -(petri (? c965 p965 (! c966 p966))) -(petri (? c966 p966 (! c967 p967))) -(petri (? c967 p967 (! c968 p968))) -(petri (? c968 p968 (! c969 p969))) -(petri (? c969 p969 (! c970 p970))) -(petri (? c970 p970 (! c971 p971))) -(petri (? c971 p971 (! c972 p972))) -(petri (? c972 p972 (! c973 p973))) -(petri (? c973 p973 (! c974 p974))) -(petri (? c974 p974 (! c975 p975))) -(petri (? c975 p975 (! c976 p976))) -(petri (? c976 p976 (! c977 p977))) -(petri (? c977 p977 (! c978 p978))) -(petri (? c978 p978 (! c979 p979))) -(petri (? c979 p979 (! c980 p980))) -(petri (? c980 p980 (! c981 p981))) -(petri (? c981 p981 (! c982 p982))) -(petri (? c982 p982 (! c983 p983))) -(petri (? c983 p983 (! c984 p984))) -(petri (? c984 p984 (! c985 p985))) -(petri (? c985 p985 (! c986 p986))) -(petri (? c986 p986 (! c987 p987))) -(petri (? c987 p987 (! c988 p988))) -(petri (? c988 p988 (! c989 p989))) -(petri (? c989 p989 (! c990 p990))) -(petri (? c990 p990 (! c991 p991))) -(petri (? c991 p991 (! c992 p992))) -(petri (? c992 p992 (! c993 p993))) -(petri (? c993 p993 (! c994 p994))) -(petri (? c994 p994 (! c995 p995))) -(petri (? c995 p995 (! c996 p996))) -(petri (? c996 p996 (! c997 p997))) -(petri (? c997 p997 (! c998 p998))) -(petri (? c998 p998 (! c999 p999))) -(petri (? c999 p999 (! c1000 p1000))) -(petri (? c1000 p1000 (! c1001 p1001))) -(petri (? c1001 p1001 (! c1002 p1002))) -(petri (? c1002 p1002 (! c1003 p1003))) -(petri (? c1003 p1003 (! c1004 p1004))) -(petri (? c1004 p1004 (! c1005 p1005))) -(petri (? c1005 p1005 (! c1006 p1006))) -(petri (? c1006 p1006 (! c1007 p1007))) -(petri (? c1007 p1007 (! c1008 p1008))) -(petri (? c1008 p1008 (! c1009 p1009))) -(petri (? c1009 p1009 (! c1010 p1010))) -(petri (? c1010 p1010 (! c1011 p1011))) -(petri (? c1011 p1011 (! c1012 p1012))) -(petri (? c1012 p1012 (! c1013 p1013))) -(petri (? c1013 p1013 (! c1014 p1014))) -(petri (? c1014 p1014 (! c1015 p1015))) -(petri (? c1015 p1015 (! c1016 p1016))) -(petri (? c1016 p1016 (! c1017 p1017))) -(petri (? c1017 p1017 (! c1018 p1018))) -(petri (? c1018 p1018 (! c1019 p1019))) -(petri (? c1019 p1019 (! c1020 p1020))) -(petri (? c1020 p1020 (! c1021 p1021))) -(petri (? c1021 p1021 (! c1022 p1022))) -(petri (? c1022 p1022 (! c1023 p1023))) -(petri (? c1023 p1023 (! c1024 p1024))) -(petri (? c1024 p1024 (! c1025 p1025))) -(petri (? c1025 p1025 (! c1026 p1026))) -(petri (? c1026 p1026 (! c1027 p1027))) -(petri (? c1027 p1027 (! c1028 p1028))) -(petri (? c1028 p1028 (! c1029 p1029))) -(petri (? c1029 p1029 (! c1030 p1030))) -(petri (? c1030 p1030 (! c1031 p1031))) -(petri (? c1031 p1031 (! c1032 p1032))) -(petri (? c1032 p1032 (! c1033 p1033))) -(petri (? c1033 p1033 (! c1034 p1034))) -(petri (? c1034 p1034 (! c1035 p1035))) -(petri (? c1035 p1035 (! c1036 p1036))) -(petri (? c1036 p1036 (! c1037 p1037))) -(petri (? c1037 p1037 (! c1038 p1038))) -(petri (? c1038 p1038 (! c1039 p1039))) -(petri (? c1039 p1039 (! c1040 p1040))) -(petri (? c1040 p1040 (! c1041 p1041))) -(petri (? c1041 p1041 (! c1042 p1042))) -(petri (? c1042 p1042 (! c1043 p1043))) -(petri (? c1043 p1043 (! c1044 p1044))) -(petri (? c1044 p1044 (! c1045 p1045))) -(petri (? c1045 p1045 (! c1046 p1046))) -(petri (? c1046 p1046 (! c1047 p1047))) -(petri (? c1047 p1047 (! c1048 p1048))) -(petri (? c1048 p1048 (! c1049 p1049))) -(petri (? c1049 p1049 (! c1050 p1050))) -(petri (? c1050 p1050 (! c1051 p1051))) -(petri (? c1051 p1051 (! c1052 p1052))) -(petri (? c1052 p1052 (! c1053 p1053))) -(petri (? c1053 p1053 (! c1054 p1054))) -(petri (? c1054 p1054 (! c1055 p1055))) -(petri (? c1055 p1055 (! c1056 p1056))) -(petri (? c1056 p1056 (! c1057 p1057))) -(petri (? c1057 p1057 (! c1058 p1058))) -(petri (? c1058 p1058 (! c1059 p1059))) -(petri (? c1059 p1059 (! c1060 p1060))) -(petri (? c1060 p1060 (! c1061 p1061))) -(petri (? c1061 p1061 (! c1062 p1062))) -(petri (? c1062 p1062 (! c1063 p1063))) -(petri (? c1063 p1063 (! c1064 p1064))) -(petri (? c1064 p1064 (! c1065 p1065))) -(petri (? c1065 p1065 (! c1066 p1066))) -(petri (? c1066 p1066 (! c1067 p1067))) -(petri (? c1067 p1067 (! c1068 p1068))) -(petri (? c1068 p1068 (! c1069 p1069))) -(petri (? c1069 p1069 (! c1070 p1070))) -(petri (? c1070 p1070 (! c1071 p1071))) -(petri (? c1071 p1071 (! c1072 p1072))) -(petri (? c1072 p1072 (! c1073 p1073))) -(petri (? c1073 p1073 (! c1074 p1074))) -(petri (? c1074 p1074 (! c1075 p1075))) -(petri (? c1075 p1075 (! c1076 p1076))) -(petri (? c1076 p1076 (! c1077 p1077))) -(petri (? c1077 p1077 (! c1078 p1078))) -(petri (? c1078 p1078 (! c1079 p1079))) -(petri (? c1079 p1079 (! c1080 p1080))) -(petri (? c1080 p1080 (! c1081 p1081))) -(petri (? c1081 p1081 (! c1082 p1082))) -(petri (? c1082 p1082 (! c1083 p1083))) -(petri (? c1083 p1083 (! c1084 p1084))) -(petri (? c1084 p1084 (! c1085 p1085))) -(petri (? c1085 p1085 (! c1086 p1086))) -(petri (? c1086 p1086 (! c1087 p1087))) -(petri (? c1087 p1087 (! c1088 p1088))) -(petri (? c1088 p1088 (! c1089 p1089))) -(petri (? c1089 p1089 (! c1090 p1090))) -(petri (? c1090 p1090 (! c1091 p1091))) -(petri (? c1091 p1091 (! c1092 p1092))) -(petri (? c1092 p1092 (! c1093 p1093))) -(petri (? c1093 p1093 (! c1094 p1094))) -(petri (? c1094 p1094 (! c1095 p1095))) -(petri (? c1095 p1095 (! c1096 p1096))) -(petri (? c1096 p1096 (! c1097 p1097))) -(petri (? c1097 p1097 (! c1098 p1098))) -(petri (? c1098 p1098 (! c1099 p1099))) -(petri (? c1099 p1099 (! c1100 p1100))) -(petri (? c1100 p1100 (! c1101 p1101))) -(petri (? c1101 p1101 (! c1102 p1102))) -(petri (? c1102 p1102 (! c1103 p1103))) -(petri (? c1103 p1103 (! c1104 p1104))) -(petri (? c1104 p1104 (! c1105 p1105))) -(petri (? c1105 p1105 (! c1106 p1106))) -(petri (? c1106 p1106 (! c1107 p1107))) -(petri (? c1107 p1107 (! c1108 p1108))) -(petri (? c1108 p1108 (! c1109 p1109))) -(petri (? c1109 p1109 (! c1110 p1110))) -(petri (? c1110 p1110 (! c1111 p1111))) -(petri (? c1111 p1111 (! c1112 p1112))) -(petri (? c1112 p1112 (! c1113 p1113))) -(petri (? c1113 p1113 (! c1114 p1114))) -(petri (? c1114 p1114 (! c1115 p1115))) -(petri (? c1115 p1115 (! c1116 p1116))) -(petri (? c1116 p1116 (! c1117 p1117))) -(petri (? c1117 p1117 (! c1118 p1118))) -(petri (? c1118 p1118 (! c1119 p1119))) -(petri (? c1119 p1119 (! c1120 p1120))) -(petri (? c1120 p1120 (! c1121 p1121))) -(petri (? c1121 p1121 (! c1122 p1122))) -(petri (? c1122 p1122 (! c1123 p1123))) -(petri (? c1123 p1123 (! c1124 p1124))) -(petri (? c1124 p1124 (! c1125 p1125))) -(petri (? c1125 p1125 (! c1126 p1126))) -(petri (? c1126 p1126 (! c1127 p1127))) -(petri (? c1127 p1127 (! c1128 p1128))) -(petri (? c1128 p1128 (! c1129 p1129))) -(petri (? c1129 p1129 (! c1130 p1130))) -(petri (? c1130 p1130 (! c1131 p1131))) -(petri (? c1131 p1131 (! c1132 p1132))) -(petri (? c1132 p1132 (! c1133 p1133))) -(petri (? c1133 p1133 (! c1134 p1134))) -(petri (? c1134 p1134 (! c1135 p1135))) -(petri (? c1135 p1135 (! c1136 p1136))) -(petri (? c1136 p1136 (! c1137 p1137))) -(petri (? c1137 p1137 (! c1138 p1138))) -(petri (? c1138 p1138 (! c1139 p1139))) -(petri (? c1139 p1139 (! c1140 p1140))) -(petri (? c1140 p1140 (! c1141 p1141))) -(petri (? c1141 p1141 (! c1142 p1142))) -(petri (? c1142 p1142 (! c1143 p1143))) -(petri (? c1143 p1143 (! c1144 p1144))) -(petri (? c1144 p1144 (! c1145 p1145))) -(petri (? c1145 p1145 (! c1146 p1146))) -(petri (? c1146 p1146 (! c1147 p1147))) -(petri (? c1147 p1147 (! c1148 p1148))) -(petri (? c1148 p1148 (! c1149 p1149))) -(petri (? c1149 p1149 (! c1150 p1150))) -(petri (? c1150 p1150 (! c1151 p1151))) -(petri (? c1151 p1151 (! c1152 p1152))) -(petri (? c1152 p1152 (! c1153 p1153))) -(petri (? c1153 p1153 (! c1154 p1154))) -(petri (? c1154 p1154 (! c1155 p1155))) -(petri (? c1155 p1155 (! c1156 p1156))) -(petri (? c1156 p1156 (! c1157 p1157))) -(petri (? c1157 p1157 (! c1158 p1158))) -(petri (? c1158 p1158 (! c1159 p1159))) -(petri (? c1159 p1159 (! c1160 p1160))) -(petri (? c1160 p1160 (! c1161 p1161))) -(petri (? c1161 p1161 (! c1162 p1162))) -(petri (? c1162 p1162 (! c1163 p1163))) -(petri (? c1163 p1163 (! c1164 p1164))) -(petri (? c1164 p1164 (! c1165 p1165))) -(petri (? c1165 p1165 (! c1166 p1166))) -(petri (? c1166 p1166 (! c1167 p1167))) -(petri (? c1167 p1167 (! c1168 p1168))) -(petri (? c1168 p1168 (! c1169 p1169))) -(petri (? c1169 p1169 (! c1170 p1170))) -(petri (? c1170 p1170 (! c1171 p1171))) -(petri (? c1171 p1171 (! c1172 p1172))) -(petri (? c1172 p1172 (! c1173 p1173))) -(petri (? c1173 p1173 (! c1174 p1174))) -(petri (? c1174 p1174 (! c1175 p1175))) -(petri (? c1175 p1175 (! c1176 p1176))) -(petri (? c1176 p1176 (! c1177 p1177))) -(petri (? c1177 p1177 (! c1178 p1178))) -(petri (? c1178 p1178 (! c1179 p1179))) -(petri (? c1179 p1179 (! c1180 p1180))) -(petri (? c1180 p1180 (! c1181 p1181))) -(petri (? c1181 p1181 (! c1182 p1182))) -(petri (? c1182 p1182 (! c1183 p1183))) -(petri (? c1183 p1183 (! c1184 p1184))) -(petri (? c1184 p1184 (! c1185 p1185))) -(petri (? c1185 p1185 (! c1186 p1186))) -(petri (? c1186 p1186 (! c1187 p1187))) -(petri (? c1187 p1187 (! c1188 p1188))) -(petri (? c1188 p1188 (! c1189 p1189))) -(petri (? c1189 p1189 (! c1190 p1190))) -(petri (? c1190 p1190 (! c1191 p1191))) -(petri (? c1191 p1191 (! c1192 p1192))) -(petri (? c1192 p1192 (! c1193 p1193))) -(petri (? c1193 p1193 (! c1194 p1194))) -(petri (? c1194 p1194 (! c1195 p1195))) -(petri (? c1195 p1195 (! c1196 p1196))) -(petri (? c1196 p1196 (! c1197 p1197))) -(petri (? c1197 p1197 (! c1198 p1198))) -(petri (? c1198 p1198 (! c1199 p1199))) -(petri (? c1199 p1199 (! c1200 p1200))) -(petri (? c1200 p1200 (! c1201 p1201))) -(petri (? c1201 p1201 (! c1202 p1202))) -(petri (? c1202 p1202 (! c1203 p1203))) -(petri (? c1203 p1203 (! c1204 p1204))) -(petri (? c1204 p1204 (! c1205 p1205))) -(petri (? c1205 p1205 (! c1206 p1206))) -(petri (? c1206 p1206 (! c1207 p1207))) -(petri (? c1207 p1207 (! c1208 p1208))) -(petri (? c1208 p1208 (! c1209 p1209))) -(petri (? c1209 p1209 (! c1210 p1210))) -(petri (? c1210 p1210 (! c1211 p1211))) -(petri (? c1211 p1211 (! c1212 p1212))) -(petri (? c1212 p1212 (! c1213 p1213))) -(petri (? c1213 p1213 (! c1214 p1214))) -(petri (? c1214 p1214 (! c1215 p1215))) -(petri (? c1215 p1215 (! c1216 p1216))) -(petri (? c1216 p1216 (! c1217 p1217))) -(petri (? c1217 p1217 (! c1218 p1218))) -(petri (? c1218 p1218 (! c1219 p1219))) -(petri (? c1219 p1219 (! c1220 p1220))) -(petri (? c1220 p1220 (! c1221 p1221))) -(petri (? c1221 p1221 (! c1222 p1222))) -(petri (? c1222 p1222 (! c1223 p1223))) -(petri (? c1223 p1223 (! c1224 p1224))) -(petri (? c1224 p1224 (! c1225 p1225))) -(petri (? c1225 p1225 (! c1226 p1226))) -(petri (? c1226 p1226 (! c1227 p1227))) -(petri (? c1227 p1227 (! c1228 p1228))) -(petri (? c1228 p1228 (! c1229 p1229))) -(petri (? c1229 p1229 (! c1230 p1230))) -(petri (? c1230 p1230 (! c1231 p1231))) -(petri (? c1231 p1231 (! c1232 p1232))) -(petri (? c1232 p1232 (! c1233 p1233))) -(petri (? c1233 p1233 (! c1234 p1234))) -(petri (? c1234 p1234 (! c1235 p1235))) -(petri (? c1235 p1235 (! c1236 p1236))) -(petri (? c1236 p1236 (! c1237 p1237))) -(petri (? c1237 p1237 (! c1238 p1238))) -(petri (? c1238 p1238 (! c1239 p1239))) -(petri (? c1239 p1239 (! c1240 p1240))) -(petri (? c1240 p1240 (! c1241 p1241))) -(petri (? c1241 p1241 (! c1242 p1242))) -(petri (? c1242 p1242 (! c1243 p1243))) -(petri (? c1243 p1243 (! c1244 p1244))) -(petri (? c1244 p1244 (! c1245 p1245))) -(petri (? c1245 p1245 (! c1246 p1246))) -(petri (? c1246 p1246 (! c1247 p1247))) -(petri (? c1247 p1247 (! c1248 p1248))) -(petri (? c1248 p1248 (! c1249 p1249))) -(petri (? c1249 p1249 (! c1250 p1250))) -(petri (? c1250 p1250 (! c1251 p1251))) -(petri (? c1251 p1251 (! c1252 p1252))) -(petri (? c1252 p1252 (! c1253 p1253))) -(petri (? c1253 p1253 (! c1254 p1254))) -(petri (? c1254 p1254 (! c1255 p1255))) -(petri (? c1255 p1255 (! c1256 p1256))) -(petri (? c1256 p1256 (! c1257 p1257))) -(petri (? c1257 p1257 (! c1258 p1258))) -(petri (? c1258 p1258 (! c1259 p1259))) -(petri (? c1259 p1259 (! c1260 p1260))) -(petri (? c1260 p1260 (! c1261 p1261))) -(petri (? c1261 p1261 (! c1262 p1262))) -(petri (? c1262 p1262 (! c1263 p1263))) -(petri (? c1263 p1263 (! c1264 p1264))) -(petri (? c1264 p1264 (! c1265 p1265))) -(petri (? c1265 p1265 (! c1266 p1266))) -(petri (? c1266 p1266 (! c1267 p1267))) -(petri (? c1267 p1267 (! c1268 p1268))) -(petri (? c1268 p1268 (! c1269 p1269))) -(petri (? c1269 p1269 (! c1270 p1270))) -(petri (? c1270 p1270 (! c1271 p1271))) -(petri (? c1271 p1271 (! c1272 p1272))) -(petri (? c1272 p1272 (! c1273 p1273))) -(petri (? c1273 p1273 (! c1274 p1274))) -(petri (? c1274 p1274 (! c1275 p1275))) -(petri (? c1275 p1275 (! c1276 p1276))) -(petri (? c1276 p1276 (! c1277 p1277))) -(petri (? c1277 p1277 (! c1278 p1278))) -(petri (? c1278 p1278 (! c1279 p1279))) -(petri (? c1279 p1279 (! c1280 p1280))) -(petri (? c1280 p1280 (! c1281 p1281))) -(petri (? c1281 p1281 (! c1282 p1282))) -(petri (? c1282 p1282 (! c1283 p1283))) -(petri (? c1283 p1283 (! c1284 p1284))) -(petri (? c1284 p1284 (! c1285 p1285))) -(petri (? c1285 p1285 (! c1286 p1286))) -(petri (? c1286 p1286 (! c1287 p1287))) -(petri (? c1287 p1287 (! c1288 p1288))) -(petri (? c1288 p1288 (! c1289 p1289))) -(petri (? c1289 p1289 (! c1290 p1290))) -(petri (? c1290 p1290 (! c1291 p1291))) -(petri (? c1291 p1291 (! c1292 p1292))) -(petri (? c1292 p1292 (! c1293 p1293))) -(petri (? c1293 p1293 (! c1294 p1294))) -(petri (? c1294 p1294 (! c1295 p1295))) -(petri (? c1295 p1295 (! c1296 p1296))) -(petri (? c1296 p1296 (! c1297 p1297))) -(petri (? c1297 p1297 (! c1298 p1298))) -(petri (? c1298 p1298 (! c1299 p1299))) -(petri (? c1299 p1299 (! c1300 p1300))) -(petri (? c1300 p1300 (! c1301 p1301))) -(petri (? c1301 p1301 (! c1302 p1302))) -(petri (? c1302 p1302 (! c1303 p1303))) -(petri (? c1303 p1303 (! c1304 p1304))) -(petri (? c1304 p1304 (! c1305 p1305))) -(petri (? c1305 p1305 (! c1306 p1306))) -(petri (? c1306 p1306 (! c1307 p1307))) -(petri (? c1307 p1307 (! c1308 p1308))) -(petri (? c1308 p1308 (! c1309 p1309))) -(petri (? c1309 p1309 (! c1310 p1310))) -(petri (? c1310 p1310 (! c1311 p1311))) -(petri (? c1311 p1311 (! c1312 p1312))) -(petri (? c1312 p1312 (! c1313 p1313))) -(petri (? c1313 p1313 (! c1314 p1314))) -(petri (? c1314 p1314 (! c1315 p1315))) -(petri (? c1315 p1315 (! c1316 p1316))) -(petri (? c1316 p1316 (! c1317 p1317))) -(petri (? c1317 p1317 (! c1318 p1318))) -(petri (? c1318 p1318 (! c1319 p1319))) -(petri (? c1319 p1319 (! c1320 p1320))) -(petri (? c1320 p1320 (! c1321 p1321))) -(petri (? c1321 p1321 (! c1322 p1322))) -(petri (? c1322 p1322 (! c1323 p1323))) -(petri (? c1323 p1323 (! c1324 p1324))) -(petri (? c1324 p1324 (! c1325 p1325))) -(petri (? c1325 p1325 (! c1326 p1326))) -(petri (? c1326 p1326 (! c1327 p1327))) -(petri (? c1327 p1327 (! c1328 p1328))) -(petri (? c1328 p1328 (! c1329 p1329))) -(petri (? c1329 p1329 (! c1330 p1330))) -(petri (? c1330 p1330 (! c1331 p1331))) -(petri (? c1331 p1331 (! c1332 p1332))) -(petri (? c1332 p1332 (! c1333 p1333))) -(petri (? c1333 p1333 (! c1334 p1334))) -(petri (? c1334 p1334 (! c1335 p1335))) -(petri (? c1335 p1335 (! c1336 p1336))) -(petri (? c1336 p1336 (! c1337 p1337))) -(petri (? c1337 p1337 (! c1338 p1338))) -(petri (? c1338 p1338 (! c1339 p1339))) -(petri (? c1339 p1339 (! c1340 p1340))) -(petri (? c1340 p1340 (! c1341 p1341))) -(petri (? c1341 p1341 (! c1342 p1342))) -(petri (? c1342 p1342 (! c1343 p1343))) -(petri (? c1343 p1343 (! c1344 p1344))) -(petri (? c1344 p1344 (! c1345 p1345))) -(petri (? c1345 p1345 (! c1346 p1346))) -(petri (? c1346 p1346 (! c1347 p1347))) -(petri (? c1347 p1347 (! c1348 p1348))) -(petri (? c1348 p1348 (! c1349 p1349))) -(petri (? c1349 p1349 (! c1350 p1350))) -(petri (? c1350 p1350 (! c1351 p1351))) -(petri (? c1351 p1351 (! c1352 p1352))) -(petri (? c1352 p1352 (! c1353 p1353))) -(petri (? c1353 p1353 (! c1354 p1354))) -(petri (? c1354 p1354 (! c1355 p1355))) -(petri (? c1355 p1355 (! c1356 p1356))) -(petri (? c1356 p1356 (! c1357 p1357))) -(petri (? c1357 p1357 (! c1358 p1358))) -(petri (? c1358 p1358 (! c1359 p1359))) -(petri (? c1359 p1359 (! c1360 p1360))) -(petri (? c1360 p1360 (! c1361 p1361))) -(petri (? c1361 p1361 (! c1362 p1362))) -(petri (? c1362 p1362 (! c1363 p1363))) -(petri (? c1363 p1363 (! c1364 p1364))) -(petri (? c1364 p1364 (! c1365 p1365))) -(petri (? c1365 p1365 (! c1366 p1366))) -(petri (? c1366 p1366 (! c1367 p1367))) -(petri (? c1367 p1367 (! c1368 p1368))) -(petri (? c1368 p1368 (! c1369 p1369))) -(petri (? c1369 p1369 (! c1370 p1370))) -(petri (? c1370 p1370 (! c1371 p1371))) -(petri (? c1371 p1371 (! c1372 p1372))) -(petri (? c1372 p1372 (! c1373 p1373))) -(petri (? c1373 p1373 (! c1374 p1374))) -(petri (? c1374 p1374 (! c1375 p1375))) -(petri (? c1375 p1375 (! c1376 p1376))) -(petri (? c1376 p1376 (! c1377 p1377))) -(petri (? c1377 p1377 (! c1378 p1378))) -(petri (? c1378 p1378 (! c1379 p1379))) -(petri (? c1379 p1379 (! c1380 p1380))) -(petri (? c1380 p1380 (! c1381 p1381))) -(petri (? c1381 p1381 (! c1382 p1382))) -(petri (? c1382 p1382 (! c1383 p1383))) -(petri (? c1383 p1383 (! c1384 p1384))) -(petri (? c1384 p1384 (! c1385 p1385))) -(petri (? c1385 p1385 (! c1386 p1386))) -(petri (? c1386 p1386 (! c1387 p1387))) -(petri (? c1387 p1387 (! c1388 p1388))) -(petri (? c1388 p1388 (! c1389 p1389))) -(petri (? c1389 p1389 (! c1390 p1390))) -(petri (? c1390 p1390 (! c1391 p1391))) -(petri (? c1391 p1391 (! c1392 p1392))) -(petri (? c1392 p1392 (! c1393 p1393))) -(petri (? c1393 p1393 (! c1394 p1394))) -(petri (? c1394 p1394 (! c1395 p1395))) -(petri (? c1395 p1395 (! c1396 p1396))) -(petri (? c1396 p1396 (! c1397 p1397))) -(petri (? c1397 p1397 (! c1398 p1398))) -(petri (? c1398 p1398 (! c1399 p1399))) -(petri (? c1399 p1399 (! c1400 p1400))) -(petri (? c1400 p1400 (! c1401 p1401))) -(petri (? c1401 p1401 (! c1402 p1402))) -(petri (? c1402 p1402 (! c1403 p1403))) -(petri (? c1403 p1403 (! c1404 p1404))) -(petri (? c1404 p1404 (! c1405 p1405))) -(petri (? c1405 p1405 (! c1406 p1406))) -(petri (? c1406 p1406 (! c1407 p1407))) -(petri (? c1407 p1407 (! c1408 p1408))) -(petri (? c1408 p1408 (! c1409 p1409))) -(petri (? c1409 p1409 (! c1410 p1410))) -(petri (? c1410 p1410 (! c1411 p1411))) -(petri (? c1411 p1411 (! c1412 p1412))) -(petri (? c1412 p1412 (! c1413 p1413))) -(petri (? c1413 p1413 (! c1414 p1414))) -(petri (? c1414 p1414 (! c1415 p1415))) -(petri (? c1415 p1415 (! c1416 p1416))) -(petri (? c1416 p1416 (! c1417 p1417))) -(petri (? c1417 p1417 (! c1418 p1418))) -(petri (? c1418 p1418 (! c1419 p1419))) -(petri (? c1419 p1419 (! c1420 p1420))) -(petri (? c1420 p1420 (! c1421 p1421))) -(petri (? c1421 p1421 (! c1422 p1422))) -(petri (? c1422 p1422 (! c1423 p1423))) -(petri (? c1423 p1423 (! c1424 p1424))) -(petri (? c1424 p1424 (! c1425 p1425))) -(petri (? c1425 p1425 (! c1426 p1426))) -(petri (? c1426 p1426 (! c1427 p1427))) -(petri (? c1427 p1427 (! c1428 p1428))) -(petri (? c1428 p1428 (! c1429 p1429))) -(petri (? c1429 p1429 (! c1430 p1430))) -(petri (? c1430 p1430 (! c1431 p1431))) -(petri (? c1431 p1431 (! c1432 p1432))) -(petri (? c1432 p1432 (! c1433 p1433))) -(petri (? c1433 p1433 (! c1434 p1434))) -(petri (? c1434 p1434 (! c1435 p1435))) -(petri (? c1435 p1435 (! c1436 p1436))) -(petri (? c1436 p1436 (! c1437 p1437))) -(petri (? c1437 p1437 (! c1438 p1438))) -(petri (? c1438 p1438 (! c1439 p1439))) -(petri (? c1439 p1439 (! c1440 p1440))) -(petri (? c1440 p1440 (! c1441 p1441))) -(petri (? c1441 p1441 (! c1442 p1442))) -(petri (? c1442 p1442 (! c1443 p1443))) -(petri (? c1443 p1443 (! c1444 p1444))) -(petri (? c1444 p1444 (! c1445 p1445))) -(petri (? c1445 p1445 (! c1446 p1446))) -(petri (? c1446 p1446 (! c1447 p1447))) -(petri (? c1447 p1447 (! c1448 p1448))) -(petri (? c1448 p1448 (! c1449 p1449))) -(petri (? c1449 p1449 (! c1450 p1450))) -(petri (? c1450 p1450 (! c1451 p1451))) -(petri (? c1451 p1451 (! c1452 p1452))) -(petri (? c1452 p1452 (! c1453 p1453))) -(petri (? c1453 p1453 (! c1454 p1454))) -(petri (? c1454 p1454 (! c1455 p1455))) -(petri (? c1455 p1455 (! c1456 p1456))) -(petri (? c1456 p1456 (! c1457 p1457))) -(petri (? c1457 p1457 (! c1458 p1458))) -(petri (? c1458 p1458 (! c1459 p1459))) -(petri (? c1459 p1459 (! c1460 p1460))) -(petri (? c1460 p1460 (! c1461 p1461))) -(petri (? c1461 p1461 (! c1462 p1462))) -(petri (? c1462 p1462 (! c1463 p1463))) -(petri (? c1463 p1463 (! c1464 p1464))) -(petri (? c1464 p1464 (! c1465 p1465))) -(petri (? c1465 p1465 (! c1466 p1466))) -(petri (? c1466 p1466 (! c1467 p1467))) -(petri (? c1467 p1467 (! c1468 p1468))) -(petri (? c1468 p1468 (! c1469 p1469))) -(petri (? c1469 p1469 (! c1470 p1470))) -(petri (? c1470 p1470 (! c1471 p1471))) -(petri (? c1471 p1471 (! c1472 p1472))) -(petri (? c1472 p1472 (! c1473 p1473))) -(petri (? c1473 p1473 (! c1474 p1474))) -(petri (? c1474 p1474 (! c1475 p1475))) -(petri (? c1475 p1475 (! c1476 p1476))) -(petri (? c1476 p1476 (! c1477 p1477))) -(petri (? c1477 p1477 (! c1478 p1478))) -(petri (? c1478 p1478 (! c1479 p1479))) -(petri (? c1479 p1479 (! c1480 p1480))) -(petri (? c1480 p1480 (! c1481 p1481))) -(petri (? c1481 p1481 (! c1482 p1482))) -(petri (? c1482 p1482 (! c1483 p1483))) -(petri (? c1483 p1483 (! c1484 p1484))) -(petri (? c1484 p1484 (! c1485 p1485))) -(petri (? c1485 p1485 (! c1486 p1486))) -(petri (? c1486 p1486 (! c1487 p1487))) -(petri (? c1487 p1487 (! c1488 p1488))) -(petri (? c1488 p1488 (! c1489 p1489))) -(petri (? c1489 p1489 (! c1490 p1490))) -(petri (? c1490 p1490 (! c1491 p1491))) -(petri (? c1491 p1491 (! c1492 p1492))) -(petri (? c1492 p1492 (! c1493 p1493))) -(petri (? c1493 p1493 (! c1494 p1494))) -(petri (? c1494 p1494 (! c1495 p1495))) -(petri (? c1495 p1495 (! c1496 p1496))) -(petri (? c1496 p1496 (! c1497 p1497))) -(petri (? c1497 p1497 (! c1498 p1498))) -(petri (? c1498 p1498 (! c1499 p1499))) -(petri (? c1499 p1499 (! c1500 p1500))) -(petri (? c1500 p1500 (! c1501 p1501))) -(petri (? c1501 p1501 (! c1502 p1502))) -(petri (? c1502 p1502 (! c1503 p1503))) -(petri (? c1503 p1503 (! c1504 p1504))) -(petri (? c1504 p1504 (! c1505 p1505))) -(petri (? c1505 p1505 (! c1506 p1506))) -(petri (? c1506 p1506 (! c1507 p1507))) -(petri (? c1507 p1507 (! c1508 p1508))) -(petri (? c1508 p1508 (! c1509 p1509))) -(petri (? c1509 p1509 (! c1510 p1510))) -(petri (? c1510 p1510 (! c1511 p1511))) -(petri (? c1511 p1511 (! c1512 p1512))) -(petri (? c1512 p1512 (! c1513 p1513))) -(petri (? c1513 p1513 (! c1514 p1514))) -(petri (? c1514 p1514 (! c1515 p1515))) -(petri (? c1515 p1515 (! c1516 p1516))) -(petri (? c1516 p1516 (! c1517 p1517))) -(petri (? c1517 p1517 (! c1518 p1518))) -(petri (? c1518 p1518 (! c1519 p1519))) -(petri (? c1519 p1519 (! c1520 p1520))) -(petri (? c1520 p1520 (! c1521 p1521))) -(petri (? c1521 p1521 (! c1522 p1522))) -(petri (? c1522 p1522 (! c1523 p1523))) -(petri (? c1523 p1523 (! c1524 p1524))) -(petri (? c1524 p1524 (! c1525 p1525))) -(petri (? c1525 p1525 (! c1526 p1526))) -(petri (? c1526 p1526 (! c1527 p1527))) -(petri (? c1527 p1527 (! c1528 p1528))) -(petri (? c1528 p1528 (! c1529 p1529))) -(petri (? c1529 p1529 (! c1530 p1530))) -(petri (? c1530 p1530 (! c1531 p1531))) -(petri (? c1531 p1531 (! c1532 p1532))) -(petri (? c1532 p1532 (! c1533 p1533))) -(petri (? c1533 p1533 (! c1534 p1534))) -(petri (? c1534 p1534 (! c1535 p1535))) -(petri (? c1535 p1535 (! c1536 p1536))) -(petri (? c1536 p1536 (! c1537 p1537))) -(petri (? c1537 p1537 (! c1538 p1538))) -(petri (? c1538 p1538 (! c1539 p1539))) -(petri (? c1539 p1539 (! c1540 p1540))) -(petri (? c1540 p1540 (! c1541 p1541))) -(petri (? c1541 p1541 (! c1542 p1542))) -(petri (? c1542 p1542 (! c1543 p1543))) -(petri (? c1543 p1543 (! c1544 p1544))) -(petri (? c1544 p1544 (! c1545 p1545))) -(petri (? c1545 p1545 (! c1546 p1546))) -(petri (? c1546 p1546 (! c1547 p1547))) -(petri (? c1547 p1547 (! c1548 p1548))) -(petri (? c1548 p1548 (! c1549 p1549))) -(petri (? c1549 p1549 (! c1550 p1550))) -(petri (? c1550 p1550 (! c1551 p1551))) -(petri (? c1551 p1551 (! c1552 p1552))) -(petri (? c1552 p1552 (! c1553 p1553))) -(petri (? c1553 p1553 (! c1554 p1554))) -(petri (? c1554 p1554 (! c1555 p1555))) -(petri (? c1555 p1555 (! c1556 p1556))) -(petri (? c1556 p1556 (! c1557 p1557))) -(petri (? c1557 p1557 (! c1558 p1558))) -(petri (? c1558 p1558 (! c1559 p1559))) -(petri (? c1559 p1559 (! c1560 p1560))) -(petri (? c1560 p1560 (! c1561 p1561))) -(petri (? c1561 p1561 (! c1562 p1562))) -(petri (? c1562 p1562 (! c1563 p1563))) -(petri (? c1563 p1563 (! c1564 p1564))) -(petri (? c1564 p1564 (! c1565 p1565))) -(petri (? c1565 p1565 (! c1566 p1566))) -(petri (? c1566 p1566 (! c1567 p1567))) -(petri (? c1567 p1567 (! c1568 p1568))) -(petri (? c1568 p1568 (! c1569 p1569))) -(petri (? c1569 p1569 (! c1570 p1570))) -(petri (? c1570 p1570 (! c1571 p1571))) -(petri (? c1571 p1571 (! c1572 p1572))) -(petri (? c1572 p1572 (! c1573 p1573))) -(petri (? c1573 p1573 (! c1574 p1574))) -(petri (? c1574 p1574 (! c1575 p1575))) -(petri (? c1575 p1575 (! c1576 p1576))) -(petri (? c1576 p1576 (! c1577 p1577))) -(petri (? c1577 p1577 (! c1578 p1578))) -(petri (? c1578 p1578 (! c1579 p1579))) -(petri (? c1579 p1579 (! c1580 p1580))) -(petri (? c1580 p1580 (! c1581 p1581))) -(petri (? c1581 p1581 (! c1582 p1582))) -(petri (? c1582 p1582 (! c1583 p1583))) -(petri (? c1583 p1583 (! c1584 p1584))) -(petri (? c1584 p1584 (! c1585 p1585))) -(petri (? c1585 p1585 (! c1586 p1586))) -(petri (? c1586 p1586 (! c1587 p1587))) -(petri (? c1587 p1587 (! c1588 p1588))) -(petri (? c1588 p1588 (! c1589 p1589))) -(petri (? c1589 p1589 (! c1590 p1590))) -(petri (? c1590 p1590 (! c1591 p1591))) -(petri (? c1591 p1591 (! c1592 p1592))) -(petri (? c1592 p1592 (! c1593 p1593))) -(petri (? c1593 p1593 (! c1594 p1594))) -(petri (? c1594 p1594 (! c1595 p1595))) -(petri (? c1595 p1595 (! c1596 p1596))) -(petri (? c1596 p1596 (! c1597 p1597))) -(petri (? c1597 p1597 (! c1598 p1598))) -(petri (? c1598 p1598 (! c1599 p1599))) -(petri (? c1599 p1599 (! c1600 p1600))) -(petri (? c1600 p1600 (! c1601 p1601))) -(petri (? c1601 p1601 (! c1602 p1602))) -(petri (? c1602 p1602 (! c1603 p1603))) -(petri (? c1603 p1603 (! c1604 p1604))) -(petri (? c1604 p1604 (! c1605 p1605))) -(petri (? c1605 p1605 (! c1606 p1606))) -(petri (? c1606 p1606 (! c1607 p1607))) -(petri (? c1607 p1607 (! c1608 p1608))) -(petri (? c1608 p1608 (! c1609 p1609))) -(petri (? c1609 p1609 (! c1610 p1610))) -(petri (? c1610 p1610 (! c1611 p1611))) -(petri (? c1611 p1611 (! c1612 p1612))) -(petri (? c1612 p1612 (! c1613 p1613))) -(petri (? c1613 p1613 (! c1614 p1614))) -(petri (? c1614 p1614 (! c1615 p1615))) -(petri (? c1615 p1615 (! c1616 p1616))) -(petri (? c1616 p1616 (! c1617 p1617))) -(petri (? c1617 p1617 (! c1618 p1618))) -(petri (? c1618 p1618 (! c1619 p1619))) -(petri (? c1619 p1619 (! c1620 p1620))) -(petri (? c1620 p1620 (! c1621 p1621))) -(petri (? c1621 p1621 (! c1622 p1622))) -(petri (? c1622 p1622 (! c1623 p1623))) -(petri (? c1623 p1623 (! c1624 p1624))) -(petri (? c1624 p1624 (! c1625 p1625))) -(petri (? c1625 p1625 (! c1626 p1626))) -(petri (? c1626 p1626 (! c1627 p1627))) -(petri (? c1627 p1627 (! c1628 p1628))) -(petri (? c1628 p1628 (! c1629 p1629))) -(petri (? c1629 p1629 (! c1630 p1630))) -(petri (? c1630 p1630 (! c1631 p1631))) -(petri (? c1631 p1631 (! c1632 p1632))) -(petri (? c1632 p1632 (! c1633 p1633))) -(petri (? c1633 p1633 (! c1634 p1634))) -(petri (? c1634 p1634 (! c1635 p1635))) -(petri (? c1635 p1635 (! c1636 p1636))) -(petri (? c1636 p1636 (! c1637 p1637))) -(petri (? c1637 p1637 (! c1638 p1638))) -(petri (? c1638 p1638 (! c1639 p1639))) -(petri (? c1639 p1639 (! c1640 p1640))) -(petri (? c1640 p1640 (! c1641 p1641))) -(petri (? c1641 p1641 (! c1642 p1642))) -(petri (? c1642 p1642 (! c1643 p1643))) -(petri (? c1643 p1643 (! c1644 p1644))) -(petri (? c1644 p1644 (! c1645 p1645))) -(petri (? c1645 p1645 (! c1646 p1646))) -(petri (? c1646 p1646 (! c1647 p1647))) -(petri (? c1647 p1647 (! c1648 p1648))) -(petri (? c1648 p1648 (! c1649 p1649))) -(petri (? c1649 p1649 (! c1650 p1650))) -(petri (? c1650 p1650 (! c1651 p1651))) -(petri (? c1651 p1651 (! c1652 p1652))) -(petri (? c1652 p1652 (! c1653 p1653))) -(petri (? c1653 p1653 (! c1654 p1654))) -(petri (? c1654 p1654 (! c1655 p1655))) -(petri (? c1655 p1655 (! c1656 p1656))) -(petri (? c1656 p1656 (! c1657 p1657))) -(petri (? c1657 p1657 (! c1658 p1658))) -(petri (? c1658 p1658 (! c1659 p1659))) -(petri (? c1659 p1659 (! c1660 p1660))) -(petri (? c1660 p1660 (! c1661 p1661))) -(petri (? c1661 p1661 (! c1662 p1662))) -(petri (? c1662 p1662 (! c1663 p1663))) -(petri (? c1663 p1663 (! c1664 p1664))) -(petri (? c1664 p1664 (! c1665 p1665))) -(petri (? c1665 p1665 (! c1666 p1666))) -(petri (? c1666 p1666 (! c1667 p1667))) -(petri (? c1667 p1667 (! c1668 p1668))) -(petri (? c1668 p1668 (! c1669 p1669))) -(petri (? c1669 p1669 (! c1670 p1670))) -(petri (? c1670 p1670 (! c1671 p1671))) -(petri (? c1671 p1671 (! c1672 p1672))) -(petri (? c1672 p1672 (! c1673 p1673))) -(petri (? c1673 p1673 (! c1674 p1674))) -(petri (? c1674 p1674 (! c1675 p1675))) -(petri (? c1675 p1675 (! c1676 p1676))) -(petri (? c1676 p1676 (! c1677 p1677))) -(petri (? c1677 p1677 (! c1678 p1678))) -(petri (? c1678 p1678 (! c1679 p1679))) -(petri (? c1679 p1679 (! c1680 p1680))) -(petri (? c1680 p1680 (! c1681 p1681))) -(petri (? c1681 p1681 (! c1682 p1682))) -(petri (? c1682 p1682 (! c1683 p1683))) -(petri (? c1683 p1683 (! c1684 p1684))) -(petri (? c1684 p1684 (! c1685 p1685))) -(petri (? c1685 p1685 (! c1686 p1686))) -(petri (? c1686 p1686 (! c1687 p1687))) -(petri (? c1687 p1687 (! c1688 p1688))) -(petri (? c1688 p1688 (! c1689 p1689))) -(petri (? c1689 p1689 (! c1690 p1690))) -(petri (? c1690 p1690 (! c1691 p1691))) -(petri (? c1691 p1691 (! c1692 p1692))) -(petri (? c1692 p1692 (! c1693 p1693))) -(petri (? c1693 p1693 (! c1694 p1694))) -(petri (? c1694 p1694 (! c1695 p1695))) -(petri (? c1695 p1695 (! c1696 p1696))) -(petri (? c1696 p1696 (! c1697 p1697))) -(petri (? c1697 p1697 (! c1698 p1698))) -(petri (? c1698 p1698 (! c1699 p1699))) -(petri (? c1699 p1699 (! c1700 p1700))) -(petri (? c1700 p1700 (! c1701 p1701))) -(petri (? c1701 p1701 (! c1702 p1702))) -(petri (? c1702 p1702 (! c1703 p1703))) -(petri (? c1703 p1703 (! c1704 p1704))) -(petri (? c1704 p1704 (! c1705 p1705))) -(petri (? c1705 p1705 (! c1706 p1706))) -(petri (? c1706 p1706 (! c1707 p1707))) -(petri (? c1707 p1707 (! c1708 p1708))) -(petri (? c1708 p1708 (! c1709 p1709))) -(petri (? c1709 p1709 (! c1710 p1710))) -(petri (? c1710 p1710 (! c1711 p1711))) -(petri (? c1711 p1711 (! c1712 p1712))) -(petri (? c1712 p1712 (! c1713 p1713))) -(petri (? c1713 p1713 (! c1714 p1714))) -(petri (? c1714 p1714 (! c1715 p1715))) -(petri (? c1715 p1715 (! c1716 p1716))) -(petri (? c1716 p1716 (! c1717 p1717))) -(petri (? c1717 p1717 (! c1718 p1718))) -(petri (? c1718 p1718 (! c1719 p1719))) -(petri (? c1719 p1719 (! c1720 p1720))) -(petri (? c1720 p1720 (! c1721 p1721))) -(petri (? c1721 p1721 (! c1722 p1722))) -(petri (? c1722 p1722 (! c1723 p1723))) -(petri (? c1723 p1723 (! c1724 p1724))) -(petri (? c1724 p1724 (! c1725 p1725))) -(petri (? c1725 p1725 (! c1726 p1726))) -(petri (? c1726 p1726 (! c1727 p1727))) -(petri (? c1727 p1727 (! c1728 p1728))) -(petri (? c1728 p1728 (! c1729 p1729))) -(petri (? c1729 p1729 (! c1730 p1730))) -(petri (? c1730 p1730 (! c1731 p1731))) -(petri (? c1731 p1731 (! c1732 p1732))) -(petri (? c1732 p1732 (! c1733 p1733))) -(petri (? c1733 p1733 (! c1734 p1734))) -(petri (? c1734 p1734 (! c1735 p1735))) -(petri (? c1735 p1735 (! c1736 p1736))) -(petri (? c1736 p1736 (! c1737 p1737))) -(petri (? c1737 p1737 (! c1738 p1738))) -(petri (? c1738 p1738 (! c1739 p1739))) -(petri (? c1739 p1739 (! c1740 p1740))) -(petri (? c1740 p1740 (! c1741 p1741))) -(petri (? c1741 p1741 (! c1742 p1742))) -(petri (? c1742 p1742 (! c1743 p1743))) -(petri (? c1743 p1743 (! c1744 p1744))) -(petri (? c1744 p1744 (! c1745 p1745))) -(petri (? c1745 p1745 (! c1746 p1746))) -(petri (? c1746 p1746 (! c1747 p1747))) -(petri (? c1747 p1747 (! c1748 p1748))) -(petri (? c1748 p1748 (! c1749 p1749))) -(petri (? c1749 p1749 (! c1750 p1750))) -(petri (? c1750 p1750 (! c1751 p1751))) -(petri (? c1751 p1751 (! c1752 p1752))) -(petri (? c1752 p1752 (! c1753 p1753))) -(petri (? c1753 p1753 (! c1754 p1754))) -(petri (? c1754 p1754 (! c1755 p1755))) -(petri (? c1755 p1755 (! c1756 p1756))) -(petri (? c1756 p1756 (! c1757 p1757))) -(petri (? c1757 p1757 (! c1758 p1758))) -(petri (? c1758 p1758 (! c1759 p1759))) -(petri (? c1759 p1759 (! c1760 p1760))) -(petri (? c1760 p1760 (! c1761 p1761))) -(petri (? c1761 p1761 (! c1762 p1762))) -(petri (? c1762 p1762 (! c1763 p1763))) -(petri (? c1763 p1763 (! c1764 p1764))) -(petri (? c1764 p1764 (! c1765 p1765))) -(petri (? c1765 p1765 (! c1766 p1766))) -(petri (? c1766 p1766 (! c1767 p1767))) -(petri (? c1767 p1767 (! c1768 p1768))) -(petri (? c1768 p1768 (! c1769 p1769))) -(petri (? c1769 p1769 (! c1770 p1770))) -(petri (? c1770 p1770 (! c1771 p1771))) -(petri (? c1771 p1771 (! c1772 p1772))) -(petri (? c1772 p1772 (! c1773 p1773))) -(petri (? c1773 p1773 (! c1774 p1774))) -(petri (? c1774 p1774 (! c1775 p1775))) -(petri (? c1775 p1775 (! c1776 p1776))) -(petri (? c1776 p1776 (! c1777 p1777))) -(petri (? c1777 p1777 (! c1778 p1778))) -(petri (? c1778 p1778 (! c1779 p1779))) -(petri (? c1779 p1779 (! c1780 p1780))) -(petri (? c1780 p1780 (! c1781 p1781))) -(petri (? c1781 p1781 (! c1782 p1782))) -(petri (? c1782 p1782 (! c1783 p1783))) -(petri (? c1783 p1783 (! c1784 p1784))) -(petri (? c1784 p1784 (! c1785 p1785))) -(petri (? c1785 p1785 (! c1786 p1786))) -(petri (? c1786 p1786 (! c1787 p1787))) -(petri (? c1787 p1787 (! c1788 p1788))) -(petri (? c1788 p1788 (! c1789 p1789))) -(petri (? c1789 p1789 (! c1790 p1790))) -(petri (? c1790 p1790 (! c1791 p1791))) -(petri (? c1791 p1791 (! c1792 p1792))) -(petri (? c1792 p1792 (! c1793 p1793))) -(petri (? c1793 p1793 (! c1794 p1794))) -(petri (? c1794 p1794 (! c1795 p1795))) -(petri (? c1795 p1795 (! c1796 p1796))) -(petri (? c1796 p1796 (! c1797 p1797))) -(petri (? c1797 p1797 (! c1798 p1798))) -(petri (? c1798 p1798 (! c1799 p1799))) -(petri (? c1799 p1799 (! c1800 p1800))) -(petri (? c1800 p1800 (! c1801 p1801))) -(petri (? c1801 p1801 (! c1802 p1802))) -(petri (? c1802 p1802 (! c1803 p1803))) -(petri (? c1803 p1803 (! c1804 p1804))) -(petri (? c1804 p1804 (! c1805 p1805))) -(petri (? c1805 p1805 (! c1806 p1806))) -(petri (? c1806 p1806 (! c1807 p1807))) -(petri (? c1807 p1807 (! c1808 p1808))) -(petri (? c1808 p1808 (! c1809 p1809))) -(petri (? c1809 p1809 (! c1810 p1810))) -(petri (? c1810 p1810 (! c1811 p1811))) -(petri (? c1811 p1811 (! c1812 p1812))) -(petri (? c1812 p1812 (! c1813 p1813))) -(petri (? c1813 p1813 (! c1814 p1814))) -(petri (? c1814 p1814 (! c1815 p1815))) -(petri (? c1815 p1815 (! c1816 p1816))) -(petri (? c1816 p1816 (! c1817 p1817))) -(petri (? c1817 p1817 (! c1818 p1818))) -(petri (? c1818 p1818 (! c1819 p1819))) -(petri (? c1819 p1819 (! c1820 p1820))) -(petri (? c1820 p1820 (! c1821 p1821))) -(petri (? c1821 p1821 (! c1822 p1822))) -(petri (? c1822 p1822 (! c1823 p1823))) -(petri (? c1823 p1823 (! c1824 p1824))) -(petri (? c1824 p1824 (! c1825 p1825))) -(petri (? c1825 p1825 (! c1826 p1826))) -(petri (? c1826 p1826 (! c1827 p1827))) -(petri (? c1827 p1827 (! c1828 p1828))) -(petri (? c1828 p1828 (! c1829 p1829))) -(petri (? c1829 p1829 (! c1830 p1830))) -(petri (? c1830 p1830 (! c1831 p1831))) -(petri (? c1831 p1831 (! c1832 p1832))) -(petri (? c1832 p1832 (! c1833 p1833))) -(petri (? c1833 p1833 (! c1834 p1834))) -(petri (? c1834 p1834 (! c1835 p1835))) -(petri (? c1835 p1835 (! c1836 p1836))) -(petri (? c1836 p1836 (! c1837 p1837))) -(petri (? c1837 p1837 (! c1838 p1838))) -(petri (? c1838 p1838 (! c1839 p1839))) -(petri (? c1839 p1839 (! c1840 p1840))) -(petri (? c1840 p1840 (! c1841 p1841))) -(petri (? c1841 p1841 (! c1842 p1842))) -(petri (? c1842 p1842 (! c1843 p1843))) -(petri (? c1843 p1843 (! c1844 p1844))) -(petri (? c1844 p1844 (! c1845 p1845))) -(petri (? c1845 p1845 (! c1846 p1846))) -(petri (? c1846 p1846 (! c1847 p1847))) -(petri (? c1847 p1847 (! c1848 p1848))) -(petri (? c1848 p1848 (! c1849 p1849))) -(petri (? c1849 p1849 (! c1850 p1850))) -(petri (? c1850 p1850 (! c1851 p1851))) -(petri (? c1851 p1851 (! c1852 p1852))) -(petri (? c1852 p1852 (! c1853 p1853))) -(petri (? c1853 p1853 (! c1854 p1854))) -(petri (? c1854 p1854 (! c1855 p1855))) -(petri (? c1855 p1855 (! c1856 p1856))) -(petri (? c1856 p1856 (! c1857 p1857))) -(petri (? c1857 p1857 (! c1858 p1858))) -(petri (? c1858 p1858 (! c1859 p1859))) -(petri (? c1859 p1859 (! c1860 p1860))) -(petri (? c1860 p1860 (! c1861 p1861))) -(petri (? c1861 p1861 (! c1862 p1862))) -(petri (? c1862 p1862 (! c1863 p1863))) -(petri (? c1863 p1863 (! c1864 p1864))) -(petri (? c1864 p1864 (! c1865 p1865))) -(petri (? c1865 p1865 (! c1866 p1866))) -(petri (? c1866 p1866 (! c1867 p1867))) -(petri (? c1867 p1867 (! c1868 p1868))) -(petri (? c1868 p1868 (! c1869 p1869))) -(petri (? c1869 p1869 (! c1870 p1870))) -(petri (? c1870 p1870 (! c1871 p1871))) -(petri (? c1871 p1871 (! c1872 p1872))) -(petri (? c1872 p1872 (! c1873 p1873))) -(petri (? c1873 p1873 (! c1874 p1874))) -(petri (? c1874 p1874 (! c1875 p1875))) -(petri (? c1875 p1875 (! c1876 p1876))) -(petri (? c1876 p1876 (! c1877 p1877))) -(petri (? c1877 p1877 (! c1878 p1878))) -(petri (? c1878 p1878 (! c1879 p1879))) -(petri (? c1879 p1879 (! c1880 p1880))) -(petri (? c1880 p1880 (! c1881 p1881))) -(petri (? c1881 p1881 (! c1882 p1882))) -(petri (? c1882 p1882 (! c1883 p1883))) -(petri (? c1883 p1883 (! c1884 p1884))) -(petri (? c1884 p1884 (! c1885 p1885))) -(petri (? c1885 p1885 (! c1886 p1886))) -(petri (? c1886 p1886 (! c1887 p1887))) -(petri (? c1887 p1887 (! c1888 p1888))) -(petri (? c1888 p1888 (! c1889 p1889))) -(petri (? c1889 p1889 (! c1890 p1890))) -(petri (? c1890 p1890 (! c1891 p1891))) -(petri (? c1891 p1891 (! c1892 p1892))) -(petri (? c1892 p1892 (! c1893 p1893))) -(petri (? c1893 p1893 (! c1894 p1894))) -(petri (? c1894 p1894 (! c1895 p1895))) -(petri (? c1895 p1895 (! c1896 p1896))) -(petri (? c1896 p1896 (! c1897 p1897))) -(petri (? c1897 p1897 (! c1898 p1898))) -(petri (? c1898 p1898 (! c1899 p1899))) -(petri (? c1899 p1899 (! c1900 p1900))) -(petri (? c1900 p1900 (! c1901 p1901))) -(petri (? c1901 p1901 (! c1902 p1902))) -(petri (? c1902 p1902 (! c1903 p1903))) -(petri (? c1903 p1903 (! c1904 p1904))) -(petri (? c1904 p1904 (! c1905 p1905))) -(petri (? c1905 p1905 (! c1906 p1906))) -(petri (? c1906 p1906 (! c1907 p1907))) -(petri (? c1907 p1907 (! c1908 p1908))) -(petri (? c1908 p1908 (! c1909 p1909))) -(petri (? c1909 p1909 (! c1910 p1910))) -(petri (? c1910 p1910 (! c1911 p1911))) -(petri (? c1911 p1911 (! c1912 p1912))) -(petri (? c1912 p1912 (! c1913 p1913))) -(petri (? c1913 p1913 (! c1914 p1914))) -(petri (? c1914 p1914 (! c1915 p1915))) -(petri (? c1915 p1915 (! c1916 p1916))) -(petri (? c1916 p1916 (! c1917 p1917))) -(petri (? c1917 p1917 (! c1918 p1918))) -(petri (? c1918 p1918 (! c1919 p1919))) -(petri (? c1919 p1919 (! c1920 p1920))) -(petri (? c1920 p1920 (! c1921 p1921))) -(petri (? c1921 p1921 (! c1922 p1922))) -(petri (? c1922 p1922 (! c1923 p1923))) -(petri (? c1923 p1923 (! c1924 p1924))) -(petri (? c1924 p1924 (! c1925 p1925))) -(petri (? c1925 p1925 (! c1926 p1926))) -(petri (? c1926 p1926 (! c1927 p1927))) -(petri (? c1927 p1927 (! c1928 p1928))) -(petri (? c1928 p1928 (! c1929 p1929))) -(petri (? c1929 p1929 (! c1930 p1930))) -(petri (? c1930 p1930 (! c1931 p1931))) -(petri (? c1931 p1931 (! c1932 p1932))) -(petri (? c1932 p1932 (! c1933 p1933))) -(petri (? c1933 p1933 (! c1934 p1934))) -(petri (? c1934 p1934 (! c1935 p1935))) -(petri (? c1935 p1935 (! c1936 p1936))) -(petri (? c1936 p1936 (! c1937 p1937))) -(petri (? c1937 p1937 (! c1938 p1938))) -(petri (? c1938 p1938 (! c1939 p1939))) -(petri (? c1939 p1939 (! c1940 p1940))) -(petri (? c1940 p1940 (! c1941 p1941))) -(petri (? c1941 p1941 (! c1942 p1942))) -(petri (? c1942 p1942 (! c1943 p1943))) -(petri (? c1943 p1943 (! c1944 p1944))) -(petri (? c1944 p1944 (! c1945 p1945))) -(petri (? c1945 p1945 (! c1946 p1946))) -(petri (? c1946 p1946 (! c1947 p1947))) -(petri (? c1947 p1947 (! c1948 p1948))) -(petri (? c1948 p1948 (! c1949 p1949))) -(petri (? c1949 p1949 (! c1950 p1950))) -(petri (? c1950 p1950 (! c1951 p1951))) -(petri (? c1951 p1951 (! c1952 p1952))) -(petri (? c1952 p1952 (! c1953 p1953))) -(petri (? c1953 p1953 (! c1954 p1954))) -(petri (? c1954 p1954 (! c1955 p1955))) -(petri (? c1955 p1955 (! c1956 p1956))) -(petri (? c1956 p1956 (! c1957 p1957))) -(petri (? c1957 p1957 (! c1958 p1958))) -(petri (? c1958 p1958 (! c1959 p1959))) -(petri (? c1959 p1959 (! c1960 p1960))) -(petri (? c1960 p1960 (! c1961 p1961))) -(petri (? c1961 p1961 (! c1962 p1962))) -(petri (? c1962 p1962 (! c1963 p1963))) -(petri (? c1963 p1963 (! c1964 p1964))) -(petri (? c1964 p1964 (! c1965 p1965))) -(petri (? c1965 p1965 (! c1966 p1966))) -(petri (? c1966 p1966 (! c1967 p1967))) -(petri (? c1967 p1967 (! c1968 p1968))) -(petri (? c1968 p1968 (! c1969 p1969))) -(petri (? c1969 p1969 (! c1970 p1970))) -(petri (? c1970 p1970 (! c1971 p1971))) -(petri (? c1971 p1971 (! c1972 p1972))) -(petri (? c1972 p1972 (! c1973 p1973))) -(petri (? c1973 p1973 (! c1974 p1974))) -(petri (? c1974 p1974 (! c1975 p1975))) -(petri (? c1975 p1975 (! c1976 p1976))) -(petri (? c1976 p1976 (! c1977 p1977))) -(petri (? c1977 p1977 (! c1978 p1978))) -(petri (? c1978 p1978 (! c1979 p1979))) -(petri (? c1979 p1979 (! c1980 p1980))) -(petri (? c1980 p1980 (! c1981 p1981))) -(petri (? c1981 p1981 (! c1982 p1982))) -(petri (? c1982 p1982 (! c1983 p1983))) -(petri (? c1983 p1983 (! c1984 p1984))) -(petri (? c1984 p1984 (! c1985 p1985))) -(petri (? c1985 p1985 (! c1986 p1986))) -(petri (? c1986 p1986 (! c1987 p1987))) -(petri (? c1987 p1987 (! c1988 p1988))) -(petri (? c1988 p1988 (! c1989 p1989))) -(petri (? c1989 p1989 (! c1990 p1990))) -(petri (? c1990 p1990 (! c1991 p1991))) -(petri (? c1991 p1991 (! c1992 p1992))) -(petri (? c1992 p1992 (! c1993 p1993))) -(petri (? c1993 p1993 (! c1994 p1994))) -(petri (? c1994 p1994 (! c1995 p1995))) -(petri (? c1995 p1995 (! c1996 p1996))) -(petri (? c1996 p1996 (! c1997 p1997))) -(petri (? c1997 p1997 (! c1998 p1998))) -(petri (? c1998 p1998 (! c1999 p1999))) -(petri (? c1999 p1999 (! c2000 p2000))) -(petri (? c2000 p2000 (! c2001 p2001))) -(petri (? c2001 p2001 (! c2002 p2002))) -(petri (? c2002 p2002 (! c2003 p2003))) -(petri (? c2003 p2003 (! c2004 p2004))) -(petri (? c2004 p2004 (! c2005 p2005))) -(petri (? c2005 p2005 (! c2006 p2006))) -(petri (? c2006 p2006 (! c2007 p2007))) -(petri (? c2007 p2007 (! c2008 p2008))) -(petri (? c2008 p2008 (! c2009 p2009))) -(petri (? c2009 p2009 (! c2010 p2010))) -(petri (? c2010 p2010 (! c2011 p2011))) -(petri (? c2011 p2011 (! c2012 p2012))) -(petri (? c2012 p2012 (! c2013 p2013))) -(petri (? c2013 p2013 (! c2014 p2014))) -(petri (? c2014 p2014 (! c2015 p2015))) -(petri (? c2015 p2015 (! c2016 p2016))) -(petri (? c2016 p2016 (! c2017 p2017))) -(petri (? c2017 p2017 (! c2018 p2018))) -(petri (? c2018 p2018 (! c2019 p2019))) -(petri (? c2019 p2019 (! c2020 p2020))) -(petri (? c2020 p2020 (! c2021 p2021))) -(petri (? c2021 p2021 (! c2022 p2022))) -(petri (? c2022 p2022 (! c2023 p2023))) -(petri (? c2023 p2023 (! c2024 p2024))) -(petri (? c2024 p2024 (! c2025 p2025))) -(petri (? c2025 p2025 (! c2026 p2026))) -(petri (? c2026 p2026 (! c2027 p2027))) -(petri (? c2027 p2027 (! c2028 p2028))) -(petri (? c2028 p2028 (! c2029 p2029))) -(petri (? c2029 p2029 (! c2030 p2030))) -(petri (? c2030 p2030 (! c2031 p2031))) -(petri (? c2031 p2031 (! c2032 p2032))) -(petri (? c2032 p2032 (! c2033 p2033))) -(petri (? c2033 p2033 (! c2034 p2034))) -(petri (? c2034 p2034 (! c2035 p2035))) -(petri (? c2035 p2035 (! c2036 p2036))) -(petri (? c2036 p2036 (! c2037 p2037))) -(petri (? c2037 p2037 (! c2038 p2038))) -(petri (? c2038 p2038 (! c2039 p2039))) -(petri (? c2039 p2039 (! c2040 p2040))) -(petri (? c2040 p2040 (! c2041 p2041))) -(petri (? c2041 p2041 (! c2042 p2042))) -(petri (? c2042 p2042 (! c2043 p2043))) -(petri (? c2043 p2043 (! c2044 p2044))) -(petri (? c2044 p2044 (! c2045 p2045))) -(petri (? c2045 p2045 (! c2046 p2046))) -(petri (? c2046 p2046 (! c2047 p2047))) -(petri (? c2047 p2047 (! c2048 p2048))) -(petri (? c2048 p2048 (! c2049 p2049))) -(petri (? c2049 p2049 (! c2050 p2050))) -(petri (? c2050 p2050 (! c2051 p2051))) -(petri (? c2051 p2051 (! c2052 p2052))) -(petri (? c2052 p2052 (! c2053 p2053))) -(petri (? c2053 p2053 (! c2054 p2054))) -(petri (? c2054 p2054 (! c2055 p2055))) -(petri (? c2055 p2055 (! c2056 p2056))) -(petri (? c2056 p2056 (! c2057 p2057))) -(petri (? c2057 p2057 (! c2058 p2058))) -(petri (? c2058 p2058 (! c2059 p2059))) -(petri (? c2059 p2059 (! c2060 p2060))) -(petri (? c2060 p2060 (! c2061 p2061))) -(petri (? c2061 p2061 (! c2062 p2062))) -(petri (? c2062 p2062 (! c2063 p2063))) -(petri (? c2063 p2063 (! c2064 p2064))) -(petri (? c2064 p2064 (! c2065 p2065))) -(petri (? c2065 p2065 (! c2066 p2066))) -(petri (? c2066 p2066 (! c2067 p2067))) -(petri (? c2067 p2067 (! c2068 p2068))) -(petri (? c2068 p2068 (! c2069 p2069))) -(petri (? c2069 p2069 (! c2070 p2070))) -(petri (? c2070 p2070 (! c2071 p2071))) -(petri (? c2071 p2071 (! c2072 p2072))) -(petri (? c2072 p2072 (! c2073 p2073))) -(petri (? c2073 p2073 (! c2074 p2074))) -(petri (? c2074 p2074 (! c2075 p2075))) -(petri (? c2075 p2075 (! c2076 p2076))) -(petri (? c2076 p2076 (! c2077 p2077))) -(petri (? c2077 p2077 (! c2078 p2078))) -(petri (? c2078 p2078 (! c2079 p2079))) -(petri (? c2079 p2079 (! c2080 p2080))) -(petri (? c2080 p2080 (! c2081 p2081))) -(petri (? c2081 p2081 (! c2082 p2082))) -(petri (? c2082 p2082 (! c2083 p2083))) -(petri (? c2083 p2083 (! c2084 p2084))) -(petri (? c2084 p2084 (! c2085 p2085))) -(petri (? c2085 p2085 (! c2086 p2086))) -(petri (? c2086 p2086 (! c2087 p2087))) -(petri (? c2087 p2087 (! c2088 p2088))) -(petri (? c2088 p2088 (! c2089 p2089))) -(petri (? c2089 p2089 (! c2090 p2090))) -(petri (? c2090 p2090 (! c2091 p2091))) -(petri (? c2091 p2091 (! c2092 p2092))) -(petri (? c2092 p2092 (! c2093 p2093))) -(petri (? c2093 p2093 (! c2094 p2094))) -(petri (? c2094 p2094 (! c2095 p2095))) -(petri (? c2095 p2095 (! c2096 p2096))) -(petri (? c2096 p2096 (! c2097 p2097))) -(petri (? c2097 p2097 (! c2098 p2098))) -(petri (? c2098 p2098 (! c2099 p2099))) -(petri (? c2099 p2099 (! c2100 p2100))) -(petri (? c2100 p2100 (! c2101 p2101))) -(petri (? c2101 p2101 (! c2102 p2102))) -(petri (? c2102 p2102 (! c2103 p2103))) -(petri (? c2103 p2103 (! c2104 p2104))) -(petri (? c2104 p2104 (! c2105 p2105))) -(petri (? c2105 p2105 (! c2106 p2106))) -(petri (? c2106 p2106 (! c2107 p2107))) -(petri (? c2107 p2107 (! c2108 p2108))) -(petri (? c2108 p2108 (! c2109 p2109))) -(petri (? c2109 p2109 (! c2110 p2110))) -(petri (? c2110 p2110 (! c2111 p2111))) -(petri (? c2111 p2111 (! c2112 p2112))) -(petri (? c2112 p2112 (! c2113 p2113))) -(petri (? c2113 p2113 (! c2114 p2114))) -(petri (? c2114 p2114 (! c2115 p2115))) -(petri (? c2115 p2115 (! c2116 p2116))) -(petri (? c2116 p2116 (! c2117 p2117))) -(petri (? c2117 p2117 (! c2118 p2118))) -(petri (? c2118 p2118 (! c2119 p2119))) -(petri (? c2119 p2119 (! c2120 p2120))) -(petri (? c2120 p2120 (! c2121 p2121))) -(petri (? c2121 p2121 (! c2122 p2122))) -(petri (? c2122 p2122 (! c2123 p2123))) -(petri (? c2123 p2123 (! c2124 p2124))) -(petri (? c2124 p2124 (! c2125 p2125))) -(petri (? c2125 p2125 (! c2126 p2126))) -(petri (? c2126 p2126 (! c2127 p2127))) -(petri (? c2127 p2127 (! c2128 p2128))) -(petri (? c2128 p2128 (! c2129 p2129))) -(petri (? c2129 p2129 (! c2130 p2130))) -(petri (? c2130 p2130 (! c2131 p2131))) -(petri (? c2131 p2131 (! c2132 p2132))) -(petri (? c2132 p2132 (! c2133 p2133))) -(petri (? c2133 p2133 (! c2134 p2134))) -(petri (? c2134 p2134 (! c2135 p2135))) -(petri (? c2135 p2135 (! c2136 p2136))) -(petri (? c2136 p2136 (! c2137 p2137))) -(petri (? c2137 p2137 (! c2138 p2138))) -(petri (? c2138 p2138 (! c2139 p2139))) -(petri (? c2139 p2139 (! c2140 p2140))) -(petri (? c2140 p2140 (! c2141 p2141))) -(petri (? c2141 p2141 (! c2142 p2142))) -(petri (? c2142 p2142 (! c2143 p2143))) -(petri (? c2143 p2143 (! c2144 p2144))) -(petri (? c2144 p2144 (! c2145 p2145))) -(petri (? c2145 p2145 (! c2146 p2146))) -(petri (? c2146 p2146 (! c2147 p2147))) -(petri (? c2147 p2147 (! c2148 p2148))) -(petri (? c2148 p2148 (! c2149 p2149))) -(petri (? c2149 p2149 (! c2150 p2150))) -(petri (? c2150 p2150 (! c2151 p2151))) -(petri (? c2151 p2151 (! c2152 p2152))) -(petri (? c2152 p2152 (! c2153 p2153))) -(petri (? c2153 p2153 (! c2154 p2154))) -(petri (? c2154 p2154 (! c2155 p2155))) -(petri (? c2155 p2155 (! c2156 p2156))) -(petri (? c2156 p2156 (! c2157 p2157))) -(petri (? c2157 p2157 (! c2158 p2158))) -(petri (? c2158 p2158 (! c2159 p2159))) -(petri (? c2159 p2159 (! c2160 p2160))) -(petri (? c2160 p2160 (! c2161 p2161))) -(petri (? c2161 p2161 (! c2162 p2162))) -(petri (? c2162 p2162 (! c2163 p2163))) -(petri (? c2163 p2163 (! c2164 p2164))) -(petri (? c2164 p2164 (! c2165 p2165))) -(petri (? c2165 p2165 (! c2166 p2166))) -(petri (? c2166 p2166 (! c2167 p2167))) -(petri (? c2167 p2167 (! c2168 p2168))) -(petri (? c2168 p2168 (! c2169 p2169))) -(petri (? c2169 p2169 (! c2170 p2170))) -(petri (? c2170 p2170 (! c2171 p2171))) -(petri (? c2171 p2171 (! c2172 p2172))) -(petri (? c2172 p2172 (! c2173 p2173))) -(petri (? c2173 p2173 (! c2174 p2174))) -(petri (? c2174 p2174 (! c2175 p2175))) -(petri (? c2175 p2175 (! c2176 p2176))) -(petri (? c2176 p2176 (! c2177 p2177))) -(petri (? c2177 p2177 (! c2178 p2178))) -(petri (? c2178 p2178 (! c2179 p2179))) -(petri (? c2179 p2179 (! c2180 p2180))) -(petri (? c2180 p2180 (! c2181 p2181))) -(petri (? c2181 p2181 (! c2182 p2182))) -(petri (? c2182 p2182 (! c2183 p2183))) -(petri (? c2183 p2183 (! c2184 p2184))) -(petri (? c2184 p2184 (! c2185 p2185))) -(petri (? c2185 p2185 (! c2186 p2186))) -(petri (? c2186 p2186 (! c2187 p2187))) -(petri (? c2187 p2187 (! c2188 p2188))) -(petri (? c2188 p2188 (! c2189 p2189))) -(petri (? c2189 p2189 (! c2190 p2190))) -(petri (? c2190 p2190 (! c2191 p2191))) -(petri (? c2191 p2191 (! c2192 p2192))) -(petri (? c2192 p2192 (! c2193 p2193))) -(petri (? c2193 p2193 (! c2194 p2194))) -(petri (? c2194 p2194 (! c2195 p2195))) -(petri (? c2195 p2195 (! c2196 p2196))) -(petri (? c2196 p2196 (! c2197 p2197))) -(petri (? c2197 p2197 (! c2198 p2198))) -(petri (? c2198 p2198 (! c2199 p2199))) -(petri (? c2199 p2199 (! c2200 p2200))) -(petri (? c2200 p2200 (! c2201 p2201))) -(petri (? c2201 p2201 (! c2202 p2202))) -(petri (? c2202 p2202 (! c2203 p2203))) -(petri (? c2203 p2203 (! c2204 p2204))) -(petri (? c2204 p2204 (! c2205 p2205))) -(petri (? c2205 p2205 (! c2206 p2206))) -(petri (? c2206 p2206 (! c2207 p2207))) -(petri (? c2207 p2207 (! c2208 p2208))) -(petri (? c2208 p2208 (! c2209 p2209))) -(petri (? c2209 p2209 (! c2210 p2210))) -(petri (? c2210 p2210 (! c2211 p2211))) -(petri (? c2211 p2211 (! c2212 p2212))) -(petri (? c2212 p2212 (! c2213 p2213))) -(petri (? c2213 p2213 (! c2214 p2214))) -(petri (? c2214 p2214 (! c2215 p2215))) -(petri (? c2215 p2215 (! c2216 p2216))) -(petri (? c2216 p2216 (! c2217 p2217))) -(petri (? c2217 p2217 (! c2218 p2218))) -(petri (? c2218 p2218 (! c2219 p2219))) -(petri (? c2219 p2219 (! c2220 p2220))) -(petri (? c2220 p2220 (! c2221 p2221))) -(petri (? c2221 p2221 (! c2222 p2222))) -(petri (? c2222 p2222 (! c2223 p2223))) -(petri (? c2223 p2223 (! c2224 p2224))) -(petri (? c2224 p2224 (! c2225 p2225))) -(petri (? c2225 p2225 (! c2226 p2226))) -(petri (? c2226 p2226 (! c2227 p2227))) -(petri (? c2227 p2227 (! c2228 p2228))) -(petri (? c2228 p2228 (! c2229 p2229))) -(petri (? c2229 p2229 (! c2230 p2230))) -(petri (? c2230 p2230 (! c2231 p2231))) -(petri (? c2231 p2231 (! c2232 p2232))) -(petri (? c2232 p2232 (! c2233 p2233))) -(petri (? c2233 p2233 (! c2234 p2234))) -(petri (? c2234 p2234 (! c2235 p2235))) -(petri (? c2235 p2235 (! c2236 p2236))) -(petri (? c2236 p2236 (! c2237 p2237))) -(petri (? c2237 p2237 (! c2238 p2238))) -(petri (? c2238 p2238 (! c2239 p2239))) -(petri (? c2239 p2239 (! c2240 p2240))) -(petri (? c2240 p2240 (! c2241 p2241))) -(petri (? c2241 p2241 (! c2242 p2242))) -(petri (? c2242 p2242 (! c2243 p2243))) -(petri (? c2243 p2243 (! c2244 p2244))) -(petri (? c2244 p2244 (! c2245 p2245))) -(petri (? c2245 p2245 (! c2246 p2246))) -(petri (? c2246 p2246 (! c2247 p2247))) -(petri (? c2247 p2247 (! c2248 p2248))) -(petri (? c2248 p2248 (! c2249 p2249))) -(petri (? c2249 p2249 (! c2250 p2250))) -(petri (? c2250 p2250 (! c2251 p2251))) -(petri (? c2251 p2251 (! c2252 p2252))) -(petri (? c2252 p2252 (! c2253 p2253))) -(petri (? c2253 p2253 (! c2254 p2254))) -(petri (? c2254 p2254 (! c2255 p2255))) -(petri (? c2255 p2255 (! c2256 p2256))) -(petri (? c2256 p2256 (! c2257 p2257))) -(petri (? c2257 p2257 (! c2258 p2258))) -(petri (? c2258 p2258 (! c2259 p2259))) -(petri (? c2259 p2259 (! c2260 p2260))) -(petri (? c2260 p2260 (! c2261 p2261))) -(petri (? c2261 p2261 (! c2262 p2262))) -(petri (? c2262 p2262 (! c2263 p2263))) -(petri (? c2263 p2263 (! c2264 p2264))) -(petri (? c2264 p2264 (! c2265 p2265))) -(petri (? c2265 p2265 (! c2266 p2266))) -(petri (? c2266 p2266 (! c2267 p2267))) -(petri (? c2267 p2267 (! c2268 p2268))) -(petri (? c2268 p2268 (! c2269 p2269))) -(petri (? c2269 p2269 (! c2270 p2270))) -(petri (? c2270 p2270 (! c2271 p2271))) -(petri (? c2271 p2271 (! c2272 p2272))) -(petri (? c2272 p2272 (! c2273 p2273))) -(petri (? c2273 p2273 (! c2274 p2274))) -(petri (? c2274 p2274 (! c2275 p2275))) -(petri (? c2275 p2275 (! c2276 p2276))) -(petri (? c2276 p2276 (! c2277 p2277))) -(petri (? c2277 p2277 (! c2278 p2278))) -(petri (? c2278 p2278 (! c2279 p2279))) -(petri (? c2279 p2279 (! c2280 p2280))) -(petri (? c2280 p2280 (! c2281 p2281))) -(petri (? c2281 p2281 (! c2282 p2282))) -(petri (? c2282 p2282 (! c2283 p2283))) -(petri (? c2283 p2283 (! c2284 p2284))) -(petri (? c2284 p2284 (! c2285 p2285))) -(petri (? c2285 p2285 (! c2286 p2286))) -(petri (? c2286 p2286 (! c2287 p2287))) -(petri (? c2287 p2287 (! c2288 p2288))) -(petri (? c2288 p2288 (! c2289 p2289))) -(petri (? c2289 p2289 (! c2290 p2290))) -(petri (? c2290 p2290 (! c2291 p2291))) -(petri (? c2291 p2291 (! c2292 p2292))) -(petri (? c2292 p2292 (! c2293 p2293))) -(petri (? c2293 p2293 (! c2294 p2294))) -(petri (? c2294 p2294 (! c2295 p2295))) -(petri (? c2295 p2295 (! c2296 p2296))) -(petri (? c2296 p2296 (! c2297 p2297))) -(petri (? c2297 p2297 (! c2298 p2298))) -(petri (? c2298 p2298 (! c2299 p2299))) -(petri (? c2299 p2299 (! c2300 p2300))) -(petri (? c2300 p2300 (! c2301 p2301))) -(petri (? c2301 p2301 (! c2302 p2302))) -(petri (? c2302 p2302 (! c2303 p2303))) -(petri (? c2303 p2303 (! c2304 p2304))) -(petri (? c2304 p2304 (! c2305 p2305))) -(petri (? c2305 p2305 (! c2306 p2306))) -(petri (? c2306 p2306 (! c2307 p2307))) -(petri (? c2307 p2307 (! c2308 p2308))) -(petri (? c2308 p2308 (! c2309 p2309))) -(petri (? c2309 p2309 (! c2310 p2310))) -(petri (? c2310 p2310 (! c2311 p2311))) -(petri (? c2311 p2311 (! c2312 p2312))) -(petri (? c2312 p2312 (! c2313 p2313))) -(petri (? c2313 p2313 (! c2314 p2314))) -(petri (? c2314 p2314 (! c2315 p2315))) -(petri (? c2315 p2315 (! c2316 p2316))) -(petri (? c2316 p2316 (! c2317 p2317))) -(petri (? c2317 p2317 (! c2318 p2318))) -(petri (? c2318 p2318 (! c2319 p2319))) -(petri (? c2319 p2319 (! c2320 p2320))) -(petri (? c2320 p2320 (! c2321 p2321))) -(petri (? c2321 p2321 (! c2322 p2322))) -(petri (? c2322 p2322 (! c2323 p2323))) -(petri (? c2323 p2323 (! c2324 p2324))) -(petri (? c2324 p2324 (! c2325 p2325))) -(petri (? c2325 p2325 (! c2326 p2326))) -(petri (? c2326 p2326 (! c2327 p2327))) -(petri (? c2327 p2327 (! c2328 p2328))) -(petri (? c2328 p2328 (! c2329 p2329))) -(petri (? c2329 p2329 (! c2330 p2330))) -(petri (? c2330 p2330 (! c2331 p2331))) -(petri (? c2331 p2331 (! c2332 p2332))) -(petri (? c2332 p2332 (! c2333 p2333))) -(petri (? c2333 p2333 (! c2334 p2334))) -(petri (? c2334 p2334 (! c2335 p2335))) -(petri (? c2335 p2335 (! c2336 p2336))) -(petri (? c2336 p2336 (! c2337 p2337))) -(petri (? c2337 p2337 (! c2338 p2338))) -(petri (? c2338 p2338 (! c2339 p2339))) -(petri (? c2339 p2339 (! c2340 p2340))) -(petri (? c2340 p2340 (! c2341 p2341))) -(petri (? c2341 p2341 (! c2342 p2342))) -(petri (? c2342 p2342 (! c2343 p2343))) -(petri (? c2343 p2343 (! c2344 p2344))) -(petri (? c2344 p2344 (! c2345 p2345))) -(petri (? c2345 p2345 (! c2346 p2346))) -(petri (? c2346 p2346 (! c2347 p2347))) -(petri (? c2347 p2347 (! c2348 p2348))) -(petri (? c2348 p2348 (! c2349 p2349))) -(petri (? c2349 p2349 (! c2350 p2350))) -(petri (? c2350 p2350 (! c2351 p2351))) -(petri (? c2351 p2351 (! c2352 p2352))) -(petri (? c2352 p2352 (! c2353 p2353))) -(petri (? c2353 p2353 (! c2354 p2354))) -(petri (? c2354 p2354 (! c2355 p2355))) -(petri (? c2355 p2355 (! c2356 p2356))) -(petri (? c2356 p2356 (! c2357 p2357))) -(petri (? c2357 p2357 (! c2358 p2358))) -(petri (? c2358 p2358 (! c2359 p2359))) -(petri (? c2359 p2359 (! c2360 p2360))) -(petri (? c2360 p2360 (! c2361 p2361))) -(petri (? c2361 p2361 (! c2362 p2362))) -(petri (? c2362 p2362 (! c2363 p2363))) -(petri (? c2363 p2363 (! c2364 p2364))) -(petri (? c2364 p2364 (! c2365 p2365))) -(petri (? c2365 p2365 (! c2366 p2366))) -(petri (? c2366 p2366 (! c2367 p2367))) -(petri (? c2367 p2367 (! c2368 p2368))) -(petri (? c2368 p2368 (! c2369 p2369))) -(petri (? c2369 p2369 (! c2370 p2370))) -(petri (? c2370 p2370 (! c2371 p2371))) -(petri (? c2371 p2371 (! c2372 p2372))) -(petri (? c2372 p2372 (! c2373 p2373))) -(petri (? c2373 p2373 (! c2374 p2374))) -(petri (? c2374 p2374 (! c2375 p2375))) -(petri (? c2375 p2375 (! c2376 p2376))) -(petri (? c2376 p2376 (! c2377 p2377))) -(petri (? c2377 p2377 (! c2378 p2378))) -(petri (? c2378 p2378 (! c2379 p2379))) -(petri (? c2379 p2379 (! c2380 p2380))) -(petri (? c2380 p2380 (! c2381 p2381))) -(petri (? c2381 p2381 (! c2382 p2382))) -(petri (? c2382 p2382 (! c2383 p2383))) -(petri (? c2383 p2383 (! c2384 p2384))) -(petri (? c2384 p2384 (! c2385 p2385))) -(petri (? c2385 p2385 (! c2386 p2386))) -(petri (? c2386 p2386 (! c2387 p2387))) -(petri (? c2387 p2387 (! c2388 p2388))) -(petri (? c2388 p2388 (! c2389 p2389))) -(petri (? c2389 p2389 (! c2390 p2390))) -(petri (? c2390 p2390 (! c2391 p2391))) -(petri (? c2391 p2391 (! c2392 p2392))) -(petri (? c2392 p2392 (! c2393 p2393))) -(petri (? c2393 p2393 (! c2394 p2394))) -(petri (? c2394 p2394 (! c2395 p2395))) -(petri (? c2395 p2395 (! c2396 p2396))) -(petri (? c2396 p2396 (! c2397 p2397))) -(petri (? c2397 p2397 (! c2398 p2398))) -(petri (? c2398 p2398 (! c2399 p2399))) -(petri (? c2399 p2399 (! c2400 p2400))) -(petri (? c2400 p2400 (! c2401 p2401))) -(petri (? c2401 p2401 (! c2402 p2402))) -(petri (? c2402 p2402 (! c2403 p2403))) -(petri (? c2403 p2403 (! c2404 p2404))) -(petri (? c2404 p2404 (! c2405 p2405))) -(petri (? c2405 p2405 (! c2406 p2406))) -(petri (? c2406 p2406 (! c2407 p2407))) -(petri (? c2407 p2407 (! c2408 p2408))) -(petri (? c2408 p2408 (! c2409 p2409))) -(petri (? c2409 p2409 (! c2410 p2410))) -(petri (? c2410 p2410 (! c2411 p2411))) -(petri (? c2411 p2411 (! c2412 p2412))) -(petri (? c2412 p2412 (! c2413 p2413))) -(petri (? c2413 p2413 (! c2414 p2414))) -(petri (? c2414 p2414 (! c2415 p2415))) -(petri (? c2415 p2415 (! c2416 p2416))) -(petri (? c2416 p2416 (! c2417 p2417))) -(petri (? c2417 p2417 (! c2418 p2418))) -(petri (? c2418 p2418 (! c2419 p2419))) -(petri (? c2419 p2419 (! c2420 p2420))) -(petri (? c2420 p2420 (! c2421 p2421))) -(petri (? c2421 p2421 (! c2422 p2422))) -(petri (? c2422 p2422 (! c2423 p2423))) -(petri (? c2423 p2423 (! c2424 p2424))) -(petri (? c2424 p2424 (! c2425 p2425))) -(petri (? c2425 p2425 (! c2426 p2426))) -(petri (? c2426 p2426 (! c2427 p2427))) -(petri (? c2427 p2427 (! c2428 p2428))) -(petri (? c2428 p2428 (! c2429 p2429))) -(petri (? c2429 p2429 (! c2430 p2430))) -(petri (? c2430 p2430 (! c2431 p2431))) -(petri (? c2431 p2431 (! c2432 p2432))) -(petri (? c2432 p2432 (! c2433 p2433))) -(petri (? c2433 p2433 (! c2434 p2434))) -(petri (? c2434 p2434 (! c2435 p2435))) -(petri (? c2435 p2435 (! c2436 p2436))) -(petri (? c2436 p2436 (! c2437 p2437))) -(petri (? c2437 p2437 (! c2438 p2438))) -(petri (? c2438 p2438 (! c2439 p2439))) -(petri (? c2439 p2439 (! c2440 p2440))) -(petri (? c2440 p2440 (! c2441 p2441))) -(petri (? c2441 p2441 (! c2442 p2442))) -(petri (? c2442 p2442 (! c2443 p2443))) -(petri (? c2443 p2443 (! c2444 p2444))) -(petri (? c2444 p2444 (! c2445 p2445))) -(petri (? c2445 p2445 (! c2446 p2446))) -(petri (? c2446 p2446 (! c2447 p2447))) -(petri (? c2447 p2447 (! c2448 p2448))) -(petri (? c2448 p2448 (! c2449 p2449))) -(petri (? c2449 p2449 (! c2450 p2450))) -(petri (? c2450 p2450 (! c2451 p2451))) -(petri (? c2451 p2451 (! c2452 p2452))) -(petri (? c2452 p2452 (! c2453 p2453))) -(petri (? c2453 p2453 (! c2454 p2454))) -(petri (? c2454 p2454 (! c2455 p2455))) -(petri (? c2455 p2455 (! c2456 p2456))) -(petri (? c2456 p2456 (! c2457 p2457))) -(petri (? c2457 p2457 (! c2458 p2458))) -(petri (? c2458 p2458 (! c2459 p2459))) -(petri (? c2459 p2459 (! c2460 p2460))) -(petri (? c2460 p2460 (! c2461 p2461))) -(petri (? c2461 p2461 (! c2462 p2462))) -(petri (? c2462 p2462 (! c2463 p2463))) -(petri (? c2463 p2463 (! c2464 p2464))) -(petri (? c2464 p2464 (! c2465 p2465))) -(petri (? c2465 p2465 (! c2466 p2466))) -(petri (? c2466 p2466 (! c2467 p2467))) -(petri (? c2467 p2467 (! c2468 p2468))) -(petri (? c2468 p2468 (! c2469 p2469))) -(petri (? c2469 p2469 (! c2470 p2470))) -(petri (? c2470 p2470 (! c2471 p2471))) -(petri (? c2471 p2471 (! c2472 p2472))) -(petri (? c2472 p2472 (! c2473 p2473))) -(petri (? c2473 p2473 (! c2474 p2474))) -(petri (? c2474 p2474 (! c2475 p2475))) -(petri (? c2475 p2475 (! c2476 p2476))) -(petri (? c2476 p2476 (! c2477 p2477))) -(petri (? c2477 p2477 (! c2478 p2478))) -(petri (? c2478 p2478 (! c2479 p2479))) -(petri (? c2479 p2479 (! c2480 p2480))) -(petri (? c2480 p2480 (! c2481 p2481))) -(petri (? c2481 p2481 (! c2482 p2482))) -(petri (? c2482 p2482 (! c2483 p2483))) -(petri (? c2483 p2483 (! c2484 p2484))) -(petri (? c2484 p2484 (! c2485 p2485))) -(petri (? c2485 p2485 (! c2486 p2486))) -(petri (? c2486 p2486 (! c2487 p2487))) -(petri (? c2487 p2487 (! c2488 p2488))) -(petri (? c2488 p2488 (! c2489 p2489))) -(petri (? c2489 p2489 (! c2490 p2490))) -(petri (? c2490 p2490 (! c2491 p2491))) -(petri (? c2491 p2491 (! c2492 p2492))) -(petri (? c2492 p2492 (! c2493 p2493))) -(petri (? c2493 p2493 (! c2494 p2494))) -(petri (? c2494 p2494 (! c2495 p2495))) -(petri (? c2495 p2495 (! c2496 p2496))) -(petri (? c2496 p2496 (! c2497 p2497))) -(petri (? c2497 p2497 (! c2498 p2498))) -(petri (? c2498 p2498 (! c2499 p2499))) -(petri (? c2499 p2499 (! c2500 p2500))) -(petri (? c2500 p2500 (! c2501 p2501))) -(petri (? c2501 p2501 (! c2502 p2502))) -(petri (? c2502 p2502 (! c2503 p2503))) -(petri (? c2503 p2503 (! c2504 p2504))) -(petri (? c2504 p2504 (! c2505 p2505))) -(petri (? c2505 p2505 (! c2506 p2506))) -(petri (? c2506 p2506 (! c2507 p2507))) -(petri (? c2507 p2507 (! c2508 p2508))) -(petri (? c2508 p2508 (! c2509 p2509))) -(petri (? c2509 p2509 (! c2510 p2510))) -(petri (? c2510 p2510 (! c2511 p2511))) -(petri (? c2511 p2511 (! c2512 p2512))) -(petri (? c2512 p2512 (! c2513 p2513))) -(petri (? c2513 p2513 (! c2514 p2514))) -(petri (? c2514 p2514 (! c2515 p2515))) -(petri (? c2515 p2515 (! c2516 p2516))) -(petri (? c2516 p2516 (! c2517 p2517))) -(petri (? c2517 p2517 (! c2518 p2518))) -(petri (? c2518 p2518 (! c2519 p2519))) -(petri (? c2519 p2519 (! c2520 p2520))) -(petri (? c2520 p2520 (! c2521 p2521))) -(petri (? c2521 p2521 (! c2522 p2522))) -(petri (? c2522 p2522 (! c2523 p2523))) -(petri (? c2523 p2523 (! c2524 p2524))) -(petri (? c2524 p2524 (! c2525 p2525))) -(petri (? c2525 p2525 (! c2526 p2526))) -(petri (? c2526 p2526 (! c2527 p2527))) -(petri (? c2527 p2527 (! c2528 p2528))) -(petri (? c2528 p2528 (! c2529 p2529))) -(petri (? c2529 p2529 (! c2530 p2530))) -(petri (? c2530 p2530 (! c2531 p2531))) -(petri (? c2531 p2531 (! c2532 p2532))) -(petri (? c2532 p2532 (! c2533 p2533))) -(petri (? c2533 p2533 (! c2534 p2534))) -(petri (? c2534 p2534 (! c2535 p2535))) -(petri (? c2535 p2535 (! c2536 p2536))) -(petri (? c2536 p2536 (! c2537 p2537))) -(petri (? c2537 p2537 (! c2538 p2538))) -(petri (? c2538 p2538 (! c2539 p2539))) -(petri (? c2539 p2539 (! c2540 p2540))) -(petri (? c2540 p2540 (! c2541 p2541))) -(petri (? c2541 p2541 (! c2542 p2542))) -(petri (? c2542 p2542 (! c2543 p2543))) -(petri (? c2543 p2543 (! c2544 p2544))) -(petri (? c2544 p2544 (! c2545 p2545))) -(petri (? c2545 p2545 (! c2546 p2546))) -(petri (? c2546 p2546 (! c2547 p2547))) -(petri (? c2547 p2547 (! c2548 p2548))) -(petri (? c2548 p2548 (! c2549 p2549))) -(petri (? c2549 p2549 (! c2550 p2550))) -(petri (? c2550 p2550 (! c2551 p2551))) -(petri (? c2551 p2551 (! c2552 p2552))) -(petri (? c2552 p2552 (! c2553 p2553))) -(petri (? c2553 p2553 (! c2554 p2554))) -(petri (? c2554 p2554 (! c2555 p2555))) -(petri (? c2555 p2555 (! c2556 p2556))) -(petri (? c2556 p2556 (! c2557 p2557))) -(petri (? c2557 p2557 (! c2558 p2558))) -(petri (? c2558 p2558 (! c2559 p2559))) -(petri (? c2559 p2559 (! c2560 p2560))) -(petri (? c2560 p2560 (! c2561 p2561))) -(petri (? c2561 p2561 (! c2562 p2562))) -(petri (? c2562 p2562 (! c2563 p2563))) -(petri (? c2563 p2563 (! c2564 p2564))) -(petri (? c2564 p2564 (! c2565 p2565))) -(petri (? c2565 p2565 (! c2566 p2566))) -(petri (? c2566 p2566 (! c2567 p2567))) -(petri (? c2567 p2567 (! c2568 p2568))) -(petri (? c2568 p2568 (! c2569 p2569))) -(petri (? c2569 p2569 (! c2570 p2570))) -(petri (? c2570 p2570 (! c2571 p2571))) -(petri (? c2571 p2571 (! c2572 p2572))) -(petri (? c2572 p2572 (! c2573 p2573))) -(petri (? c2573 p2573 (! c2574 p2574))) -(petri (? c2574 p2574 (! c2575 p2575))) -(petri (? c2575 p2575 (! c2576 p2576))) -(petri (? c2576 p2576 (! c2577 p2577))) -(petri (? c2577 p2577 (! c2578 p2578))) -(petri (? c2578 p2578 (! c2579 p2579))) -(petri (? c2579 p2579 (! c2580 p2580))) -(petri (? c2580 p2580 (! c2581 p2581))) -(petri (? c2581 p2581 (! c2582 p2582))) -(petri (? c2582 p2582 (! c2583 p2583))) -(petri (? c2583 p2583 (! c2584 p2584))) -(petri (? c2584 p2584 (! c2585 p2585))) -(petri (? c2585 p2585 (! c2586 p2586))) -(petri (? c2586 p2586 (! c2587 p2587))) -(petri (? c2587 p2587 (! c2588 p2588))) -(petri (? c2588 p2588 (! c2589 p2589))) -(petri (? c2589 p2589 (! c2590 p2590))) -(petri (? c2590 p2590 (! c2591 p2591))) -(petri (? c2591 p2591 (! c2592 p2592))) -(petri (? c2592 p2592 (! c2593 p2593))) -(petri (? c2593 p2593 (! c2594 p2594))) -(petri (? c2594 p2594 (! c2595 p2595))) -(petri (? c2595 p2595 (! c2596 p2596))) -(petri (? c2596 p2596 (! c2597 p2597))) -(petri (? c2597 p2597 (! c2598 p2598))) -(petri (? c2598 p2598 (! c2599 p2599))) -(petri (? c2599 p2599 (! c2600 p2600))) -(petri (? c2600 p2600 (! c2601 p2601))) -(petri (? c2601 p2601 (! c2602 p2602))) -(petri (? c2602 p2602 (! c2603 p2603))) -(petri (? c2603 p2603 (! c2604 p2604))) -(petri (? c2604 p2604 (! c2605 p2605))) -(petri (? c2605 p2605 (! c2606 p2606))) -(petri (? c2606 p2606 (! c2607 p2607))) -(petri (? c2607 p2607 (! c2608 p2608))) -(petri (? c2608 p2608 (! c2609 p2609))) -(petri (? c2609 p2609 (! c2610 p2610))) -(petri (? c2610 p2610 (! c2611 p2611))) -(petri (? c2611 p2611 (! c2612 p2612))) -(petri (? c2612 p2612 (! c2613 p2613))) -(petri (? c2613 p2613 (! c2614 p2614))) -(petri (? c2614 p2614 (! c2615 p2615))) -(petri (? c2615 p2615 (! c2616 p2616))) -(petri (? c2616 p2616 (! c2617 p2617))) -(petri (? c2617 p2617 (! c2618 p2618))) -(petri (? c2618 p2618 (! c2619 p2619))) -(petri (? c2619 p2619 (! c2620 p2620))) -(petri (? c2620 p2620 (! c2621 p2621))) -(petri (? c2621 p2621 (! c2622 p2622))) -(petri (? c2622 p2622 (! c2623 p2623))) -(petri (? c2623 p2623 (! c2624 p2624))) -(petri (? c2624 p2624 (! c2625 p2625))) -(petri (? c2625 p2625 (! c2626 p2626))) -(petri (? c2626 p2626 (! c2627 p2627))) -(petri (? c2627 p2627 (! c2628 p2628))) -(petri (? c2628 p2628 (! c2629 p2629))) -(petri (? c2629 p2629 (! c2630 p2630))) -(petri (? c2630 p2630 (! c2631 p2631))) -(petri (? c2631 p2631 (! c2632 p2632))) -(petri (? c2632 p2632 (! c2633 p2633))) -(petri (? c2633 p2633 (! c2634 p2634))) -(petri (? c2634 p2634 (! c2635 p2635))) -(petri (? c2635 p2635 (! c2636 p2636))) -(petri (? c2636 p2636 (! c2637 p2637))) -(petri (? c2637 p2637 (! c2638 p2638))) -(petri (? c2638 p2638 (! c2639 p2639))) -(petri (? c2639 p2639 (! c2640 p2640))) -(petri (? c2640 p2640 (! c2641 p2641))) -(petri (? c2641 p2641 (! c2642 p2642))) -(petri (? c2642 p2642 (! c2643 p2643))) -(petri (? c2643 p2643 (! c2644 p2644))) -(petri (? c2644 p2644 (! c2645 p2645))) -(petri (? c2645 p2645 (! c2646 p2646))) -(petri (? c2646 p2646 (! c2647 p2647))) -(petri (? c2647 p2647 (! c2648 p2648))) -(petri (? c2648 p2648 (! c2649 p2649))) -(petri (? c2649 p2649 (! c2650 p2650))) -(petri (? c2650 p2650 (! c2651 p2651))) -(petri (? c2651 p2651 (! c2652 p2652))) -(petri (? c2652 p2652 (! c2653 p2653))) -(petri (? c2653 p2653 (! c2654 p2654))) -(petri (? c2654 p2654 (! c2655 p2655))) -(petri (? c2655 p2655 (! c2656 p2656))) -(petri (? c2656 p2656 (! c2657 p2657))) -(petri (? c2657 p2657 (! c2658 p2658))) -(petri (? c2658 p2658 (! c2659 p2659))) -(petri (? c2659 p2659 (! c2660 p2660))) -(petri (? c2660 p2660 (! c2661 p2661))) -(petri (? c2661 p2661 (! c2662 p2662))) -(petri (? c2662 p2662 (! c2663 p2663))) -(petri (? c2663 p2663 (! c2664 p2664))) -(petri (? c2664 p2664 (! c2665 p2665))) -(petri (? c2665 p2665 (! c2666 p2666))) -(petri (? c2666 p2666 (! c2667 p2667))) -(petri (? c2667 p2667 (! c2668 p2668))) -(petri (? c2668 p2668 (! c2669 p2669))) -(petri (? c2669 p2669 (! c2670 p2670))) -(petri (? c2670 p2670 (! c2671 p2671))) -(petri (? c2671 p2671 (! c2672 p2672))) -(petri (? c2672 p2672 (! c2673 p2673))) -(petri (? c2673 p2673 (! c2674 p2674))) -(petri (? c2674 p2674 (! c2675 p2675))) -(petri (? c2675 p2675 (! c2676 p2676))) -(petri (? c2676 p2676 (! c2677 p2677))) -(petri (? c2677 p2677 (! c2678 p2678))) -(petri (? c2678 p2678 (! c2679 p2679))) -(petri (? c2679 p2679 (! c2680 p2680))) -(petri (? c2680 p2680 (! c2681 p2681))) -(petri (? c2681 p2681 (! c2682 p2682))) -(petri (? c2682 p2682 (! c2683 p2683))) -(petri (? c2683 p2683 (! c2684 p2684))) -(petri (? c2684 p2684 (! c2685 p2685))) -(petri (? c2685 p2685 (! c2686 p2686))) -(petri (? c2686 p2686 (! c2687 p2687))) -(petri (? c2687 p2687 (! c2688 p2688))) -(petri (? c2688 p2688 (! c2689 p2689))) -(petri (? c2689 p2689 (! c2690 p2690))) -(petri (? c2690 p2690 (! c2691 p2691))) -(petri (? c2691 p2691 (! c2692 p2692))) -(petri (? c2692 p2692 (! c2693 p2693))) -(petri (? c2693 p2693 (! c2694 p2694))) -(petri (? c2694 p2694 (! c2695 p2695))) -(petri (? c2695 p2695 (! c2696 p2696))) -(petri (? c2696 p2696 (! c2697 p2697))) -(petri (? c2697 p2697 (! c2698 p2698))) -(petri (? c2698 p2698 (! c2699 p2699))) -(petri (? c2699 p2699 (! c2700 p2700))) -(petri (? c2700 p2700 (! c2701 p2701))) -(petri (? c2701 p2701 (! c2702 p2702))) -(petri (? c2702 p2702 (! c2703 p2703))) -(petri (? c2703 p2703 (! c2704 p2704))) -(petri (? c2704 p2704 (! c2705 p2705))) -(petri (? c2705 p2705 (! c2706 p2706))) -(petri (? c2706 p2706 (! c2707 p2707))) -(petri (? c2707 p2707 (! c2708 p2708))) -(petri (? c2708 p2708 (! c2709 p2709))) -(petri (? c2709 p2709 (! c2710 p2710))) -(petri (? c2710 p2710 (! c2711 p2711))) -(petri (? c2711 p2711 (! c2712 p2712))) -(petri (? c2712 p2712 (! c2713 p2713))) -(petri (? c2713 p2713 (! c2714 p2714))) -(petri (? c2714 p2714 (! c2715 p2715))) -(petri (? c2715 p2715 (! c2716 p2716))) -(petri (? c2716 p2716 (! c2717 p2717))) -(petri (? c2717 p2717 (! c2718 p2718))) -(petri (? c2718 p2718 (! c2719 p2719))) -(petri (? c2719 p2719 (! c2720 p2720))) -(petri (? c2720 p2720 (! c2721 p2721))) -(petri (? c2721 p2721 (! c2722 p2722))) -(petri (? c2722 p2722 (! c2723 p2723))) -(petri (? c2723 p2723 (! c2724 p2724))) -(petri (? c2724 p2724 (! c2725 p2725))) -(petri (? c2725 p2725 (! c2726 p2726))) -(petri (? c2726 p2726 (! c2727 p2727))) -(petri (? c2727 p2727 (! c2728 p2728))) -(petri (? c2728 p2728 (! c2729 p2729))) -(petri (? c2729 p2729 (! c2730 p2730))) -(petri (? c2730 p2730 (! c2731 p2731))) -(petri (? c2731 p2731 (! c2732 p2732))) -(petri (? c2732 p2732 (! c2733 p2733))) -(petri (? c2733 p2733 (! c2734 p2734))) -(petri (? c2734 p2734 (! c2735 p2735))) -(petri (? c2735 p2735 (! c2736 p2736))) -(petri (? c2736 p2736 (! c2737 p2737))) -(petri (? c2737 p2737 (! c2738 p2738))) -(petri (? c2738 p2738 (! c2739 p2739))) -(petri (? c2739 p2739 (! c2740 p2740))) -(petri (? c2740 p2740 (! c2741 p2741))) -(petri (? c2741 p2741 (! c2742 p2742))) -(petri (? c2742 p2742 (! c2743 p2743))) -(petri (? c2743 p2743 (! c2744 p2744))) -(petri (? c2744 p2744 (! c2745 p2745))) -(petri (? c2745 p2745 (! c2746 p2746))) -(petri (? c2746 p2746 (! c2747 p2747))) -(petri (? c2747 p2747 (! c2748 p2748))) -(petri (? c2748 p2748 (! c2749 p2749))) -(petri (? c2749 p2749 (! c2750 p2750))) -(petri (? c2750 p2750 (! c2751 p2751))) -(petri (? c2751 p2751 (! c2752 p2752))) -(petri (? c2752 p2752 (! c2753 p2753))) -(petri (? c2753 p2753 (! c2754 p2754))) -(petri (? c2754 p2754 (! c2755 p2755))) -(petri (? c2755 p2755 (! c2756 p2756))) -(petri (? c2756 p2756 (! c2757 p2757))) -(petri (? c2757 p2757 (! c2758 p2758))) -(petri (? c2758 p2758 (! c2759 p2759))) -(petri (? c2759 p2759 (! c2760 p2760))) -(petri (? c2760 p2760 (! c2761 p2761))) -(petri (? c2761 p2761 (! c2762 p2762))) -(petri (? c2762 p2762 (! c2763 p2763))) -(petri (? c2763 p2763 (! c2764 p2764))) -(petri (? c2764 p2764 (! c2765 p2765))) -(petri (? c2765 p2765 (! c2766 p2766))) -(petri (? c2766 p2766 (! c2767 p2767))) -(petri (? c2767 p2767 (! c2768 p2768))) -(petri (? c2768 p2768 (! c2769 p2769))) -(petri (? c2769 p2769 (! c2770 p2770))) -(petri (? c2770 p2770 (! c2771 p2771))) -(petri (? c2771 p2771 (! c2772 p2772))) -(petri (? c2772 p2772 (! c2773 p2773))) -(petri (? c2773 p2773 (! c2774 p2774))) -(petri (? c2774 p2774 (! c2775 p2775))) -(petri (? c2775 p2775 (! c2776 p2776))) -(petri (? c2776 p2776 (! c2777 p2777))) -(petri (? c2777 p2777 (! c2778 p2778))) -(petri (? c2778 p2778 (! c2779 p2779))) -(petri (? c2779 p2779 (! c2780 p2780))) -(petri (? c2780 p2780 (! c2781 p2781))) -(petri (? c2781 p2781 (! c2782 p2782))) -(petri (? c2782 p2782 (! c2783 p2783))) -(petri (? c2783 p2783 (! c2784 p2784))) -(petri (? c2784 p2784 (! c2785 p2785))) -(petri (? c2785 p2785 (! c2786 p2786))) -(petri (? c2786 p2786 (! c2787 p2787))) -(petri (? c2787 p2787 (! c2788 p2788))) -(petri (? c2788 p2788 (! c2789 p2789))) -(petri (? c2789 p2789 (! c2790 p2790))) -(petri (? c2790 p2790 (! c2791 p2791))) -(petri (? c2791 p2791 (! c2792 p2792))) -(petri (? c2792 p2792 (! c2793 p2793))) -(petri (? c2793 p2793 (! c2794 p2794))) -(petri (? c2794 p2794 (! c2795 p2795))) -(petri (? c2795 p2795 (! c2796 p2796))) -(petri (? c2796 p2796 (! c2797 p2797))) -(petri (? c2797 p2797 (! c2798 p2798))) -(petri (? c2798 p2798 (! c2799 p2799))) -(petri (? c2799 p2799 (! c2800 p2800))) -(petri (? c2800 p2800 (! c2801 p2801))) -(petri (? c2801 p2801 (! c2802 p2802))) -(petri (? c2802 p2802 (! c2803 p2803))) -(petri (? c2803 p2803 (! c2804 p2804))) -(petri (? c2804 p2804 (! c2805 p2805))) -(petri (? c2805 p2805 (! c2806 p2806))) -(petri (? c2806 p2806 (! c2807 p2807))) -(petri (? c2807 p2807 (! c2808 p2808))) -(petri (? c2808 p2808 (! c2809 p2809))) -(petri (? c2809 p2809 (! c2810 p2810))) -(petri (? c2810 p2810 (! c2811 p2811))) -(petri (? c2811 p2811 (! c2812 p2812))) -(petri (? c2812 p2812 (! c2813 p2813))) -(petri (? c2813 p2813 (! c2814 p2814))) -(petri (? c2814 p2814 (! c2815 p2815))) -(petri (? c2815 p2815 (! c2816 p2816))) -(petri (? c2816 p2816 (! c2817 p2817))) -(petri (? c2817 p2817 (! c2818 p2818))) -(petri (? c2818 p2818 (! c2819 p2819))) -(petri (? c2819 p2819 (! c2820 p2820))) -(petri (? c2820 p2820 (! c2821 p2821))) -(petri (? c2821 p2821 (! c2822 p2822))) -(petri (? c2822 p2822 (! c2823 p2823))) -(petri (? c2823 p2823 (! c2824 p2824))) -(petri (? c2824 p2824 (! c2825 p2825))) -(petri (? c2825 p2825 (! c2826 p2826))) -(petri (? c2826 p2826 (! c2827 p2827))) -(petri (? c2827 p2827 (! c2828 p2828))) -(petri (? c2828 p2828 (! c2829 p2829))) -(petri (? c2829 p2829 (! c2830 p2830))) -(petri (? c2830 p2830 (! c2831 p2831))) -(petri (? c2831 p2831 (! c2832 p2832))) -(petri (? c2832 p2832 (! c2833 p2833))) -(petri (? c2833 p2833 (! c2834 p2834))) -(petri (? c2834 p2834 (! c2835 p2835))) -(petri (? c2835 p2835 (! c2836 p2836))) -(petri (? c2836 p2836 (! c2837 p2837))) -(petri (? c2837 p2837 (! c2838 p2838))) -(petri (? c2838 p2838 (! c2839 p2839))) -(petri (? c2839 p2839 (! c2840 p2840))) -(petri (? c2840 p2840 (! c2841 p2841))) -(petri (? c2841 p2841 (! c2842 p2842))) -(petri (? c2842 p2842 (! c2843 p2843))) -(petri (? c2843 p2843 (! c2844 p2844))) -(petri (? c2844 p2844 (! c2845 p2845))) -(petri (? c2845 p2845 (! c2846 p2846))) -(petri (? c2846 p2846 (! c2847 p2847))) -(petri (? c2847 p2847 (! c2848 p2848))) -(petri (? c2848 p2848 (! c2849 p2849))) -(petri (? c2849 p2849 (! c2850 p2850))) -(petri (? c2850 p2850 (! c2851 p2851))) -(petri (? c2851 p2851 (! c2852 p2852))) -(petri (? c2852 p2852 (! c2853 p2853))) -(petri (? c2853 p2853 (! c2854 p2854))) -(petri (? c2854 p2854 (! c2855 p2855))) -(petri (? c2855 p2855 (! c2856 p2856))) -(petri (? c2856 p2856 (! c2857 p2857))) -(petri (? c2857 p2857 (! c2858 p2858))) -(petri (? c2858 p2858 (! c2859 p2859))) -(petri (? c2859 p2859 (! c2860 p2860))) -(petri (? c2860 p2860 (! c2861 p2861))) -(petri (? c2861 p2861 (! c2862 p2862))) -(petri (? c2862 p2862 (! c2863 p2863))) -(petri (? c2863 p2863 (! c2864 p2864))) -(petri (? c2864 p2864 (! c2865 p2865))) -(petri (? c2865 p2865 (! c2866 p2866))) -(petri (? c2866 p2866 (! c2867 p2867))) -(petri (? c2867 p2867 (! c2868 p2868))) -(petri (? c2868 p2868 (! c2869 p2869))) -(petri (? c2869 p2869 (! c2870 p2870))) -(petri (? c2870 p2870 (! c2871 p2871))) -(petri (? c2871 p2871 (! c2872 p2872))) -(petri (? c2872 p2872 (! c2873 p2873))) -(petri (? c2873 p2873 (! c2874 p2874))) -(petri (? c2874 p2874 (! c2875 p2875))) -(petri (? c2875 p2875 (! c2876 p2876))) -(petri (? c2876 p2876 (! c2877 p2877))) -(petri (? c2877 p2877 (! c2878 p2878))) -(petri (? c2878 p2878 (! c2879 p2879))) -(petri (? c2879 p2879 (! c2880 p2880))) -(petri (? c2880 p2880 (! c2881 p2881))) -(petri (? c2881 p2881 (! c2882 p2882))) -(petri (? c2882 p2882 (! c2883 p2883))) -(petri (? c2883 p2883 (! c2884 p2884))) -(petri (? c2884 p2884 (! c2885 p2885))) -(petri (? c2885 p2885 (! c2886 p2886))) -(petri (? c2886 p2886 (! c2887 p2887))) -(petri (? c2887 p2887 (! c2888 p2888))) -(petri (? c2888 p2888 (! c2889 p2889))) -(petri (? c2889 p2889 (! c2890 p2890))) -(petri (? c2890 p2890 (! c2891 p2891))) -(petri (? c2891 p2891 (! c2892 p2892))) -(petri (? c2892 p2892 (! c2893 p2893))) -(petri (? c2893 p2893 (! c2894 p2894))) -(petri (? c2894 p2894 (! c2895 p2895))) -(petri (? c2895 p2895 (! c2896 p2896))) -(petri (? c2896 p2896 (! c2897 p2897))) -(petri (? c2897 p2897 (! c2898 p2898))) -(petri (? c2898 p2898 (! c2899 p2899))) -(petri (? c2899 p2899 (! c2900 p2900))) -(petri (? c2900 p2900 (! c2901 p2901))) -(petri (? c2901 p2901 (! c2902 p2902))) -(petri (? c2902 p2902 (! c2903 p2903))) -(petri (? c2903 p2903 (! c2904 p2904))) -(petri (? c2904 p2904 (! c2905 p2905))) -(petri (? c2905 p2905 (! c2906 p2906))) -(petri (? c2906 p2906 (! c2907 p2907))) -(petri (? c2907 p2907 (! c2908 p2908))) -(petri (? c2908 p2908 (! c2909 p2909))) -(petri (? c2909 p2909 (! c2910 p2910))) -(petri (? c2910 p2910 (! c2911 p2911))) -(petri (? c2911 p2911 (! c2912 p2912))) -(petri (? c2912 p2912 (! c2913 p2913))) -(petri (? c2913 p2913 (! c2914 p2914))) -(petri (? c2914 p2914 (! c2915 p2915))) -(petri (? c2915 p2915 (! c2916 p2916))) -(petri (? c2916 p2916 (! c2917 p2917))) -(petri (? c2917 p2917 (! c2918 p2918))) -(petri (? c2918 p2918 (! c2919 p2919))) -(petri (? c2919 p2919 (! c2920 p2920))) -(petri (? c2920 p2920 (! c2921 p2921))) -(petri (? c2921 p2921 (! c2922 p2922))) -(petri (? c2922 p2922 (! c2923 p2923))) -(petri (? c2923 p2923 (! c2924 p2924))) -(petri (? c2924 p2924 (! c2925 p2925))) -(petri (? c2925 p2925 (! c2926 p2926))) -(petri (? c2926 p2926 (! c2927 p2927))) -(petri (? c2927 p2927 (! c2928 p2928))) -(petri (? c2928 p2928 (! c2929 p2929))) -(petri (? c2929 p2929 (! c2930 p2930))) -(petri (? c2930 p2930 (! c2931 p2931))) -(petri (? c2931 p2931 (! c2932 p2932))) -(petri (? c2932 p2932 (! c2933 p2933))) -(petri (? c2933 p2933 (! c2934 p2934))) -(petri (? c2934 p2934 (! c2935 p2935))) -(petri (? c2935 p2935 (! c2936 p2936))) -(petri (? c2936 p2936 (! c2937 p2937))) -(petri (? c2937 p2937 (! c2938 p2938))) -(petri (? c2938 p2938 (! c2939 p2939))) -(petri (? c2939 p2939 (! c2940 p2940))) -(petri (? c2940 p2940 (! c2941 p2941))) -(petri (? c2941 p2941 (! c2942 p2942))) -(petri (? c2942 p2942 (! c2943 p2943))) -(petri (? c2943 p2943 (! c2944 p2944))) -(petri (? c2944 p2944 (! c2945 p2945))) -(petri (? c2945 p2945 (! c2946 p2946))) -(petri (? c2946 p2946 (! c2947 p2947))) -(petri (? c2947 p2947 (! c2948 p2948))) -(petri (? c2948 p2948 (! c2949 p2949))) -(petri (? c2949 p2949 (! c2950 p2950))) -(petri (? c2950 p2950 (! c2951 p2951))) -(petri (? c2951 p2951 (! c2952 p2952))) -(petri (? c2952 p2952 (! c2953 p2953))) -(petri (? c2953 p2953 (! c2954 p2954))) -(petri (? c2954 p2954 (! c2955 p2955))) -(petri (? c2955 p2955 (! c2956 p2956))) -(petri (? c2956 p2956 (! c2957 p2957))) -(petri (? c2957 p2957 (! c2958 p2958))) -(petri (? c2958 p2958 (! c2959 p2959))) -(petri (? c2959 p2959 (! c2960 p2960))) -(petri (? c2960 p2960 (! c2961 p2961))) -(petri (? c2961 p2961 (! c2962 p2962))) -(petri (? c2962 p2962 (! c2963 p2963))) -(petri (? c2963 p2963 (! c2964 p2964))) -(petri (? c2964 p2964 (! c2965 p2965))) -(petri (? c2965 p2965 (! c2966 p2966))) -(petri (? c2966 p2966 (! c2967 p2967))) -(petri (? c2967 p2967 (! c2968 p2968))) -(petri (? c2968 p2968 (! c2969 p2969))) -(petri (? c2969 p2969 (! c2970 p2970))) -(petri (? c2970 p2970 (! c2971 p2971))) -(petri (? c2971 p2971 (! c2972 p2972))) -(petri (? c2972 p2972 (! c2973 p2973))) -(petri (? c2973 p2973 (! c2974 p2974))) -(petri (? c2974 p2974 (! c2975 p2975))) -(petri (? c2975 p2975 (! c2976 p2976))) -(petri (? c2976 p2976 (! c2977 p2977))) -(petri (? c2977 p2977 (! c2978 p2978))) -(petri (? c2978 p2978 (! c2979 p2979))) -(petri (? c2979 p2979 (! c2980 p2980))) -(petri (? c2980 p2980 (! c2981 p2981))) -(petri (? c2981 p2981 (! c2982 p2982))) -(petri (? c2982 p2982 (! c2983 p2983))) -(petri (? c2983 p2983 (! c2984 p2984))) -(petri (? c2984 p2984 (! c2985 p2985))) -(petri (? c2985 p2985 (! c2986 p2986))) -(petri (? c2986 p2986 (! c2987 p2987))) -(petri (? c2987 p2987 (! c2988 p2988))) -(petri (? c2988 p2988 (! c2989 p2989))) -(petri (? c2989 p2989 (! c2990 p2990))) -(petri (? c2990 p2990 (! c2991 p2991))) -(petri (? c2991 p2991 (! c2992 p2992))) -(petri (? c2992 p2992 (! c2993 p2993))) -(petri (? c2993 p2993 (! c2994 p2994))) -(petri (? c2994 p2994 (! c2995 p2995))) -(petri (? c2995 p2995 (! c2996 p2996))) -(petri (? c2996 p2996 (! c2997 p2997))) -(petri (? c2997 p2997 (! c2998 p2998))) -(petri (? c2998 p2998 (! c2999 p2999))) -(petri (? c2999 p2999 (! c3000 p3000))) -(petri (? c3000 p3000 (! c3001 p3001))) -(petri (? c3001 p3001 (! c3002 p3002))) -(petri (? c3002 p3002 (! c3003 p3003))) -(petri (? c3003 p3003 (! c3004 p3004))) -(petri (? c3004 p3004 (! c3005 p3005))) -(petri (? c3005 p3005 (! c3006 p3006))) -(petri (? c3006 p3006 (! c3007 p3007))) -(petri (? c3007 p3007 (! c3008 p3008))) -(petri (? c3008 p3008 (! c3009 p3009))) -(petri (? c3009 p3009 (! c3010 p3010))) -(petri (? c3010 p3010 (! c3011 p3011))) -(petri (? c3011 p3011 (! c3012 p3012))) -(petri (? c3012 p3012 (! c3013 p3013))) -(petri (? c3013 p3013 (! c3014 p3014))) -(petri (? c3014 p3014 (! c3015 p3015))) -(petri (? c3015 p3015 (! c3016 p3016))) -(petri (? c3016 p3016 (! c3017 p3017))) -(petri (? c3017 p3017 (! c3018 p3018))) -(petri (? c3018 p3018 (! c3019 p3019))) -(petri (? c3019 p3019 (! c3020 p3020))) -(petri (? c3020 p3020 (! c3021 p3021))) -(petri (? c3021 p3021 (! c3022 p3022))) -(petri (? c3022 p3022 (! c3023 p3023))) -(petri (? c3023 p3023 (! c3024 p3024))) -(petri (? c3024 p3024 (! c3025 p3025))) -(petri (? c3025 p3025 (! c3026 p3026))) -(petri (? c3026 p3026 (! c3027 p3027))) -(petri (? c3027 p3027 (! c3028 p3028))) -(petri (? c3028 p3028 (! c3029 p3029))) -(petri (? c3029 p3029 (! c3030 p3030))) -(petri (? c3030 p3030 (! c3031 p3031))) -(petri (? c3031 p3031 (! c3032 p3032))) -(petri (? c3032 p3032 (! c3033 p3033))) -(petri (? c3033 p3033 (! c3034 p3034))) -(petri (? c3034 p3034 (! c3035 p3035))) -(petri (? c3035 p3035 (! c3036 p3036))) -(petri (? c3036 p3036 (! c3037 p3037))) -(petri (? c3037 p3037 (! c3038 p3038))) -(petri (? c3038 p3038 (! c3039 p3039))) -(petri (? c3039 p3039 (! c3040 p3040))) -(petri (? c3040 p3040 (! c3041 p3041))) -(petri (? c3041 p3041 (! c3042 p3042))) -(petri (? c3042 p3042 (! c3043 p3043))) -(petri (? c3043 p3043 (! c3044 p3044))) -(petri (? c3044 p3044 (! c3045 p3045))) -(petri (? c3045 p3045 (! c3046 p3046))) -(petri (? c3046 p3046 (! c3047 p3047))) -(petri (? c3047 p3047 (! c3048 p3048))) -(petri (? c3048 p3048 (! c3049 p3049))) -(petri (? c3049 p3049 (! c3050 p3050))) -(petri (? c3050 p3050 (! c3051 p3051))) -(petri (? c3051 p3051 (! c3052 p3052))) -(petri (? c3052 p3052 (! c3053 p3053))) -(petri (? c3053 p3053 (! c3054 p3054))) -(petri (? c3054 p3054 (! c3055 p3055))) -(petri (? c3055 p3055 (! c3056 p3056))) -(petri (? c3056 p3056 (! c3057 p3057))) -(petri (? c3057 p3057 (! c3058 p3058))) -(petri (? c3058 p3058 (! c3059 p3059))) -(petri (? c3059 p3059 (! c3060 p3060))) -(petri (? c3060 p3060 (! c3061 p3061))) -(petri (? c3061 p3061 (! c3062 p3062))) -(petri (? c3062 p3062 (! c3063 p3063))) -(petri (? c3063 p3063 (! c3064 p3064))) -(petri (? c3064 p3064 (! c3065 p3065))) -(petri (? c3065 p3065 (! c3066 p3066))) -(petri (? c3066 p3066 (! c3067 p3067))) -(petri (? c3067 p3067 (! c3068 p3068))) -(petri (? c3068 p3068 (! c3069 p3069))) -(petri (? c3069 p3069 (! c3070 p3070))) -(petri (? c3070 p3070 (! c3071 p3071))) -(petri (? c3071 p3071 (! c3072 p3072))) -(petri (? c3072 p3072 (! c3073 p3073))) -(petri (? c3073 p3073 (! c3074 p3074))) -(petri (? c3074 p3074 (! c3075 p3075))) -(petri (? c3075 p3075 (! c3076 p3076))) -(petri (? c3076 p3076 (! c3077 p3077))) -(petri (? c3077 p3077 (! c3078 p3078))) -(petri (? c3078 p3078 (! c3079 p3079))) -(petri (? c3079 p3079 (! c3080 p3080))) -(petri (? c3080 p3080 (! c3081 p3081))) -(petri (? c3081 p3081 (! c3082 p3082))) -(petri (? c3082 p3082 (! c3083 p3083))) -(petri (? c3083 p3083 (! c3084 p3084))) -(petri (? c3084 p3084 (! c3085 p3085))) -(petri (? c3085 p3085 (! c3086 p3086))) -(petri (? c3086 p3086 (! c3087 p3087))) -(petri (? c3087 p3087 (! c3088 p3088))) -(petri (? c3088 p3088 (! c3089 p3089))) -(petri (? c3089 p3089 (! c3090 p3090))) -(petri (? c3090 p3090 (! c3091 p3091))) -(petri (? c3091 p3091 (! c3092 p3092))) -(petri (? c3092 p3092 (! c3093 p3093))) -(petri (? c3093 p3093 (! c3094 p3094))) -(petri (? c3094 p3094 (! c3095 p3095))) -(petri (? c3095 p3095 (! c3096 p3096))) -(petri (? c3096 p3096 (! c3097 p3097))) -(petri (? c3097 p3097 (! c3098 p3098))) -(petri (? c3098 p3098 (! c3099 p3099))) -(petri (? c3099 p3099 (! c3100 p3100))) -(petri (? c3100 p3100 (! c3101 p3101))) -(petri (? c3101 p3101 (! c3102 p3102))) -(petri (? c3102 p3102 (! c3103 p3103))) -(petri (? c3103 p3103 (! c3104 p3104))) -(petri (? c3104 p3104 (! c3105 p3105))) -(petri (? c3105 p3105 (! c3106 p3106))) -(petri (? c3106 p3106 (! c3107 p3107))) -(petri (? c3107 p3107 (! c3108 p3108))) -(petri (? c3108 p3108 (! c3109 p3109))) -(petri (? c3109 p3109 (! c3110 p3110))) -(petri (? c3110 p3110 (! c3111 p3111))) -(petri (? c3111 p3111 (! c3112 p3112))) -(petri (? c3112 p3112 (! c3113 p3113))) -(petri (? c3113 p3113 (! c3114 p3114))) -(petri (? c3114 p3114 (! c3115 p3115))) -(petri (? c3115 p3115 (! c3116 p3116))) -(petri (? c3116 p3116 (! c3117 p3117))) -(petri (? c3117 p3117 (! c3118 p3118))) -(petri (? c3118 p3118 (! c3119 p3119))) -(petri (? c3119 p3119 (! c3120 p3120))) -(petri (? c3120 p3120 (! c3121 p3121))) -(petri (? c3121 p3121 (! c3122 p3122))) -(petri (? c3122 p3122 (! c3123 p3123))) -(petri (? c3123 p3123 (! c3124 p3124))) -(petri (? c3124 p3124 (! c3125 p3125))) -(petri (? c3125 p3125 (! c3126 p3126))) -(petri (? c3126 p3126 (! c3127 p3127))) -(petri (? c3127 p3127 (! c3128 p3128))) -(petri (? c3128 p3128 (! c3129 p3129))) -(petri (? c3129 p3129 (! c3130 p3130))) -(petri (? c3130 p3130 (! c3131 p3131))) -(petri (? c3131 p3131 (! c3132 p3132))) -(petri (? c3132 p3132 (! c3133 p3133))) -(petri (? c3133 p3133 (! c3134 p3134))) -(petri (? c3134 p3134 (! c3135 p3135))) -(petri (? c3135 p3135 (! c3136 p3136))) -(petri (? c3136 p3136 (! c3137 p3137))) -(petri (? c3137 p3137 (! c3138 p3138))) -(petri (? c3138 p3138 (! c3139 p3139))) -(petri (? c3139 p3139 (! c3140 p3140))) -(petri (? c3140 p3140 (! c3141 p3141))) -(petri (? c3141 p3141 (! c3142 p3142))) -(petri (? c3142 p3142 (! c3143 p3143))) -(petri (? c3143 p3143 (! c3144 p3144))) -(petri (? c3144 p3144 (! c3145 p3145))) -(petri (? c3145 p3145 (! c3146 p3146))) -(petri (? c3146 p3146 (! c3147 p3147))) -(petri (? c3147 p3147 (! c3148 p3148))) -(petri (? c3148 p3148 (! c3149 p3149))) -(petri (? c3149 p3149 (! c3150 p3150))) -(petri (? c3150 p3150 (! c3151 p3151))) -(petri (? c3151 p3151 (! c3152 p3152))) -(petri (? c3152 p3152 (! c3153 p3153))) -(petri (? c3153 p3153 (! c3154 p3154))) -(petri (? c3154 p3154 (! c3155 p3155))) -(petri (? c3155 p3155 (! c3156 p3156))) -(petri (? c3156 p3156 (! c3157 p3157))) -(petri (? c3157 p3157 (! c3158 p3158))) -(petri (? c3158 p3158 (! c3159 p3159))) -(petri (? c3159 p3159 (! c3160 p3160))) -(petri (? c3160 p3160 (! c3161 p3161))) -(petri (? c3161 p3161 (! c3162 p3162))) -(petri (? c3162 p3162 (! c3163 p3163))) -(petri (? c3163 p3163 (! c3164 p3164))) -(petri (? c3164 p3164 (! c3165 p3165))) -(petri (? c3165 p3165 (! c3166 p3166))) -(petri (? c3166 p3166 (! c3167 p3167))) -(petri (? c3167 p3167 (! c3168 p3168))) -(petri (? c3168 p3168 (! c3169 p3169))) -(petri (? c3169 p3169 (! c3170 p3170))) -(petri (? c3170 p3170 (! c3171 p3171))) -(petri (? c3171 p3171 (! c3172 p3172))) -(petri (? c3172 p3172 (! c3173 p3173))) -(petri (? c3173 p3173 (! c3174 p3174))) -(petri (? c3174 p3174 (! c3175 p3175))) -(petri (? c3175 p3175 (! c3176 p3176))) -(petri (? c3176 p3176 (! c3177 p3177))) -(petri (? c3177 p3177 (! c3178 p3178))) -(petri (? c3178 p3178 (! c3179 p3179))) -(petri (? c3179 p3179 (! c3180 p3180))) -(petri (? c3180 p3180 (! c3181 p3181))) -(petri (? c3181 p3181 (! c3182 p3182))) -(petri (? c3182 p3182 (! c3183 p3183))) -(petri (? c3183 p3183 (! c3184 p3184))) -(petri (? c3184 p3184 (! c3185 p3185))) -(petri (? c3185 p3185 (! c3186 p3186))) -(petri (? c3186 p3186 (! c3187 p3187))) -(petri (? c3187 p3187 (! c3188 p3188))) -(petri (? c3188 p3188 (! c3189 p3189))) -(petri (? c3189 p3189 (! c3190 p3190))) -(petri (? c3190 p3190 (! c3191 p3191))) -(petri (? c3191 p3191 (! c3192 p3192))) -(petri (? c3192 p3192 (! c3193 p3193))) -(petri (? c3193 p3193 (! c3194 p3194))) -(petri (? c3194 p3194 (! c3195 p3195))) -(petri (? c3195 p3195 (! c3196 p3196))) -(petri (? c3196 p3196 (! c3197 p3197))) -(petri (? c3197 p3197 (! c3198 p3198))) -(petri (? c3198 p3198 (! c3199 p3199))) -(petri (? c3199 p3199 (! c3200 p3200))) -(petri (? c3200 p3200 (! c3201 p3201))) -(petri (? c3201 p3201 (! c3202 p3202))) -(petri (? c3202 p3202 (! c3203 p3203))) -(petri (? c3203 p3203 (! c3204 p3204))) -(petri (? c3204 p3204 (! c3205 p3205))) -(petri (? c3205 p3205 (! c3206 p3206))) -(petri (? c3206 p3206 (! c3207 p3207))) -(petri (? c3207 p3207 (! c3208 p3208))) -(petri (? c3208 p3208 (! c3209 p3209))) -(petri (? c3209 p3209 (! c3210 p3210))) -(petri (? c3210 p3210 (! c3211 p3211))) -(petri (? c3211 p3211 (! c3212 p3212))) -(petri (? c3212 p3212 (! c3213 p3213))) -(petri (? c3213 p3213 (! c3214 p3214))) -(petri (? c3214 p3214 (! c3215 p3215))) -(petri (? c3215 p3215 (! c3216 p3216))) -(petri (? c3216 p3216 (! c3217 p3217))) -(petri (? c3217 p3217 (! c3218 p3218))) -(petri (? c3218 p3218 (! c3219 p3219))) -(petri (? c3219 p3219 (! c3220 p3220))) -(petri (? c3220 p3220 (! c3221 p3221))) -(petri (? c3221 p3221 (! c3222 p3222))) -(petri (? c3222 p3222 (! c3223 p3223))) -(petri (? c3223 p3223 (! c3224 p3224))) -(petri (? c3224 p3224 (! c3225 p3225))) -(petri (? c3225 p3225 (! c3226 p3226))) -(petri (? c3226 p3226 (! c3227 p3227))) -(petri (? c3227 p3227 (! c3228 p3228))) -(petri (? c3228 p3228 (! c3229 p3229))) -(petri (? c3229 p3229 (! c3230 p3230))) -(petri (? c3230 p3230 (! c3231 p3231))) -(petri (? c3231 p3231 (! c3232 p3232))) -(petri (? c3232 p3232 (! c3233 p3233))) -(petri (? c3233 p3233 (! c3234 p3234))) -(petri (? c3234 p3234 (! c3235 p3235))) -(petri (? c3235 p3235 (! c3236 p3236))) -(petri (? c3236 p3236 (! c3237 p3237))) -(petri (? c3237 p3237 (! c3238 p3238))) -(petri (? c3238 p3238 (! c3239 p3239))) -(petri (? c3239 p3239 (! c3240 p3240))) -(petri (? c3240 p3240 (! c3241 p3241))) -(petri (? c3241 p3241 (! c3242 p3242))) -(petri (? c3242 p3242 (! c3243 p3243))) -(petri (? c3243 p3243 (! c3244 p3244))) -(petri (? c3244 p3244 (! c3245 p3245))) -(petri (? c3245 p3245 (! c3246 p3246))) -(petri (? c3246 p3246 (! c3247 p3247))) -(petri (? c3247 p3247 (! c3248 p3248))) -(petri (? c3248 p3248 (! c3249 p3249))) -(petri (? c3249 p3249 (! c3250 p3250))) -(petri (? c3250 p3250 (! c3251 p3251))) -(petri (? c3251 p3251 (! c3252 p3252))) -(petri (? c3252 p3252 (! c3253 p3253))) -(petri (? c3253 p3253 (! c3254 p3254))) -(petri (? c3254 p3254 (! c3255 p3255))) -(petri (? c3255 p3255 (! c3256 p3256))) -(petri (? c3256 p3256 (! c3257 p3257))) -(petri (? c3257 p3257 (! c3258 p3258))) -(petri (? c3258 p3258 (! c3259 p3259))) -(petri (? c3259 p3259 (! c3260 p3260))) -(petri (? c3260 p3260 (! c3261 p3261))) -(petri (? c3261 p3261 (! c3262 p3262))) -(petri (? c3262 p3262 (! c3263 p3263))) -(petri (? c3263 p3263 (! c3264 p3264))) -(petri (? c3264 p3264 (! c3265 p3265))) -(petri (? c3265 p3265 (! c3266 p3266))) -(petri (? c3266 p3266 (! c3267 p3267))) -(petri (? c3267 p3267 (! c3268 p3268))) -(petri (? c3268 p3268 (! c3269 p3269))) -(petri (? c3269 p3269 (! c3270 p3270))) -(petri (? c3270 p3270 (! c3271 p3271))) -(petri (? c3271 p3271 (! c3272 p3272))) -(petri (? c3272 p3272 (! c3273 p3273))) -(petri (? c3273 p3273 (! c3274 p3274))) -(petri (? c3274 p3274 (! c3275 p3275))) -(petri (? c3275 p3275 (! c3276 p3276))) -(petri (? c3276 p3276 (! c3277 p3277))) -(petri (? c3277 p3277 (! c3278 p3278))) -(petri (? c3278 p3278 (! c3279 p3279))) -(petri (? c3279 p3279 (! c3280 p3280))) -(petri (? c3280 p3280 (! c3281 p3281))) -(petri (? c3281 p3281 (! c3282 p3282))) -(petri (? c3282 p3282 (! c3283 p3283))) -(petri (? c3283 p3283 (! c3284 p3284))) -(petri (? c3284 p3284 (! c3285 p3285))) -(petri (? c3285 p3285 (! c3286 p3286))) -(petri (? c3286 p3286 (! c3287 p3287))) -(petri (? c3287 p3287 (! c3288 p3288))) -(petri (? c3288 p3288 (! c3289 p3289))) -(petri (? c3289 p3289 (! c3290 p3290))) -(petri (? c3290 p3290 (! c3291 p3291))) -(petri (? c3291 p3291 (! c3292 p3292))) -(petri (? c3292 p3292 (! c3293 p3293))) -(petri (? c3293 p3293 (! c3294 p3294))) -(petri (? c3294 p3294 (! c3295 p3295))) -(petri (? c3295 p3295 (! c3296 p3296))) -(petri (? c3296 p3296 (! c3297 p3297))) -(petri (? c3297 p3297 (! c3298 p3298))) -(petri (? c3298 p3298 (! c3299 p3299))) -(petri (? c3299 p3299 (! c3300 p3300))) -(petri (? c3300 p3300 (! c3301 p3301))) -(petri (? c3301 p3301 (! c3302 p3302))) -(petri (? c3302 p3302 (! c3303 p3303))) -(petri (? c3303 p3303 (! c3304 p3304))) -(petri (? c3304 p3304 (! c3305 p3305))) -(petri (? c3305 p3305 (! c3306 p3306))) -(petri (? c3306 p3306 (! c3307 p3307))) -(petri (? c3307 p3307 (! c3308 p3308))) -(petri (? c3308 p3308 (! c3309 p3309))) -(petri (? c3309 p3309 (! c3310 p3310))) -(petri (? c3310 p3310 (! c3311 p3311))) -(petri (? c3311 p3311 (! c3312 p3312))) -(petri (? c3312 p3312 (! c3313 p3313))) -(petri (? c3313 p3313 (! c3314 p3314))) -(petri (? c3314 p3314 (! c3315 p3315))) -(petri (? c3315 p3315 (! c3316 p3316))) -(petri (? c3316 p3316 (! c3317 p3317))) -(petri (? c3317 p3317 (! c3318 p3318))) -(petri (? c3318 p3318 (! c3319 p3319))) -(petri (? c3319 p3319 (! c3320 p3320))) -(petri (? c3320 p3320 (! c3321 p3321))) -(petri (? c3321 p3321 (! c3322 p3322))) -(petri (? c3322 p3322 (! c3323 p3323))) -(petri (? c3323 p3323 (! c3324 p3324))) -(petri (? c3324 p3324 (! c3325 p3325))) -(petri (? c3325 p3325 (! c3326 p3326))) -(petri (? c3326 p3326 (! c3327 p3327))) -(petri (? c3327 p3327 (! c3328 p3328))) -(petri (? c3328 p3328 (! c3329 p3329))) -(petri (? c3329 p3329 (! c3330 p3330))) -(petri (? c3330 p3330 (! c3331 p3331))) -(petri (? c3331 p3331 (! c3332 p3332))) -(petri (? c3332 p3332 (! c3333 p3333))) -(petri (? c3333 p3333 (! c3334 p3334))) -(petri (? c3334 p3334 (! c3335 p3335))) -(petri (? c3335 p3335 (! c3336 p3336))) -(petri (? c3336 p3336 (! c3337 p3337))) -(petri (? c3337 p3337 (! c3338 p3338))) -(petri (? c3338 p3338 (! c3339 p3339))) -(petri (? c3339 p3339 (! c3340 p3340))) -(petri (? c3340 p3340 (! c3341 p3341))) -(petri (? c3341 p3341 (! c3342 p3342))) -(petri (? c3342 p3342 (! c3343 p3343))) -(petri (? c3343 p3343 (! c3344 p3344))) -(petri (? c3344 p3344 (! c3345 p3345))) -(petri (? c3345 p3345 (! c3346 p3346))) -(petri (? c3346 p3346 (! c3347 p3347))) -(petri (? c3347 p3347 (! c3348 p3348))) -(petri (? c3348 p3348 (! c3349 p3349))) -(petri (? c3349 p3349 (! c3350 p3350))) -(petri (? c3350 p3350 (! c3351 p3351))) -(petri (? c3351 p3351 (! c3352 p3352))) -(petri (? c3352 p3352 (! c3353 p3353))) -(petri (? c3353 p3353 (! c3354 p3354))) -(petri (? c3354 p3354 (! c3355 p3355))) -(petri (? c3355 p3355 (! c3356 p3356))) -(petri (? c3356 p3356 (! c3357 p3357))) -(petri (? c3357 p3357 (! c3358 p3358))) -(petri (? c3358 p3358 (! c3359 p3359))) -(petri (? c3359 p3359 (! c3360 p3360))) -(petri (? c3360 p3360 (! c3361 p3361))) -(petri (? c3361 p3361 (! c3362 p3362))) -(petri (? c3362 p3362 (! c3363 p3363))) -(petri (? c3363 p3363 (! c3364 p3364))) -(petri (? c3364 p3364 (! c3365 p3365))) -(petri (? c3365 p3365 (! c3366 p3366))) -(petri (? c3366 p3366 (! c3367 p3367))) -(petri (? c3367 p3367 (! c3368 p3368))) -(petri (? c3368 p3368 (! c3369 p3369))) -(petri (? c3369 p3369 (! c3370 p3370))) -(petri (? c3370 p3370 (! c3371 p3371))) -(petri (? c3371 p3371 (! c3372 p3372))) -(petri (? c3372 p3372 (! c3373 p3373))) -(petri (? c3373 p3373 (! c3374 p3374))) -(petri (? c3374 p3374 (! c3375 p3375))) -(petri (? c3375 p3375 (! c3376 p3376))) -(petri (? c3376 p3376 (! c3377 p3377))) -(petri (? c3377 p3377 (! c3378 p3378))) -(petri (? c3378 p3378 (! c3379 p3379))) -(petri (? c3379 p3379 (! c3380 p3380))) -(petri (? c3380 p3380 (! c3381 p3381))) -(petri (? c3381 p3381 (! c3382 p3382))) -(petri (? c3382 p3382 (! c3383 p3383))) -(petri (? c3383 p3383 (! c3384 p3384))) -(petri (? c3384 p3384 (! c3385 p3385))) -(petri (? c3385 p3385 (! c3386 p3386))) -(petri (? c3386 p3386 (! c3387 p3387))) -(petri (? c3387 p3387 (! c3388 p3388))) -(petri (? c3388 p3388 (! c3389 p3389))) -(petri (? c3389 p3389 (! c3390 p3390))) -(petri (? c3390 p3390 (! c3391 p3391))) -(petri (? c3391 p3391 (! c3392 p3392))) -(petri (? c3392 p3392 (! c3393 p3393))) -(petri (? c3393 p3393 (! c3394 p3394))) -(petri (? c3394 p3394 (! c3395 p3395))) -(petri (? c3395 p3395 (! c3396 p3396))) -(petri (? c3396 p3396 (! c3397 p3397))) -(petri (? c3397 p3397 (! c3398 p3398))) -(petri (? c3398 p3398 (! c3399 p3399))) -(petri (? c3399 p3399 (! c3400 p3400))) -(petri (? c3400 p3400 (! c3401 p3401))) -(petri (? c3401 p3401 (! c3402 p3402))) -(petri (? c3402 p3402 (! c3403 p3403))) -(petri (? c3403 p3403 (! c3404 p3404))) -(petri (? c3404 p3404 (! c3405 p3405))) -(petri (? c3405 p3405 (! c3406 p3406))) -(petri (? c3406 p3406 (! c3407 p3407))) -(petri (? c3407 p3407 (! c3408 p3408))) -(petri (? c3408 p3408 (! c3409 p3409))) -(petri (? c3409 p3409 (! c3410 p3410))) -(petri (? c3410 p3410 (! c3411 p3411))) -(petri (? c3411 p3411 (! c3412 p3412))) -(petri (? c3412 p3412 (! c3413 p3413))) -(petri (? c3413 p3413 (! c3414 p3414))) -(petri (? c3414 p3414 (! c3415 p3415))) -(petri (? c3415 p3415 (! c3416 p3416))) -(petri (? c3416 p3416 (! c3417 p3417))) -(petri (? c3417 p3417 (! c3418 p3418))) -(petri (? c3418 p3418 (! c3419 p3419))) -(petri (? c3419 p3419 (! c3420 p3420))) -(petri (? c3420 p3420 (! c3421 p3421))) -(petri (? c3421 p3421 (! c3422 p3422))) -(petri (? c3422 p3422 (! c3423 p3423))) -(petri (? c3423 p3423 (! c3424 p3424))) -(petri (? c3424 p3424 (! c3425 p3425))) -(petri (? c3425 p3425 (! c3426 p3426))) -(petri (? c3426 p3426 (! c3427 p3427))) -(petri (? c3427 p3427 (! c3428 p3428))) -(petri (? c3428 p3428 (! c3429 p3429))) -(petri (? c3429 p3429 (! c3430 p3430))) -(petri (? c3430 p3430 (! c3431 p3431))) -(petri (? c3431 p3431 (! c3432 p3432))) -(petri (? c3432 p3432 (! c3433 p3433))) -(petri (? c3433 p3433 (! c3434 p3434))) -(petri (? c3434 p3434 (! c3435 p3435))) -(petri (? c3435 p3435 (! c3436 p3436))) -(petri (? c3436 p3436 (! c3437 p3437))) -(petri (? c3437 p3437 (! c3438 p3438))) -(petri (? c3438 p3438 (! c3439 p3439))) -(petri (? c3439 p3439 (! c3440 p3440))) -(petri (? c3440 p3440 (! c3441 p3441))) -(petri (? c3441 p3441 (! c3442 p3442))) -(petri (? c3442 p3442 (! c3443 p3443))) -(petri (? c3443 p3443 (! c3444 p3444))) -(petri (? c3444 p3444 (! c3445 p3445))) -(petri (? c3445 p3445 (! c3446 p3446))) -(petri (? c3446 p3446 (! c3447 p3447))) -(petri (? c3447 p3447 (! c3448 p3448))) -(petri (? c3448 p3448 (! c3449 p3449))) -(petri (? c3449 p3449 (! c3450 p3450))) -(petri (? c3450 p3450 (! c3451 p3451))) -(petri (? c3451 p3451 (! c3452 p3452))) -(petri (? c3452 p3452 (! c3453 p3453))) -(petri (? c3453 p3453 (! c3454 p3454))) -(petri (? c3454 p3454 (! c3455 p3455))) -(petri (? c3455 p3455 (! c3456 p3456))) -(petri (? c3456 p3456 (! c3457 p3457))) -(petri (? c3457 p3457 (! c3458 p3458))) -(petri (? c3458 p3458 (! c3459 p3459))) -(petri (? c3459 p3459 (! c3460 p3460))) -(petri (? c3460 p3460 (! c3461 p3461))) -(petri (? c3461 p3461 (! c3462 p3462))) -(petri (? c3462 p3462 (! c3463 p3463))) -(petri (? c3463 p3463 (! c3464 p3464))) -(petri (? c3464 p3464 (! c3465 p3465))) -(petri (? c3465 p3465 (! c3466 p3466))) -(petri (? c3466 p3466 (! c3467 p3467))) -(petri (? c3467 p3467 (! c3468 p3468))) -(petri (? c3468 p3468 (! c3469 p3469))) -(petri (? c3469 p3469 (! c3470 p3470))) -(petri (? c3470 p3470 (! c3471 p3471))) -(petri (? c3471 p3471 (! c3472 p3472))) -(petri (? c3472 p3472 (! c3473 p3473))) -(petri (? c3473 p3473 (! c3474 p3474))) -(petri (? c3474 p3474 (! c3475 p3475))) -(petri (? c3475 p3475 (! c3476 p3476))) -(petri (? c3476 p3476 (! c3477 p3477))) -(petri (? c3477 p3477 (! c3478 p3478))) -(petri (? c3478 p3478 (! c3479 p3479))) -(petri (? c3479 p3479 (! c3480 p3480))) -(petri (? c3480 p3480 (! c3481 p3481))) -(petri (? c3481 p3481 (! c3482 p3482))) -(petri (? c3482 p3482 (! c3483 p3483))) -(petri (? c3483 p3483 (! c3484 p3484))) -(petri (? c3484 p3484 (! c3485 p3485))) -(petri (? c3485 p3485 (! c3486 p3486))) -(petri (? c3486 p3486 (! c3487 p3487))) -(petri (? c3487 p3487 (! c3488 p3488))) -(petri (? c3488 p3488 (! c3489 p3489))) -(petri (? c3489 p3489 (! c3490 p3490))) -(petri (? c3490 p3490 (! c3491 p3491))) -(petri (? c3491 p3491 (! c3492 p3492))) -(petri (? c3492 p3492 (! c3493 p3493))) -(petri (? c3493 p3493 (! c3494 p3494))) -(petri (? c3494 p3494 (! c3495 p3495))) -(petri (? c3495 p3495 (! c3496 p3496))) -(petri (? c3496 p3496 (! c3497 p3497))) -(petri (? c3497 p3497 (! c3498 p3498))) -(petri (? c3498 p3498 (! c3499 p3499))) -(petri (? c3499 p3499 (! c3500 p3500))) -(petri (? c3500 p3500 (! c3501 p3501))) -(petri (? c3501 p3501 (! c3502 p3502))) -(petri (? c3502 p3502 (! c3503 p3503))) -(petri (? c3503 p3503 (! c3504 p3504))) -(petri (? c3504 p3504 (! c3505 p3505))) -(petri (? c3505 p3505 (! c3506 p3506))) -(petri (? c3506 p3506 (! c3507 p3507))) -(petri (? c3507 p3507 (! c3508 p3508))) -(petri (? c3508 p3508 (! c3509 p3509))) -(petri (? c3509 p3509 (! c3510 p3510))) -(petri (? c3510 p3510 (! c3511 p3511))) -(petri (? c3511 p3511 (! c3512 p3512))) -(petri (? c3512 p3512 (! c3513 p3513))) -(petri (? c3513 p3513 (! c3514 p3514))) -(petri (? c3514 p3514 (! c3515 p3515))) -(petri (? c3515 p3515 (! c3516 p3516))) -(petri (? c3516 p3516 (! c3517 p3517))) -(petri (? c3517 p3517 (! c3518 p3518))) -(petri (? c3518 p3518 (! c3519 p3519))) -(petri (? c3519 p3519 (! c3520 p3520))) -(petri (? c3520 p3520 (! c3521 p3521))) -(petri (? c3521 p3521 (! c3522 p3522))) -(petri (? c3522 p3522 (! c3523 p3523))) -(petri (? c3523 p3523 (! c3524 p3524))) -(petri (? c3524 p3524 (! c3525 p3525))) -(petri (? c3525 p3525 (! c3526 p3526))) -(petri (? c3526 p3526 (! c3527 p3527))) -(petri (? c3527 p3527 (! c3528 p3528))) -(petri (? c3528 p3528 (! c3529 p3529))) -(petri (? c3529 p3529 (! c3530 p3530))) -(petri (? c3530 p3530 (! c3531 p3531))) -(petri (? c3531 p3531 (! c3532 p3532))) -(petri (? c3532 p3532 (! c3533 p3533))) -(petri (? c3533 p3533 (! c3534 p3534))) -(petri (? c3534 p3534 (! c3535 p3535))) -(petri (? c3535 p3535 (! c3536 p3536))) -(petri (? c3536 p3536 (! c3537 p3537))) -(petri (? c3537 p3537 (! c3538 p3538))) -(petri (? c3538 p3538 (! c3539 p3539))) -(petri (? c3539 p3539 (! c3540 p3540))) -(petri (? c3540 p3540 (! c3541 p3541))) -(petri (? c3541 p3541 (! c3542 p3542))) -(petri (? c3542 p3542 (! c3543 p3543))) -(petri (? c3543 p3543 (! c3544 p3544))) -(petri (? c3544 p3544 (! c3545 p3545))) -(petri (? c3545 p3545 (! c3546 p3546))) -(petri (? c3546 p3546 (! c3547 p3547))) -(petri (? c3547 p3547 (! c3548 p3548))) -(petri (? c3548 p3548 (! c3549 p3549))) -(petri (? c3549 p3549 (! c3550 p3550))) -(petri (? c3550 p3550 (! c3551 p3551))) -(petri (? c3551 p3551 (! c3552 p3552))) -(petri (? c3552 p3552 (! c3553 p3553))) -(petri (? c3553 p3553 (! c3554 p3554))) -(petri (? c3554 p3554 (! c3555 p3555))) -(petri (? c3555 p3555 (! c3556 p3556))) -(petri (? c3556 p3556 (! c3557 p3557))) -(petri (? c3557 p3557 (! c3558 p3558))) -(petri (? c3558 p3558 (! c3559 p3559))) -(petri (? c3559 p3559 (! c3560 p3560))) -(petri (? c3560 p3560 (! c3561 p3561))) -(petri (? c3561 p3561 (! c3562 p3562))) -(petri (? c3562 p3562 (! c3563 p3563))) -(petri (? c3563 p3563 (! c3564 p3564))) -(petri (? c3564 p3564 (! c3565 p3565))) -(petri (? c3565 p3565 (! c3566 p3566))) -(petri (? c3566 p3566 (! c3567 p3567))) -(petri (? c3567 p3567 (! c3568 p3568))) -(petri (? c3568 p3568 (! c3569 p3569))) -(petri (? c3569 p3569 (! c3570 p3570))) -(petri (? c3570 p3570 (! c3571 p3571))) -(petri (? c3571 p3571 (! c3572 p3572))) -(petri (? c3572 p3572 (! c3573 p3573))) -(petri (? c3573 p3573 (! c3574 p3574))) -(petri (? c3574 p3574 (! c3575 p3575))) -(petri (? c3575 p3575 (! c3576 p3576))) -(petri (? c3576 p3576 (! c3577 p3577))) -(petri (? c3577 p3577 (! c3578 p3578))) -(petri (? c3578 p3578 (! c3579 p3579))) -(petri (? c3579 p3579 (! c3580 p3580))) -(petri (? c3580 p3580 (! c3581 p3581))) -(petri (? c3581 p3581 (! c3582 p3582))) -(petri (? c3582 p3582 (! c3583 p3583))) -(petri (? c3583 p3583 (! c3584 p3584))) -(petri (? c3584 p3584 (! c3585 p3585))) -(petri (? c3585 p3585 (! c3586 p3586))) -(petri (? c3586 p3586 (! c3587 p3587))) -(petri (? c3587 p3587 (! c3588 p3588))) -(petri (? c3588 p3588 (! c3589 p3589))) -(petri (? c3589 p3589 (! c3590 p3590))) -(petri (? c3590 p3590 (! c3591 p3591))) -(petri (? c3591 p3591 (! c3592 p3592))) -(petri (? c3592 p3592 (! c3593 p3593))) -(petri (? c3593 p3593 (! c3594 p3594))) -(petri (? c3594 p3594 (! c3595 p3595))) -(petri (? c3595 p3595 (! c3596 p3596))) -(petri (? c3596 p3596 (! c3597 p3597))) -(petri (? c3597 p3597 (! c3598 p3598))) -(petri (? c3598 p3598 (! c3599 p3599))) -(petri (? c3599 p3599 (! c3600 p3600))) -(petri (? c3600 p3600 (! c3601 p3601))) -(petri (? c3601 p3601 (! c3602 p3602))) -(petri (? c3602 p3602 (! c3603 p3603))) -(petri (? c3603 p3603 (! c3604 p3604))) -(petri (? c3604 p3604 (! c3605 p3605))) -(petri (? c3605 p3605 (! c3606 p3606))) -(petri (? c3606 p3606 (! c3607 p3607))) -(petri (? c3607 p3607 (! c3608 p3608))) -(petri (? c3608 p3608 (! c3609 p3609))) -(petri (? c3609 p3609 (! c3610 p3610))) -(petri (? c3610 p3610 (! c3611 p3611))) -(petri (? c3611 p3611 (! c3612 p3612))) -(petri (? c3612 p3612 (! c3613 p3613))) -(petri (? c3613 p3613 (! c3614 p3614))) -(petri (? c3614 p3614 (! c3615 p3615))) -(petri (? c3615 p3615 (! c3616 p3616))) -(petri (? c3616 p3616 (! c3617 p3617))) -(petri (? c3617 p3617 (! c3618 p3618))) -(petri (? c3618 p3618 (! c3619 p3619))) -(petri (? c3619 p3619 (! c3620 p3620))) -(petri (? c3620 p3620 (! c3621 p3621))) -(petri (? c3621 p3621 (! c3622 p3622))) -(petri (? c3622 p3622 (! c3623 p3623))) -(petri (? c3623 p3623 (! c3624 p3624))) -(petri (? c3624 p3624 (! c3625 p3625))) -(petri (? c3625 p3625 (! c3626 p3626))) -(petri (? c3626 p3626 (! c3627 p3627))) -(petri (? c3627 p3627 (! c3628 p3628))) -(petri (? c3628 p3628 (! c3629 p3629))) -(petri (? c3629 p3629 (! c3630 p3630))) -(petri (? c3630 p3630 (! c3631 p3631))) -(petri (? c3631 p3631 (! c3632 p3632))) -(petri (? c3632 p3632 (! c3633 p3633))) -(petri (? c3633 p3633 (! c3634 p3634))) -(petri (? c3634 p3634 (! c3635 p3635))) -(petri (? c3635 p3635 (! c3636 p3636))) -(petri (? c3636 p3636 (! c3637 p3637))) -(petri (? c3637 p3637 (! c3638 p3638))) -(petri (? c3638 p3638 (! c3639 p3639))) -(petri (? c3639 p3639 (! c3640 p3640))) -(petri (? c3640 p3640 (! c3641 p3641))) -(petri (? c3641 p3641 (! c3642 p3642))) -(petri (? c3642 p3642 (! c3643 p3643))) -(petri (? c3643 p3643 (! c3644 p3644))) -(petri (? c3644 p3644 (! c3645 p3645))) -(petri (? c3645 p3645 (! c3646 p3646))) -(petri (? c3646 p3646 (! c3647 p3647))) -(petri (? c3647 p3647 (! c3648 p3648))) -(petri (? c3648 p3648 (! c3649 p3649))) -(petri (? c3649 p3649 (! c3650 p3650))) -(petri (? c3650 p3650 (! c3651 p3651))) -(petri (? c3651 p3651 (! c3652 p3652))) -(petri (? c3652 p3652 (! c3653 p3653))) -(petri (? c3653 p3653 (! c3654 p3654))) -(petri (? c3654 p3654 (! c3655 p3655))) -(petri (? c3655 p3655 (! c3656 p3656))) -(petri (? c3656 p3656 (! c3657 p3657))) -(petri (? c3657 p3657 (! c3658 p3658))) -(petri (? c3658 p3658 (! c3659 p3659))) -(petri (? c3659 p3659 (! c3660 p3660))) -(petri (? c3660 p3660 (! c3661 p3661))) -(petri (? c3661 p3661 (! c3662 p3662))) -(petri (? c3662 p3662 (! c3663 p3663))) -(petri (? c3663 p3663 (! c3664 p3664))) -(petri (? c3664 p3664 (! c3665 p3665))) -(petri (? c3665 p3665 (! c3666 p3666))) -(petri (? c3666 p3666 (! c3667 p3667))) -(petri (? c3667 p3667 (! c3668 p3668))) -(petri (? c3668 p3668 (! c3669 p3669))) -(petri (? c3669 p3669 (! c3670 p3670))) -(petri (? c3670 p3670 (! c3671 p3671))) -(petri (? c3671 p3671 (! c3672 p3672))) -(petri (? c3672 p3672 (! c3673 p3673))) -(petri (? c3673 p3673 (! c3674 p3674))) -(petri (? c3674 p3674 (! c3675 p3675))) -(petri (? c3675 p3675 (! c3676 p3676))) -(petri (? c3676 p3676 (! c3677 p3677))) -(petri (? c3677 p3677 (! c3678 p3678))) -(petri (? c3678 p3678 (! c3679 p3679))) -(petri (? c3679 p3679 (! c3680 p3680))) -(petri (? c3680 p3680 (! c3681 p3681))) -(petri (? c3681 p3681 (! c3682 p3682))) -(petri (? c3682 p3682 (! c3683 p3683))) -(petri (? c3683 p3683 (! c3684 p3684))) -(petri (? c3684 p3684 (! c3685 p3685))) -(petri (? c3685 p3685 (! c3686 p3686))) -(petri (? c3686 p3686 (! c3687 p3687))) -(petri (? c3687 p3687 (! c3688 p3688))) -(petri (? c3688 p3688 (! c3689 p3689))) -(petri (? c3689 p3689 (! c3690 p3690))) -(petri (? c3690 p3690 (! c3691 p3691))) -(petri (? c3691 p3691 (! c3692 p3692))) -(petri (? c3692 p3692 (! c3693 p3693))) -(petri (? c3693 p3693 (! c3694 p3694))) -(petri (? c3694 p3694 (! c3695 p3695))) -(petri (? c3695 p3695 (! c3696 p3696))) -(petri (? c3696 p3696 (! c3697 p3697))) -(petri (? c3697 p3697 (! c3698 p3698))) -(petri (? c3698 p3698 (! c3699 p3699))) -(petri (? c3699 p3699 (! c3700 p3700))) -(petri (? c3700 p3700 (! c3701 p3701))) -(petri (? c3701 p3701 (! c3702 p3702))) -(petri (? c3702 p3702 (! c3703 p3703))) -(petri (? c3703 p3703 (! c3704 p3704))) -(petri (? c3704 p3704 (! c3705 p3705))) -(petri (? c3705 p3705 (! c3706 p3706))) -(petri (? c3706 p3706 (! c3707 p3707))) -(petri (? c3707 p3707 (! c3708 p3708))) -(petri (? c3708 p3708 (! c3709 p3709))) -(petri (? c3709 p3709 (! c3710 p3710))) -(petri (? c3710 p3710 (! c3711 p3711))) -(petri (? c3711 p3711 (! c3712 p3712))) -(petri (? c3712 p3712 (! c3713 p3713))) -(petri (? c3713 p3713 (! c3714 p3714))) -(petri (? c3714 p3714 (! c3715 p3715))) -(petri (? c3715 p3715 (! c3716 p3716))) -(petri (? c3716 p3716 (! c3717 p3717))) -(petri (? c3717 p3717 (! c3718 p3718))) -(petri (? c3718 p3718 (! c3719 p3719))) -(petri (? c3719 p3719 (! c3720 p3720))) -(petri (? c3720 p3720 (! c3721 p3721))) -(petri (? c3721 p3721 (! c3722 p3722))) -(petri (? c3722 p3722 (! c3723 p3723))) -(petri (? c3723 p3723 (! c3724 p3724))) -(petri (? c3724 p3724 (! c3725 p3725))) -(petri (? c3725 p3725 (! c3726 p3726))) -(petri (? c3726 p3726 (! c3727 p3727))) -(petri (? c3727 p3727 (! c3728 p3728))) -(petri (? c3728 p3728 (! c3729 p3729))) -(petri (? c3729 p3729 (! c3730 p3730))) -(petri (? c3730 p3730 (! c3731 p3731))) -(petri (? c3731 p3731 (! c3732 p3732))) -(petri (? c3732 p3732 (! c3733 p3733))) -(petri (? c3733 p3733 (! c3734 p3734))) -(petri (? c3734 p3734 (! c3735 p3735))) -(petri (? c3735 p3735 (! c3736 p3736))) -(petri (? c3736 p3736 (! c3737 p3737))) -(petri (? c3737 p3737 (! c3738 p3738))) -(petri (? c3738 p3738 (! c3739 p3739))) -(petri (? c3739 p3739 (! c3740 p3740))) -(petri (? c3740 p3740 (! c3741 p3741))) -(petri (? c3741 p3741 (! c3742 p3742))) -(petri (? c3742 p3742 (! c3743 p3743))) -(petri (? c3743 p3743 (! c3744 p3744))) -(petri (? c3744 p3744 (! c3745 p3745))) -(petri (? c3745 p3745 (! c3746 p3746))) -(petri (? c3746 p3746 (! c3747 p3747))) -(petri (? c3747 p3747 (! c3748 p3748))) -(petri (? c3748 p3748 (! c3749 p3749))) -(petri (? c3749 p3749 (! c3750 p3750))) -(petri (? c3750 p3750 (! c3751 p3751))) -(petri (? c3751 p3751 (! c3752 p3752))) -(petri (? c3752 p3752 (! c3753 p3753))) -(petri (? c3753 p3753 (! c3754 p3754))) -(petri (? c3754 p3754 (! c3755 p3755))) -(petri (? c3755 p3755 (! c3756 p3756))) -(petri (? c3756 p3756 (! c3757 p3757))) -(petri (? c3757 p3757 (! c3758 p3758))) -(petri (? c3758 p3758 (! c3759 p3759))) -(petri (? c3759 p3759 (! c3760 p3760))) -(petri (? c3760 p3760 (! c3761 p3761))) -(petri (? c3761 p3761 (! c3762 p3762))) -(petri (? c3762 p3762 (! c3763 p3763))) -(petri (? c3763 p3763 (! c3764 p3764))) -(petri (? c3764 p3764 (! c3765 p3765))) -(petri (? c3765 p3765 (! c3766 p3766))) -(petri (? c3766 p3766 (! c3767 p3767))) -(petri (? c3767 p3767 (! c3768 p3768))) -(petri (? c3768 p3768 (! c3769 p3769))) -(petri (? c3769 p3769 (! c3770 p3770))) -(petri (? c3770 p3770 (! c3771 p3771))) -(petri (? c3771 p3771 (! c3772 p3772))) -(petri (? c3772 p3772 (! c3773 p3773))) -(petri (? c3773 p3773 (! c3774 p3774))) -(petri (? c3774 p3774 (! c3775 p3775))) -(petri (? c3775 p3775 (! c3776 p3776))) -(petri (? c3776 p3776 (! c3777 p3777))) -(petri (? c3777 p3777 (! c3778 p3778))) -(petri (? c3778 p3778 (! c3779 p3779))) -(petri (? c3779 p3779 (! c3780 p3780))) -(petri (? c3780 p3780 (! c3781 p3781))) -(petri (? c3781 p3781 (! c3782 p3782))) -(petri (? c3782 p3782 (! c3783 p3783))) -(petri (? c3783 p3783 (! c3784 p3784))) -(petri (? c3784 p3784 (! c3785 p3785))) -(petri (? c3785 p3785 (! c3786 p3786))) -(petri (? c3786 p3786 (! c3787 p3787))) -(petri (? c3787 p3787 (! c3788 p3788))) -(petri (? c3788 p3788 (! c3789 p3789))) -(petri (? c3789 p3789 (! c3790 p3790))) -(petri (? c3790 p3790 (! c3791 p3791))) -(petri (? c3791 p3791 (! c3792 p3792))) -(petri (? c3792 p3792 (! c3793 p3793))) -(petri (? c3793 p3793 (! c3794 p3794))) -(petri (? c3794 p3794 (! c3795 p3795))) -(petri (? c3795 p3795 (! c3796 p3796))) -(petri (? c3796 p3796 (! c3797 p3797))) -(petri (? c3797 p3797 (! c3798 p3798))) -(petri (? c3798 p3798 (! c3799 p3799))) -(petri (? c3799 p3799 (! c3800 p3800))) -(petri (? c3800 p3800 (! c3801 p3801))) -(petri (? c3801 p3801 (! c3802 p3802))) -(petri (? c3802 p3802 (! c3803 p3803))) -(petri (? c3803 p3803 (! c3804 p3804))) -(petri (? c3804 p3804 (! c3805 p3805))) -(petri (? c3805 p3805 (! c3806 p3806))) -(petri (? c3806 p3806 (! c3807 p3807))) -(petri (? c3807 p3807 (! c3808 p3808))) -(petri (? c3808 p3808 (! c3809 p3809))) -(petri (? c3809 p3809 (! c3810 p3810))) -(petri (? c3810 p3810 (! c3811 p3811))) -(petri (? c3811 p3811 (! c3812 p3812))) -(petri (? c3812 p3812 (! c3813 p3813))) -(petri (? c3813 p3813 (! c3814 p3814))) -(petri (? c3814 p3814 (! c3815 p3815))) -(petri (? c3815 p3815 (! c3816 p3816))) -(petri (? c3816 p3816 (! c3817 p3817))) -(petri (? c3817 p3817 (! c3818 p3818))) -(petri (? c3818 p3818 (! c3819 p3819))) -(petri (? c3819 p3819 (! c3820 p3820))) -(petri (? c3820 p3820 (! c3821 p3821))) -(petri (? c3821 p3821 (! c3822 p3822))) -(petri (? c3822 p3822 (! c3823 p3823))) -(petri (? c3823 p3823 (! c3824 p3824))) -(petri (? c3824 p3824 (! c3825 p3825))) -(petri (? c3825 p3825 (! c3826 p3826))) -(petri (? c3826 p3826 (! c3827 p3827))) -(petri (? c3827 p3827 (! c3828 p3828))) -(petri (? c3828 p3828 (! c3829 p3829))) -(petri (? c3829 p3829 (! c3830 p3830))) -(petri (? c3830 p3830 (! c3831 p3831))) -(petri (? c3831 p3831 (! c3832 p3832))) -(petri (? c3832 p3832 (! c3833 p3833))) -(petri (? c3833 p3833 (! c3834 p3834))) -(petri (? c3834 p3834 (! c3835 p3835))) -(petri (? c3835 p3835 (! c3836 p3836))) -(petri (? c3836 p3836 (! c3837 p3837))) -(petri (? c3837 p3837 (! c3838 p3838))) -(petri (? c3838 p3838 (! c3839 p3839))) -(petri (? c3839 p3839 (! c3840 p3840))) -(petri (? c3840 p3840 (! c3841 p3841))) -(petri (? c3841 p3841 (! c3842 p3842))) -(petri (? c3842 p3842 (! c3843 p3843))) -(petri (? c3843 p3843 (! c3844 p3844))) -(petri (? c3844 p3844 (! c3845 p3845))) -(petri (? c3845 p3845 (! c3846 p3846))) -(petri (? c3846 p3846 (! c3847 p3847))) -(petri (? c3847 p3847 (! c3848 p3848))) -(petri (? c3848 p3848 (! c3849 p3849))) -(petri (? c3849 p3849 (! c3850 p3850))) -(petri (? c3850 p3850 (! c3851 p3851))) -(petri (? c3851 p3851 (! c3852 p3852))) -(petri (? c3852 p3852 (! c3853 p3853))) -(petri (? c3853 p3853 (! c3854 p3854))) -(petri (? c3854 p3854 (! c3855 p3855))) -(petri (? c3855 p3855 (! c3856 p3856))) -(petri (? c3856 p3856 (! c3857 p3857))) -(petri (? c3857 p3857 (! c3858 p3858))) -(petri (? c3858 p3858 (! c3859 p3859))) -(petri (? c3859 p3859 (! c3860 p3860))) -(petri (? c3860 p3860 (! c3861 p3861))) -(petri (? c3861 p3861 (! c3862 p3862))) -(petri (? c3862 p3862 (! c3863 p3863))) -(petri (? c3863 p3863 (! c3864 p3864))) -(petri (? c3864 p3864 (! c3865 p3865))) -(petri (? c3865 p3865 (! c3866 p3866))) -(petri (? c3866 p3866 (! c3867 p3867))) -(petri (? c3867 p3867 (! c3868 p3868))) -(petri (? c3868 p3868 (! c3869 p3869))) -(petri (? c3869 p3869 (! c3870 p3870))) -(petri (? c3870 p3870 (! c3871 p3871))) -(petri (? c3871 p3871 (! c3872 p3872))) -(petri (? c3872 p3872 (! c3873 p3873))) -(petri (? c3873 p3873 (! c3874 p3874))) -(petri (? c3874 p3874 (! c3875 p3875))) -(petri (? c3875 p3875 (! c3876 p3876))) -(petri (? c3876 p3876 (! c3877 p3877))) -(petri (? c3877 p3877 (! c3878 p3878))) -(petri (? c3878 p3878 (! c3879 p3879))) -(petri (? c3879 p3879 (! c3880 p3880))) -(petri (? c3880 p3880 (! c3881 p3881))) -(petri (? c3881 p3881 (! c3882 p3882))) -(petri (? c3882 p3882 (! c3883 p3883))) -(petri (? c3883 p3883 (! c3884 p3884))) -(petri (? c3884 p3884 (! c3885 p3885))) -(petri (? c3885 p3885 (! c3886 p3886))) -(petri (? c3886 p3886 (! c3887 p3887))) -(petri (? c3887 p3887 (! c3888 p3888))) -(petri (? c3888 p3888 (! c3889 p3889))) -(petri (? c3889 p3889 (! c3890 p3890))) -(petri (? c3890 p3890 (! c3891 p3891))) -(petri (? c3891 p3891 (! c3892 p3892))) -(petri (? c3892 p3892 (! c3893 p3893))) -(petri (? c3893 p3893 (! c3894 p3894))) -(petri (? c3894 p3894 (! c3895 p3895))) -(petri (? c3895 p3895 (! c3896 p3896))) -(petri (? c3896 p3896 (! c3897 p3897))) -(petri (? c3897 p3897 (! c3898 p3898))) -(petri (? c3898 p3898 (! c3899 p3899))) -(petri (? c3899 p3899 (! c3900 p3900))) -(petri (? c3900 p3900 (! c3901 p3901))) -(petri (? c3901 p3901 (! c3902 p3902))) -(petri (? c3902 p3902 (! c3903 p3903))) -(petri (? c3903 p3903 (! c3904 p3904))) -(petri (? c3904 p3904 (! c3905 p3905))) -(petri (? c3905 p3905 (! c3906 p3906))) -(petri (? c3906 p3906 (! c3907 p3907))) -(petri (? c3907 p3907 (! c3908 p3908))) -(petri (? c3908 p3908 (! c3909 p3909))) -(petri (? c3909 p3909 (! c3910 p3910))) -(petri (? c3910 p3910 (! c3911 p3911))) -(petri (? c3911 p3911 (! c3912 p3912))) -(petri (? c3912 p3912 (! c3913 p3913))) -(petri (? c3913 p3913 (! c3914 p3914))) -(petri (? c3914 p3914 (! c3915 p3915))) -(petri (? c3915 p3915 (! c3916 p3916))) -(petri (? c3916 p3916 (! c3917 p3917))) -(petri (? c3917 p3917 (! c3918 p3918))) -(petri (? c3918 p3918 (! c3919 p3919))) -(petri (? c3919 p3919 (! c3920 p3920))) -(petri (? c3920 p3920 (! c3921 p3921))) -(petri (? c3921 p3921 (! c3922 p3922))) -(petri (? c3922 p3922 (! c3923 p3923))) -(petri (? c3923 p3923 (! c3924 p3924))) -(petri (? c3924 p3924 (! c3925 p3925))) -(petri (? c3925 p3925 (! c3926 p3926))) -(petri (? c3926 p3926 (! c3927 p3927))) -(petri (? c3927 p3927 (! c3928 p3928))) -(petri (? c3928 p3928 (! c3929 p3929))) -(petri (? c3929 p3929 (! c3930 p3930))) -(petri (? c3930 p3930 (! c3931 p3931))) -(petri (? c3931 p3931 (! c3932 p3932))) -(petri (? c3932 p3932 (! c3933 p3933))) -(petri (? c3933 p3933 (! c3934 p3934))) -(petri (? c3934 p3934 (! c3935 p3935))) -(petri (? c3935 p3935 (! c3936 p3936))) -(petri (? c3936 p3936 (! c3937 p3937))) -(petri (? c3937 p3937 (! c3938 p3938))) -(petri (? c3938 p3938 (! c3939 p3939))) -(petri (? c3939 p3939 (! c3940 p3940))) -(petri (? c3940 p3940 (! c3941 p3941))) -(petri (? c3941 p3941 (! c3942 p3942))) -(petri (? c3942 p3942 (! c3943 p3943))) -(petri (? c3943 p3943 (! c3944 p3944))) -(petri (? c3944 p3944 (! c3945 p3945))) -(petri (? c3945 p3945 (! c3946 p3946))) -(petri (? c3946 p3946 (! c3947 p3947))) -(petri (? c3947 p3947 (! c3948 p3948))) -(petri (? c3948 p3948 (! c3949 p3949))) -(petri (? c3949 p3949 (! c3950 p3950))) -(petri (? c3950 p3950 (! c3951 p3951))) -(petri (? c3951 p3951 (! c3952 p3952))) -(petri (? c3952 p3952 (! c3953 p3953))) -(petri (? c3953 p3953 (! c3954 p3954))) -(petri (? c3954 p3954 (! c3955 p3955))) -(petri (? c3955 p3955 (! c3956 p3956))) -(petri (? c3956 p3956 (! c3957 p3957))) -(petri (? c3957 p3957 (! c3958 p3958))) -(petri (? c3958 p3958 (! c3959 p3959))) -(petri (? c3959 p3959 (! c3960 p3960))) -(petri (? c3960 p3960 (! c3961 p3961))) -(petri (? c3961 p3961 (! c3962 p3962))) -(petri (? c3962 p3962 (! c3963 p3963))) -(petri (? c3963 p3963 (! c3964 p3964))) -(petri (? c3964 p3964 (! c3965 p3965))) -(petri (? c3965 p3965 (! c3966 p3966))) -(petri (? c3966 p3966 (! c3967 p3967))) -(petri (? c3967 p3967 (! c3968 p3968))) -(petri (? c3968 p3968 (! c3969 p3969))) -(petri (? c3969 p3969 (! c3970 p3970))) -(petri (? c3970 p3970 (! c3971 p3971))) -(petri (? c3971 p3971 (! c3972 p3972))) -(petri (? c3972 p3972 (! c3973 p3973))) -(petri (? c3973 p3973 (! c3974 p3974))) -(petri (? c3974 p3974 (! c3975 p3975))) -(petri (? c3975 p3975 (! c3976 p3976))) -(petri (? c3976 p3976 (! c3977 p3977))) -(petri (? c3977 p3977 (! c3978 p3978))) -(petri (? c3978 p3978 (! c3979 p3979))) -(petri (? c3979 p3979 (! c3980 p3980))) -(petri (? c3980 p3980 (! c3981 p3981))) -(petri (? c3981 p3981 (! c3982 p3982))) -(petri (? c3982 p3982 (! c3983 p3983))) -(petri (? c3983 p3983 (! c3984 p3984))) -(petri (? c3984 p3984 (! c3985 p3985))) -(petri (? c3985 p3985 (! c3986 p3986))) -(petri (? c3986 p3986 (! c3987 p3987))) -(petri (? c3987 p3987 (! c3988 p3988))) -(petri (? c3988 p3988 (! c3989 p3989))) -(petri (? c3989 p3989 (! c3990 p3990))) -(petri (? c3990 p3990 (! c3991 p3991))) -(petri (? c3991 p3991 (! c3992 p3992))) -(petri (? c3992 p3992 (! c3993 p3993))) -(petri (? c3993 p3993 (! c3994 p3994))) -(petri (? c3994 p3994 (! c3995 p3995))) -(petri (? c3995 p3995 (! c3996 p3996))) -(petri (? c3996 p3996 (! c3997 p3997))) -(petri (? c3997 p3997 (! c3998 p3998))) -(petri (? c3998 p3998 (! c3999 p3999))) -(petri (? c3999 p3999 (! c4000 p4000))) -(petri (! c0 p0)) -(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z))))))))))))))))))))))))))))))) - -(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) - (petri (? $c $pl $b)) (petri (! $c $pl))) - (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_consume.mm2 b/examples/transforms/pc3_consume.mm2 deleted file mode 100644 index 6a3b713f..00000000 --- a/examples/transforms/pc3_consume.mm2 +++ /dev/null @@ -1,408 +0,0 @@ -(petri (? c0 p0 (! c1 p1))) -(petri (? c1 p1 (! c2 p2))) -(petri (? c2 p2 (! c3 p3))) -(petri (? c3 p3 (! c4 p4))) -(petri (? c4 p4 (! c5 p5))) -(petri (? c5 p5 (! c6 p6))) -(petri (? c6 p6 (! c7 p7))) -(petri (? c7 p7 (! c8 p8))) -(petri (? c8 p8 (! c9 p9))) -(petri (? c9 p9 (! c10 p10))) -(petri (? c10 p10 (! c11 p11))) -(petri (? c11 p11 (! c12 p12))) -(petri (? c12 p12 (! c13 p13))) -(petri (? c13 p13 (! c14 p14))) -(petri (? c14 p14 (! c15 p15))) -(petri (? c15 p15 (! c16 p16))) -(petri (? c16 p16 (! c17 p17))) -(petri (? c17 p17 (! c18 p18))) -(petri (? c18 p18 (! c19 p19))) -(petri (? c19 p19 (! c20 p20))) -(petri (? c20 p20 (! c21 p21))) -(petri (? c21 p21 (! c22 p22))) -(petri (? c22 p22 (! c23 p23))) -(petri (? c23 p23 (! c24 p24))) -(petri (? c24 p24 (! c25 p25))) -(petri (? c25 p25 (! c26 p26))) -(petri (? c26 p26 (! c27 p27))) -(petri (? c27 p27 (! c28 p28))) -(petri (? c28 p28 (! c29 p29))) -(petri (? c29 p29 (! c30 p30))) -(petri (? c30 p30 (! c31 p31))) -(petri (? c31 p31 (! c32 p32))) -(petri (? c32 p32 (! c33 p33))) -(petri (? c33 p33 (! c34 p34))) -(petri (? c34 p34 (! c35 p35))) -(petri (? c35 p35 (! c36 p36))) -(petri (? c36 p36 (! c37 p37))) -(petri (? c37 p37 (! c38 p38))) -(petri (? c38 p38 (! c39 p39))) -(petri (? c39 p39 (! c40 p40))) -(petri (? c40 p40 (! c41 p41))) -(petri (? c41 p41 (! c42 p42))) -(petri (? c42 p42 (! c43 p43))) -(petri (? c43 p43 (! c44 p44))) -(petri (? c44 p44 (! c45 p45))) -(petri (? c45 p45 (! c46 p46))) -(petri (? c46 p46 (! c47 p47))) -(petri (? c47 p47 (! c48 p48))) -(petri (? c48 p48 (! c49 p49))) -(petri (? c49 p49 (! c50 p50))) -(petri (? c50 p50 (! c51 p51))) -(petri (? c51 p51 (! c52 p52))) -(petri (? c52 p52 (! c53 p53))) -(petri (? c53 p53 (! c54 p54))) -(petri (? c54 p54 (! c55 p55))) -(petri (? c55 p55 (! c56 p56))) -(petri (? c56 p56 (! c57 p57))) -(petri (? c57 p57 (! c58 p58))) -(petri (? c58 p58 (! c59 p59))) -(petri (? c59 p59 (! c60 p60))) -(petri (? c60 p60 (! c61 p61))) -(petri (? c61 p61 (! c62 p62))) -(petri (? c62 p62 (! c63 p63))) -(petri (? c63 p63 (! c64 p64))) -(petri (? c64 p64 (! c65 p65))) -(petri (? c65 p65 (! c66 p66))) -(petri (? c66 p66 (! c67 p67))) -(petri (? c67 p67 (! c68 p68))) -(petri (? c68 p68 (! c69 p69))) -(petri (? c69 p69 (! c70 p70))) -(petri (? c70 p70 (! c71 p71))) -(petri (? c71 p71 (! c72 p72))) -(petri (? c72 p72 (! c73 p73))) -(petri (? c73 p73 (! c74 p74))) -(petri (? c74 p74 (! c75 p75))) -(petri (? c75 p75 (! c76 p76))) -(petri (? c76 p76 (! c77 p77))) -(petri (? c77 p77 (! c78 p78))) -(petri (? c78 p78 (! c79 p79))) -(petri (? c79 p79 (! c80 p80))) -(petri (? c80 p80 (! c81 p81))) -(petri (? c81 p81 (! c82 p82))) -(petri (? c82 p82 (! c83 p83))) -(petri (? c83 p83 (! c84 p84))) -(petri (? c84 p84 (! c85 p85))) -(petri (? c85 p85 (! c86 p86))) -(petri (? c86 p86 (! c87 p87))) -(petri (? c87 p87 (! c88 p88))) -(petri (? c88 p88 (! c89 p89))) -(petri (? c89 p89 (! c90 p90))) -(petri (? c90 p90 (! c91 p91))) -(petri (? c91 p91 (! c92 p92))) -(petri (? c92 p92 (! c93 p93))) -(petri (? c93 p93 (! c94 p94))) -(petri (? c94 p94 (! c95 p95))) -(petri (? c95 p95 (! c96 p96))) -(petri (? c96 p96 (! c97 p97))) -(petri (? c97 p97 (! c98 p98))) -(petri (? c98 p98 (! c99 p99))) -(petri (? c99 p99 (! c100 p100))) -(petri (? c100 p100 (! c101 p101))) -(petri (? c101 p101 (! c102 p102))) -(petri (? c102 p102 (! c103 p103))) -(petri (? c103 p103 (! c104 p104))) -(petri (? c104 p104 (! c105 p105))) -(petri (? c105 p105 (! c106 p106))) -(petri (? c106 p106 (! c107 p107))) -(petri (? c107 p107 (! c108 p108))) -(petri (? c108 p108 (! c109 p109))) -(petri (? c109 p109 (! c110 p110))) -(petri (? c110 p110 (! c111 p111))) -(petri (? c111 p111 (! c112 p112))) -(petri (? c112 p112 (! c113 p113))) -(petri (? c113 p113 (! c114 p114))) -(petri (? c114 p114 (! c115 p115))) -(petri (? c115 p115 (! c116 p116))) -(petri (? c116 p116 (! c117 p117))) -(petri (? c117 p117 (! c118 p118))) -(petri (? c118 p118 (! c119 p119))) -(petri (? c119 p119 (! c120 p120))) -(petri (? c120 p120 (! c121 p121))) -(petri (? c121 p121 (! c122 p122))) -(petri (? c122 p122 (! c123 p123))) -(petri (? c123 p123 (! c124 p124))) -(petri (? c124 p124 (! c125 p125))) -(petri (? c125 p125 (! c126 p126))) -(petri (? c126 p126 (! c127 p127))) -(petri (? c127 p127 (! c128 p128))) -(petri (? c128 p128 (! c129 p129))) -(petri (? c129 p129 (! c130 p130))) -(petri (? c130 p130 (! c131 p131))) -(petri (? c131 p131 (! c132 p132))) -(petri (? c132 p132 (! c133 p133))) -(petri (? c133 p133 (! c134 p134))) -(petri (? c134 p134 (! c135 p135))) -(petri (? c135 p135 (! c136 p136))) -(petri (? c136 p136 (! c137 p137))) -(petri (? c137 p137 (! c138 p138))) -(petri (? c138 p138 (! c139 p139))) -(petri (? c139 p139 (! c140 p140))) -(petri (? c140 p140 (! c141 p141))) -(petri (? c141 p141 (! c142 p142))) -(petri (? c142 p142 (! c143 p143))) -(petri (? c143 p143 (! c144 p144))) -(petri (? c144 p144 (! c145 p145))) -(petri (? c145 p145 (! c146 p146))) -(petri (? c146 p146 (! c147 p147))) -(petri (? c147 p147 (! c148 p148))) -(petri (? c148 p148 (! c149 p149))) -(petri (? c149 p149 (! c150 p150))) -(petri (? c150 p150 (! c151 p151))) -(petri (? c151 p151 (! c152 p152))) -(petri (? c152 p152 (! c153 p153))) -(petri (? c153 p153 (! c154 p154))) -(petri (? c154 p154 (! c155 p155))) -(petri (? c155 p155 (! c156 p156))) -(petri (? c156 p156 (! c157 p157))) -(petri (? c157 p157 (! c158 p158))) -(petri (? c158 p158 (! c159 p159))) -(petri (? c159 p159 (! c160 p160))) -(petri (? c160 p160 (! c161 p161))) -(petri (? c161 p161 (! c162 p162))) -(petri (? c162 p162 (! c163 p163))) -(petri (? c163 p163 (! c164 p164))) -(petri (? c164 p164 (! c165 p165))) -(petri (? c165 p165 (! c166 p166))) -(petri (? c166 p166 (! c167 p167))) -(petri (? c167 p167 (! c168 p168))) -(petri (? c168 p168 (! c169 p169))) -(petri (? c169 p169 (! c170 p170))) -(petri (? c170 p170 (! c171 p171))) -(petri (? c171 p171 (! c172 p172))) -(petri (? c172 p172 (! c173 p173))) -(petri (? c173 p173 (! c174 p174))) -(petri (? c174 p174 (! c175 p175))) -(petri (? c175 p175 (! c176 p176))) -(petri (? c176 p176 (! c177 p177))) -(petri (? c177 p177 (! c178 p178))) -(petri (? c178 p178 (! c179 p179))) -(petri (? c179 p179 (! c180 p180))) -(petri (? c180 p180 (! c181 p181))) -(petri (? c181 p181 (! c182 p182))) -(petri (? c182 p182 (! c183 p183))) -(petri (? c183 p183 (! c184 p184))) -(petri (? c184 p184 (! c185 p185))) -(petri (? c185 p185 (! c186 p186))) -(petri (? c186 p186 (! c187 p187))) -(petri (? c187 p187 (! c188 p188))) -(petri (? c188 p188 (! c189 p189))) -(petri (? c189 p189 (! c190 p190))) -(petri (? c190 p190 (! c191 p191))) -(petri (? c191 p191 (! c192 p192))) -(petri (? c192 p192 (! c193 p193))) -(petri (? c193 p193 (! c194 p194))) -(petri (? c194 p194 (! c195 p195))) -(petri (? c195 p195 (! c196 p196))) -(petri (? c196 p196 (! c197 p197))) -(petri (? c197 p197 (! c198 p198))) -(petri (? c198 p198 (! c199 p199))) -(petri (? c199 p199 (! c200 p200))) -(petri (? c200 p200 (! c201 p201))) -(petri (? c201 p201 (! c202 p202))) -(petri (? c202 p202 (! c203 p203))) -(petri (? c203 p203 (! c204 p204))) -(petri (? c204 p204 (! c205 p205))) -(petri (? c205 p205 (! c206 p206))) -(petri (? c206 p206 (! c207 p207))) -(petri (? c207 p207 (! c208 p208))) -(petri (? c208 p208 (! c209 p209))) -(petri (? c209 p209 (! c210 p210))) -(petri (? c210 p210 (! c211 p211))) -(petri (? c211 p211 (! c212 p212))) -(petri (? c212 p212 (! c213 p213))) -(petri (? c213 p213 (! c214 p214))) -(petri (? c214 p214 (! c215 p215))) -(petri (? c215 p215 (! c216 p216))) -(petri (? c216 p216 (! c217 p217))) -(petri (? c217 p217 (! c218 p218))) -(petri (? c218 p218 (! c219 p219))) -(petri (? c219 p219 (! c220 p220))) -(petri (? c220 p220 (! c221 p221))) -(petri (? c221 p221 (! c222 p222))) -(petri (? c222 p222 (! c223 p223))) -(petri (? c223 p223 (! c224 p224))) -(petri (? c224 p224 (! c225 p225))) -(petri (? c225 p225 (! c226 p226))) -(petri (? c226 p226 (! c227 p227))) -(petri (? c227 p227 (! c228 p228))) -(petri (? c228 p228 (! c229 p229))) -(petri (? c229 p229 (! c230 p230))) -(petri (? c230 p230 (! c231 p231))) -(petri (? c231 p231 (! c232 p232))) -(petri (? c232 p232 (! c233 p233))) -(petri (? c233 p233 (! c234 p234))) -(petri (? c234 p234 (! c235 p235))) -(petri (? c235 p235 (! c236 p236))) -(petri (? c236 p236 (! c237 p237))) -(petri (? c237 p237 (! c238 p238))) -(petri (? c238 p238 (! c239 p239))) -(petri (? c239 p239 (! c240 p240))) -(petri (? c240 p240 (! c241 p241))) -(petri (? c241 p241 (! c242 p242))) -(petri (? c242 p242 (! c243 p243))) -(petri (? c243 p243 (! c244 p244))) -(petri (? c244 p244 (! c245 p245))) -(petri (? c245 p245 (! c246 p246))) -(petri (? c246 p246 (! c247 p247))) -(petri (? c247 p247 (! c248 p248))) -(petri (? c248 p248 (! c249 p249))) -(petri (? c249 p249 (! c250 p250))) -(petri (? c250 p250 (! c251 p251))) -(petri (? c251 p251 (! c252 p252))) -(petri (? c252 p252 (! c253 p253))) -(petri (? c253 p253 (! c254 p254))) -(petri (? c254 p254 (! c255 p255))) -(petri (? c255 p255 (! c256 p256))) -(petri (? c256 p256 (! c257 p257))) -(petri (? c257 p257 (! c258 p258))) -(petri (? c258 p258 (! c259 p259))) -(petri (? c259 p259 (! c260 p260))) -(petri (? c260 p260 (! c261 p261))) -(petri (? c261 p261 (! c262 p262))) -(petri (? c262 p262 (! c263 p263))) -(petri (? c263 p263 (! c264 p264))) -(petri (? c264 p264 (! c265 p265))) -(petri (? c265 p265 (! c266 p266))) -(petri (? c266 p266 (! c267 p267))) -(petri (? c267 p267 (! c268 p268))) -(petri (? c268 p268 (! c269 p269))) -(petri (? c269 p269 (! c270 p270))) -(petri (? c270 p270 (! c271 p271))) -(petri (? c271 p271 (! c272 p272))) -(petri (? c272 p272 (! c273 p273))) -(petri (? c273 p273 (! c274 p274))) -(petri (? c274 p274 (! c275 p275))) -(petri (? c275 p275 (! c276 p276))) -(petri (? c276 p276 (! c277 p277))) -(petri (? c277 p277 (! c278 p278))) -(petri (? c278 p278 (! c279 p279))) -(petri (? c279 p279 (! c280 p280))) -(petri (? c280 p280 (! c281 p281))) -(petri (? c281 p281 (! c282 p282))) -(petri (? c282 p282 (! c283 p283))) -(petri (? c283 p283 (! c284 p284))) -(petri (? c284 p284 (! c285 p285))) -(petri (? c285 p285 (! c286 p286))) -(petri (? c286 p286 (! c287 p287))) -(petri (? c287 p287 (! c288 p288))) -(petri (? c288 p288 (! c289 p289))) -(petri (? c289 p289 (! c290 p290))) -(petri (? c290 p290 (! c291 p291))) -(petri (? c291 p291 (! c292 p292))) -(petri (? c292 p292 (! c293 p293))) -(petri (? c293 p293 (! c294 p294))) -(petri (? c294 p294 (! c295 p295))) -(petri (? c295 p295 (! c296 p296))) -(petri (? c296 p296 (! c297 p297))) -(petri (? c297 p297 (! c298 p298))) -(petri (? c298 p298 (! c299 p299))) -(petri (? c299 p299 (! c300 p300))) -(petri (? c300 p300 (! c301 p301))) -(petri (? c301 p301 (! c302 p302))) -(petri (? c302 p302 (! c303 p303))) -(petri (? c303 p303 (! c304 p304))) -(petri (? c304 p304 (! c305 p305))) -(petri (? c305 p305 (! c306 p306))) -(petri (? c306 p306 (! c307 p307))) -(petri (? c307 p307 (! c308 p308))) -(petri (? c308 p308 (! c309 p309))) -(petri (? c309 p309 (! c310 p310))) -(petri (? c310 p310 (! c311 p311))) -(petri (? c311 p311 (! c312 p312))) -(petri (? c312 p312 (! c313 p313))) -(petri (? c313 p313 (! c314 p314))) -(petri (? c314 p314 (! c315 p315))) -(petri (? c315 p315 (! c316 p316))) -(petri (? c316 p316 (! c317 p317))) -(petri (? c317 p317 (! c318 p318))) -(petri (? c318 p318 (! c319 p319))) -(petri (? c319 p319 (! c320 p320))) -(petri (? c320 p320 (! c321 p321))) -(petri (? c321 p321 (! c322 p322))) -(petri (? c322 p322 (! c323 p323))) -(petri (? c323 p323 (! c324 p324))) -(petri (? c324 p324 (! c325 p325))) -(petri (? c325 p325 (! c326 p326))) -(petri (? c326 p326 (! c327 p327))) -(petri (? c327 p327 (! c328 p328))) -(petri (? c328 p328 (! c329 p329))) -(petri (? c329 p329 (! c330 p330))) -(petri (? c330 p330 (! c331 p331))) -(petri (? c331 p331 (! c332 p332))) -(petri (? c332 p332 (! c333 p333))) -(petri (? c333 p333 (! c334 p334))) -(petri (? c334 p334 (! c335 p335))) -(petri (? c335 p335 (! c336 p336))) -(petri (? c336 p336 (! c337 p337))) -(petri (? c337 p337 (! c338 p338))) -(petri (? c338 p338 (! c339 p339))) -(petri (? c339 p339 (! c340 p340))) -(petri (? c340 p340 (! c341 p341))) -(petri (? c341 p341 (! c342 p342))) -(petri (? c342 p342 (! c343 p343))) -(petri (? c343 p343 (! c344 p344))) -(petri (? c344 p344 (! c345 p345))) -(petri (? c345 p345 (! c346 p346))) -(petri (? c346 p346 (! c347 p347))) -(petri (? c347 p347 (! c348 p348))) -(petri (? c348 p348 (! c349 p349))) -(petri (? c349 p349 (! c350 p350))) -(petri (? c350 p350 (! c351 p351))) -(petri (? c351 p351 (! c352 p352))) -(petri (? c352 p352 (! c353 p353))) -(petri (? c353 p353 (! c354 p354))) -(petri (? c354 p354 (! c355 p355))) -(petri (? c355 p355 (! c356 p356))) -(petri (? c356 p356 (! c357 p357))) -(petri (? c357 p357 (! c358 p358))) -(petri (? c358 p358 (! c359 p359))) -(petri (? c359 p359 (! c360 p360))) -(petri (? c360 p360 (! c361 p361))) -(petri (? c361 p361 (! c362 p362))) -(petri (? c362 p362 (! c363 p363))) -(petri (? c363 p363 (! c364 p364))) -(petri (? c364 p364 (! c365 p365))) -(petri (? c365 p365 (! c366 p366))) -(petri (? c366 p366 (! c367 p367))) -(petri (? c367 p367 (! c368 p368))) -(petri (? c368 p368 (! c369 p369))) -(petri (? c369 p369 (! c370 p370))) -(petri (? c370 p370 (! c371 p371))) -(petri (? c371 p371 (! c372 p372))) -(petri (? c372 p372 (! c373 p373))) -(petri (? c373 p373 (! c374 p374))) -(petri (? c374 p374 (! c375 p375))) -(petri (? c375 p375 (! c376 p376))) -(petri (? c376 p376 (! c377 p377))) -(petri (? c377 p377 (! c378 p378))) -(petri (? c378 p378 (! c379 p379))) -(petri (? c379 p379 (! c380 p380))) -(petri (? c380 p380 (! c381 p381))) -(petri (? c381 p381 (! c382 p382))) -(petri (? c382 p382 (! c383 p383))) -(petri (? c383 p383 (! c384 p384))) -(petri (? c384 p384 (! c385 p385))) -(petri (? c385 p385 (! c386 p386))) -(petri (? c386 p386 (! c387 p387))) -(petri (? c387 p387 (! c388 p388))) -(petri (? c388 p388 (! c389 p389))) -(petri (? c389 p389 (! c390 p390))) -(petri (? c390 p390 (! c391 p391))) -(petri (? c391 p391 (! c392 p392))) -(petri (? c392 p392 (! c393 p393))) -(petri (? c393 p393 (! c394 p394))) -(petri (? c394 p394 (! c395 p395))) -(petri (? c395 p395 (! c396 p396))) -(petri (? c396 p396 (! c397 p397))) -(petri (? c397 p397 (! c398 p398))) -(petri (? c398 p398 (! c399 p399))) -(petri (? c399 p399 (! c400 p400))) -(petri (! c0 p0)) -(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) - -(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) - (petri (? $c $pl $b)) (petri (! $c $pl))) - (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) - (- (petri (? $c $pl $b))) (- (petri (! $c $pl))) - (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_delta.mm2 b/examples/transforms/pc3_delta.mm2 deleted file mode 100644 index aa1fde9e..00000000 --- a/examples/transforms/pc3_delta.mm2 +++ /dev/null @@ -1,408 +0,0 @@ -(petri (? c0 p0 (! c1 p1))) -(petri (? c1 p1 (! c2 p2))) -(petri (? c2 p2 (! c3 p3))) -(petri (? c3 p3 (! c4 p4))) -(petri (? c4 p4 (! c5 p5))) -(petri (? c5 p5 (! c6 p6))) -(petri (? c6 p6 (! c7 p7))) -(petri (? c7 p7 (! c8 p8))) -(petri (? c8 p8 (! c9 p9))) -(petri (? c9 p9 (! c10 p10))) -(petri (? c10 p10 (! c11 p11))) -(petri (? c11 p11 (! c12 p12))) -(petri (? c12 p12 (! c13 p13))) -(petri (? c13 p13 (! c14 p14))) -(petri (? c14 p14 (! c15 p15))) -(petri (? c15 p15 (! c16 p16))) -(petri (? c16 p16 (! c17 p17))) -(petri (? c17 p17 (! c18 p18))) -(petri (? c18 p18 (! c19 p19))) -(petri (? c19 p19 (! c20 p20))) -(petri (? c20 p20 (! c21 p21))) -(petri (? c21 p21 (! c22 p22))) -(petri (? c22 p22 (! c23 p23))) -(petri (? c23 p23 (! c24 p24))) -(petri (? c24 p24 (! c25 p25))) -(petri (? c25 p25 (! c26 p26))) -(petri (? c26 p26 (! c27 p27))) -(petri (? c27 p27 (! c28 p28))) -(petri (? c28 p28 (! c29 p29))) -(petri (? c29 p29 (! c30 p30))) -(petri (? c30 p30 (! c31 p31))) -(petri (? c31 p31 (! c32 p32))) -(petri (? c32 p32 (! c33 p33))) -(petri (? c33 p33 (! c34 p34))) -(petri (? c34 p34 (! c35 p35))) -(petri (? c35 p35 (! c36 p36))) -(petri (? c36 p36 (! c37 p37))) -(petri (? c37 p37 (! c38 p38))) -(petri (? c38 p38 (! c39 p39))) -(petri (? c39 p39 (! c40 p40))) -(petri (? c40 p40 (! c41 p41))) -(petri (? c41 p41 (! c42 p42))) -(petri (? c42 p42 (! c43 p43))) -(petri (? c43 p43 (! c44 p44))) -(petri (? c44 p44 (! c45 p45))) -(petri (? c45 p45 (! c46 p46))) -(petri (? c46 p46 (! c47 p47))) -(petri (? c47 p47 (! c48 p48))) -(petri (? c48 p48 (! c49 p49))) -(petri (? c49 p49 (! c50 p50))) -(petri (? c50 p50 (! c51 p51))) -(petri (? c51 p51 (! c52 p52))) -(petri (? c52 p52 (! c53 p53))) -(petri (? c53 p53 (! c54 p54))) -(petri (? c54 p54 (! c55 p55))) -(petri (? c55 p55 (! c56 p56))) -(petri (? c56 p56 (! c57 p57))) -(petri (? c57 p57 (! c58 p58))) -(petri (? c58 p58 (! c59 p59))) -(petri (? c59 p59 (! c60 p60))) -(petri (? c60 p60 (! c61 p61))) -(petri (? c61 p61 (! c62 p62))) -(petri (? c62 p62 (! c63 p63))) -(petri (? c63 p63 (! c64 p64))) -(petri (? c64 p64 (! c65 p65))) -(petri (? c65 p65 (! c66 p66))) -(petri (? c66 p66 (! c67 p67))) -(petri (? c67 p67 (! c68 p68))) -(petri (? c68 p68 (! c69 p69))) -(petri (? c69 p69 (! c70 p70))) -(petri (? c70 p70 (! c71 p71))) -(petri (? c71 p71 (! c72 p72))) -(petri (? c72 p72 (! c73 p73))) -(petri (? c73 p73 (! c74 p74))) -(petri (? c74 p74 (! c75 p75))) -(petri (? c75 p75 (! c76 p76))) -(petri (? c76 p76 (! c77 p77))) -(petri (? c77 p77 (! c78 p78))) -(petri (? c78 p78 (! c79 p79))) -(petri (? c79 p79 (! c80 p80))) -(petri (? c80 p80 (! c81 p81))) -(petri (? c81 p81 (! c82 p82))) -(petri (? c82 p82 (! c83 p83))) -(petri (? c83 p83 (! c84 p84))) -(petri (? c84 p84 (! c85 p85))) -(petri (? c85 p85 (! c86 p86))) -(petri (? c86 p86 (! c87 p87))) -(petri (? c87 p87 (! c88 p88))) -(petri (? c88 p88 (! c89 p89))) -(petri (? c89 p89 (! c90 p90))) -(petri (? c90 p90 (! c91 p91))) -(petri (? c91 p91 (! c92 p92))) -(petri (? c92 p92 (! c93 p93))) -(petri (? c93 p93 (! c94 p94))) -(petri (? c94 p94 (! c95 p95))) -(petri (? c95 p95 (! c96 p96))) -(petri (? c96 p96 (! c97 p97))) -(petri (? c97 p97 (! c98 p98))) -(petri (? c98 p98 (! c99 p99))) -(petri (? c99 p99 (! c100 p100))) -(petri (? c100 p100 (! c101 p101))) -(petri (? c101 p101 (! c102 p102))) -(petri (? c102 p102 (! c103 p103))) -(petri (? c103 p103 (! c104 p104))) -(petri (? c104 p104 (! c105 p105))) -(petri (? c105 p105 (! c106 p106))) -(petri (? c106 p106 (! c107 p107))) -(petri (? c107 p107 (! c108 p108))) -(petri (? c108 p108 (! c109 p109))) -(petri (? c109 p109 (! c110 p110))) -(petri (? c110 p110 (! c111 p111))) -(petri (? c111 p111 (! c112 p112))) -(petri (? c112 p112 (! c113 p113))) -(petri (? c113 p113 (! c114 p114))) -(petri (? c114 p114 (! c115 p115))) -(petri (? c115 p115 (! c116 p116))) -(petri (? c116 p116 (! c117 p117))) -(petri (? c117 p117 (! c118 p118))) -(petri (? c118 p118 (! c119 p119))) -(petri (? c119 p119 (! c120 p120))) -(petri (? c120 p120 (! c121 p121))) -(petri (? c121 p121 (! c122 p122))) -(petri (? c122 p122 (! c123 p123))) -(petri (? c123 p123 (! c124 p124))) -(petri (? c124 p124 (! c125 p125))) -(petri (? c125 p125 (! c126 p126))) -(petri (? c126 p126 (! c127 p127))) -(petri (? c127 p127 (! c128 p128))) -(petri (? c128 p128 (! c129 p129))) -(petri (? c129 p129 (! c130 p130))) -(petri (? c130 p130 (! c131 p131))) -(petri (? c131 p131 (! c132 p132))) -(petri (? c132 p132 (! c133 p133))) -(petri (? c133 p133 (! c134 p134))) -(petri (? c134 p134 (! c135 p135))) -(petri (? c135 p135 (! c136 p136))) -(petri (? c136 p136 (! c137 p137))) -(petri (? c137 p137 (! c138 p138))) -(petri (? c138 p138 (! c139 p139))) -(petri (? c139 p139 (! c140 p140))) -(petri (? c140 p140 (! c141 p141))) -(petri (? c141 p141 (! c142 p142))) -(petri (? c142 p142 (! c143 p143))) -(petri (? c143 p143 (! c144 p144))) -(petri (? c144 p144 (! c145 p145))) -(petri (? c145 p145 (! c146 p146))) -(petri (? c146 p146 (! c147 p147))) -(petri (? c147 p147 (! c148 p148))) -(petri (? c148 p148 (! c149 p149))) -(petri (? c149 p149 (! c150 p150))) -(petri (? c150 p150 (! c151 p151))) -(petri (? c151 p151 (! c152 p152))) -(petri (? c152 p152 (! c153 p153))) -(petri (? c153 p153 (! c154 p154))) -(petri (? c154 p154 (! c155 p155))) -(petri (? c155 p155 (! c156 p156))) -(petri (? c156 p156 (! c157 p157))) -(petri (? c157 p157 (! c158 p158))) -(petri (? c158 p158 (! c159 p159))) -(petri (? c159 p159 (! c160 p160))) -(petri (? c160 p160 (! c161 p161))) -(petri (? c161 p161 (! c162 p162))) -(petri (? c162 p162 (! c163 p163))) -(petri (? c163 p163 (! c164 p164))) -(petri (? c164 p164 (! c165 p165))) -(petri (? c165 p165 (! c166 p166))) -(petri (? c166 p166 (! c167 p167))) -(petri (? c167 p167 (! c168 p168))) -(petri (? c168 p168 (! c169 p169))) -(petri (? c169 p169 (! c170 p170))) -(petri (? c170 p170 (! c171 p171))) -(petri (? c171 p171 (! c172 p172))) -(petri (? c172 p172 (! c173 p173))) -(petri (? c173 p173 (! c174 p174))) -(petri (? c174 p174 (! c175 p175))) -(petri (? c175 p175 (! c176 p176))) -(petri (? c176 p176 (! c177 p177))) -(petri (? c177 p177 (! c178 p178))) -(petri (? c178 p178 (! c179 p179))) -(petri (? c179 p179 (! c180 p180))) -(petri (? c180 p180 (! c181 p181))) -(petri (? c181 p181 (! c182 p182))) -(petri (? c182 p182 (! c183 p183))) -(petri (? c183 p183 (! c184 p184))) -(petri (? c184 p184 (! c185 p185))) -(petri (? c185 p185 (! c186 p186))) -(petri (? c186 p186 (! c187 p187))) -(petri (? c187 p187 (! c188 p188))) -(petri (? c188 p188 (! c189 p189))) -(petri (? c189 p189 (! c190 p190))) -(petri (? c190 p190 (! c191 p191))) -(petri (? c191 p191 (! c192 p192))) -(petri (? c192 p192 (! c193 p193))) -(petri (? c193 p193 (! c194 p194))) -(petri (? c194 p194 (! c195 p195))) -(petri (? c195 p195 (! c196 p196))) -(petri (? c196 p196 (! c197 p197))) -(petri (? c197 p197 (! c198 p198))) -(petri (? c198 p198 (! c199 p199))) -(petri (? c199 p199 (! c200 p200))) -(petri (? c200 p200 (! c201 p201))) -(petri (? c201 p201 (! c202 p202))) -(petri (? c202 p202 (! c203 p203))) -(petri (? c203 p203 (! c204 p204))) -(petri (? c204 p204 (! c205 p205))) -(petri (? c205 p205 (! c206 p206))) -(petri (? c206 p206 (! c207 p207))) -(petri (? c207 p207 (! c208 p208))) -(petri (? c208 p208 (! c209 p209))) -(petri (? c209 p209 (! c210 p210))) -(petri (? c210 p210 (! c211 p211))) -(petri (? c211 p211 (! c212 p212))) -(petri (? c212 p212 (! c213 p213))) -(petri (? c213 p213 (! c214 p214))) -(petri (? c214 p214 (! c215 p215))) -(petri (? c215 p215 (! c216 p216))) -(petri (? c216 p216 (! c217 p217))) -(petri (? c217 p217 (! c218 p218))) -(petri (? c218 p218 (! c219 p219))) -(petri (? c219 p219 (! c220 p220))) -(petri (? c220 p220 (! c221 p221))) -(petri (? c221 p221 (! c222 p222))) -(petri (? c222 p222 (! c223 p223))) -(petri (? c223 p223 (! c224 p224))) -(petri (? c224 p224 (! c225 p225))) -(petri (? c225 p225 (! c226 p226))) -(petri (? c226 p226 (! c227 p227))) -(petri (? c227 p227 (! c228 p228))) -(petri (? c228 p228 (! c229 p229))) -(petri (? c229 p229 (! c230 p230))) -(petri (? c230 p230 (! c231 p231))) -(petri (? c231 p231 (! c232 p232))) -(petri (? c232 p232 (! c233 p233))) -(petri (? c233 p233 (! c234 p234))) -(petri (? c234 p234 (! c235 p235))) -(petri (? c235 p235 (! c236 p236))) -(petri (? c236 p236 (! c237 p237))) -(petri (? c237 p237 (! c238 p238))) -(petri (? c238 p238 (! c239 p239))) -(petri (? c239 p239 (! c240 p240))) -(petri (? c240 p240 (! c241 p241))) -(petri (? c241 p241 (! c242 p242))) -(petri (? c242 p242 (! c243 p243))) -(petri (? c243 p243 (! c244 p244))) -(petri (? c244 p244 (! c245 p245))) -(petri (? c245 p245 (! c246 p246))) -(petri (? c246 p246 (! c247 p247))) -(petri (? c247 p247 (! c248 p248))) -(petri (? c248 p248 (! c249 p249))) -(petri (? c249 p249 (! c250 p250))) -(petri (? c250 p250 (! c251 p251))) -(petri (? c251 p251 (! c252 p252))) -(petri (? c252 p252 (! c253 p253))) -(petri (? c253 p253 (! c254 p254))) -(petri (? c254 p254 (! c255 p255))) -(petri (? c255 p255 (! c256 p256))) -(petri (? c256 p256 (! c257 p257))) -(petri (? c257 p257 (! c258 p258))) -(petri (? c258 p258 (! c259 p259))) -(petri (? c259 p259 (! c260 p260))) -(petri (? c260 p260 (! c261 p261))) -(petri (? c261 p261 (! c262 p262))) -(petri (? c262 p262 (! c263 p263))) -(petri (? c263 p263 (! c264 p264))) -(petri (? c264 p264 (! c265 p265))) -(petri (? c265 p265 (! c266 p266))) -(petri (? c266 p266 (! c267 p267))) -(petri (? c267 p267 (! c268 p268))) -(petri (? c268 p268 (! c269 p269))) -(petri (? c269 p269 (! c270 p270))) -(petri (? c270 p270 (! c271 p271))) -(petri (? c271 p271 (! c272 p272))) -(petri (? c272 p272 (! c273 p273))) -(petri (? c273 p273 (! c274 p274))) -(petri (? c274 p274 (! c275 p275))) -(petri (? c275 p275 (! c276 p276))) -(petri (? c276 p276 (! c277 p277))) -(petri (? c277 p277 (! c278 p278))) -(petri (? c278 p278 (! c279 p279))) -(petri (? c279 p279 (! c280 p280))) -(petri (? c280 p280 (! c281 p281))) -(petri (? c281 p281 (! c282 p282))) -(petri (? c282 p282 (! c283 p283))) -(petri (? c283 p283 (! c284 p284))) -(petri (? c284 p284 (! c285 p285))) -(petri (? c285 p285 (! c286 p286))) -(petri (? c286 p286 (! c287 p287))) -(petri (? c287 p287 (! c288 p288))) -(petri (? c288 p288 (! c289 p289))) -(petri (? c289 p289 (! c290 p290))) -(petri (? c290 p290 (! c291 p291))) -(petri (? c291 p291 (! c292 p292))) -(petri (? c292 p292 (! c293 p293))) -(petri (? c293 p293 (! c294 p294))) -(petri (? c294 p294 (! c295 p295))) -(petri (? c295 p295 (! c296 p296))) -(petri (? c296 p296 (! c297 p297))) -(petri (? c297 p297 (! c298 p298))) -(petri (? c298 p298 (! c299 p299))) -(petri (? c299 p299 (! c300 p300))) -(petri (? c300 p300 (! c301 p301))) -(petri (? c301 p301 (! c302 p302))) -(petri (? c302 p302 (! c303 p303))) -(petri (? c303 p303 (! c304 p304))) -(petri (? c304 p304 (! c305 p305))) -(petri (? c305 p305 (! c306 p306))) -(petri (? c306 p306 (! c307 p307))) -(petri (? c307 p307 (! c308 p308))) -(petri (? c308 p308 (! c309 p309))) -(petri (? c309 p309 (! c310 p310))) -(petri (? c310 p310 (! c311 p311))) -(petri (? c311 p311 (! c312 p312))) -(petri (? c312 p312 (! c313 p313))) -(petri (? c313 p313 (! c314 p314))) -(petri (? c314 p314 (! c315 p315))) -(petri (? c315 p315 (! c316 p316))) -(petri (? c316 p316 (! c317 p317))) -(petri (? c317 p317 (! c318 p318))) -(petri (? c318 p318 (! c319 p319))) -(petri (? c319 p319 (! c320 p320))) -(petri (? c320 p320 (! c321 p321))) -(petri (? c321 p321 (! c322 p322))) -(petri (? c322 p322 (! c323 p323))) -(petri (? c323 p323 (! c324 p324))) -(petri (? c324 p324 (! c325 p325))) -(petri (? c325 p325 (! c326 p326))) -(petri (? c326 p326 (! c327 p327))) -(petri (? c327 p327 (! c328 p328))) -(petri (? c328 p328 (! c329 p329))) -(petri (? c329 p329 (! c330 p330))) -(petri (? c330 p330 (! c331 p331))) -(petri (? c331 p331 (! c332 p332))) -(petri (? c332 p332 (! c333 p333))) -(petri (? c333 p333 (! c334 p334))) -(petri (? c334 p334 (! c335 p335))) -(petri (? c335 p335 (! c336 p336))) -(petri (? c336 p336 (! c337 p337))) -(petri (? c337 p337 (! c338 p338))) -(petri (? c338 p338 (! c339 p339))) -(petri (? c339 p339 (! c340 p340))) -(petri (? c340 p340 (! c341 p341))) -(petri (? c341 p341 (! c342 p342))) -(petri (? c342 p342 (! c343 p343))) -(petri (? c343 p343 (! c344 p344))) -(petri (? c344 p344 (! c345 p345))) -(petri (? c345 p345 (! c346 p346))) -(petri (? c346 p346 (! c347 p347))) -(petri (? c347 p347 (! c348 p348))) -(petri (? c348 p348 (! c349 p349))) -(petri (? c349 p349 (! c350 p350))) -(petri (? c350 p350 (! c351 p351))) -(petri (? c351 p351 (! c352 p352))) -(petri (? c352 p352 (! c353 p353))) -(petri (? c353 p353 (! c354 p354))) -(petri (? c354 p354 (! c355 p355))) -(petri (? c355 p355 (! c356 p356))) -(petri (? c356 p356 (! c357 p357))) -(petri (? c357 p357 (! c358 p358))) -(petri (? c358 p358 (! c359 p359))) -(petri (? c359 p359 (! c360 p360))) -(petri (? c360 p360 (! c361 p361))) -(petri (? c361 p361 (! c362 p362))) -(petri (? c362 p362 (! c363 p363))) -(petri (? c363 p363 (! c364 p364))) -(petri (? c364 p364 (! c365 p365))) -(petri (? c365 p365 (! c366 p366))) -(petri (? c366 p366 (! c367 p367))) -(petri (? c367 p367 (! c368 p368))) -(petri (? c368 p368 (! c369 p369))) -(petri (? c369 p369 (! c370 p370))) -(petri (? c370 p370 (! c371 p371))) -(petri (? c371 p371 (! c372 p372))) -(petri (? c372 p372 (! c373 p373))) -(petri (? c373 p373 (! c374 p374))) -(petri (? c374 p374 (! c375 p375))) -(petri (? c375 p375 (! c376 p376))) -(petri (? c376 p376 (! c377 p377))) -(petri (? c377 p377 (! c378 p378))) -(petri (? c378 p378 (! c379 p379))) -(petri (? c379 p379 (! c380 p380))) -(petri (? c380 p380 (! c381 p381))) -(petri (? c381 p381 (! c382 p382))) -(petri (? c382 p382 (! c383 p383))) -(petri (? c383 p383 (! c384 p384))) -(petri (? c384 p384 (! c385 p385))) -(petri (? c385 p385 (! c386 p386))) -(petri (? c386 p386 (! c387 p387))) -(petri (? c387 p387 (! c388 p388))) -(petri (? c388 p388 (! c389 p389))) -(petri (? c389 p389 (! c390 p390))) -(petri (? c390 p390 (! c391 p391))) -(petri (? c391 p391 (! c392 p392))) -(petri (? c392 p392 (! c393 p393))) -(petri (? c393 p393 (! c394 p394))) -(petri (? c394 p394 (! c395 p395))) -(petri (? c395 p395 (! c396 p396))) -(petri (? c396 p396 (! c397 p397))) -(petri (? c397 p397 (! c398 p398))) -(petri (? c398 p398 (! c399 p399))) -(petri (? c399 p399 (! c400 p400))) -(petri (! c0 p0)) -(dmsg (! c0 p0)) -(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) - -(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) - (petri (? $c $pl $b)) (dmsg (! $c $pl))) - (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b)) - (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k))))) diff --git a/examples/transforms/pc3_naive.mm2 b/examples/transforms/pc3_naive.mm2 deleted file mode 100644 index bd06184b..00000000 --- a/examples/transforms/pc3_naive.mm2 +++ /dev/null @@ -1,406 +0,0 @@ -(petri (? c0 p0 (! c1 p1))) -(petri (? c1 p1 (! c2 p2))) -(petri (? c2 p2 (! c3 p3))) -(petri (? c3 p3 (! c4 p4))) -(petri (? c4 p4 (! c5 p5))) -(petri (? c5 p5 (! c6 p6))) -(petri (? c6 p6 (! c7 p7))) -(petri (? c7 p7 (! c8 p8))) -(petri (? c8 p8 (! c9 p9))) -(petri (? c9 p9 (! c10 p10))) -(petri (? c10 p10 (! c11 p11))) -(petri (? c11 p11 (! c12 p12))) -(petri (? c12 p12 (! c13 p13))) -(petri (? c13 p13 (! c14 p14))) -(petri (? c14 p14 (! c15 p15))) -(petri (? c15 p15 (! c16 p16))) -(petri (? c16 p16 (! c17 p17))) -(petri (? c17 p17 (! c18 p18))) -(petri (? c18 p18 (! c19 p19))) -(petri (? c19 p19 (! c20 p20))) -(petri (? c20 p20 (! c21 p21))) -(petri (? c21 p21 (! c22 p22))) -(petri (? c22 p22 (! c23 p23))) -(petri (? c23 p23 (! c24 p24))) -(petri (? c24 p24 (! c25 p25))) -(petri (? c25 p25 (! c26 p26))) -(petri (? c26 p26 (! c27 p27))) -(petri (? c27 p27 (! c28 p28))) -(petri (? c28 p28 (! c29 p29))) -(petri (? c29 p29 (! c30 p30))) -(petri (? c30 p30 (! c31 p31))) -(petri (? c31 p31 (! c32 p32))) -(petri (? c32 p32 (! c33 p33))) -(petri (? c33 p33 (! c34 p34))) -(petri (? c34 p34 (! c35 p35))) -(petri (? c35 p35 (! c36 p36))) -(petri (? c36 p36 (! c37 p37))) -(petri (? c37 p37 (! c38 p38))) -(petri (? c38 p38 (! c39 p39))) -(petri (? c39 p39 (! c40 p40))) -(petri (? c40 p40 (! c41 p41))) -(petri (? c41 p41 (! c42 p42))) -(petri (? c42 p42 (! c43 p43))) -(petri (? c43 p43 (! c44 p44))) -(petri (? c44 p44 (! c45 p45))) -(petri (? c45 p45 (! c46 p46))) -(petri (? c46 p46 (! c47 p47))) -(petri (? c47 p47 (! c48 p48))) -(petri (? c48 p48 (! c49 p49))) -(petri (? c49 p49 (! c50 p50))) -(petri (? c50 p50 (! c51 p51))) -(petri (? c51 p51 (! c52 p52))) -(petri (? c52 p52 (! c53 p53))) -(petri (? c53 p53 (! c54 p54))) -(petri (? c54 p54 (! c55 p55))) -(petri (? c55 p55 (! c56 p56))) -(petri (? c56 p56 (! c57 p57))) -(petri (? c57 p57 (! c58 p58))) -(petri (? c58 p58 (! c59 p59))) -(petri (? c59 p59 (! c60 p60))) -(petri (? c60 p60 (! c61 p61))) -(petri (? c61 p61 (! c62 p62))) -(petri (? c62 p62 (! c63 p63))) -(petri (? c63 p63 (! c64 p64))) -(petri (? c64 p64 (! c65 p65))) -(petri (? c65 p65 (! c66 p66))) -(petri (? c66 p66 (! c67 p67))) -(petri (? c67 p67 (! c68 p68))) -(petri (? c68 p68 (! c69 p69))) -(petri (? c69 p69 (! c70 p70))) -(petri (? c70 p70 (! c71 p71))) -(petri (? c71 p71 (! c72 p72))) -(petri (? c72 p72 (! c73 p73))) -(petri (? c73 p73 (! c74 p74))) -(petri (? c74 p74 (! c75 p75))) -(petri (? c75 p75 (! c76 p76))) -(petri (? c76 p76 (! c77 p77))) -(petri (? c77 p77 (! c78 p78))) -(petri (? c78 p78 (! c79 p79))) -(petri (? c79 p79 (! c80 p80))) -(petri (? c80 p80 (! c81 p81))) -(petri (? c81 p81 (! c82 p82))) -(petri (? c82 p82 (! c83 p83))) -(petri (? c83 p83 (! c84 p84))) -(petri (? c84 p84 (! c85 p85))) -(petri (? c85 p85 (! c86 p86))) -(petri (? c86 p86 (! c87 p87))) -(petri (? c87 p87 (! c88 p88))) -(petri (? c88 p88 (! c89 p89))) -(petri (? c89 p89 (! c90 p90))) -(petri (? c90 p90 (! c91 p91))) -(petri (? c91 p91 (! c92 p92))) -(petri (? c92 p92 (! c93 p93))) -(petri (? c93 p93 (! c94 p94))) -(petri (? c94 p94 (! c95 p95))) -(petri (? c95 p95 (! c96 p96))) -(petri (? c96 p96 (! c97 p97))) -(petri (? c97 p97 (! c98 p98))) -(petri (? c98 p98 (! c99 p99))) -(petri (? c99 p99 (! c100 p100))) -(petri (? c100 p100 (! c101 p101))) -(petri (? c101 p101 (! c102 p102))) -(petri (? c102 p102 (! c103 p103))) -(petri (? c103 p103 (! c104 p104))) -(petri (? c104 p104 (! c105 p105))) -(petri (? c105 p105 (! c106 p106))) -(petri (? c106 p106 (! c107 p107))) -(petri (? c107 p107 (! c108 p108))) -(petri (? c108 p108 (! c109 p109))) -(petri (? c109 p109 (! c110 p110))) -(petri (? c110 p110 (! c111 p111))) -(petri (? c111 p111 (! c112 p112))) -(petri (? c112 p112 (! c113 p113))) -(petri (? c113 p113 (! c114 p114))) -(petri (? c114 p114 (! c115 p115))) -(petri (? c115 p115 (! c116 p116))) -(petri (? c116 p116 (! c117 p117))) -(petri (? c117 p117 (! c118 p118))) -(petri (? c118 p118 (! c119 p119))) -(petri (? c119 p119 (! c120 p120))) -(petri (? c120 p120 (! c121 p121))) -(petri (? c121 p121 (! c122 p122))) -(petri (? c122 p122 (! c123 p123))) -(petri (? c123 p123 (! c124 p124))) -(petri (? c124 p124 (! c125 p125))) -(petri (? c125 p125 (! c126 p126))) -(petri (? c126 p126 (! c127 p127))) -(petri (? c127 p127 (! c128 p128))) -(petri (? c128 p128 (! c129 p129))) -(petri (? c129 p129 (! c130 p130))) -(petri (? c130 p130 (! c131 p131))) -(petri (? c131 p131 (! c132 p132))) -(petri (? c132 p132 (! c133 p133))) -(petri (? c133 p133 (! c134 p134))) -(petri (? c134 p134 (! c135 p135))) -(petri (? c135 p135 (! c136 p136))) -(petri (? c136 p136 (! c137 p137))) -(petri (? c137 p137 (! c138 p138))) -(petri (? c138 p138 (! c139 p139))) -(petri (? c139 p139 (! c140 p140))) -(petri (? c140 p140 (! c141 p141))) -(petri (? c141 p141 (! c142 p142))) -(petri (? c142 p142 (! c143 p143))) -(petri (? c143 p143 (! c144 p144))) -(petri (? c144 p144 (! c145 p145))) -(petri (? c145 p145 (! c146 p146))) -(petri (? c146 p146 (! c147 p147))) -(petri (? c147 p147 (! c148 p148))) -(petri (? c148 p148 (! c149 p149))) -(petri (? c149 p149 (! c150 p150))) -(petri (? c150 p150 (! c151 p151))) -(petri (? c151 p151 (! c152 p152))) -(petri (? c152 p152 (! c153 p153))) -(petri (? c153 p153 (! c154 p154))) -(petri (? c154 p154 (! c155 p155))) -(petri (? c155 p155 (! c156 p156))) -(petri (? c156 p156 (! c157 p157))) -(petri (? c157 p157 (! c158 p158))) -(petri (? c158 p158 (! c159 p159))) -(petri (? c159 p159 (! c160 p160))) -(petri (? c160 p160 (! c161 p161))) -(petri (? c161 p161 (! c162 p162))) -(petri (? c162 p162 (! c163 p163))) -(petri (? c163 p163 (! c164 p164))) -(petri (? c164 p164 (! c165 p165))) -(petri (? c165 p165 (! c166 p166))) -(petri (? c166 p166 (! c167 p167))) -(petri (? c167 p167 (! c168 p168))) -(petri (? c168 p168 (! c169 p169))) -(petri (? c169 p169 (! c170 p170))) -(petri (? c170 p170 (! c171 p171))) -(petri (? c171 p171 (! c172 p172))) -(petri (? c172 p172 (! c173 p173))) -(petri (? c173 p173 (! c174 p174))) -(petri (? c174 p174 (! c175 p175))) -(petri (? c175 p175 (! c176 p176))) -(petri (? c176 p176 (! c177 p177))) -(petri (? c177 p177 (! c178 p178))) -(petri (? c178 p178 (! c179 p179))) -(petri (? c179 p179 (! c180 p180))) -(petri (? c180 p180 (! c181 p181))) -(petri (? c181 p181 (! c182 p182))) -(petri (? c182 p182 (! c183 p183))) -(petri (? c183 p183 (! c184 p184))) -(petri (? c184 p184 (! c185 p185))) -(petri (? c185 p185 (! c186 p186))) -(petri (? c186 p186 (! c187 p187))) -(petri (? c187 p187 (! c188 p188))) -(petri (? c188 p188 (! c189 p189))) -(petri (? c189 p189 (! c190 p190))) -(petri (? c190 p190 (! c191 p191))) -(petri (? c191 p191 (! c192 p192))) -(petri (? c192 p192 (! c193 p193))) -(petri (? c193 p193 (! c194 p194))) -(petri (? c194 p194 (! c195 p195))) -(petri (? c195 p195 (! c196 p196))) -(petri (? c196 p196 (! c197 p197))) -(petri (? c197 p197 (! c198 p198))) -(petri (? c198 p198 (! c199 p199))) -(petri (? c199 p199 (! c200 p200))) -(petri (? c200 p200 (! c201 p201))) -(petri (? c201 p201 (! c202 p202))) -(petri (? c202 p202 (! c203 p203))) -(petri (? c203 p203 (! c204 p204))) -(petri (? c204 p204 (! c205 p205))) -(petri (? c205 p205 (! c206 p206))) -(petri (? c206 p206 (! c207 p207))) -(petri (? c207 p207 (! c208 p208))) -(petri (? c208 p208 (! c209 p209))) -(petri (? c209 p209 (! c210 p210))) -(petri (? c210 p210 (! c211 p211))) -(petri (? c211 p211 (! c212 p212))) -(petri (? c212 p212 (! c213 p213))) -(petri (? c213 p213 (! c214 p214))) -(petri (? c214 p214 (! c215 p215))) -(petri (? c215 p215 (! c216 p216))) -(petri (? c216 p216 (! c217 p217))) -(petri (? c217 p217 (! c218 p218))) -(petri (? c218 p218 (! c219 p219))) -(petri (? c219 p219 (! c220 p220))) -(petri (? c220 p220 (! c221 p221))) -(petri (? c221 p221 (! c222 p222))) -(petri (? c222 p222 (! c223 p223))) -(petri (? c223 p223 (! c224 p224))) -(petri (? c224 p224 (! c225 p225))) -(petri (? c225 p225 (! c226 p226))) -(petri (? c226 p226 (! c227 p227))) -(petri (? c227 p227 (! c228 p228))) -(petri (? c228 p228 (! c229 p229))) -(petri (? c229 p229 (! c230 p230))) -(petri (? c230 p230 (! c231 p231))) -(petri (? c231 p231 (! c232 p232))) -(petri (? c232 p232 (! c233 p233))) -(petri (? c233 p233 (! c234 p234))) -(petri (? c234 p234 (! c235 p235))) -(petri (? c235 p235 (! c236 p236))) -(petri (? c236 p236 (! c237 p237))) -(petri (? c237 p237 (! c238 p238))) -(petri (? c238 p238 (! c239 p239))) -(petri (? c239 p239 (! c240 p240))) -(petri (? c240 p240 (! c241 p241))) -(petri (? c241 p241 (! c242 p242))) -(petri (? c242 p242 (! c243 p243))) -(petri (? c243 p243 (! c244 p244))) -(petri (? c244 p244 (! c245 p245))) -(petri (? c245 p245 (! c246 p246))) -(petri (? c246 p246 (! c247 p247))) -(petri (? c247 p247 (! c248 p248))) -(petri (? c248 p248 (! c249 p249))) -(petri (? c249 p249 (! c250 p250))) -(petri (? c250 p250 (! c251 p251))) -(petri (? c251 p251 (! c252 p252))) -(petri (? c252 p252 (! c253 p253))) -(petri (? c253 p253 (! c254 p254))) -(petri (? c254 p254 (! c255 p255))) -(petri (? c255 p255 (! c256 p256))) -(petri (? c256 p256 (! c257 p257))) -(petri (? c257 p257 (! c258 p258))) -(petri (? c258 p258 (! c259 p259))) -(petri (? c259 p259 (! c260 p260))) -(petri (? c260 p260 (! c261 p261))) -(petri (? c261 p261 (! c262 p262))) -(petri (? c262 p262 (! c263 p263))) -(petri (? c263 p263 (! c264 p264))) -(petri (? c264 p264 (! c265 p265))) -(petri (? c265 p265 (! c266 p266))) -(petri (? c266 p266 (! c267 p267))) -(petri (? c267 p267 (! c268 p268))) -(petri (? c268 p268 (! c269 p269))) -(petri (? c269 p269 (! c270 p270))) -(petri (? c270 p270 (! c271 p271))) -(petri (? c271 p271 (! c272 p272))) -(petri (? c272 p272 (! c273 p273))) -(petri (? c273 p273 (! c274 p274))) -(petri (? c274 p274 (! c275 p275))) -(petri (? c275 p275 (! c276 p276))) -(petri (? c276 p276 (! c277 p277))) -(petri (? c277 p277 (! c278 p278))) -(petri (? c278 p278 (! c279 p279))) -(petri (? c279 p279 (! c280 p280))) -(petri (? c280 p280 (! c281 p281))) -(petri (? c281 p281 (! c282 p282))) -(petri (? c282 p282 (! c283 p283))) -(petri (? c283 p283 (! c284 p284))) -(petri (? c284 p284 (! c285 p285))) -(petri (? c285 p285 (! c286 p286))) -(petri (? c286 p286 (! c287 p287))) -(petri (? c287 p287 (! c288 p288))) -(petri (? c288 p288 (! c289 p289))) -(petri (? c289 p289 (! c290 p290))) -(petri (? c290 p290 (! c291 p291))) -(petri (? c291 p291 (! c292 p292))) -(petri (? c292 p292 (! c293 p293))) -(petri (? c293 p293 (! c294 p294))) -(petri (? c294 p294 (! c295 p295))) -(petri (? c295 p295 (! c296 p296))) -(petri (? c296 p296 (! c297 p297))) -(petri (? c297 p297 (! c298 p298))) -(petri (? c298 p298 (! c299 p299))) -(petri (? c299 p299 (! c300 p300))) -(petri (? c300 p300 (! c301 p301))) -(petri (? c301 p301 (! c302 p302))) -(petri (? c302 p302 (! c303 p303))) -(petri (? c303 p303 (! c304 p304))) -(petri (? c304 p304 (! c305 p305))) -(petri (? c305 p305 (! c306 p306))) -(petri (? c306 p306 (! c307 p307))) -(petri (? c307 p307 (! c308 p308))) -(petri (? c308 p308 (! c309 p309))) -(petri (? c309 p309 (! c310 p310))) -(petri (? c310 p310 (! c311 p311))) -(petri (? c311 p311 (! c312 p312))) -(petri (? c312 p312 (! c313 p313))) -(petri (? c313 p313 (! c314 p314))) -(petri (? c314 p314 (! c315 p315))) -(petri (? c315 p315 (! c316 p316))) -(petri (? c316 p316 (! c317 p317))) -(petri (? c317 p317 (! c318 p318))) -(petri (? c318 p318 (! c319 p319))) -(petri (? c319 p319 (! c320 p320))) -(petri (? c320 p320 (! c321 p321))) -(petri (? c321 p321 (! c322 p322))) -(petri (? c322 p322 (! c323 p323))) -(petri (? c323 p323 (! c324 p324))) -(petri (? c324 p324 (! c325 p325))) -(petri (? c325 p325 (! c326 p326))) -(petri (? c326 p326 (! c327 p327))) -(petri (? c327 p327 (! c328 p328))) -(petri (? c328 p328 (! c329 p329))) -(petri (? c329 p329 (! c330 p330))) -(petri (? c330 p330 (! c331 p331))) -(petri (? c331 p331 (! c332 p332))) -(petri (? c332 p332 (! c333 p333))) -(petri (? c333 p333 (! c334 p334))) -(petri (? c334 p334 (! c335 p335))) -(petri (? c335 p335 (! c336 p336))) -(petri (? c336 p336 (! c337 p337))) -(petri (? c337 p337 (! c338 p338))) -(petri (? c338 p338 (! c339 p339))) -(petri (? c339 p339 (! c340 p340))) -(petri (? c340 p340 (! c341 p341))) -(petri (? c341 p341 (! c342 p342))) -(petri (? c342 p342 (! c343 p343))) -(petri (? c343 p343 (! c344 p344))) -(petri (? c344 p344 (! c345 p345))) -(petri (? c345 p345 (! c346 p346))) -(petri (? c346 p346 (! c347 p347))) -(petri (? c347 p347 (! c348 p348))) -(petri (? c348 p348 (! c349 p349))) -(petri (? c349 p349 (! c350 p350))) -(petri (? c350 p350 (! c351 p351))) -(petri (? c351 p351 (! c352 p352))) -(petri (? c352 p352 (! c353 p353))) -(petri (? c353 p353 (! c354 p354))) -(petri (? c354 p354 (! c355 p355))) -(petri (? c355 p355 (! c356 p356))) -(petri (? c356 p356 (! c357 p357))) -(petri (? c357 p357 (! c358 p358))) -(petri (? c358 p358 (! c359 p359))) -(petri (? c359 p359 (! c360 p360))) -(petri (? c360 p360 (! c361 p361))) -(petri (? c361 p361 (! c362 p362))) -(petri (? c362 p362 (! c363 p363))) -(petri (? c363 p363 (! c364 p364))) -(petri (? c364 p364 (! c365 p365))) -(petri (? c365 p365 (! c366 p366))) -(petri (? c366 p366 (! c367 p367))) -(petri (? c367 p367 (! c368 p368))) -(petri (? c368 p368 (! c369 p369))) -(petri (? c369 p369 (! c370 p370))) -(petri (? c370 p370 (! c371 p371))) -(petri (? c371 p371 (! c372 p372))) -(petri (? c372 p372 (! c373 p373))) -(petri (? c373 p373 (! c374 p374))) -(petri (? c374 p374 (! c375 p375))) -(petri (? c375 p375 (! c376 p376))) -(petri (? c376 p376 (! c377 p377))) -(petri (? c377 p377 (! c378 p378))) -(petri (? c378 p378 (! c379 p379))) -(petri (? c379 p379 (! c380 p380))) -(petri (? c380 p380 (! c381 p381))) -(petri (? c381 p381 (! c382 p382))) -(petri (? c382 p382 (! c383 p383))) -(petri (? c383 p383 (! c384 p384))) -(petri (? c384 p384 (! c385 p385))) -(petri (? c385 p385 (! c386 p386))) -(petri (? c386 p386 (! c387 p387))) -(petri (? c387 p387 (! c388 p388))) -(petri (? c388 p388 (! c389 p389))) -(petri (? c389 p389 (! c390 p390))) -(petri (? c390 p390 (! c391 p391))) -(petri (? c391 p391 (! c392 p392))) -(petri (? c392 p392 (! c393 p393))) -(petri (? c393 p393 (! c394 p394))) -(petri (? c394 p394 (! c395 p395))) -(petri (? c395 p395 (! c396 p396))) -(petri (? c396 p396 (! c397 p397))) -(petri (? c397 p397 (! c398 p398))) -(petri (? c398 p398 (! c399 p399))) -(petri (? c399 p399 (! c400 p400))) -(petri (! c0 p0)) -(fuel (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S (S Z)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) - -(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k)) - (petri (? $c $pl $b)) (petri (! $c $pl))) - (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k))))) From bf5027a63634869a03ccd96918bce0782a7ba9fb Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Wed, 19 Aug 2026 16:11:11 +0100 Subject: [PATCH 3/9] State the encoding's invariants instead of re-checking them, and stop walking every expression twice `byte_item` masks an arity, a symbol size and a variable index with 0b0011_1111, so all three are already below 64. Testing `r < 64` before using a VarRef, or clamping an arity with `.min(64)`, cost a branch and -- much worse -- read as though a larger value were possible. Those guards are gone; where the bound matters it is a debug_assert naming the reason. The variable cap is handled once rather than per access: the encoding caps a routable body at 63 variables and a mask cannot name what it cannot index, so a body past the cap opts out entirely and returns a zero mask. That is conservative -- a zero mask is the unchanged enumeration -- and it replaces a bounds check on every NewVar. The test pins both halves: past the cap nothing is marked, at the cap marking is normal. `span()` is itself a full walk of the expression, so calling it and then walking the bytes did the work twice, once for the body and once per template. Both walks now run straight off the pointer and stop when the subterm parse closes. And the ground stamps do the rest: a template carrying a nonzero stamp is ground by the stamp's contract, so it holds no variable and is skipped without being walked at all. That needs the templates as ExprEnv rather than Expr, which is what the call site already had -- it was flattening them to Expr and discarding the stamps. Together these take the analysis to parity with not running it. counter_machine, median of four alignment-varied rounds: 206ms with the analysis stubbed out, 216ms before this change, 205ms after. bfc, transitive and tile_puzzle_states are unchanged. Co-Authored-By: Claude Fable 5 --- kernel/src/leapfrog.rs | 2 +- kernel/src/space.rs | 158 ++++++++++++++++++++++------------------- 2 files changed, 87 insertions(+), 73 deletions(-) diff --git a/kernel/src/leapfrog.rs b/kernel/src/leapfrog.rs index 2a41340b..5a235f07 100644 --- a/kernel/src/leapfrog.rs +++ b/kernel/src/leapfrog.rs @@ -2708,7 +2708,7 @@ mod tests { assert_eq!(last, 2); // ... and the mask, given a template that reads only the first two, names that same one. let tpl = nest("out", &[var_ref(0), var_ref(1)]); - let mask = crate::space::Space::projection_cut_mask(be, &[Expr::from_slice(&tpl)]); + let mask = crate::space::Space::projection_cut_mask(be, &[ExprEnv::new(0, Expr::from_slice(&tpl))]); assert_eq!(mask, 1 << last); } diff --git a/kernel/src/space.rs b/kernel/src/space.rs index ddda8fa0..d9513303 100644 --- a/kernel/src/space.rs +++ b/kernel/src/space.rs @@ -1142,94 +1142,104 @@ impl Space { /// pinning it would drop answers rather than duplicates -- `(s (f $_) $y)` must keep /// enumerating `$_` while `(s $y (f $_))` need not. /// - /// This runs on every transform, so it is one allocation-free pass driven by the encoding's - /// own [`mork_expr::subterm_parse_step`], and it does not read the templates AT ALL unless - /// the body offers a candidate a template could disqualify. That is what keeps a body with - /// nothing to cut -- three quarters of counter_machine's -- from paying for a template walk. - pub fn projection_cut_mask(pat_expr: Expr, templates: &[Expr]) -> u64 { - let pb = unsafe { pat_expr.span().as_ref().unwrap() }; - if pb.is_empty() { return 0 } - let Tag::Arity(nargs) = byte_item(pb[0]) else { return 0 }; - - // Pass one over the body: count every variable's mentions, and record per conjunct how - // long its trailing run of `NewVar`s is and how many variables its end had numbered. + /// Runs on every transform, so it walks each expression ONCE, from the pointer: `span()` is + /// itself a full walk, and calling it first would double the cost. Every bound here is + /// structural rather than defensive -- `byte_item` masks arities and variable indices with + /// `0b0011_1111`, so all three are already below 64 -- and the templates are not read at all + /// unless the body leaves a candidate a template could disqualify. A template stamped ground + /// is skipped outright: the stamp is that subterm's exact length and asserts it holds no + /// variable, so there is nothing in it for this walk to find. + pub fn projection_cut_mask(pat_expr: Expr, templates: &[ExprEnv]) -> u64 { + let head = unsafe { *pat_expr.ptr }; + let Tag::Arity(nargs) = byte_item(head) else { return 0 }; + debug_assert!((nargs as usize) < 64, "byte_item masks an arity to six bits"); + + // One pass over the body, from the pointer: count every variable's mentions, and record + // per conjunct how long its trailing run of `NewVar`s is and how many variables its end + // had numbered. let mut occ = [0u32; 64]; - let mut nv = 0u16; - let mut runs = [(0u8, 0u16); 64]; + let mut nv = 0usize; + let mut runs = [(0u8, 0u8); 64]; let mut any_run = false; let mut i = 1usize; - for c in 0..(nargs as usize).min(64) { + for c in 0..nargs as usize { let (mut owed, mut payload) = (1u32, 0u32); let mut run = 0u8; - while owed > 0 && i < pb.len() { - let b = pb[i]; - let head = payload == 0; - mork_expr::subterm_parse_step(b, &mut owed, &mut payload); + while owed > 0 { + let b = unsafe { *pat_expr.ptr.add(i) }; + let tag = byte_item(b); i += 1; - // A symbol's payload is skipped in one step rather than stepped through, so this - // walk is per ITEM rather than per byte. - if payload > 0 { - i += payload as usize; - payload = 0; - } - if !head { continue } - match byte_item(b) { + owed -= 1; + match tag { + // A symbol's payload is stepped over in one go, so this walk is per ITEM. + Tag::SymbolSize(size) => { i += size as usize; run = 0; } + Tag::Arity(a) => { owed += a as u32; run = 0; } Tag::NewVar => { - if nv < 64 { occ[nv as usize] += 1 } - nv = nv.saturating_add(1); + // The encoding caps a routable body at 63 variables, and a mask cannot + // name what it cannot index: a body past the cap simply opts out. + if nv >= 64 { return 0 } + occ[nv] += 1; + nv += 1; run = run.saturating_add(1); - continue; } - Tag::VarRef(r) => { if (r as usize) < 64 { occ[r as usize] += 1 } } - _ => {} + Tag::VarRef(r) => { + debug_assert!((r as usize) < 64, "byte_item masks a VarRef to six bits"); + occ[r as usize] += 1; + run = 0; + } } - run = 0; + let _ = payload; } - runs[c] = (run, nv); + debug_assert!(nv <= 64); + runs[c] = (run, nv as u8); any_run |= run > 0; } if !any_run { return 0 } // A trailing run exists, but only a variable mentioned ONCE can be cut. If nothing // survives that test, the templates never need reading. - let mut candidates = 0u64; - for c in 0..(nargs as usize).min(64) { - let (run, end) = runs[c]; - for k in 0..run as usize { - let Some(v) = (end as usize).checked_sub(1 + k) else { break }; - if v >= 64 || occ[v] != 1 { break } - candidates |= 1u64 << v; + let trailing = |runs: &[(u8, u8); 64], read: u64| -> u64 { + let mut m = 0u64; + for c in 0..nargs as usize { + let (run, end) = runs[c]; + for k in 0..run as usize { + let Some(v) = (end as usize).checked_sub(1 + k) else { break }; + if occ[v] != 1 || (read >> v) & 1 == 1 { break } + m |= 1u64 << v; + } } - } + m + }; + let candidates = trailing(&runs, 0); if candidates == 0 { return 0 } - // Pass two, now earned: which of them does some template read? + // Now earned: which of them does some template read? A ground-stamped template holds no + // variable by the stamp's own contract, so it is skipped without being walked. let mut read = 0u64; for t in templates.iter() { - let tb = unsafe { t.span().as_ref().unwrap() }; - let mut j = 0usize; - while j < tb.len() { - match byte_item(tb[j]) { - Tag::VarRef(r) => { if (r as usize) < 64 { read |= 1u64 << r } j += 1; } - Tag::NewVar => j += 1, - Tag::SymbolSize(size) => j += 1 + size as usize, - Tag::Arity(_) => j += 1, + if t.ground_stamp() != 0 { continue } + let e = t.subsexpr(); + let (mut owed, mut j) = (1u32, 0usize); + while owed > 0 { + let b = unsafe { *e.ptr.add(j) }; + j += 1; + owed -= 1; + match byte_item(b) { + Tag::SymbolSize(size) => j += size as usize, + Tag::Arity(a) => owed += a as u32, + Tag::NewVar => {} + Tag::VarRef(r) => { + debug_assert!((r as usize) < 64, "byte_item masks a VarRef to six bits"); + read |= 1u64 << r; + } } } + // Every candidate is spoken for; nothing can be cut, so stop reading templates. if read & candidates == candidates { return 0 } } // A read variable stops its conjunct's run at that point, not just for itself. - let mut mask = 0u64; - for c in 0..(nargs as usize).min(64) { - let (run, end) = runs[c]; - for k in 0..run as usize { - let Some(v) = (end as usize).checked_sub(1 + k) else { break }; - if v >= 64 || occ[v] != 1 || (read >> v) & 1 == 1 { break } - mask |= 1u64 << v; - } - } - mask + trailing(&runs, read) } pub fn query_multi_dispatch, Expr) -> bool>(btm: &PathMap<()>, pat_expr: Expr, cut_mask: u64, mut effect: F) -> usize { @@ -1626,7 +1636,7 @@ impl Space { // invisible only to a sink idempotent in them, and the `O` form and the source/sink // transforms can carry aggregating sinks -- Count, Sum, And, Head/Tail, the float // reductions -- whose result is a function of how many answers arrive. - let cut_mask = Self::projection_cut_mask(pat_expr, &templates[..]); + let cut_mask = Self::projection_cut_mask(pat_expr, &tpl_args[1..]); let mut template_prefixes: Vec<_> = templates.iter().map(|e| unsafe { e.prefix().unwrap_or_else(|x| x).as_ref().unwrap() }).collect(); let mut subsumption = Self::prefix_subsumption(&template_prefixes[..]); let mut placements = subsumption.clone(); @@ -2219,7 +2229,10 @@ mod projection_cut_tests { fn mask(body: &[u8], templates: &[Vec]) -> u64 { let be = Expr::from_slice(body); - let ts: Vec = templates.iter().map(|t| Expr::from_slice(&t[..])).collect(); + let ts: Vec = templates + .iter() + .map(|t| ExprEnv::new(0, Expr::from_slice(&t[..]))) + .collect(); Space::projection_cut_mask(be, &ts[..]) } @@ -2297,19 +2310,20 @@ mod projection_cut_tests { } #[test] - fn variables_past_the_encodings_bound_are_never_marked() { - // 68 variables across two conjuncts (arity itself caps at 63, so they cannot share one). - // The first conjunct's trailing run is nameable and gets marked down to the variable the - // template reads. The second conjunct ENDS in variables past bit 63, which the mask - // cannot name -- so its run stops dead at the first of them rather than wrapping a bit - // onto some other variable. + fn a_body_past_the_encodings_variable_cap_opts_out_entirely() { + // 68 variables across two conjuncts (an arity itself caps at 63, so they cannot share + // one). A mask cannot name a variable it cannot index, and the encoding caps a routable + // body at 63 anyway, so rather than bounds-check every access the walk stops at the cap + // and the whole body opts out. Conservative: a zero mask is the unchanged enumeration. let low: Vec> = (0..34).map(|_| nv()).collect(); let high: Vec> = (0..34).map(|_| nv()).collect(); let body = conj(&[rel("r", &low), rel("s", &high)]); - let tpl = rel("out", &[vr(0)]); - let m = mask(&body, &[tpl]); - let expected: u64 = ((1u64 << 34) - 1) & !1; // bits 1..=33 - assert_eq!(m, expected); + assert_eq!(mask(&body, &[rel("out", &[vr(0)])]), 0); + // ... while a body at the cap still marks normally. + let at_cap: Vec> = (0..40).map(|_| nv()).collect(); + let body = conj(&[rel("r", &at_cap)]); + let m = mask(&body, &[rel("out", &[vr(0)])]); + assert_eq!(m, ((1u64 << 40) - 1) & !1, "bits 1..=39, stopping at the one the template reads"); } #[test] From 879845068dc90231d15b5c0b347fa31ac9f8cd3e Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Wed, 19 Aug 2026 17:51:49 +0100 Subject: [PATCH 4/9] The ProductZipper cut must report the variables it descends past `vs!` is the only place the walk learns a candidate is non-ground, and the cut goes around it: descend_first_subterm took the leftmost path and passed var_facts through untouched. A leftmost subterm can very well carry a variable -- an arity byte sorts below a symbol byte, so a compound like `(f $z)` is exactly what gets picked -- and the leaf then read that fact as ground and handed it to stamp_ground, whose SAFETY note is explicit that a false stamp makes consumers settle by memcmp and skip variable hunts over the span. descend_first_subterm now ORs in the bit of every factor it finds a variable in, at item heads only so a symbol's payload cannot be read as a tag. The invariant is self-checking from now on: in debug builds the leaf re-derives groundness by walking the fact's span before stamping, and panics if the bit disagreed. That discriminates -- with the tracking removed it fires on differential/corpus/programs/projection_cut.mm2, which had been reaching the bug all along without the wrong stamp changing any visible answer. Both runners could compare stale output. Neither cleared its target nor checked the exit status, so a crashed or timed-out run left the PREVIOUS run's space in place and the comparison passed on it. Both now remove the file first and require a zero exit; the fuzzer reports a cut build that fails rather than crediting it with the speed-up. And the explanations at the places called out were too long, and in one case wrong: the mask's doc claimed every bound in it was structural, when the variable cap is a real bound with a real early exit. Co-Authored-By: Claude Fable 5 --- differential/projection_cut_fuzz.py | 12 +++- examples/transforms/bench_pairs.py | 10 ++++ kernel/src/leapfrog.rs | 11 ++-- kernel/src/space.rs | 91 ++++++++++++++++------------- 4 files changed, 77 insertions(+), 47 deletions(-) diff --git a/differential/projection_cut_fuzz.py b/differential/projection_cut_fuzz.py index 1aed84ba..e7caecbe 100755 --- a/differential/projection_cut_fuzz.py +++ b/differential/projection_cut_fuzz.py @@ -221,11 +221,18 @@ def run(binary, prog, out, reps, timeout): """ best, dump = None, None for _ in range(reps): + # Clear the target first and insist the process succeeded: otherwise a crashed or + # timed-out run leaves the PREVIOUS run's space behind and the comparison silently + # passes on stale output. + if os.path.exists(out): + os.remove(out) try: r = subprocess.run([binary, "run", prog, "--steps", "2", out], capture_output=True, timeout=timeout) except subprocess.TimeoutExpired: return None, None + if r.returncode != 0 or not os.path.exists(out): + return None, None m = TOOK.search(r.stdout.decode("utf-8", "replace")) ms = int(m.group(1)) if m else -1 best = ms if best is None else min(best, ms) @@ -306,9 +313,10 @@ def main(): b_ms, b_dump = run(args.base, prog, prog + ".base.space", args.reps, args.base_timeout) c_ms, c_dump = run(args.cut, prog, prog + ".cut.space", args.reps, args.base_timeout) if c_ms is None: - c_ms = args.base_timeout * 1000 + print(" case %d: the cut build did not finish or exited nonzero" % len(accepted)) + c_ms, c_dump = args.base_timeout * 1000, None - identical = (b_dump == c_dump) + identical = (c_dump is not None and b_dump == c_dump) # The independent join models an EQUALITY join, which is what the engine performs only # when the joined values are ground. In the meta family the read variables bind whole # query expressions, so the engine joins them by UNIFICATION and renames their variables diff --git a/examples/transforms/bench_pairs.py b/examples/transforms/bench_pairs.py index 9e776b09..21d2ddd5 100755 --- a/examples/transforms/bench_pairs.py +++ b/examples/transforms/bench_pairs.py @@ -4,13 +4,23 @@ import glob, os, re, subprocess, sys TOOK = re.compile(r"took (\d+) ms") def run(binary, prog, out, steps, reps=3): + """Best-of-`reps` query time and the resulting space, or (None, None) if the run failed. + + The target is cleared before every attempt and the exit status is checked: without both, a + crashed or timed-out run leaves the PREVIOUS run's space in place and the caller compares + stale output, which reads as agreement. + """ best = None for _ in range(reps): + if os.path.exists(out): + os.remove(out) try: r = subprocess.run([binary, "run", prog, "--steps", str(steps), out], capture_output=True, timeout=600) except subprocess.TimeoutExpired: return None, None + if r.returncode != 0 or not os.path.exists(out): + return None, None m = TOOK.search(r.stdout.decode("utf-8", "replace")) ms = int(m.group(1)) if m else -1 best = ms if best is None else min(best, ms) diff --git a/kernel/src/leapfrog.rs b/kernel/src/leapfrog.rs index 5a235f07..0b845694 100644 --- a/kernel/src/leapfrog.rs +++ b/kernel/src/leapfrog.rs @@ -2135,13 +2135,12 @@ impl UnifyJoin<'_> { self.free_bufs.push(buf); } - /// The projection cut, as its OWN path: `v` is a singleton nothing downstream reads, so one - /// witness stands for its whole domain. Kept separate from [`Self::consume_lead`] so that the - /// enumerating path keeps the exact code it had -- a `cut` branch inside the candidate fill's - /// loops measured 6% on counter_machine, which is all fill and no cut. + /// One witness for `v`, whose whole domain nothing downstream reads. /// - /// If that one witness does not match, the level re-runs as a full enumeration, so the cut can - /// only ever drop a DUPLICATE answer, never the last one. + /// Separate from [`Self::consume_lead`] so the enumerating path keeps the code it had: a + /// `cut` branch inside the candidate fill's loops measured 6% on counter_machine. If the + /// witness does not match, the level re-runs as a full enumeration, so the cut can only ever + /// drop a duplicate. fn consume_lead_cut(&mut self, parts: &[usize], nr: usize, v: usize, i: usize) { if self.stopped { return; diff --git a/kernel/src/space.rs b/kernel/src/space.rs index d9513303..b3dc6cb6 100644 --- a/kernel/src/space.rs +++ b/kernel/src/space.rs @@ -109,13 +109,15 @@ pub(crate) const VARS: [u64; 4] = { // - `references` can be elided by not putting the virtual $ Expr's on the `stack` such that _k maps directly to the indices // - keeping a needle instead of a stack to avoid the `reverse` (would also create the opportunity to be even more lazy about instruction gen) // - use descend_to and re-evaluated the added sub-path to do much better on long paths -/// Descend the FIRST complete subterm below the focus, byte by byte along the leftmost path, -/// and report how many bytes that took (0 if the focus is a dead end). Every path stored in the -/// trie spells a complete expression, so the leftmost walk always closes the subterm it opened -- -/// there is nothing to backtrack. On a ProductZipper the descent also crosses the factor -/// boundary the moment the subterm ends on a leaf, which is exactly the force-enroll this cut -/// wants: the next factor engages without the current one being enumerated first. -fn descend_first_subterm(loc: &mut Z) -> usize { +/// Descend the FIRST complete subterm below the focus, reporting how many bytes that took (0 if +/// the focus is a dead end) and OR-ing into `var_facts` the bit of every factor whose bytes the +/// descent found a variable in. +/// +/// That second job is not optional. `vs!` is the only other place the walk learns a candidate is +/// non-ground, and this descent goes around it: a leftmost subterm may well carry a variable -- +/// an arity byte sorts below a symbol byte, so a compound like `(f $z)` is exactly what gets +/// picked -- and reporting the fact as ground would let a consumer stamp it so. +fn descend_first_subterm(loc: &mut Z, var_facts: &mut u64) -> usize { let (mut owed, mut payload) = (1u32, 0u32); let mut n = 0usize; while owed > 0 || payload > 0 { @@ -124,7 +126,12 @@ fn descend_first_subterm(loc: &mut Z) -> usize { return 0; } n += 1; - mork_expr::subterm_parse_step(*loc.path().last().unwrap(), &mut owed, &mut payload); + let b = *loc.path().last().unwrap(); + let head = payload == 0; + mork_expr::subterm_parse_step(b, &mut owed, &mut payload); + if head && matches!(byte_item(b), Tag::NewVar | Tag::VarRef(_)) { + *var_facts |= 1u64 << loc.focus_factor().min(63); + } } n } @@ -178,14 +185,13 @@ fn coreferential_transition ()>( Some((idx, prev)) } else { None }; - // Nothing downstream reads this variable's value and nothing after it in - // the conjunct depends on the choice, so one witnessing subterm stands for - // the whole subtrie: take the leftmost and move on instead of enumerating - // every variable, size class and arity below this position. + // One witnessing subterm stands for the whole subtrie, so take the leftmost + // instead of enumerating every variable, size class and arity below here. if e.n == 0 && e.v < 64 && (cut_mask >> e.v) & 1 == 1 { - let n = descend_first_subterm(loc); + let mut vf = var_facts; + let n = descend_first_subterm(loc, &mut vf); if n > 0 { - coreferential_transition(loc, stack, references, var_facts, cut_mask, f); + coreferential_transition(loc, stack, references, vf, cut_mask, f); loc.ascend(n); } if let Some((idx, prev)) = restore { references[idx] = prev; } @@ -1133,22 +1139,13 @@ impl Space { /// which `query_multi` handles (or fails on) exactly as it always has, plus the encoding /// pathologies `parse_body_factors` rejects (a `VarRef` naming a variable the body never /// introduced, or more than `u8::MAX` variables). - /// The body variables whose VALUE nothing downstream can observe: no template reads them, - /// the body mentions them exactly once, and they sit in their conjunct's TRAILING run. - /// Returned as a bitmask over the body's variable numbering (`NewVar`s in first-occurrence - /// order), the numbering both engines index by. - /// - /// Anything earlier in a conjunct decides which subtrie the later columns are drawn from, so - /// pinning it would drop answers rather than duplicates -- `(s (f $_) $y)` must keep - /// enumerating `$_` while `(s $y (f $_))` need not. + /// The body variables no template reads, that the body mentions once, and that sit in their + /// conjunct's trailing run. A bitmask over the body's variable numbering (`NewVar`s in + /// first-occurrence order), which is what both engines index by. /// - /// Runs on every transform, so it walks each expression ONCE, from the pointer: `span()` is - /// itself a full walk, and calling it first would double the cost. Every bound here is - /// structural rather than defensive -- `byte_item` masks arities and variable indices with - /// `0b0011_1111`, so all three are already below 64 -- and the templates are not read at all - /// unless the body leaves a candidate a template could disqualify. A template stamped ground - /// is skipped outright: the stamp is that subterm's exact length and asserts it holds no - /// variable, so there is nothing in it for this walk to find. + /// The trailing-run condition is the soundness one: anything earlier in a conjunct decides + /// which subtrie the later columns come from, so `(s (f $_) $y)` must keep enumerating `$_` + /// while `(s $y (f $_))` need not. pub fn projection_cut_mask(pat_expr: Expr, templates: &[ExprEnv]) -> u64 { let head = unsafe { *pat_expr.ptr }; let Tag::Arity(nargs) = byte_item(head) else { return 0 }; @@ -1196,8 +1193,6 @@ impl Space { } if !any_run { return 0 } - // A trailing run exists, but only a variable mentioned ONCE can be cut. If nothing - // survives that test, the templates never need reading. let trailing = |runs: &[(u8, u8); 64], read: u64| -> u64 { let mut m = 0u64; for c in 0..nargs as usize { @@ -1210,6 +1205,7 @@ impl Space { } m }; + // Only a variable mentioned once can be cut; if none survives that, no template is read. let candidates = trailing(&runs, 0); if candidates == 0 { return 0 } @@ -1521,6 +1517,25 @@ impl Space { let span_stamp = |k: usize, start: usize, end: usize| -> u16 { let len = end - start; let ground = var_facts & (1u64 << k.min(63)) == 0; + // `stamp_ground` is unsafe for a reason: a stamp on a span that does + // hold a variable makes consumers settle by memcmp and skip variable + // hunts over it. Re-derive the answer here in debug builds so any + // path that reaches the leaf with a wrong bit is caught at the source + // rather than as a wrong answer somewhere downstream. + #[cfg(debug_assertions)] + if ground { + let mut j = start; + while j < end { + match byte_item(opath[j]) { + Tag::SymbolSize(size) => j += 1 + size as usize, + Tag::NewVar | Tag::VarRef(_) => { + panic!("fact {k} reported ground but holds a variable \ + at byte {j} of [{start},{end})"); + } + Tag::Arity(_) => j += 1, + } + } + } if ground && len <= u16::MAX as usize { len as u16 } else { 0 } }; @@ -1632,10 +1647,9 @@ impl Space { let mut tpl_args = Vec::with_capacity(64); ExprEnv::new(0, tpl_expr).args(&mut tpl_args); let mut templates: Vec<_> = tpl_args[1..].iter().map(|ee| ee.subsexpr()).collect(); - // Only the plain `,` -> `,` write form may cut. The cut drops DUPLICATE answers, which is - // invisible only to a sink idempotent in them, and the `O` form and the source/sink - // transforms can carry aggregating sinks -- Count, Sum, And, Head/Tail, the float - // reductions -- whose result is a function of how many answers arrive. + // The cut drops duplicate answers, so only a sink idempotent in them may use it: this + // plain `,` -> `,` form writes into the trie, while `O` and the source/sink transforms + // can aggregate over how many answers arrive. let cut_mask = Self::projection_cut_mask(pat_expr, &tpl_args[1..]); let mut template_prefixes: Vec<_> = templates.iter().map(|e| unsafe { e.prefix().unwrap_or_else(|x| x).as_ref().unwrap() }).collect(); let mut subsumption = Self::prefix_subsumption(&template_prefixes[..]); @@ -2311,10 +2325,9 @@ mod projection_cut_tests { #[test] fn a_body_past_the_encodings_variable_cap_opts_out_entirely() { - // 68 variables across two conjuncts (an arity itself caps at 63, so they cannot share - // one). A mask cannot name a variable it cannot index, and the encoding caps a routable - // body at 63 anyway, so rather than bounds-check every access the walk stops at the cap - // and the whole body opts out. Conservative: a zero mask is the unchanged enumeration. + // Rather than bounds-check every access, the walk stops at the cap and the body opts + // out. A zero mask is the unchanged enumeration, so that is the conservative direction. + // (Two conjuncts because an arity caps at 63 too.) let low: Vec> = (0..34).map(|_| nv()).collect(); let high: Vec> = (0..34).map(|_| nv()).collect(); let body = conj(&[rel("r", &low), rel("s", &high)]); From 93b7343cff8b8320cc1a7dd2908577eda56af9aa Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Wed, 19 Aug 2026 18:17:23 +0100 Subject: [PATCH 5/9] Time each pair ABBA, not baseline-first The harness ran the baseline then the variant for every pair. Over a benchmark that takes tens of seconds, drift across the pair is monotonic, so whichever runs second is charged for it -- a systematic bias, not noise that averages out. Each program is now timed twice, on either side of the other, and the best of each is kept. Co-Authored-By: Claude Fable 5 --- examples/transforms/bench_pairs.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/examples/transforms/bench_pairs.py b/examples/transforms/bench_pairs.py index 21d2ddd5..c0b62507 100755 --- a/examples/transforms/bench_pairs.py +++ b/examples/transforms/bench_pairs.py @@ -40,8 +40,15 @@ def main(d, steps, prefixes): continue row, agree = [], [] for e in ["lf", "pz"]: - bn, bd = run(f"/tmp/paj-v4-{e}", base, f"/tmp/bp_{n}_{e}_n.space", steps) - on, od = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) + # ABBA: time each program twice, on either side of the other, and keep the best + # of each. Always running the baseline first biases a long benchmark against + # whichever runs second, because drift over the pair is monotonic. + bn1, bd = run(f"/tmp/paj-v4-{e}", base, f"/tmp/bp_{n}_{e}_n.space", steps) + on1, od = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) + on2, _ = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) + bn2, _ = run(f"/tmp/paj-v4-{e}", base, f"/tmp/bp_{n}_{e}_n.space", steps) + bn = min(x for x in (bn1, bn2) if x is not None) if (bn1 or bn2) else None + on = min(x for x in (on1, on2) if x is not None) if (on1 or on2) else None if bn is None or on is None: row += ["t/o", "t/o", 0.0]; agree.append("?"); continue row += [bn, on, bn / max(on, 0.5)] From 8e989b546c749de67c34a91d3662e0f8d438e413 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Thu, 20 Aug 2026 10:58:49 +0100 Subject: [PATCH 6/9] The process-calculus delta needs symmetric arms A self-join over one relation needs BOTH deltas: new receivers against every message, and every receiver against new messages. The lowering had only the second, so a communication that derives a RECEIVER never reacted with a message already in the soup -- it was incomplete, not just slower. The cascade I measured hid it: every body it derives is a message, so the missing arm never had anything to do. A soup where receiving yields a receiver shows it at once -- the monotone rule derives (! deep ok) and the one-armed delta does not. Both arms now run, alternated by the same IC controller process_calculus_bench uses for its own two rules, and the corpus program carries a soup that catches the difference. Getting it to catch took three tries, which is worth recording: the delta only loses an answer when the message has already been RETIRED from the worklist, so the shape needs an early consumer to retire (! r1 q1) in the first round and a late-derived receiver that then has to find it in the full relation. Seeded-and-never-matched, or derived-while-still-pending, and the one-armed version passes by luck. Verified by removing arm 0: pD loses exactly (! deep ok). Also: `min(...) if (bn1 or bn2) else None` in the bench harness read a genuine 0 ms as failure. Only None is failure. And `mork test` gains projection_cut_variables, covering what the cut must take (a trailing don't-care with fan-out, a schematic witness) and what it must refuse (a non-trailing one, the same nested, and a repeated variable that is a join variable). Co-Authored-By: Claude Fable 5 --- .../programs/transform_process_calculus.mm2 | 41 +++++++--- .../transform_process_calculus.expected | 32 ++++++-- examples/transforms/bench_pairs.py | 5 +- examples/transforms/generate.py | 8 +- kernel/src/main.rs | 75 +++++++++++++++++++ 5 files changed, 138 insertions(+), 23 deletions(-) diff --git a/differential/corpus/programs/transform_process_calculus.mm2 b/differential/corpus/programs/transform_process_calculus.mm2 index 9a653a79..87f676dc 100644 --- a/differential/corpus/programs/transform_process_calculus.mm2 +++ b/differential/corpus/programs/transform_process_calculus.mm2 @@ -9,18 +9,34 @@ (pN (? c0 p0 (! c1 p1))) (pN (? c1 p1 (! c2 p2))) (pN (? c2 p2 (! c3 p3))) -(pN (? c3 p3 (! c4 p4))) +(pN (? c3 p3 (! r0 q0))) +(pN (? r0 q0 (? r1 q1 (! deep ok)))) +(pN (? r1 q1 (! early seen))) +(pN (! r1 q1)) (pN (! c0 p0)) (pD (? c0 p0 (! c1 p1))) (pD (? c1 p1 (! c2 p2))) (pD (? c2 p2 (! c3 p3))) -(pD (? c3 p3 (! c4 p4))) +(pD (? c3 p3 (! r0 q0))) +(pD (? r0 q0 (? r1 q1 (! deep ok)))) +(pD (? r1 q1 (! early seen))) +(pD (! r1 q1)) (pD (! c0 p0)) -(dmsg (! c0 p0)) +(dD (? c0 p0 (! c1 p1))) +(dD (? c1 p1 (! c2 p2))) +(dD (? c2 p2 (! c3 p3))) +(dD (? c3 p3 (! r0 q0))) +(dD (? r0 q0 (? r1 q1 (! deep ok)))) +(dD (? r1 q1 (! early seen))) +(dD (! r1 q1)) +(dD (! c0 p0)) (pC (? c0 p0 (! c1 p1))) (pC (? c1 p1 (! c2 p2))) (pC (? c2 p2 (! c3 p3))) -(pC (? c3 p3 (! c4 p4))) +(pC (? c3 p3 (! r0 q0))) +(pC (? r0 q0 (? r1 q1 (! deep ok)))) +(pC (? r1 q1 (! early seen))) +(pC (! r1 q1)) (pC (! c0 p0)) (fN (S (S (S (S (S (S Z))))))) (fD (S (S (S (S (S (S Z))))))) @@ -30,12 +46,17 @@ (exec (1 Z) (, (exec (1 $l) $p $t) (fN (S $k)) (pN (? $c $pl $b)) (pN (! $c $pl))) (O (+ (exec (1 (S $l)) $p $t)) (+ (pN $b)) (+ (fN $k)) (- (fN (S $k))))) -;; (b) delta on the message side. Promotion is folded INTO the rule: a separate promotion exec -;; would be starved, because this family re-adds itself and sorts first, so it would consume all -;; the fuel before the promoter ever ran. -(exec (2 Z) (, (exec (2 $l) $p $t) (fD (S $k)) (pD (? $c $pl $b)) (dmsg (! $c $pl))) - (O (+ (exec (2 (S $l)) $p $t)) (+ (pD $b)) (+ (dmsg $b)) - (- (dmsg (! $c $pl))) (+ (fD $k)) (- (fD (S $k))))) +;; (b) SYMMETRIC delta. A self-join over one relation needs both arms: new receivers against +;; every message, and every receiver against new messages. With only the second, a communication +;; that derives a RECEIVER never reacts with a message already in the soup -- which is what the +;; (? r0 ..) pair above is here to catch. +((armD 0) (, (dD (? $c $pl $b)) (pD (! $c $pl))) + (O (+ (pD $b)) (+ (dD $b)) (- (dD (? $c $pl $b))))) +((armD 1) (, (pD (? $c $pl $b)) (dD (! $c $pl))) + (O (+ (pD $b)) (+ (dD $b)) (- (dD (! $c $pl))))) +(exec (2 (IC 0 1 (S (S (S (S (S (S (S (S (S (S Z)))))))))))) + (, (exec (2 (IC $x $y (S $c))) $sp $st) ((armD $x) $p $t)) + (, (exec (2 (IC $y $x $c)) $sp $st) (exec (2 (R $x)) $p $t))) ;; (c) consuming: the reagents are retired, so no intermediate is ever kept and the ;; re-derivation is removed at its source rather than filtered afterwards diff --git a/differential/expected/programs/transform_process_calculus.expected b/differential/expected/programs/transform_process_calculus.expected index 0b8f690c..ed49c5e4 100644 --- a/differential/expected/programs/transform_process_calculus.expected +++ b/differential/expected/programs/transform_process_calculus.expected @@ -1,23 +1,39 @@ -(fC (S (S Z))) -(fD (S (S Z))) +(dD (! deep ok)) +(dD (! early seen)) +(fC (S Z)) +(fD (S (S (S (S (S (S Z))))))) (fN Z) -(pC (! c4 p4)) +(pC (! early seen)) +(pC (? r1 q1 (! deep ok))) (pD (! c0 p0)) (pD (! c1 p1)) (pD (! c2 p2)) (pD (! c3 p3)) -(pD (! c4 p4)) +(pD (! r0 q0)) +(pD (! r1 q1)) +(pD (! deep ok)) +(pD (! early seen)) (pD (? c0 p0 (! c1 p1))) (pD (? c1 p1 (! c2 p2))) (pD (? c2 p2 (! c3 p3))) -(pD (? c3 p3 (! c4 p4))) +(pD (? c3 p3 (! r0 q0))) +(pD (? r0 q0 (? r1 q1 (! deep ok)))) +(pD (? r1 q1 (! deep ok))) +(pD (? r1 q1 (! early seen))) (pN (! c0 p0)) (pN (! c1 p1)) (pN (! c2 p2)) (pN (! c3 p3)) -(pN (! c4 p4)) +(pN (! r0 q0)) +(pN (! r1 q1)) +(pN (! deep ok)) +(pN (! early seen)) (pN (? c0 p0 (! c1 p1))) (pN (? c1 p1 (! c2 p2))) (pN (? c2 p2 (! c3 p3))) -(pN (? c3 p3 (! c4 p4))) -(dmsg (! c4 p4)) +(pN (? c3 p3 (! r0 q0))) +(pN (? r0 q0 (? r1 q1 (! deep ok)))) +(pN (? r1 q1 (! deep ok))) +(pN (? r1 q1 (! early seen))) +((armD 0) (, (dD (? $a $b $c)) (pD (! $a $b))) (O (+ (pD $c)) (+ (dD $c)) (- (dD (? $a $b $c))))) +((armD 1) (, (pD (? $a $b $c)) (dD (! $a $b))) (O (+ (pD $c)) (+ (dD $c)) (- (dD (! $a $b))))) diff --git a/examples/transforms/bench_pairs.py b/examples/transforms/bench_pairs.py index c0b62507..74f7088c 100755 --- a/examples/transforms/bench_pairs.py +++ b/examples/transforms/bench_pairs.py @@ -47,8 +47,9 @@ def main(d, steps, prefixes): on1, od = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) on2, _ = run(f"/tmp/paj-v4-{e}", v, f"/tmp/bp_{n}_{e}_o.space", steps) bn2, _ = run(f"/tmp/paj-v4-{e}", base, f"/tmp/bp_{n}_{e}_n.space", steps) - bn = min(x for x in (bn1, bn2) if x is not None) if (bn1 or bn2) else None - on = min(x for x in (on1, on2) if x is not None) if (on1 or on2) else None + # `if (bn1 or bn2)` would read a genuine 0 ms as failure; only None is failure. + best = lambda *xs: min([x for x in xs if x is not None], default=None) + bn, on = best(bn1, bn2), best(on1, on2) if bn is None or on is None: row += ["t/o", "t/o", 0.0]; agree.append("?"); continue row += [bn, on, bn / max(on, 0.5)] diff --git a/examples/transforms/generate.py b/examples/transforms/generate.py index aed1a163..d7a19b9b 100755 --- a/examples/transforms/generate.py +++ b/examples/transforms/generate.py @@ -9,7 +9,7 @@ """ import os, random, sys -RULES = {'cyc_naive': '(exec 9 (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'cyc_staged': '(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d)))\n(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'clq_naive': '(exec 9 (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'clq_staged': '(exec (1 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2)))\n(exec (1 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'craft_naive': '(exec 9 (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n)))\n (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi)))\n (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi)))\n (inventory $xi) (inventory $yi))\n (, (craftable $n)))', 'craft_staged': '(exec (1 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p)))\n(exec (1 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p)))\n(exec (1 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n))))\n (, (craftable $n)))', 'lts_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuelN (S $k)) (state $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (fuelN $k)) (- (fuelN (S $k)))))', 'lts_delta': ';; One exec: take the worklist, publish successors into both the state set and the worklist,\n;; retire what was taken. A separate promotion exec would be starved -- this family re-adds\n;; itself and sorts first, so it consumes all the fuel before the promoter ever runs.\n(exec (1 Z) (, (exec (1 $l) $p $t) (fuelD (S $k)) (dstate $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (dstate $u))\n (- (dstate $s)) (+ (fuelD $k)) (- (fuelD (S $k)))))', 'pc3_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k)))))', 'pc3_delta': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (dmsg (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (dmsg $b))\n (- (dmsg (! $c $pl))) (+ (fuel $k)) (- (fuel (S $k)))))', 'pc3_consume': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b))\n (- (petri (? $c $pl $b))) (- (petri (! $c $pl)))\n (+ (fuel $k)) (- (fuel (S $k)))))'} +RULES = {'cyc_naive': '(exec 9 (, (e $a $b) (e $b $c) (e $c $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'cyc_staged': '(exec (1 0) (, (e $a $b) (e $b $c) (e $c $d)) (, (p3 $a $d)))\n(exec (1 1) (, (p3 $a $d) (e $d $f) (e $f $g) (e $g $a)) (, (cyc6 $a)))', 'clq_naive': '(exec 9 (, (edge $x0 $x1) (edge $x0 $x2) (edge $x0 $x3) (edge $x1 $x2) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'clq_staged': '(exec (1 0) (, (edge $x0 $x1) (edge $x0 $x2) (edge $x1 $x2)) (, (tri $x0 $x1 $x2)))\n(exec (1 1) (, (tri $x0 $x1 $x2) (edge $x0 $x3) (edge $x1 $x3) (edge $x2 $x3))\n (, (c4 $x0 $x1 $x2 $x3)))', 'craft_naive': '(exec 9 (, (recipe $p (numIngredients 2)) (recipe $p (result (id $n)))\n (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi)))\n (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi)))\n (inventory $xi) (inventory $yi))\n (, (craftable $n)))', 'craft_staged': '(exec (1 0) (, (recipe $p (pattern 0 $x)) (recipe $p (key ($x $xi))) (inventory $xi)) (, (ok0 $p)))\n(exec (1 1) (, (recipe $p (pattern 1 $y)) (recipe $p (key ($y $yi))) (inventory $yi)) (, (ok1 $p)))\n(exec (1 2) (, (recipe $p (numIngredients 2)) (ok0 $p) (ok1 $p) (recipe $p (result (id $n))))\n (, (craftable $n)))', 'lts_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuelN (S $k)) (state $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (fuelN $k)) (- (fuelN (S $k)))))', 'lts_delta': ';; One exec: take the worklist, publish successors into both the state set and the worklist,\n;; retire what was taken. A separate promotion exec would be starved -- this family re-adds\n;; itself and sorts first, so it consumes all the fuel before the promoter ever runs.\n(exec (1 Z) (, (exec (1 $l) $p $t) (fuelD (S $k)) (dstate $s) (trans $s $u))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (state $u)) (+ (dstate $u))\n (- (dstate $s)) (+ (fuelD $k)) (- (fuelD (S $k)))))', 'pc3_naive': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b)) (+ (fuel $k)) (- (fuel (S $k)))))', 'pc3_delta': ';; Symmetric arms. A self-join over one relation needs BOTH deltas: new receivers against\n;; every message, and every receiver against new messages. With only the second, a\n;; communication that derives a RECEIVER never reacts with a message already in the soup.\n((arm 0) (, (dnew (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (petri $b)) (+ (dnew $b)) (- (dnew (? $c $pl $b)))))\n((arm 1) (, (petri (? $c $pl $b)) (dnew (! $c $pl)))\n (O (+ (petri $b)) (+ (dnew $b)) (- (dnew (! $c $pl)))))\n;; round-robin over the arms, the way process_calculus_bench drives its own two rules\n(exec (IC 0 1 FUEL) (, (exec (IC $x $y (S $c)) $sp $st) ((arm $x) $p $t))\n (, (exec (IC $y $x $c) $sp $st) (exec (R $x) $p $t)))', 'pc3_consume': '(exec (1 Z) (, (exec (1 $l) $p $t) (fuel (S $k))\n (petri (? $c $pl $b)) (petri (! $c $pl)))\n (O (+ (exec (1 (S $l)) $p $t)) (+ (petri $b))\n (- (petri (? $c $pl $b))) (- (petri (! $c $pl)))\n (+ (fuel $k)) (- (fuel (S $k)))))'} def main(outdir): os.makedirs(outdir, exist_ok=True) @@ -99,8 +99,10 @@ def main(outdir): for _ in range(n + 5): fuel = "(S %s)" % fuel head = soup + "\n(petri (! c0 p0))\n(fuel %s)\n" % fuel w("pc%d_naive.mm2" % n, head + RULES["pc3_naive"] + "\n") - w("pc%d_delta.mm2" % n, soup + "\n(petri (! c0 p0))\n(dmsg (! c0 p0))\n(fuel %s)\n" % fuel - + RULES["pc3_delta"] + "\n") + # everything is new at the start, so the worklist is seeded with the whole soup + dnew = soup.replace("(petri ", "(dnew ") + "\n(dnew (! c0 p0))\n" + w("pc%d_delta.mm2" % n, soup + "\n(petri (! c0 p0))\n" + dnew + + RULES["pc3_delta"].replace("FUEL", fuel) + "\n") w("pc%d_consume.mm2" % n, head + RULES["pc3_consume"] + "\n") print("wrote all programs to " + outdir) diff --git a/kernel/src/main.rs b/kernel/src/main.rs index 5ca02c01..ea7a0f93 100644 --- a/kernel/src/main.rs +++ b/kernel/src/main.rs @@ -852,6 +852,80 @@ f /// A bare top-level SYMBOL conjunct is an existence check on that atom: the body fires when the /// symbol is present and never when it is absent. It is also a shape the leapfrog join declines /// (no arity, so no columns to seek), so this covers the fallback under either feature setting. +/// The projection cut: a body variable no template reads, mentioned once, in its conjunct's +/// trailing run, may be answered with ONE witness instead of its whole domain. What matters is +/// that this never changes the answer set -- so every shape below is checked, including the ones +/// the cut must refuse. +fn projection_cut_variables() { + let mut s = Space::new(); + + const SPACE_EXPRS: &str = r#" +(r a) +(r b) +(s a p) +(s a q) +(s a t) +(s b t) +(gg p 1) +(gg p 2) +(gg q 3) +(hh (kk p 1)) +(hh (kk p 2)) +(hh (kk q 3)) +(jl 1) +(jl 2) +(jl 3) +(jr 2) +(jr 3) +(jr 4) +(je 7) +(sv k plain) +(sv k (f $z)) +(sv k (g $w $v)) +(exec (0 0) (, (r $x) (s $x $_)) (, (cut1 $x))) +(exec (0 1) (, (gg $m $n)) (, (keep1 $n))) +(exec (0 2) (, (hh (kk $mm $nn))) (, (keep2 $nn))) +(exec (0 3) (, (jl $p) (jr $p) (je $q)) (, (keep3 $q))) +(exec (0 4) (, (sv $y $_)) (, (cut2 $y))) + "#; + + s.add_all_sexpr(SPACE_EXPRS.as_bytes()).unwrap(); + let t0 = Instant::now(); + let steps = s.metta_calculus(1000000000000000); + println!("elapsed {} steps {} size {}", t0.elapsed().as_millis(), steps, s.btm.val_count()); + + let mut v = vec![]; + s.dump_all_sexpr(&mut v).unwrap(); + let res = String::from_utf8_lossy_owned(v); + println!("result: {res}"); + let rows = |p: &str| res.lines().filter(|l| l.starts_with(p)).count(); + + // `$_` is trailing, mentioned once, and unread: `a` has three witnesses and `b` one, and the + // answer is one row each either way. + assert!(res.contains("(cut1 a) +") && res.contains("(cut1 b) +"), "both keys must answer"); + assert_eq!(rows("(cut1 "), 2, "one row per key, whatever the fan-out"); + + // A witness may be schematic. `(f $z)` is what a leftmost descent reaches -- an arity byte + // sorts below a symbol byte -- so this is also the shape that catches a cut reporting a + // variable-carrying fact as ground. + assert_eq!(rows("(cut2 "), 1, "schematic witnesses collapse to the one key"); + assert!(res.contains("(cut2 k) +")); + + // `$m` is NOT trailing: it decides which subtrie `$n` is drawn from, so pinning it would drop + // `$n` values rather than duplicates. All three must survive, nested or not. + assert_eq!(rows("(keep1 "), 3, "a non-trailing don't-care must keep enumerating"); + assert_eq!(rows("(keep2 "), 3, "... one level down as well"); + + // `$p` is unread but mentioned twice, so it is a join variable and must still intersect: + // jl and jr agree on 2 and 3, so the body holds and `$q` comes through exactly once. + assert_eq!(rows("(keep3 "), 1, "a repeated variable is a join variable, not a don't-care"); + assert!(res.contains("(keep3 7) +")); +} + fn top_level_symbol() { let mut s = Space::new(); @@ -6279,6 +6353,7 @@ fn main() { data_varref_absorbs_query_compound_newvars(); top_level_match(); top_level_symbol(); + projection_cut_variables(); large_statement(); process_calculus_reverse(); From cf3851cf1011653712e9086d595cfbdbf60580f7 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Thu, 20 Aug 2026 12:12:21 +0100 Subject: [PATCH 7/9] ACT_PATH is an environment variable with a per-platform default It was a hardcoded `pub static ACT_PATH = "/dev/shm/"`, so every ACT test failed off Linux: macOS has no /dev/shm, and `mork test` died at the first backup_tree with a bare NotFound. `act_path()` now reads the ACT_PATH environment variable, and otherwise takes the best temporary location the platform offers: /dev/shm on Linux when it is mounted, since a tmpfs keeps an ACT out of the disk, and the OS temp directory elsewhere -- TMPDIR on macOS, which launchd always sets per-user, and TEMP/TMP on Windows. The separator is appended if missing and the directory is created if absent, so pointing ACT_PATH at a fresh path just works. Verified on macOS three ways: the default writes to $TMPDIR (/var/folders/../T/two_bipolar_equal_crossed.act), an explicit ACT_PATH is honoured, and a non-existent one is created. This does not make `mork test` pass here. It now reaches a hash assertion that expects (result XoicVnQv2bk) and gets (result -Egab4rQ3Nc). That failure is main's, not this branch's: main with its constant repointed at a real directory fails at the same test with the same two values. Left alone. Co-Authored-By: Claude Fable 5 --- kernel/src/main.rs | 12 ++++++------ kernel/src/sinks.rs | 4 ++-- kernel/src/space.rs | 42 +++++++++++++++++++++++++++++++++++++++--- 3 files changed, 47 insertions(+), 11 deletions(-) diff --git a/kernel/src/main.rs b/kernel/src/main.rs index ea7a0f93..bd77ee09 100644 --- a/kernel/src/main.rs +++ b/kernel/src/main.rs @@ -1,7 +1,7 @@ #![feature(string_from_utf8_lossy_owned)] use mork::{expr, prefix, sexpr, space}; -use mork::space::{transitions, unifications, writes, Space, ACT_PATH}; +use mork::space::{transitions, unifications, writes, Space, act_path}; use mork_frontend::bytestring_parser::Parser; use mork_expr::{item_byte, serialize, SourceItem, Tag}; use pathmap::PathMap; @@ -2047,7 +2047,7 @@ fn source_act_two_bipolar_equal_crossed() { "#; act_s.add_all_sexpr(SPACE_EXPRS.as_bytes()).unwrap(); - act_s.backup_tree(format!("{ACT_PATH}two_bipolar_equal_crossed.act")).unwrap(); + act_s.backup_tree(format!("{}two_bipolar_equal_crossed.act", act_path())).unwrap(); }; let mut s = Space::new(); @@ -2079,7 +2079,7 @@ fn source_space_act_two_bipolar_equal_crossed() { "#; act_s.add_all_sexpr(SPACE_EXPRS.as_bytes()).unwrap(); - act_s.backup_tree(format!("{ACT_PATH}space_two_bipolar_equal_crossed.act")).unwrap(); + act_s.backup_tree(format!("{}space_two_bipolar_equal_crossed.act", act_path())).unwrap(); }; let mut s = Space::new(); @@ -3072,7 +3072,7 @@ fn sink_act_readback() { { let mut s = Space::new(); - s.restore_tree(format!("{}sink_act_readback.act", ACT_PATH)); + s.restore_tree(format!("{}sink_act_readback.act", act_path())); let mut v = vec![]; s.dump_all_sexpr(&mut v).unwrap(); let res = String::from_utf8_lossy_owned(v); @@ -3100,7 +3100,7 @@ fn sink_act_mixed_readback() { { let mut s = Space::new(); - s.restore_tree(format!("{}sink_act_mixed_readback.act", ACT_PATH)); + s.restore_tree(format!("{}sink_act_mixed_readback.act", act_path())); let mut v = vec![]; s.dump_all_sexpr(&mut v).unwrap(); let res = String::from_utf8_lossy_owned(v); @@ -3706,7 +3706,7 @@ fn bench_logic_query_act() { // let mut expr_buf = vec![]; // std::fs::File::open(format!("{PROJECT_PATH}/resources/big.act")).unwrap().read_to_end(&mut expr_buf).unwrap(); - std::fs::copy(format!("{PROJECT_PATH}/resources/big.act"), format!("{}big.act", ACT_PATH)); + std::fs::copy(format!("{PROJECT_PATH}/resources/big.act"), format!("{}big.act", act_path())); let mut t0 = Instant::now(); s.add_all_sexpr(b"(exec 0 (I (ACT big (axiom $x)) (ACT big (axiom $x))) (, (combined $x)))").unwrap(); diff --git a/kernel/src/sinks.rs b/kernel/src/sinks.rs index 4c6bacbf..084e6310 100644 --- a/kernel/src/sinks.rs +++ b/kernel/src/sinks.rs @@ -30,7 +30,7 @@ use eval::EvalScope; use eval_ffi::{ExprSink, ExprSource}; use mork_expr::macros::SerializableExpr; use crate::{expr, pure}; -use crate::space::ACT_PATH; +use crate::space::act_path; #[derive(Eq, PartialEq, Debug)] pub enum WriteResourceRequest { @@ -329,7 +329,7 @@ impl Sink for ACTSink { trace!(target: "sink", "ACT finalizing"); let _ = it.next().unwrap() else { unreachable!() }; pathmap::arena_compact::ArenaCompactTree::dump_from_zipper( - self.tmp.read_zipper(), |_v| 0, format!("{}{}.act", ACT_PATH, self.file)).map(|_tree| ()); + self.tmp.read_zipper(), |_v| 0, format!("{}{}.act", act_path(), self.file)).map(|_tree| ()); true } } diff --git a/kernel/src/space.rs b/kernel/src/space.rs index b3dc6cb6..fcfe1e76 100644 --- a/kernel/src/space.rs +++ b/kernel/src/space.rs @@ -32,8 +32,44 @@ pub static mut transitions: usize = 0; pub static mut unifications: usize = 0; pub static mut writes: usize = 0; -pub static ACT_PATH: &'static str = "/dev/shm/"; -// pub static ACT_PATH: &'static str = "/mnt/data/"; +/// Where `ArenaCompactTree` files are written and mmapped from, always ending in a separator. +/// +/// Set the `ACT_PATH` environment variable to choose the directory. Otherwise the default is the +/// best temporary location the platform offers: on Linux `/dev/shm`, a tmpfs, so an ACT never +/// reaches a disk; elsewhere the OS temp directory, which is `TMPDIR` on macOS (launchd always +/// sets it, per-user) and `TEMP`/`TMP` on Windows -- neither has a `/dev/shm` to fall back to, +/// which is why the old hardcoded one made every ACT test fail off Linux. +/// +/// The directory is created if it does not exist, so a caller pointing `ACT_PATH` at a fresh +/// path does not have to make it first. +pub fn act_path() -> &'static str { + static PATH: std::sync::OnceLock = std::sync::OnceLock::new(); + PATH.get_or_init(|| { + let mut p = std::env::var("ACT_PATH") + .ok() + .filter(|s| !s.is_empty()) + .unwrap_or_else(default_act_dir); + if !p.ends_with('/') && !p.ends_with(std::path::MAIN_SEPARATOR) { + p.push(std::path::MAIN_SEPARATOR); + } + if let Err(e) = std::fs::create_dir_all(&p) { + warn!(target: "act", "ACT_PATH {p} is not usable: {e}"); + } + p + }) +} + +fn default_act_dir() -> String { + #[cfg(target_os = "linux")] + { + // A tmpfs when it is mounted, which is the point: an ACT stays in memory. + if std::path::Path::new("/dev/shm").is_dir() { + return "/dev/shm".to_string(); + } + } + // `temp_dir` reads TMPDIR on macOS and TEMP/TMP on Windows, and falls back to /tmp on unix. + std::env::temp_dir().to_string_lossy().into_owned() +} /// The pattern's distinct variables as a synthetic expression of `n` `NewVar`s. Only the debug /// cross-check of [`mork_expr::pattern_cycles_and_intros`] applies it now; the live path needs no @@ -1292,7 +1328,7 @@ impl Space { ResourceRequest::ACT(name) => { let act = mmaps.as_mut().unwrap().entry(OwnedSourceItem::from(name)).or_insert_with(|| { trace!(target: "query_multi_i", "open new ACT {}", name); - ArenaCompactTree::open_mmap(format!("{ACT_PATH}{name}.act")).unwrap() + ArenaCompactTree::open_mmap(format!("{}{name}.act", act_path())).unwrap() }); trace!(target: "query_multi_i", "taking RZ of {}", name); Resource::ACT(act.read_zipper()) From c6b8947536dc50d06d101827442c9be365b2c998 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Thu, 20 Aug 2026 13:48:11 +0100 Subject: [PATCH 8/9] Update sink_hash_expr to the hash gxhash actually produces The expectation predated #146, which made the hasher compile: the constants came from whatever was silently used while the `gxhash` cfg never matched. With gxhash 3.x running, `(myexpr ..)` hashes to -Egab4rQ3Nc and ru8oOBGFlq0. Portable, contrary to what I said last round: gxhash documents its hashes as stable across every supported platform for a given major version, so this is not pinned to this machine's ISA. It is pinned to gxhash 3.x, and a major bump will move it again. With this, `mork test` passes end to end on both engines -- and the same constant makes main pass too, which is how I know the value is the hasher's and not this branch's. Co-Authored-By: Claude Fable 5 --- kernel/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/src/main.rs b/kernel/src/main.rs index bd77ee09..4f6a0b1a 100644 --- a/kernel/src/main.rs +++ b/kernel/src/main.rs @@ -1398,7 +1398,10 @@ fn sink_hash_expr() { let res = String::from_utf8_lossy_owned(v); println!("result: {res}"); - assert_eq!(res, "(result XoicVnQv2bk)\n(result tspt4QCdRB8)\n"); + // gxhash 3.x, which #146 made actually compile -- the previous constants came from the + // hasher that was silently used while the `gxhash` cfg never matched. Stable across + // platforms for a given major version, per gxhash's own guarantee. + assert_eq!(res, "(result -Egab4rQ3Nc)\n(result ru8oOBGFlq0)\n"); } fn sink_even_half() { From 590b08caf0d071b6668367127b07530135055042 Mon Sep 17 00:00:00 2001 From: adamv-symbolica Date: Thu, 20 Aug 2026 15:39:07 +0100 Subject: [PATCH 9/9] Audit data-side aliasing against the cut, and pin it The query-side rule -- mentioned once, unread, trailing -- says nothing about the DATA sharing a variable across the columns it names. Facts like (f $x A $x) tie the don't-care column to the column a template reads, so the audit asked whether $a still iterates over A and B under (, (f $a $a $_)). It does, on both engines, and the reason is structural rather than lucky: the discriminating information lives in the REPEATED column, which is a trie prefix of the don't-care column, so it is enumerated before the cut ever applies. More generally a bare fresh singleton is an unconstrained position: the binding it takes is read by nothing and constrains nothing else, so the choice cannot propagate. What could still discriminate is a later query position drawing from the subtrie the choice selected, and that is precisely what the trailing condition excludes. Eight aliasing shapes are pinned, expected generated from a NO-CUT build so the cut is measured against the semantics it must preserve -- including the middle-position case, which must not be cut at all. Non-vacuous, checked by the unifications counter: over 400 facts sharing an aliased prefix and differing at the don't-care column, the cut takes 400 unifications to 1 with the same single answer; over 400 facts differing at the REPEATED column it takes 400 to 400, collapsing nothing, which is the audited case at scale. Co-Authored-By: Claude Fable 5 --- .../programs/projection_cut_aliased.mm2 | 53 +++++++++++++++++++ .../programs/projection_cut_aliased.expected | 28 ++++++++++ 2 files changed, 81 insertions(+) create mode 100644 differential/corpus/programs/projection_cut_aliased.mm2 create mode 100644 differential/expected/programs/projection_cut_aliased.expected diff --git a/differential/corpus/programs/projection_cut_aliased.mm2 b/differential/corpus/programs/projection_cut_aliased.mm2 new file mode 100644 index 00000000..4f041ac6 --- /dev/null +++ b/differential/corpus/programs/projection_cut_aliased.mm2 @@ -0,0 +1,53 @@ +;; @expect +;; @steps 30 +;; @desc Data-side aliasing: facts whose own variable ties the don't-care column to a column a +;; @desc template reads. The query-side rule (mentioned once, unread, trailing) says nothing +;; @desc about the DATA sharing a variable across those columns, so each shape is pinned here. +;; @desc +;; @desc Why it is sound: a bare fresh singleton is an unconstrained position, so whichever +;; @desc stored subterm it meets, the binding is read by nothing and constrains nothing else. +;; @desc What could still discriminate is a LATER query position drawing from the subtrie the +;; @desc choice selected -- and the trailing condition is exactly what excludes that. The +;; @desc discriminating information in these shapes lives in the repeated column, which is a +;; @desc trie PREFIX of the don't-care column, so it is enumerated before the cut applies. + +;; 1. the tail aliases the first column; the facts differ at the REPEATED column, so `$a` must +;; still iterate over both A and B +(f1 $x A $x) +(f1 $x B $x) +(exec (0 1) (, (f1 $a $a $_)) (, (o1 $a))) + +;; 2. the facts differ at the DON'T-CARE column instead, and `$a` stays free +(f2 $x $x A) +(f2 $x $x B) +(exec (0 2) (, (f2 $a $a $_)) (, (o2 $a))) + +;; 3. the don't-care column mixes a back-reference with a ground term +(f3 $x $x $x) +(f3 $x $x A) +(exec (0 3) (, (f3 $a $a $_)) (, (o3 $a))) + +;; 4. the read variable is pinned by the FIRST column, with an alias in the tail +(f4 A $x $x) +(f4 B $x $x) +(exec (0 4) (, (f4 $a $a $_)) (, (o4 $a))) + +;; 5. two trailing don't-cares, both aliased to the read variable +(f5 $x A $x $x) +(f5 $x B $x $x) +(exec (0 5) (, (f5 $a $a $_ $_2)) (, (o5 $a))) + +;; 6. the don't-care sits in the MIDDLE, so it is not cuttable at all +(f6 $x A $x) +(f6 $x B $x) +(exec (0 6) (, (f6 $c $_ $c)) (, (o6 $c))) + +;; 7. the don't-care's subterm carries structure over the shared variable +(f7 $x $x (g $x)) +(f7 $x $x (h $x)) +(exec (0 7) (, (f7 $a $a $_)) (, (o7 $a))) + +;; 8. a read variable pinned only via the repeated column, with the tail aliasing it +(f8 $x $x A $x) +(f8 $x $x B $x) +(exec (0 8) (, (f8 $a $a $b $_)) (, (o8 $a $b))) diff --git a/differential/expected/programs/projection_cut_aliased.expected b/differential/expected/programs/projection_cut_aliased.expected new file mode 100644 index 00000000..eefc83ea --- /dev/null +++ b/differential/expected/programs/projection_cut_aliased.expected @@ -0,0 +1,28 @@ +(o1 A) +(o1 B) +(o2 $a) +(o3 $a) +(o4 A) +(o4 B) +(o5 A) +(o5 B) +(o6 $a) +(o7 $a) +(o8 $a A) +(o8 $a B) +(f1 $a A $a) +(f1 $a B $a) +(f2 $a $a A) +(f2 $a $a B) +(f3 $a $a $a) +(f3 $a $a A) +(f4 A $a $a) +(f4 B $a $a) +(f6 $a A $a) +(f6 $a B $a) +(f7 $a $a (g $a)) +(f7 $a $a (h $a)) +(f5 $a A $a $a) +(f5 $a B $a $a) +(f8 $a $a A $a) +(f8 $a $a B $a)