/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) CR [EQUIVALENT, 0 ms] (2) HASKELL (3) IFR [EQUIVALENT, 0 ms] (4) HASKELL (5) BR [EQUIVALENT, 0 ms] (6) HASKELL (7) COR [EQUIVALENT, 7 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 13 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 114 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " ---------------------------------------- (8) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (9) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x zx = x; gcd0Gcd'1 zy zz vuu = gcd0Gcd'0 zz vuu; " "gcd0Gcd'2 x zx = gcd0Gcd'1 (zx == 0) x zx; gcd0Gcd'2 vuv vuw = gcd0Gcd'0 vuv vuw; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " "reduce2D vwv vww = gcd vwv vww; " "reduce2Reduce1 vwv vww x y True = error []; reduce2Reduce1 vwv vww x y False = reduce2Reduce0 vwv vww x y otherwise; " ---------------------------------------- (10) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (11) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (12) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (13) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="compare",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="compare vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="compare vwx3 vwx4",fontsize=16,color="blue",shape="box"];2663[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 5[label="",style="solid", color="blue", weight=3]; 2664[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 6[label="",style="solid", color="blue", weight=3]; 2665[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 7[label="",style="solid", color="blue", weight=3]; 2666[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 8[label="",style="solid", color="blue", weight=3]; 2667[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 9[label="",style="solid", color="blue", weight=3]; 2668[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 10[label="",style="solid", color="blue", weight=3]; 2669[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 11[label="",style="solid", color="blue", weight=3]; 2670[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 12[label="",style="solid", color="blue", weight=3]; 2671[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 13[label="",style="solid", color="blue", weight=3]; 2672[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 14[label="",style="solid", color="blue", weight=3]; 2673[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 15[label="",style="solid", color="blue", weight=3]; 2674[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 16[label="",style="solid", color="blue", weight=3]; 2675[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 17[label="",style="solid", color="blue", weight=3]; 2676[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];4 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 18[label="",style="solid", color="blue", weight=3]; 5[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2677[label="vwx3/vwx30 :% vwx31",fontsize=10,color="white",style="solid",shape="box"];5 -> 2677[label="",style="solid", color="burlywood", weight=9]; 2677 -> 19[label="",style="solid", color="burlywood", weight=3]; 6[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2678[label="vwx3/Integer vwx30",fontsize=10,color="white",style="solid",shape="box"];6 -> 2678[label="",style="solid", color="burlywood", weight=9]; 2678 -> 20[label="",style="solid", color="burlywood", weight=3]; 7[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];7 -> 21[label="",style="solid", color="black", weight=3]; 8[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2679[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];8 -> 2679[label="",style="solid", color="burlywood", weight=9]; 2679 -> 22[label="",style="solid", color="burlywood", weight=3]; 2680[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];8 -> 2680[label="",style="solid", color="burlywood", weight=9]; 2680 -> 23[label="",style="solid", color="burlywood", weight=3]; 9[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];9 -> 24[label="",style="solid", color="black", weight=3]; 10[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];10 -> 25[label="",style="solid", color="black", weight=3]; 11[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];11 -> 26[label="",style="solid", color="black", weight=3]; 12[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2681[label="vwx3/()",fontsize=10,color="white",style="solid",shape="box"];12 -> 2681[label="",style="solid", color="burlywood", weight=9]; 2681 -> 27[label="",style="solid", color="burlywood", weight=3]; 13[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];13 -> 28[label="",style="solid", color="black", weight=3]; 14[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];14 -> 29[label="",style="solid", color="black", weight=3]; 15[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];15 -> 30[label="",style="solid", color="black", weight=3]; 16[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];16 -> 31[label="",style="solid", color="black", weight=3]; 17[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];17 -> 32[label="",style="solid", color="black", weight=3]; 18[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];18 -> 33[label="",style="solid", color="black", weight=3]; 19[label="compare (vwx30 :% vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2682[label="vwx4/vwx40 :% vwx41",fontsize=10,color="white",style="solid",shape="box"];19 -> 2682[label="",style="solid", color="burlywood", weight=9]; 2682 -> 34[label="",style="solid", color="burlywood", weight=3]; 20[label="compare (Integer vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2683[label="vwx4/Integer vwx40",fontsize=10,color="white",style="solid",shape="box"];20 -> 2683[label="",style="solid", color="burlywood", weight=9]; 2683 -> 35[label="",style="solid", color="burlywood", weight=3]; 21[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];21 -> 36[label="",style="solid", color="black", weight=3]; 22[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2684[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];22 -> 2684[label="",style="solid", color="burlywood", weight=9]; 2684 -> 37[label="",style="solid", color="burlywood", weight=3]; 2685[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];22 -> 2685[label="",style="solid", color="burlywood", weight=9]; 2685 -> 38[label="",style="solid", color="burlywood", weight=3]; 23[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2686[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];23 -> 2686[label="",style="solid", color="burlywood", weight=9]; 2686 -> 39[label="",style="solid", color="burlywood", weight=3]; 2687[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];23 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 40[label="",style="solid", color="burlywood", weight=3]; 24[label="primCmpFloat vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2688[label="vwx3/Float vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];24 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 41[label="",style="solid", color="burlywood", weight=3]; 25[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];25 -> 42[label="",style="solid", color="black", weight=3]; 26[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];26 -> 43[label="",style="solid", color="black", weight=3]; 27[label="compare () vwx4",fontsize=16,color="burlywood",shape="box"];2689[label="vwx4/()",fontsize=10,color="white",style="solid",shape="box"];27 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 44[label="",style="solid", color="burlywood", weight=3]; 28[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];28 -> 45[label="",style="solid", color="black", weight=3]; 29[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];29 -> 46[label="",style="solid", color="black", weight=3]; 30[label="primCmpChar vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2690[label="vwx3/Char vwx30",fontsize=10,color="white",style="solid",shape="box"];30 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 47[label="",style="solid", color="burlywood", weight=3]; 31[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];31 -> 48[label="",style="solid", color="black", weight=3]; 32[label="primCmpInt vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2691[label="vwx3/Pos vwx30",fontsize=10,color="white",style="solid",shape="box"];32 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 49[label="",style="solid", color="burlywood", weight=3]; 2692[label="vwx3/Neg vwx30",fontsize=10,color="white",style="solid",shape="box"];32 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 50[label="",style="solid", color="burlywood", weight=3]; 33[label="primCmpDouble vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2693[label="vwx3/Double vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];33 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 51[label="",style="solid", color="burlywood", weight=3]; 34[label="compare (vwx30 :% vwx31) (vwx40 :% vwx41)",fontsize=16,color="black",shape="box"];34 -> 52[label="",style="solid", color="black", weight=3]; 35[label="compare (Integer vwx30) (Integer vwx40)",fontsize=16,color="black",shape="box"];35 -> 53[label="",style="solid", color="black", weight=3]; 36[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2694[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];36 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 54[label="",style="solid", color="burlywood", weight=3]; 37[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];37 -> 55[label="",style="solid", color="black", weight=3]; 38[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];38 -> 56[label="",style="solid", color="black", weight=3]; 39[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];39 -> 57[label="",style="solid", color="black", weight=3]; 40[label="compare [] []",fontsize=16,color="black",shape="box"];40 -> 58[label="",style="solid", color="black", weight=3]; 41[label="primCmpFloat (Float vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2695[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];41 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 59[label="",style="solid", color="burlywood", weight=3]; 2696[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];41 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 60[label="",style="solid", color="burlywood", weight=3]; 42[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2697[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];42 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 61[label="",style="solid", color="burlywood", weight=3]; 2698[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];42 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 62[label="",style="solid", color="burlywood", weight=3]; 43[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2699[label="vwx3/False",fontsize=10,color="white",style="solid",shape="box"];43 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 63[label="",style="solid", color="burlywood", weight=3]; 2700[label="vwx3/True",fontsize=10,color="white",style="solid",shape="box"];43 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 64[label="",style="solid", color="burlywood", weight=3]; 44[label="compare () ()",fontsize=16,color="black",shape="box"];44 -> 65[label="",style="solid", color="black", weight=3]; 45[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2701[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];45 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 66[label="",style="solid", color="burlywood", weight=3]; 2702[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];45 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 67[label="",style="solid", color="burlywood", weight=3]; 46[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2703[label="vwx3/(vwx30,vwx31,vwx32)",fontsize=10,color="white",style="solid",shape="box"];46 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 68[label="",style="solid", color="burlywood", weight=3]; 47[label="primCmpChar (Char vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2704[label="vwx4/Char vwx40",fontsize=10,color="white",style="solid",shape="box"];47 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 69[label="",style="solid", color="burlywood", weight=3]; 48[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2705[label="vwx3/LT",fontsize=10,color="white",style="solid",shape="box"];48 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 70[label="",style="solid", color="burlywood", weight=3]; 2706[label="vwx3/EQ",fontsize=10,color="white",style="solid",shape="box"];48 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 71[label="",style="solid", color="burlywood", weight=3]; 2707[label="vwx3/GT",fontsize=10,color="white",style="solid",shape="box"];48 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 72[label="",style="solid", color="burlywood", weight=3]; 49[label="primCmpInt (Pos vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2708[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];49 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 73[label="",style="solid", color="burlywood", weight=3]; 2709[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];49 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 74[label="",style="solid", color="burlywood", weight=3]; 50[label="primCmpInt (Neg vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2710[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];50 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 75[label="",style="solid", color="burlywood", weight=3]; 2711[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];50 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 76[label="",style="solid", color="burlywood", weight=3]; 51[label="primCmpDouble (Double vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2712[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];51 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 77[label="",style="solid", color="burlywood", weight=3]; 2713[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];51 -> 2713[label="",style="solid", color="burlywood", weight=9]; 2713 -> 78[label="",style="solid", color="burlywood", weight=3]; 52[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="blue",shape="box"];2714[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];52 -> 2714[label="",style="solid", color="blue", weight=9]; 2714 -> 79[label="",style="solid", color="blue", weight=3]; 2715[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];52 -> 2715[label="",style="solid", color="blue", weight=9]; 2715 -> 80[label="",style="solid", color="blue", weight=3]; 53 -> 32[label="",style="dashed", color="red", weight=0]; 53[label="primCmpInt vwx30 vwx40",fontsize=16,color="magenta"];53 -> 81[label="",style="dashed", color="magenta", weight=3]; 53 -> 82[label="",style="dashed", color="magenta", weight=3]; 54[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4)",fontsize=16,color="burlywood",shape="box"];2716[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];54 -> 2716[label="",style="solid", color="burlywood", weight=9]; 2716 -> 83[label="",style="solid", color="burlywood", weight=3]; 55 -> 84[label="",style="dashed", color="red", weight=0]; 55[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];55 -> 85[label="",style="dashed", color="magenta", weight=3]; 56[label="GT",fontsize=16,color="green",shape="box"];57[label="LT",fontsize=16,color="green",shape="box"];58[label="EQ",fontsize=16,color="green",shape="box"];59[label="primCmpFloat (Float vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2717[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];59 -> 2717[label="",style="solid", color="burlywood", weight=9]; 2717 -> 86[label="",style="solid", color="burlywood", weight=3]; 60[label="primCmpFloat (Float vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2718[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];60 -> 2718[label="",style="solid", color="burlywood", weight=9]; 2718 -> 87[label="",style="solid", color="burlywood", weight=3]; 61[label="compare2 Nothing vwx4 (Nothing == vwx4)",fontsize=16,color="burlywood",shape="box"];2719[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];61 -> 2719[label="",style="solid", color="burlywood", weight=9]; 2719 -> 88[label="",style="solid", color="burlywood", weight=3]; 2720[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];61 -> 2720[label="",style="solid", color="burlywood", weight=9]; 2720 -> 89[label="",style="solid", color="burlywood", weight=3]; 62[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2721[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];62 -> 2721[label="",style="solid", color="burlywood", weight=9]; 2721 -> 90[label="",style="solid", color="burlywood", weight=3]; 2722[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];62 -> 2722[label="",style="solid", color="burlywood", weight=9]; 2722 -> 91[label="",style="solid", color="burlywood", weight=3]; 63[label="compare2 False vwx4 (False == vwx4)",fontsize=16,color="burlywood",shape="box"];2723[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];63 -> 2723[label="",style="solid", color="burlywood", weight=9]; 2723 -> 92[label="",style="solid", color="burlywood", weight=3]; 2724[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];63 -> 2724[label="",style="solid", color="burlywood", weight=9]; 2724 -> 93[label="",style="solid", color="burlywood", weight=3]; 64[label="compare2 True vwx4 (True == vwx4)",fontsize=16,color="burlywood",shape="box"];2725[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];64 -> 2725[label="",style="solid", color="burlywood", weight=9]; 2725 -> 94[label="",style="solid", color="burlywood", weight=3]; 2726[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];64 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 95[label="",style="solid", color="burlywood", weight=3]; 65[label="EQ",fontsize=16,color="green",shape="box"];66[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2727[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];66 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 96[label="",style="solid", color="burlywood", weight=3]; 2728[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];66 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 97[label="",style="solid", color="burlywood", weight=3]; 67[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2729[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];67 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 98[label="",style="solid", color="burlywood", weight=3]; 2730[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];67 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 99[label="",style="solid", color="burlywood", weight=3]; 68[label="compare2 (vwx30,vwx31,vwx32) vwx4 ((vwx30,vwx31,vwx32) == vwx4)",fontsize=16,color="burlywood",shape="box"];2731[label="vwx4/(vwx40,vwx41,vwx42)",fontsize=10,color="white",style="solid",shape="box"];68 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 100[label="",style="solid", color="burlywood", weight=3]; 69[label="primCmpChar (Char vwx30) (Char vwx40)",fontsize=16,color="black",shape="box"];69 -> 101[label="",style="solid", color="black", weight=3]; 70[label="compare2 LT vwx4 (LT == vwx4)",fontsize=16,color="burlywood",shape="box"];2732[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];70 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 102[label="",style="solid", color="burlywood", weight=3]; 2733[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];70 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 103[label="",style="solid", color="burlywood", weight=3]; 2734[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];70 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 104[label="",style="solid", color="burlywood", weight=3]; 71[label="compare2 EQ vwx4 (EQ == vwx4)",fontsize=16,color="burlywood",shape="box"];2735[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];71 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 105[label="",style="solid", color="burlywood", weight=3]; 2736[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];71 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 106[label="",style="solid", color="burlywood", weight=3]; 2737[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];71 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 107[label="",style="solid", color="burlywood", weight=3]; 72[label="compare2 GT vwx4 (GT == vwx4)",fontsize=16,color="burlywood",shape="box"];2738[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];72 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 108[label="",style="solid", color="burlywood", weight=3]; 2739[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];72 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 109[label="",style="solid", color="burlywood", weight=3]; 2740[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];72 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 110[label="",style="solid", color="burlywood", weight=3]; 73[label="primCmpInt (Pos (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2741[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];73 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 111[label="",style="solid", color="burlywood", weight=3]; 2742[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];73 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 112[label="",style="solid", color="burlywood", weight=3]; 74[label="primCmpInt (Pos Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2743[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];74 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 113[label="",style="solid", color="burlywood", weight=3]; 2744[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];74 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 114[label="",style="solid", color="burlywood", weight=3]; 75[label="primCmpInt (Neg (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2745[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];75 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 115[label="",style="solid", color="burlywood", weight=3]; 2746[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];75 -> 2746[label="",style="solid", color="burlywood", weight=9]; 2746 -> 116[label="",style="solid", color="burlywood", weight=3]; 76[label="primCmpInt (Neg Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2747[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];76 -> 2747[label="",style="solid", color="burlywood", weight=9]; 2747 -> 117[label="",style="solid", color="burlywood", weight=3]; 2748[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];76 -> 2748[label="",style="solid", color="burlywood", weight=9]; 2748 -> 118[label="",style="solid", color="burlywood", weight=3]; 77[label="primCmpDouble (Double vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2749[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];77 -> 2749[label="",style="solid", color="burlywood", weight=9]; 2749 -> 119[label="",style="solid", color="burlywood", weight=3]; 78[label="primCmpDouble (Double vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2750[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];78 -> 2750[label="",style="solid", color="burlywood", weight=9]; 2750 -> 120[label="",style="solid", color="burlywood", weight=3]; 79 -> 6[label="",style="dashed", color="red", weight=0]; 79[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];79 -> 121[label="",style="dashed", color="magenta", weight=3]; 79 -> 122[label="",style="dashed", color="magenta", weight=3]; 80 -> 17[label="",style="dashed", color="red", weight=0]; 80[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];80 -> 123[label="",style="dashed", color="magenta", weight=3]; 80 -> 124[label="",style="dashed", color="magenta", weight=3]; 81[label="vwx30",fontsize=16,color="green",shape="box"];82[label="vwx40",fontsize=16,color="green",shape="box"];83[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41))",fontsize=16,color="black",shape="box"];83 -> 125[label="",style="solid", color="black", weight=3]; 85 -> 8[label="",style="dashed", color="red", weight=0]; 85[label="compare vwx31 vwx41",fontsize=16,color="magenta"];85 -> 126[label="",style="dashed", color="magenta", weight=3]; 85 -> 127[label="",style="dashed", color="magenta", weight=3]; 84[label="primCompAux vwx30 vwx40 vwx5",fontsize=16,color="black",shape="triangle"];84 -> 128[label="",style="solid", color="black", weight=3]; 86[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2751[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];86 -> 2751[label="",style="solid", color="burlywood", weight=9]; 2751 -> 129[label="",style="solid", color="burlywood", weight=3]; 2752[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];86 -> 2752[label="",style="solid", color="burlywood", weight=9]; 2752 -> 130[label="",style="solid", color="burlywood", weight=3]; 87[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2753[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];87 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 131[label="",style="solid", color="burlywood", weight=3]; 2754[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];87 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 132[label="",style="solid", color="burlywood", weight=3]; 88[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];88 -> 133[label="",style="solid", color="black", weight=3]; 89[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40)",fontsize=16,color="black",shape="box"];89 -> 134[label="",style="solid", color="black", weight=3]; 90[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing)",fontsize=16,color="black",shape="box"];90 -> 135[label="",style="solid", color="black", weight=3]; 91[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40)",fontsize=16,color="black",shape="box"];91 -> 136[label="",style="solid", color="black", weight=3]; 92[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];92 -> 137[label="",style="solid", color="black", weight=3]; 93[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];93 -> 138[label="",style="solid", color="black", weight=3]; 94[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];94 -> 139[label="",style="solid", color="black", weight=3]; 95[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];95 -> 140[label="",style="solid", color="black", weight=3]; 96[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];96 -> 141[label="",style="solid", color="black", weight=3]; 97[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];97 -> 142[label="",style="solid", color="black", weight=3]; 98[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];98 -> 143[label="",style="solid", color="black", weight=3]; 99[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];99 -> 144[label="",style="solid", color="black", weight=3]; 100[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) ((vwx30,vwx31,vwx32) == (vwx40,vwx41,vwx42))",fontsize=16,color="black",shape="box"];100 -> 145[label="",style="solid", color="black", weight=3]; 101[label="primCmpNat vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2755[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];101 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 146[label="",style="solid", color="burlywood", weight=3]; 2756[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];101 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 147[label="",style="solid", color="burlywood", weight=3]; 102[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];102 -> 148[label="",style="solid", color="black", weight=3]; 103[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];103 -> 149[label="",style="solid", color="black", weight=3]; 104[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];104 -> 150[label="",style="solid", color="black", weight=3]; 105[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];105 -> 151[label="",style="solid", color="black", weight=3]; 106[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];106 -> 152[label="",style="solid", color="black", weight=3]; 107[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];107 -> 153[label="",style="solid", color="black", weight=3]; 108[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];108 -> 154[label="",style="solid", color="black", weight=3]; 109[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];109 -> 155[label="",style="solid", color="black", weight=3]; 110[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];110 -> 156[label="",style="solid", color="black", weight=3]; 111[label="primCmpInt (Pos (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];111 -> 157[label="",style="solid", color="black", weight=3]; 112[label="primCmpInt (Pos (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];112 -> 158[label="",style="solid", color="black", weight=3]; 113[label="primCmpInt (Pos Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];2757[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];113 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 159[label="",style="solid", color="burlywood", weight=3]; 2758[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];113 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 160[label="",style="solid", color="burlywood", weight=3]; 114[label="primCmpInt (Pos Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];2759[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];114 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 161[label="",style="solid", color="burlywood", weight=3]; 2760[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];114 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 162[label="",style="solid", color="burlywood", weight=3]; 115[label="primCmpInt (Neg (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];115 -> 163[label="",style="solid", color="black", weight=3]; 116[label="primCmpInt (Neg (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];116 -> 164[label="",style="solid", color="black", weight=3]; 117[label="primCmpInt (Neg Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];2761[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];117 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 165[label="",style="solid", color="burlywood", weight=3]; 2762[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];117 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 166[label="",style="solid", color="burlywood", weight=3]; 118[label="primCmpInt (Neg Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];2763[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];118 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 167[label="",style="solid", color="burlywood", weight=3]; 2764[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];118 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 168[label="",style="solid", color="burlywood", weight=3]; 119[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2765[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];119 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 169[label="",style="solid", color="burlywood", weight=3]; 2766[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];119 -> 2766[label="",style="solid", color="burlywood", weight=9]; 2766 -> 170[label="",style="solid", color="burlywood", weight=3]; 120[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2767[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];120 -> 2767[label="",style="solid", color="burlywood", weight=9]; 2767 -> 171[label="",style="solid", color="burlywood", weight=3]; 2768[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];120 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 172[label="",style="solid", color="burlywood", weight=3]; 121[label="vwx30 * vwx41",fontsize=16,color="burlywood",shape="triangle"];2769[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];121 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 173[label="",style="solid", color="burlywood", weight=3]; 122 -> 121[label="",style="dashed", color="red", weight=0]; 122[label="vwx40 * vwx31",fontsize=16,color="magenta"];122 -> 174[label="",style="dashed", color="magenta", weight=3]; 122 -> 175[label="",style="dashed", color="magenta", weight=3]; 123[label="vwx30 * vwx41",fontsize=16,color="black",shape="triangle"];123 -> 176[label="",style="solid", color="black", weight=3]; 124 -> 123[label="",style="dashed", color="red", weight=0]; 124[label="vwx40 * vwx31",fontsize=16,color="magenta"];124 -> 177[label="",style="dashed", color="magenta", weight=3]; 124 -> 178[label="",style="dashed", color="magenta", weight=3]; 125 -> 651[label="",style="dashed", color="red", weight=0]; 125[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41)",fontsize=16,color="magenta"];125 -> 652[label="",style="dashed", color="magenta", weight=3]; 125 -> 653[label="",style="dashed", color="magenta", weight=3]; 125 -> 654[label="",style="dashed", color="magenta", weight=3]; 125 -> 655[label="",style="dashed", color="magenta", weight=3]; 125 -> 656[label="",style="dashed", color="magenta", weight=3]; 126[label="vwx31",fontsize=16,color="green",shape="box"];127[label="vwx41",fontsize=16,color="green",shape="box"];128 -> 185[label="",style="dashed", color="red", weight=0]; 128[label="primCompAux0 vwx5 (compare vwx30 vwx40)",fontsize=16,color="magenta"];128 -> 186[label="",style="dashed", color="magenta", weight=3]; 128 -> 187[label="",style="dashed", color="magenta", weight=3]; 129[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];129 -> 188[label="",style="solid", color="black", weight=3]; 130[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];130 -> 189[label="",style="solid", color="black", weight=3]; 131[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];131 -> 190[label="",style="solid", color="black", weight=3]; 132[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];132 -> 191[label="",style="solid", color="black", weight=3]; 133[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];133 -> 192[label="",style="solid", color="black", weight=3]; 134[label="compare2 Nothing (Just vwx40) False",fontsize=16,color="black",shape="box"];134 -> 193[label="",style="solid", color="black", weight=3]; 135[label="compare2 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];135 -> 194[label="",style="solid", color="black", weight=3]; 136 -> 195[label="",style="dashed", color="red", weight=0]; 136[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];136 -> 196[label="",style="dashed", color="magenta", weight=3]; 136 -> 197[label="",style="dashed", color="magenta", weight=3]; 136 -> 198[label="",style="dashed", color="magenta", weight=3]; 137[label="compare2 False False True",fontsize=16,color="black",shape="box"];137 -> 199[label="",style="solid", color="black", weight=3]; 138[label="compare2 False True False",fontsize=16,color="black",shape="box"];138 -> 200[label="",style="solid", color="black", weight=3]; 139[label="compare2 True False False",fontsize=16,color="black",shape="box"];139 -> 201[label="",style="solid", color="black", weight=3]; 140[label="compare2 True True True",fontsize=16,color="black",shape="box"];140 -> 202[label="",style="solid", color="black", weight=3]; 141 -> 203[label="",style="dashed", color="red", weight=0]; 141[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];141 -> 204[label="",style="dashed", color="magenta", weight=3]; 141 -> 205[label="",style="dashed", color="magenta", weight=3]; 141 -> 206[label="",style="dashed", color="magenta", weight=3]; 142[label="compare2 (Left vwx30) (Right vwx40) False",fontsize=16,color="black",shape="box"];142 -> 207[label="",style="solid", color="black", weight=3]; 143[label="compare2 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];143 -> 208[label="",style="solid", color="black", weight=3]; 144 -> 209[label="",style="dashed", color="red", weight=0]; 144[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];144 -> 210[label="",style="dashed", color="magenta", weight=3]; 144 -> 211[label="",style="dashed", color="magenta", weight=3]; 144 -> 212[label="",style="dashed", color="magenta", weight=3]; 145 -> 701[label="",style="dashed", color="red", weight=0]; 145[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) (vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42)",fontsize=16,color="magenta"];145 -> 702[label="",style="dashed", color="magenta", weight=3]; 145 -> 703[label="",style="dashed", color="magenta", weight=3]; 145 -> 704[label="",style="dashed", color="magenta", weight=3]; 145 -> 705[label="",style="dashed", color="magenta", weight=3]; 145 -> 706[label="",style="dashed", color="magenta", weight=3]; 145 -> 707[label="",style="dashed", color="magenta", weight=3]; 145 -> 708[label="",style="dashed", color="magenta", weight=3]; 146[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2770[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];146 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 221[label="",style="solid", color="burlywood", weight=3]; 2771[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];146 -> 2771[label="",style="solid", color="burlywood", weight=9]; 2771 -> 222[label="",style="solid", color="burlywood", weight=3]; 147[label="primCmpNat Zero vwx40",fontsize=16,color="burlywood",shape="box"];2772[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];147 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 223[label="",style="solid", color="burlywood", weight=3]; 2773[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];147 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 224[label="",style="solid", color="burlywood", weight=3]; 148[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];148 -> 225[label="",style="solid", color="black", weight=3]; 149[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];149 -> 226[label="",style="solid", color="black", weight=3]; 150[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];150 -> 227[label="",style="solid", color="black", weight=3]; 151[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];151 -> 228[label="",style="solid", color="black", weight=3]; 152[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];152 -> 229[label="",style="solid", color="black", weight=3]; 153[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];153 -> 230[label="",style="solid", color="black", weight=3]; 154[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];154 -> 231[label="",style="solid", color="black", weight=3]; 155[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];155 -> 232[label="",style="solid", color="black", weight=3]; 156[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];156 -> 233[label="",style="solid", color="black", weight=3]; 157 -> 101[label="",style="dashed", color="red", weight=0]; 157[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="magenta"];157 -> 234[label="",style="dashed", color="magenta", weight=3]; 157 -> 235[label="",style="dashed", color="magenta", weight=3]; 158[label="GT",fontsize=16,color="green",shape="box"];159[label="primCmpInt (Pos Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];159 -> 236[label="",style="solid", color="black", weight=3]; 160[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];160 -> 237[label="",style="solid", color="black", weight=3]; 161[label="primCmpInt (Pos Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];161 -> 238[label="",style="solid", color="black", weight=3]; 162[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];162 -> 239[label="",style="solid", color="black", weight=3]; 163[label="LT",fontsize=16,color="green",shape="box"];164 -> 101[label="",style="dashed", color="red", weight=0]; 164[label="primCmpNat vwx40 (Succ vwx300)",fontsize=16,color="magenta"];164 -> 240[label="",style="dashed", color="magenta", weight=3]; 164 -> 241[label="",style="dashed", color="magenta", weight=3]; 165[label="primCmpInt (Neg Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];165 -> 242[label="",style="solid", color="black", weight=3]; 166[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];166 -> 243[label="",style="solid", color="black", weight=3]; 167[label="primCmpInt (Neg Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];167 -> 244[label="",style="solid", color="black", weight=3]; 168[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];168 -> 245[label="",style="solid", color="black", weight=3]; 169[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];169 -> 246[label="",style="solid", color="black", weight=3]; 170[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];170 -> 247[label="",style="solid", color="black", weight=3]; 171[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];171 -> 248[label="",style="solid", color="black", weight=3]; 172[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];172 -> 249[label="",style="solid", color="black", weight=3]; 173[label="Integer vwx300 * vwx41",fontsize=16,color="burlywood",shape="box"];2774[label="vwx41/Integer vwx410",fontsize=10,color="white",style="solid",shape="box"];173 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 250[label="",style="solid", color="burlywood", weight=3]; 174[label="vwx31",fontsize=16,color="green",shape="box"];175[label="vwx40",fontsize=16,color="green",shape="box"];176[label="primMulInt vwx30 vwx41",fontsize=16,color="burlywood",shape="triangle"];2775[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];176 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 251[label="",style="solid", color="burlywood", weight=3]; 2776[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];176 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 252[label="",style="solid", color="burlywood", weight=3]; 177[label="vwx31",fontsize=16,color="green",shape="box"];178[label="vwx40",fontsize=16,color="green",shape="box"];652[label="vwx31",fontsize=16,color="green",shape="box"];653 -> 733[label="",style="dashed", color="red", weight=0]; 653[label="vwx30 == vwx40 && vwx31 == vwx41",fontsize=16,color="magenta"];653 -> 734[label="",style="dashed", color="magenta", weight=3]; 653 -> 735[label="",style="dashed", color="magenta", weight=3]; 654[label="vwx40",fontsize=16,color="green",shape="box"];655[label="vwx41",fontsize=16,color="green",shape="box"];656[label="vwx30",fontsize=16,color="green",shape="box"];651[label="compare2 (vwx64,vwx65) (vwx66,vwx67) vwx68",fontsize=16,color="burlywood",shape="triangle"];2777[label="vwx68/False",fontsize=10,color="white",style="solid",shape="box"];651 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 676[label="",style="solid", color="burlywood", weight=3]; 2778[label="vwx68/True",fontsize=10,color="white",style="solid",shape="box"];651 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 677[label="",style="solid", color="burlywood", weight=3]; 186[label="vwx5",fontsize=16,color="green",shape="box"];187[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];2779[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 269[label="",style="solid", color="blue", weight=3]; 2780[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 270[label="",style="solid", color="blue", weight=3]; 2781[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 271[label="",style="solid", color="blue", weight=3]; 2782[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 272[label="",style="solid", color="blue", weight=3]; 2783[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 273[label="",style="solid", color="blue", weight=3]; 2784[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 274[label="",style="solid", color="blue", weight=3]; 2785[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 275[label="",style="solid", color="blue", weight=3]; 2786[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 276[label="",style="solid", color="blue", weight=3]; 2787[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 277[label="",style="solid", color="blue", weight=3]; 2788[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2788[label="",style="solid", color="blue", weight=9]; 2788 -> 278[label="",style="solid", color="blue", weight=3]; 2789[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2789[label="",style="solid", color="blue", weight=9]; 2789 -> 279[label="",style="solid", color="blue", weight=3]; 2790[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2790[label="",style="solid", color="blue", weight=9]; 2790 -> 280[label="",style="solid", color="blue", weight=3]; 2791[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2791[label="",style="solid", color="blue", weight=9]; 2791 -> 281[label="",style="solid", color="blue", weight=3]; 2792[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];187 -> 2792[label="",style="solid", color="blue", weight=9]; 2792 -> 282[label="",style="solid", color="blue", weight=3]; 185[label="primCompAux0 vwx20 vwx21",fontsize=16,color="burlywood",shape="triangle"];2793[label="vwx21/LT",fontsize=10,color="white",style="solid",shape="box"];185 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 283[label="",style="solid", color="burlywood", weight=3]; 2794[label="vwx21/EQ",fontsize=10,color="white",style="solid",shape="box"];185 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 284[label="",style="solid", color="burlywood", weight=3]; 2795[label="vwx21/GT",fontsize=10,color="white",style="solid",shape="box"];185 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 285[label="",style="solid", color="burlywood", weight=3]; 188 -> 17[label="",style="dashed", color="red", weight=0]; 188[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];188 -> 286[label="",style="dashed", color="magenta", weight=3]; 188 -> 287[label="",style="dashed", color="magenta", weight=3]; 189 -> 17[label="",style="dashed", color="red", weight=0]; 189[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];189 -> 288[label="",style="dashed", color="magenta", weight=3]; 189 -> 289[label="",style="dashed", color="magenta", weight=3]; 190 -> 17[label="",style="dashed", color="red", weight=0]; 190[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];190 -> 290[label="",style="dashed", color="magenta", weight=3]; 190 -> 291[label="",style="dashed", color="magenta", weight=3]; 191 -> 17[label="",style="dashed", color="red", weight=0]; 191[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];191 -> 292[label="",style="dashed", color="magenta", weight=3]; 191 -> 293[label="",style="dashed", color="magenta", weight=3]; 192[label="EQ",fontsize=16,color="green",shape="box"];193[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40)",fontsize=16,color="black",shape="box"];193 -> 294[label="",style="solid", color="black", weight=3]; 194[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing)",fontsize=16,color="black",shape="box"];194 -> 295[label="",style="solid", color="black", weight=3]; 196[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2796[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2796[label="",style="solid", color="blue", weight=9]; 2796 -> 296[label="",style="solid", color="blue", weight=3]; 2797[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2797[label="",style="solid", color="blue", weight=9]; 2797 -> 297[label="",style="solid", color="blue", weight=3]; 2798[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2798[label="",style="solid", color="blue", weight=9]; 2798 -> 298[label="",style="solid", color="blue", weight=3]; 2799[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 299[label="",style="solid", color="blue", weight=3]; 2800[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 300[label="",style="solid", color="blue", weight=3]; 2801[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 301[label="",style="solid", color="blue", weight=3]; 2802[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 302[label="",style="solid", color="blue", weight=3]; 2803[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 303[label="",style="solid", color="blue", weight=3]; 2804[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 304[label="",style="solid", color="blue", weight=3]; 2805[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 305[label="",style="solid", color="blue", weight=3]; 2806[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 306[label="",style="solid", color="blue", weight=3]; 2807[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 307[label="",style="solid", color="blue", weight=3]; 2808[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 308[label="",style="solid", color="blue", weight=3]; 2809[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];196 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 309[label="",style="solid", color="blue", weight=3]; 197[label="vwx40",fontsize=16,color="green",shape="box"];198[label="vwx30",fontsize=16,color="green",shape="box"];195[label="compare2 (Just vwx26) (Just vwx27) vwx28",fontsize=16,color="burlywood",shape="triangle"];2810[label="vwx28/False",fontsize=10,color="white",style="solid",shape="box"];195 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 310[label="",style="solid", color="burlywood", weight=3]; 2811[label="vwx28/True",fontsize=10,color="white",style="solid",shape="box"];195 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 311[label="",style="solid", color="burlywood", weight=3]; 199[label="EQ",fontsize=16,color="green",shape="box"];200[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];200 -> 312[label="",style="solid", color="black", weight=3]; 201[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];201 -> 313[label="",style="solid", color="black", weight=3]; 202[label="EQ",fontsize=16,color="green",shape="box"];204[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2812[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 314[label="",style="solid", color="blue", weight=3]; 2813[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2813[label="",style="solid", color="blue", weight=9]; 2813 -> 315[label="",style="solid", color="blue", weight=3]; 2814[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2814[label="",style="solid", color="blue", weight=9]; 2814 -> 316[label="",style="solid", color="blue", weight=3]; 2815[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 317[label="",style="solid", color="blue", weight=3]; 2816[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 318[label="",style="solid", color="blue", weight=3]; 2817[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 319[label="",style="solid", color="blue", weight=3]; 2818[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 320[label="",style="solid", color="blue", weight=3]; 2819[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 321[label="",style="solid", color="blue", weight=3]; 2820[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 322[label="",style="solid", color="blue", weight=3]; 2821[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 323[label="",style="solid", color="blue", weight=3]; 2822[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 324[label="",style="solid", color="blue", weight=3]; 2823[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 325[label="",style="solid", color="blue", weight=3]; 2824[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 326[label="",style="solid", color="blue", weight=3]; 2825[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];204 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 327[label="",style="solid", color="blue", weight=3]; 205[label="vwx40",fontsize=16,color="green",shape="box"];206[label="vwx30",fontsize=16,color="green",shape="box"];203[label="compare2 (Left vwx33) (Left vwx34) vwx35",fontsize=16,color="burlywood",shape="triangle"];2826[label="vwx35/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 328[label="",style="solid", color="burlywood", weight=3]; 2827[label="vwx35/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 329[label="",style="solid", color="burlywood", weight=3]; 207[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];207 -> 330[label="",style="solid", color="black", weight=3]; 208[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];208 -> 331[label="",style="solid", color="black", weight=3]; 210[label="vwx30",fontsize=16,color="green",shape="box"];211[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2828[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 332[label="",style="solid", color="blue", weight=3]; 2829[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2829[label="",style="solid", color="blue", weight=9]; 2829 -> 333[label="",style="solid", color="blue", weight=3]; 2830[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2830[label="",style="solid", color="blue", weight=9]; 2830 -> 334[label="",style="solid", color="blue", weight=3]; 2831[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2831[label="",style="solid", color="blue", weight=9]; 2831 -> 335[label="",style="solid", color="blue", weight=3]; 2832[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2832[label="",style="solid", color="blue", weight=9]; 2832 -> 336[label="",style="solid", color="blue", weight=3]; 2833[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2833[label="",style="solid", color="blue", weight=9]; 2833 -> 337[label="",style="solid", color="blue", weight=3]; 2834[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2834[label="",style="solid", color="blue", weight=9]; 2834 -> 338[label="",style="solid", color="blue", weight=3]; 2835[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 339[label="",style="solid", color="blue", weight=3]; 2836[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 340[label="",style="solid", color="blue", weight=3]; 2837[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 341[label="",style="solid", color="blue", weight=3]; 2838[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 342[label="",style="solid", color="blue", weight=3]; 2839[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 343[label="",style="solid", color="blue", weight=3]; 2840[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 344[label="",style="solid", color="blue", weight=3]; 2841[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];211 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 345[label="",style="solid", color="blue", weight=3]; 212[label="vwx40",fontsize=16,color="green",shape="box"];209[label="compare2 (Right vwx40) (Right vwx41) vwx42",fontsize=16,color="burlywood",shape="triangle"];2842[label="vwx42/False",fontsize=10,color="white",style="solid",shape="box"];209 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 346[label="",style="solid", color="burlywood", weight=3]; 2843[label="vwx42/True",fontsize=10,color="white",style="solid",shape="box"];209 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 347[label="",style="solid", color="burlywood", weight=3]; 702[label="vwx31",fontsize=16,color="green",shape="box"];703[label="vwx40",fontsize=16,color="green",shape="box"];704 -> 733[label="",style="dashed", color="red", weight=0]; 704[label="vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];704 -> 736[label="",style="dashed", color="magenta", weight=3]; 704 -> 737[label="",style="dashed", color="magenta", weight=3]; 705[label="vwx42",fontsize=16,color="green",shape="box"];706[label="vwx41",fontsize=16,color="green",shape="box"];707[label="vwx32",fontsize=16,color="green",shape="box"];708[label="vwx30",fontsize=16,color="green",shape="box"];701[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) vwx76",fontsize=16,color="burlywood",shape="triangle"];2844[label="vwx76/False",fontsize=10,color="white",style="solid",shape="box"];701 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 717[label="",style="solid", color="burlywood", weight=3]; 2845[label="vwx76/True",fontsize=10,color="white",style="solid",shape="box"];701 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 718[label="",style="solid", color="burlywood", weight=3]; 221[label="primCmpNat (Succ vwx300) (Succ vwx400)",fontsize=16,color="black",shape="box"];221 -> 364[label="",style="solid", color="black", weight=3]; 222[label="primCmpNat (Succ vwx300) Zero",fontsize=16,color="black",shape="box"];222 -> 365[label="",style="solid", color="black", weight=3]; 223[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="black",shape="box"];223 -> 366[label="",style="solid", color="black", weight=3]; 224[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];224 -> 367[label="",style="solid", color="black", weight=3]; 225[label="EQ",fontsize=16,color="green",shape="box"];226[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];226 -> 368[label="",style="solid", color="black", weight=3]; 227[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];227 -> 369[label="",style="solid", color="black", weight=3]; 228[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];228 -> 370[label="",style="solid", color="black", weight=3]; 229[label="EQ",fontsize=16,color="green",shape="box"];230[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];230 -> 371[label="",style="solid", color="black", weight=3]; 231[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];231 -> 372[label="",style="solid", color="black", weight=3]; 232[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];232 -> 373[label="",style="solid", color="black", weight=3]; 233[label="EQ",fontsize=16,color="green",shape="box"];234[label="Succ vwx300",fontsize=16,color="green",shape="box"];235[label="vwx40",fontsize=16,color="green",shape="box"];236 -> 101[label="",style="dashed", color="red", weight=0]; 236[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="magenta"];236 -> 374[label="",style="dashed", color="magenta", weight=3]; 236 -> 375[label="",style="dashed", color="magenta", weight=3]; 237[label="EQ",fontsize=16,color="green",shape="box"];238[label="GT",fontsize=16,color="green",shape="box"];239[label="EQ",fontsize=16,color="green",shape="box"];240[label="vwx40",fontsize=16,color="green",shape="box"];241[label="Succ vwx300",fontsize=16,color="green",shape="box"];242[label="LT",fontsize=16,color="green",shape="box"];243[label="EQ",fontsize=16,color="green",shape="box"];244 -> 101[label="",style="dashed", color="red", weight=0]; 244[label="primCmpNat (Succ vwx400) Zero",fontsize=16,color="magenta"];244 -> 376[label="",style="dashed", color="magenta", weight=3]; 244 -> 377[label="",style="dashed", color="magenta", weight=3]; 245[label="EQ",fontsize=16,color="green",shape="box"];246 -> 17[label="",style="dashed", color="red", weight=0]; 246[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];246 -> 378[label="",style="dashed", color="magenta", weight=3]; 246 -> 379[label="",style="dashed", color="magenta", weight=3]; 247 -> 17[label="",style="dashed", color="red", weight=0]; 247[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];247 -> 380[label="",style="dashed", color="magenta", weight=3]; 247 -> 381[label="",style="dashed", color="magenta", weight=3]; 248 -> 17[label="",style="dashed", color="red", weight=0]; 248[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];248 -> 382[label="",style="dashed", color="magenta", weight=3]; 248 -> 383[label="",style="dashed", color="magenta", weight=3]; 249 -> 17[label="",style="dashed", color="red", weight=0]; 249[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];249 -> 384[label="",style="dashed", color="magenta", weight=3]; 249 -> 385[label="",style="dashed", color="magenta", weight=3]; 250[label="Integer vwx300 * Integer vwx410",fontsize=16,color="black",shape="box"];250 -> 386[label="",style="solid", color="black", weight=3]; 251[label="primMulInt (Pos vwx300) vwx41",fontsize=16,color="burlywood",shape="box"];2846[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];251 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 387[label="",style="solid", color="burlywood", weight=3]; 2847[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];251 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 388[label="",style="solid", color="burlywood", weight=3]; 252[label="primMulInt (Neg vwx300) vwx41",fontsize=16,color="burlywood",shape="box"];2848[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];252 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 389[label="",style="solid", color="burlywood", weight=3]; 2849[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];252 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 390[label="",style="solid", color="burlywood", weight=3]; 734[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2850[label="",style="solid", color="blue", weight=9]; 2850 -> 742[label="",style="solid", color="blue", weight=3]; 2851[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 743[label="",style="solid", color="blue", weight=3]; 2852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 744[label="",style="solid", color="blue", weight=3]; 2853[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 745[label="",style="solid", color="blue", weight=3]; 2854[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 746[label="",style="solid", color="blue", weight=3]; 2855[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 747[label="",style="solid", color="blue", weight=3]; 2856[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 748[label="",style="solid", color="blue", weight=3]; 2857[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 749[label="",style="solid", color="blue", weight=3]; 2858[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 750[label="",style="solid", color="blue", weight=3]; 2859[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 751[label="",style="solid", color="blue", weight=3]; 2860[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 752[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 753[label="",style="solid", color="blue", weight=3]; 2862[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 754[label="",style="solid", color="blue", weight=3]; 2863[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];734 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 755[label="",style="solid", color="blue", weight=3]; 735[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];2864[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 756[label="",style="solid", color="blue", weight=3]; 2865[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 757[label="",style="solid", color="blue", weight=3]; 2866[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 758[label="",style="solid", color="blue", weight=3]; 2867[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 759[label="",style="solid", color="blue", weight=3]; 2868[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 760[label="",style="solid", color="blue", weight=3]; 2869[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 761[label="",style="solid", color="blue", weight=3]; 2870[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 762[label="",style="solid", color="blue", weight=3]; 2871[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 763[label="",style="solid", color="blue", weight=3]; 2872[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 764[label="",style="solid", color="blue", weight=3]; 2873[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 765[label="",style="solid", color="blue", weight=3]; 2874[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 766[label="",style="solid", color="blue", weight=3]; 2875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 767[label="",style="solid", color="blue", weight=3]; 2876[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 768[label="",style="solid", color="blue", weight=3]; 2877[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];735 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 769[label="",style="solid", color="blue", weight=3]; 733[label="vwx81 && vwx82",fontsize=16,color="burlywood",shape="triangle"];2878[label="vwx81/False",fontsize=10,color="white",style="solid",shape="box"];733 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 770[label="",style="solid", color="burlywood", weight=3]; 2879[label="vwx81/True",fontsize=10,color="white",style="solid",shape="box"];733 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 771[label="",style="solid", color="burlywood", weight=3]; 676[label="compare2 (vwx64,vwx65) (vwx66,vwx67) False",fontsize=16,color="black",shape="box"];676 -> 772[label="",style="solid", color="black", weight=3]; 677[label="compare2 (vwx64,vwx65) (vwx66,vwx67) True",fontsize=16,color="black",shape="box"];677 -> 773[label="",style="solid", color="black", weight=3]; 269 -> 5[label="",style="dashed", color="red", weight=0]; 269[label="compare vwx30 vwx40",fontsize=16,color="magenta"];269 -> 413[label="",style="dashed", color="magenta", weight=3]; 269 -> 414[label="",style="dashed", color="magenta", weight=3]; 270 -> 6[label="",style="dashed", color="red", weight=0]; 270[label="compare vwx30 vwx40",fontsize=16,color="magenta"];270 -> 415[label="",style="dashed", color="magenta", weight=3]; 270 -> 416[label="",style="dashed", color="magenta", weight=3]; 271 -> 7[label="",style="dashed", color="red", weight=0]; 271[label="compare vwx30 vwx40",fontsize=16,color="magenta"];271 -> 417[label="",style="dashed", color="magenta", weight=3]; 271 -> 418[label="",style="dashed", color="magenta", weight=3]; 272 -> 8[label="",style="dashed", color="red", weight=0]; 272[label="compare vwx30 vwx40",fontsize=16,color="magenta"];272 -> 419[label="",style="dashed", color="magenta", weight=3]; 272 -> 420[label="",style="dashed", color="magenta", weight=3]; 273 -> 9[label="",style="dashed", color="red", weight=0]; 273[label="compare vwx30 vwx40",fontsize=16,color="magenta"];273 -> 421[label="",style="dashed", color="magenta", weight=3]; 273 -> 422[label="",style="dashed", color="magenta", weight=3]; 274 -> 10[label="",style="dashed", color="red", weight=0]; 274[label="compare vwx30 vwx40",fontsize=16,color="magenta"];274 -> 423[label="",style="dashed", color="magenta", weight=3]; 274 -> 424[label="",style="dashed", color="magenta", weight=3]; 275 -> 11[label="",style="dashed", color="red", weight=0]; 275[label="compare vwx30 vwx40",fontsize=16,color="magenta"];275 -> 425[label="",style="dashed", color="magenta", weight=3]; 275 -> 426[label="",style="dashed", color="magenta", weight=3]; 276 -> 12[label="",style="dashed", color="red", weight=0]; 276[label="compare vwx30 vwx40",fontsize=16,color="magenta"];276 -> 427[label="",style="dashed", color="magenta", weight=3]; 276 -> 428[label="",style="dashed", color="magenta", weight=3]; 277 -> 13[label="",style="dashed", color="red", weight=0]; 277[label="compare vwx30 vwx40",fontsize=16,color="magenta"];277 -> 429[label="",style="dashed", color="magenta", weight=3]; 277 -> 430[label="",style="dashed", color="magenta", weight=3]; 278 -> 14[label="",style="dashed", color="red", weight=0]; 278[label="compare vwx30 vwx40",fontsize=16,color="magenta"];278 -> 431[label="",style="dashed", color="magenta", weight=3]; 278 -> 432[label="",style="dashed", color="magenta", weight=3]; 279 -> 15[label="",style="dashed", color="red", weight=0]; 279[label="compare vwx30 vwx40",fontsize=16,color="magenta"];279 -> 433[label="",style="dashed", color="magenta", weight=3]; 279 -> 434[label="",style="dashed", color="magenta", weight=3]; 280 -> 16[label="",style="dashed", color="red", weight=0]; 280[label="compare vwx30 vwx40",fontsize=16,color="magenta"];280 -> 435[label="",style="dashed", color="magenta", weight=3]; 280 -> 436[label="",style="dashed", color="magenta", weight=3]; 281 -> 17[label="",style="dashed", color="red", weight=0]; 281[label="compare vwx30 vwx40",fontsize=16,color="magenta"];281 -> 437[label="",style="dashed", color="magenta", weight=3]; 281 -> 438[label="",style="dashed", color="magenta", weight=3]; 282 -> 18[label="",style="dashed", color="red", weight=0]; 282[label="compare vwx30 vwx40",fontsize=16,color="magenta"];282 -> 439[label="",style="dashed", color="magenta", weight=3]; 282 -> 440[label="",style="dashed", color="magenta", weight=3]; 283[label="primCompAux0 vwx20 LT",fontsize=16,color="black",shape="box"];283 -> 441[label="",style="solid", color="black", weight=3]; 284[label="primCompAux0 vwx20 EQ",fontsize=16,color="black",shape="box"];284 -> 442[label="",style="solid", color="black", weight=3]; 285[label="primCompAux0 vwx20 GT",fontsize=16,color="black",shape="box"];285 -> 443[label="",style="solid", color="black", weight=3]; 286 -> 123[label="",style="dashed", color="red", weight=0]; 286[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];286 -> 444[label="",style="dashed", color="magenta", weight=3]; 286 -> 445[label="",style="dashed", color="magenta", weight=3]; 287 -> 123[label="",style="dashed", color="red", weight=0]; 287[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];287 -> 446[label="",style="dashed", color="magenta", weight=3]; 287 -> 447[label="",style="dashed", color="magenta", weight=3]; 288 -> 123[label="",style="dashed", color="red", weight=0]; 288[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];288 -> 448[label="",style="dashed", color="magenta", weight=3]; 288 -> 449[label="",style="dashed", color="magenta", weight=3]; 289 -> 123[label="",style="dashed", color="red", weight=0]; 289[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];289 -> 450[label="",style="dashed", color="magenta", weight=3]; 289 -> 451[label="",style="dashed", color="magenta", weight=3]; 290 -> 123[label="",style="dashed", color="red", weight=0]; 290[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];290 -> 452[label="",style="dashed", color="magenta", weight=3]; 290 -> 453[label="",style="dashed", color="magenta", weight=3]; 291 -> 123[label="",style="dashed", color="red", weight=0]; 291[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];291 -> 454[label="",style="dashed", color="magenta", weight=3]; 291 -> 455[label="",style="dashed", color="magenta", weight=3]; 292 -> 123[label="",style="dashed", color="red", weight=0]; 292[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];292 -> 456[label="",style="dashed", color="magenta", weight=3]; 292 -> 457[label="",style="dashed", color="magenta", weight=3]; 293 -> 123[label="",style="dashed", color="red", weight=0]; 293[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];293 -> 458[label="",style="dashed", color="magenta", weight=3]; 293 -> 459[label="",style="dashed", color="magenta", weight=3]; 294[label="compare1 Nothing (Just vwx40) True",fontsize=16,color="black",shape="box"];294 -> 460[label="",style="solid", color="black", weight=3]; 295[label="compare1 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];295 -> 461[label="",style="solid", color="black", weight=3]; 296 -> 253[label="",style="dashed", color="red", weight=0]; 296[label="vwx30 == vwx40",fontsize=16,color="magenta"];296 -> 462[label="",style="dashed", color="magenta", weight=3]; 296 -> 463[label="",style="dashed", color="magenta", weight=3]; 297 -> 254[label="",style="dashed", color="red", weight=0]; 297[label="vwx30 == vwx40",fontsize=16,color="magenta"];297 -> 464[label="",style="dashed", color="magenta", weight=3]; 297 -> 465[label="",style="dashed", color="magenta", weight=3]; 298 -> 255[label="",style="dashed", color="red", weight=0]; 298[label="vwx30 == vwx40",fontsize=16,color="magenta"];298 -> 466[label="",style="dashed", color="magenta", weight=3]; 298 -> 467[label="",style="dashed", color="magenta", weight=3]; 299 -> 256[label="",style="dashed", color="red", weight=0]; 299[label="vwx30 == vwx40",fontsize=16,color="magenta"];299 -> 468[label="",style="dashed", color="magenta", weight=3]; 299 -> 469[label="",style="dashed", color="magenta", weight=3]; 300 -> 257[label="",style="dashed", color="red", weight=0]; 300[label="vwx30 == vwx40",fontsize=16,color="magenta"];300 -> 470[label="",style="dashed", color="magenta", weight=3]; 300 -> 471[label="",style="dashed", color="magenta", weight=3]; 301 -> 258[label="",style="dashed", color="red", weight=0]; 301[label="vwx30 == vwx40",fontsize=16,color="magenta"];301 -> 472[label="",style="dashed", color="magenta", weight=3]; 301 -> 473[label="",style="dashed", color="magenta", weight=3]; 302 -> 259[label="",style="dashed", color="red", weight=0]; 302[label="vwx30 == vwx40",fontsize=16,color="magenta"];302 -> 474[label="",style="dashed", color="magenta", weight=3]; 302 -> 475[label="",style="dashed", color="magenta", weight=3]; 303 -> 260[label="",style="dashed", color="red", weight=0]; 303[label="vwx30 == vwx40",fontsize=16,color="magenta"];303 -> 476[label="",style="dashed", color="magenta", weight=3]; 303 -> 477[label="",style="dashed", color="magenta", weight=3]; 304 -> 261[label="",style="dashed", color="red", weight=0]; 304[label="vwx30 == vwx40",fontsize=16,color="magenta"];304 -> 478[label="",style="dashed", color="magenta", weight=3]; 304 -> 479[label="",style="dashed", color="magenta", weight=3]; 305 -> 262[label="",style="dashed", color="red", weight=0]; 305[label="vwx30 == vwx40",fontsize=16,color="magenta"];305 -> 480[label="",style="dashed", color="magenta", weight=3]; 305 -> 481[label="",style="dashed", color="magenta", weight=3]; 306 -> 263[label="",style="dashed", color="red", weight=0]; 306[label="vwx30 == vwx40",fontsize=16,color="magenta"];306 -> 482[label="",style="dashed", color="magenta", weight=3]; 306 -> 483[label="",style="dashed", color="magenta", weight=3]; 307 -> 264[label="",style="dashed", color="red", weight=0]; 307[label="vwx30 == vwx40",fontsize=16,color="magenta"];307 -> 484[label="",style="dashed", color="magenta", weight=3]; 307 -> 485[label="",style="dashed", color="magenta", weight=3]; 308 -> 265[label="",style="dashed", color="red", weight=0]; 308[label="vwx30 == vwx40",fontsize=16,color="magenta"];308 -> 486[label="",style="dashed", color="magenta", weight=3]; 308 -> 487[label="",style="dashed", color="magenta", weight=3]; 309 -> 266[label="",style="dashed", color="red", weight=0]; 309[label="vwx30 == vwx40",fontsize=16,color="magenta"];309 -> 488[label="",style="dashed", color="magenta", weight=3]; 309 -> 489[label="",style="dashed", color="magenta", weight=3]; 310[label="compare2 (Just vwx26) (Just vwx27) False",fontsize=16,color="black",shape="box"];310 -> 490[label="",style="solid", color="black", weight=3]; 311[label="compare2 (Just vwx26) (Just vwx27) True",fontsize=16,color="black",shape="box"];311 -> 491[label="",style="solid", color="black", weight=3]; 312[label="compare1 False True True",fontsize=16,color="black",shape="box"];312 -> 492[label="",style="solid", color="black", weight=3]; 313[label="compare1 True False False",fontsize=16,color="black",shape="box"];313 -> 493[label="",style="solid", color="black", weight=3]; 314 -> 253[label="",style="dashed", color="red", weight=0]; 314[label="vwx30 == vwx40",fontsize=16,color="magenta"];314 -> 494[label="",style="dashed", color="magenta", weight=3]; 314 -> 495[label="",style="dashed", color="magenta", weight=3]; 315 -> 254[label="",style="dashed", color="red", weight=0]; 315[label="vwx30 == vwx40",fontsize=16,color="magenta"];315 -> 496[label="",style="dashed", color="magenta", weight=3]; 315 -> 497[label="",style="dashed", color="magenta", weight=3]; 316 -> 255[label="",style="dashed", color="red", weight=0]; 316[label="vwx30 == vwx40",fontsize=16,color="magenta"];316 -> 498[label="",style="dashed", color="magenta", weight=3]; 316 -> 499[label="",style="dashed", color="magenta", weight=3]; 317 -> 256[label="",style="dashed", color="red", weight=0]; 317[label="vwx30 == vwx40",fontsize=16,color="magenta"];317 -> 500[label="",style="dashed", color="magenta", weight=3]; 317 -> 501[label="",style="dashed", color="magenta", weight=3]; 318 -> 257[label="",style="dashed", color="red", weight=0]; 318[label="vwx30 == vwx40",fontsize=16,color="magenta"];318 -> 502[label="",style="dashed", color="magenta", weight=3]; 318 -> 503[label="",style="dashed", color="magenta", weight=3]; 319 -> 258[label="",style="dashed", color="red", weight=0]; 319[label="vwx30 == vwx40",fontsize=16,color="magenta"];319 -> 504[label="",style="dashed", color="magenta", weight=3]; 319 -> 505[label="",style="dashed", color="magenta", weight=3]; 320 -> 259[label="",style="dashed", color="red", weight=0]; 320[label="vwx30 == vwx40",fontsize=16,color="magenta"];320 -> 506[label="",style="dashed", color="magenta", weight=3]; 320 -> 507[label="",style="dashed", color="magenta", weight=3]; 321 -> 260[label="",style="dashed", color="red", weight=0]; 321[label="vwx30 == vwx40",fontsize=16,color="magenta"];321 -> 508[label="",style="dashed", color="magenta", weight=3]; 321 -> 509[label="",style="dashed", color="magenta", weight=3]; 322 -> 261[label="",style="dashed", color="red", weight=0]; 322[label="vwx30 == vwx40",fontsize=16,color="magenta"];322 -> 510[label="",style="dashed", color="magenta", weight=3]; 322 -> 511[label="",style="dashed", color="magenta", weight=3]; 323 -> 262[label="",style="dashed", color="red", weight=0]; 323[label="vwx30 == vwx40",fontsize=16,color="magenta"];323 -> 512[label="",style="dashed", color="magenta", weight=3]; 323 -> 513[label="",style="dashed", color="magenta", weight=3]; 324 -> 263[label="",style="dashed", color="red", weight=0]; 324[label="vwx30 == vwx40",fontsize=16,color="magenta"];324 -> 514[label="",style="dashed", color="magenta", weight=3]; 324 -> 515[label="",style="dashed", color="magenta", weight=3]; 325 -> 264[label="",style="dashed", color="red", weight=0]; 325[label="vwx30 == vwx40",fontsize=16,color="magenta"];325 -> 516[label="",style="dashed", color="magenta", weight=3]; 325 -> 517[label="",style="dashed", color="magenta", weight=3]; 326 -> 265[label="",style="dashed", color="red", weight=0]; 326[label="vwx30 == vwx40",fontsize=16,color="magenta"];326 -> 518[label="",style="dashed", color="magenta", weight=3]; 326 -> 519[label="",style="dashed", color="magenta", weight=3]; 327 -> 266[label="",style="dashed", color="red", weight=0]; 327[label="vwx30 == vwx40",fontsize=16,color="magenta"];327 -> 520[label="",style="dashed", color="magenta", weight=3]; 327 -> 521[label="",style="dashed", color="magenta", weight=3]; 328[label="compare2 (Left vwx33) (Left vwx34) False",fontsize=16,color="black",shape="box"];328 -> 522[label="",style="solid", color="black", weight=3]; 329[label="compare2 (Left vwx33) (Left vwx34) True",fontsize=16,color="black",shape="box"];329 -> 523[label="",style="solid", color="black", weight=3]; 330[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];330 -> 524[label="",style="solid", color="black", weight=3]; 331[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];331 -> 525[label="",style="solid", color="black", weight=3]; 332 -> 253[label="",style="dashed", color="red", weight=0]; 332[label="vwx30 == vwx40",fontsize=16,color="magenta"];332 -> 526[label="",style="dashed", color="magenta", weight=3]; 332 -> 527[label="",style="dashed", color="magenta", weight=3]; 333 -> 254[label="",style="dashed", color="red", weight=0]; 333[label="vwx30 == vwx40",fontsize=16,color="magenta"];333 -> 528[label="",style="dashed", color="magenta", weight=3]; 333 -> 529[label="",style="dashed", color="magenta", weight=3]; 334 -> 255[label="",style="dashed", color="red", weight=0]; 334[label="vwx30 == vwx40",fontsize=16,color="magenta"];334 -> 530[label="",style="dashed", color="magenta", weight=3]; 334 -> 531[label="",style="dashed", color="magenta", weight=3]; 335 -> 256[label="",style="dashed", color="red", weight=0]; 335[label="vwx30 == vwx40",fontsize=16,color="magenta"];335 -> 532[label="",style="dashed", color="magenta", weight=3]; 335 -> 533[label="",style="dashed", color="magenta", weight=3]; 336 -> 257[label="",style="dashed", color="red", weight=0]; 336[label="vwx30 == vwx40",fontsize=16,color="magenta"];336 -> 534[label="",style="dashed", color="magenta", weight=3]; 336 -> 535[label="",style="dashed", color="magenta", weight=3]; 337 -> 258[label="",style="dashed", color="red", weight=0]; 337[label="vwx30 == vwx40",fontsize=16,color="magenta"];337 -> 536[label="",style="dashed", color="magenta", weight=3]; 337 -> 537[label="",style="dashed", color="magenta", weight=3]; 338 -> 259[label="",style="dashed", color="red", weight=0]; 338[label="vwx30 == vwx40",fontsize=16,color="magenta"];338 -> 538[label="",style="dashed", color="magenta", weight=3]; 338 -> 539[label="",style="dashed", color="magenta", weight=3]; 339 -> 260[label="",style="dashed", color="red", weight=0]; 339[label="vwx30 == vwx40",fontsize=16,color="magenta"];339 -> 540[label="",style="dashed", color="magenta", weight=3]; 339 -> 541[label="",style="dashed", color="magenta", weight=3]; 340 -> 261[label="",style="dashed", color="red", weight=0]; 340[label="vwx30 == vwx40",fontsize=16,color="magenta"];340 -> 542[label="",style="dashed", color="magenta", weight=3]; 340 -> 543[label="",style="dashed", color="magenta", weight=3]; 341 -> 262[label="",style="dashed", color="red", weight=0]; 341[label="vwx30 == vwx40",fontsize=16,color="magenta"];341 -> 544[label="",style="dashed", color="magenta", weight=3]; 341 -> 545[label="",style="dashed", color="magenta", weight=3]; 342 -> 263[label="",style="dashed", color="red", weight=0]; 342[label="vwx30 == vwx40",fontsize=16,color="magenta"];342 -> 546[label="",style="dashed", color="magenta", weight=3]; 342 -> 547[label="",style="dashed", color="magenta", weight=3]; 343 -> 264[label="",style="dashed", color="red", weight=0]; 343[label="vwx30 == vwx40",fontsize=16,color="magenta"];343 -> 548[label="",style="dashed", color="magenta", weight=3]; 343 -> 549[label="",style="dashed", color="magenta", weight=3]; 344 -> 265[label="",style="dashed", color="red", weight=0]; 344[label="vwx30 == vwx40",fontsize=16,color="magenta"];344 -> 550[label="",style="dashed", color="magenta", weight=3]; 344 -> 551[label="",style="dashed", color="magenta", weight=3]; 345 -> 266[label="",style="dashed", color="red", weight=0]; 345[label="vwx30 == vwx40",fontsize=16,color="magenta"];345 -> 552[label="",style="dashed", color="magenta", weight=3]; 345 -> 553[label="",style="dashed", color="magenta", weight=3]; 346[label="compare2 (Right vwx40) (Right vwx41) False",fontsize=16,color="black",shape="box"];346 -> 554[label="",style="solid", color="black", weight=3]; 347[label="compare2 (Right vwx40) (Right vwx41) True",fontsize=16,color="black",shape="box"];347 -> 555[label="",style="solid", color="black", weight=3]; 736[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2880[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 774[label="",style="solid", color="blue", weight=3]; 2881[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 775[label="",style="solid", color="blue", weight=3]; 2882[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 776[label="",style="solid", color="blue", weight=3]; 2883[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 777[label="",style="solid", color="blue", weight=3]; 2884[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 778[label="",style="solid", color="blue", weight=3]; 2885[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 779[label="",style="solid", color="blue", weight=3]; 2886[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 780[label="",style="solid", color="blue", weight=3]; 2887[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 781[label="",style="solid", color="blue", weight=3]; 2888[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 782[label="",style="solid", color="blue", weight=3]; 2889[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 783[label="",style="solid", color="blue", weight=3]; 2890[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 784[label="",style="solid", color="blue", weight=3]; 2891[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 785[label="",style="solid", color="blue", weight=3]; 2892[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 786[label="",style="solid", color="blue", weight=3]; 2893[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];736 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 787[label="",style="solid", color="blue", weight=3]; 737 -> 733[label="",style="dashed", color="red", weight=0]; 737[label="vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];737 -> 788[label="",style="dashed", color="magenta", weight=3]; 737 -> 789[label="",style="dashed", color="magenta", weight=3]; 717[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) False",fontsize=16,color="black",shape="box"];717 -> 790[label="",style="solid", color="black", weight=3]; 718[label="compare2 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) True",fontsize=16,color="black",shape="box"];718 -> 791[label="",style="solid", color="black", weight=3]; 364 -> 101[label="",style="dashed", color="red", weight=0]; 364[label="primCmpNat vwx300 vwx400",fontsize=16,color="magenta"];364 -> 586[label="",style="dashed", color="magenta", weight=3]; 364 -> 587[label="",style="dashed", color="magenta", weight=3]; 365[label="GT",fontsize=16,color="green",shape="box"];366[label="LT",fontsize=16,color="green",shape="box"];367[label="EQ",fontsize=16,color="green",shape="box"];368[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];368 -> 588[label="",style="solid", color="black", weight=3]; 369[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];369 -> 589[label="",style="solid", color="black", weight=3]; 370[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];370 -> 590[label="",style="solid", color="black", weight=3]; 371[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];371 -> 591[label="",style="solid", color="black", weight=3]; 372[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];372 -> 592[label="",style="solid", color="black", weight=3]; 373[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];373 -> 593[label="",style="solid", color="black", weight=3]; 374[label="Zero",fontsize=16,color="green",shape="box"];375[label="Succ vwx400",fontsize=16,color="green",shape="box"];376[label="Succ vwx400",fontsize=16,color="green",shape="box"];377[label="Zero",fontsize=16,color="green",shape="box"];378 -> 123[label="",style="dashed", color="red", weight=0]; 378[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];378 -> 594[label="",style="dashed", color="magenta", weight=3]; 378 -> 595[label="",style="dashed", color="magenta", weight=3]; 379 -> 123[label="",style="dashed", color="red", weight=0]; 379[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];379 -> 596[label="",style="dashed", color="magenta", weight=3]; 379 -> 597[label="",style="dashed", color="magenta", weight=3]; 380 -> 123[label="",style="dashed", color="red", weight=0]; 380[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];380 -> 598[label="",style="dashed", color="magenta", weight=3]; 380 -> 599[label="",style="dashed", color="magenta", weight=3]; 381 -> 123[label="",style="dashed", color="red", weight=0]; 381[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];381 -> 600[label="",style="dashed", color="magenta", weight=3]; 381 -> 601[label="",style="dashed", color="magenta", weight=3]; 382 -> 123[label="",style="dashed", color="red", weight=0]; 382[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];382 -> 602[label="",style="dashed", color="magenta", weight=3]; 382 -> 603[label="",style="dashed", color="magenta", weight=3]; 383 -> 123[label="",style="dashed", color="red", weight=0]; 383[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];383 -> 604[label="",style="dashed", color="magenta", weight=3]; 383 -> 605[label="",style="dashed", color="magenta", weight=3]; 384 -> 123[label="",style="dashed", color="red", weight=0]; 384[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];384 -> 606[label="",style="dashed", color="magenta", weight=3]; 384 -> 607[label="",style="dashed", color="magenta", weight=3]; 385 -> 123[label="",style="dashed", color="red", weight=0]; 385[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];385 -> 608[label="",style="dashed", color="magenta", weight=3]; 385 -> 609[label="",style="dashed", color="magenta", weight=3]; 386[label="Integer (primMulInt vwx300 vwx410)",fontsize=16,color="green",shape="box"];386 -> 610[label="",style="dashed", color="green", weight=3]; 387[label="primMulInt (Pos vwx300) (Pos vwx410)",fontsize=16,color="black",shape="box"];387 -> 611[label="",style="solid", color="black", weight=3]; 388[label="primMulInt (Pos vwx300) (Neg vwx410)",fontsize=16,color="black",shape="box"];388 -> 612[label="",style="solid", color="black", weight=3]; 389[label="primMulInt (Neg vwx300) (Pos vwx410)",fontsize=16,color="black",shape="box"];389 -> 613[label="",style="solid", color="black", weight=3]; 390[label="primMulInt (Neg vwx300) (Neg vwx410)",fontsize=16,color="black",shape="box"];390 -> 614[label="",style="solid", color="black", weight=3]; 742 -> 253[label="",style="dashed", color="red", weight=0]; 742[label="vwx30 == vwx40",fontsize=16,color="magenta"];743 -> 254[label="",style="dashed", color="red", weight=0]; 743[label="vwx30 == vwx40",fontsize=16,color="magenta"];744 -> 255[label="",style="dashed", color="red", weight=0]; 744[label="vwx30 == vwx40",fontsize=16,color="magenta"];745 -> 256[label="",style="dashed", color="red", weight=0]; 745[label="vwx30 == vwx40",fontsize=16,color="magenta"];746 -> 257[label="",style="dashed", color="red", weight=0]; 746[label="vwx30 == vwx40",fontsize=16,color="magenta"];747 -> 258[label="",style="dashed", color="red", weight=0]; 747[label="vwx30 == vwx40",fontsize=16,color="magenta"];748 -> 259[label="",style="dashed", color="red", weight=0]; 748[label="vwx30 == vwx40",fontsize=16,color="magenta"];749 -> 260[label="",style="dashed", color="red", weight=0]; 749[label="vwx30 == vwx40",fontsize=16,color="magenta"];750 -> 261[label="",style="dashed", color="red", weight=0]; 750[label="vwx30 == vwx40",fontsize=16,color="magenta"];751 -> 262[label="",style="dashed", color="red", weight=0]; 751[label="vwx30 == vwx40",fontsize=16,color="magenta"];752 -> 263[label="",style="dashed", color="red", weight=0]; 752[label="vwx30 == vwx40",fontsize=16,color="magenta"];753 -> 264[label="",style="dashed", color="red", weight=0]; 753[label="vwx30 == vwx40",fontsize=16,color="magenta"];754 -> 265[label="",style="dashed", color="red", weight=0]; 754[label="vwx30 == vwx40",fontsize=16,color="magenta"];755 -> 266[label="",style="dashed", color="red", weight=0]; 755[label="vwx30 == vwx40",fontsize=16,color="magenta"];756 -> 253[label="",style="dashed", color="red", weight=0]; 756[label="vwx31 == vwx41",fontsize=16,color="magenta"];756 -> 809[label="",style="dashed", color="magenta", weight=3]; 756 -> 810[label="",style="dashed", color="magenta", weight=3]; 757 -> 254[label="",style="dashed", color="red", weight=0]; 757[label="vwx31 == vwx41",fontsize=16,color="magenta"];757 -> 811[label="",style="dashed", color="magenta", weight=3]; 757 -> 812[label="",style="dashed", color="magenta", weight=3]; 758 -> 255[label="",style="dashed", color="red", weight=0]; 758[label="vwx31 == vwx41",fontsize=16,color="magenta"];758 -> 813[label="",style="dashed", color="magenta", weight=3]; 758 -> 814[label="",style="dashed", color="magenta", weight=3]; 759 -> 256[label="",style="dashed", color="red", weight=0]; 759[label="vwx31 == vwx41",fontsize=16,color="magenta"];759 -> 815[label="",style="dashed", color="magenta", weight=3]; 759 -> 816[label="",style="dashed", color="magenta", weight=3]; 760 -> 257[label="",style="dashed", color="red", weight=0]; 760[label="vwx31 == vwx41",fontsize=16,color="magenta"];760 -> 817[label="",style="dashed", color="magenta", weight=3]; 760 -> 818[label="",style="dashed", color="magenta", weight=3]; 761 -> 258[label="",style="dashed", color="red", weight=0]; 761[label="vwx31 == vwx41",fontsize=16,color="magenta"];761 -> 819[label="",style="dashed", color="magenta", weight=3]; 761 -> 820[label="",style="dashed", color="magenta", weight=3]; 762 -> 259[label="",style="dashed", color="red", weight=0]; 762[label="vwx31 == vwx41",fontsize=16,color="magenta"];762 -> 821[label="",style="dashed", color="magenta", weight=3]; 762 -> 822[label="",style="dashed", color="magenta", weight=3]; 763 -> 260[label="",style="dashed", color="red", weight=0]; 763[label="vwx31 == vwx41",fontsize=16,color="magenta"];763 -> 823[label="",style="dashed", color="magenta", weight=3]; 763 -> 824[label="",style="dashed", color="magenta", weight=3]; 764 -> 261[label="",style="dashed", color="red", weight=0]; 764[label="vwx31 == vwx41",fontsize=16,color="magenta"];764 -> 825[label="",style="dashed", color="magenta", weight=3]; 764 -> 826[label="",style="dashed", color="magenta", weight=3]; 765 -> 262[label="",style="dashed", color="red", weight=0]; 765[label="vwx31 == vwx41",fontsize=16,color="magenta"];765 -> 827[label="",style="dashed", color="magenta", weight=3]; 765 -> 828[label="",style="dashed", color="magenta", weight=3]; 766 -> 263[label="",style="dashed", color="red", weight=0]; 766[label="vwx31 == vwx41",fontsize=16,color="magenta"];766 -> 829[label="",style="dashed", color="magenta", weight=3]; 766 -> 830[label="",style="dashed", color="magenta", weight=3]; 767 -> 264[label="",style="dashed", color="red", weight=0]; 767[label="vwx31 == vwx41",fontsize=16,color="magenta"];767 -> 831[label="",style="dashed", color="magenta", weight=3]; 767 -> 832[label="",style="dashed", color="magenta", weight=3]; 768 -> 265[label="",style="dashed", color="red", weight=0]; 768[label="vwx31 == vwx41",fontsize=16,color="magenta"];768 -> 833[label="",style="dashed", color="magenta", weight=3]; 768 -> 834[label="",style="dashed", color="magenta", weight=3]; 769 -> 266[label="",style="dashed", color="red", weight=0]; 769[label="vwx31 == vwx41",fontsize=16,color="magenta"];769 -> 835[label="",style="dashed", color="magenta", weight=3]; 769 -> 836[label="",style="dashed", color="magenta", weight=3]; 770[label="False && vwx82",fontsize=16,color="black",shape="box"];770 -> 837[label="",style="solid", color="black", weight=3]; 771[label="True && vwx82",fontsize=16,color="black",shape="box"];771 -> 838[label="",style="solid", color="black", weight=3]; 772[label="compare1 (vwx64,vwx65) (vwx66,vwx67) ((vwx64,vwx65) <= (vwx66,vwx67))",fontsize=16,color="black",shape="box"];772 -> 839[label="",style="solid", color="black", weight=3]; 773[label="EQ",fontsize=16,color="green",shape="box"];413[label="vwx30",fontsize=16,color="green",shape="box"];414[label="vwx40",fontsize=16,color="green",shape="box"];415[label="vwx30",fontsize=16,color="green",shape="box"];416[label="vwx40",fontsize=16,color="green",shape="box"];417[label="vwx30",fontsize=16,color="green",shape="box"];418[label="vwx40",fontsize=16,color="green",shape="box"];419[label="vwx30",fontsize=16,color="green",shape="box"];420[label="vwx40",fontsize=16,color="green",shape="box"];421[label="vwx30",fontsize=16,color="green",shape="box"];422[label="vwx40",fontsize=16,color="green",shape="box"];423[label="vwx30",fontsize=16,color="green",shape="box"];424[label="vwx40",fontsize=16,color="green",shape="box"];425[label="vwx30",fontsize=16,color="green",shape="box"];426[label="vwx40",fontsize=16,color="green",shape="box"];427[label="vwx30",fontsize=16,color="green",shape="box"];428[label="vwx40",fontsize=16,color="green",shape="box"];429[label="vwx30",fontsize=16,color="green",shape="box"];430[label="vwx40",fontsize=16,color="green",shape="box"];431[label="vwx30",fontsize=16,color="green",shape="box"];432[label="vwx40",fontsize=16,color="green",shape="box"];433[label="vwx30",fontsize=16,color="green",shape="box"];434[label="vwx40",fontsize=16,color="green",shape="box"];435[label="vwx30",fontsize=16,color="green",shape="box"];436[label="vwx40",fontsize=16,color="green",shape="box"];437[label="vwx30",fontsize=16,color="green",shape="box"];438[label="vwx40",fontsize=16,color="green",shape="box"];439[label="vwx30",fontsize=16,color="green",shape="box"];440[label="vwx40",fontsize=16,color="green",shape="box"];441[label="LT",fontsize=16,color="green",shape="box"];442[label="vwx20",fontsize=16,color="green",shape="box"];443[label="GT",fontsize=16,color="green",shape="box"];444[label="Pos vwx410",fontsize=16,color="green",shape="box"];445[label="vwx30",fontsize=16,color="green",shape="box"];446[label="vwx40",fontsize=16,color="green",shape="box"];447[label="Pos vwx310",fontsize=16,color="green",shape="box"];448[label="Pos vwx410",fontsize=16,color="green",shape="box"];449[label="vwx30",fontsize=16,color="green",shape="box"];450[label="vwx40",fontsize=16,color="green",shape="box"];451[label="Neg vwx310",fontsize=16,color="green",shape="box"];452[label="Neg vwx410",fontsize=16,color="green",shape="box"];453[label="vwx30",fontsize=16,color="green",shape="box"];454[label="vwx40",fontsize=16,color="green",shape="box"];455[label="Pos vwx310",fontsize=16,color="green",shape="box"];456[label="Neg vwx410",fontsize=16,color="green",shape="box"];457[label="vwx30",fontsize=16,color="green",shape="box"];458[label="vwx40",fontsize=16,color="green",shape="box"];459[label="Neg vwx310",fontsize=16,color="green",shape="box"];460[label="LT",fontsize=16,color="green",shape="box"];461[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];461 -> 694[label="",style="solid", color="black", weight=3]; 462[label="vwx30",fontsize=16,color="green",shape="box"];463[label="vwx40",fontsize=16,color="green",shape="box"];253[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2894[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];253 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 391[label="",style="solid", color="burlywood", weight=3]; 2895[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];253 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 392[label="",style="solid", color="burlywood", weight=3]; 464[label="vwx30",fontsize=16,color="green",shape="box"];465[label="vwx40",fontsize=16,color="green",shape="box"];254[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2896[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];254 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 393[label="",style="solid", color="burlywood", weight=3]; 2897[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];254 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 394[label="",style="solid", color="burlywood", weight=3]; 2898[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];254 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 395[label="",style="solid", color="burlywood", weight=3]; 466[label="vwx30",fontsize=16,color="green",shape="box"];467[label="vwx40",fontsize=16,color="green",shape="box"];255[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2899[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];255 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 396[label="",style="solid", color="burlywood", weight=3]; 468[label="vwx30",fontsize=16,color="green",shape="box"];469[label="vwx40",fontsize=16,color="green",shape="box"];256[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];256 -> 397[label="",style="solid", color="black", weight=3]; 470[label="vwx30",fontsize=16,color="green",shape="box"];471[label="vwx40",fontsize=16,color="green",shape="box"];257[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2900[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];257 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 398[label="",style="solid", color="burlywood", weight=3]; 2901[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];257 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 399[label="",style="solid", color="burlywood", weight=3]; 472[label="vwx30",fontsize=16,color="green",shape="box"];473[label="vwx40",fontsize=16,color="green",shape="box"];258[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2902[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];258 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 400[label="",style="solid", color="burlywood", weight=3]; 2903[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];258 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 401[label="",style="solid", color="burlywood", weight=3]; 474[label="vwx30",fontsize=16,color="green",shape="box"];475[label="vwx40",fontsize=16,color="green",shape="box"];259[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2904[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];259 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 402[label="",style="solid", color="burlywood", weight=3]; 476[label="vwx30",fontsize=16,color="green",shape="box"];477[label="vwx40",fontsize=16,color="green",shape="box"];260[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2905[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];260 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 403[label="",style="solid", color="burlywood", weight=3]; 478[label="vwx30",fontsize=16,color="green",shape="box"];479[label="vwx40",fontsize=16,color="green",shape="box"];261[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2906[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];261 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 404[label="",style="solid", color="burlywood", weight=3]; 480[label="vwx30",fontsize=16,color="green",shape="box"];481[label="vwx40",fontsize=16,color="green",shape="box"];262[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2907[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];262 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 405[label="",style="solid", color="burlywood", weight=3]; 2908[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];262 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 406[label="",style="solid", color="burlywood", weight=3]; 482[label="vwx30",fontsize=16,color="green",shape="box"];483[label="vwx40",fontsize=16,color="green",shape="box"];263[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];263 -> 407[label="",style="solid", color="black", weight=3]; 484[label="vwx30",fontsize=16,color="green",shape="box"];485[label="vwx40",fontsize=16,color="green",shape="box"];264[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];264 -> 408[label="",style="solid", color="black", weight=3]; 486[label="vwx30",fontsize=16,color="green",shape="box"];487[label="vwx40",fontsize=16,color="green",shape="box"];265[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2909[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];265 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 409[label="",style="solid", color="burlywood", weight=3]; 488[label="vwx30",fontsize=16,color="green",shape="box"];489[label="vwx40",fontsize=16,color="green",shape="box"];266[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];266 -> 410[label="",style="solid", color="black", weight=3]; 490 -> 802[label="",style="dashed", color="red", weight=0]; 490[label="compare1 (Just vwx26) (Just vwx27) (Just vwx26 <= Just vwx27)",fontsize=16,color="magenta"];490 -> 803[label="",style="dashed", color="magenta", weight=3]; 490 -> 804[label="",style="dashed", color="magenta", weight=3]; 490 -> 805[label="",style="dashed", color="magenta", weight=3]; 491[label="EQ",fontsize=16,color="green",shape="box"];492[label="LT",fontsize=16,color="green",shape="box"];493[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];493 -> 696[label="",style="solid", color="black", weight=3]; 494[label="vwx30",fontsize=16,color="green",shape="box"];495[label="vwx40",fontsize=16,color="green",shape="box"];496[label="vwx30",fontsize=16,color="green",shape="box"];497[label="vwx40",fontsize=16,color="green",shape="box"];498[label="vwx30",fontsize=16,color="green",shape="box"];499[label="vwx40",fontsize=16,color="green",shape="box"];500[label="vwx30",fontsize=16,color="green",shape="box"];501[label="vwx40",fontsize=16,color="green",shape="box"];502[label="vwx30",fontsize=16,color="green",shape="box"];503[label="vwx40",fontsize=16,color="green",shape="box"];504[label="vwx30",fontsize=16,color="green",shape="box"];505[label="vwx40",fontsize=16,color="green",shape="box"];506[label="vwx30",fontsize=16,color="green",shape="box"];507[label="vwx40",fontsize=16,color="green",shape="box"];508[label="vwx30",fontsize=16,color="green",shape="box"];509[label="vwx40",fontsize=16,color="green",shape="box"];510[label="vwx30",fontsize=16,color="green",shape="box"];511[label="vwx40",fontsize=16,color="green",shape="box"];512[label="vwx30",fontsize=16,color="green",shape="box"];513[label="vwx40",fontsize=16,color="green",shape="box"];514[label="vwx30",fontsize=16,color="green",shape="box"];515[label="vwx40",fontsize=16,color="green",shape="box"];516[label="vwx30",fontsize=16,color="green",shape="box"];517[label="vwx40",fontsize=16,color="green",shape="box"];518[label="vwx30",fontsize=16,color="green",shape="box"];519[label="vwx40",fontsize=16,color="green",shape="box"];520[label="vwx30",fontsize=16,color="green",shape="box"];521[label="vwx40",fontsize=16,color="green",shape="box"];522 -> 901[label="",style="dashed", color="red", weight=0]; 522[label="compare1 (Left vwx33) (Left vwx34) (Left vwx33 <= Left vwx34)",fontsize=16,color="magenta"];522 -> 902[label="",style="dashed", color="magenta", weight=3]; 522 -> 903[label="",style="dashed", color="magenta", weight=3]; 522 -> 904[label="",style="dashed", color="magenta", weight=3]; 523[label="EQ",fontsize=16,color="green",shape="box"];524[label="LT",fontsize=16,color="green",shape="box"];525[label="compare0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];525 -> 698[label="",style="solid", color="black", weight=3]; 526[label="vwx30",fontsize=16,color="green",shape="box"];527[label="vwx40",fontsize=16,color="green",shape="box"];528[label="vwx30",fontsize=16,color="green",shape="box"];529[label="vwx40",fontsize=16,color="green",shape="box"];530[label="vwx30",fontsize=16,color="green",shape="box"];531[label="vwx40",fontsize=16,color="green",shape="box"];532[label="vwx30",fontsize=16,color="green",shape="box"];533[label="vwx40",fontsize=16,color="green",shape="box"];534[label="vwx30",fontsize=16,color="green",shape="box"];535[label="vwx40",fontsize=16,color="green",shape="box"];536[label="vwx30",fontsize=16,color="green",shape="box"];537[label="vwx40",fontsize=16,color="green",shape="box"];538[label="vwx30",fontsize=16,color="green",shape="box"];539[label="vwx40",fontsize=16,color="green",shape="box"];540[label="vwx30",fontsize=16,color="green",shape="box"];541[label="vwx40",fontsize=16,color="green",shape="box"];542[label="vwx30",fontsize=16,color="green",shape="box"];543[label="vwx40",fontsize=16,color="green",shape="box"];544[label="vwx30",fontsize=16,color="green",shape="box"];545[label="vwx40",fontsize=16,color="green",shape="box"];546[label="vwx30",fontsize=16,color="green",shape="box"];547[label="vwx40",fontsize=16,color="green",shape="box"];548[label="vwx30",fontsize=16,color="green",shape="box"];549[label="vwx40",fontsize=16,color="green",shape="box"];550[label="vwx30",fontsize=16,color="green",shape="box"];551[label="vwx40",fontsize=16,color="green",shape="box"];552[label="vwx30",fontsize=16,color="green",shape="box"];553[label="vwx40",fontsize=16,color="green",shape="box"];554 -> 914[label="",style="dashed", color="red", weight=0]; 554[label="compare1 (Right vwx40) (Right vwx41) (Right vwx40 <= Right vwx41)",fontsize=16,color="magenta"];554 -> 915[label="",style="dashed", color="magenta", weight=3]; 554 -> 916[label="",style="dashed", color="magenta", weight=3]; 554 -> 917[label="",style="dashed", color="magenta", weight=3]; 555[label="EQ",fontsize=16,color="green",shape="box"];774 -> 253[label="",style="dashed", color="red", weight=0]; 774[label="vwx30 == vwx40",fontsize=16,color="magenta"];774 -> 840[label="",style="dashed", color="magenta", weight=3]; 774 -> 841[label="",style="dashed", color="magenta", weight=3]; 775 -> 254[label="",style="dashed", color="red", weight=0]; 775[label="vwx30 == vwx40",fontsize=16,color="magenta"];775 -> 842[label="",style="dashed", color="magenta", weight=3]; 775 -> 843[label="",style="dashed", color="magenta", weight=3]; 776 -> 255[label="",style="dashed", color="red", weight=0]; 776[label="vwx30 == vwx40",fontsize=16,color="magenta"];776 -> 844[label="",style="dashed", color="magenta", weight=3]; 776 -> 845[label="",style="dashed", color="magenta", weight=3]; 777 -> 256[label="",style="dashed", color="red", weight=0]; 777[label="vwx30 == vwx40",fontsize=16,color="magenta"];777 -> 846[label="",style="dashed", color="magenta", weight=3]; 777 -> 847[label="",style="dashed", color="magenta", weight=3]; 778 -> 257[label="",style="dashed", color="red", weight=0]; 778[label="vwx30 == vwx40",fontsize=16,color="magenta"];778 -> 848[label="",style="dashed", color="magenta", weight=3]; 778 -> 849[label="",style="dashed", color="magenta", weight=3]; 779 -> 258[label="",style="dashed", color="red", weight=0]; 779[label="vwx30 == vwx40",fontsize=16,color="magenta"];779 -> 850[label="",style="dashed", color="magenta", weight=3]; 779 -> 851[label="",style="dashed", color="magenta", weight=3]; 780 -> 259[label="",style="dashed", color="red", weight=0]; 780[label="vwx30 == vwx40",fontsize=16,color="magenta"];780 -> 852[label="",style="dashed", color="magenta", weight=3]; 780 -> 853[label="",style="dashed", color="magenta", weight=3]; 781 -> 260[label="",style="dashed", color="red", weight=0]; 781[label="vwx30 == vwx40",fontsize=16,color="magenta"];781 -> 854[label="",style="dashed", color="magenta", weight=3]; 781 -> 855[label="",style="dashed", color="magenta", weight=3]; 782 -> 261[label="",style="dashed", color="red", weight=0]; 782[label="vwx30 == vwx40",fontsize=16,color="magenta"];782 -> 856[label="",style="dashed", color="magenta", weight=3]; 782 -> 857[label="",style="dashed", color="magenta", weight=3]; 783 -> 262[label="",style="dashed", color="red", weight=0]; 783[label="vwx30 == vwx40",fontsize=16,color="magenta"];783 -> 858[label="",style="dashed", color="magenta", weight=3]; 783 -> 859[label="",style="dashed", color="magenta", weight=3]; 784 -> 263[label="",style="dashed", color="red", weight=0]; 784[label="vwx30 == vwx40",fontsize=16,color="magenta"];784 -> 860[label="",style="dashed", color="magenta", weight=3]; 784 -> 861[label="",style="dashed", color="magenta", weight=3]; 785 -> 264[label="",style="dashed", color="red", weight=0]; 785[label="vwx30 == vwx40",fontsize=16,color="magenta"];785 -> 862[label="",style="dashed", color="magenta", weight=3]; 785 -> 863[label="",style="dashed", color="magenta", weight=3]; 786 -> 265[label="",style="dashed", color="red", weight=0]; 786[label="vwx30 == vwx40",fontsize=16,color="magenta"];786 -> 864[label="",style="dashed", color="magenta", weight=3]; 786 -> 865[label="",style="dashed", color="magenta", weight=3]; 787 -> 266[label="",style="dashed", color="red", weight=0]; 787[label="vwx30 == vwx40",fontsize=16,color="magenta"];787 -> 866[label="",style="dashed", color="magenta", weight=3]; 787 -> 867[label="",style="dashed", color="magenta", weight=3]; 788[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];2910[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 868[label="",style="solid", color="blue", weight=3]; 2911[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 869[label="",style="solid", color="blue", weight=3]; 2912[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 870[label="",style="solid", color="blue", weight=3]; 2913[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 871[label="",style="solid", color="blue", weight=3]; 2914[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 872[label="",style="solid", color="blue", weight=3]; 2915[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 873[label="",style="solid", color="blue", weight=3]; 2916[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 874[label="",style="solid", color="blue", weight=3]; 2917[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 875[label="",style="solid", color="blue", weight=3]; 2918[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 876[label="",style="solid", color="blue", weight=3]; 2919[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 877[label="",style="solid", color="blue", weight=3]; 2920[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 878[label="",style="solid", color="blue", weight=3]; 2921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 879[label="",style="solid", color="blue", weight=3]; 2922[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 880[label="",style="solid", color="blue", weight=3]; 2923[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];788 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 881[label="",style="solid", color="blue", weight=3]; 789[label="vwx32 == vwx42",fontsize=16,color="blue",shape="box"];2924[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 882[label="",style="solid", color="blue", weight=3]; 2925[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 883[label="",style="solid", color="blue", weight=3]; 2926[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 884[label="",style="solid", color="blue", weight=3]; 2927[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 885[label="",style="solid", color="blue", weight=3]; 2928[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 886[label="",style="solid", color="blue", weight=3]; 2929[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 887[label="",style="solid", color="blue", weight=3]; 2930[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 888[label="",style="solid", color="blue", weight=3]; 2931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 889[label="",style="solid", color="blue", weight=3]; 2932[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 890[label="",style="solid", color="blue", weight=3]; 2933[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 891[label="",style="solid", color="blue", weight=3]; 2934[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 892[label="",style="solid", color="blue", weight=3]; 2935[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 893[label="",style="solid", color="blue", weight=3]; 2936[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 894[label="",style="solid", color="blue", weight=3]; 2937[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];789 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 895[label="",style="solid", color="blue", weight=3]; 790[label="compare1 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) ((vwx51,vwx52,vwx53) <= (vwx54,vwx55,vwx56))",fontsize=16,color="black",shape="box"];790 -> 896[label="",style="solid", color="black", weight=3]; 791[label="EQ",fontsize=16,color="green",shape="box"];586[label="vwx300",fontsize=16,color="green",shape="box"];587[label="vwx400",fontsize=16,color="green",shape="box"];588[label="LT",fontsize=16,color="green",shape="box"];589[label="LT",fontsize=16,color="green",shape="box"];590[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];590 -> 792[label="",style="solid", color="black", weight=3]; 591[label="LT",fontsize=16,color="green",shape="box"];592[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];592 -> 793[label="",style="solid", color="black", weight=3]; 593[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];593 -> 794[label="",style="solid", color="black", weight=3]; 594[label="Pos vwx410",fontsize=16,color="green",shape="box"];595[label="vwx30",fontsize=16,color="green",shape="box"];596[label="vwx40",fontsize=16,color="green",shape="box"];597[label="Pos vwx310",fontsize=16,color="green",shape="box"];598[label="Pos vwx410",fontsize=16,color="green",shape="box"];599[label="vwx30",fontsize=16,color="green",shape="box"];600[label="vwx40",fontsize=16,color="green",shape="box"];601[label="Neg vwx310",fontsize=16,color="green",shape="box"];602[label="Neg vwx410",fontsize=16,color="green",shape="box"];603[label="vwx30",fontsize=16,color="green",shape="box"];604[label="vwx40",fontsize=16,color="green",shape="box"];605[label="Pos vwx310",fontsize=16,color="green",shape="box"];606[label="Neg vwx410",fontsize=16,color="green",shape="box"];607[label="vwx30",fontsize=16,color="green",shape="box"];608[label="vwx40",fontsize=16,color="green",shape="box"];609[label="Neg vwx310",fontsize=16,color="green",shape="box"];610 -> 176[label="",style="dashed", color="red", weight=0]; 610[label="primMulInt vwx300 vwx410",fontsize=16,color="magenta"];610 -> 795[label="",style="dashed", color="magenta", weight=3]; 610 -> 796[label="",style="dashed", color="magenta", weight=3]; 611[label="Pos (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];611 -> 797[label="",style="dashed", color="green", weight=3]; 612[label="Neg (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];612 -> 798[label="",style="dashed", color="green", weight=3]; 613[label="Neg (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];613 -> 799[label="",style="dashed", color="green", weight=3]; 614[label="Pos (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];614 -> 800[label="",style="dashed", color="green", weight=3]; 809[label="vwx31",fontsize=16,color="green",shape="box"];810[label="vwx41",fontsize=16,color="green",shape="box"];811[label="vwx31",fontsize=16,color="green",shape="box"];812[label="vwx41",fontsize=16,color="green",shape="box"];813[label="vwx31",fontsize=16,color="green",shape="box"];814[label="vwx41",fontsize=16,color="green",shape="box"];815[label="vwx31",fontsize=16,color="green",shape="box"];816[label="vwx41",fontsize=16,color="green",shape="box"];817[label="vwx31",fontsize=16,color="green",shape="box"];818[label="vwx41",fontsize=16,color="green",shape="box"];819[label="vwx31",fontsize=16,color="green",shape="box"];820[label="vwx41",fontsize=16,color="green",shape="box"];821[label="vwx31",fontsize=16,color="green",shape="box"];822[label="vwx41",fontsize=16,color="green",shape="box"];823[label="vwx31",fontsize=16,color="green",shape="box"];824[label="vwx41",fontsize=16,color="green",shape="box"];825[label="vwx31",fontsize=16,color="green",shape="box"];826[label="vwx41",fontsize=16,color="green",shape="box"];827[label="vwx31",fontsize=16,color="green",shape="box"];828[label="vwx41",fontsize=16,color="green",shape="box"];829[label="vwx31",fontsize=16,color="green",shape="box"];830[label="vwx41",fontsize=16,color="green",shape="box"];831[label="vwx31",fontsize=16,color="green",shape="box"];832[label="vwx41",fontsize=16,color="green",shape="box"];833[label="vwx31",fontsize=16,color="green",shape="box"];834[label="vwx41",fontsize=16,color="green",shape="box"];835[label="vwx31",fontsize=16,color="green",shape="box"];836[label="vwx41",fontsize=16,color="green",shape="box"];837[label="False",fontsize=16,color="green",shape="box"];838[label="vwx82",fontsize=16,color="green",shape="box"];839 -> 993[label="",style="dashed", color="red", weight=0]; 839[label="compare1 (vwx64,vwx65) (vwx66,vwx67) (vwx64 < vwx66 || vwx64 == vwx66 && vwx65 <= vwx67)",fontsize=16,color="magenta"];839 -> 994[label="",style="dashed", color="magenta", weight=3]; 839 -> 995[label="",style="dashed", color="magenta", weight=3]; 839 -> 996[label="",style="dashed", color="magenta", weight=3]; 839 -> 997[label="",style="dashed", color="magenta", weight=3]; 839 -> 998[label="",style="dashed", color="magenta", weight=3]; 839 -> 999[label="",style="dashed", color="magenta", weight=3]; 694[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];694 -> 801[label="",style="solid", color="black", weight=3]; 391[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2938[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];391 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 615[label="",style="solid", color="burlywood", weight=3]; 2939[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];391 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 616[label="",style="solid", color="burlywood", weight=3]; 392[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2940[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];392 -> 2940[label="",style="solid", color="burlywood", weight=9]; 2940 -> 617[label="",style="solid", color="burlywood", weight=3]; 2941[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];392 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 618[label="",style="solid", color="burlywood", weight=3]; 393[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2942[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];393 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 619[label="",style="solid", color="burlywood", weight=3]; 2943[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];393 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 620[label="",style="solid", color="burlywood", weight=3]; 2944[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];393 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 621[label="",style="solid", color="burlywood", weight=3]; 394[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2945[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];394 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 622[label="",style="solid", color="burlywood", weight=3]; 2946[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];394 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 623[label="",style="solid", color="burlywood", weight=3]; 2947[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];394 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 624[label="",style="solid", color="burlywood", weight=3]; 395[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2948[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];395 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 625[label="",style="solid", color="burlywood", weight=3]; 2949[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];395 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 626[label="",style="solid", color="burlywood", weight=3]; 2950[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];395 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 627[label="",style="solid", color="burlywood", weight=3]; 396[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2951[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];396 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 628[label="",style="solid", color="burlywood", weight=3]; 397[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2952[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];397 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 629[label="",style="solid", color="burlywood", weight=3]; 398[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2953[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];398 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 630[label="",style="solid", color="burlywood", weight=3]; 2954[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];398 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 631[label="",style="solid", color="burlywood", weight=3]; 399[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2955[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];399 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 632[label="",style="solid", color="burlywood", weight=3]; 2956[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];399 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 633[label="",style="solid", color="burlywood", weight=3]; 400[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2957[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];400 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 634[label="",style="solid", color="burlywood", weight=3]; 2958[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];400 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 635[label="",style="solid", color="burlywood", weight=3]; 401[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2959[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];401 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 636[label="",style="solid", color="burlywood", weight=3]; 2960[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];401 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 637[label="",style="solid", color="burlywood", weight=3]; 402[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2961[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];402 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 638[label="",style="solid", color="burlywood", weight=3]; 403[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2962[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];403 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 639[label="",style="solid", color="burlywood", weight=3]; 404[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2963[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];404 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 640[label="",style="solid", color="burlywood", weight=3]; 405[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2964[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];405 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 641[label="",style="solid", color="burlywood", weight=3]; 2965[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];405 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 642[label="",style="solid", color="burlywood", weight=3]; 406[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2966[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];406 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 643[label="",style="solid", color="burlywood", weight=3]; 2967[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];406 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 644[label="",style="solid", color="burlywood", weight=3]; 407[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2968[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];407 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 645[label="",style="solid", color="burlywood", weight=3]; 408[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2969[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];408 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 646[label="",style="solid", color="burlywood", weight=3]; 2970[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];408 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 647[label="",style="solid", color="burlywood", weight=3]; 409[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2971[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];409 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 648[label="",style="solid", color="burlywood", weight=3]; 410[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2972[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];410 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 649[label="",style="solid", color="burlywood", weight=3]; 803[label="vwx27",fontsize=16,color="green",shape="box"];804[label="Just vwx26 <= Just vwx27",fontsize=16,color="black",shape="box"];804 -> 897[label="",style="solid", color="black", weight=3]; 805[label="vwx26",fontsize=16,color="green",shape="box"];802[label="compare1 (Just vwx87) (Just vwx88) vwx89",fontsize=16,color="burlywood",shape="triangle"];2973[label="vwx89/False",fontsize=10,color="white",style="solid",shape="box"];802 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 898[label="",style="solid", color="burlywood", weight=3]; 2974[label="vwx89/True",fontsize=10,color="white",style="solid",shape="box"];802 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 899[label="",style="solid", color="burlywood", weight=3]; 696[label="compare0 True False True",fontsize=16,color="black",shape="box"];696 -> 900[label="",style="solid", color="black", weight=3]; 902[label="vwx33",fontsize=16,color="green",shape="box"];903[label="Left vwx33 <= Left vwx34",fontsize=16,color="black",shape="box"];903 -> 910[label="",style="solid", color="black", weight=3]; 904[label="vwx34",fontsize=16,color="green",shape="box"];901[label="compare1 (Left vwx94) (Left vwx95) vwx96",fontsize=16,color="burlywood",shape="triangle"];2975[label="vwx96/False",fontsize=10,color="white",style="solid",shape="box"];901 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 911[label="",style="solid", color="burlywood", weight=3]; 2976[label="vwx96/True",fontsize=10,color="white",style="solid",shape="box"];901 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 912[label="",style="solid", color="burlywood", weight=3]; 698[label="compare0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];698 -> 913[label="",style="solid", color="black", weight=3]; 915[label="Right vwx40 <= Right vwx41",fontsize=16,color="black",shape="box"];915 -> 921[label="",style="solid", color="black", weight=3]; 916[label="vwx40",fontsize=16,color="green",shape="box"];917[label="vwx41",fontsize=16,color="green",shape="box"];914[label="compare1 (Right vwx102) (Right vwx103) vwx104",fontsize=16,color="burlywood",shape="triangle"];2977[label="vwx104/False",fontsize=10,color="white",style="solid",shape="box"];914 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 922[label="",style="solid", color="burlywood", weight=3]; 2978[label="vwx104/True",fontsize=10,color="white",style="solid",shape="box"];914 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 923[label="",style="solid", color="burlywood", weight=3]; 840[label="vwx30",fontsize=16,color="green",shape="box"];841[label="vwx40",fontsize=16,color="green",shape="box"];842[label="vwx30",fontsize=16,color="green",shape="box"];843[label="vwx40",fontsize=16,color="green",shape="box"];844[label="vwx30",fontsize=16,color="green",shape="box"];845[label="vwx40",fontsize=16,color="green",shape="box"];846[label="vwx30",fontsize=16,color="green",shape="box"];847[label="vwx40",fontsize=16,color="green",shape="box"];848[label="vwx30",fontsize=16,color="green",shape="box"];849[label="vwx40",fontsize=16,color="green",shape="box"];850[label="vwx30",fontsize=16,color="green",shape="box"];851[label="vwx40",fontsize=16,color="green",shape="box"];852[label="vwx30",fontsize=16,color="green",shape="box"];853[label="vwx40",fontsize=16,color="green",shape="box"];854[label="vwx30",fontsize=16,color="green",shape="box"];855[label="vwx40",fontsize=16,color="green",shape="box"];856[label="vwx30",fontsize=16,color="green",shape="box"];857[label="vwx40",fontsize=16,color="green",shape="box"];858[label="vwx30",fontsize=16,color="green",shape="box"];859[label="vwx40",fontsize=16,color="green",shape="box"];860[label="vwx30",fontsize=16,color="green",shape="box"];861[label="vwx40",fontsize=16,color="green",shape="box"];862[label="vwx30",fontsize=16,color="green",shape="box"];863[label="vwx40",fontsize=16,color="green",shape="box"];864[label="vwx30",fontsize=16,color="green",shape="box"];865[label="vwx40",fontsize=16,color="green",shape="box"];866[label="vwx30",fontsize=16,color="green",shape="box"];867[label="vwx40",fontsize=16,color="green",shape="box"];868 -> 253[label="",style="dashed", color="red", weight=0]; 868[label="vwx31 == vwx41",fontsize=16,color="magenta"];868 -> 924[label="",style="dashed", color="magenta", weight=3]; 868 -> 925[label="",style="dashed", color="magenta", weight=3]; 869 -> 254[label="",style="dashed", color="red", weight=0]; 869[label="vwx31 == vwx41",fontsize=16,color="magenta"];869 -> 926[label="",style="dashed", color="magenta", weight=3]; 869 -> 927[label="",style="dashed", color="magenta", weight=3]; 870 -> 255[label="",style="dashed", color="red", weight=0]; 870[label="vwx31 == vwx41",fontsize=16,color="magenta"];870 -> 928[label="",style="dashed", color="magenta", weight=3]; 870 -> 929[label="",style="dashed", color="magenta", weight=3]; 871 -> 256[label="",style="dashed", color="red", weight=0]; 871[label="vwx31 == vwx41",fontsize=16,color="magenta"];871 -> 930[label="",style="dashed", color="magenta", weight=3]; 871 -> 931[label="",style="dashed", color="magenta", weight=3]; 872 -> 257[label="",style="dashed", color="red", weight=0]; 872[label="vwx31 == vwx41",fontsize=16,color="magenta"];872 -> 932[label="",style="dashed", color="magenta", weight=3]; 872 -> 933[label="",style="dashed", color="magenta", weight=3]; 873 -> 258[label="",style="dashed", color="red", weight=0]; 873[label="vwx31 == vwx41",fontsize=16,color="magenta"];873 -> 934[label="",style="dashed", color="magenta", weight=3]; 873 -> 935[label="",style="dashed", color="magenta", weight=3]; 874 -> 259[label="",style="dashed", color="red", weight=0]; 874[label="vwx31 == vwx41",fontsize=16,color="magenta"];874 -> 936[label="",style="dashed", color="magenta", weight=3]; 874 -> 937[label="",style="dashed", color="magenta", weight=3]; 875 -> 260[label="",style="dashed", color="red", weight=0]; 875[label="vwx31 == vwx41",fontsize=16,color="magenta"];875 -> 938[label="",style="dashed", color="magenta", weight=3]; 875 -> 939[label="",style="dashed", color="magenta", weight=3]; 876 -> 261[label="",style="dashed", color="red", weight=0]; 876[label="vwx31 == vwx41",fontsize=16,color="magenta"];876 -> 940[label="",style="dashed", color="magenta", weight=3]; 876 -> 941[label="",style="dashed", color="magenta", weight=3]; 877 -> 262[label="",style="dashed", color="red", weight=0]; 877[label="vwx31 == vwx41",fontsize=16,color="magenta"];877 -> 942[label="",style="dashed", color="magenta", weight=3]; 877 -> 943[label="",style="dashed", color="magenta", weight=3]; 878 -> 263[label="",style="dashed", color="red", weight=0]; 878[label="vwx31 == vwx41",fontsize=16,color="magenta"];878 -> 944[label="",style="dashed", color="magenta", weight=3]; 878 -> 945[label="",style="dashed", color="magenta", weight=3]; 879 -> 264[label="",style="dashed", color="red", weight=0]; 879[label="vwx31 == vwx41",fontsize=16,color="magenta"];879 -> 946[label="",style="dashed", color="magenta", weight=3]; 879 -> 947[label="",style="dashed", color="magenta", weight=3]; 880 -> 265[label="",style="dashed", color="red", weight=0]; 880[label="vwx31 == vwx41",fontsize=16,color="magenta"];880 -> 948[label="",style="dashed", color="magenta", weight=3]; 880 -> 949[label="",style="dashed", color="magenta", weight=3]; 881 -> 266[label="",style="dashed", color="red", weight=0]; 881[label="vwx31 == vwx41",fontsize=16,color="magenta"];881 -> 950[label="",style="dashed", color="magenta", weight=3]; 881 -> 951[label="",style="dashed", color="magenta", weight=3]; 882 -> 253[label="",style="dashed", color="red", weight=0]; 882[label="vwx32 == vwx42",fontsize=16,color="magenta"];882 -> 952[label="",style="dashed", color="magenta", weight=3]; 882 -> 953[label="",style="dashed", color="magenta", weight=3]; 883 -> 254[label="",style="dashed", color="red", weight=0]; 883[label="vwx32 == vwx42",fontsize=16,color="magenta"];883 -> 954[label="",style="dashed", color="magenta", weight=3]; 883 -> 955[label="",style="dashed", color="magenta", weight=3]; 884 -> 255[label="",style="dashed", color="red", weight=0]; 884[label="vwx32 == vwx42",fontsize=16,color="magenta"];884 -> 956[label="",style="dashed", color="magenta", weight=3]; 884 -> 957[label="",style="dashed", color="magenta", weight=3]; 885 -> 256[label="",style="dashed", color="red", weight=0]; 885[label="vwx32 == vwx42",fontsize=16,color="magenta"];885 -> 958[label="",style="dashed", color="magenta", weight=3]; 885 -> 959[label="",style="dashed", color="magenta", weight=3]; 886 -> 257[label="",style="dashed", color="red", weight=0]; 886[label="vwx32 == vwx42",fontsize=16,color="magenta"];886 -> 960[label="",style="dashed", color="magenta", weight=3]; 886 -> 961[label="",style="dashed", color="magenta", weight=3]; 887 -> 258[label="",style="dashed", color="red", weight=0]; 887[label="vwx32 == vwx42",fontsize=16,color="magenta"];887 -> 962[label="",style="dashed", color="magenta", weight=3]; 887 -> 963[label="",style="dashed", color="magenta", weight=3]; 888 -> 259[label="",style="dashed", color="red", weight=0]; 888[label="vwx32 == vwx42",fontsize=16,color="magenta"];888 -> 964[label="",style="dashed", color="magenta", weight=3]; 888 -> 965[label="",style="dashed", color="magenta", weight=3]; 889 -> 260[label="",style="dashed", color="red", weight=0]; 889[label="vwx32 == vwx42",fontsize=16,color="magenta"];889 -> 966[label="",style="dashed", color="magenta", weight=3]; 889 -> 967[label="",style="dashed", color="magenta", weight=3]; 890 -> 261[label="",style="dashed", color="red", weight=0]; 890[label="vwx32 == vwx42",fontsize=16,color="magenta"];890 -> 968[label="",style="dashed", color="magenta", weight=3]; 890 -> 969[label="",style="dashed", color="magenta", weight=3]; 891 -> 262[label="",style="dashed", color="red", weight=0]; 891[label="vwx32 == vwx42",fontsize=16,color="magenta"];891 -> 970[label="",style="dashed", color="magenta", weight=3]; 891 -> 971[label="",style="dashed", color="magenta", weight=3]; 892 -> 263[label="",style="dashed", color="red", weight=0]; 892[label="vwx32 == vwx42",fontsize=16,color="magenta"];892 -> 972[label="",style="dashed", color="magenta", weight=3]; 892 -> 973[label="",style="dashed", color="magenta", weight=3]; 893 -> 264[label="",style="dashed", color="red", weight=0]; 893[label="vwx32 == vwx42",fontsize=16,color="magenta"];893 -> 974[label="",style="dashed", color="magenta", weight=3]; 893 -> 975[label="",style="dashed", color="magenta", weight=3]; 894 -> 265[label="",style="dashed", color="red", weight=0]; 894[label="vwx32 == vwx42",fontsize=16,color="magenta"];894 -> 976[label="",style="dashed", color="magenta", weight=3]; 894 -> 977[label="",style="dashed", color="magenta", weight=3]; 895 -> 266[label="",style="dashed", color="red", weight=0]; 895[label="vwx32 == vwx42",fontsize=16,color="magenta"];895 -> 978[label="",style="dashed", color="magenta", weight=3]; 895 -> 979[label="",style="dashed", color="magenta", weight=3]; 896 -> 1111[label="",style="dashed", color="red", weight=0]; 896[label="compare1 (vwx51,vwx52,vwx53) (vwx54,vwx55,vwx56) (vwx51 < vwx54 || vwx51 == vwx54 && (vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56))",fontsize=16,color="magenta"];896 -> 1112[label="",style="dashed", color="magenta", weight=3]; 896 -> 1113[label="",style="dashed", color="magenta", weight=3]; 896 -> 1114[label="",style="dashed", color="magenta", weight=3]; 896 -> 1115[label="",style="dashed", color="magenta", weight=3]; 896 -> 1116[label="",style="dashed", color="magenta", weight=3]; 896 -> 1117[label="",style="dashed", color="magenta", weight=3]; 896 -> 1118[label="",style="dashed", color="magenta", weight=3]; 896 -> 1119[label="",style="dashed", color="magenta", weight=3]; 792[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];792 -> 982[label="",style="solid", color="black", weight=3]; 793[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];793 -> 983[label="",style="solid", color="black", weight=3]; 794[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];794 -> 984[label="",style="solid", color="black", weight=3]; 795[label="vwx410",fontsize=16,color="green",shape="box"];796[label="vwx300",fontsize=16,color="green",shape="box"];797[label="primMulNat vwx300 vwx410",fontsize=16,color="burlywood",shape="triangle"];2979[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];797 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 985[label="",style="solid", color="burlywood", weight=3]; 2980[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];797 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 986[label="",style="solid", color="burlywood", weight=3]; 798 -> 797[label="",style="dashed", color="red", weight=0]; 798[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];798 -> 987[label="",style="dashed", color="magenta", weight=3]; 799 -> 797[label="",style="dashed", color="red", weight=0]; 799[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];799 -> 988[label="",style="dashed", color="magenta", weight=3]; 800 -> 797[label="",style="dashed", color="red", weight=0]; 800[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];800 -> 989[label="",style="dashed", color="magenta", weight=3]; 800 -> 990[label="",style="dashed", color="magenta", weight=3]; 994[label="vwx64 < vwx66",fontsize=16,color="blue",shape="box"];2981[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 1006[label="",style="solid", color="blue", weight=3]; 2982[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 1007[label="",style="solid", color="blue", weight=3]; 2983[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 1008[label="",style="solid", color="blue", weight=3]; 2984[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 1009[label="",style="solid", color="blue", weight=3]; 2985[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 1010[label="",style="solid", color="blue", weight=3]; 2986[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 1011[label="",style="solid", color="blue", weight=3]; 2987[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2987[label="",style="solid", color="blue", weight=9]; 2987 -> 1012[label="",style="solid", color="blue", weight=3]; 2988[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2988[label="",style="solid", color="blue", weight=9]; 2988 -> 1013[label="",style="solid", color="blue", weight=3]; 2989[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 1014[label="",style="solid", color="blue", weight=3]; 2990[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 1015[label="",style="solid", color="blue", weight=3]; 2991[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 1016[label="",style="solid", color="blue", weight=3]; 2992[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 1017[label="",style="solid", color="blue", weight=3]; 2993[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 1018[label="",style="solid", color="blue", weight=3]; 2994[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];994 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 1019[label="",style="solid", color="blue", weight=3]; 995[label="vwx66",fontsize=16,color="green",shape="box"];996[label="vwx67",fontsize=16,color="green",shape="box"];997[label="vwx65",fontsize=16,color="green",shape="box"];998[label="vwx64",fontsize=16,color="green",shape="box"];999 -> 733[label="",style="dashed", color="red", weight=0]; 999[label="vwx64 == vwx66 && vwx65 <= vwx67",fontsize=16,color="magenta"];999 -> 1020[label="",style="dashed", color="magenta", weight=3]; 999 -> 1021[label="",style="dashed", color="magenta", weight=3]; 993[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (vwx118 || vwx119)",fontsize=16,color="burlywood",shape="triangle"];2995[label="vwx118/False",fontsize=10,color="white",style="solid",shape="box"];993 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 1022[label="",style="solid", color="burlywood", weight=3]; 2996[label="vwx118/True",fontsize=10,color="white",style="solid",shape="box"];993 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 1023[label="",style="solid", color="burlywood", weight=3]; 801[label="GT",fontsize=16,color="green",shape="box"];615[label="False == False",fontsize=16,color="black",shape="box"];615 -> 1024[label="",style="solid", color="black", weight=3]; 616[label="False == True",fontsize=16,color="black",shape="box"];616 -> 1025[label="",style="solid", color="black", weight=3]; 617[label="True == False",fontsize=16,color="black",shape="box"];617 -> 1026[label="",style="solid", color="black", weight=3]; 618[label="True == True",fontsize=16,color="black",shape="box"];618 -> 1027[label="",style="solid", color="black", weight=3]; 619[label="LT == LT",fontsize=16,color="black",shape="box"];619 -> 1028[label="",style="solid", color="black", weight=3]; 620[label="LT == EQ",fontsize=16,color="black",shape="box"];620 -> 1029[label="",style="solid", color="black", weight=3]; 621[label="LT == GT",fontsize=16,color="black",shape="box"];621 -> 1030[label="",style="solid", color="black", weight=3]; 622[label="EQ == LT",fontsize=16,color="black",shape="box"];622 -> 1031[label="",style="solid", color="black", weight=3]; 623[label="EQ == EQ",fontsize=16,color="black",shape="box"];623 -> 1032[label="",style="solid", color="black", weight=3]; 624[label="EQ == GT",fontsize=16,color="black",shape="box"];624 -> 1033[label="",style="solid", color="black", weight=3]; 625[label="GT == LT",fontsize=16,color="black",shape="box"];625 -> 1034[label="",style="solid", color="black", weight=3]; 626[label="GT == EQ",fontsize=16,color="black",shape="box"];626 -> 1035[label="",style="solid", color="black", weight=3]; 627[label="GT == GT",fontsize=16,color="black",shape="box"];627 -> 1036[label="",style="solid", color="black", weight=3]; 628[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];628 -> 1037[label="",style="solid", color="black", weight=3]; 629[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2997[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];629 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 1038[label="",style="solid", color="burlywood", weight=3]; 630[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];630 -> 1039[label="",style="solid", color="black", weight=3]; 631[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];631 -> 1040[label="",style="solid", color="black", weight=3]; 632[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];632 -> 1041[label="",style="solid", color="black", weight=3]; 633[label="[] == []",fontsize=16,color="black",shape="box"];633 -> 1042[label="",style="solid", color="black", weight=3]; 634[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];634 -> 1043[label="",style="solid", color="black", weight=3]; 635[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];635 -> 1044[label="",style="solid", color="black", weight=3]; 636[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];636 -> 1045[label="",style="solid", color="black", weight=3]; 637[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];637 -> 1046[label="",style="solid", color="black", weight=3]; 638[label="() == ()",fontsize=16,color="black",shape="box"];638 -> 1047[label="",style="solid", color="black", weight=3]; 639[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];639 -> 1048[label="",style="solid", color="black", weight=3]; 640[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];640 -> 1049[label="",style="solid", color="black", weight=3]; 641[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];641 -> 1050[label="",style="solid", color="black", weight=3]; 642[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];642 -> 1051[label="",style="solid", color="black", weight=3]; 643[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];643 -> 1052[label="",style="solid", color="black", weight=3]; 644[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];644 -> 1053[label="",style="solid", color="black", weight=3]; 645[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2998[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];645 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 1054[label="",style="solid", color="burlywood", weight=3]; 646[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2999[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];646 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 1055[label="",style="solid", color="burlywood", weight=3]; 3000[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];646 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 1056[label="",style="solid", color="burlywood", weight=3]; 647[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3001[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];647 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 1057[label="",style="solid", color="burlywood", weight=3]; 3002[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];647 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 1058[label="",style="solid", color="burlywood", weight=3]; 648[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];648 -> 1059[label="",style="solid", color="black", weight=3]; 649[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3003[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];649 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 1060[label="",style="solid", color="burlywood", weight=3]; 897[label="vwx26 <= vwx27",fontsize=16,color="blue",shape="box"];3004[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 1061[label="",style="solid", color="blue", weight=3]; 3005[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 1062[label="",style="solid", color="blue", weight=3]; 3006[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 1063[label="",style="solid", color="blue", weight=3]; 3007[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 1064[label="",style="solid", color="blue", weight=3]; 3008[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 1065[label="",style="solid", color="blue", weight=3]; 3009[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 1066[label="",style="solid", color="blue", weight=3]; 3010[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 1067[label="",style="solid", color="blue", weight=3]; 3011[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 1068[label="",style="solid", color="blue", weight=3]; 3012[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 1069[label="",style="solid", color="blue", weight=3]; 3013[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 1070[label="",style="solid", color="blue", weight=3]; 3014[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 1071[label="",style="solid", color="blue", weight=3]; 3015[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 1072[label="",style="solid", color="blue", weight=3]; 3016[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 1073[label="",style="solid", color="blue", weight=3]; 3017[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];897 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 1074[label="",style="solid", color="blue", weight=3]; 898[label="compare1 (Just vwx87) (Just vwx88) False",fontsize=16,color="black",shape="box"];898 -> 1075[label="",style="solid", color="black", weight=3]; 899[label="compare1 (Just vwx87) (Just vwx88) True",fontsize=16,color="black",shape="box"];899 -> 1076[label="",style="solid", color="black", weight=3]; 900[label="GT",fontsize=16,color="green",shape="box"];910[label="vwx33 <= vwx34",fontsize=16,color="blue",shape="box"];3018[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 1077[label="",style="solid", color="blue", weight=3]; 3019[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 1078[label="",style="solid", color="blue", weight=3]; 3020[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 1079[label="",style="solid", color="blue", weight=3]; 3021[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 1080[label="",style="solid", color="blue", weight=3]; 3022[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 1081[label="",style="solid", color="blue", weight=3]; 3023[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 1082[label="",style="solid", color="blue", weight=3]; 3024[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 1083[label="",style="solid", color="blue", weight=3]; 3025[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 1084[label="",style="solid", color="blue", weight=3]; 3026[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 1085[label="",style="solid", color="blue", weight=3]; 3027[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 1086[label="",style="solid", color="blue", weight=3]; 3028[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 1087[label="",style="solid", color="blue", weight=3]; 3029[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 1088[label="",style="solid", color="blue", weight=3]; 3030[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 1089[label="",style="solid", color="blue", weight=3]; 3031[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];910 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 1090[label="",style="solid", color="blue", weight=3]; 911[label="compare1 (Left vwx94) (Left vwx95) False",fontsize=16,color="black",shape="box"];911 -> 1091[label="",style="solid", color="black", weight=3]; 912[label="compare1 (Left vwx94) (Left vwx95) True",fontsize=16,color="black",shape="box"];912 -> 1092[label="",style="solid", color="black", weight=3]; 913[label="GT",fontsize=16,color="green",shape="box"];921[label="vwx40 <= vwx41",fontsize=16,color="blue",shape="box"];3032[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 1093[label="",style="solid", color="blue", weight=3]; 3033[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 1094[label="",style="solid", color="blue", weight=3]; 3034[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 1095[label="",style="solid", color="blue", weight=3]; 3035[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 1096[label="",style="solid", color="blue", weight=3]; 3036[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 1097[label="",style="solid", color="blue", weight=3]; 3037[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 1098[label="",style="solid", color="blue", weight=3]; 3038[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 1099[label="",style="solid", color="blue", weight=3]; 3039[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 1100[label="",style="solid", color="blue", weight=3]; 3040[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 1101[label="",style="solid", color="blue", weight=3]; 3041[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 1102[label="",style="solid", color="blue", weight=3]; 3042[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 1103[label="",style="solid", color="blue", weight=3]; 3043[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 1104[label="",style="solid", color="blue", weight=3]; 3044[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 1105[label="",style="solid", color="blue", weight=3]; 3045[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];921 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 1106[label="",style="solid", color="blue", weight=3]; 922[label="compare1 (Right vwx102) (Right vwx103) False",fontsize=16,color="black",shape="box"];922 -> 1107[label="",style="solid", color="black", weight=3]; 923[label="compare1 (Right vwx102) (Right vwx103) True",fontsize=16,color="black",shape="box"];923 -> 1108[label="",style="solid", color="black", weight=3]; 924[label="vwx31",fontsize=16,color="green",shape="box"];925[label="vwx41",fontsize=16,color="green",shape="box"];926[label="vwx31",fontsize=16,color="green",shape="box"];927[label="vwx41",fontsize=16,color="green",shape="box"];928[label="vwx31",fontsize=16,color="green",shape="box"];929[label="vwx41",fontsize=16,color="green",shape="box"];930[label="vwx31",fontsize=16,color="green",shape="box"];931[label="vwx41",fontsize=16,color="green",shape="box"];932[label="vwx31",fontsize=16,color="green",shape="box"];933[label="vwx41",fontsize=16,color="green",shape="box"];934[label="vwx31",fontsize=16,color="green",shape="box"];935[label="vwx41",fontsize=16,color="green",shape="box"];936[label="vwx31",fontsize=16,color="green",shape="box"];937[label="vwx41",fontsize=16,color="green",shape="box"];938[label="vwx31",fontsize=16,color="green",shape="box"];939[label="vwx41",fontsize=16,color="green",shape="box"];940[label="vwx31",fontsize=16,color="green",shape="box"];941[label="vwx41",fontsize=16,color="green",shape="box"];942[label="vwx31",fontsize=16,color="green",shape="box"];943[label="vwx41",fontsize=16,color="green",shape="box"];944[label="vwx31",fontsize=16,color="green",shape="box"];945[label="vwx41",fontsize=16,color="green",shape="box"];946[label="vwx31",fontsize=16,color="green",shape="box"];947[label="vwx41",fontsize=16,color="green",shape="box"];948[label="vwx31",fontsize=16,color="green",shape="box"];949[label="vwx41",fontsize=16,color="green",shape="box"];950[label="vwx31",fontsize=16,color="green",shape="box"];951[label="vwx41",fontsize=16,color="green",shape="box"];952[label="vwx32",fontsize=16,color="green",shape="box"];953[label="vwx42",fontsize=16,color="green",shape="box"];954[label="vwx32",fontsize=16,color="green",shape="box"];955[label="vwx42",fontsize=16,color="green",shape="box"];956[label="vwx32",fontsize=16,color="green",shape="box"];957[label="vwx42",fontsize=16,color="green",shape="box"];958[label="vwx32",fontsize=16,color="green",shape="box"];959[label="vwx42",fontsize=16,color="green",shape="box"];960[label="vwx32",fontsize=16,color="green",shape="box"];961[label="vwx42",fontsize=16,color="green",shape="box"];962[label="vwx32",fontsize=16,color="green",shape="box"];963[label="vwx42",fontsize=16,color="green",shape="box"];964[label="vwx32",fontsize=16,color="green",shape="box"];965[label="vwx42",fontsize=16,color="green",shape="box"];966[label="vwx32",fontsize=16,color="green",shape="box"];967[label="vwx42",fontsize=16,color="green",shape="box"];968[label="vwx32",fontsize=16,color="green",shape="box"];969[label="vwx42",fontsize=16,color="green",shape="box"];970[label="vwx32",fontsize=16,color="green",shape="box"];971[label="vwx42",fontsize=16,color="green",shape="box"];972[label="vwx32",fontsize=16,color="green",shape="box"];973[label="vwx42",fontsize=16,color="green",shape="box"];974[label="vwx32",fontsize=16,color="green",shape="box"];975[label="vwx42",fontsize=16,color="green",shape="box"];976[label="vwx32",fontsize=16,color="green",shape="box"];977[label="vwx42",fontsize=16,color="green",shape="box"];978[label="vwx32",fontsize=16,color="green",shape="box"];979[label="vwx42",fontsize=16,color="green",shape="box"];1112[label="vwx53",fontsize=16,color="green",shape="box"];1113[label="vwx55",fontsize=16,color="green",shape="box"];1114[label="vwx51 < vwx54",fontsize=16,color="blue",shape="box"];3046[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 1128[label="",style="solid", color="blue", weight=3]; 3047[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 1129[label="",style="solid", color="blue", weight=3]; 3048[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 1130[label="",style="solid", color="blue", weight=3]; 3049[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 1131[label="",style="solid", color="blue", weight=3]; 3050[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 1132[label="",style="solid", color="blue", weight=3]; 3051[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 1133[label="",style="solid", color="blue", weight=3]; 3052[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 1134[label="",style="solid", color="blue", weight=3]; 3053[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 1135[label="",style="solid", color="blue", weight=3]; 3054[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 1136[label="",style="solid", color="blue", weight=3]; 3055[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 1137[label="",style="solid", color="blue", weight=3]; 3056[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 1138[label="",style="solid", color="blue", weight=3]; 3057[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1139[label="",style="solid", color="blue", weight=3]; 3058[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1140[label="",style="solid", color="blue", weight=3]; 3059[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1114 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1141[label="",style="solid", color="blue", weight=3]; 1115 -> 733[label="",style="dashed", color="red", weight=0]; 1115[label="vwx51 == vwx54 && (vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56)",fontsize=16,color="magenta"];1115 -> 1142[label="",style="dashed", color="magenta", weight=3]; 1115 -> 1143[label="",style="dashed", color="magenta", weight=3]; 1116[label="vwx52",fontsize=16,color="green",shape="box"];1117[label="vwx54",fontsize=16,color="green",shape="box"];1118[label="vwx56",fontsize=16,color="green",shape="box"];1119[label="vwx51",fontsize=16,color="green",shape="box"];1111[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (vwx135 || vwx136)",fontsize=16,color="burlywood",shape="triangle"];3060[label="vwx135/False",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 1144[label="",style="solid", color="burlywood", weight=3]; 3061[label="vwx135/True",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 1145[label="",style="solid", color="burlywood", weight=3]; 982[label="GT",fontsize=16,color="green",shape="box"];983[label="GT",fontsize=16,color="green",shape="box"];984[label="GT",fontsize=16,color="green",shape="box"];985[label="primMulNat (Succ vwx3000) vwx410",fontsize=16,color="burlywood",shape="box"];3062[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];985 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 1146[label="",style="solid", color="burlywood", weight=3]; 3063[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];985 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 1147[label="",style="solid", color="burlywood", weight=3]; 986[label="primMulNat Zero vwx410",fontsize=16,color="burlywood",shape="box"];3064[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];986 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 1148[label="",style="solid", color="burlywood", weight=3]; 3065[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];986 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 1149[label="",style="solid", color="burlywood", weight=3]; 987[label="vwx410",fontsize=16,color="green",shape="box"];988[label="vwx300",fontsize=16,color="green",shape="box"];989[label="vwx410",fontsize=16,color="green",shape="box"];990[label="vwx300",fontsize=16,color="green",shape="box"];1006[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1006 -> 1150[label="",style="solid", color="black", weight=3]; 1007[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1007 -> 1151[label="",style="solid", color="black", weight=3]; 1008[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1008 -> 1152[label="",style="solid", color="black", weight=3]; 1009[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1009 -> 1153[label="",style="solid", color="black", weight=3]; 1010[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1010 -> 1154[label="",style="solid", color="black", weight=3]; 1011[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1011 -> 1155[label="",style="solid", color="black", weight=3]; 1012[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1012 -> 1156[label="",style="solid", color="black", weight=3]; 1013[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1013 -> 1157[label="",style="solid", color="black", weight=3]; 1014[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1014 -> 1158[label="",style="solid", color="black", weight=3]; 1015[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1015 -> 1159[label="",style="solid", color="black", weight=3]; 1016[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1016 -> 1160[label="",style="solid", color="black", weight=3]; 1017[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1017 -> 1161[label="",style="solid", color="black", weight=3]; 1018[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1018 -> 1162[label="",style="solid", color="black", weight=3]; 1019[label="vwx64 < vwx66",fontsize=16,color="black",shape="triangle"];1019 -> 1163[label="",style="solid", color="black", weight=3]; 1020[label="vwx64 == vwx66",fontsize=16,color="blue",shape="box"];3066[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1164[label="",style="solid", color="blue", weight=3]; 3067[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1165[label="",style="solid", color="blue", weight=3]; 3068[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1166[label="",style="solid", color="blue", weight=3]; 3069[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1167[label="",style="solid", color="blue", weight=3]; 3070[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1168[label="",style="solid", color="blue", weight=3]; 3071[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1169[label="",style="solid", color="blue", weight=3]; 3072[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1170[label="",style="solid", color="blue", weight=3]; 3073[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1171[label="",style="solid", color="blue", weight=3]; 3074[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1172[label="",style="solid", color="blue", weight=3]; 3075[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1173[label="",style="solid", color="blue", weight=3]; 3076[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1174[label="",style="solid", color="blue", weight=3]; 3077[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 1175[label="",style="solid", color="blue", weight=3]; 3078[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 1176[label="",style="solid", color="blue", weight=3]; 3079[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1020 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 1177[label="",style="solid", color="blue", weight=3]; 1021[label="vwx65 <= vwx67",fontsize=16,color="blue",shape="box"];3080[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 1178[label="",style="solid", color="blue", weight=3]; 3081[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 1179[label="",style="solid", color="blue", weight=3]; 3082[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 1180[label="",style="solid", color="blue", weight=3]; 3083[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 1181[label="",style="solid", color="blue", weight=3]; 3084[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 1182[label="",style="solid", color="blue", weight=3]; 3085[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 1183[label="",style="solid", color="blue", weight=3]; 3086[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1184[label="",style="solid", color="blue", weight=3]; 3087[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1185[label="",style="solid", color="blue", weight=3]; 3088[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1186[label="",style="solid", color="blue", weight=3]; 3089[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1187[label="",style="solid", color="blue", weight=3]; 3090[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1188[label="",style="solid", color="blue", weight=3]; 3091[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1189[label="",style="solid", color="blue", weight=3]; 3092[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1190[label="",style="solid", color="blue", weight=3]; 3093[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1021 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1191[label="",style="solid", color="blue", weight=3]; 1022[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (False || vwx119)",fontsize=16,color="black",shape="box"];1022 -> 1192[label="",style="solid", color="black", weight=3]; 1023[label="compare1 (vwx114,vwx115) (vwx116,vwx117) (True || vwx119)",fontsize=16,color="black",shape="box"];1023 -> 1193[label="",style="solid", color="black", weight=3]; 1024[label="True",fontsize=16,color="green",shape="box"];1025[label="False",fontsize=16,color="green",shape="box"];1026[label="False",fontsize=16,color="green",shape="box"];1027[label="True",fontsize=16,color="green",shape="box"];1028[label="True",fontsize=16,color="green",shape="box"];1029[label="False",fontsize=16,color="green",shape="box"];1030[label="False",fontsize=16,color="green",shape="box"];1031[label="False",fontsize=16,color="green",shape="box"];1032[label="True",fontsize=16,color="green",shape="box"];1033[label="False",fontsize=16,color="green",shape="box"];1034[label="False",fontsize=16,color="green",shape="box"];1035[label="False",fontsize=16,color="green",shape="box"];1036[label="True",fontsize=16,color="green",shape="box"];1037 -> 408[label="",style="dashed", color="red", weight=0]; 1037[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];1037 -> 1194[label="",style="dashed", color="magenta", weight=3]; 1037 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1038[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];1038 -> 1196[label="",style="solid", color="black", weight=3]; 1039 -> 733[label="",style="dashed", color="red", weight=0]; 1039[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1039 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1039 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1040[label="False",fontsize=16,color="green",shape="box"];1041[label="False",fontsize=16,color="green",shape="box"];1042[label="True",fontsize=16,color="green",shape="box"];1043[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3094[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1199[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1200[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1201[label="",style="solid", color="blue", weight=3]; 3097[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1202[label="",style="solid", color="blue", weight=3]; 3098[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1203[label="",style="solid", color="blue", weight=3]; 3099[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1204[label="",style="solid", color="blue", weight=3]; 3100[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1205[label="",style="solid", color="blue", weight=3]; 3101[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1206[label="",style="solid", color="blue", weight=3]; 3102[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1207[label="",style="solid", color="blue", weight=3]; 3103[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1208[label="",style="solid", color="blue", weight=3]; 3104[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1209[label="",style="solid", color="blue", weight=3]; 3105[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1210[label="",style="solid", color="blue", weight=3]; 3106[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1211[label="",style="solid", color="blue", weight=3]; 3107[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1043 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1212[label="",style="solid", color="blue", weight=3]; 1044[label="False",fontsize=16,color="green",shape="box"];1045[label="False",fontsize=16,color="green",shape="box"];1046[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3108[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1213[label="",style="solid", color="blue", weight=3]; 3109[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1214[label="",style="solid", color="blue", weight=3]; 3110[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1215[label="",style="solid", color="blue", weight=3]; 3111[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1216[label="",style="solid", color="blue", weight=3]; 3112[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1217[label="",style="solid", color="blue", weight=3]; 3113[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1218[label="",style="solid", color="blue", weight=3]; 3114[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1219[label="",style="solid", color="blue", weight=3]; 3115[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 1220[label="",style="solid", color="blue", weight=3]; 3116[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 1221[label="",style="solid", color="blue", weight=3]; 3117[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 1222[label="",style="solid", color="blue", weight=3]; 3118[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 1223[label="",style="solid", color="blue", weight=3]; 3119[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1224[label="",style="solid", color="blue", weight=3]; 3120[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1225[label="",style="solid", color="blue", weight=3]; 3121[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1046 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1226[label="",style="solid", color="blue", weight=3]; 1047[label="True",fontsize=16,color="green",shape="box"];1048 -> 733[label="",style="dashed", color="red", weight=0]; 1048[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1048 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1048 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1049 -> 733[label="",style="dashed", color="red", weight=0]; 1049[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1049 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1049 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1050[label="True",fontsize=16,color="green",shape="box"];1051[label="False",fontsize=16,color="green",shape="box"];1052[label="False",fontsize=16,color="green",shape="box"];1053[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3122[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1231[label="",style="solid", color="blue", weight=3]; 3123[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1232[label="",style="solid", color="blue", weight=3]; 3124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1233[label="",style="solid", color="blue", weight=3]; 3125[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1234[label="",style="solid", color="blue", weight=3]; 3126[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1235[label="",style="solid", color="blue", weight=3]; 3127[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1236[label="",style="solid", color="blue", weight=3]; 3128[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1237[label="",style="solid", color="blue", weight=3]; 3129[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1238[label="",style="solid", color="blue", weight=3]; 3130[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1239[label="",style="solid", color="blue", weight=3]; 3131[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1240[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1241[label="",style="solid", color="blue", weight=3]; 3133[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1242[label="",style="solid", color="blue", weight=3]; 3134[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1243[label="",style="solid", color="blue", weight=3]; 3135[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1244[label="",style="solid", color="blue", weight=3]; 1054[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];1054 -> 1245[label="",style="solid", color="black", weight=3]; 1055[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3136[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1055 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 1246[label="",style="solid", color="burlywood", weight=3]; 3137[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1055 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 1247[label="",style="solid", color="burlywood", weight=3]; 1056[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3138[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1056 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 1248[label="",style="solid", color="burlywood", weight=3]; 3139[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1056 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1249[label="",style="solid", color="burlywood", weight=3]; 1057[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3140[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1250[label="",style="solid", color="burlywood", weight=3]; 3141[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1057 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1251[label="",style="solid", color="burlywood", weight=3]; 1058[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3142[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1058 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1252[label="",style="solid", color="burlywood", weight=3]; 3143[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1058 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1253[label="",style="solid", color="burlywood", weight=3]; 1059 -> 733[label="",style="dashed", color="red", weight=0]; 1059[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];1059 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1059 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1060[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];1060 -> 1256[label="",style="solid", color="black", weight=3]; 1061[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1061 -> 1257[label="",style="solid", color="black", weight=3]; 1062[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1062 -> 1258[label="",style="solid", color="black", weight=3]; 1063[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3144[label="vwx26/(vwx260,vwx261)",fontsize=10,color="white",style="solid",shape="box"];1063 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1259[label="",style="solid", color="burlywood", weight=3]; 1064[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1064 -> 1260[label="",style="solid", color="black", weight=3]; 1065[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1065 -> 1261[label="",style="solid", color="black", weight=3]; 1066[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3145[label="vwx26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 1262[label="",style="solid", color="burlywood", weight=3]; 3146[label="vwx26/Just vwx260",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 1263[label="",style="solid", color="burlywood", weight=3]; 1067[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3147[label="vwx26/False",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3147[label="",style="solid", color="burlywood", weight=9]; 3147 -> 1264[label="",style="solid", color="burlywood", weight=3]; 3148[label="vwx26/True",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 1265[label="",style="solid", color="burlywood", weight=3]; 1068[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1068 -> 1266[label="",style="solid", color="black", weight=3]; 1069[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3149[label="vwx26/Left vwx260",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 1267[label="",style="solid", color="burlywood", weight=3]; 3150[label="vwx26/Right vwx260",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 1268[label="",style="solid", color="burlywood", weight=3]; 1070[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3151[label="vwx26/(vwx260,vwx261,vwx262)",fontsize=10,color="white",style="solid",shape="box"];1070 -> 3151[label="",style="solid", color="burlywood", weight=9]; 3151 -> 1269[label="",style="solid", color="burlywood", weight=3]; 1071[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1071 -> 1270[label="",style="solid", color="black", weight=3]; 1072[label="vwx26 <= vwx27",fontsize=16,color="burlywood",shape="triangle"];3152[label="vwx26/LT",fontsize=10,color="white",style="solid",shape="box"];1072 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 1271[label="",style="solid", color="burlywood", weight=3]; 3153[label="vwx26/EQ",fontsize=10,color="white",style="solid",shape="box"];1072 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 1272[label="",style="solid", color="burlywood", weight=3]; 3154[label="vwx26/GT",fontsize=10,color="white",style="solid",shape="box"];1072 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 1273[label="",style="solid", color="burlywood", weight=3]; 1073[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1073 -> 1274[label="",style="solid", color="black", weight=3]; 1074[label="vwx26 <= vwx27",fontsize=16,color="black",shape="triangle"];1074 -> 1275[label="",style="solid", color="black", weight=3]; 1075[label="compare0 (Just vwx87) (Just vwx88) otherwise",fontsize=16,color="black",shape="box"];1075 -> 1276[label="",style="solid", color="black", weight=3]; 1076[label="LT",fontsize=16,color="green",shape="box"];1077 -> 1061[label="",style="dashed", color="red", weight=0]; 1077[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1077 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1077 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1062[label="",style="dashed", color="red", weight=0]; 1078[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1078 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1078 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1063[label="",style="dashed", color="red", weight=0]; 1079[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1079 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1079 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1064[label="",style="dashed", color="red", weight=0]; 1080[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1080 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1080 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1065[label="",style="dashed", color="red", weight=0]; 1081[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1081 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1081 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1066[label="",style="dashed", color="red", weight=0]; 1082[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1082 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1082 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1067[label="",style="dashed", color="red", weight=0]; 1083[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1083 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1083 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1068[label="",style="dashed", color="red", weight=0]; 1084[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1084 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1084 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1085 -> 1069[label="",style="dashed", color="red", weight=0]; 1085[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1085 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1085 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1070[label="",style="dashed", color="red", weight=0]; 1086[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1086 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1086 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1071[label="",style="dashed", color="red", weight=0]; 1087[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1087 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1087 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1072[label="",style="dashed", color="red", weight=0]; 1088[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1088 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1088 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1073[label="",style="dashed", color="red", weight=0]; 1089[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1089 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1074[label="",style="dashed", color="red", weight=0]; 1090[label="vwx33 <= vwx34",fontsize=16,color="magenta"];1090 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1090 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1091[label="compare0 (Left vwx94) (Left vwx95) otherwise",fontsize=16,color="black",shape="box"];1091 -> 1305[label="",style="solid", color="black", weight=3]; 1092[label="LT",fontsize=16,color="green",shape="box"];1093 -> 1061[label="",style="dashed", color="red", weight=0]; 1093[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1093 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1093 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1062[label="",style="dashed", color="red", weight=0]; 1094[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1094 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1094 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1063[label="",style="dashed", color="red", weight=0]; 1095[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1095 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1095 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1064[label="",style="dashed", color="red", weight=0]; 1096[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1096 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1096 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1065[label="",style="dashed", color="red", weight=0]; 1097[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1097 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1097 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1066[label="",style="dashed", color="red", weight=0]; 1098[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1098 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1098 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1067[label="",style="dashed", color="red", weight=0]; 1099[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1099 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1319[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1068[label="",style="dashed", color="red", weight=0]; 1100[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1100 -> 1320[label="",style="dashed", color="magenta", weight=3]; 1100 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1069[label="",style="dashed", color="red", weight=0]; 1101[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1101 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1101 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1070[label="",style="dashed", color="red", weight=0]; 1102[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1102 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1102 -> 1325[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1071[label="",style="dashed", color="red", weight=0]; 1103[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1103 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1072[label="",style="dashed", color="red", weight=0]; 1104[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1104 -> 1328[label="",style="dashed", color="magenta", weight=3]; 1104 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1073[label="",style="dashed", color="red", weight=0]; 1105[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1105 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1105 -> 1331[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1074[label="",style="dashed", color="red", weight=0]; 1106[label="vwx40 <= vwx41",fontsize=16,color="magenta"];1106 -> 1332[label="",style="dashed", color="magenta", weight=3]; 1106 -> 1333[label="",style="dashed", color="magenta", weight=3]; 1107[label="compare0 (Right vwx102) (Right vwx103) otherwise",fontsize=16,color="black",shape="box"];1107 -> 1334[label="",style="solid", color="black", weight=3]; 1108[label="LT",fontsize=16,color="green",shape="box"];1128 -> 1006[label="",style="dashed", color="red", weight=0]; 1128[label="vwx51 < vwx54",fontsize=16,color="magenta"];1128 -> 1335[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1336[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1007[label="",style="dashed", color="red", weight=0]; 1129[label="vwx51 < vwx54",fontsize=16,color="magenta"];1129 -> 1337[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1338[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1008[label="",style="dashed", color="red", weight=0]; 1130[label="vwx51 < vwx54",fontsize=16,color="magenta"];1130 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1009[label="",style="dashed", color="red", weight=0]; 1131[label="vwx51 < vwx54",fontsize=16,color="magenta"];1131 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1010[label="",style="dashed", color="red", weight=0]; 1132[label="vwx51 < vwx54",fontsize=16,color="magenta"];1132 -> 1343[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1344[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1011[label="",style="dashed", color="red", weight=0]; 1133[label="vwx51 < vwx54",fontsize=16,color="magenta"];1133 -> 1345[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1346[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1012[label="",style="dashed", color="red", weight=0]; 1134[label="vwx51 < vwx54",fontsize=16,color="magenta"];1134 -> 1347[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1348[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1013[label="",style="dashed", color="red", weight=0]; 1135[label="vwx51 < vwx54",fontsize=16,color="magenta"];1135 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1014[label="",style="dashed", color="red", weight=0]; 1136[label="vwx51 < vwx54",fontsize=16,color="magenta"];1136 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1015[label="",style="dashed", color="red", weight=0]; 1137[label="vwx51 < vwx54",fontsize=16,color="magenta"];1137 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1016[label="",style="dashed", color="red", weight=0]; 1138[label="vwx51 < vwx54",fontsize=16,color="magenta"];1138 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1017[label="",style="dashed", color="red", weight=0]; 1139[label="vwx51 < vwx54",fontsize=16,color="magenta"];1139 -> 1357[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1358[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1018[label="",style="dashed", color="red", weight=0]; 1140[label="vwx51 < vwx54",fontsize=16,color="magenta"];1140 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1019[label="",style="dashed", color="red", weight=0]; 1141[label="vwx51 < vwx54",fontsize=16,color="magenta"];1141 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1142[label="vwx51 == vwx54",fontsize=16,color="blue",shape="box"];3155[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1363[label="",style="solid", color="blue", weight=3]; 3156[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1364[label="",style="solid", color="blue", weight=3]; 3157[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1365[label="",style="solid", color="blue", weight=3]; 3158[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1366[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1367[label="",style="solid", color="blue", weight=3]; 3160[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1368[label="",style="solid", color="blue", weight=3]; 3161[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1369[label="",style="solid", color="blue", weight=3]; 3162[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1370[label="",style="solid", color="blue", weight=3]; 3163[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1371[label="",style="solid", color="blue", weight=3]; 3164[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1372[label="",style="solid", color="blue", weight=3]; 3165[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1373[label="",style="solid", color="blue", weight=3]; 3166[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1374[label="",style="solid", color="blue", weight=3]; 3167[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1375[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1142 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1376[label="",style="solid", color="blue", weight=3]; 1143 -> 1705[label="",style="dashed", color="red", weight=0]; 1143[label="vwx52 < vwx55 || vwx52 == vwx55 && vwx53 <= vwx56",fontsize=16,color="magenta"];1143 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1144[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (False || vwx136)",fontsize=16,color="black",shape="box"];1144 -> 1379[label="",style="solid", color="black", weight=3]; 1145[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) (True || vwx136)",fontsize=16,color="black",shape="box"];1145 -> 1380[label="",style="solid", color="black", weight=3]; 1146[label="primMulNat (Succ vwx3000) (Succ vwx4100)",fontsize=16,color="black",shape="box"];1146 -> 1381[label="",style="solid", color="black", weight=3]; 1147[label="primMulNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];1147 -> 1382[label="",style="solid", color="black", weight=3]; 1148[label="primMulNat Zero (Succ vwx4100)",fontsize=16,color="black",shape="box"];1148 -> 1383[label="",style="solid", color="black", weight=3]; 1149[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1149 -> 1384[label="",style="solid", color="black", weight=3]; 1150 -> 254[label="",style="dashed", color="red", weight=0]; 1150[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1150 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1151 -> 254[label="",style="dashed", color="red", weight=0]; 1151[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1151 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1152 -> 254[label="",style="dashed", color="red", weight=0]; 1152[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1152 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1153 -> 254[label="",style="dashed", color="red", weight=0]; 1153[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1153 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1154 -> 254[label="",style="dashed", color="red", weight=0]; 1154[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1154 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1155 -> 254[label="",style="dashed", color="red", weight=0]; 1155[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1155 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1156 -> 254[label="",style="dashed", color="red", weight=0]; 1156[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1156 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1157 -> 254[label="",style="dashed", color="red", weight=0]; 1157[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1157 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1158 -> 254[label="",style="dashed", color="red", weight=0]; 1158[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1158 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1159 -> 254[label="",style="dashed", color="red", weight=0]; 1159[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1159 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1160 -> 254[label="",style="dashed", color="red", weight=0]; 1160[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1160 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1161 -> 254[label="",style="dashed", color="red", weight=0]; 1161[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1161 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1162 -> 254[label="",style="dashed", color="red", weight=0]; 1162[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1162 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1163 -> 254[label="",style="dashed", color="red", weight=0]; 1163[label="compare vwx64 vwx66 == LT",fontsize=16,color="magenta"];1163 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1164 -> 260[label="",style="dashed", color="red", weight=0]; 1164[label="vwx64 == vwx66",fontsize=16,color="magenta"];1164 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1165 -> 255[label="",style="dashed", color="red", weight=0]; 1165[label="vwx64 == vwx66",fontsize=16,color="magenta"];1165 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1166 -> 261[label="",style="dashed", color="red", weight=0]; 1166[label="vwx64 == vwx66",fontsize=16,color="magenta"];1166 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1167 -> 257[label="",style="dashed", color="red", weight=0]; 1167[label="vwx64 == vwx66",fontsize=16,color="magenta"];1167 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1168 -> 266[label="",style="dashed", color="red", weight=0]; 1168[label="vwx64 == vwx66",fontsize=16,color="magenta"];1168 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1169 -> 262[label="",style="dashed", color="red", weight=0]; 1169[label="vwx64 == vwx66",fontsize=16,color="magenta"];1169 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1170 -> 253[label="",style="dashed", color="red", weight=0]; 1170[label="vwx64 == vwx66",fontsize=16,color="magenta"];1170 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1171 -> 259[label="",style="dashed", color="red", weight=0]; 1171[label="vwx64 == vwx66",fontsize=16,color="magenta"];1171 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1172 -> 258[label="",style="dashed", color="red", weight=0]; 1172[label="vwx64 == vwx66",fontsize=16,color="magenta"];1172 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1173 -> 265[label="",style="dashed", color="red", weight=0]; 1173[label="vwx64 == vwx66",fontsize=16,color="magenta"];1173 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1174 -> 256[label="",style="dashed", color="red", weight=0]; 1174[label="vwx64 == vwx66",fontsize=16,color="magenta"];1174 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1175 -> 254[label="",style="dashed", color="red", weight=0]; 1175[label="vwx64 == vwx66",fontsize=16,color="magenta"];1175 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1176 -> 264[label="",style="dashed", color="red", weight=0]; 1176[label="vwx64 == vwx66",fontsize=16,color="magenta"];1176 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1177 -> 263[label="",style="dashed", color="red", weight=0]; 1177[label="vwx64 == vwx66",fontsize=16,color="magenta"];1177 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1061[label="",style="dashed", color="red", weight=0]; 1178[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1178 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1062[label="",style="dashed", color="red", weight=0]; 1179[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1179 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1063[label="",style="dashed", color="red", weight=0]; 1180[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1180 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1064[label="",style="dashed", color="red", weight=0]; 1181[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1181 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1065[label="",style="dashed", color="red", weight=0]; 1182[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1182 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1066[label="",style="dashed", color="red", weight=0]; 1183[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1183 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1067[label="",style="dashed", color="red", weight=0]; 1184[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1184 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1068[label="",style="dashed", color="red", weight=0]; 1185[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1185 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1069[label="",style="dashed", color="red", weight=0]; 1186[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1186 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1070[label="",style="dashed", color="red", weight=0]; 1187[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1187 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1071[label="",style="dashed", color="red", weight=0]; 1188[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1188 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1072[label="",style="dashed", color="red", weight=0]; 1189[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1189 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1073[label="",style="dashed", color="red", weight=0]; 1190[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1190 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1466[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1074[label="",style="dashed", color="red", weight=0]; 1191[label="vwx65 <= vwx67",fontsize=16,color="magenta"];1191 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1192[label="compare1 (vwx114,vwx115) (vwx116,vwx117) vwx119",fontsize=16,color="burlywood",shape="triangle"];3169[label="vwx119/False",fontsize=10,color="white",style="solid",shape="box"];1192 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 1469[label="",style="solid", color="burlywood", weight=3]; 3170[label="vwx119/True",fontsize=10,color="white",style="solid",shape="box"];1192 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 1470[label="",style="solid", color="burlywood", weight=3]; 1193 -> 1192[label="",style="dashed", color="red", weight=0]; 1193[label="compare1 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="magenta"];1193 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1194[label="vwx300",fontsize=16,color="green",shape="box"];1195[label="vwx400",fontsize=16,color="green",shape="box"];1196[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3171[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 1472[label="",style="solid", color="burlywood", weight=3]; 3172[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];1196 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 1473[label="",style="solid", color="burlywood", weight=3]; 1197[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3173[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1474[label="",style="solid", color="blue", weight=3]; 3174[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1475[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1476[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1477[label="",style="solid", color="blue", weight=3]; 3177[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1478[label="",style="solid", color="blue", weight=3]; 3178[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1479[label="",style="solid", color="blue", weight=3]; 3179[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1480[label="",style="solid", color="blue", weight=3]; 3180[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1481[label="",style="solid", color="blue", weight=3]; 3181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1482[label="",style="solid", color="blue", weight=3]; 3182[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1483[label="",style="solid", color="blue", weight=3]; 3183[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1484[label="",style="solid", color="blue", weight=3]; 3184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1485[label="",style="solid", color="blue", weight=3]; 3185[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1486[label="",style="solid", color="blue", weight=3]; 3186[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1197 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1487[label="",style="solid", color="blue", weight=3]; 1198 -> 257[label="",style="dashed", color="red", weight=0]; 1198[label="vwx301 == vwx401",fontsize=16,color="magenta"];1198 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1199 -> 253[label="",style="dashed", color="red", weight=0]; 1199[label="vwx300 == vwx400",fontsize=16,color="magenta"];1199 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1200 -> 254[label="",style="dashed", color="red", weight=0]; 1200[label="vwx300 == vwx400",fontsize=16,color="magenta"];1200 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1201 -> 255[label="",style="dashed", color="red", weight=0]; 1201[label="vwx300 == vwx400",fontsize=16,color="magenta"];1201 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1202 -> 256[label="",style="dashed", color="red", weight=0]; 1202[label="vwx300 == vwx400",fontsize=16,color="magenta"];1202 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1203 -> 257[label="",style="dashed", color="red", weight=0]; 1203[label="vwx300 == vwx400",fontsize=16,color="magenta"];1203 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1204 -> 258[label="",style="dashed", color="red", weight=0]; 1204[label="vwx300 == vwx400",fontsize=16,color="magenta"];1204 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1205 -> 259[label="",style="dashed", color="red", weight=0]; 1205[label="vwx300 == vwx400",fontsize=16,color="magenta"];1205 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1206 -> 260[label="",style="dashed", color="red", weight=0]; 1206[label="vwx300 == vwx400",fontsize=16,color="magenta"];1206 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1207 -> 261[label="",style="dashed", color="red", weight=0]; 1207[label="vwx300 == vwx400",fontsize=16,color="magenta"];1207 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1208 -> 262[label="",style="dashed", color="red", weight=0]; 1208[label="vwx300 == vwx400",fontsize=16,color="magenta"];1208 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1209 -> 263[label="",style="dashed", color="red", weight=0]; 1209[label="vwx300 == vwx400",fontsize=16,color="magenta"];1209 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1209 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1210 -> 264[label="",style="dashed", color="red", weight=0]; 1210[label="vwx300 == vwx400",fontsize=16,color="magenta"];1210 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1210 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1211 -> 265[label="",style="dashed", color="red", weight=0]; 1211[label="vwx300 == vwx400",fontsize=16,color="magenta"];1211 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1212 -> 266[label="",style="dashed", color="red", weight=0]; 1212[label="vwx300 == vwx400",fontsize=16,color="magenta"];1212 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1213 -> 253[label="",style="dashed", color="red", weight=0]; 1213[label="vwx300 == vwx400",fontsize=16,color="magenta"];1213 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1214 -> 254[label="",style="dashed", color="red", weight=0]; 1214[label="vwx300 == vwx400",fontsize=16,color="magenta"];1214 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1215 -> 255[label="",style="dashed", color="red", weight=0]; 1215[label="vwx300 == vwx400",fontsize=16,color="magenta"];1215 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1216 -> 256[label="",style="dashed", color="red", weight=0]; 1216[label="vwx300 == vwx400",fontsize=16,color="magenta"];1216 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1217 -> 257[label="",style="dashed", color="red", weight=0]; 1217[label="vwx300 == vwx400",fontsize=16,color="magenta"];1217 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1218 -> 258[label="",style="dashed", color="red", weight=0]; 1218[label="vwx300 == vwx400",fontsize=16,color="magenta"];1218 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1219 -> 259[label="",style="dashed", color="red", weight=0]; 1219[label="vwx300 == vwx400",fontsize=16,color="magenta"];1219 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1220 -> 260[label="",style="dashed", color="red", weight=0]; 1220[label="vwx300 == vwx400",fontsize=16,color="magenta"];1220 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1221 -> 261[label="",style="dashed", color="red", weight=0]; 1221[label="vwx300 == vwx400",fontsize=16,color="magenta"];1221 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1222 -> 262[label="",style="dashed", color="red", weight=0]; 1222[label="vwx300 == vwx400",fontsize=16,color="magenta"];1222 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1223 -> 263[label="",style="dashed", color="red", weight=0]; 1223[label="vwx300 == vwx400",fontsize=16,color="magenta"];1223 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1224 -> 264[label="",style="dashed", color="red", weight=0]; 1224[label="vwx300 == vwx400",fontsize=16,color="magenta"];1224 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1225 -> 265[label="",style="dashed", color="red", weight=0]; 1225[label="vwx300 == vwx400",fontsize=16,color="magenta"];1225 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1226 -> 266[label="",style="dashed", color="red", weight=0]; 1226[label="vwx300 == vwx400",fontsize=16,color="magenta"];1226 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1227[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3187[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1227 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1546[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1227 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1547[label="",style="solid", color="blue", weight=3]; 1228[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3189[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1548[label="",style="solid", color="blue", weight=3]; 3190[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1228 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1549[label="",style="solid", color="blue", weight=3]; 1229[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3191[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1550[label="",style="solid", color="blue", weight=3]; 3192[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1551[label="",style="solid", color="blue", weight=3]; 3193[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1552[label="",style="solid", color="blue", weight=3]; 3194[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1553[label="",style="solid", color="blue", weight=3]; 3195[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1554[label="",style="solid", color="blue", weight=3]; 3196[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1555[label="",style="solid", color="blue", weight=3]; 3197[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1556[label="",style="solid", color="blue", weight=3]; 3198[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1557[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1558[label="",style="solid", color="blue", weight=3]; 3200[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1559[label="",style="solid", color="blue", weight=3]; 3201[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1560[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1561[label="",style="solid", color="blue", weight=3]; 3203[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1562[label="",style="solid", color="blue", weight=3]; 3204[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1563[label="",style="solid", color="blue", weight=3]; 1230[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3205[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1564[label="",style="solid", color="blue", weight=3]; 3206[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1565[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1566[label="",style="solid", color="blue", weight=3]; 3208[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1567[label="",style="solid", color="blue", weight=3]; 3209[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1568[label="",style="solid", color="blue", weight=3]; 3210[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1569[label="",style="solid", color="blue", weight=3]; 3211[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1570[label="",style="solid", color="blue", weight=3]; 3212[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1571[label="",style="solid", color="blue", weight=3]; 3213[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1572[label="",style="solid", color="blue", weight=3]; 3214[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1573[label="",style="solid", color="blue", weight=3]; 3215[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1574[label="",style="solid", color="blue", weight=3]; 3216[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1575[label="",style="solid", color="blue", weight=3]; 3217[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1576[label="",style="solid", color="blue", weight=3]; 3218[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1230 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1577[label="",style="solid", color="blue", weight=3]; 1231 -> 253[label="",style="dashed", color="red", weight=0]; 1231[label="vwx300 == vwx400",fontsize=16,color="magenta"];1231 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1232 -> 254[label="",style="dashed", color="red", weight=0]; 1232[label="vwx300 == vwx400",fontsize=16,color="magenta"];1232 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1233 -> 255[label="",style="dashed", color="red", weight=0]; 1233[label="vwx300 == vwx400",fontsize=16,color="magenta"];1233 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1233 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1234 -> 256[label="",style="dashed", color="red", weight=0]; 1234[label="vwx300 == vwx400",fontsize=16,color="magenta"];1234 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1234 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1235 -> 257[label="",style="dashed", color="red", weight=0]; 1235[label="vwx300 == vwx400",fontsize=16,color="magenta"];1235 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1235 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1236 -> 258[label="",style="dashed", color="red", weight=0]; 1236[label="vwx300 == vwx400",fontsize=16,color="magenta"];1236 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1237 -> 259[label="",style="dashed", color="red", weight=0]; 1237[label="vwx300 == vwx400",fontsize=16,color="magenta"];1237 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1237 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1238 -> 260[label="",style="dashed", color="red", weight=0]; 1238[label="vwx300 == vwx400",fontsize=16,color="magenta"];1238 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1238 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1239 -> 261[label="",style="dashed", color="red", weight=0]; 1239[label="vwx300 == vwx400",fontsize=16,color="magenta"];1239 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1239 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1240 -> 262[label="",style="dashed", color="red", weight=0]; 1240[label="vwx300 == vwx400",fontsize=16,color="magenta"];1240 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1240 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1241 -> 263[label="",style="dashed", color="red", weight=0]; 1241[label="vwx300 == vwx400",fontsize=16,color="magenta"];1241 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1241 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1242 -> 264[label="",style="dashed", color="red", weight=0]; 1242[label="vwx300 == vwx400",fontsize=16,color="magenta"];1242 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1242 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1243 -> 265[label="",style="dashed", color="red", weight=0]; 1243[label="vwx300 == vwx400",fontsize=16,color="magenta"];1243 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1243 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1244 -> 266[label="",style="dashed", color="red", weight=0]; 1244[label="vwx300 == vwx400",fontsize=16,color="magenta"];1244 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1244 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1245 -> 264[label="",style="dashed", color="red", weight=0]; 1245[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1245 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1245 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1246[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3219[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1246 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 1608[label="",style="solid", color="burlywood", weight=3]; 3220[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1246 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 1609[label="",style="solid", color="burlywood", weight=3]; 1247[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];1247 -> 1610[label="",style="solid", color="black", weight=3]; 1248[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3221[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1611[label="",style="solid", color="burlywood", weight=3]; 3222[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1248 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1612[label="",style="solid", color="burlywood", weight=3]; 1249[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3223[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1249 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 1613[label="",style="solid", color="burlywood", weight=3]; 3224[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1249 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 1614[label="",style="solid", color="burlywood", weight=3]; 1250[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];1250 -> 1615[label="",style="solid", color="black", weight=3]; 1251[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3225[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 1616[label="",style="solid", color="burlywood", weight=3]; 3226[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1251 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 1617[label="",style="solid", color="burlywood", weight=3]; 1252[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3227[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 1618[label="",style="solid", color="burlywood", weight=3]; 3228[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1619[label="",style="solid", color="burlywood", weight=3]; 1253[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3229[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1253 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1620[label="",style="solid", color="burlywood", weight=3]; 3230[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1253 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1254[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3231[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1622[label="",style="solid", color="blue", weight=3]; 3232[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1623[label="",style="solid", color="blue", weight=3]; 3233[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3233[label="",style="solid", color="blue", weight=9]; 3233 -> 1624[label="",style="solid", color="blue", weight=3]; 3234[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1625[label="",style="solid", color="blue", weight=3]; 3235[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1626[label="",style="solid", color="blue", weight=3]; 3236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1627[label="",style="solid", color="blue", weight=3]; 3237[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1628[label="",style="solid", color="blue", weight=3]; 3238[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1629[label="",style="solid", color="blue", weight=3]; 3239[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1630[label="",style="solid", color="blue", weight=3]; 3240[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1631[label="",style="solid", color="blue", weight=3]; 3241[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1632[label="",style="solid", color="blue", weight=3]; 3242[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1633[label="",style="solid", color="blue", weight=3]; 3243[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1634[label="",style="solid", color="blue", weight=3]; 3244[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1635[label="",style="solid", color="blue", weight=3]; 1255 -> 733[label="",style="dashed", color="red", weight=0]; 1255[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];1255 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1256 -> 264[label="",style="dashed", color="red", weight=0]; 1256[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1256 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1640[label="",style="dashed", color="red", weight=0]; 1257[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1257 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1640[label="",style="dashed", color="red", weight=0]; 1258[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1258 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1259[label="(vwx260,vwx261) <= vwx27",fontsize=16,color="burlywood",shape="box"];3245[label="vwx27/(vwx270,vwx271)",fontsize=10,color="white",style="solid",shape="box"];1259 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 1649[label="",style="solid", color="burlywood", weight=3]; 1260 -> 1640[label="",style="dashed", color="red", weight=0]; 1260[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1260 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1640[label="",style="dashed", color="red", weight=0]; 1261[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1261 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1262[label="Nothing <= vwx27",fontsize=16,color="burlywood",shape="box"];3246[label="vwx27/Nothing",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 1650[label="",style="solid", color="burlywood", weight=3]; 3247[label="vwx27/Just vwx270",fontsize=10,color="white",style="solid",shape="box"];1262 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 1651[label="",style="solid", color="burlywood", weight=3]; 1263[label="Just vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3248[label="vwx27/Nothing",fontsize=10,color="white",style="solid",shape="box"];1263 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 1652[label="",style="solid", color="burlywood", weight=3]; 3249[label="vwx27/Just vwx270",fontsize=10,color="white",style="solid",shape="box"];1263 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 1653[label="",style="solid", color="burlywood", weight=3]; 1264[label="False <= vwx27",fontsize=16,color="burlywood",shape="box"];3250[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];1264 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 1654[label="",style="solid", color="burlywood", weight=3]; 3251[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];1264 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 1655[label="",style="solid", color="burlywood", weight=3]; 1265[label="True <= vwx27",fontsize=16,color="burlywood",shape="box"];3252[label="vwx27/False",fontsize=10,color="white",style="solid",shape="box"];1265 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 1656[label="",style="solid", color="burlywood", weight=3]; 3253[label="vwx27/True",fontsize=10,color="white",style="solid",shape="box"];1265 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 1657[label="",style="solid", color="burlywood", weight=3]; 1266 -> 1640[label="",style="dashed", color="red", weight=0]; 1266[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1266 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1267[label="Left vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3254[label="vwx27/Left vwx270",fontsize=10,color="white",style="solid",shape="box"];1267 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 1658[label="",style="solid", color="burlywood", weight=3]; 3255[label="vwx27/Right vwx270",fontsize=10,color="white",style="solid",shape="box"];1267 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 1659[label="",style="solid", color="burlywood", weight=3]; 1268[label="Right vwx260 <= vwx27",fontsize=16,color="burlywood",shape="box"];3256[label="vwx27/Left vwx270",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 1660[label="",style="solid", color="burlywood", weight=3]; 3257[label="vwx27/Right vwx270",fontsize=10,color="white",style="solid",shape="box"];1268 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 1661[label="",style="solid", color="burlywood", weight=3]; 1269[label="(vwx260,vwx261,vwx262) <= vwx27",fontsize=16,color="burlywood",shape="box"];3258[label="vwx27/(vwx270,vwx271,vwx272)",fontsize=10,color="white",style="solid",shape="box"];1269 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 1662[label="",style="solid", color="burlywood", weight=3]; 1270 -> 1640[label="",style="dashed", color="red", weight=0]; 1270[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1270 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1271[label="LT <= vwx27",fontsize=16,color="burlywood",shape="box"];3259[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1271 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 1663[label="",style="solid", color="burlywood", weight=3]; 3260[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1271 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 1664[label="",style="solid", color="burlywood", weight=3]; 3261[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1271 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 1665[label="",style="solid", color="burlywood", weight=3]; 1272[label="EQ <= vwx27",fontsize=16,color="burlywood",shape="box"];3262[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1272 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 1666[label="",style="solid", color="burlywood", weight=3]; 3263[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1272 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 1667[label="",style="solid", color="burlywood", weight=3]; 3264[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1272 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 1668[label="",style="solid", color="burlywood", weight=3]; 1273[label="GT <= vwx27",fontsize=16,color="burlywood",shape="box"];3265[label="vwx27/LT",fontsize=10,color="white",style="solid",shape="box"];1273 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 1669[label="",style="solid", color="burlywood", weight=3]; 3266[label="vwx27/EQ",fontsize=10,color="white",style="solid",shape="box"];1273 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 1670[label="",style="solid", color="burlywood", weight=3]; 3267[label="vwx27/GT",fontsize=10,color="white",style="solid",shape="box"];1273 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 1671[label="",style="solid", color="burlywood", weight=3]; 1274 -> 1640[label="",style="dashed", color="red", weight=0]; 1274[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1274 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1275 -> 1640[label="",style="dashed", color="red", weight=0]; 1275[label="compare vwx26 vwx27 /= GT",fontsize=16,color="magenta"];1275 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1276[label="compare0 (Just vwx87) (Just vwx88) True",fontsize=16,color="black",shape="box"];1276 -> 1672[label="",style="solid", color="black", weight=3]; 1277[label="vwx34",fontsize=16,color="green",shape="box"];1278[label="vwx33",fontsize=16,color="green",shape="box"];1279[label="vwx34",fontsize=16,color="green",shape="box"];1280[label="vwx33",fontsize=16,color="green",shape="box"];1281[label="vwx34",fontsize=16,color="green",shape="box"];1282[label="vwx33",fontsize=16,color="green",shape="box"];1283[label="vwx34",fontsize=16,color="green",shape="box"];1284[label="vwx33",fontsize=16,color="green",shape="box"];1285[label="vwx34",fontsize=16,color="green",shape="box"];1286[label="vwx33",fontsize=16,color="green",shape="box"];1287[label="vwx34",fontsize=16,color="green",shape="box"];1288[label="vwx33",fontsize=16,color="green",shape="box"];1289[label="vwx34",fontsize=16,color="green",shape="box"];1290[label="vwx33",fontsize=16,color="green",shape="box"];1291[label="vwx34",fontsize=16,color="green",shape="box"];1292[label="vwx33",fontsize=16,color="green",shape="box"];1293[label="vwx34",fontsize=16,color="green",shape="box"];1294[label="vwx33",fontsize=16,color="green",shape="box"];1295[label="vwx34",fontsize=16,color="green",shape="box"];1296[label="vwx33",fontsize=16,color="green",shape="box"];1297[label="vwx34",fontsize=16,color="green",shape="box"];1298[label="vwx33",fontsize=16,color="green",shape="box"];1299[label="vwx34",fontsize=16,color="green",shape="box"];1300[label="vwx33",fontsize=16,color="green",shape="box"];1301[label="vwx34",fontsize=16,color="green",shape="box"];1302[label="vwx33",fontsize=16,color="green",shape="box"];1303[label="vwx34",fontsize=16,color="green",shape="box"];1304[label="vwx33",fontsize=16,color="green",shape="box"];1305[label="compare0 (Left vwx94) (Left vwx95) True",fontsize=16,color="black",shape="box"];1305 -> 1673[label="",style="solid", color="black", weight=3]; 1306[label="vwx41",fontsize=16,color="green",shape="box"];1307[label="vwx40",fontsize=16,color="green",shape="box"];1308[label="vwx41",fontsize=16,color="green",shape="box"];1309[label="vwx40",fontsize=16,color="green",shape="box"];1310[label="vwx41",fontsize=16,color="green",shape="box"];1311[label="vwx40",fontsize=16,color="green",shape="box"];1312[label="vwx41",fontsize=16,color="green",shape="box"];1313[label="vwx40",fontsize=16,color="green",shape="box"];1314[label="vwx41",fontsize=16,color="green",shape="box"];1315[label="vwx40",fontsize=16,color="green",shape="box"];1316[label="vwx41",fontsize=16,color="green",shape="box"];1317[label="vwx40",fontsize=16,color="green",shape="box"];1318[label="vwx41",fontsize=16,color="green",shape="box"];1319[label="vwx40",fontsize=16,color="green",shape="box"];1320[label="vwx41",fontsize=16,color="green",shape="box"];1321[label="vwx40",fontsize=16,color="green",shape="box"];1322[label="vwx41",fontsize=16,color="green",shape="box"];1323[label="vwx40",fontsize=16,color="green",shape="box"];1324[label="vwx41",fontsize=16,color="green",shape="box"];1325[label="vwx40",fontsize=16,color="green",shape="box"];1326[label="vwx41",fontsize=16,color="green",shape="box"];1327[label="vwx40",fontsize=16,color="green",shape="box"];1328[label="vwx41",fontsize=16,color="green",shape="box"];1329[label="vwx40",fontsize=16,color="green",shape="box"];1330[label="vwx41",fontsize=16,color="green",shape="box"];1331[label="vwx40",fontsize=16,color="green",shape="box"];1332[label="vwx41",fontsize=16,color="green",shape="box"];1333[label="vwx40",fontsize=16,color="green",shape="box"];1334[label="compare0 (Right vwx102) (Right vwx103) True",fontsize=16,color="black",shape="box"];1334 -> 1674[label="",style="solid", color="black", weight=3]; 1335[label="vwx54",fontsize=16,color="green",shape="box"];1336[label="vwx51",fontsize=16,color="green",shape="box"];1337[label="vwx54",fontsize=16,color="green",shape="box"];1338[label="vwx51",fontsize=16,color="green",shape="box"];1339[label="vwx54",fontsize=16,color="green",shape="box"];1340[label="vwx51",fontsize=16,color="green",shape="box"];1341[label="vwx54",fontsize=16,color="green",shape="box"];1342[label="vwx51",fontsize=16,color="green",shape="box"];1343[label="vwx54",fontsize=16,color="green",shape="box"];1344[label="vwx51",fontsize=16,color="green",shape="box"];1345[label="vwx54",fontsize=16,color="green",shape="box"];1346[label="vwx51",fontsize=16,color="green",shape="box"];1347[label="vwx54",fontsize=16,color="green",shape="box"];1348[label="vwx51",fontsize=16,color="green",shape="box"];1349[label="vwx54",fontsize=16,color="green",shape="box"];1350[label="vwx51",fontsize=16,color="green",shape="box"];1351[label="vwx54",fontsize=16,color="green",shape="box"];1352[label="vwx51",fontsize=16,color="green",shape="box"];1353[label="vwx54",fontsize=16,color="green",shape="box"];1354[label="vwx51",fontsize=16,color="green",shape="box"];1355[label="vwx54",fontsize=16,color="green",shape="box"];1356[label="vwx51",fontsize=16,color="green",shape="box"];1357[label="vwx54",fontsize=16,color="green",shape="box"];1358[label="vwx51",fontsize=16,color="green",shape="box"];1359[label="vwx54",fontsize=16,color="green",shape="box"];1360[label="vwx51",fontsize=16,color="green",shape="box"];1361[label="vwx54",fontsize=16,color="green",shape="box"];1362[label="vwx51",fontsize=16,color="green",shape="box"];1363 -> 260[label="",style="dashed", color="red", weight=0]; 1363[label="vwx51 == vwx54",fontsize=16,color="magenta"];1363 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1364 -> 255[label="",style="dashed", color="red", weight=0]; 1364[label="vwx51 == vwx54",fontsize=16,color="magenta"];1364 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1365 -> 261[label="",style="dashed", color="red", weight=0]; 1365[label="vwx51 == vwx54",fontsize=16,color="magenta"];1365 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1366 -> 257[label="",style="dashed", color="red", weight=0]; 1366[label="vwx51 == vwx54",fontsize=16,color="magenta"];1366 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1367 -> 266[label="",style="dashed", color="red", weight=0]; 1367[label="vwx51 == vwx54",fontsize=16,color="magenta"];1367 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1368 -> 262[label="",style="dashed", color="red", weight=0]; 1368[label="vwx51 == vwx54",fontsize=16,color="magenta"];1368 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1369 -> 253[label="",style="dashed", color="red", weight=0]; 1369[label="vwx51 == vwx54",fontsize=16,color="magenta"];1369 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1370 -> 259[label="",style="dashed", color="red", weight=0]; 1370[label="vwx51 == vwx54",fontsize=16,color="magenta"];1370 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1371 -> 258[label="",style="dashed", color="red", weight=0]; 1371[label="vwx51 == vwx54",fontsize=16,color="magenta"];1371 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1372 -> 265[label="",style="dashed", color="red", weight=0]; 1372[label="vwx51 == vwx54",fontsize=16,color="magenta"];1372 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1373 -> 256[label="",style="dashed", color="red", weight=0]; 1373[label="vwx51 == vwx54",fontsize=16,color="magenta"];1373 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1374 -> 254[label="",style="dashed", color="red", weight=0]; 1374[label="vwx51 == vwx54",fontsize=16,color="magenta"];1374 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1375 -> 264[label="",style="dashed", color="red", weight=0]; 1375[label="vwx51 == vwx54",fontsize=16,color="magenta"];1375 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1376 -> 263[label="",style="dashed", color="red", weight=0]; 1376[label="vwx51 == vwx54",fontsize=16,color="magenta"];1376 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1706[label="vwx52 < vwx55",fontsize=16,color="blue",shape="box"];3268[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1710[label="",style="solid", color="blue", weight=3]; 3269[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1711[label="",style="solid", color="blue", weight=3]; 3270[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1712[label="",style="solid", color="blue", weight=3]; 3271[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1713[label="",style="solid", color="blue", weight=3]; 3272[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1714[label="",style="solid", color="blue", weight=3]; 3273[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1715[label="",style="solid", color="blue", weight=3]; 3274[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1716[label="",style="solid", color="blue", weight=3]; 3275[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1717[label="",style="solid", color="blue", weight=3]; 3276[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1718[label="",style="solid", color="blue", weight=3]; 3277[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1719[label="",style="solid", color="blue", weight=3]; 3278[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1720[label="",style="solid", color="blue", weight=3]; 3279[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1721[label="",style="solid", color="blue", weight=3]; 3280[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1722[label="",style="solid", color="blue", weight=3]; 3281[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1706 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1723[label="",style="solid", color="blue", weight=3]; 1707 -> 733[label="",style="dashed", color="red", weight=0]; 1707[label="vwx52 == vwx55 && vwx53 <= vwx56",fontsize=16,color="magenta"];1707 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1707 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1705[label="vwx142 || vwx143",fontsize=16,color="burlywood",shape="triangle"];3282[label="vwx142/False",fontsize=10,color="white",style="solid",shape="box"];1705 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 1726[label="",style="solid", color="burlywood", weight=3]; 3283[label="vwx142/True",fontsize=10,color="white",style="solid",shape="box"];1705 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 1727[label="",style="solid", color="burlywood", weight=3]; 1379[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) vwx136",fontsize=16,color="burlywood",shape="triangle"];3284[label="vwx136/False",fontsize=10,color="white",style="solid",shape="box"];1379 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 1728[label="",style="solid", color="burlywood", weight=3]; 3285[label="vwx136/True",fontsize=10,color="white",style="solid",shape="box"];1379 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 1729[label="",style="solid", color="burlywood", weight=3]; 1380 -> 1379[label="",style="dashed", color="red", weight=0]; 1380[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="magenta"];1380 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1731[label="",style="dashed", color="red", weight=0]; 1381[label="primPlusNat (primMulNat vwx3000 (Succ vwx4100)) (Succ vwx4100)",fontsize=16,color="magenta"];1381 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1382[label="Zero",fontsize=16,color="green",shape="box"];1383[label="Zero",fontsize=16,color="green",shape="box"];1384[label="Zero",fontsize=16,color="green",shape="box"];1385 -> 5[label="",style="dashed", color="red", weight=0]; 1385[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1385 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1386[label="LT",fontsize=16,color="green",shape="box"];1387 -> 6[label="",style="dashed", color="red", weight=0]; 1387[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1387 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1388[label="LT",fontsize=16,color="green",shape="box"];1389 -> 7[label="",style="dashed", color="red", weight=0]; 1389[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1389 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1390[label="LT",fontsize=16,color="green",shape="box"];1391 -> 8[label="",style="dashed", color="red", weight=0]; 1391[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1391 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1392[label="LT",fontsize=16,color="green",shape="box"];1393 -> 9[label="",style="dashed", color="red", weight=0]; 1393[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1393 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1394[label="LT",fontsize=16,color="green",shape="box"];1395 -> 10[label="",style="dashed", color="red", weight=0]; 1395[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1395 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1396[label="LT",fontsize=16,color="green",shape="box"];1397 -> 11[label="",style="dashed", color="red", weight=0]; 1397[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1397 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1398[label="LT",fontsize=16,color="green",shape="box"];1399 -> 12[label="",style="dashed", color="red", weight=0]; 1399[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1399 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1400[label="LT",fontsize=16,color="green",shape="box"];1401 -> 13[label="",style="dashed", color="red", weight=0]; 1401[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1401 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1402[label="LT",fontsize=16,color="green",shape="box"];1403 -> 14[label="",style="dashed", color="red", weight=0]; 1403[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1403 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1404[label="LT",fontsize=16,color="green",shape="box"];1405 -> 15[label="",style="dashed", color="red", weight=0]; 1405[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1405 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1406[label="LT",fontsize=16,color="green",shape="box"];1407 -> 16[label="",style="dashed", color="red", weight=0]; 1407[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1407 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1408[label="LT",fontsize=16,color="green",shape="box"];1409 -> 17[label="",style="dashed", color="red", weight=0]; 1409[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1409 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1410[label="LT",fontsize=16,color="green",shape="box"];1411 -> 18[label="",style="dashed", color="red", weight=0]; 1411[label="compare vwx64 vwx66",fontsize=16,color="magenta"];1411 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1412[label="LT",fontsize=16,color="green",shape="box"];1413[label="vwx64",fontsize=16,color="green",shape="box"];1414[label="vwx66",fontsize=16,color="green",shape="box"];1415[label="vwx64",fontsize=16,color="green",shape="box"];1416[label="vwx66",fontsize=16,color="green",shape="box"];1417[label="vwx64",fontsize=16,color="green",shape="box"];1418[label="vwx66",fontsize=16,color="green",shape="box"];1419[label="vwx64",fontsize=16,color="green",shape="box"];1420[label="vwx66",fontsize=16,color="green",shape="box"];1421[label="vwx64",fontsize=16,color="green",shape="box"];1422[label="vwx66",fontsize=16,color="green",shape="box"];1423[label="vwx64",fontsize=16,color="green",shape="box"];1424[label="vwx66",fontsize=16,color="green",shape="box"];1425[label="vwx64",fontsize=16,color="green",shape="box"];1426[label="vwx66",fontsize=16,color="green",shape="box"];1427[label="vwx64",fontsize=16,color="green",shape="box"];1428[label="vwx66",fontsize=16,color="green",shape="box"];1429[label="vwx64",fontsize=16,color="green",shape="box"];1430[label="vwx66",fontsize=16,color="green",shape="box"];1431[label="vwx64",fontsize=16,color="green",shape="box"];1432[label="vwx66",fontsize=16,color="green",shape="box"];1433[label="vwx64",fontsize=16,color="green",shape="box"];1434[label="vwx66",fontsize=16,color="green",shape="box"];1435[label="vwx64",fontsize=16,color="green",shape="box"];1436[label="vwx66",fontsize=16,color="green",shape="box"];1437[label="vwx64",fontsize=16,color="green",shape="box"];1438[label="vwx66",fontsize=16,color="green",shape="box"];1439[label="vwx64",fontsize=16,color="green",shape="box"];1440[label="vwx66",fontsize=16,color="green",shape="box"];1441[label="vwx67",fontsize=16,color="green",shape="box"];1442[label="vwx65",fontsize=16,color="green",shape="box"];1443[label="vwx67",fontsize=16,color="green",shape="box"];1444[label="vwx65",fontsize=16,color="green",shape="box"];1445[label="vwx67",fontsize=16,color="green",shape="box"];1446[label="vwx65",fontsize=16,color="green",shape="box"];1447[label="vwx67",fontsize=16,color="green",shape="box"];1448[label="vwx65",fontsize=16,color="green",shape="box"];1449[label="vwx67",fontsize=16,color="green",shape="box"];1450[label="vwx65",fontsize=16,color="green",shape="box"];1451[label="vwx67",fontsize=16,color="green",shape="box"];1452[label="vwx65",fontsize=16,color="green",shape="box"];1453[label="vwx67",fontsize=16,color="green",shape="box"];1454[label="vwx65",fontsize=16,color="green",shape="box"];1455[label="vwx67",fontsize=16,color="green",shape="box"];1456[label="vwx65",fontsize=16,color="green",shape="box"];1457[label="vwx67",fontsize=16,color="green",shape="box"];1458[label="vwx65",fontsize=16,color="green",shape="box"];1459[label="vwx67",fontsize=16,color="green",shape="box"];1460[label="vwx65",fontsize=16,color="green",shape="box"];1461[label="vwx67",fontsize=16,color="green",shape="box"];1462[label="vwx65",fontsize=16,color="green",shape="box"];1463[label="vwx67",fontsize=16,color="green",shape="box"];1464[label="vwx65",fontsize=16,color="green",shape="box"];1465[label="vwx67",fontsize=16,color="green",shape="box"];1466[label="vwx65",fontsize=16,color="green",shape="box"];1467[label="vwx67",fontsize=16,color="green",shape="box"];1468[label="vwx65",fontsize=16,color="green",shape="box"];1469[label="compare1 (vwx114,vwx115) (vwx116,vwx117) False",fontsize=16,color="black",shape="box"];1469 -> 1761[label="",style="solid", color="black", weight=3]; 1470[label="compare1 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="black",shape="box"];1470 -> 1762[label="",style="solid", color="black", weight=3]; 1471[label="True",fontsize=16,color="green",shape="box"];1472[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3286[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 1763[label="",style="solid", color="burlywood", weight=3]; 3287[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1472 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 1764[label="",style="solid", color="burlywood", weight=3]; 1473[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];3288[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 1765[label="",style="solid", color="burlywood", weight=3]; 3289[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1473 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 1766[label="",style="solid", color="burlywood", weight=3]; 1474 -> 253[label="",style="dashed", color="red", weight=0]; 1474[label="vwx300 == vwx400",fontsize=16,color="magenta"];1474 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1475 -> 254[label="",style="dashed", color="red", weight=0]; 1475[label="vwx300 == vwx400",fontsize=16,color="magenta"];1475 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1476 -> 255[label="",style="dashed", color="red", weight=0]; 1476[label="vwx300 == vwx400",fontsize=16,color="magenta"];1476 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1477 -> 256[label="",style="dashed", color="red", weight=0]; 1477[label="vwx300 == vwx400",fontsize=16,color="magenta"];1477 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1478 -> 257[label="",style="dashed", color="red", weight=0]; 1478[label="vwx300 == vwx400",fontsize=16,color="magenta"];1478 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1479 -> 258[label="",style="dashed", color="red", weight=0]; 1479[label="vwx300 == vwx400",fontsize=16,color="magenta"];1479 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1480 -> 259[label="",style="dashed", color="red", weight=0]; 1480[label="vwx300 == vwx400",fontsize=16,color="magenta"];1480 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1481 -> 260[label="",style="dashed", color="red", weight=0]; 1481[label="vwx300 == vwx400",fontsize=16,color="magenta"];1481 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1482 -> 261[label="",style="dashed", color="red", weight=0]; 1482[label="vwx300 == vwx400",fontsize=16,color="magenta"];1482 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1483 -> 262[label="",style="dashed", color="red", weight=0]; 1483[label="vwx300 == vwx400",fontsize=16,color="magenta"];1483 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1484 -> 263[label="",style="dashed", color="red", weight=0]; 1484[label="vwx300 == vwx400",fontsize=16,color="magenta"];1484 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1485 -> 264[label="",style="dashed", color="red", weight=0]; 1485[label="vwx300 == vwx400",fontsize=16,color="magenta"];1485 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1486 -> 265[label="",style="dashed", color="red", weight=0]; 1486[label="vwx300 == vwx400",fontsize=16,color="magenta"];1486 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1486 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1487 -> 266[label="",style="dashed", color="red", weight=0]; 1487[label="vwx300 == vwx400",fontsize=16,color="magenta"];1487 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1487 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1488[label="vwx301",fontsize=16,color="green",shape="box"];1489[label="vwx401",fontsize=16,color="green",shape="box"];1490[label="vwx300",fontsize=16,color="green",shape="box"];1491[label="vwx400",fontsize=16,color="green",shape="box"];1492[label="vwx300",fontsize=16,color="green",shape="box"];1493[label="vwx400",fontsize=16,color="green",shape="box"];1494[label="vwx300",fontsize=16,color="green",shape="box"];1495[label="vwx400",fontsize=16,color="green",shape="box"];1496[label="vwx300",fontsize=16,color="green",shape="box"];1497[label="vwx400",fontsize=16,color="green",shape="box"];1498[label="vwx300",fontsize=16,color="green",shape="box"];1499[label="vwx400",fontsize=16,color="green",shape="box"];1500[label="vwx300",fontsize=16,color="green",shape="box"];1501[label="vwx400",fontsize=16,color="green",shape="box"];1502[label="vwx300",fontsize=16,color="green",shape="box"];1503[label="vwx400",fontsize=16,color="green",shape="box"];1504[label="vwx300",fontsize=16,color="green",shape="box"];1505[label="vwx400",fontsize=16,color="green",shape="box"];1506[label="vwx300",fontsize=16,color="green",shape="box"];1507[label="vwx400",fontsize=16,color="green",shape="box"];1508[label="vwx300",fontsize=16,color="green",shape="box"];1509[label="vwx400",fontsize=16,color="green",shape="box"];1510[label="vwx300",fontsize=16,color="green",shape="box"];1511[label="vwx400",fontsize=16,color="green",shape="box"];1512[label="vwx300",fontsize=16,color="green",shape="box"];1513[label="vwx400",fontsize=16,color="green",shape="box"];1514[label="vwx300",fontsize=16,color="green",shape="box"];1515[label="vwx400",fontsize=16,color="green",shape="box"];1516[label="vwx300",fontsize=16,color="green",shape="box"];1517[label="vwx400",fontsize=16,color="green",shape="box"];1518[label="vwx300",fontsize=16,color="green",shape="box"];1519[label="vwx400",fontsize=16,color="green",shape="box"];1520[label="vwx300",fontsize=16,color="green",shape="box"];1521[label="vwx400",fontsize=16,color="green",shape="box"];1522[label="vwx300",fontsize=16,color="green",shape="box"];1523[label="vwx400",fontsize=16,color="green",shape="box"];1524[label="vwx300",fontsize=16,color="green",shape="box"];1525[label="vwx400",fontsize=16,color="green",shape="box"];1526[label="vwx300",fontsize=16,color="green",shape="box"];1527[label="vwx400",fontsize=16,color="green",shape="box"];1528[label="vwx300",fontsize=16,color="green",shape="box"];1529[label="vwx400",fontsize=16,color="green",shape="box"];1530[label="vwx300",fontsize=16,color="green",shape="box"];1531[label="vwx400",fontsize=16,color="green",shape="box"];1532[label="vwx300",fontsize=16,color="green",shape="box"];1533[label="vwx400",fontsize=16,color="green",shape="box"];1534[label="vwx300",fontsize=16,color="green",shape="box"];1535[label="vwx400",fontsize=16,color="green",shape="box"];1536[label="vwx300",fontsize=16,color="green",shape="box"];1537[label="vwx400",fontsize=16,color="green",shape="box"];1538[label="vwx300",fontsize=16,color="green",shape="box"];1539[label="vwx400",fontsize=16,color="green",shape="box"];1540[label="vwx300",fontsize=16,color="green",shape="box"];1541[label="vwx400",fontsize=16,color="green",shape="box"];1542[label="vwx300",fontsize=16,color="green",shape="box"];1543[label="vwx400",fontsize=16,color="green",shape="box"];1544[label="vwx300",fontsize=16,color="green",shape="box"];1545[label="vwx400",fontsize=16,color="green",shape="box"];1546 -> 255[label="",style="dashed", color="red", weight=0]; 1546[label="vwx300 == vwx400",fontsize=16,color="magenta"];1546 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1547 -> 264[label="",style="dashed", color="red", weight=0]; 1547[label="vwx300 == vwx400",fontsize=16,color="magenta"];1547 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1548 -> 255[label="",style="dashed", color="red", weight=0]; 1548[label="vwx301 == vwx401",fontsize=16,color="magenta"];1548 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1549 -> 264[label="",style="dashed", color="red", weight=0]; 1549[label="vwx301 == vwx401",fontsize=16,color="magenta"];1549 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1550 -> 253[label="",style="dashed", color="red", weight=0]; 1550[label="vwx300 == vwx400",fontsize=16,color="magenta"];1550 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1551 -> 254[label="",style="dashed", color="red", weight=0]; 1551[label="vwx300 == vwx400",fontsize=16,color="magenta"];1551 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1552 -> 255[label="",style="dashed", color="red", weight=0]; 1552[label="vwx300 == vwx400",fontsize=16,color="magenta"];1552 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1553 -> 256[label="",style="dashed", color="red", weight=0]; 1553[label="vwx300 == vwx400",fontsize=16,color="magenta"];1553 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1554 -> 257[label="",style="dashed", color="red", weight=0]; 1554[label="vwx300 == vwx400",fontsize=16,color="magenta"];1554 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1555 -> 258[label="",style="dashed", color="red", weight=0]; 1555[label="vwx300 == vwx400",fontsize=16,color="magenta"];1555 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1556 -> 259[label="",style="dashed", color="red", weight=0]; 1556[label="vwx300 == vwx400",fontsize=16,color="magenta"];1556 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1557 -> 260[label="",style="dashed", color="red", weight=0]; 1557[label="vwx300 == vwx400",fontsize=16,color="magenta"];1557 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1558 -> 261[label="",style="dashed", color="red", weight=0]; 1558[label="vwx300 == vwx400",fontsize=16,color="magenta"];1558 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1559 -> 262[label="",style="dashed", color="red", weight=0]; 1559[label="vwx300 == vwx400",fontsize=16,color="magenta"];1559 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1560 -> 263[label="",style="dashed", color="red", weight=0]; 1560[label="vwx300 == vwx400",fontsize=16,color="magenta"];1560 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1561 -> 264[label="",style="dashed", color="red", weight=0]; 1561[label="vwx300 == vwx400",fontsize=16,color="magenta"];1561 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1562 -> 265[label="",style="dashed", color="red", weight=0]; 1562[label="vwx300 == vwx400",fontsize=16,color="magenta"];1562 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1563 -> 266[label="",style="dashed", color="red", weight=0]; 1563[label="vwx300 == vwx400",fontsize=16,color="magenta"];1563 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1564 -> 253[label="",style="dashed", color="red", weight=0]; 1564[label="vwx301 == vwx401",fontsize=16,color="magenta"];1564 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1565 -> 254[label="",style="dashed", color="red", weight=0]; 1565[label="vwx301 == vwx401",fontsize=16,color="magenta"];1565 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1566 -> 255[label="",style="dashed", color="red", weight=0]; 1566[label="vwx301 == vwx401",fontsize=16,color="magenta"];1566 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1567 -> 256[label="",style="dashed", color="red", weight=0]; 1567[label="vwx301 == vwx401",fontsize=16,color="magenta"];1567 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1568 -> 257[label="",style="dashed", color="red", weight=0]; 1568[label="vwx301 == vwx401",fontsize=16,color="magenta"];1568 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1569 -> 258[label="",style="dashed", color="red", weight=0]; 1569[label="vwx301 == vwx401",fontsize=16,color="magenta"];1569 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1570 -> 259[label="",style="dashed", color="red", weight=0]; 1570[label="vwx301 == vwx401",fontsize=16,color="magenta"];1570 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1571 -> 260[label="",style="dashed", color="red", weight=0]; 1571[label="vwx301 == vwx401",fontsize=16,color="magenta"];1571 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1572 -> 261[label="",style="dashed", color="red", weight=0]; 1572[label="vwx301 == vwx401",fontsize=16,color="magenta"];1572 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1572 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1573 -> 262[label="",style="dashed", color="red", weight=0]; 1573[label="vwx301 == vwx401",fontsize=16,color="magenta"];1573 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1574 -> 263[label="",style="dashed", color="red", weight=0]; 1574[label="vwx301 == vwx401",fontsize=16,color="magenta"];1574 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1575 -> 264[label="",style="dashed", color="red", weight=0]; 1575[label="vwx301 == vwx401",fontsize=16,color="magenta"];1575 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1576 -> 265[label="",style="dashed", color="red", weight=0]; 1576[label="vwx301 == vwx401",fontsize=16,color="magenta"];1576 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1576 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1577 -> 266[label="",style="dashed", color="red", weight=0]; 1577[label="vwx301 == vwx401",fontsize=16,color="magenta"];1577 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1578[label="vwx300",fontsize=16,color="green",shape="box"];1579[label="vwx400",fontsize=16,color="green",shape="box"];1580[label="vwx300",fontsize=16,color="green",shape="box"];1581[label="vwx400",fontsize=16,color="green",shape="box"];1582[label="vwx300",fontsize=16,color="green",shape="box"];1583[label="vwx400",fontsize=16,color="green",shape="box"];1584[label="vwx300",fontsize=16,color="green",shape="box"];1585[label="vwx400",fontsize=16,color="green",shape="box"];1586[label="vwx300",fontsize=16,color="green",shape="box"];1587[label="vwx400",fontsize=16,color="green",shape="box"];1588[label="vwx300",fontsize=16,color="green",shape="box"];1589[label="vwx400",fontsize=16,color="green",shape="box"];1590[label="vwx300",fontsize=16,color="green",shape="box"];1591[label="vwx400",fontsize=16,color="green",shape="box"];1592[label="vwx300",fontsize=16,color="green",shape="box"];1593[label="vwx400",fontsize=16,color="green",shape="box"];1594[label="vwx300",fontsize=16,color="green",shape="box"];1595[label="vwx400",fontsize=16,color="green",shape="box"];1596[label="vwx300",fontsize=16,color="green",shape="box"];1597[label="vwx400",fontsize=16,color="green",shape="box"];1598[label="vwx300",fontsize=16,color="green",shape="box"];1599[label="vwx400",fontsize=16,color="green",shape="box"];1600[label="vwx300",fontsize=16,color="green",shape="box"];1601[label="vwx400",fontsize=16,color="green",shape="box"];1602[label="vwx300",fontsize=16,color="green",shape="box"];1603[label="vwx400",fontsize=16,color="green",shape="box"];1604[label="vwx300",fontsize=16,color="green",shape="box"];1605[label="vwx400",fontsize=16,color="green",shape="box"];1606 -> 123[label="",style="dashed", color="red", weight=0]; 1606[label="vwx300 * vwx401",fontsize=16,color="magenta"];1606 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1607 -> 123[label="",style="dashed", color="red", weight=0]; 1607[label="vwx301 * vwx400",fontsize=16,color="magenta"];1607 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1608[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1608 -> 1863[label="",style="solid", color="black", weight=3]; 1609[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1609 -> 1864[label="",style="solid", color="black", weight=3]; 1610[label="False",fontsize=16,color="green",shape="box"];1611[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1611 -> 1865[label="",style="solid", color="black", weight=3]; 1612[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1612 -> 1866[label="",style="solid", color="black", weight=3]; 1613[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1613 -> 1867[label="",style="solid", color="black", weight=3]; 1614[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1614 -> 1868[label="",style="solid", color="black", weight=3]; 1615[label="False",fontsize=16,color="green",shape="box"];1616[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1616 -> 1869[label="",style="solid", color="black", weight=3]; 1617[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1617 -> 1870[label="",style="solid", color="black", weight=3]; 1618[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1618 -> 1871[label="",style="solid", color="black", weight=3]; 1619[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1619 -> 1872[label="",style="solid", color="black", weight=3]; 1620[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1620 -> 1873[label="",style="solid", color="black", weight=3]; 1621[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1621 -> 1874[label="",style="solid", color="black", weight=3]; 1622 -> 253[label="",style="dashed", color="red", weight=0]; 1622[label="vwx300 == vwx400",fontsize=16,color="magenta"];1622 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1623 -> 254[label="",style="dashed", color="red", weight=0]; 1623[label="vwx300 == vwx400",fontsize=16,color="magenta"];1623 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1624 -> 255[label="",style="dashed", color="red", weight=0]; 1624[label="vwx300 == vwx400",fontsize=16,color="magenta"];1624 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1625 -> 256[label="",style="dashed", color="red", weight=0]; 1625[label="vwx300 == vwx400",fontsize=16,color="magenta"];1625 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1626 -> 257[label="",style="dashed", color="red", weight=0]; 1626[label="vwx300 == vwx400",fontsize=16,color="magenta"];1626 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1626 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1627 -> 258[label="",style="dashed", color="red", weight=0]; 1627[label="vwx300 == vwx400",fontsize=16,color="magenta"];1627 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1627 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1628 -> 259[label="",style="dashed", color="red", weight=0]; 1628[label="vwx300 == vwx400",fontsize=16,color="magenta"];1628 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1629 -> 260[label="",style="dashed", color="red", weight=0]; 1629[label="vwx300 == vwx400",fontsize=16,color="magenta"];1629 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1630 -> 261[label="",style="dashed", color="red", weight=0]; 1630[label="vwx300 == vwx400",fontsize=16,color="magenta"];1630 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1631 -> 262[label="",style="dashed", color="red", weight=0]; 1631[label="vwx300 == vwx400",fontsize=16,color="magenta"];1631 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1631 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1632 -> 263[label="",style="dashed", color="red", weight=0]; 1632[label="vwx300 == vwx400",fontsize=16,color="magenta"];1632 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1632 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1633 -> 264[label="",style="dashed", color="red", weight=0]; 1633[label="vwx300 == vwx400",fontsize=16,color="magenta"];1633 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1634 -> 265[label="",style="dashed", color="red", weight=0]; 1634[label="vwx300 == vwx400",fontsize=16,color="magenta"];1634 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1634 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1635 -> 266[label="",style="dashed", color="red", weight=0]; 1635[label="vwx300 == vwx400",fontsize=16,color="magenta"];1635 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1635 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1636[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3290[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1903[label="",style="solid", color="blue", weight=3]; 3291[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1904[label="",style="solid", color="blue", weight=3]; 3292[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1905[label="",style="solid", color="blue", weight=3]; 3293[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1906[label="",style="solid", color="blue", weight=3]; 3294[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1907[label="",style="solid", color="blue", weight=3]; 3295[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1908[label="",style="solid", color="blue", weight=3]; 3296[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1909[label="",style="solid", color="blue", weight=3]; 3297[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1910[label="",style="solid", color="blue", weight=3]; 3298[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1911[label="",style="solid", color="blue", weight=3]; 3299[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1912[label="",style="solid", color="blue", weight=3]; 3300[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1913[label="",style="solid", color="blue", weight=3]; 3301[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1914[label="",style="solid", color="blue", weight=3]; 3302[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1915[label="",style="solid", color="blue", weight=3]; 3303[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1636 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1916[label="",style="solid", color="blue", weight=3]; 1637[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3304[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1917[label="",style="solid", color="blue", weight=3]; 3305[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1918[label="",style="solid", color="blue", weight=3]; 3306[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1919[label="",style="solid", color="blue", weight=3]; 3307[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1920[label="",style="solid", color="blue", weight=3]; 3308[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1921[label="",style="solid", color="blue", weight=3]; 3309[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1922[label="",style="solid", color="blue", weight=3]; 3310[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1923[label="",style="solid", color="blue", weight=3]; 3311[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1924[label="",style="solid", color="blue", weight=3]; 3312[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1925[label="",style="solid", color="blue", weight=3]; 3313[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1926[label="",style="solid", color="blue", weight=3]; 3314[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1927[label="",style="solid", color="blue", weight=3]; 3315[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1928[label="",style="solid", color="blue", weight=3]; 3316[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1929[label="",style="solid", color="blue", weight=3]; 3317[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1637 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1930[label="",style="solid", color="blue", weight=3]; 1638 -> 123[label="",style="dashed", color="red", weight=0]; 1638[label="vwx300 * vwx401",fontsize=16,color="magenta"];1638 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1638 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1639 -> 123[label="",style="dashed", color="red", weight=0]; 1639[label="vwx301 * vwx400",fontsize=16,color="magenta"];1639 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1641 -> 5[label="",style="dashed", color="red", weight=0]; 1641[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1641 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1640[label="vwx138 /= GT",fontsize=16,color="black",shape="triangle"];1640 -> 1937[label="",style="solid", color="black", weight=3]; 1642 -> 6[label="",style="dashed", color="red", weight=0]; 1642[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1642 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1642 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1649[label="(vwx260,vwx261) <= (vwx270,vwx271)",fontsize=16,color="black",shape="box"];1649 -> 1940[label="",style="solid", color="black", weight=3]; 1643 -> 8[label="",style="dashed", color="red", weight=0]; 1643[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1643 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1643 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1644 -> 9[label="",style="dashed", color="red", weight=0]; 1644[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1644 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1650[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1650 -> 1945[label="",style="solid", color="black", weight=3]; 1651[label="Nothing <= Just vwx270",fontsize=16,color="black",shape="box"];1651 -> 1946[label="",style="solid", color="black", weight=3]; 1652[label="Just vwx260 <= Nothing",fontsize=16,color="black",shape="box"];1652 -> 1947[label="",style="solid", color="black", weight=3]; 1653[label="Just vwx260 <= Just vwx270",fontsize=16,color="black",shape="box"];1653 -> 1948[label="",style="solid", color="black", weight=3]; 1654[label="False <= False",fontsize=16,color="black",shape="box"];1654 -> 1949[label="",style="solid", color="black", weight=3]; 1655[label="False <= True",fontsize=16,color="black",shape="box"];1655 -> 1950[label="",style="solid", color="black", weight=3]; 1656[label="True <= False",fontsize=16,color="black",shape="box"];1656 -> 1951[label="",style="solid", color="black", weight=3]; 1657[label="True <= True",fontsize=16,color="black",shape="box"];1657 -> 1952[label="",style="solid", color="black", weight=3]; 1645 -> 12[label="",style="dashed", color="red", weight=0]; 1645[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1645 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1658[label="Left vwx260 <= Left vwx270",fontsize=16,color="black",shape="box"];1658 -> 1955[label="",style="solid", color="black", weight=3]; 1659[label="Left vwx260 <= Right vwx270",fontsize=16,color="black",shape="box"];1659 -> 1956[label="",style="solid", color="black", weight=3]; 1660[label="Right vwx260 <= Left vwx270",fontsize=16,color="black",shape="box"];1660 -> 1957[label="",style="solid", color="black", weight=3]; 1661[label="Right vwx260 <= Right vwx270",fontsize=16,color="black",shape="box"];1661 -> 1958[label="",style="solid", color="black", weight=3]; 1662[label="(vwx260,vwx261,vwx262) <= (vwx270,vwx271,vwx272)",fontsize=16,color="black",shape="box"];1662 -> 1959[label="",style="solid", color="black", weight=3]; 1646 -> 15[label="",style="dashed", color="red", weight=0]; 1646[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1646 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1646 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1663[label="LT <= LT",fontsize=16,color="black",shape="box"];1663 -> 1962[label="",style="solid", color="black", weight=3]; 1664[label="LT <= EQ",fontsize=16,color="black",shape="box"];1664 -> 1963[label="",style="solid", color="black", weight=3]; 1665[label="LT <= GT",fontsize=16,color="black",shape="box"];1665 -> 1964[label="",style="solid", color="black", weight=3]; 1666[label="EQ <= LT",fontsize=16,color="black",shape="box"];1666 -> 1965[label="",style="solid", color="black", weight=3]; 1667[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1667 -> 1966[label="",style="solid", color="black", weight=3]; 1668[label="EQ <= GT",fontsize=16,color="black",shape="box"];1668 -> 1967[label="",style="solid", color="black", weight=3]; 1669[label="GT <= LT",fontsize=16,color="black",shape="box"];1669 -> 1968[label="",style="solid", color="black", weight=3]; 1670[label="GT <= EQ",fontsize=16,color="black",shape="box"];1670 -> 1969[label="",style="solid", color="black", weight=3]; 1671[label="GT <= GT",fontsize=16,color="black",shape="box"];1671 -> 1970[label="",style="solid", color="black", weight=3]; 1647 -> 17[label="",style="dashed", color="red", weight=0]; 1647[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1647 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1647 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1648 -> 18[label="",style="dashed", color="red", weight=0]; 1648[label="compare vwx26 vwx27",fontsize=16,color="magenta"];1648 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1648 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1672[label="GT",fontsize=16,color="green",shape="box"];1673[label="GT",fontsize=16,color="green",shape="box"];1674[label="GT",fontsize=16,color="green",shape="box"];1675[label="vwx51",fontsize=16,color="green",shape="box"];1676[label="vwx54",fontsize=16,color="green",shape="box"];1677[label="vwx51",fontsize=16,color="green",shape="box"];1678[label="vwx54",fontsize=16,color="green",shape="box"];1679[label="vwx51",fontsize=16,color="green",shape="box"];1680[label="vwx54",fontsize=16,color="green",shape="box"];1681[label="vwx51",fontsize=16,color="green",shape="box"];1682[label="vwx54",fontsize=16,color="green",shape="box"];1683[label="vwx51",fontsize=16,color="green",shape="box"];1684[label="vwx54",fontsize=16,color="green",shape="box"];1685[label="vwx51",fontsize=16,color="green",shape="box"];1686[label="vwx54",fontsize=16,color="green",shape="box"];1687[label="vwx51",fontsize=16,color="green",shape="box"];1688[label="vwx54",fontsize=16,color="green",shape="box"];1689[label="vwx51",fontsize=16,color="green",shape="box"];1690[label="vwx54",fontsize=16,color="green",shape="box"];1691[label="vwx51",fontsize=16,color="green",shape="box"];1692[label="vwx54",fontsize=16,color="green",shape="box"];1693[label="vwx51",fontsize=16,color="green",shape="box"];1694[label="vwx54",fontsize=16,color="green",shape="box"];1695[label="vwx51",fontsize=16,color="green",shape="box"];1696[label="vwx54",fontsize=16,color="green",shape="box"];1697[label="vwx51",fontsize=16,color="green",shape="box"];1698[label="vwx54",fontsize=16,color="green",shape="box"];1699[label="vwx51",fontsize=16,color="green",shape="box"];1700[label="vwx54",fontsize=16,color="green",shape="box"];1701[label="vwx51",fontsize=16,color="green",shape="box"];1702[label="vwx54",fontsize=16,color="green",shape="box"];1710 -> 1006[label="",style="dashed", color="red", weight=0]; 1710[label="vwx52 < vwx55",fontsize=16,color="magenta"];1710 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1007[label="",style="dashed", color="red", weight=0]; 1711[label="vwx52 < vwx55",fontsize=16,color="magenta"];1711 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1008[label="",style="dashed", color="red", weight=0]; 1712[label="vwx52 < vwx55",fontsize=16,color="magenta"];1712 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1712 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1713 -> 1009[label="",style="dashed", color="red", weight=0]; 1713[label="vwx52 < vwx55",fontsize=16,color="magenta"];1713 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1713 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1010[label="",style="dashed", color="red", weight=0]; 1714[label="vwx52 < vwx55",fontsize=16,color="magenta"];1714 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1714 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1011[label="",style="dashed", color="red", weight=0]; 1715[label="vwx52 < vwx55",fontsize=16,color="magenta"];1715 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1012[label="",style="dashed", color="red", weight=0]; 1716[label="vwx52 < vwx55",fontsize=16,color="magenta"];1716 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1716 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1013[label="",style="dashed", color="red", weight=0]; 1717[label="vwx52 < vwx55",fontsize=16,color="magenta"];1717 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1717 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1014[label="",style="dashed", color="red", weight=0]; 1718[label="vwx52 < vwx55",fontsize=16,color="magenta"];1718 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1718 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1015[label="",style="dashed", color="red", weight=0]; 1719[label="vwx52 < vwx55",fontsize=16,color="magenta"];1719 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1719 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1016[label="",style="dashed", color="red", weight=0]; 1720[label="vwx52 < vwx55",fontsize=16,color="magenta"];1720 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1720 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1721 -> 1017[label="",style="dashed", color="red", weight=0]; 1721[label="vwx52 < vwx55",fontsize=16,color="magenta"];1721 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1721 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1722 -> 1018[label="",style="dashed", color="red", weight=0]; 1722[label="vwx52 < vwx55",fontsize=16,color="magenta"];1722 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1723 -> 1019[label="",style="dashed", color="red", weight=0]; 1723[label="vwx52 < vwx55",fontsize=16,color="magenta"];1723 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1724[label="vwx52 == vwx55",fontsize=16,color="blue",shape="box"];3318[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 2003[label="",style="solid", color="blue", weight=3]; 3319[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 2004[label="",style="solid", color="blue", weight=3]; 3320[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 2005[label="",style="solid", color="blue", weight=3]; 3321[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 2006[label="",style="solid", color="blue", weight=3]; 3322[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 2007[label="",style="solid", color="blue", weight=3]; 3323[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2008[label="",style="solid", color="blue", weight=3]; 3324[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2009[label="",style="solid", color="blue", weight=3]; 3325[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2010[label="",style="solid", color="blue", weight=3]; 3326[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2011[label="",style="solid", color="blue", weight=3]; 3327[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2012[label="",style="solid", color="blue", weight=3]; 3328[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2013[label="",style="solid", color="blue", weight=3]; 3329[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2014[label="",style="solid", color="blue", weight=3]; 3330[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2015[label="",style="solid", color="blue", weight=3]; 3331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1724 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2016[label="",style="solid", color="blue", weight=3]; 1725[label="vwx53 <= vwx56",fontsize=16,color="blue",shape="box"];3332[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2017[label="",style="solid", color="blue", weight=3]; 3333[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2018[label="",style="solid", color="blue", weight=3]; 3334[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2019[label="",style="solid", color="blue", weight=3]; 3335[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2020[label="",style="solid", color="blue", weight=3]; 3336[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 2021[label="",style="solid", color="blue", weight=3]; 3337[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 2022[label="",style="solid", color="blue", weight=3]; 3338[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2023[label="",style="solid", color="blue", weight=3]; 3339[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2024[label="",style="solid", color="blue", weight=3]; 3340[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2025[label="",style="solid", color="blue", weight=3]; 3341[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 2026[label="",style="solid", color="blue", weight=3]; 3342[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 2027[label="",style="solid", color="blue", weight=3]; 3343[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 2028[label="",style="solid", color="blue", weight=3]; 3344[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 2029[label="",style="solid", color="blue", weight=3]; 3345[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1725 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 2030[label="",style="solid", color="blue", weight=3]; 1726[label="False || vwx143",fontsize=16,color="black",shape="box"];1726 -> 2031[label="",style="solid", color="black", weight=3]; 1727[label="True || vwx143",fontsize=16,color="black",shape="box"];1727 -> 2032[label="",style="solid", color="black", weight=3]; 1728[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) False",fontsize=16,color="black",shape="box"];1728 -> 2033[label="",style="solid", color="black", weight=3]; 1729[label="compare1 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="black",shape="box"];1729 -> 2034[label="",style="solid", color="black", weight=3]; 1730[label="True",fontsize=16,color="green",shape="box"];1732 -> 797[label="",style="dashed", color="red", weight=0]; 1732[label="primMulNat vwx3000 (Succ vwx4100)",fontsize=16,color="magenta"];1732 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1732 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1731[label="primPlusNat vwx144 (Succ vwx4100)",fontsize=16,color="burlywood",shape="triangle"];3346[label="vwx144/Succ vwx1440",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 2037[label="",style="solid", color="burlywood", weight=3]; 3347[label="vwx144/Zero",fontsize=10,color="white",style="solid",shape="box"];1731 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1733[label="vwx64",fontsize=16,color="green",shape="box"];1734[label="vwx66",fontsize=16,color="green",shape="box"];1735[label="vwx64",fontsize=16,color="green",shape="box"];1736[label="vwx66",fontsize=16,color="green",shape="box"];1737[label="vwx64",fontsize=16,color="green",shape="box"];1738[label="vwx66",fontsize=16,color="green",shape="box"];1739[label="vwx64",fontsize=16,color="green",shape="box"];1740[label="vwx66",fontsize=16,color="green",shape="box"];1741[label="vwx64",fontsize=16,color="green",shape="box"];1742[label="vwx66",fontsize=16,color="green",shape="box"];1743[label="vwx64",fontsize=16,color="green",shape="box"];1744[label="vwx66",fontsize=16,color="green",shape="box"];1745[label="vwx64",fontsize=16,color="green",shape="box"];1746[label="vwx66",fontsize=16,color="green",shape="box"];1747[label="vwx64",fontsize=16,color="green",shape="box"];1748[label="vwx66",fontsize=16,color="green",shape="box"];1749[label="vwx64",fontsize=16,color="green",shape="box"];1750[label="vwx66",fontsize=16,color="green",shape="box"];1751[label="vwx64",fontsize=16,color="green",shape="box"];1752[label="vwx66",fontsize=16,color="green",shape="box"];1753[label="vwx64",fontsize=16,color="green",shape="box"];1754[label="vwx66",fontsize=16,color="green",shape="box"];1755[label="vwx64",fontsize=16,color="green",shape="box"];1756[label="vwx66",fontsize=16,color="green",shape="box"];1757[label="vwx64",fontsize=16,color="green",shape="box"];1758[label="vwx66",fontsize=16,color="green",shape="box"];1759[label="vwx64",fontsize=16,color="green",shape="box"];1760[label="vwx66",fontsize=16,color="green",shape="box"];1761[label="compare0 (vwx114,vwx115) (vwx116,vwx117) otherwise",fontsize=16,color="black",shape="box"];1761 -> 2039[label="",style="solid", color="black", weight=3]; 1762[label="LT",fontsize=16,color="green",shape="box"];1763[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];1763 -> 2040[label="",style="solid", color="black", weight=3]; 1764[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];1764 -> 2041[label="",style="solid", color="black", weight=3]; 1765[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];1765 -> 2042[label="",style="solid", color="black", weight=3]; 1766[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1766 -> 2043[label="",style="solid", color="black", weight=3]; 1767[label="vwx300",fontsize=16,color="green",shape="box"];1768[label="vwx400",fontsize=16,color="green",shape="box"];1769[label="vwx300",fontsize=16,color="green",shape="box"];1770[label="vwx400",fontsize=16,color="green",shape="box"];1771[label="vwx300",fontsize=16,color="green",shape="box"];1772[label="vwx400",fontsize=16,color="green",shape="box"];1773[label="vwx300",fontsize=16,color="green",shape="box"];1774[label="vwx400",fontsize=16,color="green",shape="box"];1775[label="vwx300",fontsize=16,color="green",shape="box"];1776[label="vwx400",fontsize=16,color="green",shape="box"];1777[label="vwx300",fontsize=16,color="green",shape="box"];1778[label="vwx400",fontsize=16,color="green",shape="box"];1779[label="vwx300",fontsize=16,color="green",shape="box"];1780[label="vwx400",fontsize=16,color="green",shape="box"];1781[label="vwx300",fontsize=16,color="green",shape="box"];1782[label="vwx400",fontsize=16,color="green",shape="box"];1783[label="vwx300",fontsize=16,color="green",shape="box"];1784[label="vwx400",fontsize=16,color="green",shape="box"];1785[label="vwx300",fontsize=16,color="green",shape="box"];1786[label="vwx400",fontsize=16,color="green",shape="box"];1787[label="vwx300",fontsize=16,color="green",shape="box"];1788[label="vwx400",fontsize=16,color="green",shape="box"];1789[label="vwx300",fontsize=16,color="green",shape="box"];1790[label="vwx400",fontsize=16,color="green",shape="box"];1791[label="vwx300",fontsize=16,color="green",shape="box"];1792[label="vwx400",fontsize=16,color="green",shape="box"];1793[label="vwx300",fontsize=16,color="green",shape="box"];1794[label="vwx400",fontsize=16,color="green",shape="box"];1795[label="vwx300",fontsize=16,color="green",shape="box"];1796[label="vwx400",fontsize=16,color="green",shape="box"];1797[label="vwx300",fontsize=16,color="green",shape="box"];1798[label="vwx400",fontsize=16,color="green",shape="box"];1799[label="vwx301",fontsize=16,color="green",shape="box"];1800[label="vwx401",fontsize=16,color="green",shape="box"];1801[label="vwx301",fontsize=16,color="green",shape="box"];1802[label="vwx401",fontsize=16,color="green",shape="box"];1803[label="vwx300",fontsize=16,color="green",shape="box"];1804[label="vwx400",fontsize=16,color="green",shape="box"];1805[label="vwx300",fontsize=16,color="green",shape="box"];1806[label="vwx400",fontsize=16,color="green",shape="box"];1807[label="vwx300",fontsize=16,color="green",shape="box"];1808[label="vwx400",fontsize=16,color="green",shape="box"];1809[label="vwx300",fontsize=16,color="green",shape="box"];1810[label="vwx400",fontsize=16,color="green",shape="box"];1811[label="vwx300",fontsize=16,color="green",shape="box"];1812[label="vwx400",fontsize=16,color="green",shape="box"];1813[label="vwx300",fontsize=16,color="green",shape="box"];1814[label="vwx400",fontsize=16,color="green",shape="box"];1815[label="vwx300",fontsize=16,color="green",shape="box"];1816[label="vwx400",fontsize=16,color="green",shape="box"];1817[label="vwx300",fontsize=16,color="green",shape="box"];1818[label="vwx400",fontsize=16,color="green",shape="box"];1819[label="vwx300",fontsize=16,color="green",shape="box"];1820[label="vwx400",fontsize=16,color="green",shape="box"];1821[label="vwx300",fontsize=16,color="green",shape="box"];1822[label="vwx400",fontsize=16,color="green",shape="box"];1823[label="vwx300",fontsize=16,color="green",shape="box"];1824[label="vwx400",fontsize=16,color="green",shape="box"];1825[label="vwx300",fontsize=16,color="green",shape="box"];1826[label="vwx400",fontsize=16,color="green",shape="box"];1827[label="vwx300",fontsize=16,color="green",shape="box"];1828[label="vwx400",fontsize=16,color="green",shape="box"];1829[label="vwx300",fontsize=16,color="green",shape="box"];1830[label="vwx400",fontsize=16,color="green",shape="box"];1831[label="vwx301",fontsize=16,color="green",shape="box"];1832[label="vwx401",fontsize=16,color="green",shape="box"];1833[label="vwx301",fontsize=16,color="green",shape="box"];1834[label="vwx401",fontsize=16,color="green",shape="box"];1835[label="vwx301",fontsize=16,color="green",shape="box"];1836[label="vwx401",fontsize=16,color="green",shape="box"];1837[label="vwx301",fontsize=16,color="green",shape="box"];1838[label="vwx401",fontsize=16,color="green",shape="box"];1839[label="vwx301",fontsize=16,color="green",shape="box"];1840[label="vwx401",fontsize=16,color="green",shape="box"];1841[label="vwx301",fontsize=16,color="green",shape="box"];1842[label="vwx401",fontsize=16,color="green",shape="box"];1843[label="vwx301",fontsize=16,color="green",shape="box"];1844[label="vwx401",fontsize=16,color="green",shape="box"];1845[label="vwx301",fontsize=16,color="green",shape="box"];1846[label="vwx401",fontsize=16,color="green",shape="box"];1847[label="vwx301",fontsize=16,color="green",shape="box"];1848[label="vwx401",fontsize=16,color="green",shape="box"];1849[label="vwx301",fontsize=16,color="green",shape="box"];1850[label="vwx401",fontsize=16,color="green",shape="box"];1851[label="vwx301",fontsize=16,color="green",shape="box"];1852[label="vwx401",fontsize=16,color="green",shape="box"];1853[label="vwx301",fontsize=16,color="green",shape="box"];1854[label="vwx401",fontsize=16,color="green",shape="box"];1855[label="vwx301",fontsize=16,color="green",shape="box"];1856[label="vwx401",fontsize=16,color="green",shape="box"];1857[label="vwx301",fontsize=16,color="green",shape="box"];1858[label="vwx401",fontsize=16,color="green",shape="box"];1859[label="vwx401",fontsize=16,color="green",shape="box"];1860[label="vwx300",fontsize=16,color="green",shape="box"];1861[label="vwx400",fontsize=16,color="green",shape="box"];1862[label="vwx301",fontsize=16,color="green",shape="box"];1863 -> 1196[label="",style="dashed", color="red", weight=0]; 1863[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1863 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1863 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1864[label="False",fontsize=16,color="green",shape="box"];1865[label="False",fontsize=16,color="green",shape="box"];1866[label="True",fontsize=16,color="green",shape="box"];1867[label="False",fontsize=16,color="green",shape="box"];1868[label="True",fontsize=16,color="green",shape="box"];1869 -> 1196[label="",style="dashed", color="red", weight=0]; 1869[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1869 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1869 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1870[label="False",fontsize=16,color="green",shape="box"];1871[label="False",fontsize=16,color="green",shape="box"];1872[label="True",fontsize=16,color="green",shape="box"];1873[label="False",fontsize=16,color="green",shape="box"];1874[label="True",fontsize=16,color="green",shape="box"];1875[label="vwx300",fontsize=16,color="green",shape="box"];1876[label="vwx400",fontsize=16,color="green",shape="box"];1877[label="vwx300",fontsize=16,color="green",shape="box"];1878[label="vwx400",fontsize=16,color="green",shape="box"];1879[label="vwx300",fontsize=16,color="green",shape="box"];1880[label="vwx400",fontsize=16,color="green",shape="box"];1881[label="vwx300",fontsize=16,color="green",shape="box"];1882[label="vwx400",fontsize=16,color="green",shape="box"];1883[label="vwx300",fontsize=16,color="green",shape="box"];1884[label="vwx400",fontsize=16,color="green",shape="box"];1885[label="vwx300",fontsize=16,color="green",shape="box"];1886[label="vwx400",fontsize=16,color="green",shape="box"];1887[label="vwx300",fontsize=16,color="green",shape="box"];1888[label="vwx400",fontsize=16,color="green",shape="box"];1889[label="vwx300",fontsize=16,color="green",shape="box"];1890[label="vwx400",fontsize=16,color="green",shape="box"];1891[label="vwx300",fontsize=16,color="green",shape="box"];1892[label="vwx400",fontsize=16,color="green",shape="box"];1893[label="vwx300",fontsize=16,color="green",shape="box"];1894[label="vwx400",fontsize=16,color="green",shape="box"];1895[label="vwx300",fontsize=16,color="green",shape="box"];1896[label="vwx400",fontsize=16,color="green",shape="box"];1897[label="vwx300",fontsize=16,color="green",shape="box"];1898[label="vwx400",fontsize=16,color="green",shape="box"];1899[label="vwx300",fontsize=16,color="green",shape="box"];1900[label="vwx400",fontsize=16,color="green",shape="box"];1901[label="vwx300",fontsize=16,color="green",shape="box"];1902[label="vwx400",fontsize=16,color="green",shape="box"];1903 -> 253[label="",style="dashed", color="red", weight=0]; 1903[label="vwx301 == vwx401",fontsize=16,color="magenta"];1903 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1904 -> 254[label="",style="dashed", color="red", weight=0]; 1904[label="vwx301 == vwx401",fontsize=16,color="magenta"];1904 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1905 -> 255[label="",style="dashed", color="red", weight=0]; 1905[label="vwx301 == vwx401",fontsize=16,color="magenta"];1905 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1906 -> 256[label="",style="dashed", color="red", weight=0]; 1906[label="vwx301 == vwx401",fontsize=16,color="magenta"];1906 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1907 -> 257[label="",style="dashed", color="red", weight=0]; 1907[label="vwx301 == vwx401",fontsize=16,color="magenta"];1907 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1908 -> 258[label="",style="dashed", color="red", weight=0]; 1908[label="vwx301 == vwx401",fontsize=16,color="magenta"];1908 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1909 -> 259[label="",style="dashed", color="red", weight=0]; 1909[label="vwx301 == vwx401",fontsize=16,color="magenta"];1909 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1910 -> 260[label="",style="dashed", color="red", weight=0]; 1910[label="vwx301 == vwx401",fontsize=16,color="magenta"];1910 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1911 -> 261[label="",style="dashed", color="red", weight=0]; 1911[label="vwx301 == vwx401",fontsize=16,color="magenta"];1911 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1912 -> 262[label="",style="dashed", color="red", weight=0]; 1912[label="vwx301 == vwx401",fontsize=16,color="magenta"];1912 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1912 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1913 -> 263[label="",style="dashed", color="red", weight=0]; 1913[label="vwx301 == vwx401",fontsize=16,color="magenta"];1913 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1913 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1914 -> 264[label="",style="dashed", color="red", weight=0]; 1914[label="vwx301 == vwx401",fontsize=16,color="magenta"];1914 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1915 -> 265[label="",style="dashed", color="red", weight=0]; 1915[label="vwx301 == vwx401",fontsize=16,color="magenta"];1915 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1916 -> 266[label="",style="dashed", color="red", weight=0]; 1916[label="vwx301 == vwx401",fontsize=16,color="magenta"];1916 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1917 -> 253[label="",style="dashed", color="red", weight=0]; 1917[label="vwx302 == vwx402",fontsize=16,color="magenta"];1917 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1918 -> 254[label="",style="dashed", color="red", weight=0]; 1918[label="vwx302 == vwx402",fontsize=16,color="magenta"];1918 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1919 -> 255[label="",style="dashed", color="red", weight=0]; 1919[label="vwx302 == vwx402",fontsize=16,color="magenta"];1919 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1920 -> 256[label="",style="dashed", color="red", weight=0]; 1920[label="vwx302 == vwx402",fontsize=16,color="magenta"];1920 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1921 -> 257[label="",style="dashed", color="red", weight=0]; 1921[label="vwx302 == vwx402",fontsize=16,color="magenta"];1921 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1922 -> 258[label="",style="dashed", color="red", weight=0]; 1922[label="vwx302 == vwx402",fontsize=16,color="magenta"];1922 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1923 -> 259[label="",style="dashed", color="red", weight=0]; 1923[label="vwx302 == vwx402",fontsize=16,color="magenta"];1923 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1924 -> 260[label="",style="dashed", color="red", weight=0]; 1924[label="vwx302 == vwx402",fontsize=16,color="magenta"];1924 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1925 -> 261[label="",style="dashed", color="red", weight=0]; 1925[label="vwx302 == vwx402",fontsize=16,color="magenta"];1925 -> 2092[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2093[label="",style="dashed", color="magenta", weight=3]; 1926 -> 262[label="",style="dashed", color="red", weight=0]; 1926[label="vwx302 == vwx402",fontsize=16,color="magenta"];1926 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1927 -> 263[label="",style="dashed", color="red", weight=0]; 1927[label="vwx302 == vwx402",fontsize=16,color="magenta"];1927 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1928 -> 264[label="",style="dashed", color="red", weight=0]; 1928[label="vwx302 == vwx402",fontsize=16,color="magenta"];1928 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1929 -> 265[label="",style="dashed", color="red", weight=0]; 1929[label="vwx302 == vwx402",fontsize=16,color="magenta"];1929 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1930 -> 266[label="",style="dashed", color="red", weight=0]; 1930[label="vwx302 == vwx402",fontsize=16,color="magenta"];1930 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1931[label="vwx401",fontsize=16,color="green",shape="box"];1932[label="vwx300",fontsize=16,color="green",shape="box"];1933[label="vwx400",fontsize=16,color="green",shape="box"];1934[label="vwx301",fontsize=16,color="green",shape="box"];1935[label="vwx26",fontsize=16,color="green",shape="box"];1936[label="vwx27",fontsize=16,color="green",shape="box"];1937 -> 2104[label="",style="dashed", color="red", weight=0]; 1937[label="not (vwx138 == GT)",fontsize=16,color="magenta"];1937 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1938[label="vwx26",fontsize=16,color="green",shape="box"];1939[label="vwx27",fontsize=16,color="green",shape="box"];1940 -> 1705[label="",style="dashed", color="red", weight=0]; 1940[label="vwx260 < vwx270 || vwx260 == vwx270 && vwx261 <= vwx271",fontsize=16,color="magenta"];1940 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1941[label="vwx26",fontsize=16,color="green",shape="box"];1942[label="vwx27",fontsize=16,color="green",shape="box"];1943[label="vwx26",fontsize=16,color="green",shape="box"];1944[label="vwx27",fontsize=16,color="green",shape="box"];1945[label="True",fontsize=16,color="green",shape="box"];1946[label="True",fontsize=16,color="green",shape="box"];1947[label="False",fontsize=16,color="green",shape="box"];1948[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3348[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 2108[label="",style="solid", color="blue", weight=3]; 3349[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 2109[label="",style="solid", color="blue", weight=3]; 3350[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 2110[label="",style="solid", color="blue", weight=3]; 3351[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 2111[label="",style="solid", color="blue", weight=3]; 3352[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 2112[label="",style="solid", color="blue", weight=3]; 3353[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 2113[label="",style="solid", color="blue", weight=3]; 3354[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 2114[label="",style="solid", color="blue", weight=3]; 3355[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 2115[label="",style="solid", color="blue", weight=3]; 3356[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 2116[label="",style="solid", color="blue", weight=3]; 3357[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 2117[label="",style="solid", color="blue", weight=3]; 3358[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 2118[label="",style="solid", color="blue", weight=3]; 3359[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 2119[label="",style="solid", color="blue", weight=3]; 3360[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 2120[label="",style="solid", color="blue", weight=3]; 3361[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1948 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 2121[label="",style="solid", color="blue", weight=3]; 1949[label="True",fontsize=16,color="green",shape="box"];1950[label="True",fontsize=16,color="green",shape="box"];1951[label="False",fontsize=16,color="green",shape="box"];1952[label="True",fontsize=16,color="green",shape="box"];1953[label="vwx26",fontsize=16,color="green",shape="box"];1954[label="vwx27",fontsize=16,color="green",shape="box"];1955[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3362[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 2122[label="",style="solid", color="blue", weight=3]; 3363[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 2123[label="",style="solid", color="blue", weight=3]; 3364[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 2124[label="",style="solid", color="blue", weight=3]; 3365[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 2125[label="",style="solid", color="blue", weight=3]; 3366[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 2126[label="",style="solid", color="blue", weight=3]; 3367[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 2127[label="",style="solid", color="blue", weight=3]; 3368[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 2128[label="",style="solid", color="blue", weight=3]; 3369[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2129[label="",style="solid", color="blue", weight=3]; 3370[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2130[label="",style="solid", color="blue", weight=3]; 3371[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2131[label="",style="solid", color="blue", weight=3]; 3372[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2132[label="",style="solid", color="blue", weight=3]; 3373[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2133[label="",style="solid", color="blue", weight=3]; 3374[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2134[label="",style="solid", color="blue", weight=3]; 3375[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 2135[label="",style="solid", color="blue", weight=3]; 1956[label="True",fontsize=16,color="green",shape="box"];1957[label="False",fontsize=16,color="green",shape="box"];1958[label="vwx260 <= vwx270",fontsize=16,color="blue",shape="box"];3376[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 2136[label="",style="solid", color="blue", weight=3]; 3377[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 2137[label="",style="solid", color="blue", weight=3]; 3378[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 2138[label="",style="solid", color="blue", weight=3]; 3379[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 2139[label="",style="solid", color="blue", weight=3]; 3380[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 2140[label="",style="solid", color="blue", weight=3]; 3381[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 2141[label="",style="solid", color="blue", weight=3]; 3382[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 2142[label="",style="solid", color="blue", weight=3]; 3383[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 2143[label="",style="solid", color="blue", weight=3]; 3384[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 2144[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2145[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2146[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2147[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2148[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2149[label="",style="solid", color="blue", weight=3]; 1959 -> 1705[label="",style="dashed", color="red", weight=0]; 1959[label="vwx260 < vwx270 || vwx260 == vwx270 && (vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272)",fontsize=16,color="magenta"];1959 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1959 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1960[label="vwx26",fontsize=16,color="green",shape="box"];1961[label="vwx27",fontsize=16,color="green",shape="box"];1962[label="True",fontsize=16,color="green",shape="box"];1963[label="True",fontsize=16,color="green",shape="box"];1964[label="True",fontsize=16,color="green",shape="box"];1965[label="False",fontsize=16,color="green",shape="box"];1966[label="True",fontsize=16,color="green",shape="box"];1967[label="True",fontsize=16,color="green",shape="box"];1968[label="False",fontsize=16,color="green",shape="box"];1969[label="False",fontsize=16,color="green",shape="box"];1970[label="True",fontsize=16,color="green",shape="box"];1971[label="vwx26",fontsize=16,color="green",shape="box"];1972[label="vwx27",fontsize=16,color="green",shape="box"];1973[label="vwx26",fontsize=16,color="green",shape="box"];1974[label="vwx27",fontsize=16,color="green",shape="box"];1975[label="vwx55",fontsize=16,color="green",shape="box"];1976[label="vwx52",fontsize=16,color="green",shape="box"];1977[label="vwx55",fontsize=16,color="green",shape="box"];1978[label="vwx52",fontsize=16,color="green",shape="box"];1979[label="vwx55",fontsize=16,color="green",shape="box"];1980[label="vwx52",fontsize=16,color="green",shape="box"];1981[label="vwx55",fontsize=16,color="green",shape="box"];1982[label="vwx52",fontsize=16,color="green",shape="box"];1983[label="vwx55",fontsize=16,color="green",shape="box"];1984[label="vwx52",fontsize=16,color="green",shape="box"];1985[label="vwx55",fontsize=16,color="green",shape="box"];1986[label="vwx52",fontsize=16,color="green",shape="box"];1987[label="vwx55",fontsize=16,color="green",shape="box"];1988[label="vwx52",fontsize=16,color="green",shape="box"];1989[label="vwx55",fontsize=16,color="green",shape="box"];1990[label="vwx52",fontsize=16,color="green",shape="box"];1991[label="vwx55",fontsize=16,color="green",shape="box"];1992[label="vwx52",fontsize=16,color="green",shape="box"];1993[label="vwx55",fontsize=16,color="green",shape="box"];1994[label="vwx52",fontsize=16,color="green",shape="box"];1995[label="vwx55",fontsize=16,color="green",shape="box"];1996[label="vwx52",fontsize=16,color="green",shape="box"];1997[label="vwx55",fontsize=16,color="green",shape="box"];1998[label="vwx52",fontsize=16,color="green",shape="box"];1999[label="vwx55",fontsize=16,color="green",shape="box"];2000[label="vwx52",fontsize=16,color="green",shape="box"];2001[label="vwx55",fontsize=16,color="green",shape="box"];2002[label="vwx52",fontsize=16,color="green",shape="box"];2003 -> 260[label="",style="dashed", color="red", weight=0]; 2003[label="vwx52 == vwx55",fontsize=16,color="magenta"];2003 -> 2152[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2153[label="",style="dashed", color="magenta", weight=3]; 2004 -> 255[label="",style="dashed", color="red", weight=0]; 2004[label="vwx52 == vwx55",fontsize=16,color="magenta"];2004 -> 2154[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2005 -> 261[label="",style="dashed", color="red", weight=0]; 2005[label="vwx52 == vwx55",fontsize=16,color="magenta"];2005 -> 2156[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2157[label="",style="dashed", color="magenta", weight=3]; 2006 -> 257[label="",style="dashed", color="red", weight=0]; 2006[label="vwx52 == vwx55",fontsize=16,color="magenta"];2006 -> 2158[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2007 -> 266[label="",style="dashed", color="red", weight=0]; 2007[label="vwx52 == vwx55",fontsize=16,color="magenta"];2007 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2161[label="",style="dashed", color="magenta", weight=3]; 2008 -> 262[label="",style="dashed", color="red", weight=0]; 2008[label="vwx52 == vwx55",fontsize=16,color="magenta"];2008 -> 2162[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2163[label="",style="dashed", color="magenta", weight=3]; 2009 -> 253[label="",style="dashed", color="red", weight=0]; 2009[label="vwx52 == vwx55",fontsize=16,color="magenta"];2009 -> 2164[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2010 -> 259[label="",style="dashed", color="red", weight=0]; 2010[label="vwx52 == vwx55",fontsize=16,color="magenta"];2010 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2011 -> 258[label="",style="dashed", color="red", weight=0]; 2011[label="vwx52 == vwx55",fontsize=16,color="magenta"];2011 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2012 -> 265[label="",style="dashed", color="red", weight=0]; 2012[label="vwx52 == vwx55",fontsize=16,color="magenta"];2012 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2013 -> 256[label="",style="dashed", color="red", weight=0]; 2013[label="vwx52 == vwx55",fontsize=16,color="magenta"];2013 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2014 -> 254[label="",style="dashed", color="red", weight=0]; 2014[label="vwx52 == vwx55",fontsize=16,color="magenta"];2014 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2015 -> 264[label="",style="dashed", color="red", weight=0]; 2015[label="vwx52 == vwx55",fontsize=16,color="magenta"];2015 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2016 -> 263[label="",style="dashed", color="red", weight=0]; 2016[label="vwx52 == vwx55",fontsize=16,color="magenta"];2016 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2017 -> 1061[label="",style="dashed", color="red", weight=0]; 2017[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2017 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2018 -> 1062[label="",style="dashed", color="red", weight=0]; 2018[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2018 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2019 -> 1063[label="",style="dashed", color="red", weight=0]; 2019[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2019 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2020 -> 1064[label="",style="dashed", color="red", weight=0]; 2020[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2020 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1065[label="",style="dashed", color="red", weight=0]; 2021[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2021 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1066[label="",style="dashed", color="red", weight=0]; 2022[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2022 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1067[label="",style="dashed", color="red", weight=0]; 2023[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2023 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1068[label="",style="dashed", color="red", weight=0]; 2024[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2024 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2025 -> 1069[label="",style="dashed", color="red", weight=0]; 2025[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2025 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2026 -> 1070[label="",style="dashed", color="red", weight=0]; 2026[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2026 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2027 -> 1071[label="",style="dashed", color="red", weight=0]; 2027[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2027 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1072[label="",style="dashed", color="red", weight=0]; 2028[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2028 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2029 -> 1073[label="",style="dashed", color="red", weight=0]; 2029[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2029 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1074[label="",style="dashed", color="red", weight=0]; 2030[label="vwx53 <= vwx56",fontsize=16,color="magenta"];2030 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2031[label="vwx143",fontsize=16,color="green",shape="box"];2032[label="True",fontsize=16,color="green",shape="box"];2033[label="compare0 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) otherwise",fontsize=16,color="black",shape="box"];2033 -> 2208[label="",style="solid", color="black", weight=3]; 2034[label="LT",fontsize=16,color="green",shape="box"];2035[label="Succ vwx4100",fontsize=16,color="green",shape="box"];2036[label="vwx3000",fontsize=16,color="green",shape="box"];2037[label="primPlusNat (Succ vwx1440) (Succ vwx4100)",fontsize=16,color="black",shape="box"];2037 -> 2209[label="",style="solid", color="black", weight=3]; 2038[label="primPlusNat Zero (Succ vwx4100)",fontsize=16,color="black",shape="box"];2038 -> 2210[label="",style="solid", color="black", weight=3]; 2039[label="compare0 (vwx114,vwx115) (vwx116,vwx117) True",fontsize=16,color="black",shape="box"];2039 -> 2211[label="",style="solid", color="black", weight=3]; 2040 -> 1196[label="",style="dashed", color="red", weight=0]; 2040[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];2040 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2041[label="False",fontsize=16,color="green",shape="box"];2042[label="False",fontsize=16,color="green",shape="box"];2043[label="True",fontsize=16,color="green",shape="box"];2044[label="vwx3000",fontsize=16,color="green",shape="box"];2045[label="vwx4000",fontsize=16,color="green",shape="box"];2046[label="vwx3000",fontsize=16,color="green",shape="box"];2047[label="vwx4000",fontsize=16,color="green",shape="box"];2048[label="vwx301",fontsize=16,color="green",shape="box"];2049[label="vwx401",fontsize=16,color="green",shape="box"];2050[label="vwx301",fontsize=16,color="green",shape="box"];2051[label="vwx401",fontsize=16,color="green",shape="box"];2052[label="vwx301",fontsize=16,color="green",shape="box"];2053[label="vwx401",fontsize=16,color="green",shape="box"];2054[label="vwx301",fontsize=16,color="green",shape="box"];2055[label="vwx401",fontsize=16,color="green",shape="box"];2056[label="vwx301",fontsize=16,color="green",shape="box"];2057[label="vwx401",fontsize=16,color="green",shape="box"];2058[label="vwx301",fontsize=16,color="green",shape="box"];2059[label="vwx401",fontsize=16,color="green",shape="box"];2060[label="vwx301",fontsize=16,color="green",shape="box"];2061[label="vwx401",fontsize=16,color="green",shape="box"];2062[label="vwx301",fontsize=16,color="green",shape="box"];2063[label="vwx401",fontsize=16,color="green",shape="box"];2064[label="vwx301",fontsize=16,color="green",shape="box"];2065[label="vwx401",fontsize=16,color="green",shape="box"];2066[label="vwx301",fontsize=16,color="green",shape="box"];2067[label="vwx401",fontsize=16,color="green",shape="box"];2068[label="vwx301",fontsize=16,color="green",shape="box"];2069[label="vwx401",fontsize=16,color="green",shape="box"];2070[label="vwx301",fontsize=16,color="green",shape="box"];2071[label="vwx401",fontsize=16,color="green",shape="box"];2072[label="vwx301",fontsize=16,color="green",shape="box"];2073[label="vwx401",fontsize=16,color="green",shape="box"];2074[label="vwx301",fontsize=16,color="green",shape="box"];2075[label="vwx401",fontsize=16,color="green",shape="box"];2076[label="vwx302",fontsize=16,color="green",shape="box"];2077[label="vwx402",fontsize=16,color="green",shape="box"];2078[label="vwx302",fontsize=16,color="green",shape="box"];2079[label="vwx402",fontsize=16,color="green",shape="box"];2080[label="vwx302",fontsize=16,color="green",shape="box"];2081[label="vwx402",fontsize=16,color="green",shape="box"];2082[label="vwx302",fontsize=16,color="green",shape="box"];2083[label="vwx402",fontsize=16,color="green",shape="box"];2084[label="vwx302",fontsize=16,color="green",shape="box"];2085[label="vwx402",fontsize=16,color="green",shape="box"];2086[label="vwx302",fontsize=16,color="green",shape="box"];2087[label="vwx402",fontsize=16,color="green",shape="box"];2088[label="vwx302",fontsize=16,color="green",shape="box"];2089[label="vwx402",fontsize=16,color="green",shape="box"];2090[label="vwx302",fontsize=16,color="green",shape="box"];2091[label="vwx402",fontsize=16,color="green",shape="box"];2092[label="vwx302",fontsize=16,color="green",shape="box"];2093[label="vwx402",fontsize=16,color="green",shape="box"];2094[label="vwx302",fontsize=16,color="green",shape="box"];2095[label="vwx402",fontsize=16,color="green",shape="box"];2096[label="vwx302",fontsize=16,color="green",shape="box"];2097[label="vwx402",fontsize=16,color="green",shape="box"];2098[label="vwx302",fontsize=16,color="green",shape="box"];2099[label="vwx402",fontsize=16,color="green",shape="box"];2100[label="vwx302",fontsize=16,color="green",shape="box"];2101[label="vwx402",fontsize=16,color="green",shape="box"];2102[label="vwx302",fontsize=16,color="green",shape="box"];2103[label="vwx402",fontsize=16,color="green",shape="box"];2105 -> 254[label="",style="dashed", color="red", weight=0]; 2105[label="vwx138 == GT",fontsize=16,color="magenta"];2105 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2104[label="not vwx145",fontsize=16,color="burlywood",shape="triangle"];3390[label="vwx145/False",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 2216[label="",style="solid", color="burlywood", weight=3]; 3391[label="vwx145/True",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 2217[label="",style="solid", color="burlywood", weight=3]; 2106[label="vwx260 < vwx270",fontsize=16,color="blue",shape="box"];3392[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2218[label="",style="solid", color="blue", weight=3]; 3393[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2219[label="",style="solid", color="blue", weight=3]; 3394[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2220[label="",style="solid", color="blue", weight=3]; 3395[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2221[label="",style="solid", color="blue", weight=3]; 3396[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2222[label="",style="solid", color="blue", weight=3]; 3397[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2223[label="",style="solid", color="blue", weight=3]; 3398[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2224[label="",style="solid", color="blue", weight=3]; 3399[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2225[label="",style="solid", color="blue", weight=3]; 3400[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2226[label="",style="solid", color="blue", weight=3]; 3401[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2227[label="",style="solid", color="blue", weight=3]; 3402[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2228[label="",style="solid", color="blue", weight=3]; 3403[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2229[label="",style="solid", color="blue", weight=3]; 3404[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2230[label="",style="solid", color="blue", weight=3]; 3405[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2106 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2231[label="",style="solid", color="blue", weight=3]; 2107 -> 733[label="",style="dashed", color="red", weight=0]; 2107[label="vwx260 == vwx270 && vwx261 <= vwx271",fontsize=16,color="magenta"];2107 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2108 -> 1061[label="",style="dashed", color="red", weight=0]; 2108[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2108 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2109 -> 1062[label="",style="dashed", color="red", weight=0]; 2109[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2109 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2110 -> 1063[label="",style="dashed", color="red", weight=0]; 2110[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2110 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2111 -> 1064[label="",style="dashed", color="red", weight=0]; 2111[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2111 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2112 -> 1065[label="",style="dashed", color="red", weight=0]; 2112[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2112 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2113 -> 1066[label="",style="dashed", color="red", weight=0]; 2113[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2113 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2114 -> 1067[label="",style="dashed", color="red", weight=0]; 2114[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2114 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2115 -> 1068[label="",style="dashed", color="red", weight=0]; 2115[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2115 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1069[label="",style="dashed", color="red", weight=0]; 2116[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2116 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2117 -> 1070[label="",style="dashed", color="red", weight=0]; 2117[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2117 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2118 -> 1071[label="",style="dashed", color="red", weight=0]; 2118[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2118 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2119 -> 1072[label="",style="dashed", color="red", weight=0]; 2119[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2119 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2120 -> 1073[label="",style="dashed", color="red", weight=0]; 2120[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2120 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2121 -> 1074[label="",style="dashed", color="red", weight=0]; 2121[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2121 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2122 -> 1061[label="",style="dashed", color="red", weight=0]; 2122[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2122 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2123 -> 1062[label="",style="dashed", color="red", weight=0]; 2123[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2123 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2124 -> 1063[label="",style="dashed", color="red", weight=0]; 2124[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2124 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2125 -> 1064[label="",style="dashed", color="red", weight=0]; 2125[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2125 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1065[label="",style="dashed", color="red", weight=0]; 2126[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2126 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2127 -> 1066[label="",style="dashed", color="red", weight=0]; 2127[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2127 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2128 -> 1067[label="",style="dashed", color="red", weight=0]; 2128[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2128 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2129 -> 1068[label="",style="dashed", color="red", weight=0]; 2129[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2129 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2130 -> 1069[label="",style="dashed", color="red", weight=0]; 2130[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2130 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2131 -> 1070[label="",style="dashed", color="red", weight=0]; 2131[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2131 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2132 -> 1071[label="",style="dashed", color="red", weight=0]; 2132[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2132 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2133 -> 1072[label="",style="dashed", color="red", weight=0]; 2133[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2133 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2134 -> 1073[label="",style="dashed", color="red", weight=0]; 2134[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2134 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2135 -> 1074[label="",style="dashed", color="red", weight=0]; 2135[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2135 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2136 -> 1061[label="",style="dashed", color="red", weight=0]; 2136[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2136 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2137 -> 1062[label="",style="dashed", color="red", weight=0]; 2137[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2137 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2138 -> 1063[label="",style="dashed", color="red", weight=0]; 2138[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2138 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2139 -> 1064[label="",style="dashed", color="red", weight=0]; 2139[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2139 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2140 -> 1065[label="",style="dashed", color="red", weight=0]; 2140[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2140 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2140 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2141 -> 1066[label="",style="dashed", color="red", weight=0]; 2141[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2141 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2141 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2142 -> 1067[label="",style="dashed", color="red", weight=0]; 2142[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2142 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2142 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2143 -> 1068[label="",style="dashed", color="red", weight=0]; 2143[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2143 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2144 -> 1069[label="",style="dashed", color="red", weight=0]; 2144[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2144 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2144 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2145 -> 1070[label="",style="dashed", color="red", weight=0]; 2145[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2145 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2146 -> 1071[label="",style="dashed", color="red", weight=0]; 2146[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2146 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2147 -> 1072[label="",style="dashed", color="red", weight=0]; 2147[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2147 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2148 -> 1073[label="",style="dashed", color="red", weight=0]; 2148[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2148 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2149 -> 1074[label="",style="dashed", color="red", weight=0]; 2149[label="vwx260 <= vwx270",fontsize=16,color="magenta"];2149 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2150[label="vwx260 < vwx270",fontsize=16,color="blue",shape="box"];3406[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2318[label="",style="solid", color="blue", weight=3]; 3407[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2319[label="",style="solid", color="blue", weight=3]; 3408[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2320[label="",style="solid", color="blue", weight=3]; 3409[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2321[label="",style="solid", color="blue", weight=3]; 3410[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2322[label="",style="solid", color="blue", weight=3]; 3411[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2323[label="",style="solid", color="blue", weight=3]; 3412[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2324[label="",style="solid", color="blue", weight=3]; 3413[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2325[label="",style="solid", color="blue", weight=3]; 3414[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2326[label="",style="solid", color="blue", weight=3]; 3415[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2327[label="",style="solid", color="blue", weight=3]; 3416[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2328[label="",style="solid", color="blue", weight=3]; 3417[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2329[label="",style="solid", color="blue", weight=3]; 3418[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2330[label="",style="solid", color="blue", weight=3]; 3419[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2331[label="",style="solid", color="blue", weight=3]; 2151 -> 733[label="",style="dashed", color="red", weight=0]; 2151[label="vwx260 == vwx270 && (vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272)",fontsize=16,color="magenta"];2151 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2152[label="vwx52",fontsize=16,color="green",shape="box"];2153[label="vwx55",fontsize=16,color="green",shape="box"];2154[label="vwx52",fontsize=16,color="green",shape="box"];2155[label="vwx55",fontsize=16,color="green",shape="box"];2156[label="vwx52",fontsize=16,color="green",shape="box"];2157[label="vwx55",fontsize=16,color="green",shape="box"];2158[label="vwx52",fontsize=16,color="green",shape="box"];2159[label="vwx55",fontsize=16,color="green",shape="box"];2160[label="vwx52",fontsize=16,color="green",shape="box"];2161[label="vwx55",fontsize=16,color="green",shape="box"];2162[label="vwx52",fontsize=16,color="green",shape="box"];2163[label="vwx55",fontsize=16,color="green",shape="box"];2164[label="vwx52",fontsize=16,color="green",shape="box"];2165[label="vwx55",fontsize=16,color="green",shape="box"];2166[label="vwx52",fontsize=16,color="green",shape="box"];2167[label="vwx55",fontsize=16,color="green",shape="box"];2168[label="vwx52",fontsize=16,color="green",shape="box"];2169[label="vwx55",fontsize=16,color="green",shape="box"];2170[label="vwx52",fontsize=16,color="green",shape="box"];2171[label="vwx55",fontsize=16,color="green",shape="box"];2172[label="vwx52",fontsize=16,color="green",shape="box"];2173[label="vwx55",fontsize=16,color="green",shape="box"];2174[label="vwx52",fontsize=16,color="green",shape="box"];2175[label="vwx55",fontsize=16,color="green",shape="box"];2176[label="vwx52",fontsize=16,color="green",shape="box"];2177[label="vwx55",fontsize=16,color="green",shape="box"];2178[label="vwx52",fontsize=16,color="green",shape="box"];2179[label="vwx55",fontsize=16,color="green",shape="box"];2180[label="vwx56",fontsize=16,color="green",shape="box"];2181[label="vwx53",fontsize=16,color="green",shape="box"];2182[label="vwx56",fontsize=16,color="green",shape="box"];2183[label="vwx53",fontsize=16,color="green",shape="box"];2184[label="vwx56",fontsize=16,color="green",shape="box"];2185[label="vwx53",fontsize=16,color="green",shape="box"];2186[label="vwx56",fontsize=16,color="green",shape="box"];2187[label="vwx53",fontsize=16,color="green",shape="box"];2188[label="vwx56",fontsize=16,color="green",shape="box"];2189[label="vwx53",fontsize=16,color="green",shape="box"];2190[label="vwx56",fontsize=16,color="green",shape="box"];2191[label="vwx53",fontsize=16,color="green",shape="box"];2192[label="vwx56",fontsize=16,color="green",shape="box"];2193[label="vwx53",fontsize=16,color="green",shape="box"];2194[label="vwx56",fontsize=16,color="green",shape="box"];2195[label="vwx53",fontsize=16,color="green",shape="box"];2196[label="vwx56",fontsize=16,color="green",shape="box"];2197[label="vwx53",fontsize=16,color="green",shape="box"];2198[label="vwx56",fontsize=16,color="green",shape="box"];2199[label="vwx53",fontsize=16,color="green",shape="box"];2200[label="vwx56",fontsize=16,color="green",shape="box"];2201[label="vwx53",fontsize=16,color="green",shape="box"];2202[label="vwx56",fontsize=16,color="green",shape="box"];2203[label="vwx53",fontsize=16,color="green",shape="box"];2204[label="vwx56",fontsize=16,color="green",shape="box"];2205[label="vwx53",fontsize=16,color="green",shape="box"];2206[label="vwx56",fontsize=16,color="green",shape="box"];2207[label="vwx53",fontsize=16,color="green",shape="box"];2208[label="compare0 (vwx129,vwx130,vwx131) (vwx132,vwx133,vwx134) True",fontsize=16,color="black",shape="box"];2208 -> 2334[label="",style="solid", color="black", weight=3]; 2209[label="Succ (Succ (primPlusNat vwx1440 vwx4100))",fontsize=16,color="green",shape="box"];2209 -> 2335[label="",style="dashed", color="green", weight=3]; 2210[label="Succ vwx4100",fontsize=16,color="green",shape="box"];2211[label="GT",fontsize=16,color="green",shape="box"];2212[label="vwx3000",fontsize=16,color="green",shape="box"];2213[label="vwx4000",fontsize=16,color="green",shape="box"];2214[label="vwx138",fontsize=16,color="green",shape="box"];2215[label="GT",fontsize=16,color="green",shape="box"];2216[label="not False",fontsize=16,color="black",shape="box"];2216 -> 2336[label="",style="solid", color="black", weight=3]; 2217[label="not True",fontsize=16,color="black",shape="box"];2217 -> 2337[label="",style="solid", color="black", weight=3]; 2218 -> 1006[label="",style="dashed", color="red", weight=0]; 2218[label="vwx260 < vwx270",fontsize=16,color="magenta"];2218 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1007[label="",style="dashed", color="red", weight=0]; 2219[label="vwx260 < vwx270",fontsize=16,color="magenta"];2219 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2220 -> 1008[label="",style="dashed", color="red", weight=0]; 2220[label="vwx260 < vwx270",fontsize=16,color="magenta"];2220 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2221 -> 1009[label="",style="dashed", color="red", weight=0]; 2221[label="vwx260 < vwx270",fontsize=16,color="magenta"];2221 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2222 -> 1010[label="",style="dashed", color="red", weight=0]; 2222[label="vwx260 < vwx270",fontsize=16,color="magenta"];2222 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2223 -> 1011[label="",style="dashed", color="red", weight=0]; 2223[label="vwx260 < vwx270",fontsize=16,color="magenta"];2223 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2224 -> 1012[label="",style="dashed", color="red", weight=0]; 2224[label="vwx260 < vwx270",fontsize=16,color="magenta"];2224 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2225 -> 1013[label="",style="dashed", color="red", weight=0]; 2225[label="vwx260 < vwx270",fontsize=16,color="magenta"];2225 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2226 -> 1014[label="",style="dashed", color="red", weight=0]; 2226[label="vwx260 < vwx270",fontsize=16,color="magenta"];2226 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2226 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2227 -> 1015[label="",style="dashed", color="red", weight=0]; 2227[label="vwx260 < vwx270",fontsize=16,color="magenta"];2227 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2228 -> 1016[label="",style="dashed", color="red", weight=0]; 2228[label="vwx260 < vwx270",fontsize=16,color="magenta"];2228 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2229 -> 1017[label="",style="dashed", color="red", weight=0]; 2229[label="vwx260 < vwx270",fontsize=16,color="magenta"];2229 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2229 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2230 -> 1018[label="",style="dashed", color="red", weight=0]; 2230[label="vwx260 < vwx270",fontsize=16,color="magenta"];2230 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2230 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2231 -> 1019[label="",style="dashed", color="red", weight=0]; 2231[label="vwx260 < vwx270",fontsize=16,color="magenta"];2231 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2232[label="vwx260 == vwx270",fontsize=16,color="blue",shape="box"];3420[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2366[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2367[label="",style="solid", color="blue", weight=3]; 3422[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2368[label="",style="solid", color="blue", weight=3]; 3423[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2369[label="",style="solid", color="blue", weight=3]; 3424[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 2370[label="",style="solid", color="blue", weight=3]; 3425[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 2371[label="",style="solid", color="blue", weight=3]; 3426[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 2372[label="",style="solid", color="blue", weight=3]; 3427[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2373[label="",style="solid", color="blue", weight=3]; 3428[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2374[label="",style="solid", color="blue", weight=3]; 3429[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2375[label="",style="solid", color="blue", weight=3]; 3430[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2376[label="",style="solid", color="blue", weight=3]; 3431[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2377[label="",style="solid", color="blue", weight=3]; 3432[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2378[label="",style="solid", color="blue", weight=3]; 3433[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2379[label="",style="solid", color="blue", weight=3]; 2233[label="vwx261 <= vwx271",fontsize=16,color="blue",shape="box"];3434[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2380[label="",style="solid", color="blue", weight=3]; 3435[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2381[label="",style="solid", color="blue", weight=3]; 3436[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2382[label="",style="solid", color="blue", weight=3]; 3437[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2383[label="",style="solid", color="blue", weight=3]; 3438[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2384[label="",style="solid", color="blue", weight=3]; 3439[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2385[label="",style="solid", color="blue", weight=3]; 3440[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2386[label="",style="solid", color="blue", weight=3]; 3441[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 2387[label="",style="solid", color="blue", weight=3]; 3442[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 2388[label="",style="solid", color="blue", weight=3]; 3443[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 2389[label="",style="solid", color="blue", weight=3]; 3444[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2390[label="",style="solid", color="blue", weight=3]; 3445[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2391[label="",style="solid", color="blue", weight=3]; 3446[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2392[label="",style="solid", color="blue", weight=3]; 3447[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2393[label="",style="solid", color="blue", weight=3]; 2234[label="vwx270",fontsize=16,color="green",shape="box"];2235[label="vwx260",fontsize=16,color="green",shape="box"];2236[label="vwx270",fontsize=16,color="green",shape="box"];2237[label="vwx260",fontsize=16,color="green",shape="box"];2238[label="vwx270",fontsize=16,color="green",shape="box"];2239[label="vwx260",fontsize=16,color="green",shape="box"];2240[label="vwx270",fontsize=16,color="green",shape="box"];2241[label="vwx260",fontsize=16,color="green",shape="box"];2242[label="vwx270",fontsize=16,color="green",shape="box"];2243[label="vwx260",fontsize=16,color="green",shape="box"];2244[label="vwx270",fontsize=16,color="green",shape="box"];2245[label="vwx260",fontsize=16,color="green",shape="box"];2246[label="vwx270",fontsize=16,color="green",shape="box"];2247[label="vwx260",fontsize=16,color="green",shape="box"];2248[label="vwx270",fontsize=16,color="green",shape="box"];2249[label="vwx260",fontsize=16,color="green",shape="box"];2250[label="vwx270",fontsize=16,color="green",shape="box"];2251[label="vwx260",fontsize=16,color="green",shape="box"];2252[label="vwx270",fontsize=16,color="green",shape="box"];2253[label="vwx260",fontsize=16,color="green",shape="box"];2254[label="vwx270",fontsize=16,color="green",shape="box"];2255[label="vwx260",fontsize=16,color="green",shape="box"];2256[label="vwx270",fontsize=16,color="green",shape="box"];2257[label="vwx260",fontsize=16,color="green",shape="box"];2258[label="vwx270",fontsize=16,color="green",shape="box"];2259[label="vwx260",fontsize=16,color="green",shape="box"];2260[label="vwx270",fontsize=16,color="green",shape="box"];2261[label="vwx260",fontsize=16,color="green",shape="box"];2262[label="vwx270",fontsize=16,color="green",shape="box"];2263[label="vwx260",fontsize=16,color="green",shape="box"];2264[label="vwx270",fontsize=16,color="green",shape="box"];2265[label="vwx260",fontsize=16,color="green",shape="box"];2266[label="vwx270",fontsize=16,color="green",shape="box"];2267[label="vwx260",fontsize=16,color="green",shape="box"];2268[label="vwx270",fontsize=16,color="green",shape="box"];2269[label="vwx260",fontsize=16,color="green",shape="box"];2270[label="vwx270",fontsize=16,color="green",shape="box"];2271[label="vwx260",fontsize=16,color="green",shape="box"];2272[label="vwx270",fontsize=16,color="green",shape="box"];2273[label="vwx260",fontsize=16,color="green",shape="box"];2274[label="vwx270",fontsize=16,color="green",shape="box"];2275[label="vwx260",fontsize=16,color="green",shape="box"];2276[label="vwx270",fontsize=16,color="green",shape="box"];2277[label="vwx260",fontsize=16,color="green",shape="box"];2278[label="vwx270",fontsize=16,color="green",shape="box"];2279[label="vwx260",fontsize=16,color="green",shape="box"];2280[label="vwx270",fontsize=16,color="green",shape="box"];2281[label="vwx260",fontsize=16,color="green",shape="box"];2282[label="vwx270",fontsize=16,color="green",shape="box"];2283[label="vwx260",fontsize=16,color="green",shape="box"];2284[label="vwx270",fontsize=16,color="green",shape="box"];2285[label="vwx260",fontsize=16,color="green",shape="box"];2286[label="vwx270",fontsize=16,color="green",shape="box"];2287[label="vwx260",fontsize=16,color="green",shape="box"];2288[label="vwx270",fontsize=16,color="green",shape="box"];2289[label="vwx260",fontsize=16,color="green",shape="box"];2290[label="vwx270",fontsize=16,color="green",shape="box"];2291[label="vwx260",fontsize=16,color="green",shape="box"];2292[label="vwx270",fontsize=16,color="green",shape="box"];2293[label="vwx260",fontsize=16,color="green",shape="box"];2294[label="vwx270",fontsize=16,color="green",shape="box"];2295[label="vwx260",fontsize=16,color="green",shape="box"];2296[label="vwx270",fontsize=16,color="green",shape="box"];2297[label="vwx260",fontsize=16,color="green",shape="box"];2298[label="vwx270",fontsize=16,color="green",shape="box"];2299[label="vwx260",fontsize=16,color="green",shape="box"];2300[label="vwx270",fontsize=16,color="green",shape="box"];2301[label="vwx260",fontsize=16,color="green",shape="box"];2302[label="vwx270",fontsize=16,color="green",shape="box"];2303[label="vwx260",fontsize=16,color="green",shape="box"];2304[label="vwx270",fontsize=16,color="green",shape="box"];2305[label="vwx260",fontsize=16,color="green",shape="box"];2306[label="vwx270",fontsize=16,color="green",shape="box"];2307[label="vwx260",fontsize=16,color="green",shape="box"];2308[label="vwx270",fontsize=16,color="green",shape="box"];2309[label="vwx260",fontsize=16,color="green",shape="box"];2310[label="vwx270",fontsize=16,color="green",shape="box"];2311[label="vwx260",fontsize=16,color="green",shape="box"];2312[label="vwx270",fontsize=16,color="green",shape="box"];2313[label="vwx260",fontsize=16,color="green",shape="box"];2314[label="vwx270",fontsize=16,color="green",shape="box"];2315[label="vwx260",fontsize=16,color="green",shape="box"];2316[label="vwx270",fontsize=16,color="green",shape="box"];2317[label="vwx260",fontsize=16,color="green",shape="box"];2318 -> 1006[label="",style="dashed", color="red", weight=0]; 2318[label="vwx260 < vwx270",fontsize=16,color="magenta"];2318 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1007[label="",style="dashed", color="red", weight=0]; 2319[label="vwx260 < vwx270",fontsize=16,color="magenta"];2319 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2320 -> 1008[label="",style="dashed", color="red", weight=0]; 2320[label="vwx260 < vwx270",fontsize=16,color="magenta"];2320 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1009[label="",style="dashed", color="red", weight=0]; 2321[label="vwx260 < vwx270",fontsize=16,color="magenta"];2321 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1010[label="",style="dashed", color="red", weight=0]; 2322[label="vwx260 < vwx270",fontsize=16,color="magenta"];2322 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2323 -> 1011[label="",style="dashed", color="red", weight=0]; 2323[label="vwx260 < vwx270",fontsize=16,color="magenta"];2323 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2324 -> 1012[label="",style="dashed", color="red", weight=0]; 2324[label="vwx260 < vwx270",fontsize=16,color="magenta"];2324 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2325 -> 1013[label="",style="dashed", color="red", weight=0]; 2325[label="vwx260 < vwx270",fontsize=16,color="magenta"];2325 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2326 -> 1014[label="",style="dashed", color="red", weight=0]; 2326[label="vwx260 < vwx270",fontsize=16,color="magenta"];2326 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2327 -> 1015[label="",style="dashed", color="red", weight=0]; 2327[label="vwx260 < vwx270",fontsize=16,color="magenta"];2327 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2328 -> 1016[label="",style="dashed", color="red", weight=0]; 2328[label="vwx260 < vwx270",fontsize=16,color="magenta"];2328 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2329 -> 1017[label="",style="dashed", color="red", weight=0]; 2329[label="vwx260 < vwx270",fontsize=16,color="magenta"];2329 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2330 -> 1018[label="",style="dashed", color="red", weight=0]; 2330[label="vwx260 < vwx270",fontsize=16,color="magenta"];2330 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2331 -> 1019[label="",style="dashed", color="red", weight=0]; 2331[label="vwx260 < vwx270",fontsize=16,color="magenta"];2331 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2332[label="vwx260 == vwx270",fontsize=16,color="blue",shape="box"];3448[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2422[label="",style="solid", color="blue", weight=3]; 3449[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2423[label="",style="solid", color="blue", weight=3]; 3450[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2424[label="",style="solid", color="blue", weight=3]; 3451[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2425[label="",style="solid", color="blue", weight=3]; 3452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2426[label="",style="solid", color="blue", weight=3]; 3453[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2427[label="",style="solid", color="blue", weight=3]; 3454[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2428[label="",style="solid", color="blue", weight=3]; 3455[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2429[label="",style="solid", color="blue", weight=3]; 3456[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 2430[label="",style="solid", color="blue", weight=3]; 3457[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 2431[label="",style="solid", color="blue", weight=3]; 3458[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 2432[label="",style="solid", color="blue", weight=3]; 3459[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 2433[label="",style="solid", color="blue", weight=3]; 3460[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 2434[label="",style="solid", color="blue", weight=3]; 3461[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2332 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2435[label="",style="solid", color="blue", weight=3]; 2333 -> 1705[label="",style="dashed", color="red", weight=0]; 2333[label="vwx261 < vwx271 || vwx261 == vwx271 && vwx262 <= vwx272",fontsize=16,color="magenta"];2333 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2334[label="GT",fontsize=16,color="green",shape="box"];2335[label="primPlusNat vwx1440 vwx4100",fontsize=16,color="burlywood",shape="triangle"];3462[label="vwx1440/Succ vwx14400",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 2438[label="",style="solid", color="burlywood", weight=3]; 3463[label="vwx1440/Zero",fontsize=10,color="white",style="solid",shape="box"];2335 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 2439[label="",style="solid", color="burlywood", weight=3]; 2336[label="True",fontsize=16,color="green",shape="box"];2337[label="False",fontsize=16,color="green",shape="box"];2338[label="vwx270",fontsize=16,color="green",shape="box"];2339[label="vwx260",fontsize=16,color="green",shape="box"];2340[label="vwx270",fontsize=16,color="green",shape="box"];2341[label="vwx260",fontsize=16,color="green",shape="box"];2342[label="vwx270",fontsize=16,color="green",shape="box"];2343[label="vwx260",fontsize=16,color="green",shape="box"];2344[label="vwx270",fontsize=16,color="green",shape="box"];2345[label="vwx260",fontsize=16,color="green",shape="box"];2346[label="vwx270",fontsize=16,color="green",shape="box"];2347[label="vwx260",fontsize=16,color="green",shape="box"];2348[label="vwx270",fontsize=16,color="green",shape="box"];2349[label="vwx260",fontsize=16,color="green",shape="box"];2350[label="vwx270",fontsize=16,color="green",shape="box"];2351[label="vwx260",fontsize=16,color="green",shape="box"];2352[label="vwx270",fontsize=16,color="green",shape="box"];2353[label="vwx260",fontsize=16,color="green",shape="box"];2354[label="vwx270",fontsize=16,color="green",shape="box"];2355[label="vwx260",fontsize=16,color="green",shape="box"];2356[label="vwx270",fontsize=16,color="green",shape="box"];2357[label="vwx260",fontsize=16,color="green",shape="box"];2358[label="vwx270",fontsize=16,color="green",shape="box"];2359[label="vwx260",fontsize=16,color="green",shape="box"];2360[label="vwx270",fontsize=16,color="green",shape="box"];2361[label="vwx260",fontsize=16,color="green",shape="box"];2362[label="vwx270",fontsize=16,color="green",shape="box"];2363[label="vwx260",fontsize=16,color="green",shape="box"];2364[label="vwx270",fontsize=16,color="green",shape="box"];2365[label="vwx260",fontsize=16,color="green",shape="box"];2366 -> 260[label="",style="dashed", color="red", weight=0]; 2366[label="vwx260 == vwx270",fontsize=16,color="magenta"];2366 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2367 -> 255[label="",style="dashed", color="red", weight=0]; 2367[label="vwx260 == vwx270",fontsize=16,color="magenta"];2367 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2368 -> 261[label="",style="dashed", color="red", weight=0]; 2368[label="vwx260 == vwx270",fontsize=16,color="magenta"];2368 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2369 -> 257[label="",style="dashed", color="red", weight=0]; 2369[label="vwx260 == vwx270",fontsize=16,color="magenta"];2369 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2370 -> 266[label="",style="dashed", color="red", weight=0]; 2370[label="vwx260 == vwx270",fontsize=16,color="magenta"];2370 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2370 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2371 -> 262[label="",style="dashed", color="red", weight=0]; 2371[label="vwx260 == vwx270",fontsize=16,color="magenta"];2371 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2372 -> 253[label="",style="dashed", color="red", weight=0]; 2372[label="vwx260 == vwx270",fontsize=16,color="magenta"];2372 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2372 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2373 -> 259[label="",style="dashed", color="red", weight=0]; 2373[label="vwx260 == vwx270",fontsize=16,color="magenta"];2373 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2373 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2374 -> 258[label="",style="dashed", color="red", weight=0]; 2374[label="vwx260 == vwx270",fontsize=16,color="magenta"];2374 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2375 -> 265[label="",style="dashed", color="red", weight=0]; 2375[label="vwx260 == vwx270",fontsize=16,color="magenta"];2375 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2376 -> 256[label="",style="dashed", color="red", weight=0]; 2376[label="vwx260 == vwx270",fontsize=16,color="magenta"];2376 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2376 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2377 -> 254[label="",style="dashed", color="red", weight=0]; 2377[label="vwx260 == vwx270",fontsize=16,color="magenta"];2377 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2377 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2378 -> 264[label="",style="dashed", color="red", weight=0]; 2378[label="vwx260 == vwx270",fontsize=16,color="magenta"];2378 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2378 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2379 -> 263[label="",style="dashed", color="red", weight=0]; 2379[label="vwx260 == vwx270",fontsize=16,color="magenta"];2379 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2379 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2380 -> 1061[label="",style="dashed", color="red", weight=0]; 2380[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2380 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2380 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2381 -> 1062[label="",style="dashed", color="red", weight=0]; 2381[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2381 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2382 -> 1063[label="",style="dashed", color="red", weight=0]; 2382[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2382 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2383 -> 1064[label="",style="dashed", color="red", weight=0]; 2383[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2383 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2384 -> 1065[label="",style="dashed", color="red", weight=0]; 2384[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2384 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2385 -> 1066[label="",style="dashed", color="red", weight=0]; 2385[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2385 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2386 -> 1067[label="",style="dashed", color="red", weight=0]; 2386[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2386 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2387 -> 1068[label="",style="dashed", color="red", weight=0]; 2387[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2387 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2388 -> 1069[label="",style="dashed", color="red", weight=0]; 2388[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2388 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2389 -> 1070[label="",style="dashed", color="red", weight=0]; 2389[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2389 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2390 -> 1071[label="",style="dashed", color="red", weight=0]; 2390[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2390 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2391 -> 1072[label="",style="dashed", color="red", weight=0]; 2391[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2391 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2392 -> 1073[label="",style="dashed", color="red", weight=0]; 2392[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2392 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2393 -> 1074[label="",style="dashed", color="red", weight=0]; 2393[label="vwx261 <= vwx271",fontsize=16,color="magenta"];2393 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2394[label="vwx270",fontsize=16,color="green",shape="box"];2395[label="vwx260",fontsize=16,color="green",shape="box"];2396[label="vwx270",fontsize=16,color="green",shape="box"];2397[label="vwx260",fontsize=16,color="green",shape="box"];2398[label="vwx270",fontsize=16,color="green",shape="box"];2399[label="vwx260",fontsize=16,color="green",shape="box"];2400[label="vwx270",fontsize=16,color="green",shape="box"];2401[label="vwx260",fontsize=16,color="green",shape="box"];2402[label="vwx270",fontsize=16,color="green",shape="box"];2403[label="vwx260",fontsize=16,color="green",shape="box"];2404[label="vwx270",fontsize=16,color="green",shape="box"];2405[label="vwx260",fontsize=16,color="green",shape="box"];2406[label="vwx270",fontsize=16,color="green",shape="box"];2407[label="vwx260",fontsize=16,color="green",shape="box"];2408[label="vwx270",fontsize=16,color="green",shape="box"];2409[label="vwx260",fontsize=16,color="green",shape="box"];2410[label="vwx270",fontsize=16,color="green",shape="box"];2411[label="vwx260",fontsize=16,color="green",shape="box"];2412[label="vwx270",fontsize=16,color="green",shape="box"];2413[label="vwx260",fontsize=16,color="green",shape="box"];2414[label="vwx270",fontsize=16,color="green",shape="box"];2415[label="vwx260",fontsize=16,color="green",shape="box"];2416[label="vwx270",fontsize=16,color="green",shape="box"];2417[label="vwx260",fontsize=16,color="green",shape="box"];2418[label="vwx270",fontsize=16,color="green",shape="box"];2419[label="vwx260",fontsize=16,color="green",shape="box"];2420[label="vwx270",fontsize=16,color="green",shape="box"];2421[label="vwx260",fontsize=16,color="green",shape="box"];2422 -> 260[label="",style="dashed", color="red", weight=0]; 2422[label="vwx260 == vwx270",fontsize=16,color="magenta"];2422 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2423 -> 255[label="",style="dashed", color="red", weight=0]; 2423[label="vwx260 == vwx270",fontsize=16,color="magenta"];2423 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2424 -> 261[label="",style="dashed", color="red", weight=0]; 2424[label="vwx260 == vwx270",fontsize=16,color="magenta"];2424 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2425 -> 257[label="",style="dashed", color="red", weight=0]; 2425[label="vwx260 == vwx270",fontsize=16,color="magenta"];2425 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2426 -> 266[label="",style="dashed", color="red", weight=0]; 2426[label="vwx260 == vwx270",fontsize=16,color="magenta"];2426 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2427 -> 262[label="",style="dashed", color="red", weight=0]; 2427[label="vwx260 == vwx270",fontsize=16,color="magenta"];2427 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2428 -> 253[label="",style="dashed", color="red", weight=0]; 2428[label="vwx260 == vwx270",fontsize=16,color="magenta"];2428 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2429 -> 259[label="",style="dashed", color="red", weight=0]; 2429[label="vwx260 == vwx270",fontsize=16,color="magenta"];2429 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2430 -> 258[label="",style="dashed", color="red", weight=0]; 2430[label="vwx260 == vwx270",fontsize=16,color="magenta"];2430 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2431 -> 265[label="",style="dashed", color="red", weight=0]; 2431[label="vwx260 == vwx270",fontsize=16,color="magenta"];2431 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2432 -> 256[label="",style="dashed", color="red", weight=0]; 2432[label="vwx260 == vwx270",fontsize=16,color="magenta"];2432 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2433 -> 254[label="",style="dashed", color="red", weight=0]; 2433[label="vwx260 == vwx270",fontsize=16,color="magenta"];2433 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2434 -> 264[label="",style="dashed", color="red", weight=0]; 2434[label="vwx260 == vwx270",fontsize=16,color="magenta"];2434 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2435 -> 263[label="",style="dashed", color="red", weight=0]; 2435[label="vwx260 == vwx270",fontsize=16,color="magenta"];2435 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2436[label="vwx261 < vwx271",fontsize=16,color="blue",shape="box"];3464[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 2524[label="",style="solid", color="blue", weight=3]; 3465[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 2525[label="",style="solid", color="blue", weight=3]; 3466[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2526[label="",style="solid", color="blue", weight=3]; 3467[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2527[label="",style="solid", color="blue", weight=3]; 3468[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2528[label="",style="solid", color="blue", weight=3]; 3469[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2529[label="",style="solid", color="blue", weight=3]; 3470[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2530[label="",style="solid", color="blue", weight=3]; 3471[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2531[label="",style="solid", color="blue", weight=3]; 3472[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2532[label="",style="solid", color="blue", weight=3]; 3473[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2533[label="",style="solid", color="blue", weight=3]; 3474[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2534[label="",style="solid", color="blue", weight=3]; 3475[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2535[label="",style="solid", color="blue", weight=3]; 3476[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2536[label="",style="solid", color="blue", weight=3]; 3477[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2436 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2537[label="",style="solid", color="blue", weight=3]; 2437 -> 733[label="",style="dashed", color="red", weight=0]; 2437[label="vwx261 == vwx271 && vwx262 <= vwx272",fontsize=16,color="magenta"];2437 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2438[label="primPlusNat (Succ vwx14400) vwx4100",fontsize=16,color="burlywood",shape="box"];3478[label="vwx4100/Succ vwx41000",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3478[label="",style="solid", color="burlywood", weight=9]; 3478 -> 2540[label="",style="solid", color="burlywood", weight=3]; 3479[label="vwx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2438 -> 3479[label="",style="solid", color="burlywood", weight=9]; 3479 -> 2541[label="",style="solid", color="burlywood", weight=3]; 2439[label="primPlusNat Zero vwx4100",fontsize=16,color="burlywood",shape="box"];3480[label="vwx4100/Succ vwx41000",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3480[label="",style="solid", color="burlywood", weight=9]; 3480 -> 2542[label="",style="solid", color="burlywood", weight=3]; 3481[label="vwx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2439 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 2543[label="",style="solid", color="burlywood", weight=3]; 2440[label="vwx260",fontsize=16,color="green",shape="box"];2441[label="vwx270",fontsize=16,color="green",shape="box"];2442[label="vwx260",fontsize=16,color="green",shape="box"];2443[label="vwx270",fontsize=16,color="green",shape="box"];2444[label="vwx260",fontsize=16,color="green",shape="box"];2445[label="vwx270",fontsize=16,color="green",shape="box"];2446[label="vwx260",fontsize=16,color="green",shape="box"];2447[label="vwx270",fontsize=16,color="green",shape="box"];2448[label="vwx260",fontsize=16,color="green",shape="box"];2449[label="vwx270",fontsize=16,color="green",shape="box"];2450[label="vwx260",fontsize=16,color="green",shape="box"];2451[label="vwx270",fontsize=16,color="green",shape="box"];2452[label="vwx260",fontsize=16,color="green",shape="box"];2453[label="vwx270",fontsize=16,color="green",shape="box"];2454[label="vwx260",fontsize=16,color="green",shape="box"];2455[label="vwx270",fontsize=16,color="green",shape="box"];2456[label="vwx260",fontsize=16,color="green",shape="box"];2457[label="vwx270",fontsize=16,color="green",shape="box"];2458[label="vwx260",fontsize=16,color="green",shape="box"];2459[label="vwx270",fontsize=16,color="green",shape="box"];2460[label="vwx260",fontsize=16,color="green",shape="box"];2461[label="vwx270",fontsize=16,color="green",shape="box"];2462[label="vwx260",fontsize=16,color="green",shape="box"];2463[label="vwx270",fontsize=16,color="green",shape="box"];2464[label="vwx260",fontsize=16,color="green",shape="box"];2465[label="vwx270",fontsize=16,color="green",shape="box"];2466[label="vwx260",fontsize=16,color="green",shape="box"];2467[label="vwx270",fontsize=16,color="green",shape="box"];2468[label="vwx271",fontsize=16,color="green",shape="box"];2469[label="vwx261",fontsize=16,color="green",shape="box"];2470[label="vwx271",fontsize=16,color="green",shape="box"];2471[label="vwx261",fontsize=16,color="green",shape="box"];2472[label="vwx271",fontsize=16,color="green",shape="box"];2473[label="vwx261",fontsize=16,color="green",shape="box"];2474[label="vwx271",fontsize=16,color="green",shape="box"];2475[label="vwx261",fontsize=16,color="green",shape="box"];2476[label="vwx271",fontsize=16,color="green",shape="box"];2477[label="vwx261",fontsize=16,color="green",shape="box"];2478[label="vwx271",fontsize=16,color="green",shape="box"];2479[label="vwx261",fontsize=16,color="green",shape="box"];2480[label="vwx271",fontsize=16,color="green",shape="box"];2481[label="vwx261",fontsize=16,color="green",shape="box"];2482[label="vwx271",fontsize=16,color="green",shape="box"];2483[label="vwx261",fontsize=16,color="green",shape="box"];2484[label="vwx271",fontsize=16,color="green",shape="box"];2485[label="vwx261",fontsize=16,color="green",shape="box"];2486[label="vwx271",fontsize=16,color="green",shape="box"];2487[label="vwx261",fontsize=16,color="green",shape="box"];2488[label="vwx271",fontsize=16,color="green",shape="box"];2489[label="vwx261",fontsize=16,color="green",shape="box"];2490[label="vwx271",fontsize=16,color="green",shape="box"];2491[label="vwx261",fontsize=16,color="green",shape="box"];2492[label="vwx271",fontsize=16,color="green",shape="box"];2493[label="vwx261",fontsize=16,color="green",shape="box"];2494[label="vwx271",fontsize=16,color="green",shape="box"];2495[label="vwx261",fontsize=16,color="green",shape="box"];2496[label="vwx260",fontsize=16,color="green",shape="box"];2497[label="vwx270",fontsize=16,color="green",shape="box"];2498[label="vwx260",fontsize=16,color="green",shape="box"];2499[label="vwx270",fontsize=16,color="green",shape="box"];2500[label="vwx260",fontsize=16,color="green",shape="box"];2501[label="vwx270",fontsize=16,color="green",shape="box"];2502[label="vwx260",fontsize=16,color="green",shape="box"];2503[label="vwx270",fontsize=16,color="green",shape="box"];2504[label="vwx260",fontsize=16,color="green",shape="box"];2505[label="vwx270",fontsize=16,color="green",shape="box"];2506[label="vwx260",fontsize=16,color="green",shape="box"];2507[label="vwx270",fontsize=16,color="green",shape="box"];2508[label="vwx260",fontsize=16,color="green",shape="box"];2509[label="vwx270",fontsize=16,color="green",shape="box"];2510[label="vwx260",fontsize=16,color="green",shape="box"];2511[label="vwx270",fontsize=16,color="green",shape="box"];2512[label="vwx260",fontsize=16,color="green",shape="box"];2513[label="vwx270",fontsize=16,color="green",shape="box"];2514[label="vwx260",fontsize=16,color="green",shape="box"];2515[label="vwx270",fontsize=16,color="green",shape="box"];2516[label="vwx260",fontsize=16,color="green",shape="box"];2517[label="vwx270",fontsize=16,color="green",shape="box"];2518[label="vwx260",fontsize=16,color="green",shape="box"];2519[label="vwx270",fontsize=16,color="green",shape="box"];2520[label="vwx260",fontsize=16,color="green",shape="box"];2521[label="vwx270",fontsize=16,color="green",shape="box"];2522[label="vwx260",fontsize=16,color="green",shape="box"];2523[label="vwx270",fontsize=16,color="green",shape="box"];2524 -> 1006[label="",style="dashed", color="red", weight=0]; 2524[label="vwx261 < vwx271",fontsize=16,color="magenta"];2524 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2525 -> 1007[label="",style="dashed", color="red", weight=0]; 2525[label="vwx261 < vwx271",fontsize=16,color="magenta"];2525 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2526 -> 1008[label="",style="dashed", color="red", weight=0]; 2526[label="vwx261 < vwx271",fontsize=16,color="magenta"];2526 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2527 -> 1009[label="",style="dashed", color="red", weight=0]; 2527[label="vwx261 < vwx271",fontsize=16,color="magenta"];2527 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2528 -> 1010[label="",style="dashed", color="red", weight=0]; 2528[label="vwx261 < vwx271",fontsize=16,color="magenta"];2528 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2529 -> 1011[label="",style="dashed", color="red", weight=0]; 2529[label="vwx261 < vwx271",fontsize=16,color="magenta"];2529 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2530 -> 1012[label="",style="dashed", color="red", weight=0]; 2530[label="vwx261 < vwx271",fontsize=16,color="magenta"];2530 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2531 -> 1013[label="",style="dashed", color="red", weight=0]; 2531[label="vwx261 < vwx271",fontsize=16,color="magenta"];2531 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2532 -> 1014[label="",style="dashed", color="red", weight=0]; 2532[label="vwx261 < vwx271",fontsize=16,color="magenta"];2532 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2533 -> 1015[label="",style="dashed", color="red", weight=0]; 2533[label="vwx261 < vwx271",fontsize=16,color="magenta"];2533 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2534 -> 1016[label="",style="dashed", color="red", weight=0]; 2534[label="vwx261 < vwx271",fontsize=16,color="magenta"];2534 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2535 -> 1017[label="",style="dashed", color="red", weight=0]; 2535[label="vwx261 < vwx271",fontsize=16,color="magenta"];2535 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2536 -> 1018[label="",style="dashed", color="red", weight=0]; 2536[label="vwx261 < vwx271",fontsize=16,color="magenta"];2536 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2537 -> 1019[label="",style="dashed", color="red", weight=0]; 2537[label="vwx261 < vwx271",fontsize=16,color="magenta"];2537 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2538[label="vwx261 == vwx271",fontsize=16,color="blue",shape="box"];3482[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2572[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2573[label="",style="solid", color="blue", weight=3]; 3484[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2574[label="",style="solid", color="blue", weight=3]; 3485[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2575[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2576[label="",style="solid", color="blue", weight=3]; 3487[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 2577[label="",style="solid", color="blue", weight=3]; 3488[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 2578[label="",style="solid", color="blue", weight=3]; 3489[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2579[label="",style="solid", color="blue", weight=3]; 3490[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2580[label="",style="solid", color="blue", weight=3]; 3491[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2581[label="",style="solid", color="blue", weight=3]; 3492[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2582[label="",style="solid", color="blue", weight=3]; 3493[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2583[label="",style="solid", color="blue", weight=3]; 3494[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2584[label="",style="solid", color="blue", weight=3]; 3495[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2585[label="",style="solid", color="blue", weight=3]; 2539[label="vwx262 <= vwx272",fontsize=16,color="blue",shape="box"];3496[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2586[label="",style="solid", color="blue", weight=3]; 3497[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2587[label="",style="solid", color="blue", weight=3]; 3498[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2588[label="",style="solid", color="blue", weight=3]; 3499[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2589[label="",style="solid", color="blue", weight=3]; 3500[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2590[label="",style="solid", color="blue", weight=3]; 3501[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2591[label="",style="solid", color="blue", weight=3]; 3502[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2592[label="",style="solid", color="blue", weight=3]; 3503[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2593[label="",style="solid", color="blue", weight=3]; 3504[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2594[label="",style="solid", color="blue", weight=3]; 3505[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2595[label="",style="solid", color="blue", weight=3]; 3506[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2596[label="",style="solid", color="blue", weight=3]; 3507[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2597[label="",style="solid", color="blue", weight=3]; 3508[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2598[label="",style="solid", color="blue", weight=3]; 3509[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2539 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2599[label="",style="solid", color="blue", weight=3]; 2540[label="primPlusNat (Succ vwx14400) (Succ vwx41000)",fontsize=16,color="black",shape="box"];2540 -> 2600[label="",style="solid", color="black", weight=3]; 2541[label="primPlusNat (Succ vwx14400) Zero",fontsize=16,color="black",shape="box"];2541 -> 2601[label="",style="solid", color="black", weight=3]; 2542[label="primPlusNat Zero (Succ vwx41000)",fontsize=16,color="black",shape="box"];2542 -> 2602[label="",style="solid", color="black", weight=3]; 2543[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2543 -> 2603[label="",style="solid", color="black", weight=3]; 2544[label="vwx271",fontsize=16,color="green",shape="box"];2545[label="vwx261",fontsize=16,color="green",shape="box"];2546[label="vwx271",fontsize=16,color="green",shape="box"];2547[label="vwx261",fontsize=16,color="green",shape="box"];2548[label="vwx271",fontsize=16,color="green",shape="box"];2549[label="vwx261",fontsize=16,color="green",shape="box"];2550[label="vwx271",fontsize=16,color="green",shape="box"];2551[label="vwx261",fontsize=16,color="green",shape="box"];2552[label="vwx271",fontsize=16,color="green",shape="box"];2553[label="vwx261",fontsize=16,color="green",shape="box"];2554[label="vwx271",fontsize=16,color="green",shape="box"];2555[label="vwx261",fontsize=16,color="green",shape="box"];2556[label="vwx271",fontsize=16,color="green",shape="box"];2557[label="vwx261",fontsize=16,color="green",shape="box"];2558[label="vwx271",fontsize=16,color="green",shape="box"];2559[label="vwx261",fontsize=16,color="green",shape="box"];2560[label="vwx271",fontsize=16,color="green",shape="box"];2561[label="vwx261",fontsize=16,color="green",shape="box"];2562[label="vwx271",fontsize=16,color="green",shape="box"];2563[label="vwx261",fontsize=16,color="green",shape="box"];2564[label="vwx271",fontsize=16,color="green",shape="box"];2565[label="vwx261",fontsize=16,color="green",shape="box"];2566[label="vwx271",fontsize=16,color="green",shape="box"];2567[label="vwx261",fontsize=16,color="green",shape="box"];2568[label="vwx271",fontsize=16,color="green",shape="box"];2569[label="vwx261",fontsize=16,color="green",shape="box"];2570[label="vwx271",fontsize=16,color="green",shape="box"];2571[label="vwx261",fontsize=16,color="green",shape="box"];2572 -> 260[label="",style="dashed", color="red", weight=0]; 2572[label="vwx261 == vwx271",fontsize=16,color="magenta"];2572 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2573 -> 255[label="",style="dashed", color="red", weight=0]; 2573[label="vwx261 == vwx271",fontsize=16,color="magenta"];2573 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2574 -> 261[label="",style="dashed", color="red", weight=0]; 2574[label="vwx261 == vwx271",fontsize=16,color="magenta"];2574 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2575 -> 257[label="",style="dashed", color="red", weight=0]; 2575[label="vwx261 == vwx271",fontsize=16,color="magenta"];2575 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2576 -> 266[label="",style="dashed", color="red", weight=0]; 2576[label="vwx261 == vwx271",fontsize=16,color="magenta"];2576 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2577 -> 262[label="",style="dashed", color="red", weight=0]; 2577[label="vwx261 == vwx271",fontsize=16,color="magenta"];2577 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2578 -> 253[label="",style="dashed", color="red", weight=0]; 2578[label="vwx261 == vwx271",fontsize=16,color="magenta"];2578 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2579 -> 259[label="",style="dashed", color="red", weight=0]; 2579[label="vwx261 == vwx271",fontsize=16,color="magenta"];2579 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2580 -> 258[label="",style="dashed", color="red", weight=0]; 2580[label="vwx261 == vwx271",fontsize=16,color="magenta"];2580 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2581 -> 265[label="",style="dashed", color="red", weight=0]; 2581[label="vwx261 == vwx271",fontsize=16,color="magenta"];2581 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2582 -> 256[label="",style="dashed", color="red", weight=0]; 2582[label="vwx261 == vwx271",fontsize=16,color="magenta"];2582 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2583 -> 254[label="",style="dashed", color="red", weight=0]; 2583[label="vwx261 == vwx271",fontsize=16,color="magenta"];2583 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2584 -> 264[label="",style="dashed", color="red", weight=0]; 2584[label="vwx261 == vwx271",fontsize=16,color="magenta"];2584 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2585 -> 263[label="",style="dashed", color="red", weight=0]; 2585[label="vwx261 == vwx271",fontsize=16,color="magenta"];2585 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2586 -> 1061[label="",style="dashed", color="red", weight=0]; 2586[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2586 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2586 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2587 -> 1062[label="",style="dashed", color="red", weight=0]; 2587[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2587 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2588 -> 1063[label="",style="dashed", color="red", weight=0]; 2588[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2588 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2588 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2589 -> 1064[label="",style="dashed", color="red", weight=0]; 2589[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2589 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2589 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2590 -> 1065[label="",style="dashed", color="red", weight=0]; 2590[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2590 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2590 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2591 -> 1066[label="",style="dashed", color="red", weight=0]; 2591[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2591 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2591 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2592 -> 1067[label="",style="dashed", color="red", weight=0]; 2592[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2592 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2592 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2593 -> 1068[label="",style="dashed", color="red", weight=0]; 2593[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2593 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2594 -> 1069[label="",style="dashed", color="red", weight=0]; 2594[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2594 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2594 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2595 -> 1070[label="",style="dashed", color="red", weight=0]; 2595[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2595 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2595 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2596 -> 1071[label="",style="dashed", color="red", weight=0]; 2596[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2596 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2597 -> 1072[label="",style="dashed", color="red", weight=0]; 2597[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2597 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2597 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2598 -> 1073[label="",style="dashed", color="red", weight=0]; 2598[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2598 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2599 -> 1074[label="",style="dashed", color="red", weight=0]; 2599[label="vwx262 <= vwx272",fontsize=16,color="magenta"];2599 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2599 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2600[label="Succ (Succ (primPlusNat vwx14400 vwx41000))",fontsize=16,color="green",shape="box"];2600 -> 2660[label="",style="dashed", color="green", weight=3]; 2601[label="Succ vwx14400",fontsize=16,color="green",shape="box"];2602[label="Succ vwx41000",fontsize=16,color="green",shape="box"];2603[label="Zero",fontsize=16,color="green",shape="box"];2604[label="vwx261",fontsize=16,color="green",shape="box"];2605[label="vwx271",fontsize=16,color="green",shape="box"];2606[label="vwx261",fontsize=16,color="green",shape="box"];2607[label="vwx271",fontsize=16,color="green",shape="box"];2608[label="vwx261",fontsize=16,color="green",shape="box"];2609[label="vwx271",fontsize=16,color="green",shape="box"];2610[label="vwx261",fontsize=16,color="green",shape="box"];2611[label="vwx271",fontsize=16,color="green",shape="box"];2612[label="vwx261",fontsize=16,color="green",shape="box"];2613[label="vwx271",fontsize=16,color="green",shape="box"];2614[label="vwx261",fontsize=16,color="green",shape="box"];2615[label="vwx271",fontsize=16,color="green",shape="box"];2616[label="vwx261",fontsize=16,color="green",shape="box"];2617[label="vwx271",fontsize=16,color="green",shape="box"];2618[label="vwx261",fontsize=16,color="green",shape="box"];2619[label="vwx271",fontsize=16,color="green",shape="box"];2620[label="vwx261",fontsize=16,color="green",shape="box"];2621[label="vwx271",fontsize=16,color="green",shape="box"];2622[label="vwx261",fontsize=16,color="green",shape="box"];2623[label="vwx271",fontsize=16,color="green",shape="box"];2624[label="vwx261",fontsize=16,color="green",shape="box"];2625[label="vwx271",fontsize=16,color="green",shape="box"];2626[label="vwx261",fontsize=16,color="green",shape="box"];2627[label="vwx271",fontsize=16,color="green",shape="box"];2628[label="vwx261",fontsize=16,color="green",shape="box"];2629[label="vwx271",fontsize=16,color="green",shape="box"];2630[label="vwx261",fontsize=16,color="green",shape="box"];2631[label="vwx271",fontsize=16,color="green",shape="box"];2632[label="vwx272",fontsize=16,color="green",shape="box"];2633[label="vwx262",fontsize=16,color="green",shape="box"];2634[label="vwx272",fontsize=16,color="green",shape="box"];2635[label="vwx262",fontsize=16,color="green",shape="box"];2636[label="vwx272",fontsize=16,color="green",shape="box"];2637[label="vwx262",fontsize=16,color="green",shape="box"];2638[label="vwx272",fontsize=16,color="green",shape="box"];2639[label="vwx262",fontsize=16,color="green",shape="box"];2640[label="vwx272",fontsize=16,color="green",shape="box"];2641[label="vwx262",fontsize=16,color="green",shape="box"];2642[label="vwx272",fontsize=16,color="green",shape="box"];2643[label="vwx262",fontsize=16,color="green",shape="box"];2644[label="vwx272",fontsize=16,color="green",shape="box"];2645[label="vwx262",fontsize=16,color="green",shape="box"];2646[label="vwx272",fontsize=16,color="green",shape="box"];2647[label="vwx262",fontsize=16,color="green",shape="box"];2648[label="vwx272",fontsize=16,color="green",shape="box"];2649[label="vwx262",fontsize=16,color="green",shape="box"];2650[label="vwx272",fontsize=16,color="green",shape="box"];2651[label="vwx262",fontsize=16,color="green",shape="box"];2652[label="vwx272",fontsize=16,color="green",shape="box"];2653[label="vwx262",fontsize=16,color="green",shape="box"];2654[label="vwx272",fontsize=16,color="green",shape="box"];2655[label="vwx262",fontsize=16,color="green",shape="box"];2656[label="vwx272",fontsize=16,color="green",shape="box"];2657[label="vwx262",fontsize=16,color="green",shape="box"];2658[label="vwx272",fontsize=16,color="green",shape="box"];2659[label="vwx262",fontsize=16,color="green",shape="box"];2660 -> 2335[label="",style="dashed", color="red", weight=0]; 2660[label="primPlusNat vwx14400 vwx41000",fontsize=16,color="magenta"];2660 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2661[label="vwx14400",fontsize=16,color="green",shape="box"];2662[label="vwx41000",fontsize=16,color="green",shape="box"];} ---------------------------------------- (14) Complex Obligation (AND) ---------------------------------------- (15) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (16) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat(vwx300, vwx400) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx301, vwx401, ha, hb, hc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx300, vwx400, bah, bba) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx301, vwx401, gd, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx301, vwx401, bcb, bcc) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx300, vwx400, fa, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx302, vwx402, bdc, bdd) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx300, vwx400, bc, bd) new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx300, vwx400, bf, bg, bh) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], eg), eh) -> new_esEs(vwx300, vwx400, eg) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), ca) -> new_esEs(vwx301, vwx401, ca) new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], h)) -> new_esEs(vwx300, vwx400, h) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx301, vwx401, gh) new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ff), eh) -> new_esEs2(vwx300, vwx400, ff) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, be)) -> new_esEs2(vwx300, vwx400, be) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx300, vwx400, bbb, bbc) new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx300, vwx400, fg, fh, ga) new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bca), bag) -> new_esEs(vwx301, vwx401, bca) new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx301, vwx401, bcd, bce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx302, vwx402, bdb) new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx300, vwx400, ba, bb) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx300, vwx400, fc, fd) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_[], gc)) -> new_esEs(vwx301, vwx401, gc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx302, vwx402, bdg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bae), baf, bag) -> new_esEs(vwx300, vwx400, bae) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx302, vwx402, bde, bdf) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx300, vwx400, bbd) new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx301, vwx401, gf, gg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx301, vwx401, bcf) new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, be)) -> new_esEs2(vwx300, vwx400, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_Maybe, baa)) -> new_esEs2(vwx300, vwx400, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, ba), bb)) -> new_esEs0(vwx300, vwx400, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_Either, he), hf)) -> new_esEs0(vwx300, vwx400, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, bc), bd)) -> new_esEs1(vwx300, vwx400, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vwx300), Just(vwx400), app(app(ty_@2, hg), hh)) -> new_esEs1(vwx300, vwx400, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, bf), bg), bh)) -> new_esEs3(vwx300, vwx400, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vwx300), Just(vwx400), app(ty_[], hd)) -> new_esEs(vwx300, vwx400, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_Maybe, gh)) -> new_esEs2(vwx301, vwx401, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ff), eh) -> new_esEs2(vwx300, vwx400, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_Either, gd), ge)) -> new_esEs0(vwx301, vwx401, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, fa), fb), eh) -> new_esEs0(vwx300, vwx400, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, fc), fd), eh) -> new_esEs1(vwx300, vwx400, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(ty_@2, gf), gg)) -> new_esEs1(vwx301, vwx401, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vwx301, vwx401, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, fg), fh), ga), eh) -> new_esEs3(vwx300, vwx400, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], eg), eh) -> new_esEs(vwx300, vwx400, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vwx300, vwx301), @2(vwx400, vwx401), gb, app(ty_[], gc)) -> new_esEs(vwx301, vwx401, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_Maybe, bdg)) -> new_esEs2(vwx302, vwx402, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbd), baf, bag) -> new_esEs2(vwx300, vwx400, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcf), bag) -> new_esEs2(vwx301, vwx401, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_Maybe, da), cc) -> new_esEs2(vwx300, vwx400, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_Maybe, ec)) -> new_esEs2(vwx300, vwx400, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bah), bba), baf, bag) -> new_esEs0(vwx300, vwx400, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bcb), bcc), bag) -> new_esEs0(vwx301, vwx401, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vwx302, vwx402, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vwx300, vwx400, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vwx300, vwx400, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbb), bbc), baf, bag) -> new_esEs1(vwx300, vwx400, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bcd), bce), bag) -> new_esEs1(vwx301, vwx401, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(ty_@2, bde), bdf)) -> new_esEs1(vwx302, vwx402, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), baf, bag) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bag) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bca), bag) -> new_esEs(vwx301, vwx401, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, baf, app(ty_[], bdb)) -> new_esEs(vwx302, vwx402, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bae), baf, bag) -> new_esEs(vwx300, vwx400, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(app(ty_@2, cf), cg), cc) -> new_esEs1(vwx300, vwx400, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(ty_@2, ea), eb)) -> new_esEs1(vwx300, vwx400, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(Left(vwx300), Left(vwx400), app(app(app(ty_@3, db), dc), dd), cc) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(Right(vwx300), Right(vwx400), de, app(ty_[], df)) -> new_esEs(vwx300, vwx400, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(Left(vwx300), Left(vwx400), app(ty_[], cb), cc) -> new_esEs(vwx300, vwx400, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), ca) -> new_esEs(vwx301, vwx401, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], h)) -> new_esEs(vwx300, vwx400, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx3000), Succ(vwx4100)) -> new_primMulNat(vwx3000, Succ(vwx4100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vwx3000), Succ(vwx4100)) -> new_primMulNat(vwx3000, Succ(vwx4100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx14400), Succ(vwx41000)) -> new_primPlusNat(vwx14400, vwx41000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx14400), Succ(vwx41000)) -> new_primPlusNat(vwx14400, vwx41000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (29) YES ---------------------------------------- (30) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx53, vwx56, cee, cef, ceg) new_primCompAux(vwx30, vwx40, vwx5, app(ty_[], eb)) -> new_compare0(vwx30, vwx40, eb) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_[], ff)), fd)) -> new_lt0(vwx260, vwx270, ff) new_compare21(vwx33, vwx34, False, app(app(ty_Either, cab), cac), bhg) -> new_ltEs2(vwx33, vwx34, cab, cac) new_compare20(vwx26, vwx27, False, app(ty_[], hg)) -> new_compare0(vwx26, vwx27, hg) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbc)) -> new_ltEs3(vwx260, vwx270, bbh, bca, bcb) new_lt1(vwx64, vwx66, bf) -> new_compare1(vwx64, vwx66, bf) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(ty_[], bfc), bdh) -> new_lt0(vwx261, vwx271, bfc) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_@2, bde), bdf), bdg, bdh) -> new_lt(vwx260, vwx270, bde, bdf) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_Maybe, cbg), cbd, cbe) -> new_lt1(vwx51, vwx54, cbg) new_compare3(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare21(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(ty_Maybe, ha))) -> new_ltEs1(vwx261, vwx271, ha) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(vwx260, vwx270, bcg) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(app(ty_@3, bee), bef), beg)), bdg), bdh)) -> new_lt3(vwx260, vwx270, bee, bef, beg) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_Maybe, beb), bdg, bdh) -> new_lt1(vwx260, vwx270, beb) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(ty_[], gh)) -> new_ltEs0(vwx261, vwx271, gh) new_ltEs1(Just(vwx260), Just(vwx270), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(vwx260, vwx270, baf, bag, bah) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(ty_[], bgd)) -> new_ltEs0(vwx262, vwx272, bgd) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdg), bdh)) -> new_lt1(vwx260, vwx270, beb) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(ty_[], bcf))) -> new_ltEs0(vwx260, vwx270, bcf) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(ty_Maybe, bge))) -> new_ltEs1(vwx262, vwx272, bge) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_Maybe, bf), bd) -> new_compare1(vwx64, vwx66, bf) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(vwx260, vwx270, bch, bda) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vwx53, vwx56, cdg, cdh) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(ty_Either, hb), hc))) -> new_ltEs2(vwx261, vwx271, hb, hc) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(ty_[], bgd))) -> new_ltEs0(vwx262, vwx272, bgd) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(ty_[], cch), cbe) -> new_lt0(vwx52, vwx55, cch) new_compare21(vwx33, vwx34, False, app(ty_Maybe, caa), bhg) -> new_ltEs1(vwx33, vwx34, caa) new_compare22(vwx40, vwx41, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(vwx40, vwx41, cfd) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_[], bea)), bdg), bdh)) -> new_lt0(vwx260, vwx270, bea) new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(ty_Either, db), dc)) -> new_ltEs2(vwx65, vwx67, db, dc) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_@2, cbb), cbc), cbd, cbe) -> new_lt(vwx51, vwx54, cbb, cbc) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(app(ty_@3, ccb), ccc), ccd), cbd, cbe) -> new_lt3(vwx51, vwx54, ccb, ccc, ccd) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(ty_[], cea)) -> new_ltEs0(vwx53, vwx56, cea) new_compare(@2(vwx30, vwx31), @2(vwx40, vwx41), bb, bc) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, bb), new_esEs5(vwx31, vwx41, bc)), bb, bc) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(vwx260, vwx270, bdb, bdc, bdd) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(ty_@2, bgb), bgc)) -> new_ltEs(vwx262, vwx272, bgb, bgc) new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vwx65, vwx67, dd, de, df) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs3(vwx262, vwx272, bgh, bha, bhb) new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs(vwx260, vwx270, bcd, bce) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(ty_Either, bgf), bgg))) -> new_ltEs2(vwx262, vwx272, bgf, bgg) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_[], bbd)), bbc)) -> new_ltEs0(vwx260, vwx270, bbd) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs3(vwx262, vwx272, bgh, bha, bhb) new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(ty_@2, bcd), bce))) -> new_ltEs(vwx260, vwx270, bcd, bce) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_Either, cbh), cca), cbd, cbe) -> new_lt2(vwx51, vwx54, cbh, cca) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(vwx260, vwx270, fb, fc) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_lt3(vwx260, vwx270, gb, gc, gd) new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(vwx260, vwx270, bdb, bdc, bdd) new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(ty_Maybe, da)) -> new_ltEs1(vwx65, vwx67, da) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(ty_Either, cec), ced)) -> new_ltEs2(vwx53, vwx56, cec, ced) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(vwx260, vwx270, bad, bae) new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(vwx260, vwx270, bcg) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(ty_@2, ccf), ccg), cbe) -> new_lt(vwx52, vwx55, ccf, ccg) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(app(ty_@3, bfg), bfh), bga)), bdh)) -> new_lt3(vwx261, vwx271, bfg, bfh, bga) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(ty_Maybe, bfd)), bdh)) -> new_lt1(vwx261, vwx271, bfd) new_ltEs0(vwx26, vwx27, hg) -> new_compare0(vwx26, vwx27, hg) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(ty_Maybe, ceb)) -> new_ltEs1(vwx53, vwx56, ceb) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(ty_@2, gf), gg)) -> new_ltEs(vwx261, vwx271, gf, gg) new_compare3(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare22(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(app(ty_@3, bee), bef), beg), bdg, bdh) -> new_lt3(vwx260, vwx270, bee, bef, beg) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare0(vwx31, vwx41, dg) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_[], cbf), cbd, cbe) -> new_lt0(vwx51, vwx54, cbf) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_[], ff), fd) -> new_lt0(vwx260, vwx270, ff) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_Either, bg), bh), bd) -> new_compare3(vwx64, vwx66, bg, bh) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_Maybe, fg)), fd)) -> new_lt1(vwx260, vwx270, fg) new_compare21(vwx33, vwx34, False, app(app(app(ty_@3, cad), cae), caf), bhg) -> new_ltEs3(vwx33, vwx34, cad, cae, caf) new_ltEs1(Just(vwx260), Just(vwx270), app(ty_Maybe, bac)) -> new_ltEs1(vwx260, vwx270, bac) new_ltEs2(Left(vwx260), Left(vwx270), app(ty_Maybe, bbe), bbc) -> new_ltEs1(vwx260, vwx270, bbe) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_Either, bec), bed), bdg, bdh) -> new_lt2(vwx260, vwx270, bec, bed) new_compare4(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare23(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs9(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs11(vwx32, vwx42, cba))), cag, cah, cba) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(ty_Either, cdb), cdc), cbe) -> new_lt2(vwx52, vwx55, cdb, cdc) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(vwx260, vwx270, bab) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_[], be), bd) -> new_compare0(vwx64, vwx66, be) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdg), bdh)) -> new_lt2(vwx260, vwx270, bec, bed) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_@2, bba), bbb)), bbc)) -> new_ltEs(vwx260, vwx270, bba, bbb) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(ty_Maybe, cda), cbe) -> new_lt1(vwx52, vwx55, cda) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(ty_Maybe, bge)) -> new_ltEs1(vwx262, vwx272, bge) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(ty_@2, bgb), bgc))) -> new_ltEs(vwx262, vwx272, bgb, bgc) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_[], bea), bdg, bdh) -> new_lt0(vwx260, vwx270, bea) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(app(ty_@3, ca), cb), cc), bd) -> new_compare4(vwx64, vwx66, ca, cb, cc) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(ty_Maybe, bfd), bdh) -> new_lt1(vwx261, vwx271, bfd) new_primCompAux(vwx30, vwx40, vwx5, app(ty_Maybe, ec)) -> new_compare1(vwx30, vwx40, ec) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_@2, fb), fc), fd) -> new_lt(vwx260, vwx270, fb, fc) new_primCompAux(vwx30, vwx40, vwx5, app(app(app(ty_@3, ef), eg), eh)) -> new_compare4(vwx30, vwx40, ef, eg, eh) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_Either, fh), ga)), fd)) -> new_lt2(vwx260, vwx270, fh, ga) new_compare21(vwx33, vwx34, False, app(ty_[], bhh), bhg) -> new_ltEs0(vwx33, vwx34, bhh) new_compare22(vwx40, vwx41, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vwx40, vwx41, cfc) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(ty_Either, hb), hc)) -> new_ltEs2(vwx261, vwx271, hb, hc) new_compare21(vwx33, vwx34, False, app(app(ty_@2, bhe), bhf), bhg) -> new_ltEs(vwx33, vwx34, bhe, bhf) new_primCompAux(vwx30, vwx40, vwx5, app(app(ty_@2, dh), ea)) -> new_compare(vwx30, vwx40, dh, ea) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(vwx260, vwx270, bac) new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vwx65, vwx67, ce, cf) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbc)) -> new_ltEs2(vwx260, vwx270, bbf, bbg) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(ty_Either, bfe), bff), bdh) -> new_lt2(vwx261, vwx271, bfe, bff) new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(ty_[], cg)) -> new_ltEs0(vwx65, vwx67, cg) new_compare22(vwx40, vwx41, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx40, vwx41, cfg, cfh, cga) new_lt0(vwx64, vwx66, be) -> new_compare0(vwx64, vwx66, be) new_lt2(vwx64, vwx66, bg, bh) -> new_compare3(vwx64, vwx66, bg, bh) new_ltEs2(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs3(vwx260, vwx270, bbh, bca, bcb) new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_@2, h), ba), bd) -> new_compare(vwx64, vwx66, h, ba) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(app(ty_@3, gb), gc), gd), fd) -> new_lt3(vwx260, vwx270, gb, gc, gd) new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(vwx260, vwx270, bch, bda) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(ty_@2, bfa), bfb), bdh) -> new_lt(vwx261, vwx271, bfa, bfb) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(ty_Either, bgf), bgg)) -> new_ltEs2(vwx262, vwx272, bgf, bgg) new_compare22(vwx40, vwx41, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs2(vwx40, vwx41, cfe, cff) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(vwx260, vwx270, hh, baa) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_Either, fh), ga), fd) -> new_lt2(vwx260, vwx270, fh, ga) new_ltEs2(Left(vwx260), Left(vwx270), app(ty_[], bbd), bbc) -> new_ltEs0(vwx260, vwx270, bbd) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_Maybe, fg), fd) -> new_lt1(vwx260, vwx270, fg) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(ty_@2, gf), gg))) -> new_ltEs(vwx261, vwx271, gf, gg) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs3(vwx261, vwx271, hd, he, hf) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdg), bdh)) -> new_lt(vwx260, vwx270, bde, bdf) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(ty_[], bfc)), bdh)) -> new_lt0(vwx261, vwx271, bfc) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(ty_[], gh))) -> new_ltEs0(vwx261, vwx271, gh) new_compare22(vwx40, vwx41, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vwx40, vwx41, cfa, cfb) new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbe) -> new_lt3(vwx52, vwx55, cdd, cde, cdf) new_compare1(Just(vwx30), Just(vwx40), fa) -> new_compare20(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) new_lt3(vwx64, vwx66, ca, cb, cc) -> new_compare4(vwx64, vwx66, ca, cb, cc) new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbc)) -> new_ltEs1(vwx260, vwx270, bbe) new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs3(vwx261, vwx271, hd, he, hf) new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(vwx260, vwx270, baf, bag, bah) new_lt(vwx64, vwx66, h, ba) -> new_compare(vwx64, vwx66, h, ba) new_ltEs1(Just(vwx260), Just(vwx270), app(ty_[], bab)) -> new_ltEs0(vwx260, vwx270, bab) new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs2(vwx260, vwx270, bbf, bbg) new_primCompAux(vwx30, vwx40, vwx5, app(app(ty_Either, ed), ee)) -> new_compare3(vwx30, vwx40, ed, ee) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(ty_Either, bfe), bff)), bdh)) -> new_lt2(vwx261, vwx271, bfe, bff) new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs(vwx260, vwx270, bba, bbb) new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(ty_@2, bfa), bfb)), bdh)) -> new_lt(vwx261, vwx271, bfa, bfb) new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_@2, hh), baa)) -> new_ltEs(vwx260, vwx270, hh, baa) new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(ty_Maybe, ha)) -> new_ltEs1(vwx261, vwx271, ha) new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_Either, bad), bae)) -> new_ltEs2(vwx260, vwx270, bad, bae) new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(app(ty_@3, bfg), bfh), bga), bdh) -> new_lt3(vwx261, vwx271, bfg, bfh, bga) new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare5(vwx31, vwx41, dg), dg) new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(ty_[], bcf)) -> new_ltEs0(vwx260, vwx270, bcf) The TRS R consists of the following rules: new_esEs28(vwx302, vwx402, app(app(ty_@2, eeg), eeh)) -> new_esEs20(vwx302, vwx402, eeg, eeh) new_primCmpInt(Neg(Succ(vwx300)), Pos(vwx40)) -> LT new_ltEs22(vwx65, vwx67, app(ty_[], cg)) -> new_ltEs8(vwx65, vwx67, cg) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_esEs26(vwx300, vwx400, app(ty_Ratio, ecb)) -> new_esEs19(vwx300, vwx400, ecb) new_lt21(vwx261, vwx271, app(app(ty_Either, bfe), bff)) -> new_lt8(vwx261, vwx271, bfe, bff) new_pePe(True, vwx143) -> True new_esEs32(vwx52, vwx55, ty_Integer) -> new_esEs14(vwx52, vwx55) new_lt20(vwx260, vwx270, app(ty_Ratio, fed)) -> new_lt10(vwx260, vwx270, fed) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Float) -> new_ltEs9(vwx260, vwx270) new_ltEs20(vwx53, vwx56, ty_Ordering) -> new_ltEs15(vwx53, vwx56) new_compare28(vwx30, vwx40, ty_Bool) -> new_compare30(vwx30, vwx40) new_lt11(vwx64, vwx66) -> new_esEs13(new_compare17(vwx64, vwx66), LT) new_esEs5(vwx31, vwx41, app(ty_Maybe, fdf)) -> new_esEs21(vwx31, vwx41, fdf) new_ltEs22(vwx65, vwx67, app(ty_Ratio, feg)) -> new_ltEs5(vwx65, vwx67, feg) new_esEs32(vwx52, vwx55, app(ty_Maybe, cda)) -> new_esEs21(vwx52, vwx55, cda) new_esEs7(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_esEs21(Just(vwx300), Just(vwx400), app(app(app(ty_@3, fca), fcb), fcc)) -> new_esEs24(vwx300, vwx400, fca, fcb, fcc) new_esEs17(Left(vwx300), Left(vwx400), ty_Float, dcg) -> new_esEs25(vwx300, vwx400) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_lt13(vwx51, vwx54, ty_Char) -> new_lt19(vwx51, vwx54) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vwx301, vwx401, app(ty_[], eda)) -> new_esEs16(vwx301, vwx401, eda) new_esEs32(vwx52, vwx55, app(ty_Ratio, fce)) -> new_esEs19(vwx52, vwx55, fce) new_primCmpInt(Pos(Zero), Neg(Succ(vwx400))) -> GT new_ltEs22(vwx65, vwx67, ty_Char) -> new_ltEs14(vwx65, vwx67) new_esEs5(vwx31, vwx41, app(ty_Ratio, fdc)) -> new_esEs19(vwx31, vwx41, fdc) new_esEs6(vwx30, vwx40, ty_Ordering) -> new_esEs13(vwx30, vwx40) new_compare13(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare27(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs9(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs11(vwx32, vwx42, cba))), cag, cah, cba) new_esEs11(vwx32, vwx42, app(ty_Ratio, ead)) -> new_esEs19(vwx32, vwx42, ead) new_lt14(vwx52, vwx55, app(ty_Ratio, fce)) -> new_lt10(vwx52, vwx55, fce) new_esEs17(Left(vwx300), Left(vwx400), ty_Int, dcg) -> new_esEs23(vwx300, vwx400) new_ltEs21(vwx262, vwx272, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs13(vwx262, vwx272, bgh, bha, bhb) new_esEs18(@0, @0) -> True new_esEs31(vwx51, vwx54, ty_Int) -> new_esEs23(vwx51, vwx54) new_primCmpInt(Neg(Succ(vwx300)), Neg(vwx40)) -> new_primCmpNat0(vwx40, Succ(vwx300)) new_esEs28(vwx302, vwx402, ty_Bool) -> new_esEs12(vwx302, vwx402) new_compare17(LT, GT) -> LT new_esEs9(vwx30, vwx40, app(app(app(ty_@3, dgd), dge), dgf)) -> new_esEs24(vwx30, vwx40, dgd, dge, dgf) new_esEs4(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs7(vwx30, vwx40, ty_Bool) -> new_esEs12(vwx30, vwx40) new_esEs16(:(vwx300, vwx301), :(vwx400, vwx401), feh) -> new_asAs(new_esEs39(vwx300, vwx400, feh), new_esEs16(vwx301, vwx401, feh)) new_esEs36(vwx261, vwx271, ty_Double) -> new_esEs22(vwx261, vwx271) new_compare15(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Int) -> new_compare14(new_sr(vwx30, vwx41), new_sr(vwx40, vwx31)) new_compare18(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, efg, efh, ega) -> LT new_compare28(vwx30, vwx40, ty_@0) -> new_compare8(vwx30, vwx40) new_esEs36(vwx261, vwx271, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs24(vwx261, vwx271, bfg, bfh, bga) new_ltEs4(Left(vwx260), Left(vwx270), ty_Double, bbc) -> new_ltEs17(vwx260, vwx270) new_compare111(vwx114, vwx115, vwx116, vwx117, True, vwx119, efe, eff) -> new_compare16(vwx114, vwx115, vwx116, vwx117, True, efe, eff) new_ltEs15(EQ, LT) -> False new_esEs6(vwx30, vwx40, app(ty_[], daf)) -> new_esEs16(vwx30, vwx40, daf) new_esEs27(vwx301, vwx401, ty_Ordering) -> new_esEs13(vwx301, vwx401) new_lt21(vwx261, vwx271, ty_Bool) -> new_lt17(vwx261, vwx271) new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(ty_[], bcf)) -> new_ltEs8(vwx260, vwx270, bcf) new_esEs5(vwx31, vwx41, ty_Char) -> new_esEs15(vwx31, vwx41) new_ltEs19(vwx40, vwx41, ty_Ordering) -> new_ltEs15(vwx40, vwx41) new_compare17(LT, EQ) -> LT new_compare17(GT, EQ) -> GT new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_ltEs15(GT, LT) -> False new_ltEs21(vwx262, vwx272, app(app(ty_@2, bgb), bgc)) -> new_ltEs7(vwx262, vwx272, bgb, bgc) new_lt22(vwx64, vwx66, app(ty_[], be)) -> new_lt16(vwx64, vwx66, be) new_esEs10(vwx31, vwx41, ty_Int) -> new_esEs23(vwx31, vwx41) new_esEs32(vwx52, vwx55, ty_Char) -> new_esEs15(vwx52, vwx55) new_esEs9(vwx30, vwx40, app(ty_Ratio, dfh)) -> new_esEs19(vwx30, vwx40, dfh) new_esEs28(vwx302, vwx402, ty_@0) -> new_esEs18(vwx302, vwx402) new_compare24(vwx33, vwx34, False, ffe, bhg) -> new_compare112(vwx33, vwx34, new_ltEs24(vwx33, vwx34, ffe), ffe, bhg) new_esEs26(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs36(vwx261, vwx271, app(ty_Ratio, fee)) -> new_esEs19(vwx261, vwx271, fee) new_compare6(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare24(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) new_compare17(EQ, GT) -> LT new_lt23(vwx260, vwx270, app(ty_Maybe, fg)) -> new_lt4(vwx260, vwx270, fg) new_ltEs19(vwx40, vwx41, ty_@0) -> new_ltEs12(vwx40, vwx41) new_lt21(vwx261, vwx271, ty_Ordering) -> new_lt11(vwx261, vwx271) new_lt22(vwx64, vwx66, app(app(app(ty_@3, ca), cb), cc)) -> new_lt18(vwx64, vwx66, ca, cb, cc) new_ltEs23(vwx261, vwx271, ty_Int) -> new_ltEs16(vwx261, vwx271) new_lt13(vwx51, vwx54, app(app(ty_@2, cbb), cbc)) -> new_lt12(vwx51, vwx54, cbb, cbc) new_lt23(vwx260, vwx270, ty_Char) -> new_lt19(vwx260, vwx270) new_esEs36(vwx261, vwx271, ty_Int) -> new_esEs23(vwx261, vwx271) new_esEs17(Left(vwx300), Left(vwx400), ty_Double, dcg) -> new_esEs22(vwx300, vwx400) new_compare12(Float(vwx30, Neg(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare14(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_ltEs10(Just(vwx260), Just(vwx270), ty_@0) -> new_ltEs12(vwx260, vwx270) new_esEs7(vwx30, vwx40, app(app(ty_@2, cgf), cgg)) -> new_esEs20(vwx30, vwx40, cgf, cgg) new_ltEs10(Just(vwx260), Just(vwx270), ty_Ordering) -> new_ltEs15(vwx260, vwx270) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_ltEs22(vwx65, vwx67, app(ty_Maybe, da)) -> new_ltEs10(vwx65, vwx67, da) new_esEs39(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs9(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs26(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs5(vwx31, vwx41, ty_Integer) -> new_esEs14(vwx31, vwx41) new_ltEs22(vwx65, vwx67, app(app(ty_Either, db), dc)) -> new_ltEs4(vwx65, vwx67, db, dc) new_ltEs21(vwx262, vwx272, ty_Integer) -> new_ltEs6(vwx262, vwx272) new_compare7(Just(vwx30), Just(vwx40), fa) -> new_compare26(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) new_ltEs4(Left(vwx260), Left(vwx270), app(ty_[], bbd), bbc) -> new_ltEs8(vwx260, vwx270, bbd) new_not(True) -> False new_esEs38(vwx260, vwx270, ty_Ordering) -> new_esEs13(vwx260, vwx270) new_ltEs24(vwx33, vwx34, ty_Double) -> new_ltEs17(vwx33, vwx34) new_ltEs18(vwx26, vwx27, ty_Double) -> new_ltEs17(vwx26, vwx27) new_lt23(vwx260, vwx270, ty_Int) -> new_lt9(vwx260, vwx270) new_ltEs23(vwx261, vwx271, ty_Bool) -> new_ltEs11(vwx261, vwx271) new_esEs35(vwx260, vwx270, ty_Int) -> new_esEs23(vwx260, vwx270) new_esEs39(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_lt5(vwx64, vwx66) -> new_esEs13(new_compare8(vwx64, vwx66), LT) new_esEs10(vwx31, vwx41, ty_Double) -> new_esEs22(vwx31, vwx41) new_primCompAux00(vwx20, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs10(vwx31, vwx41, app(app(ty_Either, dgh), dha)) -> new_esEs17(vwx31, vwx41, dgh, dha) new_esEs37(vwx64, vwx66, ty_Integer) -> new_esEs14(vwx64, vwx66) new_lt22(vwx64, vwx66, ty_Float) -> new_lt7(vwx64, vwx66) new_lt22(vwx64, vwx66, ty_Integer) -> new_lt15(vwx64, vwx66) new_esEs21(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs10(vwx31, vwx41, ty_Float) -> new_esEs25(vwx31, vwx41) new_ltEs21(vwx262, vwx272, ty_Float) -> new_ltEs9(vwx262, vwx272) new_esEs10(vwx31, vwx41, app(app(app(ty_@3, dhf), dhg), dhh)) -> new_esEs24(vwx31, vwx41, dhf, dhg, dhh) new_compare30(True, True) -> EQ new_esEs36(vwx261, vwx271, app(ty_Maybe, bfd)) -> new_esEs21(vwx261, vwx271, bfd) new_lt23(vwx260, vwx270, app(app(app(ty_@3, gb), gc), gd)) -> new_lt18(vwx260, vwx270, gb, gc, gd) new_ltEs24(vwx33, vwx34, ty_Bool) -> new_ltEs11(vwx33, vwx34) new_ltEs19(vwx40, vwx41, ty_Double) -> new_ltEs17(vwx40, vwx41) new_esEs17(Left(vwx300), Left(vwx400), app(app(app(ty_@3, ddg), ddh), dea), dcg) -> new_esEs24(vwx300, vwx400, ddg, ddh, dea) new_ltEs19(vwx40, vwx41, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs13(vwx40, vwx41, cfg, cfh, cga) new_compare9(Double(vwx30, Pos(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare14(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs8(vwx30, vwx40, app(app(ty_Either, che), chf)) -> new_esEs17(vwx30, vwx40, che, chf) new_esEs38(vwx260, vwx270, ty_Bool) -> new_esEs12(vwx260, vwx270) new_esEs36(vwx261, vwx271, ty_Char) -> new_esEs15(vwx261, vwx271) new_lt21(vwx261, vwx271, ty_Integer) -> new_lt15(vwx261, vwx271) new_esEs5(vwx31, vwx41, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs24(vwx31, vwx41, fdg, fdh, fea) new_esEs11(vwx32, vwx42, app(app(ty_Either, eab), eac)) -> new_esEs17(vwx32, vwx42, eab, eac) new_esEs11(vwx32, vwx42, ty_Float) -> new_esEs25(vwx32, vwx42) new_esEs32(vwx52, vwx55, app(ty_[], cch)) -> new_esEs16(vwx52, vwx55, cch) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_ltEs10(Just(vwx260), Just(vwx270), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs13(vwx260, vwx270, baf, bag, bah) new_lt13(vwx51, vwx54, ty_Double) -> new_lt6(vwx51, vwx54) new_ltEs4(Left(vwx260), Left(vwx270), ty_Bool, bbc) -> new_ltEs11(vwx260, vwx270) new_esEs29(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs11(vwx32, vwx42, ty_Int) -> new_esEs23(vwx32, vwx42) new_esEs5(vwx31, vwx41, ty_Double) -> new_esEs22(vwx31, vwx41) new_ltEs15(GT, EQ) -> False new_lt6(vwx64, vwx66) -> new_esEs13(new_compare9(vwx64, vwx66), LT) new_compare16(vwx114, vwx115, vwx116, vwx117, True, efe, eff) -> LT new_lt14(vwx52, vwx55, app(app(ty_@2, ccf), ccg)) -> new_lt12(vwx52, vwx55, ccf, ccg) new_esEs39(vwx300, vwx400, app(app(ty_@2, fgc), fgd)) -> new_esEs20(vwx300, vwx400, fgc, fgd) new_esEs6(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_esEs21(Just(vwx300), Just(vwx400), app(ty_Maybe, fbh)) -> new_esEs21(vwx300, vwx400, fbh) new_lt20(vwx260, vwx270, app(app(ty_@2, bde), bdf)) -> new_lt12(vwx260, vwx270, bde, bdf) new_primCompAux00(vwx20, GT) -> GT new_ltEs4(Left(vwx260), Left(vwx270), app(ty_Ratio, dbh), bbc) -> new_ltEs5(vwx260, vwx270, dbh) new_esEs4(vwx30, vwx40, app(ty_Ratio, fec)) -> new_esEs19(vwx30, vwx40, fec) new_esEs9(vwx30, vwx40, ty_Double) -> new_esEs22(vwx30, vwx40) new_ltEs21(vwx262, vwx272, ty_Char) -> new_ltEs14(vwx262, vwx272) new_esEs37(vwx64, vwx66, ty_Char) -> new_esEs15(vwx64, vwx66) new_esEs13(LT, LT) -> True new_ltEs10(Nothing, Just(vwx270), dcd) -> True new_esEs26(vwx300, vwx400, app(ty_Maybe, ece)) -> new_esEs21(vwx300, vwx400, ece) new_lt22(vwx64, vwx66, app(ty_Maybe, bf)) -> new_lt4(vwx64, vwx66, bf) new_esEs4(vwx30, vwx40, ty_Double) -> new_esEs22(vwx30, vwx40) new_ltEs20(vwx53, vwx56, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs13(vwx53, vwx56, cee, cef, ceg) new_compare28(vwx30, vwx40, ty_Double) -> new_compare9(vwx30, vwx40) new_esEs4(vwx30, vwx40, app(app(ty_Either, deb), dcg)) -> new_esEs17(vwx30, vwx40, deb, dcg) new_primCmpInt(Pos(Succ(vwx300)), Neg(vwx40)) -> GT new_esEs37(vwx64, vwx66, app(ty_[], be)) -> new_esEs16(vwx64, vwx66, be) new_esEs38(vwx260, vwx270, app(app(ty_@2, fb), fc)) -> new_esEs20(vwx260, vwx270, fb, fc) new_esEs4(vwx30, vwx40, app(app(app(ty_@3, ebd), ebe), ebf)) -> new_esEs24(vwx30, vwx40, ebd, ebe, ebf) new_ltEs18(vwx26, vwx27, ty_Bool) -> new_ltEs11(vwx26, vwx27) new_primCompAux0(vwx30, vwx40, vwx5, dg) -> new_primCompAux00(vwx5, new_compare28(vwx30, vwx40, dg)) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Integer) -> new_ltEs6(vwx260, vwx270) new_ltEs10(Just(vwx260), Just(vwx270), ty_Integer) -> new_ltEs6(vwx260, vwx270) new_ltEs4(Left(vwx260), Left(vwx270), app(ty_Maybe, bbe), bbc) -> new_ltEs10(vwx260, vwx270, bbe) new_esEs30(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs4(vwx30, vwx40, ty_Float) -> new_esEs25(vwx30, vwx40) new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(ty_Maybe, bcg)) -> new_ltEs10(vwx260, vwx270, bcg) new_esEs11(vwx32, vwx42, ty_Double) -> new_esEs22(vwx32, vwx42) new_lt9(vwx64, vwx66) -> new_esEs13(new_compare14(vwx64, vwx66), LT) new_esEs36(vwx261, vwx271, ty_Integer) -> new_esEs14(vwx261, vwx271) new_compare17(EQ, LT) -> GT new_lt20(vwx260, vwx270, app(app(ty_Either, bec), bed)) -> new_lt8(vwx260, vwx270, bec, bed) new_esEs28(vwx302, vwx402, ty_Ordering) -> new_esEs13(vwx302, vwx402) new_esEs5(vwx31, vwx41, ty_Int) -> new_esEs23(vwx31, vwx41) new_primPlusNat1(Succ(vwx14400), Succ(vwx41000)) -> Succ(Succ(new_primPlusNat1(vwx14400, vwx41000))) new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(ty_Ratio, dca)) -> new_ltEs5(vwx260, vwx270, dca) new_esEs27(vwx301, vwx401, app(app(ty_@2, ede), edf)) -> new_esEs20(vwx301, vwx401, ede, edf) new_ltEs21(vwx262, vwx272, ty_@0) -> new_ltEs12(vwx262, vwx272) new_ltEs21(vwx262, vwx272, ty_Ordering) -> new_ltEs15(vwx262, vwx272) new_esEs31(vwx51, vwx54, ty_Integer) -> new_esEs14(vwx51, vwx54) new_compare5(:(vwx30, vwx31), [], dg) -> GT new_primCmpNat0(Zero, Succ(vwx400)) -> LT new_lt21(vwx261, vwx271, app(ty_[], bfc)) -> new_lt16(vwx261, vwx271, bfc) new_ltEs22(vwx65, vwx67, app(app(ty_@2, ce), cf)) -> new_ltEs7(vwx65, vwx67, ce, cf) new_esEs29(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs35(vwx260, vwx270, ty_@0) -> new_esEs18(vwx260, vwx270) new_esEs11(vwx32, vwx42, app(app(app(ty_@3, eah), eba), ebb)) -> new_esEs24(vwx32, vwx42, eah, eba, ebb) new_esEs21(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs20(vwx53, vwx56, ty_Double) -> new_ltEs17(vwx53, vwx56) new_esEs9(vwx30, vwx40, app(app(ty_Either, dff), dfg)) -> new_esEs17(vwx30, vwx40, dff, dfg) new_esEs9(vwx30, vwx40, ty_Float) -> new_esEs25(vwx30, vwx40) new_lt22(vwx64, vwx66, ty_Bool) -> new_lt17(vwx64, vwx66) new_ltEs19(vwx40, vwx41, ty_Integer) -> new_ltEs6(vwx40, vwx41) new_esEs37(vwx64, vwx66, app(ty_Maybe, bf)) -> new_esEs21(vwx64, vwx66, bf) new_ltEs10(Just(vwx260), Just(vwx270), ty_Double) -> new_ltEs17(vwx260, vwx270) new_esEs31(vwx51, vwx54, app(ty_Maybe, cbg)) -> new_esEs21(vwx51, vwx54, cbg) new_esEs28(vwx302, vwx402, app(ty_[], eec)) -> new_esEs16(vwx302, vwx402, eec) new_primCmpNat0(Succ(vwx300), Zero) -> GT new_lt13(vwx51, vwx54, app(ty_Ratio, fcd)) -> new_lt10(vwx51, vwx54, fcd) new_ltEs21(vwx262, vwx272, app(ty_Ratio, fef)) -> new_ltEs5(vwx262, vwx272, fef) new_esEs8(vwx30, vwx40, app(app(ty_@2, chh), daa)) -> new_esEs20(vwx30, vwx40, chh, daa) new_pePe(False, vwx143) -> vwx143 new_esEs4(vwx30, vwx40, app(ty_Maybe, fba)) -> new_esEs21(vwx30, vwx40, fba) new_compare30(True, False) -> GT new_esEs6(vwx30, vwx40, ty_Integer) -> new_esEs14(vwx30, vwx40) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_Maybe, bac)) -> new_ltEs10(vwx260, vwx270, bac) new_lt22(vwx64, vwx66, ty_Ordering) -> new_lt11(vwx64, vwx66) new_ltEs10(Just(vwx260), Just(vwx270), ty_Float) -> new_ltEs9(vwx260, vwx270) new_esEs10(vwx31, vwx41, ty_@0) -> new_esEs18(vwx31, vwx41) new_esEs35(vwx260, vwx270, ty_Bool) -> new_esEs12(vwx260, vwx270) new_esEs12(False, False) -> True new_compare25(vwx40, vwx41, True, ceh, dce) -> EQ new_esEs39(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs27(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_esEs39(vwx300, vwx400, app(app(ty_Either, ffh), fga)) -> new_esEs17(vwx300, vwx400, ffh, fga) new_ltEs18(vwx26, vwx27, ty_Int) -> new_ltEs16(vwx26, vwx27) new_ltEs23(vwx261, vwx271, ty_Double) -> new_ltEs17(vwx261, vwx271) new_compare112(vwx94, vwx95, True, fha, fhb) -> LT new_ltEs21(vwx262, vwx272, ty_Double) -> new_ltEs17(vwx262, vwx272) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Char) -> new_esEs15(vwx300, vwx400) new_esEs30(vwx301, vwx401, app(app(ty_Either, ehh), faa)) -> new_esEs17(vwx301, vwx401, ehh, faa) new_esEs26(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs13(GT, GT) -> True new_compare10(vwx87, vwx88, False, egb) -> GT new_compare6(Left(vwx30), Right(vwx40), bhc, bhd) -> LT new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs29(vwx300, vwx400, app(app(ty_@2, eha), ehb)) -> new_esEs20(vwx300, vwx400, eha, ehb) new_esEs37(vwx64, vwx66, ty_Float) -> new_esEs25(vwx64, vwx66) new_esEs27(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_compare11(vwx102, vwx103, False, ffc, ffd) -> GT new_ltEs23(vwx261, vwx271, app(ty_Ratio, ffb)) -> new_ltEs5(vwx261, vwx271, ffb) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_esEs17(Right(vwx300), Right(vwx400), deb, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs6(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_esEs35(vwx260, vwx270, app(ty_Ratio, fed)) -> new_esEs19(vwx260, vwx270, fed) new_lt18(vwx64, vwx66, ca, cb, cc) -> new_esEs13(new_compare13(vwx64, vwx66, ca, cb, cc), LT) new_esEs29(vwx300, vwx400, app(app(ty_Either, egf), egg)) -> new_esEs17(vwx300, vwx400, egf, egg) new_compare29(Integer(vwx30), Integer(vwx40)) -> new_primCmpInt(vwx30, vwx40) new_compare17(LT, LT) -> EQ new_lt14(vwx52, vwx55, ty_Bool) -> new_lt17(vwx52, vwx55) new_esEs38(vwx260, vwx270, app(ty_Maybe, fg)) -> new_esEs21(vwx260, vwx270, fg) new_compare5([], :(vwx40, vwx41), dg) -> LT new_compare28(vwx30, vwx40, app(app(ty_@2, dh), ea)) -> new_compare19(vwx30, vwx40, dh, ea) new_esEs26(vwx300, vwx400, app(ty_[], ebg)) -> new_esEs16(vwx300, vwx400, ebg) new_ltEs20(vwx53, vwx56, ty_@0) -> new_ltEs12(vwx53, vwx56) new_ltEs18(vwx26, vwx27, app(app(app(ty_@3, beh), bdg), bdh)) -> new_ltEs13(vwx26, vwx27, beh, bdg, bdh) new_lt23(vwx260, vwx270, app(ty_Ratio, ffa)) -> new_lt10(vwx260, vwx270, ffa) new_esEs37(vwx64, vwx66, ty_Bool) -> new_esEs12(vwx64, vwx66) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_primCmpInt(Neg(Zero), Pos(Succ(vwx400))) -> LT new_ltEs19(vwx40, vwx41, ty_Char) -> new_ltEs14(vwx40, vwx41) new_lt14(vwx52, vwx55, app(ty_Maybe, cda)) -> new_lt4(vwx52, vwx55, cda) new_primMulInt(Pos(vwx300), Pos(vwx410)) -> Pos(new_primMulNat0(vwx300, vwx410)) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs24(vwx30, vwx40, dac, dad, dae) new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs22(vwx30, vwx40) new_esEs29(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_lt13(vwx51, vwx54, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt18(vwx51, vwx54, ccb, ccc, ccd) new_ltEs10(Just(vwx260), Just(vwx270), ty_Bool) -> new_ltEs11(vwx260, vwx270) new_esEs17(Left(vwx300), Left(vwx400), app(ty_[], dch), dcg) -> new_esEs16(vwx300, vwx400, dch) new_esEs29(vwx300, vwx400, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_esEs24(vwx300, vwx400, ehd, ehe, ehf) new_esEs13(EQ, GT) -> False new_esEs13(GT, EQ) -> False new_lt14(vwx52, vwx55, ty_Int) -> new_lt9(vwx52, vwx55) new_compare12(Float(vwx30, Pos(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare14(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare12(Float(vwx30, Neg(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare14(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_lt14(vwx52, vwx55, ty_Integer) -> new_lt15(vwx52, vwx55) new_esEs30(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_esEs35(vwx260, vwx270, ty_Float) -> new_esEs25(vwx260, vwx270) new_esEs27(vwx301, vwx401, app(ty_Ratio, edd)) -> new_esEs19(vwx301, vwx401, edd) new_compare10(vwx87, vwx88, True, egb) -> LT new_esEs38(vwx260, vwx270, ty_Char) -> new_esEs15(vwx260, vwx270) new_primMulNat0(Succ(vwx3000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx4100)) -> Zero new_esEs29(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_compare28(vwx30, vwx40, app(ty_Ratio, feb)) -> new_compare15(vwx30, vwx40, feb) new_ltEs11(False, False) -> True new_primPlusNat0(Zero, vwx4100) -> Succ(vwx4100) new_esEs6(vwx30, vwx40, app(ty_Maybe, dbd)) -> new_esEs21(vwx30, vwx40, dbd) new_esEs26(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_esEs32(vwx52, vwx55, app(app(ty_Either, cdb), cdc)) -> new_esEs17(vwx52, vwx55, cdb, cdc) new_compare5(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux0(vwx30, vwx40, new_compare5(vwx31, vwx41, dg), dg) new_esEs27(vwx301, vwx401, app(ty_Maybe, edg)) -> new_esEs21(vwx301, vwx401, edg) new_esEs5(vwx31, vwx41, app(app(ty_Either, fda), fdb)) -> new_esEs17(vwx31, vwx41, fda, fdb) new_esEs38(vwx260, vwx270, app(ty_[], ff)) -> new_esEs16(vwx260, vwx270, ff) new_esEs30(vwx301, vwx401, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs24(vwx301, vwx401, faf, fag, fah) new_lt14(vwx52, vwx55, ty_@0) -> new_lt5(vwx52, vwx55) new_compare26(vwx26, vwx27, True, dcb) -> EQ new_esEs31(vwx51, vwx54, ty_@0) -> new_esEs18(vwx51, vwx54) new_fsEs(vwx138) -> new_not(new_esEs13(vwx138, GT)) new_lt14(vwx52, vwx55, ty_Char) -> new_lt19(vwx52, vwx55) new_esEs7(vwx30, vwx40, app(app(ty_Either, cgc), cgd)) -> new_esEs17(vwx30, vwx40, cgc, cgd) new_esEs6(vwx30, vwx40, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs24(vwx30, vwx40, dbe, dbf, dbg) new_ltEs19(vwx40, vwx41, app(ty_Ratio, dcf)) -> new_ltEs5(vwx40, vwx41, dcf) new_esEs30(vwx301, vwx401, app(app(ty_@2, fac), fad)) -> new_esEs20(vwx301, vwx401, fac, fad) new_ltEs22(vwx65, vwx67, ty_Float) -> new_ltEs9(vwx65, vwx67) new_lt13(vwx51, vwx54, app(ty_[], cbf)) -> new_lt16(vwx51, vwx54, cbf) new_esEs6(vwx30, vwx40, ty_Double) -> new_esEs22(vwx30, vwx40) new_esEs28(vwx302, vwx402, app(ty_Maybe, efa)) -> new_esEs21(vwx302, vwx402, efa) new_esEs37(vwx64, vwx66, ty_Ordering) -> new_esEs13(vwx64, vwx66) new_lt23(vwx260, vwx270, ty_Integer) -> new_lt15(vwx260, vwx270) new_ltEs4(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs13(vwx260, vwx270, bbh, bca, bcb) new_esEs38(vwx260, vwx270, ty_Integer) -> new_esEs14(vwx260, vwx270) new_esEs6(vwx30, vwx40, app(app(ty_Either, dag), dah)) -> new_esEs17(vwx30, vwx40, dag, dah) new_esEs17(Left(vwx300), Left(vwx400), ty_Bool, dcg) -> new_esEs12(vwx300, vwx400) new_esEs21(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs28(vwx302, vwx402, ty_Char) -> new_esEs15(vwx302, vwx402) new_esEs38(vwx260, vwx270, app(ty_Ratio, ffa)) -> new_esEs19(vwx260, vwx270, ffa) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_@0) -> new_ltEs12(vwx260, vwx270) new_esEs21(Just(vwx300), Just(vwx400), app(ty_Ratio, fbe)) -> new_esEs19(vwx300, vwx400, fbe) new_ltEs11(True, True) -> True new_esEs5(vwx31, vwx41, app(ty_[], fch)) -> new_esEs16(vwx31, vwx41, fch) new_primPlusNat1(Succ(vwx14400), Zero) -> Succ(vwx14400) new_primPlusNat1(Zero, Succ(vwx41000)) -> Succ(vwx41000) new_lt21(vwx261, vwx271, ty_Float) -> new_lt7(vwx261, vwx271) new_compare28(vwx30, vwx40, ty_Int) -> new_compare14(vwx30, vwx40) new_esEs21(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs5(vwx31, vwx41, app(app(ty_@2, fdd), fde)) -> new_esEs20(vwx31, vwx41, fdd, fde) new_esEs27(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs31(vwx51, vwx54, app(app(ty_@2, cbb), cbc)) -> new_esEs20(vwx51, vwx54, cbb, cbc) new_ltEs10(Just(vwx260), Just(vwx270), app(app(ty_Either, bad), bae)) -> new_ltEs4(vwx260, vwx270, bad, bae) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Ordering) -> new_ltEs15(vwx260, vwx270) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Char) -> new_ltEs14(vwx260, vwx270) new_compare28(vwx30, vwx40, ty_Integer) -> new_compare29(vwx30, vwx40) new_ltEs13(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, bdh) -> new_pePe(new_lt20(vwx260, vwx270, beh), new_asAs(new_esEs35(vwx260, vwx270, beh), new_pePe(new_lt21(vwx261, vwx271, bdg), new_asAs(new_esEs36(vwx261, vwx271, bdg), new_ltEs21(vwx262, vwx272, bdh))))) new_esEs29(vwx300, vwx400, app(ty_Maybe, ehc)) -> new_esEs21(vwx300, vwx400, ehc) new_esEs32(vwx52, vwx55, ty_Double) -> new_esEs22(vwx52, vwx55) new_lt14(vwx52, vwx55, app(app(app(ty_@3, cdd), cde), cdf)) -> new_lt18(vwx52, vwx55, cdd, cde, cdf) new_esEs32(vwx52, vwx55, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs24(vwx52, vwx55, cdd, cde, cdf) new_esEs36(vwx261, vwx271, ty_Ordering) -> new_esEs13(vwx261, vwx271) new_esEs6(vwx30, vwx40, app(app(ty_@2, dbb), dbc)) -> new_esEs20(vwx30, vwx40, dbb, dbc) new_esEs36(vwx261, vwx271, ty_Float) -> new_esEs25(vwx261, vwx271) new_esEs31(vwx51, vwx54, ty_Double) -> new_esEs22(vwx51, vwx54) new_lt20(vwx260, vwx270, ty_Float) -> new_lt7(vwx260, vwx270) new_esEs17(Left(vwx300), Left(vwx400), app(ty_Maybe, ddf), dcg) -> new_esEs21(vwx300, vwx400, ddf) new_esEs21(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs12(vwx300, vwx400) new_lt13(vwx51, vwx54, ty_Integer) -> new_lt15(vwx51, vwx54) new_ltEs20(vwx53, vwx56, app(app(ty_@2, cdg), cdh)) -> new_ltEs7(vwx53, vwx56, cdg, cdh) new_lt23(vwx260, vwx270, app(ty_[], ff)) -> new_lt16(vwx260, vwx270, ff) new_compare26(vwx26, vwx27, False, dcb) -> new_compare10(vwx26, vwx27, new_ltEs18(vwx26, vwx27, dcb), dcb) new_esEs20(@2(vwx300, vwx301), @2(vwx400, vwx401), egc, egd) -> new_asAs(new_esEs29(vwx300, vwx400, egc), new_esEs30(vwx301, vwx401, egd)) new_compare210(vwx64, vwx65, vwx66, vwx67, True, cd, bd) -> EQ new_esEs16([], [], feh) -> True new_lt20(vwx260, vwx270, ty_Ordering) -> new_lt11(vwx260, vwx270) new_esEs26(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_ltEs18(vwx26, vwx27, ty_@0) -> new_ltEs12(vwx26, vwx27) new_esEs28(vwx302, vwx402, ty_Integer) -> new_esEs14(vwx302, vwx402) new_ltEs8(vwx26, vwx27, hg) -> new_fsEs(new_compare5(vwx26, vwx27, hg)) new_primMulInt(Neg(vwx300), Neg(vwx410)) -> Pos(new_primMulNat0(vwx300, vwx410)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx400))) -> new_primCmpNat0(Zero, Succ(vwx400)) new_esEs4(vwx30, vwx40, ty_Integer) -> new_esEs14(vwx30, vwx40) new_esEs31(vwx51, vwx54, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs24(vwx51, vwx54, ccb, ccc, ccd) new_esEs21(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs25(vwx300, vwx400) new_esEs37(vwx64, vwx66, ty_Int) -> new_esEs23(vwx64, vwx66) new_esEs31(vwx51, vwx54, app(app(ty_Either, cbh), cca)) -> new_esEs17(vwx51, vwx54, cbh, cca) new_lt23(vwx260, vwx270, app(app(ty_@2, fb), fc)) -> new_lt12(vwx260, vwx270, fb, fc) new_lt13(vwx51, vwx54, ty_Bool) -> new_lt17(vwx51, vwx54) new_ltEs11(False, True) -> True new_ltEs19(vwx40, vwx41, app(app(ty_@2, cfa), cfb)) -> new_ltEs7(vwx40, vwx41, cfa, cfb) new_esEs7(vwx30, vwx40, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs24(vwx30, vwx40, cha, chb, chc) new_ltEs15(EQ, GT) -> True new_ltEs23(vwx261, vwx271, ty_Float) -> new_ltEs9(vwx261, vwx271) new_esEs39(vwx300, vwx400, app(ty_[], ffg)) -> new_esEs16(vwx300, vwx400, ffg) new_ltEs18(vwx26, vwx27, ty_Ordering) -> new_ltEs15(vwx26, vwx27) new_esEs36(vwx261, vwx271, ty_Bool) -> new_esEs12(vwx261, vwx271) new_ltEs14(vwx26, vwx27) -> new_fsEs(new_compare31(vwx26, vwx27)) new_esEs39(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_ltEs18(vwx26, vwx27, ty_Char) -> new_ltEs14(vwx26, vwx27) new_lt13(vwx51, vwx54, app(ty_Maybe, cbg)) -> new_lt4(vwx51, vwx54, cbg) new_esEs7(vwx30, vwx40, ty_Double) -> new_esEs22(vwx30, vwx40) new_esEs4(vwx30, vwx40, app(ty_[], feh)) -> new_esEs16(vwx30, vwx40, feh) new_esEs37(vwx64, vwx66, app(ty_Ratio, ebc)) -> new_esEs19(vwx64, vwx66, ebc) new_esEs4(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_lt13(vwx51, vwx54, ty_Int) -> new_lt9(vwx51, vwx54) new_esEs30(vwx301, vwx401, ty_Char) -> new_esEs15(vwx301, vwx401) new_esEs26(vwx300, vwx400, ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs38(vwx260, vwx270, ty_Double) -> new_esEs22(vwx260, vwx270) new_esEs11(vwx32, vwx42, ty_Bool) -> new_esEs12(vwx32, vwx42) new_compare18(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, False, efg, efh, ega) -> GT new_esEs38(vwx260, vwx270, ty_Float) -> new_esEs25(vwx260, vwx270) new_ltEs23(vwx261, vwx271, ty_@0) -> new_ltEs12(vwx261, vwx271) new_esEs17(Left(vwx300), Left(vwx400), app(ty_Ratio, ddc), dcg) -> new_esEs19(vwx300, vwx400, ddc) new_ltEs23(vwx261, vwx271, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs13(vwx261, vwx271, hd, he, hf) new_primMulInt(Pos(vwx300), Neg(vwx410)) -> Neg(new_primMulNat0(vwx300, vwx410)) new_primMulInt(Neg(vwx300), Pos(vwx410)) -> Neg(new_primMulNat0(vwx300, vwx410)) new_esEs35(vwx260, vwx270, app(ty_[], bea)) -> new_esEs16(vwx260, vwx270, bea) new_esEs39(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_ltEs18(vwx26, vwx27, app(ty_Maybe, dcd)) -> new_ltEs10(vwx26, vwx27, dcd) new_esEs9(vwx30, vwx40, app(app(ty_@2, dga), dgb)) -> new_esEs20(vwx30, vwx40, dga, dgb) new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs4(vwx260, vwx270, bch, bda) new_esEs31(vwx51, vwx54, ty_Ordering) -> new_esEs13(vwx51, vwx54) new_esEs7(vwx30, vwx40, app(ty_Ratio, cge)) -> new_esEs19(vwx30, vwx40, cge) new_esEs36(vwx261, vwx271, app(app(ty_@2, bfa), bfb)) -> new_esEs20(vwx261, vwx271, bfa, bfb) new_esEs11(vwx32, vwx42, app(app(ty_@2, eae), eaf)) -> new_esEs20(vwx32, vwx42, eae, eaf) new_compare17(GT, GT) -> EQ new_esEs32(vwx52, vwx55, ty_@0) -> new_esEs18(vwx52, vwx55) new_ltEs20(vwx53, vwx56, app(ty_Ratio, fcf)) -> new_ltEs5(vwx53, vwx56, fcf) new_compare28(vwx30, vwx40, ty_Ordering) -> new_compare17(vwx30, vwx40) new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, vwx136, efg, efh, ega) -> new_compare18(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, True, efg, efh, ega) new_compare5([], [], dg) -> EQ new_lt23(vwx260, vwx270, ty_Ordering) -> new_lt11(vwx260, vwx270) new_sr0(Integer(vwx300), Integer(vwx410)) -> Integer(new_primMulInt(vwx300, vwx410)) new_esEs34(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_ltEs24(vwx33, vwx34, app(ty_Maybe, caa)) -> new_ltEs10(vwx33, vwx34, caa) new_esEs7(vwx30, vwx40, ty_Integer) -> new_esEs14(vwx30, vwx40) new_ltEs15(LT, GT) -> True new_compare30(False, False) -> EQ new_ltEs20(vwx53, vwx56, app(app(ty_Either, cec), ced)) -> new_ltEs4(vwx53, vwx56, cec, ced) new_ltEs9(vwx26, vwx27) -> new_fsEs(new_compare12(vwx26, vwx27)) new_ltEs19(vwx40, vwx41, ty_Int) -> new_ltEs16(vwx40, vwx41) new_esEs21(Just(vwx300), Just(vwx400), app(app(ty_@2, fbf), fbg)) -> new_esEs20(vwx300, vwx400, fbf, fbg) new_esEs38(vwx260, vwx270, ty_Int) -> new_esEs23(vwx260, vwx270) new_ltEs18(vwx26, vwx27, app(app(ty_@2, ge), fd)) -> new_ltEs7(vwx26, vwx27, ge, fd) new_lt20(vwx260, vwx270, app(app(app(ty_@3, bee), bef), beg)) -> new_lt18(vwx260, vwx270, bee, bef, beg) new_esEs38(vwx260, vwx270, app(app(ty_Either, fh), ga)) -> new_esEs17(vwx260, vwx270, fh, ga) new_esEs39(vwx300, vwx400, app(ty_Maybe, fge)) -> new_esEs21(vwx300, vwx400, fge) new_ltEs22(vwx65, vwx67, ty_Double) -> new_ltEs17(vwx65, vwx67) new_ltEs22(vwx65, vwx67, ty_Ordering) -> new_ltEs15(vwx65, vwx67) new_compare6(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare25(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) new_esEs6(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs32(vwx52, vwx55, ty_Bool) -> new_esEs12(vwx52, vwx55) new_ltEs24(vwx33, vwx34, ty_Float) -> new_ltEs9(vwx33, vwx34) new_esEs17(Left(vwx300), Left(vwx400), ty_Ordering, dcg) -> new_esEs13(vwx300, vwx400) new_esEs33(vwx300, vwx400, ty_Int) -> new_esEs23(vwx300, vwx400) new_asAs(True, vwx82) -> vwx82 new_esEs30(vwx301, vwx401, ty_Integer) -> new_esEs14(vwx301, vwx401) new_esEs26(vwx300, vwx400, app(app(ty_@2, ecc), ecd)) -> new_esEs20(vwx300, vwx400, ecc, ecd) new_esEs36(vwx261, vwx271, ty_@0) -> new_esEs18(vwx261, vwx271) new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs13(vwx30, vwx40) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Bool) -> new_ltEs11(vwx260, vwx270) new_esEs10(vwx31, vwx41, ty_Ordering) -> new_esEs13(vwx31, vwx41) new_ltEs16(vwx26, vwx27) -> new_fsEs(new_compare14(vwx26, vwx27)) new_esEs10(vwx31, vwx41, app(ty_[], dgg)) -> new_esEs16(vwx31, vwx41, dgg) new_esEs30(vwx301, vwx401, app(ty_Ratio, fab)) -> new_esEs19(vwx301, vwx401, fab) new_compare30(False, True) -> LT new_esEs9(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_ltEs10(Just(vwx260), Just(vwx270), ty_Int) -> new_ltEs16(vwx260, vwx270) new_compare31(Char(vwx30), Char(vwx40)) -> new_primCmpNat0(vwx30, vwx40) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Double) -> new_esEs22(vwx300, vwx400) new_lt13(vwx51, vwx54, ty_Float) -> new_lt7(vwx51, vwx54) new_esEs35(vwx260, vwx270, ty_Ordering) -> new_esEs13(vwx260, vwx270) new_lt13(vwx51, vwx54, app(app(ty_Either, cbh), cca)) -> new_lt8(vwx51, vwx54, cbh, cca) new_esEs30(vwx301, vwx401, app(ty_Maybe, fae)) -> new_esEs21(vwx301, vwx401, fae) new_esEs21(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs18(vwx300, vwx400) new_esEs26(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs29(vwx300, vwx400, app(ty_[], ege)) -> new_esEs16(vwx300, vwx400, ege) new_esEs11(vwx32, vwx42, ty_@0) -> new_esEs18(vwx32, vwx42) new_ltEs20(vwx53, vwx56, ty_Char) -> new_ltEs14(vwx53, vwx56) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Int) -> new_esEs23(vwx300, vwx400) new_esEs27(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_ltEs18(vwx26, vwx27, ty_Float) -> new_ltEs9(vwx26, vwx27) new_esEs38(vwx260, vwx270, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs24(vwx260, vwx270, gb, gc, gd) new_compare24(vwx33, vwx34, True, ffe, bhg) -> EQ new_ltEs24(vwx33, vwx34, app(ty_[], bhh)) -> new_ltEs8(vwx33, vwx34, bhh) new_ltEs4(Left(vwx260), Left(vwx270), ty_Float, bbc) -> new_ltEs9(vwx260, vwx270) new_esEs8(vwx30, vwx40, app(ty_[], chd)) -> new_esEs16(vwx30, vwx40, chd) new_primCmpInt(Pos(Succ(vwx300)), Pos(vwx40)) -> new_primCmpNat0(Succ(vwx300), vwx40) new_esEs24(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), ebd, ebe, ebf) -> new_asAs(new_esEs26(vwx300, vwx400, ebd), new_asAs(new_esEs27(vwx301, vwx401, ebe), new_esEs28(vwx302, vwx402, ebf))) new_ltEs18(vwx26, vwx27, app(ty_[], hg)) -> new_ltEs8(vwx26, vwx27, hg) new_compare6(Right(vwx30), Left(vwx40), bhc, bhd) -> GT new_esEs5(vwx31, vwx41, ty_Bool) -> new_esEs12(vwx31, vwx41) new_esEs29(vwx300, vwx400, ty_Char) -> new_esEs15(vwx300, vwx400) new_primCompAux00(vwx20, EQ) -> vwx20 new_lt22(vwx64, vwx66, app(app(ty_@2, h), ba)) -> new_lt12(vwx64, vwx66, h, ba) new_esEs12(False, True) -> False new_esEs12(True, False) -> False new_sr(vwx30, vwx41) -> new_primMulInt(vwx30, vwx41) new_esEs28(vwx302, vwx402, ty_Int) -> new_esEs23(vwx302, vwx402) new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_ltEs4(Left(vwx260), Left(vwx270), ty_Integer, bbc) -> new_ltEs6(vwx260, vwx270) new_primMulNat0(Zero, Zero) -> Zero new_esEs4(vwx30, vwx40, app(app(ty_@2, egc), egd)) -> new_esEs20(vwx30, vwx40, egc, egd) new_esEs12(True, True) -> True new_lt20(vwx260, vwx270, app(ty_[], bea)) -> new_lt16(vwx260, vwx270, bea) new_ltEs23(vwx261, vwx271, app(app(ty_@2, gf), gg)) -> new_ltEs7(vwx261, vwx271, gf, gg) new_esEs30(vwx301, vwx401, app(ty_[], ehg)) -> new_esEs16(vwx301, vwx401, ehg) new_compare110(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, False, vwx136, efg, efh, ega) -> new_compare18(vwx129, vwx130, vwx131, vwx132, vwx133, vwx134, vwx136, efg, efh, ega) new_lt14(vwx52, vwx55, app(ty_[], cch)) -> new_lt16(vwx52, vwx55, cch) new_lt14(vwx52, vwx55, ty_Double) -> new_lt6(vwx52, vwx55) new_lt23(vwx260, vwx270, ty_Bool) -> new_lt17(vwx260, vwx270) new_esEs27(vwx301, vwx401, ty_Double) -> new_esEs22(vwx301, vwx401) new_lt23(vwx260, vwx270, ty_Float) -> new_lt7(vwx260, vwx270) new_esEs25(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs23(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs27(vwx301, vwx401, app(app(ty_Either, edb), edc)) -> new_esEs17(vwx301, vwx401, edb, edc) new_ltEs19(vwx40, vwx41, app(ty_[], cfc)) -> new_ltEs8(vwx40, vwx41, cfc) new_ltEs20(vwx53, vwx56, ty_Int) -> new_ltEs16(vwx53, vwx56) new_ltEs18(vwx26, vwx27, ty_Integer) -> new_ltEs6(vwx26, vwx27) new_esEs29(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs7(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_compare210(vwx64, vwx65, vwx66, vwx67, False, cd, bd) -> new_compare111(vwx64, vwx65, vwx66, vwx67, new_lt22(vwx64, vwx66, cd), new_asAs(new_esEs37(vwx64, vwx66, cd), new_ltEs22(vwx65, vwx67, bd)), cd, bd) new_esEs4(vwx30, vwx40, ty_Bool) -> new_esEs12(vwx30, vwx40) new_esEs27(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_ltEs24(vwx33, vwx34, ty_Integer) -> new_ltEs6(vwx33, vwx34) new_lt21(vwx261, vwx271, app(app(ty_@2, bfa), bfb)) -> new_lt12(vwx261, vwx271, bfa, bfb) new_esEs39(vwx300, vwx400, app(ty_Ratio, fgb)) -> new_esEs19(vwx300, vwx400, fgb) new_ltEs18(vwx26, vwx27, app(app(ty_Either, bcc), bbc)) -> new_ltEs4(vwx26, vwx27, bcc, bbc) new_esEs21(Nothing, Just(vwx400), fba) -> False new_esEs21(Just(vwx300), Nothing, fba) -> False new_esEs34(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_esEs17(Right(vwx300), Right(vwx400), deb, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs24(vwx300, vwx400, dfb, dfc, dfd) new_lt13(vwx51, vwx54, ty_@0) -> new_lt5(vwx51, vwx54) new_ltEs11(True, False) -> False new_esEs27(vwx301, vwx401, app(app(app(ty_@3, edh), eea), eeb)) -> new_esEs24(vwx301, vwx401, edh, eea, eeb) new_ltEs18(vwx26, vwx27, app(ty_Ratio, dcc)) -> new_ltEs5(vwx26, vwx27, dcc) new_esEs21(Nothing, Nothing, fba) -> True new_lt21(vwx261, vwx271, app(ty_Maybe, bfd)) -> new_lt4(vwx261, vwx271, bfd) new_esEs32(vwx52, vwx55, app(app(ty_@2, ccf), ccg)) -> new_esEs20(vwx52, vwx55, ccf, ccg) new_ltEs15(EQ, EQ) -> True new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Double) -> new_ltEs17(vwx260, vwx270) new_esEs9(vwx30, vwx40, ty_Ordering) -> new_esEs13(vwx30, vwx40) new_ltEs6(vwx26, vwx27) -> new_fsEs(new_compare29(vwx26, vwx27)) new_esEs29(vwx300, vwx400, app(ty_Ratio, egh)) -> new_esEs19(vwx300, vwx400, egh) new_ltEs7(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, fd) -> new_pePe(new_lt23(vwx260, vwx270, ge), new_asAs(new_esEs38(vwx260, vwx270, ge), new_ltEs23(vwx261, vwx271, fd))) new_lt21(vwx261, vwx271, ty_Int) -> new_lt9(vwx261, vwx271) new_esEs8(vwx30, vwx40, app(ty_Maybe, dab)) -> new_esEs21(vwx30, vwx40, dab) new_esEs28(vwx302, vwx402, app(app(ty_Either, eed), eee)) -> new_esEs17(vwx302, vwx402, eed, eee) new_esEs28(vwx302, vwx402, ty_Float) -> new_esEs25(vwx302, vwx402) new_esEs28(vwx302, vwx402, app(app(app(ty_@3, efb), efc), efd)) -> new_esEs24(vwx302, vwx402, efb, efc, efd) new_ltEs24(vwx33, vwx34, app(app(ty_Either, cab), cac)) -> new_ltEs4(vwx33, vwx34, cab, cac) new_ltEs20(vwx53, vwx56, app(ty_[], cea)) -> new_ltEs8(vwx53, vwx56, cea) new_compare9(Double(vwx30, Pos(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare14(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare9(Double(vwx30, Neg(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare14(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_ltEs23(vwx261, vwx271, app(ty_Maybe, ha)) -> new_ltEs10(vwx261, vwx271, ha) new_lt22(vwx64, vwx66, app(ty_Ratio, ebc)) -> new_lt10(vwx64, vwx66, ebc) new_compare15(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Integer) -> new_compare29(new_sr0(vwx30, vwx41), new_sr0(vwx40, vwx31)) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_esEs7(vwx30, vwx40, app(ty_Maybe, cgh)) -> new_esEs21(vwx30, vwx40, cgh) new_lt20(vwx260, vwx270, ty_Double) -> new_lt6(vwx260, vwx270) new_ltEs15(LT, EQ) -> True new_esEs39(vwx300, vwx400, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs24(vwx300, vwx400, fgf, fgg, fgh) new_ltEs4(Right(vwx260), Right(vwx270), bcc, ty_Int) -> new_ltEs16(vwx260, vwx270) new_compare7(Just(vwx30), Nothing, fa) -> GT new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs39(vwx300, vwx400, ty_Ordering) -> new_esEs13(vwx300, vwx400) new_esEs17(Left(vwx300), Right(vwx400), deb, dcg) -> False new_esEs17(Right(vwx300), Left(vwx400), deb, dcg) -> False new_esEs28(vwx302, vwx402, app(ty_Ratio, eef)) -> new_esEs19(vwx302, vwx402, eef) new_ltEs24(vwx33, vwx34, app(ty_Ratio, fff)) -> new_ltEs5(vwx33, vwx34, fff) new_lt15(vwx64, vwx66) -> new_esEs13(new_compare29(vwx64, vwx66), LT) new_compare28(vwx30, vwx40, app(app(app(ty_@3, ef), eg), eh)) -> new_compare13(vwx30, vwx40, ef, eg, eh) new_ltEs5(vwx26, vwx27, dcc) -> new_fsEs(new_compare15(vwx26, vwx27, dcc)) new_esEs5(vwx31, vwx41, ty_@0) -> new_esEs18(vwx31, vwx41) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_[], bab)) -> new_ltEs8(vwx260, vwx270, bab) new_esEs9(vwx30, vwx40, ty_Bool) -> new_esEs12(vwx30, vwx40) new_ltEs4(Left(vwx260), Left(vwx270), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs4(vwx260, vwx270, bbf, bbg) new_lt22(vwx64, vwx66, ty_Int) -> new_lt9(vwx64, vwx66) new_esEs7(vwx30, vwx40, app(ty_[], cgb)) -> new_esEs16(vwx30, vwx40, cgb) new_esEs21(Just(vwx300), Just(vwx400), app(ty_[], fbb)) -> new_esEs16(vwx300, vwx400, fbb) new_esEs17(Right(vwx300), Right(vwx400), deb, app(ty_Ratio, def)) -> new_esEs19(vwx300, vwx400, def) new_esEs4(vwx30, vwx40, ty_Ordering) -> new_esEs13(vwx30, vwx40) new_compare28(vwx30, vwx40, ty_Char) -> new_compare31(vwx30, vwx40) new_ltEs20(vwx53, vwx56, ty_Float) -> new_ltEs9(vwx53, vwx56) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs39(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_compare17(EQ, EQ) -> EQ new_esEs28(vwx302, vwx402, ty_Double) -> new_esEs22(vwx302, vwx402) new_primCmpInt(Neg(Zero), Neg(Succ(vwx400))) -> new_primCmpNat0(Succ(vwx400), Zero) new_compare9(Double(vwx30, Neg(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare14(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_esEs31(vwx51, vwx54, app(ty_[], cbf)) -> new_esEs16(vwx51, vwx54, cbf) new_compare14(vwx3, vwx4) -> new_primCmpInt(vwx3, vwx4) new_esEs11(vwx32, vwx42, ty_Ordering) -> new_esEs13(vwx32, vwx42) new_esEs13(LT, GT) -> False new_esEs13(GT, LT) -> False new_esEs22(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs23(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs31(vwx51, vwx54, ty_Char) -> new_esEs15(vwx51, vwx54) new_compare27(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, cbe) -> new_compare110(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, new_lt13(vwx51, vwx54, cce), new_asAs(new_esEs31(vwx51, vwx54, cce), new_pePe(new_lt14(vwx52, vwx55, cbd), new_asAs(new_esEs32(vwx52, vwx55, cbd), new_ltEs20(vwx53, vwx56, cbe)))), cce, cbd, cbe) new_esEs10(vwx31, vwx41, app(app(ty_@2, dhc), dhd)) -> new_esEs20(vwx31, vwx41, dhc, dhd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs17(Left(vwx300), Left(vwx400), ty_@0, dcg) -> new_esEs18(vwx300, vwx400) new_ltEs15(GT, GT) -> True new_compare28(vwx30, vwx40, app(ty_[], eb)) -> new_compare5(vwx30, vwx40, eb) new_lt14(vwx52, vwx55, app(app(ty_Either, cdb), cdc)) -> new_lt8(vwx52, vwx55, cdb, cdc) new_esEs5(vwx31, vwx41, ty_Ordering) -> new_esEs13(vwx31, vwx41) new_esEs35(vwx260, vwx270, app(app(ty_@2, bde), bdf)) -> new_esEs20(vwx260, vwx270, bde, bdf) new_ltEs4(Left(vwx260), Left(vwx270), ty_Int, bbc) -> new_ltEs16(vwx260, vwx270) new_ltEs23(vwx261, vwx271, ty_Char) -> new_ltEs14(vwx261, vwx271) new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs12(vwx30, vwx40) new_lt17(vwx64, vwx66) -> new_esEs13(new_compare30(vwx64, vwx66), LT) new_ltEs19(vwx40, vwx41, ty_Float) -> new_ltEs9(vwx40, vwx41) new_compare28(vwx30, vwx40, app(ty_Maybe, ec)) -> new_compare7(vwx30, vwx40, ec) new_esEs30(vwx301, vwx401, ty_Int) -> new_esEs23(vwx301, vwx401) new_esEs33(vwx300, vwx400, ty_Integer) -> new_esEs14(vwx300, vwx400) new_ltEs19(vwx40, vwx41, app(ty_Maybe, cfd)) -> new_ltEs10(vwx40, vwx41, cfd) new_esEs9(vwx30, vwx40, app(ty_[], dfe)) -> new_esEs16(vwx30, vwx40, dfe) new_compare7(Nothing, Nothing, fa) -> EQ new_ltEs21(vwx262, vwx272, app(app(ty_Either, bgf), bgg)) -> new_ltEs4(vwx262, vwx272, bgf, bgg) new_ltEs12(vwx26, vwx27) -> new_fsEs(new_compare8(vwx26, vwx27)) new_ltEs20(vwx53, vwx56, ty_Integer) -> new_ltEs6(vwx53, vwx56) new_ltEs23(vwx261, vwx271, app(ty_[], gh)) -> new_ltEs8(vwx261, vwx271, gh) new_compare112(vwx94, vwx95, False, fha, fhb) -> GT new_ltEs24(vwx33, vwx34, ty_Int) -> new_ltEs16(vwx33, vwx34) new_esEs39(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs37(vwx64, vwx66, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs24(vwx64, vwx66, ca, cb, cc) new_esEs37(vwx64, vwx66, ty_Double) -> new_esEs22(vwx64, vwx66) new_esEs17(Right(vwx300), Right(vwx400), deb, app(ty_[], dec)) -> new_esEs16(vwx300, vwx400, dec) new_esEs10(vwx31, vwx41, ty_Integer) -> new_esEs14(vwx31, vwx41) new_lt14(vwx52, vwx55, ty_Ordering) -> new_lt11(vwx52, vwx55) new_not(False) -> True new_ltEs10(Just(vwx260), Just(vwx270), app(app(ty_@2, hh), baa)) -> new_ltEs7(vwx260, vwx270, hh, baa) new_lt20(vwx260, vwx270, ty_Bool) -> new_lt17(vwx260, vwx270) new_ltEs23(vwx261, vwx271, app(app(ty_Either, hb), hc)) -> new_ltEs4(vwx261, vwx271, hb, hc) new_esEs10(vwx31, vwx41, ty_Bool) -> new_esEs12(vwx31, vwx41) new_ltEs24(vwx33, vwx34, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs13(vwx33, vwx34, cad, cae, caf) new_esEs36(vwx261, vwx271, app(ty_[], bfc)) -> new_esEs16(vwx261, vwx271, bfc) new_lt22(vwx64, vwx66, app(app(ty_Either, bg), bh)) -> new_lt8(vwx64, vwx66, bg, bh) new_lt10(vwx64, vwx66, ebc) -> new_esEs13(new_compare15(vwx64, vwx66, ebc), LT) new_ltEs22(vwx65, vwx67, ty_@0) -> new_ltEs12(vwx65, vwx67) new_esEs8(vwx30, vwx40, app(ty_Ratio, chg)) -> new_esEs19(vwx30, vwx40, chg) new_esEs32(vwx52, vwx55, ty_Ordering) -> new_esEs13(vwx52, vwx55) new_esEs31(vwx51, vwx54, app(ty_Ratio, fcd)) -> new_esEs19(vwx51, vwx54, fcd) new_esEs27(vwx301, vwx401, ty_@0) -> new_esEs18(vwx301, vwx401) new_esEs30(vwx301, vwx401, ty_Float) -> new_esEs25(vwx301, vwx401) new_ltEs10(Just(vwx260), Just(vwx270), ty_Char) -> new_ltEs14(vwx260, vwx270) new_esEs35(vwx260, vwx270, ty_Integer) -> new_esEs14(vwx260, vwx270) new_esEs10(vwx31, vwx41, app(ty_Maybe, dhe)) -> new_esEs21(vwx31, vwx41, dhe) new_esEs29(vwx300, vwx400, ty_Float) -> new_esEs25(vwx300, vwx400) new_ltEs10(Just(vwx260), Nothing, dcd) -> False new_lt20(vwx260, vwx270, ty_Integer) -> new_lt15(vwx260, vwx270) new_ltEs10(Nothing, Nothing, dcd) -> True new_ltEs4(Left(vwx260), Right(vwx270), bcc, bbc) -> True new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs14(vwx30, vwx40) new_lt20(vwx260, vwx270, ty_Int) -> new_lt9(vwx260, vwx270) new_esEs29(vwx300, vwx400, ty_Bool) -> new_esEs12(vwx300, vwx400) new_ltEs20(vwx53, vwx56, ty_Bool) -> new_ltEs11(vwx53, vwx56) new_lt19(vwx64, vwx66) -> new_esEs13(new_compare31(vwx64, vwx66), LT) new_esEs17(Left(vwx300), Left(vwx400), ty_Integer, dcg) -> new_esEs14(vwx300, vwx400) new_primPlusNat0(Succ(vwx1440), vwx4100) -> Succ(Succ(new_primPlusNat1(vwx1440, vwx4100))) new_lt8(vwx64, vwx66, bg, bh) -> new_esEs13(new_compare6(vwx64, vwx66, bg, bh), LT) new_compare11(vwx102, vwx103, True, ffc, ffd) -> LT new_esEs17(Left(vwx300), Left(vwx400), app(app(ty_@2, ddd), dde), dcg) -> new_esEs20(vwx300, vwx400, ddd, dde) new_esEs37(vwx64, vwx66, app(app(ty_Either, bg), bh)) -> new_esEs17(vwx64, vwx66, bg, bh) new_esEs35(vwx260, vwx270, app(app(ty_Either, bec), bed)) -> new_esEs17(vwx260, vwx270, bec, bed) new_lt23(vwx260, vwx270, ty_@0) -> new_lt5(vwx260, vwx270) new_esEs35(vwx260, vwx270, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs24(vwx260, vwx270, bee, bef, beg) new_esEs35(vwx260, vwx270, ty_Double) -> new_esEs22(vwx260, vwx270) new_esEs17(Left(vwx300), Left(vwx400), app(app(ty_Either, dda), ddb), dcg) -> new_esEs17(vwx300, vwx400, dda, ddb) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs25(vwx30, vwx40) new_ltEs22(vwx65, vwx67, ty_Bool) -> new_ltEs11(vwx65, vwx67) new_ltEs21(vwx262, vwx272, app(ty_[], bgd)) -> new_ltEs8(vwx262, vwx272, bgd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_lt7(vwx64, vwx66) -> new_esEs13(new_compare12(vwx64, vwx66), LT) new_lt21(vwx261, vwx271, app(ty_Ratio, fee)) -> new_lt10(vwx261, vwx271, fee) new_esEs26(vwx300, vwx400, app(app(ty_Either, ebh), eca)) -> new_esEs17(vwx300, vwx400, ebh, eca) new_ltEs22(vwx65, vwx67, app(app(app(ty_@3, dd), de), df)) -> new_ltEs13(vwx65, vwx67, dd, de, df) new_ltEs19(vwx40, vwx41, ty_Bool) -> new_ltEs11(vwx40, vwx41) new_lt20(vwx260, vwx270, ty_Char) -> new_lt19(vwx260, vwx270) new_esEs10(vwx31, vwx41, app(ty_Ratio, dhb)) -> new_esEs19(vwx31, vwx41, dhb) new_esEs37(vwx64, vwx66, app(app(ty_@2, h), ba)) -> new_esEs20(vwx64, vwx66, h, ba) new_esEs32(vwx52, vwx55, ty_Float) -> new_esEs25(vwx52, vwx55) new_esEs30(vwx301, vwx401, ty_Ordering) -> new_esEs13(vwx301, vwx401) new_esEs6(vwx30, vwx40, app(ty_Ratio, dba)) -> new_esEs19(vwx30, vwx40, dba) new_lt12(vwx64, vwx66, h, ba) -> new_esEs13(new_compare19(vwx64, vwx66, h, ba), LT) new_lt21(vwx261, vwx271, ty_Double) -> new_lt6(vwx261, vwx271) new_esEs17(Left(vwx300), Left(vwx400), ty_Char, dcg) -> new_esEs15(vwx300, vwx400) new_compare111(vwx114, vwx115, vwx116, vwx117, False, vwx119, efe, eff) -> new_compare16(vwx114, vwx115, vwx116, vwx117, vwx119, efe, eff) new_lt20(vwx260, vwx270, ty_@0) -> new_lt5(vwx260, vwx270) new_esEs4(vwx30, vwx40, ty_@0) -> new_esEs18(vwx30, vwx40) new_esEs5(vwx31, vwx41, ty_Float) -> new_esEs25(vwx31, vwx41) new_ltEs15(LT, LT) -> True new_esEs23(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_esEs9(vwx30, vwx40, app(ty_Maybe, dgc)) -> new_esEs21(vwx30, vwx40, dgc) new_compare7(Nothing, Just(vwx40), fa) -> LT new_ltEs4(Left(vwx260), Left(vwx270), ty_Ordering, bbc) -> new_ltEs15(vwx260, vwx270) new_ltEs19(vwx40, vwx41, app(app(ty_Either, cfe), cff)) -> new_ltEs4(vwx40, vwx41, cfe, cff) new_esEs30(vwx301, vwx401, ty_Bool) -> new_esEs12(vwx301, vwx401) new_ltEs10(Just(vwx260), Just(vwx270), app(ty_Ratio, fcg)) -> new_ltEs5(vwx260, vwx270, fcg) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs26(vwx300, vwx400, ty_Double) -> new_esEs22(vwx300, vwx400) new_esEs35(vwx260, vwx270, ty_Char) -> new_esEs15(vwx260, vwx270) new_esEs38(vwx260, vwx270, ty_@0) -> new_esEs18(vwx260, vwx270) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt4(vwx64, vwx66, bf) -> new_esEs13(new_compare7(vwx64, vwx66, bf), LT) new_esEs11(vwx32, vwx42, ty_Char) -> new_esEs15(vwx32, vwx42) new_ltEs21(vwx262, vwx272, app(ty_Maybe, bge)) -> new_ltEs10(vwx262, vwx272, bge) new_primMulNat0(Succ(vwx3000), Succ(vwx4100)) -> new_primPlusNat0(new_primMulNat0(vwx3000, Succ(vwx4100)), vwx4100) new_lt20(vwx260, vwx270, app(ty_Maybe, beb)) -> new_lt4(vwx260, vwx270, beb) new_lt22(vwx64, vwx66, ty_Double) -> new_lt6(vwx64, vwx66) new_ltEs4(Left(vwx260), Left(vwx270), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs7(vwx260, vwx270, bba, bbb) new_esEs6(vwx30, vwx40, ty_Float) -> new_esEs25(vwx30, vwx40) new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs13(vwx260, vwx270, bdb, bdc, bdd) new_primCmpNat0(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_lt21(vwx261, vwx271, ty_@0) -> new_lt5(vwx261, vwx271) new_ltEs23(vwx261, vwx271, ty_Integer) -> new_ltEs6(vwx261, vwx271) new_ltEs17(vwx26, vwx27) -> new_fsEs(new_compare9(vwx26, vwx27)) new_esEs9(vwx30, vwx40, ty_Char) -> new_esEs15(vwx30, vwx40) new_esEs11(vwx32, vwx42, app(ty_Maybe, eag)) -> new_esEs21(vwx32, vwx42, eag) new_ltEs20(vwx53, vwx56, app(ty_Maybe, ceb)) -> new_ltEs10(vwx53, vwx56, ceb) new_esEs37(vwx64, vwx66, ty_@0) -> new_esEs18(vwx64, vwx66) new_ltEs23(vwx261, vwx271, ty_Ordering) -> new_ltEs15(vwx261, vwx271) new_esEs7(vwx30, vwx40, ty_Int) -> new_esEs23(vwx30, vwx40) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Bool) -> new_esEs12(vwx300, vwx400) new_esEs10(vwx31, vwx41, ty_Char) -> new_esEs15(vwx31, vwx41) new_esEs16(:(vwx300, vwx301), [], feh) -> False new_esEs16([], :(vwx400, vwx401), feh) -> False new_lt22(vwx64, vwx66, ty_@0) -> new_lt5(vwx64, vwx66) new_lt16(vwx64, vwx66, be) -> new_esEs13(new_compare5(vwx64, vwx66, be), LT) new_esEs17(Right(vwx300), Right(vwx400), deb, app(app(ty_Either, ded), dee)) -> new_esEs17(vwx300, vwx400, ded, dee) new_ltEs24(vwx33, vwx34, app(app(ty_@2, bhe), bhf)) -> new_ltEs7(vwx33, vwx34, bhe, bhf) new_esEs26(vwx300, vwx400, app(app(app(ty_@3, ecf), ecg), ech)) -> new_esEs24(vwx300, vwx400, ecf, ecg, ech) new_compare27(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, True, cce, cbd, cbe) -> EQ new_lt22(vwx64, vwx66, ty_Char) -> new_lt19(vwx64, vwx66) new_ltEs21(vwx262, vwx272, ty_Int) -> new_ltEs16(vwx262, vwx272) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_compare8(@0, @0) -> EQ new_lt23(vwx260, vwx270, ty_Double) -> new_lt6(vwx260, vwx270) new_esEs7(vwx30, vwx40, ty_Float) -> new_esEs25(vwx30, vwx40) new_esEs35(vwx260, vwx270, app(ty_Maybe, beb)) -> new_esEs21(vwx260, vwx270, beb) new_esEs36(vwx261, vwx271, app(app(ty_Either, bfe), bff)) -> new_esEs17(vwx261, vwx271, bfe, bff) new_lt21(vwx261, vwx271, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt18(vwx261, vwx271, bfg, bfh, bga) new_esEs17(Right(vwx300), Right(vwx400), deb, ty_Float) -> new_esEs25(vwx300, vwx400) new_ltEs22(vwx65, vwx67, ty_Int) -> new_ltEs16(vwx65, vwx67) new_primEqNat0(Zero, Zero) -> True new_esEs7(vwx30, vwx40, ty_Ordering) -> new_esEs13(vwx30, vwx40) new_compare19(@2(vwx30, vwx31), @2(vwx40, vwx41), bb, bc) -> new_compare210(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, bb), new_esEs5(vwx31, vwx41, bc)), bb, bc) new_compare12(Float(vwx30, Pos(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare14(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs15(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_compare28(vwx30, vwx40, app(app(ty_Either, ed), ee)) -> new_compare6(vwx30, vwx40, ed, ee) new_lt23(vwx260, vwx270, app(app(ty_Either, fh), ga)) -> new_lt8(vwx260, vwx270, fh, ga) new_lt21(vwx261, vwx271, ty_Char) -> new_lt19(vwx261, vwx271) new_esEs6(vwx30, vwx40, ty_Bool) -> new_esEs12(vwx30, vwx40) new_ltEs4(Left(vwx260), Left(vwx270), ty_@0, bbc) -> new_ltEs12(vwx260, vwx270) new_esEs11(vwx32, vwx42, ty_Integer) -> new_esEs14(vwx32, vwx42) new_esEs13(EQ, EQ) -> True new_lt13(vwx51, vwx54, ty_Ordering) -> new_lt11(vwx51, vwx54) new_esEs31(vwx51, vwx54, ty_Float) -> new_esEs25(vwx51, vwx54) new_asAs(False, vwx82) -> False new_esEs21(Just(vwx300), Just(vwx400), app(app(ty_Either, fbc), fbd)) -> new_esEs17(vwx300, vwx400, fbc, fbd) new_esEs21(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs22(vwx300, vwx400) new_ltEs22(vwx65, vwx67, ty_Integer) -> new_ltEs6(vwx65, vwx67) new_esEs13(LT, EQ) -> False new_esEs13(EQ, LT) -> False new_ltEs4(Right(vwx260), Right(vwx270), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs7(vwx260, vwx270, bcd, bce) new_ltEs4(Left(vwx260), Left(vwx270), ty_Char, bbc) -> new_ltEs14(vwx260, vwx270) new_esEs31(vwx51, vwx54, ty_Bool) -> new_esEs12(vwx51, vwx54) new_lt14(vwx52, vwx55, ty_Float) -> new_lt7(vwx52, vwx55) new_ltEs24(vwx33, vwx34, ty_@0) -> new_ltEs12(vwx33, vwx34) new_esEs14(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_compare28(vwx30, vwx40, ty_Float) -> new_compare12(vwx30, vwx40) new_ltEs4(Right(vwx260), Left(vwx270), bcc, bbc) -> False new_compare16(vwx114, vwx115, vwx116, vwx117, False, efe, eff) -> GT new_esEs9(vwx30, vwx40, ty_Integer) -> new_esEs14(vwx30, vwx40) new_esEs32(vwx52, vwx55, ty_Int) -> new_esEs23(vwx52, vwx55) new_esEs17(Right(vwx300), Right(vwx400), deb, app(app(ty_@2, deg), deh)) -> new_esEs20(vwx300, vwx400, deg, deh) new_esEs19(:%(vwx300, vwx301), :%(vwx400, vwx401), fec) -> new_asAs(new_esEs33(vwx300, vwx400, fec), new_esEs34(vwx301, vwx401, fec)) new_esEs17(Right(vwx300), Right(vwx400), deb, app(ty_Maybe, dfa)) -> new_esEs21(vwx300, vwx400, dfa) new_ltEs24(vwx33, vwx34, ty_Ordering) -> new_ltEs15(vwx33, vwx34) new_esEs11(vwx32, vwx42, app(ty_[], eaa)) -> new_esEs16(vwx32, vwx42, eaa) new_ltEs24(vwx33, vwx34, ty_Char) -> new_ltEs14(vwx33, vwx34) new_ltEs21(vwx262, vwx272, ty_Bool) -> new_ltEs11(vwx262, vwx272) new_compare25(vwx40, vwx41, False, ceh, dce) -> new_compare11(vwx40, vwx41, new_ltEs19(vwx40, vwx41, dce), ceh, dce) new_compare17(GT, LT) -> GT The set Q consists of the following terms: new_compare17(LT, GT) new_compare17(GT, LT) new_esEs35(x0, x1, ty_Bool) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_lt17(x0, x1) new_esEs17(Right(x0), Right(x1), x2, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs17(Right(x0), Right(x1), x2, ty_Bool) new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Int) new_esEs16([], :(x0, x1), x2) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Right(x1), x2, x3) new_esEs17(Right(x0), Left(x1), x2, x3) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_compare5([], :(x0, x1), x2) new_primPlusNat1(Zero, Zero) new_ltEs24(x0, x1, ty_@0) new_esEs35(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, False, x4, x5, x6) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Just(x0), Just(x1), ty_Integer) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Double) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_esEs21(Just(x0), Just(x1), ty_Bool) new_ltEs22(x0, x1, ty_@0) new_lt14(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, ty_Char) new_esEs21(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, ty_Char) new_esEs32(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_lt13(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_compare9(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs28(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(Left(x0), Left(x1), ty_Double, x2) new_lt22(x0, x1, ty_Float) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs21(Just(x0), Nothing, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs31(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Char) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs13(LT, LT) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Int) new_compare25(x0, x1, True, x2, x3) new_esEs8(x0, x1, ty_Float) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare12(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs35(x0, x1, ty_Integer) new_ltEs23(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Double) new_lt19(x0, x1) new_lt7(x0, x1) new_esEs26(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs12(False, True) new_esEs12(True, False) new_lt16(x0, x1, x2) new_esEs4(x0, x1, ty_Float) new_esEs17(Right(x0), Right(x1), x2, ty_Char) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Double) new_esEs24(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Double) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_asAs(True, x0) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Char) new_lt21(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Int) new_ltEs11(True, True) new_compare28(x0, x1, ty_Bool) new_compare12(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs22(x0, x1, ty_Ordering) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare12(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs27(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Integer) new_esEs17(Left(x0), Left(x1), ty_Ordering, x2) new_lt13(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs16(x0, x1) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare9(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare9(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare9(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt13(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Int) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_@0) new_compare28(x0, x1, ty_Integer) new_ltEs10(Just(x0), Just(x1), ty_Int) new_esEs31(x0, x1, ty_Bool) new_lt21(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_@0) new_compare26(x0, x1, False, x2) new_esEs27(x0, x1, ty_Bool) new_esEs11(x0, x1, ty_Integer) new_compare30(True, False) new_compare30(False, True) new_esEs21(Just(x0), Just(x1), ty_@0) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt9(x0, x1) new_esEs9(x0, x1, ty_Ordering) new_compare8(@0, @0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_compare18(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs20(x0, x1, ty_Int) new_compare112(x0, x1, False, x2, x3) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Double) new_lt21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt20(x0, x1, ty_Ordering) new_ltEs23(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Int) new_esEs21(Just(x0), Just(x1), ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, ty_Double) new_compare7(Just(x0), Nothing, x1) new_ltEs20(x0, x1, ty_Char) new_pePe(True, x0) new_ltEs15(EQ, EQ) new_compare7(Nothing, Nothing, x0) new_ltEs24(x0, x1, ty_Char) new_compare5(:(x0, x1), [], x2) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Just(x0), Just(x1), ty_Int) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Ordering) new_lt8(x0, x1, x2, x3) new_lt14(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Double) new_primCompAux00(x0, EQ) new_ltEs23(x0, x1, ty_Ordering) new_esEs15(Char(x0), Char(x1)) new_esEs35(x0, x1, ty_Double) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Char) new_compare5([], [], x0) new_ltEs4(Right(x0), Right(x1), x2, ty_Double) new_compare6(Left(x0), Left(x1), x2, x3) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_lt14(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_@0) new_compare112(x0, x1, True, x2, x3) new_esEs11(x0, x1, ty_Double) new_lt23(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, ty_Ordering) new_compare17(EQ, EQ) new_esEs5(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Integer(x0), Integer(x1)) new_esEs9(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_esEs16([], [], x0) new_esEs9(x0, x1, ty_Bool) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Integer) new_compare28(x0, x1, ty_@0) new_esEs21(Nothing, Nothing, x0) new_lt14(x0, x1, ty_Int) new_ltEs10(Nothing, Nothing, x0) new_esEs21(Just(x0), Just(x1), ty_Float) new_sr0(Integer(x0), Integer(x1)) new_lt20(x0, x1, ty_Bool) new_esEs37(x0, x1, app(ty_[], x2)) new_primPlusNat0(Zero, x0) new_esEs32(x0, x1, ty_Double) new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs24(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Char) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, x2, x3, True, x4, x5, x6) new_primMulInt(Neg(x0), Neg(x1)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs17(Left(x0), Left(x1), ty_Char, x2) new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs27(x0, x1, ty_@0) new_lt22(x0, x1, ty_@0) new_ltEs10(Nothing, Just(x0), x1) new_esEs21(Nothing, Just(x0), x1) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs17(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_[], x2)) new_compare27(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs5(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_esEs6(x0, x1, ty_@0) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Bool) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_Char) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_compare17(LT, EQ) new_compare17(EQ, LT) new_esEs37(x0, x1, ty_Float) new_esEs39(x0, x1, ty_Double) new_lt5(x0, x1) new_esEs39(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Char) new_esEs17(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare28(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Int) new_lt14(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Zero) new_compare6(Right(x0), Right(x1), x2, x3) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs17(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_esEs6(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_compare16(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Float) new_esEs21(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare30(False, False) new_lt18(x0, x1, x2, x3, x4) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_Double) new_lt20(x0, x1, ty_Float) new_sr(x0, x1) new_lt11(x0, x1) new_ltEs9(x0, x1) new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs34(x0, x1, ty_Integer) new_primCompAux0(x0, x1, x2, x3) new_esEs30(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Integer) new_compare17(LT, LT) new_lt21(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_fsEs(x0) new_ltEs11(False, True) new_ltEs11(True, False) new_lt23(x0, x1, ty_Double) new_ltEs23(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs13(GT, GT) new_esEs17(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13(LT, EQ) new_esEs13(EQ, LT) new_esEs17(Left(x0), Left(x1), ty_Float, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Double) new_ltEs17(x0, x1) new_lt20(x0, x1, ty_Int) new_ltEs10(Just(x0), Nothing, x1) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Char) new_lt23(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_@0) new_esEs13(EQ, EQ) new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs6(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Int) new_compare28(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1) new_esEs4(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Double) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare7(Just(x0), Just(x1), x2) new_esEs30(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt14(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Zero) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_compare31(Char(x0), Char(x1)) new_lt14(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), ty_Double, x2) new_lt22(x0, x1, ty_Double) new_esEs17(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Char) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare11(x0, x1, False, x2, x3) new_lt13(x0, x1, app(ty_[], x2)) new_esEs21(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs4(x0, x1, ty_Int) new_compare26(x0, x1, True, x2) new_esEs8(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare24(x0, x1, False, x2, x3) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Float) new_compare28(x0, x1, ty_Double) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Int) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare17(GT, GT) new_esEs5(x0, x1, ty_Char) new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs5(x0, x1, ty_@0) new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, x2) new_ltEs8(x0, x1, x2) new_esEs29(x0, x1, ty_Int) new_compare10(x0, x1, False, x2) new_lt14(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Ordering) new_not(True) new_ltEs13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare210(x0, x1, x2, x3, True, x4, x5) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_@0) new_esEs38(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Bool) new_esEs12(False, False) new_esEs4(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), ty_@0) new_esEs7(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Int) new_ltEs4(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Float) new_ltEs5(x0, x1, x2) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt12(x0, x1, x2, x3) new_esEs8(x0, x1, ty_Double) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1) new_esEs37(x0, x1, ty_Bool) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs15(GT, EQ) new_ltEs15(EQ, GT) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Float) new_esEs16(:(x0, x1), [], x2) new_esEs32(x0, x1, ty_Float) new_esEs5(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Int) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs5(x0, x1, ty_Bool) new_ltEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs21(Just(x0), Just(x1), ty_Double) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Zero) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs18(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_compare5(:(x0, x1), :(x2, x3), x4) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Left(x0), Left(x1), ty_Integer, x2) new_ltEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Integer) new_compare10(x0, x1, True, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare25(x0, x1, False, x2, x3) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs17(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Bool) new_ltEs10(Just(x0), Just(x1), ty_Float) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Char) new_ltEs23(x0, x1, ty_Float) new_lt14(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(Right(x0), Right(x1), x2, ty_Double) new_esEs8(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_pePe(False, x0) new_compare13(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs14(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Integer) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs4(Right(x0), Right(x1), x2, ty_Float) new_esEs38(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Integer) new_compare11(x0, x1, True, x2, x3) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Float) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(LT, GT) new_esEs13(GT, LT) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Int) new_lt23(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, ty_@0) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Ordering) new_compare17(GT, EQ) new_compare17(EQ, GT) new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Integer) new_ltEs15(EQ, LT) new_esEs26(x0, x1, ty_Integer) new_ltEs15(LT, EQ) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs17(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat0(Succ(x0), x1) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_esEs17(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs22(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Double) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Integer) new_compare28(x0, x1, ty_Int) new_ltEs15(GT, GT) new_esEs32(x0, x1, ty_Ordering) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs8(x0, x1, ty_@0) new_ltEs4(Left(x0), Right(x1), x2, x3) new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs4(Right(x0), Left(x1), x2, x3) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_compare30(True, True) new_primCompAux00(x0, GT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs18(@0, @0) new_ltEs4(Right(x0), Right(x1), x2, ty_Int) new_ltEs11(False, False) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_asAs(False, x0) new_esEs10(x0, x1, ty_Integer) new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs12(True, True) new_compare210(x0, x1, x2, x3, False, x4, x5) new_not(False) new_ltEs22(x0, x1, ty_Int) new_esEs13(EQ, GT) new_esEs13(GT, EQ) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_compare7(Nothing, Just(x0), x1) new_lt22(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Bool) new_lt13(x0, x1, ty_Int) new_lt22(x0, x1, ty_Int) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Zero, Succ(x0)) new_esEs25(Float(x0, x1), Float(x2, x3)) new_compare28(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, False, x4, x5) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, ty_Char) new_esEs36(x0, x1, ty_@0) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs16(:(x0, x1), :(x2, x3), x4) new_esEs9(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, ty_Float) new_esEs37(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_esEs7(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_Ratio, x2)) new_lt10(x0, x1, x2) new_esEs17(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs15(LT, LT) new_lt22(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Ordering) new_esEs17(Left(x0), Left(x1), ty_@0, x2) new_ltEs23(x0, x1, ty_Int) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Bool) new_esEs17(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(x0, x1, ty_Char) new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) new_lt21(x0, x1, ty_Integer) new_ltEs14(x0, x1) new_compare24(x0, x1, True, x2, x3) new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) new_ltEs22(x0, x1, ty_Bool) new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt23(x0, x1, ty_Int) new_esEs22(Double(x0, x1), Double(x2, x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(Just(x0), Just(x1), ty_Ordering) new_lt13(x0, x1, ty_Float) new_ltEs6(x0, x1) new_compare19(@2(x0, x1), @2(x2, x3), x4, x5) new_lt23(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_@0) new_compare14(x0, x1) new_esEs9(x0, x1, ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Int) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare27(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs21(x0, x1, ty_Integer) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_esEs17(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Ordering) new_primCmpNat0(Zero, Zero) new_ltEs22(x0, x1, ty_Char) new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs39(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (31) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_compare4(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare23(vwx30, vwx31, vwx32, vwx40, vwx41, vwx42, new_asAs(new_esEs9(vwx30, vwx40, cag), new_asAs(new_esEs10(vwx31, vwx41, cah), new_esEs11(vwx32, vwx42, cba))), cag, cah, cba) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare5(vwx31, vwx41, dg), dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare0(vwx31, vwx41, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt0(vwx64, vwx66, be) -> new_compare0(vwx64, vwx66, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare1(Just(vwx30), Just(vwx40), fa) -> new_compare20(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare3(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare21(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs3(vwx262, vwx272, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(vwx64, vwx66, h, ba) -> new_compare(vwx64, vwx66, h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_lt1(vwx64, vwx66, bf) -> new_compare1(vwx64, vwx66, bf) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare21(vwx33, vwx34, False, app(app(app(ty_@3, cad), cae), caf), bhg) -> new_ltEs3(vwx33, vwx34, cad, cae, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(vwx260, vwx270, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt3(vwx64, vwx66, ca, cb, cc) -> new_compare4(vwx64, vwx66, ca, cb, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(ty_@2, bgb), bgc)) -> new_ltEs(vwx262, vwx272, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(vwx33, vwx34, False, app(app(ty_@2, bhe), bhf), bhg) -> new_ltEs(vwx33, vwx34, bhe, bhf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_@2, hh), baa)) -> new_ltEs(vwx260, vwx270, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(vwx26, vwx27, hg) -> new_compare0(vwx26, vwx27, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(ty_Maybe, bge)) -> new_ltEs1(vwx262, vwx272, bge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(vwx33, vwx34, False, app(ty_Maybe, caa), bhg) -> new_ltEs1(vwx33, vwx34, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Just(vwx260), Just(vwx270), app(ty_Maybe, bac)) -> new_ltEs1(vwx260, vwx270, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(@2(vwx30, vwx31), @2(vwx40, vwx41), bb, bc) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, bb), new_esEs5(vwx31, vwx41, bc)), bb, bc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_Maybe, fg), fd) -> new_lt1(vwx260, vwx270, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs3(vwx261, vwx271, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(ty_@2, gf), gg)) -> new_ltEs(vwx261, vwx271, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(ty_Maybe, ha)) -> new_ltEs1(vwx261, vwx271, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare3(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare22(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vwx65, vwx67, dd, de, df) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_Either, bg), bh), bd) -> new_compare3(vwx64, vwx66, bg, bh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vwx65, vwx67, ce, cf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(ty_Maybe, da)) -> new_ltEs1(vwx65, vwx67, da) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(ty_@2, h), ba), bd) -> new_compare(vwx64, vwx66, h, ba) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vwx30, vwx40, vwx5, app(app(ty_@2, dh), ea)) -> new_compare(vwx30, vwx40, dh, ea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(app(ty_Either, bgf), bgg)) -> new_ltEs2(vwx262, vwx272, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(vwx33, vwx34, False, app(app(ty_Either, cab), cac), bhg) -> new_ltEs2(vwx33, vwx34, cab, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx33, vwx34, False, app(ty_[], bhh), bhg) -> new_ltEs0(vwx33, vwx34, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs1(Just(vwx260), Just(vwx270), app(app(ty_Either, bad), bae)) -> new_ltEs2(vwx260, vwx270, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Just(vwx260), Just(vwx270), app(ty_[], bab)) -> new_ltEs0(vwx260, vwx270, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(app(ty_Either, hb), hc)) -> new_ltEs2(vwx261, vwx271, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(app(ty_Either, db), dc)) -> new_ltEs2(vwx65, vwx67, db, dc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_lt2(vwx64, vwx66, bg, bh) -> new_compare3(vwx64, vwx66, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4 *new_primCompAux(vwx30, vwx40, vwx5, app(app(ty_Either, ed), ee)) -> new_compare3(vwx30, vwx40, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, bdg, app(ty_[], bgd)) -> new_ltEs0(vwx262, vwx272, bgd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), ge, app(ty_[], gh)) -> new_ltEs0(vwx261, vwx271, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, cd, app(ty_[], cg)) -> new_ltEs0(vwx65, vwx67, cg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vwx40, vwx41, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx40, vwx41, cfg, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx40, vwx41, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vwx40, vwx41, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx40, vwx41, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(vwx40, vwx41, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx40, vwx41, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs2(vwx40, vwx41, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx40, vwx41, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vwx40, vwx41, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_[], be), bd) -> new_compare0(vwx64, vwx66, be) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx53, vwx56, cee, cef, ceg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vwx53, vwx56, cdg, cdh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(ty_Maybe, ceb)) -> new_ltEs1(vwx53, vwx56, ceb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(app(app(ty_@3, ca), cb), cc), bd) -> new_compare4(vwx64, vwx66, ca, cb, cc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vwx64, vwx65, vwx66, vwx67, False, app(ty_Maybe, bf), bd) -> new_compare1(vwx64, vwx66, bf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(app(ty_Either, cec), ced)) -> new_ltEs2(vwx53, vwx56, cec, ced) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, cbd, app(ty_[], cea)) -> new_ltEs0(vwx53, vwx56, cea) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(vwx30, vwx40, vwx5, app(app(app(ty_@3, ef), eg), eh)) -> new_compare4(vwx30, vwx40, ef, eg, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(ty_[], ff), fd) -> new_lt0(vwx260, vwx270, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_Either, fh), ga), fd) -> new_lt2(vwx260, vwx270, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(vwx26, vwx27, False, app(ty_[], hg)) -> new_compare0(vwx26, vwx27, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx30, vwx40, vwx5, app(ty_[], eb)) -> new_compare0(vwx30, vwx40, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx30, vwx40, vwx5, app(ty_Maybe, ec)) -> new_compare1(vwx30, vwx40, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(app(ty_@3, gb), gc), gd), fd) -> new_lt3(vwx260, vwx270, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(vwx260, vwx261), @2(vwx270, vwx271), app(app(ty_@2, fb), fc), fd) -> new_lt(vwx260, vwx270, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_Maybe, beb), bdg, bdh) -> new_lt1(vwx260, vwx270, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(ty_Maybe, bfd), bdh) -> new_lt1(vwx261, vwx271, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(ty_[], bfc), bdh) -> new_lt0(vwx261, vwx271, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(ty_[], bea), bdg, bdh) -> new_lt0(vwx260, vwx270, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_Either, bec), bed), bdg, bdh) -> new_lt2(vwx260, vwx270, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(ty_Either, bfe), bff), bdh) -> new_lt2(vwx261, vwx271, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(app(ty_@3, bee), bef), beg), bdg, bdh) -> new_lt3(vwx260, vwx270, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(app(ty_@3, bfg), bfh), bga), bdh) -> new_lt3(vwx261, vwx271, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), app(app(ty_@2, bde), bdf), bdg, bdh) -> new_lt(vwx260, vwx270, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), beh, app(app(ty_@2, bfa), bfb), bdh) -> new_lt(vwx261, vwx271, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(vwx260, vwx270, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs3(vwx260, vwx270, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs(vwx260, vwx270, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs(vwx260, vwx270, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(vwx260, vwx270, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx260), Left(vwx270), app(ty_Maybe, bbe), bbc) -> new_ltEs1(vwx260, vwx270, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(vwx260, vwx270, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs2(vwx260, vwx270, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Left(vwx260), Left(vwx270), app(ty_[], bbd), bbc) -> new_ltEs0(vwx260, vwx270, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx260), Right(vwx270), bcc, app(ty_[], bcf)) -> new_ltEs0(vwx260, vwx270, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_Maybe, cbg), cbd, cbe) -> new_lt1(vwx51, vwx54, cbg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(ty_Maybe, cda), cbe) -> new_lt1(vwx52, vwx55, cda) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdg), bdh)) -> new_lt1(vwx260, vwx270, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(ty_Maybe, bfd)), bdh)) -> new_lt1(vwx261, vwx271, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_Maybe, fg)), fd)) -> new_lt1(vwx260, vwx270, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbc)) -> new_ltEs3(vwx260, vwx270, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(vwx260, vwx270, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs3(vwx262, vwx272, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs3(vwx261, vwx271, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(vwx260, vwx270, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(ty_@2, bcd), bce))) -> new_ltEs(vwx260, vwx270, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_@2, bba), bbb)), bbc)) -> new_ltEs(vwx260, vwx270, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(ty_@2, bgb), bgc))) -> new_ltEs(vwx262, vwx272, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(vwx260, vwx270, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(ty_@2, gf), gg))) -> new_ltEs(vwx261, vwx271, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(ty_Maybe, ha))) -> new_ltEs1(vwx261, vwx271, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(vwx260, vwx270, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(ty_Maybe, bge))) -> new_ltEs1(vwx262, vwx272, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(vwx260, vwx270, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbc)) -> new_ltEs1(vwx260, vwx270, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(vwx260, vwx270, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(app(ty_Either, hb), hc))) -> new_ltEs2(vwx261, vwx271, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(app(ty_Either, bgf), bgg))) -> new_ltEs2(vwx262, vwx272, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(vwx260, vwx270, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbc)) -> new_ltEs2(vwx260, vwx270, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vwx260), Right(vwx270), False, app(app(ty_Either, bcc), app(ty_[], bcf))) -> new_ltEs0(vwx260, vwx270, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), bdg), app(ty_[], bgd))) -> new_ltEs0(vwx262, vwx272, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx260), Left(vwx270), False, app(app(ty_Either, app(ty_[], bbd)), bbc)) -> new_ltEs0(vwx260, vwx270, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx260), Just(vwx270), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(vwx260, vwx270, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, ge), app(ty_[], gh))) -> new_ltEs0(vwx261, vwx271, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(ty_[], cch), cbe) -> new_lt0(vwx52, vwx55, cch) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(ty_[], cbf), cbd, cbe) -> new_lt0(vwx51, vwx54, cbf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_Either, cbh), cca), cbd, cbe) -> new_lt2(vwx51, vwx54, cbh, cca) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(ty_Either, cdb), cdc), cbe) -> new_lt2(vwx52, vwx55, cdb, cdc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(app(ty_@3, ccb), ccc), ccd), cbd, cbe) -> new_lt3(vwx51, vwx54, ccb, ccc, ccd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbe) -> new_lt3(vwx52, vwx55, cdd, cde, cdf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, app(app(ty_@2, cbb), cbc), cbd, cbe) -> new_lt(vwx51, vwx54, cbb, cbc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx51, vwx52, vwx53, vwx54, vwx55, vwx56, False, cce, app(app(ty_@2, ccf), ccg), cbe) -> new_lt(vwx52, vwx55, ccf, ccg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(ty_[], ff)), fd)) -> new_lt0(vwx260, vwx270, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(ty_[], bea)), bdg), bdh)) -> new_lt0(vwx260, vwx270, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(ty_[], bfc)), bdh)) -> new_lt0(vwx261, vwx271, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdg), bdh)) -> new_lt2(vwx260, vwx270, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_Either, fh), ga)), fd)) -> new_lt2(vwx260, vwx270, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(ty_Either, bfe), bff)), bdh)) -> new_lt2(vwx261, vwx271, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(app(ty_@3, bee), bef), beg)), bdg), bdh)) -> new_lt3(vwx260, vwx270, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_lt3(vwx260, vwx270, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(app(ty_@3, bfg), bfh), bga)), bdh)) -> new_lt3(vwx261, vwx271, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx260, vwx261), @2(vwx270, vwx271), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(vwx260, vwx270, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdg), bdh)) -> new_lt(vwx260, vwx270, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx260, vwx261, vwx262), @3(vwx270, vwx271, vwx272), False, app(app(app(ty_@3, beh), app(app(ty_@2, bfa), bfb)), bdh)) -> new_lt(vwx261, vwx271, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (32) YES