/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, 8 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 142 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 16 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, 0 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="(<)",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="(<) vwx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="(<) vwx3 vwx4",fontsize=16,color="blue",shape="box"];2739[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2739[label="",style="solid", color="blue", weight=9]; 2739 -> 5[label="",style="solid", color="blue", weight=3]; 2740[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2740[label="",style="solid", color="blue", weight=9]; 2740 -> 6[label="",style="solid", color="blue", weight=3]; 2741[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2741[label="",style="solid", color="blue", weight=9]; 2741 -> 7[label="",style="solid", color="blue", weight=3]; 2742[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2742[label="",style="solid", color="blue", weight=9]; 2742 -> 8[label="",style="solid", color="blue", weight=3]; 2743[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2743[label="",style="solid", color="blue", weight=9]; 2743 -> 9[label="",style="solid", color="blue", weight=3]; 2744[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2744[label="",style="solid", color="blue", weight=9]; 2744 -> 10[label="",style="solid", color="blue", weight=3]; 2745[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2745[label="",style="solid", color="blue", weight=9]; 2745 -> 11[label="",style="solid", color="blue", weight=3]; 2746[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 12[label="",style="solid", color="blue", weight=3]; 2747[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 13[label="",style="solid", color="blue", weight=3]; 2748[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 14[label="",style="solid", color="blue", weight=3]; 2749[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 15[label="",style="solid", color="blue", weight=3]; 2750[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 16[label="",style="solid", color="blue", weight=3]; 2751[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 17[label="",style="solid", color="blue", weight=3]; 2752[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];4 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 18[label="",style="solid", color="blue", weight=3]; 5[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];5 -> 19[label="",style="solid", color="black", weight=3]; 6[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];6 -> 20[label="",style="solid", color="black", weight=3]; 7[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];7 -> 21[label="",style="solid", color="black", weight=3]; 8[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];8 -> 22[label="",style="solid", color="black", weight=3]; 9[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];9 -> 23[label="",style="solid", color="black", weight=3]; 10[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];10 -> 24[label="",style="solid", color="black", weight=3]; 11[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];11 -> 25[label="",style="solid", color="black", weight=3]; 12[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];12 -> 26[label="",style="solid", color="black", weight=3]; 13[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];13 -> 27[label="",style="solid", color="black", weight=3]; 14[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];14 -> 28[label="",style="solid", color="black", weight=3]; 15[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];15 -> 29[label="",style="solid", color="black", weight=3]; 16[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];16 -> 30[label="",style="solid", color="black", weight=3]; 17[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];17 -> 31[label="",style="solid", color="black", weight=3]; 18[label="(<) vwx3 vwx4",fontsize=16,color="black",shape="triangle"];18 -> 32[label="",style="solid", color="black", weight=3]; 19 -> 93[label="",style="dashed", color="red", weight=0]; 19[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];19 -> 94[label="",style="dashed", color="magenta", weight=3]; 20 -> 93[label="",style="dashed", color="red", weight=0]; 20[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];20 -> 95[label="",style="dashed", color="magenta", weight=3]; 21 -> 93[label="",style="dashed", color="red", weight=0]; 21[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];21 -> 96[label="",style="dashed", color="magenta", weight=3]; 22 -> 93[label="",style="dashed", color="red", weight=0]; 22[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];22 -> 97[label="",style="dashed", color="magenta", weight=3]; 23 -> 93[label="",style="dashed", color="red", weight=0]; 23[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];23 -> 98[label="",style="dashed", color="magenta", weight=3]; 24 -> 93[label="",style="dashed", color="red", weight=0]; 24[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];24 -> 99[label="",style="dashed", color="magenta", weight=3]; 25 -> 93[label="",style="dashed", color="red", weight=0]; 25[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];25 -> 100[label="",style="dashed", color="magenta", weight=3]; 26 -> 93[label="",style="dashed", color="red", weight=0]; 26[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];26 -> 101[label="",style="dashed", color="magenta", weight=3]; 27 -> 93[label="",style="dashed", color="red", weight=0]; 27[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];27 -> 102[label="",style="dashed", color="magenta", weight=3]; 28 -> 93[label="",style="dashed", color="red", weight=0]; 28[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];28 -> 103[label="",style="dashed", color="magenta", weight=3]; 29 -> 93[label="",style="dashed", color="red", weight=0]; 29[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];29 -> 104[label="",style="dashed", color="magenta", weight=3]; 30 -> 93[label="",style="dashed", color="red", weight=0]; 30[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];30 -> 105[label="",style="dashed", color="magenta", weight=3]; 31 -> 93[label="",style="dashed", color="red", weight=0]; 31[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];31 -> 106[label="",style="dashed", color="magenta", weight=3]; 32 -> 93[label="",style="dashed", color="red", weight=0]; 32[label="compare vwx3 vwx4 == LT",fontsize=16,color="magenta"];32 -> 107[label="",style="dashed", color="magenta", weight=3]; 94[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2753[label="vwx3/vwx30 :% vwx31",fontsize=10,color="white",style="solid",shape="box"];94 -> 2753[label="",style="solid", color="burlywood", weight=9]; 2753 -> 131[label="",style="solid", color="burlywood", weight=3]; 93[label="vwx7 == LT",fontsize=16,color="burlywood",shape="triangle"];2754[label="vwx7/LT",fontsize=10,color="white",style="solid",shape="box"];93 -> 2754[label="",style="solid", color="burlywood", weight=9]; 2754 -> 132[label="",style="solid", color="burlywood", weight=3]; 2755[label="vwx7/EQ",fontsize=10,color="white",style="solid",shape="box"];93 -> 2755[label="",style="solid", color="burlywood", weight=9]; 2755 -> 133[label="",style="solid", color="burlywood", weight=3]; 2756[label="vwx7/GT",fontsize=10,color="white",style="solid",shape="box"];93 -> 2756[label="",style="solid", color="burlywood", weight=9]; 2756 -> 134[label="",style="solid", color="burlywood", weight=3]; 95[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2757[label="vwx3/Integer vwx30",fontsize=10,color="white",style="solid",shape="box"];95 -> 2757[label="",style="solid", color="burlywood", weight=9]; 2757 -> 135[label="",style="solid", color="burlywood", weight=3]; 96[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];96 -> 136[label="",style="solid", color="black", weight=3]; 97[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2758[label="vwx3/vwx30 : vwx31",fontsize=10,color="white",style="solid",shape="box"];97 -> 2758[label="",style="solid", color="burlywood", weight=9]; 2758 -> 137[label="",style="solid", color="burlywood", weight=3]; 2759[label="vwx3/[]",fontsize=10,color="white",style="solid",shape="box"];97 -> 2759[label="",style="solid", color="burlywood", weight=9]; 2759 -> 138[label="",style="solid", color="burlywood", weight=3]; 98[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];98 -> 139[label="",style="solid", color="black", weight=3]; 99[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];99 -> 140[label="",style="solid", color="black", weight=3]; 100[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];100 -> 141[label="",style="solid", color="black", weight=3]; 101[label="compare vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2760[label="vwx3/()",fontsize=10,color="white",style="solid",shape="box"];101 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 142[label="",style="solid", color="burlywood", weight=3]; 102[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];102 -> 143[label="",style="solid", color="black", weight=3]; 103[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];103 -> 144[label="",style="solid", color="black", weight=3]; 104[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];104 -> 145[label="",style="solid", color="black", weight=3]; 105[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];105 -> 146[label="",style="solid", color="black", weight=3]; 106[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];106 -> 147[label="",style="solid", color="black", weight=3]; 107[label="compare vwx3 vwx4",fontsize=16,color="black",shape="triangle"];107 -> 148[label="",style="solid", color="black", weight=3]; 131[label="compare (vwx30 :% vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2761[label="vwx4/vwx40 :% vwx41",fontsize=10,color="white",style="solid",shape="box"];131 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 149[label="",style="solid", color="burlywood", weight=3]; 132[label="LT == LT",fontsize=16,color="black",shape="box"];132 -> 150[label="",style="solid", color="black", weight=3]; 133[label="EQ == LT",fontsize=16,color="black",shape="box"];133 -> 151[label="",style="solid", color="black", weight=3]; 134[label="GT == LT",fontsize=16,color="black",shape="box"];134 -> 152[label="",style="solid", color="black", weight=3]; 135[label="compare (Integer vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2762[label="vwx4/Integer vwx40",fontsize=10,color="white",style="solid",shape="box"];135 -> 2762[label="",style="solid", color="burlywood", weight=9]; 2762 -> 153[label="",style="solid", color="burlywood", weight=3]; 136[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];136 -> 154[label="",style="solid", color="black", weight=3]; 137[label="compare (vwx30 : vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2763[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];137 -> 2763[label="",style="solid", color="burlywood", weight=9]; 2763 -> 155[label="",style="solid", color="burlywood", weight=3]; 2764[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];137 -> 2764[label="",style="solid", color="burlywood", weight=9]; 2764 -> 156[label="",style="solid", color="burlywood", weight=3]; 138[label="compare [] vwx4",fontsize=16,color="burlywood",shape="box"];2765[label="vwx4/vwx40 : vwx41",fontsize=10,color="white",style="solid",shape="box"];138 -> 2765[label="",style="solid", color="burlywood", weight=9]; 2765 -> 157[label="",style="solid", color="burlywood", weight=3]; 2766[label="vwx4/[]",fontsize=10,color="white",style="solid",shape="box"];138 -> 2766[label="",style="solid", color="burlywood", weight=9]; 2766 -> 158[label="",style="solid", color="burlywood", weight=3]; 139[label="primCmpFloat vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2767[label="vwx3/Float vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];139 -> 2767[label="",style="solid", color="burlywood", weight=9]; 2767 -> 159[label="",style="solid", color="burlywood", weight=3]; 140[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];140 -> 160[label="",style="solid", color="black", weight=3]; 141[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];141 -> 161[label="",style="solid", color="black", weight=3]; 142[label="compare () vwx4",fontsize=16,color="burlywood",shape="box"];2768[label="vwx4/()",fontsize=10,color="white",style="solid",shape="box"];142 -> 2768[label="",style="solid", color="burlywood", weight=9]; 2768 -> 162[label="",style="solid", color="burlywood", weight=3]; 143[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];143 -> 163[label="",style="solid", color="black", weight=3]; 144[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];144 -> 164[label="",style="solid", color="black", weight=3]; 145[label="primCmpChar vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2769[label="vwx3/Char vwx30",fontsize=10,color="white",style="solid",shape="box"];145 -> 2769[label="",style="solid", color="burlywood", weight=9]; 2769 -> 165[label="",style="solid", color="burlywood", weight=3]; 146[label="compare3 vwx3 vwx4",fontsize=16,color="black",shape="box"];146 -> 166[label="",style="solid", color="black", weight=3]; 147[label="primCmpInt vwx3 vwx4",fontsize=16,color="burlywood",shape="triangle"];2770[label="vwx3/Pos vwx30",fontsize=10,color="white",style="solid",shape="box"];147 -> 2770[label="",style="solid", color="burlywood", weight=9]; 2770 -> 167[label="",style="solid", color="burlywood", weight=3]; 2771[label="vwx3/Neg vwx30",fontsize=10,color="white",style="solid",shape="box"];147 -> 2771[label="",style="solid", color="burlywood", weight=9]; 2771 -> 168[label="",style="solid", color="burlywood", weight=3]; 148[label="primCmpDouble vwx3 vwx4",fontsize=16,color="burlywood",shape="box"];2772[label="vwx3/Double vwx30 vwx31",fontsize=10,color="white",style="solid",shape="box"];148 -> 2772[label="",style="solid", color="burlywood", weight=9]; 2772 -> 169[label="",style="solid", color="burlywood", weight=3]; 149[label="compare (vwx30 :% vwx31) (vwx40 :% vwx41)",fontsize=16,color="black",shape="box"];149 -> 170[label="",style="solid", color="black", weight=3]; 150[label="True",fontsize=16,color="green",shape="box"];151[label="False",fontsize=16,color="green",shape="box"];152[label="False",fontsize=16,color="green",shape="box"];153[label="compare (Integer vwx30) (Integer vwx40)",fontsize=16,color="black",shape="box"];153 -> 171[label="",style="solid", color="black", weight=3]; 154[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2773[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];154 -> 2773[label="",style="solid", color="burlywood", weight=9]; 2773 -> 172[label="",style="solid", color="burlywood", weight=3]; 155[label="compare (vwx30 : vwx31) (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];155 -> 173[label="",style="solid", color="black", weight=3]; 156[label="compare (vwx30 : vwx31) []",fontsize=16,color="black",shape="box"];156 -> 174[label="",style="solid", color="black", weight=3]; 157[label="compare [] (vwx40 : vwx41)",fontsize=16,color="black",shape="box"];157 -> 175[label="",style="solid", color="black", weight=3]; 158[label="compare [] []",fontsize=16,color="black",shape="box"];158 -> 176[label="",style="solid", color="black", weight=3]; 159[label="primCmpFloat (Float vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2774[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];159 -> 2774[label="",style="solid", color="burlywood", weight=9]; 2774 -> 177[label="",style="solid", color="burlywood", weight=3]; 2775[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];159 -> 2775[label="",style="solid", color="burlywood", weight=9]; 2775 -> 178[label="",style="solid", color="burlywood", weight=3]; 160[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2776[label="vwx3/Nothing",fontsize=10,color="white",style="solid",shape="box"];160 -> 2776[label="",style="solid", color="burlywood", weight=9]; 2776 -> 179[label="",style="solid", color="burlywood", weight=3]; 2777[label="vwx3/Just vwx30",fontsize=10,color="white",style="solid",shape="box"];160 -> 2777[label="",style="solid", color="burlywood", weight=9]; 2777 -> 180[label="",style="solid", color="burlywood", weight=3]; 161[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2778[label="vwx3/False",fontsize=10,color="white",style="solid",shape="box"];161 -> 2778[label="",style="solid", color="burlywood", weight=9]; 2778 -> 181[label="",style="solid", color="burlywood", weight=3]; 2779[label="vwx3/True",fontsize=10,color="white",style="solid",shape="box"];161 -> 2779[label="",style="solid", color="burlywood", weight=9]; 2779 -> 182[label="",style="solid", color="burlywood", weight=3]; 162[label="compare () ()",fontsize=16,color="black",shape="box"];162 -> 183[label="",style="solid", color="black", weight=3]; 163[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2780[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];163 -> 2780[label="",style="solid", color="burlywood", weight=9]; 2780 -> 184[label="",style="solid", color="burlywood", weight=3]; 2781[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];163 -> 2781[label="",style="solid", color="burlywood", weight=9]; 2781 -> 185[label="",style="solid", color="burlywood", weight=3]; 164[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2782[label="vwx3/(vwx30,vwx31,vwx32)",fontsize=10,color="white",style="solid",shape="box"];164 -> 2782[label="",style="solid", color="burlywood", weight=9]; 2782 -> 186[label="",style="solid", color="burlywood", weight=3]; 165[label="primCmpChar (Char vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2783[label="vwx4/Char vwx40",fontsize=10,color="white",style="solid",shape="box"];165 -> 2783[label="",style="solid", color="burlywood", weight=9]; 2783 -> 187[label="",style="solid", color="burlywood", weight=3]; 166[label="compare2 vwx3 vwx4 (vwx3 == vwx4)",fontsize=16,color="burlywood",shape="box"];2784[label="vwx3/LT",fontsize=10,color="white",style="solid",shape="box"];166 -> 2784[label="",style="solid", color="burlywood", weight=9]; 2784 -> 188[label="",style="solid", color="burlywood", weight=3]; 2785[label="vwx3/EQ",fontsize=10,color="white",style="solid",shape="box"];166 -> 2785[label="",style="solid", color="burlywood", weight=9]; 2785 -> 189[label="",style="solid", color="burlywood", weight=3]; 2786[label="vwx3/GT",fontsize=10,color="white",style="solid",shape="box"];166 -> 2786[label="",style="solid", color="burlywood", weight=9]; 2786 -> 190[label="",style="solid", color="burlywood", weight=3]; 167[label="primCmpInt (Pos vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2787[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];167 -> 2787[label="",style="solid", color="burlywood", weight=9]; 2787 -> 191[label="",style="solid", color="burlywood", weight=3]; 2788[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];167 -> 2788[label="",style="solid", color="burlywood", weight=9]; 2788 -> 192[label="",style="solid", color="burlywood", weight=3]; 168[label="primCmpInt (Neg vwx30) vwx4",fontsize=16,color="burlywood",shape="box"];2789[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];168 -> 2789[label="",style="solid", color="burlywood", weight=9]; 2789 -> 193[label="",style="solid", color="burlywood", weight=3]; 2790[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];168 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 194[label="",style="solid", color="burlywood", weight=3]; 169[label="primCmpDouble (Double vwx30 vwx31) vwx4",fontsize=16,color="burlywood",shape="box"];2791[label="vwx31/Pos vwx310",fontsize=10,color="white",style="solid",shape="box"];169 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 195[label="",style="solid", color="burlywood", weight=3]; 2792[label="vwx31/Neg vwx310",fontsize=10,color="white",style="solid",shape="box"];169 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 196[label="",style="solid", color="burlywood", weight=3]; 170[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="blue",shape="box"];2793[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];170 -> 2793[label="",style="solid", color="blue", weight=9]; 2793 -> 197[label="",style="solid", color="blue", weight=3]; 2794[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];170 -> 2794[label="",style="solid", color="blue", weight=9]; 2794 -> 198[label="",style="solid", color="blue", weight=3]; 171 -> 147[label="",style="dashed", color="red", weight=0]; 171[label="primCmpInt vwx30 vwx40",fontsize=16,color="magenta"];171 -> 199[label="",style="dashed", color="magenta", weight=3]; 171 -> 200[label="",style="dashed", color="magenta", weight=3]; 172[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4)",fontsize=16,color="burlywood",shape="box"];2795[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];172 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 201[label="",style="solid", color="burlywood", weight=3]; 173 -> 202[label="",style="dashed", color="red", weight=0]; 173[label="primCompAux vwx30 vwx40 (compare vwx31 vwx41)",fontsize=16,color="magenta"];173 -> 203[label="",style="dashed", color="magenta", weight=3]; 174[label="GT",fontsize=16,color="green",shape="box"];175[label="LT",fontsize=16,color="green",shape="box"];176[label="EQ",fontsize=16,color="green",shape="box"];177[label="primCmpFloat (Float vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2796[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];177 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 204[label="",style="solid", color="burlywood", weight=3]; 178[label="primCmpFloat (Float vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2797[label="vwx4/Float vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];178 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 205[label="",style="solid", color="burlywood", weight=3]; 179[label="compare2 Nothing vwx4 (Nothing == vwx4)",fontsize=16,color="burlywood",shape="box"];2798[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];179 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 206[label="",style="solid", color="burlywood", weight=3]; 2799[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];179 -> 2799[label="",style="solid", color="burlywood", weight=9]; 2799 -> 207[label="",style="solid", color="burlywood", weight=3]; 180[label="compare2 (Just vwx30) vwx4 (Just vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2800[label="vwx4/Nothing",fontsize=10,color="white",style="solid",shape="box"];180 -> 2800[label="",style="solid", color="burlywood", weight=9]; 2800 -> 208[label="",style="solid", color="burlywood", weight=3]; 2801[label="vwx4/Just vwx40",fontsize=10,color="white",style="solid",shape="box"];180 -> 2801[label="",style="solid", color="burlywood", weight=9]; 2801 -> 209[label="",style="solid", color="burlywood", weight=3]; 181[label="compare2 False vwx4 (False == vwx4)",fontsize=16,color="burlywood",shape="box"];2802[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];181 -> 2802[label="",style="solid", color="burlywood", weight=9]; 2802 -> 210[label="",style="solid", color="burlywood", weight=3]; 2803[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];181 -> 2803[label="",style="solid", color="burlywood", weight=9]; 2803 -> 211[label="",style="solid", color="burlywood", weight=3]; 182[label="compare2 True vwx4 (True == vwx4)",fontsize=16,color="burlywood",shape="box"];2804[label="vwx4/False",fontsize=10,color="white",style="solid",shape="box"];182 -> 2804[label="",style="solid", color="burlywood", weight=9]; 2804 -> 212[label="",style="solid", color="burlywood", weight=3]; 2805[label="vwx4/True",fontsize=10,color="white",style="solid",shape="box"];182 -> 2805[label="",style="solid", color="burlywood", weight=9]; 2805 -> 213[label="",style="solid", color="burlywood", weight=3]; 183[label="EQ",fontsize=16,color="green",shape="box"];184[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2806[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];184 -> 2806[label="",style="solid", color="burlywood", weight=9]; 2806 -> 214[label="",style="solid", color="burlywood", weight=3]; 2807[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];184 -> 2807[label="",style="solid", color="burlywood", weight=9]; 2807 -> 215[label="",style="solid", color="burlywood", weight=3]; 185[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4)",fontsize=16,color="burlywood",shape="box"];2808[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];185 -> 2808[label="",style="solid", color="burlywood", weight=9]; 2808 -> 216[label="",style="solid", color="burlywood", weight=3]; 2809[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];185 -> 2809[label="",style="solid", color="burlywood", weight=9]; 2809 -> 217[label="",style="solid", color="burlywood", weight=3]; 186[label="compare2 (vwx30,vwx31,vwx32) vwx4 ((vwx30,vwx31,vwx32) == vwx4)",fontsize=16,color="burlywood",shape="box"];2810[label="vwx4/(vwx40,vwx41,vwx42)",fontsize=10,color="white",style="solid",shape="box"];186 -> 2810[label="",style="solid", color="burlywood", weight=9]; 2810 -> 218[label="",style="solid", color="burlywood", weight=3]; 187[label="primCmpChar (Char vwx30) (Char vwx40)",fontsize=16,color="black",shape="box"];187 -> 219[label="",style="solid", color="black", weight=3]; 188[label="compare2 LT vwx4 (LT == vwx4)",fontsize=16,color="burlywood",shape="box"];2811[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];188 -> 2811[label="",style="solid", color="burlywood", weight=9]; 2811 -> 220[label="",style="solid", color="burlywood", weight=3]; 2812[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];188 -> 2812[label="",style="solid", color="burlywood", weight=9]; 2812 -> 221[label="",style="solid", color="burlywood", weight=3]; 2813[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];188 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 222[label="",style="solid", color="burlywood", weight=3]; 189[label="compare2 EQ vwx4 (EQ == vwx4)",fontsize=16,color="burlywood",shape="box"];2814[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];189 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 223[label="",style="solid", color="burlywood", weight=3]; 2815[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];189 -> 2815[label="",style="solid", color="burlywood", weight=9]; 2815 -> 224[label="",style="solid", color="burlywood", weight=3]; 2816[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];189 -> 2816[label="",style="solid", color="burlywood", weight=9]; 2816 -> 225[label="",style="solid", color="burlywood", weight=3]; 190[label="compare2 GT vwx4 (GT == vwx4)",fontsize=16,color="burlywood",shape="box"];2817[label="vwx4/LT",fontsize=10,color="white",style="solid",shape="box"];190 -> 2817[label="",style="solid", color="burlywood", weight=9]; 2817 -> 226[label="",style="solid", color="burlywood", weight=3]; 2818[label="vwx4/EQ",fontsize=10,color="white",style="solid",shape="box"];190 -> 2818[label="",style="solid", color="burlywood", weight=9]; 2818 -> 227[label="",style="solid", color="burlywood", weight=3]; 2819[label="vwx4/GT",fontsize=10,color="white",style="solid",shape="box"];190 -> 2819[label="",style="solid", color="burlywood", weight=9]; 2819 -> 228[label="",style="solid", color="burlywood", weight=3]; 191[label="primCmpInt (Pos (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2820[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];191 -> 2820[label="",style="solid", color="burlywood", weight=9]; 2820 -> 229[label="",style="solid", color="burlywood", weight=3]; 2821[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];191 -> 2821[label="",style="solid", color="burlywood", weight=9]; 2821 -> 230[label="",style="solid", color="burlywood", weight=3]; 192[label="primCmpInt (Pos Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2822[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];192 -> 2822[label="",style="solid", color="burlywood", weight=9]; 2822 -> 231[label="",style="solid", color="burlywood", weight=3]; 2823[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];192 -> 2823[label="",style="solid", color="burlywood", weight=9]; 2823 -> 232[label="",style="solid", color="burlywood", weight=3]; 193[label="primCmpInt (Neg (Succ vwx300)) vwx4",fontsize=16,color="burlywood",shape="box"];2824[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];193 -> 2824[label="",style="solid", color="burlywood", weight=9]; 2824 -> 233[label="",style="solid", color="burlywood", weight=3]; 2825[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];193 -> 2825[label="",style="solid", color="burlywood", weight=9]; 2825 -> 234[label="",style="solid", color="burlywood", weight=3]; 194[label="primCmpInt (Neg Zero) vwx4",fontsize=16,color="burlywood",shape="box"];2826[label="vwx4/Pos vwx40",fontsize=10,color="white",style="solid",shape="box"];194 -> 2826[label="",style="solid", color="burlywood", weight=9]; 2826 -> 235[label="",style="solid", color="burlywood", weight=3]; 2827[label="vwx4/Neg vwx40",fontsize=10,color="white",style="solid",shape="box"];194 -> 2827[label="",style="solid", color="burlywood", weight=9]; 2827 -> 236[label="",style="solid", color="burlywood", weight=3]; 195[label="primCmpDouble (Double vwx30 (Pos vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2828[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];195 -> 2828[label="",style="solid", color="burlywood", weight=9]; 2828 -> 237[label="",style="solid", color="burlywood", weight=3]; 196[label="primCmpDouble (Double vwx30 (Neg vwx310)) vwx4",fontsize=16,color="burlywood",shape="box"];2829[label="vwx4/Double vwx40 vwx41",fontsize=10,color="white",style="solid",shape="box"];196 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 238[label="",style="solid", color="burlywood", weight=3]; 197 -> 95[label="",style="dashed", color="red", weight=0]; 197[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];197 -> 239[label="",style="dashed", color="magenta", weight=3]; 197 -> 240[label="",style="dashed", color="magenta", weight=3]; 198 -> 106[label="",style="dashed", color="red", weight=0]; 198[label="compare (vwx30 * vwx41) (vwx40 * vwx31)",fontsize=16,color="magenta"];198 -> 241[label="",style="dashed", color="magenta", weight=3]; 198 -> 242[label="",style="dashed", color="magenta", weight=3]; 199[label="vwx30",fontsize=16,color="green",shape="box"];200[label="vwx40",fontsize=16,color="green",shape="box"];201[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41))",fontsize=16,color="black",shape="box"];201 -> 243[label="",style="solid", color="black", weight=3]; 203 -> 97[label="",style="dashed", color="red", weight=0]; 203[label="compare vwx31 vwx41",fontsize=16,color="magenta"];203 -> 244[label="",style="dashed", color="magenta", weight=3]; 203 -> 245[label="",style="dashed", color="magenta", weight=3]; 202[label="primCompAux vwx30 vwx40 vwx8",fontsize=16,color="black",shape="triangle"];202 -> 246[label="",style="solid", color="black", weight=3]; 204[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2830[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];204 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 247[label="",style="solid", color="burlywood", weight=3]; 2831[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];204 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 248[label="",style="solid", color="burlywood", weight=3]; 205[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2832[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];205 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 249[label="",style="solid", color="burlywood", weight=3]; 2833[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];205 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 250[label="",style="solid", color="burlywood", weight=3]; 206[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];206 -> 251[label="",style="solid", color="black", weight=3]; 207[label="compare2 Nothing (Just vwx40) (Nothing == Just vwx40)",fontsize=16,color="black",shape="box"];207 -> 252[label="",style="solid", color="black", weight=3]; 208[label="compare2 (Just vwx30) Nothing (Just vwx30 == Nothing)",fontsize=16,color="black",shape="box"];208 -> 253[label="",style="solid", color="black", weight=3]; 209[label="compare2 (Just vwx30) (Just vwx40) (Just vwx30 == Just vwx40)",fontsize=16,color="black",shape="box"];209 -> 254[label="",style="solid", color="black", weight=3]; 210[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];210 -> 255[label="",style="solid", color="black", weight=3]; 211[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];211 -> 256[label="",style="solid", color="black", weight=3]; 212[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];212 -> 257[label="",style="solid", color="black", weight=3]; 213[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];213 -> 258[label="",style="solid", color="black", weight=3]; 214[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];214 -> 259[label="",style="solid", color="black", weight=3]; 215[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];215 -> 260[label="",style="solid", color="black", weight=3]; 216[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40)",fontsize=16,color="black",shape="box"];216 -> 261[label="",style="solid", color="black", weight=3]; 217[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40)",fontsize=16,color="black",shape="box"];217 -> 262[label="",style="solid", color="black", weight=3]; 218[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) ((vwx30,vwx31,vwx32) == (vwx40,vwx41,vwx42))",fontsize=16,color="black",shape="box"];218 -> 263[label="",style="solid", color="black", weight=3]; 219[label="primCmpNat vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2834[label="vwx30/Succ vwx300",fontsize=10,color="white",style="solid",shape="box"];219 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 264[label="",style="solid", color="burlywood", weight=3]; 2835[label="vwx30/Zero",fontsize=10,color="white",style="solid",shape="box"];219 -> 2835[label="",style="solid", color="burlywood", weight=9]; 2835 -> 265[label="",style="solid", color="burlywood", weight=3]; 220[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];220 -> 266[label="",style="solid", color="black", weight=3]; 221[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];221 -> 267[label="",style="solid", color="black", weight=3]; 222[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];222 -> 268[label="",style="solid", color="black", weight=3]; 223[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];223 -> 269[label="",style="solid", color="black", weight=3]; 224[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];224 -> 270[label="",style="solid", color="black", weight=3]; 225[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];225 -> 271[label="",style="solid", color="black", weight=3]; 226[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];226 -> 272[label="",style="solid", color="black", weight=3]; 227[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];227 -> 273[label="",style="solid", color="black", weight=3]; 228[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];228 -> 274[label="",style="solid", color="black", weight=3]; 229[label="primCmpInt (Pos (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];229 -> 275[label="",style="solid", color="black", weight=3]; 230[label="primCmpInt (Pos (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];230 -> 276[label="",style="solid", color="black", weight=3]; 231[label="primCmpInt (Pos Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];2836[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];231 -> 2836[label="",style="solid", color="burlywood", weight=9]; 2836 -> 277[label="",style="solid", color="burlywood", weight=3]; 2837[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];231 -> 2837[label="",style="solid", color="burlywood", weight=9]; 2837 -> 278[label="",style="solid", color="burlywood", weight=3]; 232[label="primCmpInt (Pos Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];2838[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];232 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 279[label="",style="solid", color="burlywood", weight=3]; 2839[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];232 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 280[label="",style="solid", color="burlywood", weight=3]; 233[label="primCmpInt (Neg (Succ vwx300)) (Pos vwx40)",fontsize=16,color="black",shape="box"];233 -> 281[label="",style="solid", color="black", weight=3]; 234[label="primCmpInt (Neg (Succ vwx300)) (Neg vwx40)",fontsize=16,color="black",shape="box"];234 -> 282[label="",style="solid", color="black", weight=3]; 235[label="primCmpInt (Neg Zero) (Pos vwx40)",fontsize=16,color="burlywood",shape="box"];2840[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];235 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 283[label="",style="solid", color="burlywood", weight=3]; 2841[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];235 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 284[label="",style="solid", color="burlywood", weight=3]; 236[label="primCmpInt (Neg Zero) (Neg vwx40)",fontsize=16,color="burlywood",shape="box"];2842[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];236 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 285[label="",style="solid", color="burlywood", weight=3]; 2843[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];236 -> 2843[label="",style="solid", color="burlywood", weight=9]; 2843 -> 286[label="",style="solid", color="burlywood", weight=3]; 237[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2844[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];237 -> 2844[label="",style="solid", color="burlywood", weight=9]; 2844 -> 287[label="",style="solid", color="burlywood", weight=3]; 2845[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];237 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 288[label="",style="solid", color="burlywood", weight=3]; 238[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 vwx41)",fontsize=16,color="burlywood",shape="box"];2846[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];238 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 289[label="",style="solid", color="burlywood", weight=3]; 2847[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];238 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 290[label="",style="solid", color="burlywood", weight=3]; 239[label="vwx30 * vwx41",fontsize=16,color="burlywood",shape="triangle"];2848[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];239 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 291[label="",style="solid", color="burlywood", weight=3]; 240 -> 239[label="",style="dashed", color="red", weight=0]; 240[label="vwx40 * vwx31",fontsize=16,color="magenta"];240 -> 292[label="",style="dashed", color="magenta", weight=3]; 240 -> 293[label="",style="dashed", color="magenta", weight=3]; 241[label="vwx30 * vwx41",fontsize=16,color="black",shape="triangle"];241 -> 294[label="",style="solid", color="black", weight=3]; 242 -> 241[label="",style="dashed", color="red", weight=0]; 242[label="vwx40 * vwx31",fontsize=16,color="magenta"];242 -> 295[label="",style="dashed", color="magenta", weight=3]; 242 -> 296[label="",style="dashed", color="magenta", weight=3]; 243 -> 769[label="",style="dashed", color="red", weight=0]; 243[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41)",fontsize=16,color="magenta"];243 -> 770[label="",style="dashed", color="magenta", weight=3]; 243 -> 771[label="",style="dashed", color="magenta", weight=3]; 243 -> 772[label="",style="dashed", color="magenta", weight=3]; 243 -> 773[label="",style="dashed", color="magenta", weight=3]; 243 -> 774[label="",style="dashed", color="magenta", weight=3]; 244[label="vwx31",fontsize=16,color="green",shape="box"];245[label="vwx41",fontsize=16,color="green",shape="box"];246 -> 303[label="",style="dashed", color="red", weight=0]; 246[label="primCompAux0 vwx8 (compare vwx30 vwx40)",fontsize=16,color="magenta"];246 -> 304[label="",style="dashed", color="magenta", weight=3]; 246 -> 305[label="",style="dashed", color="magenta", weight=3]; 247[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];247 -> 306[label="",style="solid", color="black", weight=3]; 248[label="primCmpFloat (Float vwx30 (Pos vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];248 -> 307[label="",style="solid", color="black", weight=3]; 249[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];249 -> 308[label="",style="solid", color="black", weight=3]; 250[label="primCmpFloat (Float vwx30 (Neg vwx310)) (Float vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];250 -> 309[label="",style="solid", color="black", weight=3]; 251[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];251 -> 310[label="",style="solid", color="black", weight=3]; 252[label="compare2 Nothing (Just vwx40) False",fontsize=16,color="black",shape="box"];252 -> 311[label="",style="solid", color="black", weight=3]; 253[label="compare2 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];253 -> 312[label="",style="solid", color="black", weight=3]; 254 -> 313[label="",style="dashed", color="red", weight=0]; 254[label="compare2 (Just vwx30) (Just vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];254 -> 314[label="",style="dashed", color="magenta", weight=3]; 254 -> 315[label="",style="dashed", color="magenta", weight=3]; 254 -> 316[label="",style="dashed", color="magenta", weight=3]; 255[label="compare2 False False True",fontsize=16,color="black",shape="box"];255 -> 317[label="",style="solid", color="black", weight=3]; 256[label="compare2 False True False",fontsize=16,color="black",shape="box"];256 -> 318[label="",style="solid", color="black", weight=3]; 257[label="compare2 True False False",fontsize=16,color="black",shape="box"];257 -> 319[label="",style="solid", color="black", weight=3]; 258[label="compare2 True True True",fontsize=16,color="black",shape="box"];258 -> 320[label="",style="solid", color="black", weight=3]; 259 -> 321[label="",style="dashed", color="red", weight=0]; 259[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];259 -> 322[label="",style="dashed", color="magenta", weight=3]; 259 -> 323[label="",style="dashed", color="magenta", weight=3]; 259 -> 324[label="",style="dashed", color="magenta", weight=3]; 260[label="compare2 (Left vwx30) (Right vwx40) False",fontsize=16,color="black",shape="box"];260 -> 325[label="",style="solid", color="black", weight=3]; 261[label="compare2 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];261 -> 326[label="",style="solid", color="black", weight=3]; 262 -> 327[label="",style="dashed", color="red", weight=0]; 262[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40)",fontsize=16,color="magenta"];262 -> 328[label="",style="dashed", color="magenta", weight=3]; 262 -> 329[label="",style="dashed", color="magenta", weight=3]; 262 -> 330[label="",style="dashed", color="magenta", weight=3]; 263 -> 819[label="",style="dashed", color="red", weight=0]; 263[label="compare2 (vwx30,vwx31,vwx32) (vwx40,vwx41,vwx42) (vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42)",fontsize=16,color="magenta"];263 -> 820[label="",style="dashed", color="magenta", weight=3]; 263 -> 821[label="",style="dashed", color="magenta", weight=3]; 263 -> 822[label="",style="dashed", color="magenta", weight=3]; 263 -> 823[label="",style="dashed", color="magenta", weight=3]; 263 -> 824[label="",style="dashed", color="magenta", weight=3]; 263 -> 825[label="",style="dashed", color="magenta", weight=3]; 263 -> 826[label="",style="dashed", color="magenta", weight=3]; 264[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2849[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];264 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 339[label="",style="solid", color="burlywood", weight=3]; 2850[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];264 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 340[label="",style="solid", color="burlywood", weight=3]; 265[label="primCmpNat Zero vwx40",fontsize=16,color="burlywood",shape="box"];2851[label="vwx40/Succ vwx400",fontsize=10,color="white",style="solid",shape="box"];265 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 341[label="",style="solid", color="burlywood", weight=3]; 2852[label="vwx40/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 342[label="",style="solid", color="burlywood", weight=3]; 266[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];266 -> 343[label="",style="solid", color="black", weight=3]; 267[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];267 -> 344[label="",style="solid", color="black", weight=3]; 268[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];268 -> 345[label="",style="solid", color="black", weight=3]; 269[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];269 -> 346[label="",style="solid", color="black", weight=3]; 270[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];270 -> 347[label="",style="solid", color="black", weight=3]; 271[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];271 -> 348[label="",style="solid", color="black", weight=3]; 272[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];272 -> 349[label="",style="solid", color="black", weight=3]; 273[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];273 -> 350[label="",style="solid", color="black", weight=3]; 274[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];274 -> 351[label="",style="solid", color="black", weight=3]; 275 -> 219[label="",style="dashed", color="red", weight=0]; 275[label="primCmpNat (Succ vwx300) vwx40",fontsize=16,color="magenta"];275 -> 352[label="",style="dashed", color="magenta", weight=3]; 275 -> 353[label="",style="dashed", color="magenta", weight=3]; 276[label="GT",fontsize=16,color="green",shape="box"];277[label="primCmpInt (Pos Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];277 -> 354[label="",style="solid", color="black", weight=3]; 278[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];278 -> 355[label="",style="solid", color="black", weight=3]; 279[label="primCmpInt (Pos Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];279 -> 356[label="",style="solid", color="black", weight=3]; 280[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];280 -> 357[label="",style="solid", color="black", weight=3]; 281[label="LT",fontsize=16,color="green",shape="box"];282 -> 219[label="",style="dashed", color="red", weight=0]; 282[label="primCmpNat vwx40 (Succ vwx300)",fontsize=16,color="magenta"];282 -> 358[label="",style="dashed", color="magenta", weight=3]; 282 -> 359[label="",style="dashed", color="magenta", weight=3]; 283[label="primCmpInt (Neg Zero) (Pos (Succ vwx400))",fontsize=16,color="black",shape="box"];283 -> 360[label="",style="solid", color="black", weight=3]; 284[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];284 -> 361[label="",style="solid", color="black", weight=3]; 285[label="primCmpInt (Neg Zero) (Neg (Succ vwx400))",fontsize=16,color="black",shape="box"];285 -> 362[label="",style="solid", color="black", weight=3]; 286[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];286 -> 363[label="",style="solid", color="black", weight=3]; 287[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];287 -> 364[label="",style="solid", color="black", weight=3]; 288[label="primCmpDouble (Double vwx30 (Pos vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];288 -> 365[label="",style="solid", color="black", weight=3]; 289[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Pos vwx410))",fontsize=16,color="black",shape="box"];289 -> 366[label="",style="solid", color="black", weight=3]; 290[label="primCmpDouble (Double vwx30 (Neg vwx310)) (Double vwx40 (Neg vwx410))",fontsize=16,color="black",shape="box"];290 -> 367[label="",style="solid", color="black", weight=3]; 291[label="Integer vwx300 * vwx41",fontsize=16,color="burlywood",shape="box"];2853[label="vwx41/Integer vwx410",fontsize=10,color="white",style="solid",shape="box"];291 -> 2853[label="",style="solid", color="burlywood", weight=9]; 2853 -> 368[label="",style="solid", color="burlywood", weight=3]; 292[label="vwx31",fontsize=16,color="green",shape="box"];293[label="vwx40",fontsize=16,color="green",shape="box"];294[label="primMulInt vwx30 vwx41",fontsize=16,color="burlywood",shape="triangle"];2854[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];294 -> 2854[label="",style="solid", color="burlywood", weight=9]; 2854 -> 369[label="",style="solid", color="burlywood", weight=3]; 2855[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];294 -> 2855[label="",style="solid", color="burlywood", weight=9]; 2855 -> 370[label="",style="solid", color="burlywood", weight=3]; 295[label="vwx31",fontsize=16,color="green",shape="box"];296[label="vwx40",fontsize=16,color="green",shape="box"];770 -> 851[label="",style="dashed", color="red", weight=0]; 770[label="vwx30 == vwx40 && vwx31 == vwx41",fontsize=16,color="magenta"];770 -> 852[label="",style="dashed", color="magenta", weight=3]; 770 -> 853[label="",style="dashed", color="magenta", weight=3]; 771[label="vwx41",fontsize=16,color="green",shape="box"];772[label="vwx31",fontsize=16,color="green",shape="box"];773[label="vwx30",fontsize=16,color="green",shape="box"];774[label="vwx40",fontsize=16,color="green",shape="box"];769[label="compare2 (vwx67,vwx68) (vwx69,vwx70) vwx71",fontsize=16,color="burlywood",shape="triangle"];2856[label="vwx71/False",fontsize=10,color="white",style="solid",shape="box"];769 -> 2856[label="",style="solid", color="burlywood", weight=9]; 2856 -> 794[label="",style="solid", color="burlywood", weight=3]; 2857[label="vwx71/True",fontsize=10,color="white",style="solid",shape="box"];769 -> 2857[label="",style="solid", color="burlywood", weight=9]; 2857 -> 795[label="",style="solid", color="burlywood", weight=3]; 304[label="compare vwx30 vwx40",fontsize=16,color="blue",shape="box"];2858[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 387[label="",style="solid", color="blue", weight=3]; 2859[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 388[label="",style="solid", color="blue", weight=3]; 2860[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 389[label="",style="solid", color="blue", weight=3]; 2861[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 390[label="",style="solid", color="blue", weight=3]; 2862[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 391[label="",style="solid", color="blue", weight=3]; 2863[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 392[label="",style="solid", color="blue", weight=3]; 2864[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 393[label="",style="solid", color="blue", weight=3]; 2865[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 394[label="",style="solid", color="blue", weight=3]; 2866[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 395[label="",style="solid", color="blue", weight=3]; 2867[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 396[label="",style="solid", color="blue", weight=3]; 2868[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 397[label="",style="solid", color="blue", weight=3]; 2869[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 398[label="",style="solid", color="blue", weight=3]; 2870[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 399[label="",style="solid", color="blue", weight=3]; 2871[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];304 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 400[label="",style="solid", color="blue", weight=3]; 305[label="vwx8",fontsize=16,color="green",shape="box"];303[label="primCompAux0 vwx23 vwx24",fontsize=16,color="burlywood",shape="triangle"];2872[label="vwx24/LT",fontsize=10,color="white",style="solid",shape="box"];303 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 401[label="",style="solid", color="burlywood", weight=3]; 2873[label="vwx24/EQ",fontsize=10,color="white",style="solid",shape="box"];303 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 402[label="",style="solid", color="burlywood", weight=3]; 2874[label="vwx24/GT",fontsize=10,color="white",style="solid",shape="box"];303 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 403[label="",style="solid", color="burlywood", weight=3]; 306 -> 106[label="",style="dashed", color="red", weight=0]; 306[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];306 -> 404[label="",style="dashed", color="magenta", weight=3]; 306 -> 405[label="",style="dashed", color="magenta", weight=3]; 307 -> 106[label="",style="dashed", color="red", weight=0]; 307[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];307 -> 406[label="",style="dashed", color="magenta", weight=3]; 307 -> 407[label="",style="dashed", color="magenta", weight=3]; 308 -> 106[label="",style="dashed", color="red", weight=0]; 308[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];308 -> 408[label="",style="dashed", color="magenta", weight=3]; 308 -> 409[label="",style="dashed", color="magenta", weight=3]; 309 -> 106[label="",style="dashed", color="red", weight=0]; 309[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];309 -> 410[label="",style="dashed", color="magenta", weight=3]; 309 -> 411[label="",style="dashed", color="magenta", weight=3]; 310[label="EQ",fontsize=16,color="green",shape="box"];311[label="compare1 Nothing (Just vwx40) (Nothing <= Just vwx40)",fontsize=16,color="black",shape="box"];311 -> 412[label="",style="solid", color="black", weight=3]; 312[label="compare1 (Just vwx30) Nothing (Just vwx30 <= Nothing)",fontsize=16,color="black",shape="box"];312 -> 413[label="",style="solid", color="black", weight=3]; 314[label="vwx30",fontsize=16,color="green",shape="box"];315[label="vwx40",fontsize=16,color="green",shape="box"];316[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2875[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 414[label="",style="solid", color="blue", weight=3]; 2876[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 415[label="",style="solid", color="blue", weight=3]; 2877[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 416[label="",style="solid", color="blue", weight=3]; 2878[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 417[label="",style="solid", color="blue", weight=3]; 2879[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 418[label="",style="solid", color="blue", weight=3]; 2880[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 419[label="",style="solid", color="blue", weight=3]; 2881[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 420[label="",style="solid", color="blue", weight=3]; 2882[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 421[label="",style="solid", color="blue", weight=3]; 2883[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 422[label="",style="solid", color="blue", weight=3]; 2884[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 423[label="",style="solid", color="blue", weight=3]; 2885[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 424[label="",style="solid", color="blue", weight=3]; 2886[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 425[label="",style="solid", color="blue", weight=3]; 2887[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 426[label="",style="solid", color="blue", weight=3]; 2888[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];316 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 427[label="",style="solid", color="blue", weight=3]; 313[label="compare2 (Just vwx29) (Just vwx30) vwx31",fontsize=16,color="burlywood",shape="triangle"];2889[label="vwx31/False",fontsize=10,color="white",style="solid",shape="box"];313 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 428[label="",style="solid", color="burlywood", weight=3]; 2890[label="vwx31/True",fontsize=10,color="white",style="solid",shape="box"];313 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 429[label="",style="solid", color="burlywood", weight=3]; 317[label="EQ",fontsize=16,color="green",shape="box"];318[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];318 -> 430[label="",style="solid", color="black", weight=3]; 319[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];319 -> 431[label="",style="solid", color="black", weight=3]; 320[label="EQ",fontsize=16,color="green",shape="box"];322[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2891[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 432[label="",style="solid", color="blue", weight=3]; 2892[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 433[label="",style="solid", color="blue", weight=3]; 2893[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 434[label="",style="solid", color="blue", weight=3]; 2894[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 435[label="",style="solid", color="blue", weight=3]; 2895[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 436[label="",style="solid", color="blue", weight=3]; 2896[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 437[label="",style="solid", color="blue", weight=3]; 2897[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 438[label="",style="solid", color="blue", weight=3]; 2898[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 439[label="",style="solid", color="blue", weight=3]; 2899[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2899[label="",style="solid", color="blue", weight=9]; 2899 -> 440[label="",style="solid", color="blue", weight=3]; 2900[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2900[label="",style="solid", color="blue", weight=9]; 2900 -> 441[label="",style="solid", color="blue", weight=3]; 2901[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2901[label="",style="solid", color="blue", weight=9]; 2901 -> 442[label="",style="solid", color="blue", weight=3]; 2902[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2902[label="",style="solid", color="blue", weight=9]; 2902 -> 443[label="",style="solid", color="blue", weight=3]; 2903[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2903[label="",style="solid", color="blue", weight=9]; 2903 -> 444[label="",style="solid", color="blue", weight=3]; 2904[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];322 -> 2904[label="",style="solid", color="blue", weight=9]; 2904 -> 445[label="",style="solid", color="blue", weight=3]; 323[label="vwx40",fontsize=16,color="green",shape="box"];324[label="vwx30",fontsize=16,color="green",shape="box"];321[label="compare2 (Left vwx36) (Left vwx37) vwx38",fontsize=16,color="burlywood",shape="triangle"];2905[label="vwx38/False",fontsize=10,color="white",style="solid",shape="box"];321 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 446[label="",style="solid", color="burlywood", weight=3]; 2906[label="vwx38/True",fontsize=10,color="white",style="solid",shape="box"];321 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 447[label="",style="solid", color="burlywood", weight=3]; 325[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40)",fontsize=16,color="black",shape="box"];325 -> 448[label="",style="solid", color="black", weight=3]; 326[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40)",fontsize=16,color="black",shape="box"];326 -> 449[label="",style="solid", color="black", weight=3]; 328[label="vwx30",fontsize=16,color="green",shape="box"];329[label="vwx40",fontsize=16,color="green",shape="box"];330[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2907[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2907[label="",style="solid", color="blue", weight=9]; 2907 -> 450[label="",style="solid", color="blue", weight=3]; 2908[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2908[label="",style="solid", color="blue", weight=9]; 2908 -> 451[label="",style="solid", color="blue", weight=3]; 2909[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 452[label="",style="solid", color="blue", weight=3]; 2910[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 453[label="",style="solid", color="blue", weight=3]; 2911[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 454[label="",style="solid", color="blue", weight=3]; 2912[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 455[label="",style="solid", color="blue", weight=3]; 2913[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 456[label="",style="solid", color="blue", weight=3]; 2914[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 457[label="",style="solid", color="blue", weight=3]; 2915[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 458[label="",style="solid", color="blue", weight=3]; 2916[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 459[label="",style="solid", color="blue", weight=3]; 2917[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 460[label="",style="solid", color="blue", weight=3]; 2918[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 461[label="",style="solid", color="blue", weight=3]; 2919[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 462[label="",style="solid", color="blue", weight=3]; 2920[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];330 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 463[label="",style="solid", color="blue", weight=3]; 327[label="compare2 (Right vwx43) (Right vwx44) vwx45",fontsize=16,color="burlywood",shape="triangle"];2921[label="vwx45/False",fontsize=10,color="white",style="solid",shape="box"];327 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 464[label="",style="solid", color="burlywood", weight=3]; 2922[label="vwx45/True",fontsize=10,color="white",style="solid",shape="box"];327 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 465[label="",style="solid", color="burlywood", weight=3]; 820[label="vwx30",fontsize=16,color="green",shape="box"];821[label="vwx32",fontsize=16,color="green",shape="box"];822[label="vwx41",fontsize=16,color="green",shape="box"];823[label="vwx42",fontsize=16,color="green",shape="box"];824 -> 851[label="",style="dashed", color="red", weight=0]; 824[label="vwx30 == vwx40 && vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];824 -> 854[label="",style="dashed", color="magenta", weight=3]; 824 -> 855[label="",style="dashed", color="magenta", weight=3]; 825[label="vwx31",fontsize=16,color="green",shape="box"];826[label="vwx40",fontsize=16,color="green",shape="box"];819[label="compare2 (vwx54,vwx55,vwx56) (vwx57,vwx58,vwx59) vwx79",fontsize=16,color="burlywood",shape="triangle"];2923[label="vwx79/False",fontsize=10,color="white",style="solid",shape="box"];819 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 835[label="",style="solid", color="burlywood", weight=3]; 2924[label="vwx79/True",fontsize=10,color="white",style="solid",shape="box"];819 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 836[label="",style="solid", color="burlywood", weight=3]; 339[label="primCmpNat (Succ vwx300) (Succ vwx400)",fontsize=16,color="black",shape="box"];339 -> 482[label="",style="solid", color="black", weight=3]; 340[label="primCmpNat (Succ vwx300) Zero",fontsize=16,color="black",shape="box"];340 -> 483[label="",style="solid", color="black", weight=3]; 341[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="black",shape="box"];341 -> 484[label="",style="solid", color="black", weight=3]; 342[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];342 -> 485[label="",style="solid", color="black", weight=3]; 343[label="EQ",fontsize=16,color="green",shape="box"];344[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];344 -> 486[label="",style="solid", color="black", weight=3]; 345[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];345 -> 487[label="",style="solid", color="black", weight=3]; 346[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];346 -> 488[label="",style="solid", color="black", weight=3]; 347[label="EQ",fontsize=16,color="green",shape="box"];348[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];348 -> 489[label="",style="solid", color="black", weight=3]; 349[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];349 -> 490[label="",style="solid", color="black", weight=3]; 350[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];350 -> 491[label="",style="solid", color="black", weight=3]; 351[label="EQ",fontsize=16,color="green",shape="box"];352[label="vwx40",fontsize=16,color="green",shape="box"];353[label="Succ vwx300",fontsize=16,color="green",shape="box"];354 -> 219[label="",style="dashed", color="red", weight=0]; 354[label="primCmpNat Zero (Succ vwx400)",fontsize=16,color="magenta"];354 -> 492[label="",style="dashed", color="magenta", weight=3]; 354 -> 493[label="",style="dashed", color="magenta", weight=3]; 355[label="EQ",fontsize=16,color="green",shape="box"];356[label="GT",fontsize=16,color="green",shape="box"];357[label="EQ",fontsize=16,color="green",shape="box"];358[label="Succ vwx300",fontsize=16,color="green",shape="box"];359[label="vwx40",fontsize=16,color="green",shape="box"];360[label="LT",fontsize=16,color="green",shape="box"];361[label="EQ",fontsize=16,color="green",shape="box"];362 -> 219[label="",style="dashed", color="red", weight=0]; 362[label="primCmpNat (Succ vwx400) Zero",fontsize=16,color="magenta"];362 -> 494[label="",style="dashed", color="magenta", weight=3]; 362 -> 495[label="",style="dashed", color="magenta", weight=3]; 363[label="EQ",fontsize=16,color="green",shape="box"];364 -> 106[label="",style="dashed", color="red", weight=0]; 364[label="compare (vwx30 * Pos vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];364 -> 496[label="",style="dashed", color="magenta", weight=3]; 364 -> 497[label="",style="dashed", color="magenta", weight=3]; 365 -> 106[label="",style="dashed", color="red", weight=0]; 365[label="compare (vwx30 * Pos vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];365 -> 498[label="",style="dashed", color="magenta", weight=3]; 365 -> 499[label="",style="dashed", color="magenta", weight=3]; 366 -> 106[label="",style="dashed", color="red", weight=0]; 366[label="compare (vwx30 * Neg vwx410) (Pos vwx310 * vwx40)",fontsize=16,color="magenta"];366 -> 500[label="",style="dashed", color="magenta", weight=3]; 366 -> 501[label="",style="dashed", color="magenta", weight=3]; 367 -> 106[label="",style="dashed", color="red", weight=0]; 367[label="compare (vwx30 * Neg vwx410) (Neg vwx310 * vwx40)",fontsize=16,color="magenta"];367 -> 502[label="",style="dashed", color="magenta", weight=3]; 367 -> 503[label="",style="dashed", color="magenta", weight=3]; 368[label="Integer vwx300 * Integer vwx410",fontsize=16,color="black",shape="box"];368 -> 504[label="",style="solid", color="black", weight=3]; 369[label="primMulInt (Pos vwx300) vwx41",fontsize=16,color="burlywood",shape="box"];2925[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];369 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 505[label="",style="solid", color="burlywood", weight=3]; 2926[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];369 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 506[label="",style="solid", color="burlywood", weight=3]; 370[label="primMulInt (Neg vwx300) vwx41",fontsize=16,color="burlywood",shape="box"];2927[label="vwx41/Pos vwx410",fontsize=10,color="white",style="solid",shape="box"];370 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 507[label="",style="solid", color="burlywood", weight=3]; 2928[label="vwx41/Neg vwx410",fontsize=10,color="white",style="solid",shape="box"];370 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 508[label="",style="solid", color="burlywood", weight=3]; 852[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2929[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2929[label="",style="solid", color="blue", weight=9]; 2929 -> 860[label="",style="solid", color="blue", weight=3]; 2930[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2930[label="",style="solid", color="blue", weight=9]; 2930 -> 861[label="",style="solid", color="blue", weight=3]; 2931[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 862[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 863[label="",style="solid", color="blue", weight=3]; 2933[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 864[label="",style="solid", color="blue", weight=3]; 2934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 865[label="",style="solid", color="blue", weight=3]; 2935[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 866[label="",style="solid", color="blue", weight=3]; 2936[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 867[label="",style="solid", color="blue", weight=3]; 2937[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 868[label="",style="solid", color="blue", weight=3]; 2938[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 869[label="",style="solid", color="blue", weight=3]; 2939[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 870[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 871[label="",style="solid", color="blue", weight=3]; 2941[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 872[label="",style="solid", color="blue", weight=3]; 2942[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 873[label="",style="solid", color="blue", weight=3]; 853[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];2943[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 874[label="",style="solid", color="blue", weight=3]; 2944[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 875[label="",style="solid", color="blue", weight=3]; 2945[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 876[label="",style="solid", color="blue", weight=3]; 2946[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 877[label="",style="solid", color="blue", weight=3]; 2947[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 878[label="",style="solid", color="blue", weight=3]; 2948[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 879[label="",style="solid", color="blue", weight=3]; 2949[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 880[label="",style="solid", color="blue", weight=3]; 2950[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 881[label="",style="solid", color="blue", weight=3]; 2951[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 882[label="",style="solid", color="blue", weight=3]; 2952[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 883[label="",style="solid", color="blue", weight=3]; 2953[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 884[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 885[label="",style="solid", color="blue", weight=3]; 2955[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 886[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];853 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 887[label="",style="solid", color="blue", weight=3]; 851[label="vwx84 && vwx85",fontsize=16,color="burlywood",shape="triangle"];2957[label="vwx84/False",fontsize=10,color="white",style="solid",shape="box"];851 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 888[label="",style="solid", color="burlywood", weight=3]; 2958[label="vwx84/True",fontsize=10,color="white",style="solid",shape="box"];851 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 889[label="",style="solid", color="burlywood", weight=3]; 794[label="compare2 (vwx67,vwx68) (vwx69,vwx70) False",fontsize=16,color="black",shape="box"];794 -> 890[label="",style="solid", color="black", weight=3]; 795[label="compare2 (vwx67,vwx68) (vwx69,vwx70) True",fontsize=16,color="black",shape="box"];795 -> 891[label="",style="solid", color="black", weight=3]; 387 -> 94[label="",style="dashed", color="red", weight=0]; 387[label="compare vwx30 vwx40",fontsize=16,color="magenta"];387 -> 531[label="",style="dashed", color="magenta", weight=3]; 387 -> 532[label="",style="dashed", color="magenta", weight=3]; 388 -> 95[label="",style="dashed", color="red", weight=0]; 388[label="compare vwx30 vwx40",fontsize=16,color="magenta"];388 -> 533[label="",style="dashed", color="magenta", weight=3]; 388 -> 534[label="",style="dashed", color="magenta", weight=3]; 389 -> 96[label="",style="dashed", color="red", weight=0]; 389[label="compare vwx30 vwx40",fontsize=16,color="magenta"];389 -> 535[label="",style="dashed", color="magenta", weight=3]; 389 -> 536[label="",style="dashed", color="magenta", weight=3]; 390 -> 97[label="",style="dashed", color="red", weight=0]; 390[label="compare vwx30 vwx40",fontsize=16,color="magenta"];390 -> 537[label="",style="dashed", color="magenta", weight=3]; 390 -> 538[label="",style="dashed", color="magenta", weight=3]; 391 -> 98[label="",style="dashed", color="red", weight=0]; 391[label="compare vwx30 vwx40",fontsize=16,color="magenta"];391 -> 539[label="",style="dashed", color="magenta", weight=3]; 391 -> 540[label="",style="dashed", color="magenta", weight=3]; 392 -> 99[label="",style="dashed", color="red", weight=0]; 392[label="compare vwx30 vwx40",fontsize=16,color="magenta"];392 -> 541[label="",style="dashed", color="magenta", weight=3]; 392 -> 542[label="",style="dashed", color="magenta", weight=3]; 393 -> 100[label="",style="dashed", color="red", weight=0]; 393[label="compare vwx30 vwx40",fontsize=16,color="magenta"];393 -> 543[label="",style="dashed", color="magenta", weight=3]; 393 -> 544[label="",style="dashed", color="magenta", weight=3]; 394 -> 101[label="",style="dashed", color="red", weight=0]; 394[label="compare vwx30 vwx40",fontsize=16,color="magenta"];394 -> 545[label="",style="dashed", color="magenta", weight=3]; 394 -> 546[label="",style="dashed", color="magenta", weight=3]; 395 -> 102[label="",style="dashed", color="red", weight=0]; 395[label="compare vwx30 vwx40",fontsize=16,color="magenta"];395 -> 547[label="",style="dashed", color="magenta", weight=3]; 395 -> 548[label="",style="dashed", color="magenta", weight=3]; 396 -> 103[label="",style="dashed", color="red", weight=0]; 396[label="compare vwx30 vwx40",fontsize=16,color="magenta"];396 -> 549[label="",style="dashed", color="magenta", weight=3]; 396 -> 550[label="",style="dashed", color="magenta", weight=3]; 397 -> 104[label="",style="dashed", color="red", weight=0]; 397[label="compare vwx30 vwx40",fontsize=16,color="magenta"];397 -> 551[label="",style="dashed", color="magenta", weight=3]; 397 -> 552[label="",style="dashed", color="magenta", weight=3]; 398 -> 105[label="",style="dashed", color="red", weight=0]; 398[label="compare vwx30 vwx40",fontsize=16,color="magenta"];398 -> 553[label="",style="dashed", color="magenta", weight=3]; 398 -> 554[label="",style="dashed", color="magenta", weight=3]; 399 -> 106[label="",style="dashed", color="red", weight=0]; 399[label="compare vwx30 vwx40",fontsize=16,color="magenta"];399 -> 555[label="",style="dashed", color="magenta", weight=3]; 399 -> 556[label="",style="dashed", color="magenta", weight=3]; 400 -> 107[label="",style="dashed", color="red", weight=0]; 400[label="compare vwx30 vwx40",fontsize=16,color="magenta"];400 -> 557[label="",style="dashed", color="magenta", weight=3]; 400 -> 558[label="",style="dashed", color="magenta", weight=3]; 401[label="primCompAux0 vwx23 LT",fontsize=16,color="black",shape="box"];401 -> 559[label="",style="solid", color="black", weight=3]; 402[label="primCompAux0 vwx23 EQ",fontsize=16,color="black",shape="box"];402 -> 560[label="",style="solid", color="black", weight=3]; 403[label="primCompAux0 vwx23 GT",fontsize=16,color="black",shape="box"];403 -> 561[label="",style="solid", color="black", weight=3]; 404 -> 241[label="",style="dashed", color="red", weight=0]; 404[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];404 -> 562[label="",style="dashed", color="magenta", weight=3]; 404 -> 563[label="",style="dashed", color="magenta", weight=3]; 405 -> 241[label="",style="dashed", color="red", weight=0]; 405[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];405 -> 564[label="",style="dashed", color="magenta", weight=3]; 405 -> 565[label="",style="dashed", color="magenta", weight=3]; 406 -> 241[label="",style="dashed", color="red", weight=0]; 406[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];406 -> 566[label="",style="dashed", color="magenta", weight=3]; 406 -> 567[label="",style="dashed", color="magenta", weight=3]; 407 -> 241[label="",style="dashed", color="red", weight=0]; 407[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];407 -> 568[label="",style="dashed", color="magenta", weight=3]; 407 -> 569[label="",style="dashed", color="magenta", weight=3]; 408 -> 241[label="",style="dashed", color="red", weight=0]; 408[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];408 -> 570[label="",style="dashed", color="magenta", weight=3]; 408 -> 571[label="",style="dashed", color="magenta", weight=3]; 409 -> 241[label="",style="dashed", color="red", weight=0]; 409[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];409 -> 572[label="",style="dashed", color="magenta", weight=3]; 409 -> 573[label="",style="dashed", color="magenta", weight=3]; 410 -> 241[label="",style="dashed", color="red", weight=0]; 410[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];410 -> 574[label="",style="dashed", color="magenta", weight=3]; 410 -> 575[label="",style="dashed", color="magenta", weight=3]; 411 -> 241[label="",style="dashed", color="red", weight=0]; 411[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];411 -> 576[label="",style="dashed", color="magenta", weight=3]; 411 -> 577[label="",style="dashed", color="magenta", weight=3]; 412[label="compare1 Nothing (Just vwx40) True",fontsize=16,color="black",shape="box"];412 -> 578[label="",style="solid", color="black", weight=3]; 413[label="compare1 (Just vwx30) Nothing False",fontsize=16,color="black",shape="box"];413 -> 579[label="",style="solid", color="black", weight=3]; 414 -> 371[label="",style="dashed", color="red", weight=0]; 414[label="vwx30 == vwx40",fontsize=16,color="magenta"];414 -> 580[label="",style="dashed", color="magenta", weight=3]; 414 -> 581[label="",style="dashed", color="magenta", weight=3]; 415 -> 372[label="",style="dashed", color="red", weight=0]; 415[label="vwx30 == vwx40",fontsize=16,color="magenta"];415 -> 582[label="",style="dashed", color="magenta", weight=3]; 415 -> 583[label="",style="dashed", color="magenta", weight=3]; 416 -> 373[label="",style="dashed", color="red", weight=0]; 416[label="vwx30 == vwx40",fontsize=16,color="magenta"];416 -> 584[label="",style="dashed", color="magenta", weight=3]; 416 -> 585[label="",style="dashed", color="magenta", weight=3]; 417 -> 374[label="",style="dashed", color="red", weight=0]; 417[label="vwx30 == vwx40",fontsize=16,color="magenta"];417 -> 586[label="",style="dashed", color="magenta", weight=3]; 417 -> 587[label="",style="dashed", color="magenta", weight=3]; 418 -> 375[label="",style="dashed", color="red", weight=0]; 418[label="vwx30 == vwx40",fontsize=16,color="magenta"];418 -> 588[label="",style="dashed", color="magenta", weight=3]; 418 -> 589[label="",style="dashed", color="magenta", weight=3]; 419 -> 376[label="",style="dashed", color="red", weight=0]; 419[label="vwx30 == vwx40",fontsize=16,color="magenta"];419 -> 590[label="",style="dashed", color="magenta", weight=3]; 419 -> 591[label="",style="dashed", color="magenta", weight=3]; 420 -> 377[label="",style="dashed", color="red", weight=0]; 420[label="vwx30 == vwx40",fontsize=16,color="magenta"];420 -> 592[label="",style="dashed", color="magenta", weight=3]; 420 -> 593[label="",style="dashed", color="magenta", weight=3]; 421 -> 378[label="",style="dashed", color="red", weight=0]; 421[label="vwx30 == vwx40",fontsize=16,color="magenta"];421 -> 594[label="",style="dashed", color="magenta", weight=3]; 421 -> 595[label="",style="dashed", color="magenta", weight=3]; 422 -> 379[label="",style="dashed", color="red", weight=0]; 422[label="vwx30 == vwx40",fontsize=16,color="magenta"];422 -> 596[label="",style="dashed", color="magenta", weight=3]; 422 -> 597[label="",style="dashed", color="magenta", weight=3]; 423 -> 380[label="",style="dashed", color="red", weight=0]; 423[label="vwx30 == vwx40",fontsize=16,color="magenta"];423 -> 598[label="",style="dashed", color="magenta", weight=3]; 423 -> 599[label="",style="dashed", color="magenta", weight=3]; 424 -> 381[label="",style="dashed", color="red", weight=0]; 424[label="vwx30 == vwx40",fontsize=16,color="magenta"];424 -> 600[label="",style="dashed", color="magenta", weight=3]; 424 -> 601[label="",style="dashed", color="magenta", weight=3]; 425 -> 382[label="",style="dashed", color="red", weight=0]; 425[label="vwx30 == vwx40",fontsize=16,color="magenta"];425 -> 602[label="",style="dashed", color="magenta", weight=3]; 425 -> 603[label="",style="dashed", color="magenta", weight=3]; 426 -> 383[label="",style="dashed", color="red", weight=0]; 426[label="vwx30 == vwx40",fontsize=16,color="magenta"];426 -> 604[label="",style="dashed", color="magenta", weight=3]; 426 -> 605[label="",style="dashed", color="magenta", weight=3]; 427 -> 384[label="",style="dashed", color="red", weight=0]; 427[label="vwx30 == vwx40",fontsize=16,color="magenta"];427 -> 606[label="",style="dashed", color="magenta", weight=3]; 427 -> 607[label="",style="dashed", color="magenta", weight=3]; 428[label="compare2 (Just vwx29) (Just vwx30) False",fontsize=16,color="black",shape="box"];428 -> 608[label="",style="solid", color="black", weight=3]; 429[label="compare2 (Just vwx29) (Just vwx30) True",fontsize=16,color="black",shape="box"];429 -> 609[label="",style="solid", color="black", weight=3]; 430[label="compare1 False True True",fontsize=16,color="black",shape="box"];430 -> 610[label="",style="solid", color="black", weight=3]; 431[label="compare1 True False False",fontsize=16,color="black",shape="box"];431 -> 611[label="",style="solid", color="black", weight=3]; 432 -> 371[label="",style="dashed", color="red", weight=0]; 432[label="vwx30 == vwx40",fontsize=16,color="magenta"];432 -> 612[label="",style="dashed", color="magenta", weight=3]; 432 -> 613[label="",style="dashed", color="magenta", weight=3]; 433 -> 372[label="",style="dashed", color="red", weight=0]; 433[label="vwx30 == vwx40",fontsize=16,color="magenta"];433 -> 614[label="",style="dashed", color="magenta", weight=3]; 433 -> 615[label="",style="dashed", color="magenta", weight=3]; 434 -> 373[label="",style="dashed", color="red", weight=0]; 434[label="vwx30 == vwx40",fontsize=16,color="magenta"];434 -> 616[label="",style="dashed", color="magenta", weight=3]; 434 -> 617[label="",style="dashed", color="magenta", weight=3]; 435 -> 374[label="",style="dashed", color="red", weight=0]; 435[label="vwx30 == vwx40",fontsize=16,color="magenta"];435 -> 618[label="",style="dashed", color="magenta", weight=3]; 435 -> 619[label="",style="dashed", color="magenta", weight=3]; 436 -> 375[label="",style="dashed", color="red", weight=0]; 436[label="vwx30 == vwx40",fontsize=16,color="magenta"];436 -> 620[label="",style="dashed", color="magenta", weight=3]; 436 -> 621[label="",style="dashed", color="magenta", weight=3]; 437 -> 376[label="",style="dashed", color="red", weight=0]; 437[label="vwx30 == vwx40",fontsize=16,color="magenta"];437 -> 622[label="",style="dashed", color="magenta", weight=3]; 437 -> 623[label="",style="dashed", color="magenta", weight=3]; 438 -> 377[label="",style="dashed", color="red", weight=0]; 438[label="vwx30 == vwx40",fontsize=16,color="magenta"];438 -> 624[label="",style="dashed", color="magenta", weight=3]; 438 -> 625[label="",style="dashed", color="magenta", weight=3]; 439 -> 378[label="",style="dashed", color="red", weight=0]; 439[label="vwx30 == vwx40",fontsize=16,color="magenta"];439 -> 626[label="",style="dashed", color="magenta", weight=3]; 439 -> 627[label="",style="dashed", color="magenta", weight=3]; 440 -> 379[label="",style="dashed", color="red", weight=0]; 440[label="vwx30 == vwx40",fontsize=16,color="magenta"];440 -> 628[label="",style="dashed", color="magenta", weight=3]; 440 -> 629[label="",style="dashed", color="magenta", weight=3]; 441 -> 380[label="",style="dashed", color="red", weight=0]; 441[label="vwx30 == vwx40",fontsize=16,color="magenta"];441 -> 630[label="",style="dashed", color="magenta", weight=3]; 441 -> 631[label="",style="dashed", color="magenta", weight=3]; 442 -> 381[label="",style="dashed", color="red", weight=0]; 442[label="vwx30 == vwx40",fontsize=16,color="magenta"];442 -> 632[label="",style="dashed", color="magenta", weight=3]; 442 -> 633[label="",style="dashed", color="magenta", weight=3]; 443 -> 382[label="",style="dashed", color="red", weight=0]; 443[label="vwx30 == vwx40",fontsize=16,color="magenta"];443 -> 634[label="",style="dashed", color="magenta", weight=3]; 443 -> 635[label="",style="dashed", color="magenta", weight=3]; 444 -> 383[label="",style="dashed", color="red", weight=0]; 444[label="vwx30 == vwx40",fontsize=16,color="magenta"];444 -> 636[label="",style="dashed", color="magenta", weight=3]; 444 -> 637[label="",style="dashed", color="magenta", weight=3]; 445 -> 384[label="",style="dashed", color="red", weight=0]; 445[label="vwx30 == vwx40",fontsize=16,color="magenta"];445 -> 638[label="",style="dashed", color="magenta", weight=3]; 445 -> 639[label="",style="dashed", color="magenta", weight=3]; 446[label="compare2 (Left vwx36) (Left vwx37) False",fontsize=16,color="black",shape="box"];446 -> 640[label="",style="solid", color="black", weight=3]; 447[label="compare2 (Left vwx36) (Left vwx37) True",fontsize=16,color="black",shape="box"];447 -> 641[label="",style="solid", color="black", weight=3]; 448[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="black",shape="box"];448 -> 642[label="",style="solid", color="black", weight=3]; 449[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="black",shape="box"];449 -> 643[label="",style="solid", color="black", weight=3]; 450 -> 371[label="",style="dashed", color="red", weight=0]; 450[label="vwx30 == vwx40",fontsize=16,color="magenta"];450 -> 644[label="",style="dashed", color="magenta", weight=3]; 450 -> 645[label="",style="dashed", color="magenta", weight=3]; 451 -> 372[label="",style="dashed", color="red", weight=0]; 451[label="vwx30 == vwx40",fontsize=16,color="magenta"];451 -> 646[label="",style="dashed", color="magenta", weight=3]; 451 -> 647[label="",style="dashed", color="magenta", weight=3]; 452 -> 373[label="",style="dashed", color="red", weight=0]; 452[label="vwx30 == vwx40",fontsize=16,color="magenta"];452 -> 648[label="",style="dashed", color="magenta", weight=3]; 452 -> 649[label="",style="dashed", color="magenta", weight=3]; 453 -> 374[label="",style="dashed", color="red", weight=0]; 453[label="vwx30 == vwx40",fontsize=16,color="magenta"];453 -> 650[label="",style="dashed", color="magenta", weight=3]; 453 -> 651[label="",style="dashed", color="magenta", weight=3]; 454 -> 375[label="",style="dashed", color="red", weight=0]; 454[label="vwx30 == vwx40",fontsize=16,color="magenta"];454 -> 652[label="",style="dashed", color="magenta", weight=3]; 454 -> 653[label="",style="dashed", color="magenta", weight=3]; 455 -> 376[label="",style="dashed", color="red", weight=0]; 455[label="vwx30 == vwx40",fontsize=16,color="magenta"];455 -> 654[label="",style="dashed", color="magenta", weight=3]; 455 -> 655[label="",style="dashed", color="magenta", weight=3]; 456 -> 377[label="",style="dashed", color="red", weight=0]; 456[label="vwx30 == vwx40",fontsize=16,color="magenta"];456 -> 656[label="",style="dashed", color="magenta", weight=3]; 456 -> 657[label="",style="dashed", color="magenta", weight=3]; 457 -> 378[label="",style="dashed", color="red", weight=0]; 457[label="vwx30 == vwx40",fontsize=16,color="magenta"];457 -> 658[label="",style="dashed", color="magenta", weight=3]; 457 -> 659[label="",style="dashed", color="magenta", weight=3]; 458 -> 379[label="",style="dashed", color="red", weight=0]; 458[label="vwx30 == vwx40",fontsize=16,color="magenta"];458 -> 660[label="",style="dashed", color="magenta", weight=3]; 458 -> 661[label="",style="dashed", color="magenta", weight=3]; 459 -> 380[label="",style="dashed", color="red", weight=0]; 459[label="vwx30 == vwx40",fontsize=16,color="magenta"];459 -> 662[label="",style="dashed", color="magenta", weight=3]; 459 -> 663[label="",style="dashed", color="magenta", weight=3]; 460 -> 381[label="",style="dashed", color="red", weight=0]; 460[label="vwx30 == vwx40",fontsize=16,color="magenta"];460 -> 664[label="",style="dashed", color="magenta", weight=3]; 460 -> 665[label="",style="dashed", color="magenta", weight=3]; 461 -> 382[label="",style="dashed", color="red", weight=0]; 461[label="vwx30 == vwx40",fontsize=16,color="magenta"];461 -> 666[label="",style="dashed", color="magenta", weight=3]; 461 -> 667[label="",style="dashed", color="magenta", weight=3]; 462 -> 383[label="",style="dashed", color="red", weight=0]; 462[label="vwx30 == vwx40",fontsize=16,color="magenta"];462 -> 668[label="",style="dashed", color="magenta", weight=3]; 462 -> 669[label="",style="dashed", color="magenta", weight=3]; 463 -> 384[label="",style="dashed", color="red", weight=0]; 463[label="vwx30 == vwx40",fontsize=16,color="magenta"];463 -> 670[label="",style="dashed", color="magenta", weight=3]; 463 -> 671[label="",style="dashed", color="magenta", weight=3]; 464[label="compare2 (Right vwx43) (Right vwx44) False",fontsize=16,color="black",shape="box"];464 -> 672[label="",style="solid", color="black", weight=3]; 465[label="compare2 (Right vwx43) (Right vwx44) True",fontsize=16,color="black",shape="box"];465 -> 673[label="",style="solid", color="black", weight=3]; 854[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2959[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 892[label="",style="solid", color="blue", weight=3]; 2960[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 893[label="",style="solid", color="blue", weight=3]; 2961[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 894[label="",style="solid", color="blue", weight=3]; 2962[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 895[label="",style="solid", color="blue", weight=3]; 2963[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 896[label="",style="solid", color="blue", weight=3]; 2964[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 897[label="",style="solid", color="blue", weight=3]; 2965[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 898[label="",style="solid", color="blue", weight=3]; 2966[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 899[label="",style="solid", color="blue", weight=3]; 2967[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 900[label="",style="solid", color="blue", weight=3]; 2968[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 901[label="",style="solid", color="blue", weight=3]; 2969[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 902[label="",style="solid", color="blue", weight=3]; 2970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 903[label="",style="solid", color="blue", weight=3]; 2971[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 904[label="",style="solid", color="blue", weight=3]; 2972[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 905[label="",style="solid", color="blue", weight=3]; 855 -> 851[label="",style="dashed", color="red", weight=0]; 855[label="vwx31 == vwx41 && vwx32 == vwx42",fontsize=16,color="magenta"];855 -> 906[label="",style="dashed", color="magenta", weight=3]; 855 -> 907[label="",style="dashed", color="magenta", weight=3]; 835[label="compare2 (vwx54,vwx55,vwx56) (vwx57,vwx58,vwx59) False",fontsize=16,color="black",shape="box"];835 -> 908[label="",style="solid", color="black", weight=3]; 836[label="compare2 (vwx54,vwx55,vwx56) (vwx57,vwx58,vwx59) True",fontsize=16,color="black",shape="box"];836 -> 909[label="",style="solid", color="black", weight=3]; 482 -> 219[label="",style="dashed", color="red", weight=0]; 482[label="primCmpNat vwx300 vwx400",fontsize=16,color="magenta"];482 -> 704[label="",style="dashed", color="magenta", weight=3]; 482 -> 705[label="",style="dashed", color="magenta", weight=3]; 483[label="GT",fontsize=16,color="green",shape="box"];484[label="LT",fontsize=16,color="green",shape="box"];485[label="EQ",fontsize=16,color="green",shape="box"];486[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];486 -> 706[label="",style="solid", color="black", weight=3]; 487[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];487 -> 707[label="",style="solid", color="black", weight=3]; 488[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];488 -> 708[label="",style="solid", color="black", weight=3]; 489[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];489 -> 709[label="",style="solid", color="black", weight=3]; 490[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];490 -> 710[label="",style="solid", color="black", weight=3]; 491[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];491 -> 711[label="",style="solid", color="black", weight=3]; 492[label="Succ vwx400",fontsize=16,color="green",shape="box"];493[label="Zero",fontsize=16,color="green",shape="box"];494[label="Zero",fontsize=16,color="green",shape="box"];495[label="Succ vwx400",fontsize=16,color="green",shape="box"];496 -> 241[label="",style="dashed", color="red", weight=0]; 496[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];496 -> 712[label="",style="dashed", color="magenta", weight=3]; 496 -> 713[label="",style="dashed", color="magenta", weight=3]; 497 -> 241[label="",style="dashed", color="red", weight=0]; 497[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];497 -> 714[label="",style="dashed", color="magenta", weight=3]; 497 -> 715[label="",style="dashed", color="magenta", weight=3]; 498 -> 241[label="",style="dashed", color="red", weight=0]; 498[label="vwx30 * Pos vwx410",fontsize=16,color="magenta"];498 -> 716[label="",style="dashed", color="magenta", weight=3]; 498 -> 717[label="",style="dashed", color="magenta", weight=3]; 499 -> 241[label="",style="dashed", color="red", weight=0]; 499[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];499 -> 718[label="",style="dashed", color="magenta", weight=3]; 499 -> 719[label="",style="dashed", color="magenta", weight=3]; 500 -> 241[label="",style="dashed", color="red", weight=0]; 500[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];500 -> 720[label="",style="dashed", color="magenta", weight=3]; 500 -> 721[label="",style="dashed", color="magenta", weight=3]; 501 -> 241[label="",style="dashed", color="red", weight=0]; 501[label="Pos vwx310 * vwx40",fontsize=16,color="magenta"];501 -> 722[label="",style="dashed", color="magenta", weight=3]; 501 -> 723[label="",style="dashed", color="magenta", weight=3]; 502 -> 241[label="",style="dashed", color="red", weight=0]; 502[label="vwx30 * Neg vwx410",fontsize=16,color="magenta"];502 -> 724[label="",style="dashed", color="magenta", weight=3]; 502 -> 725[label="",style="dashed", color="magenta", weight=3]; 503 -> 241[label="",style="dashed", color="red", weight=0]; 503[label="Neg vwx310 * vwx40",fontsize=16,color="magenta"];503 -> 726[label="",style="dashed", color="magenta", weight=3]; 503 -> 727[label="",style="dashed", color="magenta", weight=3]; 504[label="Integer (primMulInt vwx300 vwx410)",fontsize=16,color="green",shape="box"];504 -> 728[label="",style="dashed", color="green", weight=3]; 505[label="primMulInt (Pos vwx300) (Pos vwx410)",fontsize=16,color="black",shape="box"];505 -> 729[label="",style="solid", color="black", weight=3]; 506[label="primMulInt (Pos vwx300) (Neg vwx410)",fontsize=16,color="black",shape="box"];506 -> 730[label="",style="solid", color="black", weight=3]; 507[label="primMulInt (Neg vwx300) (Pos vwx410)",fontsize=16,color="black",shape="box"];507 -> 731[label="",style="solid", color="black", weight=3]; 508[label="primMulInt (Neg vwx300) (Neg vwx410)",fontsize=16,color="black",shape="box"];508 -> 732[label="",style="solid", color="black", weight=3]; 860 -> 371[label="",style="dashed", color="red", weight=0]; 860[label="vwx30 == vwx40",fontsize=16,color="magenta"];861 -> 372[label="",style="dashed", color="red", weight=0]; 861[label="vwx30 == vwx40",fontsize=16,color="magenta"];862 -> 373[label="",style="dashed", color="red", weight=0]; 862[label="vwx30 == vwx40",fontsize=16,color="magenta"];863 -> 374[label="",style="dashed", color="red", weight=0]; 863[label="vwx30 == vwx40",fontsize=16,color="magenta"];864 -> 375[label="",style="dashed", color="red", weight=0]; 864[label="vwx30 == vwx40",fontsize=16,color="magenta"];865 -> 376[label="",style="dashed", color="red", weight=0]; 865[label="vwx30 == vwx40",fontsize=16,color="magenta"];866 -> 377[label="",style="dashed", color="red", weight=0]; 866[label="vwx30 == vwx40",fontsize=16,color="magenta"];867 -> 378[label="",style="dashed", color="red", weight=0]; 867[label="vwx30 == vwx40",fontsize=16,color="magenta"];868 -> 379[label="",style="dashed", color="red", weight=0]; 868[label="vwx30 == vwx40",fontsize=16,color="magenta"];869 -> 380[label="",style="dashed", color="red", weight=0]; 869[label="vwx30 == vwx40",fontsize=16,color="magenta"];870 -> 381[label="",style="dashed", color="red", weight=0]; 870[label="vwx30 == vwx40",fontsize=16,color="magenta"];871 -> 382[label="",style="dashed", color="red", weight=0]; 871[label="vwx30 == vwx40",fontsize=16,color="magenta"];872 -> 383[label="",style="dashed", color="red", weight=0]; 872[label="vwx30 == vwx40",fontsize=16,color="magenta"];873 -> 384[label="",style="dashed", color="red", weight=0]; 873[label="vwx30 == vwx40",fontsize=16,color="magenta"];874 -> 371[label="",style="dashed", color="red", weight=0]; 874[label="vwx31 == vwx41",fontsize=16,color="magenta"];874 -> 927[label="",style="dashed", color="magenta", weight=3]; 874 -> 928[label="",style="dashed", color="magenta", weight=3]; 875 -> 372[label="",style="dashed", color="red", weight=0]; 875[label="vwx31 == vwx41",fontsize=16,color="magenta"];875 -> 929[label="",style="dashed", color="magenta", weight=3]; 875 -> 930[label="",style="dashed", color="magenta", weight=3]; 876 -> 373[label="",style="dashed", color="red", weight=0]; 876[label="vwx31 == vwx41",fontsize=16,color="magenta"];876 -> 931[label="",style="dashed", color="magenta", weight=3]; 876 -> 932[label="",style="dashed", color="magenta", weight=3]; 877 -> 374[label="",style="dashed", color="red", weight=0]; 877[label="vwx31 == vwx41",fontsize=16,color="magenta"];877 -> 933[label="",style="dashed", color="magenta", weight=3]; 877 -> 934[label="",style="dashed", color="magenta", weight=3]; 878 -> 375[label="",style="dashed", color="red", weight=0]; 878[label="vwx31 == vwx41",fontsize=16,color="magenta"];878 -> 935[label="",style="dashed", color="magenta", weight=3]; 878 -> 936[label="",style="dashed", color="magenta", weight=3]; 879 -> 376[label="",style="dashed", color="red", weight=0]; 879[label="vwx31 == vwx41",fontsize=16,color="magenta"];879 -> 937[label="",style="dashed", color="magenta", weight=3]; 879 -> 938[label="",style="dashed", color="magenta", weight=3]; 880 -> 377[label="",style="dashed", color="red", weight=0]; 880[label="vwx31 == vwx41",fontsize=16,color="magenta"];880 -> 939[label="",style="dashed", color="magenta", weight=3]; 880 -> 940[label="",style="dashed", color="magenta", weight=3]; 881 -> 378[label="",style="dashed", color="red", weight=0]; 881[label="vwx31 == vwx41",fontsize=16,color="magenta"];881 -> 941[label="",style="dashed", color="magenta", weight=3]; 881 -> 942[label="",style="dashed", color="magenta", weight=3]; 882 -> 379[label="",style="dashed", color="red", weight=0]; 882[label="vwx31 == vwx41",fontsize=16,color="magenta"];882 -> 943[label="",style="dashed", color="magenta", weight=3]; 882 -> 944[label="",style="dashed", color="magenta", weight=3]; 883 -> 380[label="",style="dashed", color="red", weight=0]; 883[label="vwx31 == vwx41",fontsize=16,color="magenta"];883 -> 945[label="",style="dashed", color="magenta", weight=3]; 883 -> 946[label="",style="dashed", color="magenta", weight=3]; 884 -> 381[label="",style="dashed", color="red", weight=0]; 884[label="vwx31 == vwx41",fontsize=16,color="magenta"];884 -> 947[label="",style="dashed", color="magenta", weight=3]; 884 -> 948[label="",style="dashed", color="magenta", weight=3]; 885 -> 382[label="",style="dashed", color="red", weight=0]; 885[label="vwx31 == vwx41",fontsize=16,color="magenta"];885 -> 949[label="",style="dashed", color="magenta", weight=3]; 885 -> 950[label="",style="dashed", color="magenta", weight=3]; 886 -> 383[label="",style="dashed", color="red", weight=0]; 886[label="vwx31 == vwx41",fontsize=16,color="magenta"];886 -> 951[label="",style="dashed", color="magenta", weight=3]; 886 -> 952[label="",style="dashed", color="magenta", weight=3]; 887 -> 384[label="",style="dashed", color="red", weight=0]; 887[label="vwx31 == vwx41",fontsize=16,color="magenta"];887 -> 953[label="",style="dashed", color="magenta", weight=3]; 887 -> 954[label="",style="dashed", color="magenta", weight=3]; 888[label="False && vwx85",fontsize=16,color="black",shape="box"];888 -> 955[label="",style="solid", color="black", weight=3]; 889[label="True && vwx85",fontsize=16,color="black",shape="box"];889 -> 956[label="",style="solid", color="black", weight=3]; 890[label="compare1 (vwx67,vwx68) (vwx69,vwx70) ((vwx67,vwx68) <= (vwx69,vwx70))",fontsize=16,color="black",shape="box"];890 -> 957[label="",style="solid", color="black", weight=3]; 891[label="EQ",fontsize=16,color="green",shape="box"];531[label="vwx30",fontsize=16,color="green",shape="box"];532[label="vwx40",fontsize=16,color="green",shape="box"];533[label="vwx30",fontsize=16,color="green",shape="box"];534[label="vwx40",fontsize=16,color="green",shape="box"];535[label="vwx30",fontsize=16,color="green",shape="box"];536[label="vwx40",fontsize=16,color="green",shape="box"];537[label="vwx30",fontsize=16,color="green",shape="box"];538[label="vwx40",fontsize=16,color="green",shape="box"];539[label="vwx30",fontsize=16,color="green",shape="box"];540[label="vwx40",fontsize=16,color="green",shape="box"];541[label="vwx30",fontsize=16,color="green",shape="box"];542[label="vwx40",fontsize=16,color="green",shape="box"];543[label="vwx30",fontsize=16,color="green",shape="box"];544[label="vwx40",fontsize=16,color="green",shape="box"];545[label="vwx30",fontsize=16,color="green",shape="box"];546[label="vwx40",fontsize=16,color="green",shape="box"];547[label="vwx30",fontsize=16,color="green",shape="box"];548[label="vwx40",fontsize=16,color="green",shape="box"];549[label="vwx30",fontsize=16,color="green",shape="box"];550[label="vwx40",fontsize=16,color="green",shape="box"];551[label="vwx30",fontsize=16,color="green",shape="box"];552[label="vwx40",fontsize=16,color="green",shape="box"];553[label="vwx30",fontsize=16,color="green",shape="box"];554[label="vwx40",fontsize=16,color="green",shape="box"];555[label="vwx30",fontsize=16,color="green",shape="box"];556[label="vwx40",fontsize=16,color="green",shape="box"];557[label="vwx30",fontsize=16,color="green",shape="box"];558[label="vwx40",fontsize=16,color="green",shape="box"];559[label="LT",fontsize=16,color="green",shape="box"];560[label="vwx23",fontsize=16,color="green",shape="box"];561[label="GT",fontsize=16,color="green",shape="box"];562[label="Pos vwx410",fontsize=16,color="green",shape="box"];563[label="vwx30",fontsize=16,color="green",shape="box"];564[label="vwx40",fontsize=16,color="green",shape="box"];565[label="Pos vwx310",fontsize=16,color="green",shape="box"];566[label="Pos vwx410",fontsize=16,color="green",shape="box"];567[label="vwx30",fontsize=16,color="green",shape="box"];568[label="vwx40",fontsize=16,color="green",shape="box"];569[label="Neg vwx310",fontsize=16,color="green",shape="box"];570[label="Neg vwx410",fontsize=16,color="green",shape="box"];571[label="vwx30",fontsize=16,color="green",shape="box"];572[label="vwx40",fontsize=16,color="green",shape="box"];573[label="Pos vwx310",fontsize=16,color="green",shape="box"];574[label="Neg vwx410",fontsize=16,color="green",shape="box"];575[label="vwx30",fontsize=16,color="green",shape="box"];576[label="vwx40",fontsize=16,color="green",shape="box"];577[label="Neg vwx310",fontsize=16,color="green",shape="box"];578[label="LT",fontsize=16,color="green",shape="box"];579[label="compare0 (Just vwx30) Nothing otherwise",fontsize=16,color="black",shape="box"];579 -> 812[label="",style="solid", color="black", weight=3]; 580[label="vwx40",fontsize=16,color="green",shape="box"];581[label="vwx30",fontsize=16,color="green",shape="box"];371[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2973[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];371 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 509[label="",style="solid", color="burlywood", weight=3]; 2974[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];371 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 510[label="",style="solid", color="burlywood", weight=3]; 582[label="vwx40",fontsize=16,color="green",shape="box"];583[label="vwx30",fontsize=16,color="green",shape="box"];372[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2975[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];372 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 511[label="",style="solid", color="burlywood", weight=3]; 2976[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];372 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 512[label="",style="solid", color="burlywood", weight=3]; 2977[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];372 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 513[label="",style="solid", color="burlywood", weight=3]; 584[label="vwx40",fontsize=16,color="green",shape="box"];585[label="vwx30",fontsize=16,color="green",shape="box"];373[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2978[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];373 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 514[label="",style="solid", color="burlywood", weight=3]; 586[label="vwx40",fontsize=16,color="green",shape="box"];587[label="vwx30",fontsize=16,color="green",shape="box"];374[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];374 -> 515[label="",style="solid", color="black", weight=3]; 588[label="vwx40",fontsize=16,color="green",shape="box"];589[label="vwx30",fontsize=16,color="green",shape="box"];375[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2979[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];375 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 516[label="",style="solid", color="burlywood", weight=3]; 2980[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];375 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 517[label="",style="solid", color="burlywood", weight=3]; 590[label="vwx40",fontsize=16,color="green",shape="box"];591[label="vwx30",fontsize=16,color="green",shape="box"];376[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2981[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];376 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 518[label="",style="solid", color="burlywood", weight=3]; 2982[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];376 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 519[label="",style="solid", color="burlywood", weight=3]; 592[label="vwx40",fontsize=16,color="green",shape="box"];593[label="vwx30",fontsize=16,color="green",shape="box"];377[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2983[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];377 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 520[label="",style="solid", color="burlywood", weight=3]; 594[label="vwx40",fontsize=16,color="green",shape="box"];595[label="vwx30",fontsize=16,color="green",shape="box"];378[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2984[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];378 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 521[label="",style="solid", color="burlywood", weight=3]; 596[label="vwx40",fontsize=16,color="green",shape="box"];597[label="vwx30",fontsize=16,color="green",shape="box"];379[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2985[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];379 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 522[label="",style="solid", color="burlywood", weight=3]; 598[label="vwx40",fontsize=16,color="green",shape="box"];599[label="vwx30",fontsize=16,color="green",shape="box"];380[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2986[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];380 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 523[label="",style="solid", color="burlywood", weight=3]; 2987[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];380 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 524[label="",style="solid", color="burlywood", weight=3]; 600[label="vwx40",fontsize=16,color="green",shape="box"];601[label="vwx30",fontsize=16,color="green",shape="box"];381[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];381 -> 525[label="",style="solid", color="black", weight=3]; 602[label="vwx40",fontsize=16,color="green",shape="box"];603[label="vwx30",fontsize=16,color="green",shape="box"];382[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];382 -> 526[label="",style="solid", color="black", weight=3]; 604[label="vwx40",fontsize=16,color="green",shape="box"];605[label="vwx30",fontsize=16,color="green",shape="box"];383[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2988[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];383 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 527[label="",style="solid", color="burlywood", weight=3]; 606[label="vwx40",fontsize=16,color="green",shape="box"];607[label="vwx30",fontsize=16,color="green",shape="box"];384[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];384 -> 528[label="",style="solid", color="black", weight=3]; 608 -> 920[label="",style="dashed", color="red", weight=0]; 608[label="compare1 (Just vwx29) (Just vwx30) (Just vwx29 <= Just vwx30)",fontsize=16,color="magenta"];608 -> 921[label="",style="dashed", color="magenta", weight=3]; 608 -> 922[label="",style="dashed", color="magenta", weight=3]; 608 -> 923[label="",style="dashed", color="magenta", weight=3]; 609[label="EQ",fontsize=16,color="green",shape="box"];610[label="LT",fontsize=16,color="green",shape="box"];611[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];611 -> 814[label="",style="solid", color="black", weight=3]; 612[label="vwx40",fontsize=16,color="green",shape="box"];613[label="vwx30",fontsize=16,color="green",shape="box"];614[label="vwx40",fontsize=16,color="green",shape="box"];615[label="vwx30",fontsize=16,color="green",shape="box"];616[label="vwx40",fontsize=16,color="green",shape="box"];617[label="vwx30",fontsize=16,color="green",shape="box"];618[label="vwx40",fontsize=16,color="green",shape="box"];619[label="vwx30",fontsize=16,color="green",shape="box"];620[label="vwx40",fontsize=16,color="green",shape="box"];621[label="vwx30",fontsize=16,color="green",shape="box"];622[label="vwx40",fontsize=16,color="green",shape="box"];623[label="vwx30",fontsize=16,color="green",shape="box"];624[label="vwx40",fontsize=16,color="green",shape="box"];625[label="vwx30",fontsize=16,color="green",shape="box"];626[label="vwx40",fontsize=16,color="green",shape="box"];627[label="vwx30",fontsize=16,color="green",shape="box"];628[label="vwx40",fontsize=16,color="green",shape="box"];629[label="vwx30",fontsize=16,color="green",shape="box"];630[label="vwx40",fontsize=16,color="green",shape="box"];631[label="vwx30",fontsize=16,color="green",shape="box"];632[label="vwx40",fontsize=16,color="green",shape="box"];633[label="vwx30",fontsize=16,color="green",shape="box"];634[label="vwx40",fontsize=16,color="green",shape="box"];635[label="vwx30",fontsize=16,color="green",shape="box"];636[label="vwx40",fontsize=16,color="green",shape="box"];637[label="vwx30",fontsize=16,color="green",shape="box"];638[label="vwx40",fontsize=16,color="green",shape="box"];639[label="vwx30",fontsize=16,color="green",shape="box"];640 -> 1019[label="",style="dashed", color="red", weight=0]; 640[label="compare1 (Left vwx36) (Left vwx37) (Left vwx36 <= Left vwx37)",fontsize=16,color="magenta"];640 -> 1020[label="",style="dashed", color="magenta", weight=3]; 640 -> 1021[label="",style="dashed", color="magenta", weight=3]; 640 -> 1022[label="",style="dashed", color="magenta", weight=3]; 641[label="EQ",fontsize=16,color="green",shape="box"];642[label="LT",fontsize=16,color="green",shape="box"];643[label="compare0 (Right vwx30) (Left vwx40) otherwise",fontsize=16,color="black",shape="box"];643 -> 816[label="",style="solid", color="black", weight=3]; 644[label="vwx40",fontsize=16,color="green",shape="box"];645[label="vwx30",fontsize=16,color="green",shape="box"];646[label="vwx40",fontsize=16,color="green",shape="box"];647[label="vwx30",fontsize=16,color="green",shape="box"];648[label="vwx40",fontsize=16,color="green",shape="box"];649[label="vwx30",fontsize=16,color="green",shape="box"];650[label="vwx40",fontsize=16,color="green",shape="box"];651[label="vwx30",fontsize=16,color="green",shape="box"];652[label="vwx40",fontsize=16,color="green",shape="box"];653[label="vwx30",fontsize=16,color="green",shape="box"];654[label="vwx40",fontsize=16,color="green",shape="box"];655[label="vwx30",fontsize=16,color="green",shape="box"];656[label="vwx40",fontsize=16,color="green",shape="box"];657[label="vwx30",fontsize=16,color="green",shape="box"];658[label="vwx40",fontsize=16,color="green",shape="box"];659[label="vwx30",fontsize=16,color="green",shape="box"];660[label="vwx40",fontsize=16,color="green",shape="box"];661[label="vwx30",fontsize=16,color="green",shape="box"];662[label="vwx40",fontsize=16,color="green",shape="box"];663[label="vwx30",fontsize=16,color="green",shape="box"];664[label="vwx40",fontsize=16,color="green",shape="box"];665[label="vwx30",fontsize=16,color="green",shape="box"];666[label="vwx40",fontsize=16,color="green",shape="box"];667[label="vwx30",fontsize=16,color="green",shape="box"];668[label="vwx40",fontsize=16,color="green",shape="box"];669[label="vwx30",fontsize=16,color="green",shape="box"];670[label="vwx40",fontsize=16,color="green",shape="box"];671[label="vwx30",fontsize=16,color="green",shape="box"];672 -> 1032[label="",style="dashed", color="red", weight=0]; 672[label="compare1 (Right vwx43) (Right vwx44) (Right vwx43 <= Right vwx44)",fontsize=16,color="magenta"];672 -> 1033[label="",style="dashed", color="magenta", weight=3]; 672 -> 1034[label="",style="dashed", color="magenta", weight=3]; 672 -> 1035[label="",style="dashed", color="magenta", weight=3]; 673[label="EQ",fontsize=16,color="green",shape="box"];892 -> 371[label="",style="dashed", color="red", weight=0]; 892[label="vwx30 == vwx40",fontsize=16,color="magenta"];892 -> 958[label="",style="dashed", color="magenta", weight=3]; 892 -> 959[label="",style="dashed", color="magenta", weight=3]; 893 -> 372[label="",style="dashed", color="red", weight=0]; 893[label="vwx30 == vwx40",fontsize=16,color="magenta"];893 -> 960[label="",style="dashed", color="magenta", weight=3]; 893 -> 961[label="",style="dashed", color="magenta", weight=3]; 894 -> 373[label="",style="dashed", color="red", weight=0]; 894[label="vwx30 == vwx40",fontsize=16,color="magenta"];894 -> 962[label="",style="dashed", color="magenta", weight=3]; 894 -> 963[label="",style="dashed", color="magenta", weight=3]; 895 -> 374[label="",style="dashed", color="red", weight=0]; 895[label="vwx30 == vwx40",fontsize=16,color="magenta"];895 -> 964[label="",style="dashed", color="magenta", weight=3]; 895 -> 965[label="",style="dashed", color="magenta", weight=3]; 896 -> 375[label="",style="dashed", color="red", weight=0]; 896[label="vwx30 == vwx40",fontsize=16,color="magenta"];896 -> 966[label="",style="dashed", color="magenta", weight=3]; 896 -> 967[label="",style="dashed", color="magenta", weight=3]; 897 -> 376[label="",style="dashed", color="red", weight=0]; 897[label="vwx30 == vwx40",fontsize=16,color="magenta"];897 -> 968[label="",style="dashed", color="magenta", weight=3]; 897 -> 969[label="",style="dashed", color="magenta", weight=3]; 898 -> 377[label="",style="dashed", color="red", weight=0]; 898[label="vwx30 == vwx40",fontsize=16,color="magenta"];898 -> 970[label="",style="dashed", color="magenta", weight=3]; 898 -> 971[label="",style="dashed", color="magenta", weight=3]; 899 -> 378[label="",style="dashed", color="red", weight=0]; 899[label="vwx30 == vwx40",fontsize=16,color="magenta"];899 -> 972[label="",style="dashed", color="magenta", weight=3]; 899 -> 973[label="",style="dashed", color="magenta", weight=3]; 900 -> 379[label="",style="dashed", color="red", weight=0]; 900[label="vwx30 == vwx40",fontsize=16,color="magenta"];900 -> 974[label="",style="dashed", color="magenta", weight=3]; 900 -> 975[label="",style="dashed", color="magenta", weight=3]; 901 -> 380[label="",style="dashed", color="red", weight=0]; 901[label="vwx30 == vwx40",fontsize=16,color="magenta"];901 -> 976[label="",style="dashed", color="magenta", weight=3]; 901 -> 977[label="",style="dashed", color="magenta", weight=3]; 902 -> 381[label="",style="dashed", color="red", weight=0]; 902[label="vwx30 == vwx40",fontsize=16,color="magenta"];902 -> 978[label="",style="dashed", color="magenta", weight=3]; 902 -> 979[label="",style="dashed", color="magenta", weight=3]; 903 -> 382[label="",style="dashed", color="red", weight=0]; 903[label="vwx30 == vwx40",fontsize=16,color="magenta"];903 -> 980[label="",style="dashed", color="magenta", weight=3]; 903 -> 981[label="",style="dashed", color="magenta", weight=3]; 904 -> 383[label="",style="dashed", color="red", weight=0]; 904[label="vwx30 == vwx40",fontsize=16,color="magenta"];904 -> 982[label="",style="dashed", color="magenta", weight=3]; 904 -> 983[label="",style="dashed", color="magenta", weight=3]; 905 -> 384[label="",style="dashed", color="red", weight=0]; 905[label="vwx30 == vwx40",fontsize=16,color="magenta"];905 -> 984[label="",style="dashed", color="magenta", weight=3]; 905 -> 985[label="",style="dashed", color="magenta", weight=3]; 906[label="vwx31 == vwx41",fontsize=16,color="blue",shape="box"];2989[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 986[label="",style="solid", color="blue", weight=3]; 2990[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 987[label="",style="solid", color="blue", weight=3]; 2991[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 988[label="",style="solid", color="blue", weight=3]; 2992[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 989[label="",style="solid", color="blue", weight=3]; 2993[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 990[label="",style="solid", color="blue", weight=3]; 2994[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 991[label="",style="solid", color="blue", weight=3]; 2995[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 992[label="",style="solid", color="blue", weight=3]; 2996[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 993[label="",style="solid", color="blue", weight=3]; 2997[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 994[label="",style="solid", color="blue", weight=3]; 2998[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 995[label="",style="solid", color="blue", weight=3]; 2999[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 996[label="",style="solid", color="blue", weight=3]; 3000[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 997[label="",style="solid", color="blue", weight=3]; 3001[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 998[label="",style="solid", color="blue", weight=3]; 3002[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];906 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 999[label="",style="solid", color="blue", weight=3]; 907[label="vwx32 == vwx42",fontsize=16,color="blue",shape="box"];3003[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3003[label="",style="solid", color="blue", weight=9]; 3003 -> 1000[label="",style="solid", color="blue", weight=3]; 3004[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3004[label="",style="solid", color="blue", weight=9]; 3004 -> 1001[label="",style="solid", color="blue", weight=3]; 3005[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 1002[label="",style="solid", color="blue", weight=3]; 3006[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 1003[label="",style="solid", color="blue", weight=3]; 3007[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 1004[label="",style="solid", color="blue", weight=3]; 3008[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 1005[label="",style="solid", color="blue", weight=3]; 3009[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 1006[label="",style="solid", color="blue", weight=3]; 3010[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 1007[label="",style="solid", color="blue", weight=3]; 3011[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 1008[label="",style="solid", color="blue", weight=3]; 3012[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 1009[label="",style="solid", color="blue", weight=3]; 3013[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 1010[label="",style="solid", color="blue", weight=3]; 3014[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 1011[label="",style="solid", color="blue", weight=3]; 3015[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 1012[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];907 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 1013[label="",style="solid", color="blue", weight=3]; 908[label="compare1 (vwx54,vwx55,vwx56) (vwx57,vwx58,vwx59) ((vwx54,vwx55,vwx56) <= (vwx57,vwx58,vwx59))",fontsize=16,color="black",shape="box"];908 -> 1014[label="",style="solid", color="black", weight=3]; 909[label="EQ",fontsize=16,color="green",shape="box"];704[label="vwx400",fontsize=16,color="green",shape="box"];705[label="vwx300",fontsize=16,color="green",shape="box"];706[label="LT",fontsize=16,color="green",shape="box"];707[label="LT",fontsize=16,color="green",shape="box"];708[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];708 -> 910[label="",style="solid", color="black", weight=3]; 709[label="LT",fontsize=16,color="green",shape="box"];710[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];710 -> 911[label="",style="solid", color="black", weight=3]; 711[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];711 -> 912[label="",style="solid", color="black", weight=3]; 712[label="Pos vwx410",fontsize=16,color="green",shape="box"];713[label="vwx30",fontsize=16,color="green",shape="box"];714[label="vwx40",fontsize=16,color="green",shape="box"];715[label="Pos vwx310",fontsize=16,color="green",shape="box"];716[label="Pos vwx410",fontsize=16,color="green",shape="box"];717[label="vwx30",fontsize=16,color="green",shape="box"];718[label="vwx40",fontsize=16,color="green",shape="box"];719[label="Neg vwx310",fontsize=16,color="green",shape="box"];720[label="Neg vwx410",fontsize=16,color="green",shape="box"];721[label="vwx30",fontsize=16,color="green",shape="box"];722[label="vwx40",fontsize=16,color="green",shape="box"];723[label="Pos vwx310",fontsize=16,color="green",shape="box"];724[label="Neg vwx410",fontsize=16,color="green",shape="box"];725[label="vwx30",fontsize=16,color="green",shape="box"];726[label="vwx40",fontsize=16,color="green",shape="box"];727[label="Neg vwx310",fontsize=16,color="green",shape="box"];728 -> 294[label="",style="dashed", color="red", weight=0]; 728[label="primMulInt vwx300 vwx410",fontsize=16,color="magenta"];728 -> 913[label="",style="dashed", color="magenta", weight=3]; 728 -> 914[label="",style="dashed", color="magenta", weight=3]; 729[label="Pos (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];729 -> 915[label="",style="dashed", color="green", weight=3]; 730[label="Neg (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];730 -> 916[label="",style="dashed", color="green", weight=3]; 731[label="Neg (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];731 -> 917[label="",style="dashed", color="green", weight=3]; 732[label="Pos (primMulNat vwx300 vwx410)",fontsize=16,color="green",shape="box"];732 -> 918[label="",style="dashed", color="green", weight=3]; 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="vwx31",fontsize=16,color="green",shape="box"];953[label="vwx41",fontsize=16,color="green",shape="box"];954[label="vwx31",fontsize=16,color="green",shape="box"];955[label="False",fontsize=16,color="green",shape="box"];956[label="vwx85",fontsize=16,color="green",shape="box"];957 -> 1111[label="",style="dashed", color="red", weight=0]; 957[label="compare1 (vwx67,vwx68) (vwx69,vwx70) (vwx67 < vwx69 || vwx67 == vwx69 && vwx68 <= vwx70)",fontsize=16,color="magenta"];957 -> 1112[label="",style="dashed", color="magenta", weight=3]; 957 -> 1113[label="",style="dashed", color="magenta", weight=3]; 957 -> 1114[label="",style="dashed", color="magenta", weight=3]; 957 -> 1115[label="",style="dashed", color="magenta", weight=3]; 957 -> 1116[label="",style="dashed", color="magenta", weight=3]; 957 -> 1117[label="",style="dashed", color="magenta", weight=3]; 812[label="compare0 (Just vwx30) Nothing True",fontsize=16,color="black",shape="box"];812 -> 919[label="",style="solid", color="black", weight=3]; 509[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];3017[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];509 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 733[label="",style="solid", color="burlywood", weight=3]; 3018[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];509 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 734[label="",style="solid", color="burlywood", weight=3]; 510[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];3019[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];510 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 735[label="",style="solid", color="burlywood", weight=3]; 3020[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];510 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 736[label="",style="solid", color="burlywood", weight=3]; 511[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];3021[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];511 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 737[label="",style="solid", color="burlywood", weight=3]; 3022[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];511 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 738[label="",style="solid", color="burlywood", weight=3]; 3023[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];511 -> 3023[label="",style="solid", color="burlywood", weight=9]; 3023 -> 739[label="",style="solid", color="burlywood", weight=3]; 512[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];3024[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];512 -> 3024[label="",style="solid", color="burlywood", weight=9]; 3024 -> 740[label="",style="solid", color="burlywood", weight=3]; 3025[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];512 -> 3025[label="",style="solid", color="burlywood", weight=9]; 3025 -> 741[label="",style="solid", color="burlywood", weight=3]; 3026[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];512 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 742[label="",style="solid", color="burlywood", weight=3]; 513[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];3027[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];513 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 743[label="",style="solid", color="burlywood", weight=3]; 3028[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];513 -> 3028[label="",style="solid", color="burlywood", weight=9]; 3028 -> 744[label="",style="solid", color="burlywood", weight=3]; 3029[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];513 -> 3029[label="",style="solid", color="burlywood", weight=9]; 3029 -> 745[label="",style="solid", color="burlywood", weight=3]; 514[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3030[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];514 -> 3030[label="",style="solid", color="burlywood", weight=9]; 3030 -> 746[label="",style="solid", color="burlywood", weight=3]; 515[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3031[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];515 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 747[label="",style="solid", color="burlywood", weight=3]; 516[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];3032[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];516 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 748[label="",style="solid", color="burlywood", weight=3]; 3033[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];516 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 749[label="",style="solid", color="burlywood", weight=3]; 517[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];3034[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];517 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 750[label="",style="solid", color="burlywood", weight=3]; 3035[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];517 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 751[label="",style="solid", color="burlywood", weight=3]; 518[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3036[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];518 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 752[label="",style="solid", color="burlywood", weight=3]; 3037[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];518 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 753[label="",style="solid", color="burlywood", weight=3]; 519[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3038[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];519 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 754[label="",style="solid", color="burlywood", weight=3]; 3039[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];519 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 755[label="",style="solid", color="burlywood", weight=3]; 520[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];3040[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];520 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 756[label="",style="solid", color="burlywood", weight=3]; 521[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];3041[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];521 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 757[label="",style="solid", color="burlywood", weight=3]; 522[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];3042[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];522 -> 3042[label="",style="solid", color="burlywood", weight=9]; 3042 -> 758[label="",style="solid", color="burlywood", weight=3]; 523[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];3043[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];523 -> 3043[label="",style="solid", color="burlywood", weight=9]; 3043 -> 759[label="",style="solid", color="burlywood", weight=3]; 3044[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];523 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 760[label="",style="solid", color="burlywood", weight=3]; 524[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];3045[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];524 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 761[label="",style="solid", color="burlywood", weight=3]; 3046[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];524 -> 3046[label="",style="solid", color="burlywood", weight=9]; 3046 -> 762[label="",style="solid", color="burlywood", weight=3]; 525[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3047[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];525 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 763[label="",style="solid", color="burlywood", weight=3]; 526[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];3048[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];526 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 764[label="",style="solid", color="burlywood", weight=3]; 3049[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];526 -> 3049[label="",style="solid", color="burlywood", weight=9]; 3049 -> 765[label="",style="solid", color="burlywood", weight=3]; 527[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];3050[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];527 -> 3050[label="",style="solid", color="burlywood", weight=9]; 3050 -> 766[label="",style="solid", color="burlywood", weight=3]; 528[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];3051[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];528 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 767[label="",style="solid", color="burlywood", weight=3]; 921[label="vwx29",fontsize=16,color="green",shape="box"];922[label="Just vwx29 <= Just vwx30",fontsize=16,color="black",shape="box"];922 -> 1015[label="",style="solid", color="black", weight=3]; 923[label="vwx30",fontsize=16,color="green",shape="box"];920[label="compare1 (Just vwx90) (Just vwx91) vwx92",fontsize=16,color="burlywood",shape="triangle"];3052[label="vwx92/False",fontsize=10,color="white",style="solid",shape="box"];920 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 1016[label="",style="solid", color="burlywood", weight=3]; 3053[label="vwx92/True",fontsize=10,color="white",style="solid",shape="box"];920 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 1017[label="",style="solid", color="burlywood", weight=3]; 814[label="compare0 True False True",fontsize=16,color="black",shape="box"];814 -> 1018[label="",style="solid", color="black", weight=3]; 1020[label="Left vwx36 <= Left vwx37",fontsize=16,color="black",shape="box"];1020 -> 1028[label="",style="solid", color="black", weight=3]; 1021[label="vwx36",fontsize=16,color="green",shape="box"];1022[label="vwx37",fontsize=16,color="green",shape="box"];1019[label="compare1 (Left vwx97) (Left vwx98) vwx99",fontsize=16,color="burlywood",shape="triangle"];3054[label="vwx99/False",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 1029[label="",style="solid", color="burlywood", weight=3]; 3055[label="vwx99/True",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 1030[label="",style="solid", color="burlywood", weight=3]; 816[label="compare0 (Right vwx30) (Left vwx40) True",fontsize=16,color="black",shape="box"];816 -> 1031[label="",style="solid", color="black", weight=3]; 1033[label="vwx44",fontsize=16,color="green",shape="box"];1034[label="Right vwx43 <= Right vwx44",fontsize=16,color="black",shape="box"];1034 -> 1039[label="",style="solid", color="black", weight=3]; 1035[label="vwx43",fontsize=16,color="green",shape="box"];1032[label="compare1 (Right vwx105) (Right vwx106) vwx107",fontsize=16,color="burlywood",shape="triangle"];3056[label="vwx107/False",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 1040[label="",style="solid", color="burlywood", weight=3]; 3057[label="vwx107/True",fontsize=10,color="white",style="solid",shape="box"];1032 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 1041[label="",style="solid", color="burlywood", weight=3]; 958[label="vwx40",fontsize=16,color="green",shape="box"];959[label="vwx30",fontsize=16,color="green",shape="box"];960[label="vwx40",fontsize=16,color="green",shape="box"];961[label="vwx30",fontsize=16,color="green",shape="box"];962[label="vwx40",fontsize=16,color="green",shape="box"];963[label="vwx30",fontsize=16,color="green",shape="box"];964[label="vwx40",fontsize=16,color="green",shape="box"];965[label="vwx30",fontsize=16,color="green",shape="box"];966[label="vwx40",fontsize=16,color="green",shape="box"];967[label="vwx30",fontsize=16,color="green",shape="box"];968[label="vwx40",fontsize=16,color="green",shape="box"];969[label="vwx30",fontsize=16,color="green",shape="box"];970[label="vwx40",fontsize=16,color="green",shape="box"];971[label="vwx30",fontsize=16,color="green",shape="box"];972[label="vwx40",fontsize=16,color="green",shape="box"];973[label="vwx30",fontsize=16,color="green",shape="box"];974[label="vwx40",fontsize=16,color="green",shape="box"];975[label="vwx30",fontsize=16,color="green",shape="box"];976[label="vwx40",fontsize=16,color="green",shape="box"];977[label="vwx30",fontsize=16,color="green",shape="box"];978[label="vwx40",fontsize=16,color="green",shape="box"];979[label="vwx30",fontsize=16,color="green",shape="box"];980[label="vwx40",fontsize=16,color="green",shape="box"];981[label="vwx30",fontsize=16,color="green",shape="box"];982[label="vwx40",fontsize=16,color="green",shape="box"];983[label="vwx30",fontsize=16,color="green",shape="box"];984[label="vwx40",fontsize=16,color="green",shape="box"];985[label="vwx30",fontsize=16,color="green",shape="box"];986 -> 371[label="",style="dashed", color="red", weight=0]; 986[label="vwx31 == vwx41",fontsize=16,color="magenta"];986 -> 1042[label="",style="dashed", color="magenta", weight=3]; 986 -> 1043[label="",style="dashed", color="magenta", weight=3]; 987 -> 372[label="",style="dashed", color="red", weight=0]; 987[label="vwx31 == vwx41",fontsize=16,color="magenta"];987 -> 1044[label="",style="dashed", color="magenta", weight=3]; 987 -> 1045[label="",style="dashed", color="magenta", weight=3]; 988 -> 373[label="",style="dashed", color="red", weight=0]; 988[label="vwx31 == vwx41",fontsize=16,color="magenta"];988 -> 1046[label="",style="dashed", color="magenta", weight=3]; 988 -> 1047[label="",style="dashed", color="magenta", weight=3]; 989 -> 374[label="",style="dashed", color="red", weight=0]; 989[label="vwx31 == vwx41",fontsize=16,color="magenta"];989 -> 1048[label="",style="dashed", color="magenta", weight=3]; 989 -> 1049[label="",style="dashed", color="magenta", weight=3]; 990 -> 375[label="",style="dashed", color="red", weight=0]; 990[label="vwx31 == vwx41",fontsize=16,color="magenta"];990 -> 1050[label="",style="dashed", color="magenta", weight=3]; 990 -> 1051[label="",style="dashed", color="magenta", weight=3]; 991 -> 376[label="",style="dashed", color="red", weight=0]; 991[label="vwx31 == vwx41",fontsize=16,color="magenta"];991 -> 1052[label="",style="dashed", color="magenta", weight=3]; 991 -> 1053[label="",style="dashed", color="magenta", weight=3]; 992 -> 377[label="",style="dashed", color="red", weight=0]; 992[label="vwx31 == vwx41",fontsize=16,color="magenta"];992 -> 1054[label="",style="dashed", color="magenta", weight=3]; 992 -> 1055[label="",style="dashed", color="magenta", weight=3]; 993 -> 378[label="",style="dashed", color="red", weight=0]; 993[label="vwx31 == vwx41",fontsize=16,color="magenta"];993 -> 1056[label="",style="dashed", color="magenta", weight=3]; 993 -> 1057[label="",style="dashed", color="magenta", weight=3]; 994 -> 379[label="",style="dashed", color="red", weight=0]; 994[label="vwx31 == vwx41",fontsize=16,color="magenta"];994 -> 1058[label="",style="dashed", color="magenta", weight=3]; 994 -> 1059[label="",style="dashed", color="magenta", weight=3]; 995 -> 380[label="",style="dashed", color="red", weight=0]; 995[label="vwx31 == vwx41",fontsize=16,color="magenta"];995 -> 1060[label="",style="dashed", color="magenta", weight=3]; 995 -> 1061[label="",style="dashed", color="magenta", weight=3]; 996 -> 381[label="",style="dashed", color="red", weight=0]; 996[label="vwx31 == vwx41",fontsize=16,color="magenta"];996 -> 1062[label="",style="dashed", color="magenta", weight=3]; 996 -> 1063[label="",style="dashed", color="magenta", weight=3]; 997 -> 382[label="",style="dashed", color="red", weight=0]; 997[label="vwx31 == vwx41",fontsize=16,color="magenta"];997 -> 1064[label="",style="dashed", color="magenta", weight=3]; 997 -> 1065[label="",style="dashed", color="magenta", weight=3]; 998 -> 383[label="",style="dashed", color="red", weight=0]; 998[label="vwx31 == vwx41",fontsize=16,color="magenta"];998 -> 1066[label="",style="dashed", color="magenta", weight=3]; 998 -> 1067[label="",style="dashed", color="magenta", weight=3]; 999 -> 384[label="",style="dashed", color="red", weight=0]; 999[label="vwx31 == vwx41",fontsize=16,color="magenta"];999 -> 1068[label="",style="dashed", color="magenta", weight=3]; 999 -> 1069[label="",style="dashed", color="magenta", weight=3]; 1000 -> 371[label="",style="dashed", color="red", weight=0]; 1000[label="vwx32 == vwx42",fontsize=16,color="magenta"];1000 -> 1070[label="",style="dashed", color="magenta", weight=3]; 1000 -> 1071[label="",style="dashed", color="magenta", weight=3]; 1001 -> 372[label="",style="dashed", color="red", weight=0]; 1001[label="vwx32 == vwx42",fontsize=16,color="magenta"];1001 -> 1072[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1073[label="",style="dashed", color="magenta", weight=3]; 1002 -> 373[label="",style="dashed", color="red", weight=0]; 1002[label="vwx32 == vwx42",fontsize=16,color="magenta"];1002 -> 1074[label="",style="dashed", color="magenta", weight=3]; 1002 -> 1075[label="",style="dashed", color="magenta", weight=3]; 1003 -> 374[label="",style="dashed", color="red", weight=0]; 1003[label="vwx32 == vwx42",fontsize=16,color="magenta"];1003 -> 1076[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1077[label="",style="dashed", color="magenta", weight=3]; 1004 -> 375[label="",style="dashed", color="red", weight=0]; 1004[label="vwx32 == vwx42",fontsize=16,color="magenta"];1004 -> 1078[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1079[label="",style="dashed", color="magenta", weight=3]; 1005 -> 376[label="",style="dashed", color="red", weight=0]; 1005[label="vwx32 == vwx42",fontsize=16,color="magenta"];1005 -> 1080[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1081[label="",style="dashed", color="magenta", weight=3]; 1006 -> 377[label="",style="dashed", color="red", weight=0]; 1006[label="vwx32 == vwx42",fontsize=16,color="magenta"];1006 -> 1082[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1083[label="",style="dashed", color="magenta", weight=3]; 1007 -> 378[label="",style="dashed", color="red", weight=0]; 1007[label="vwx32 == vwx42",fontsize=16,color="magenta"];1007 -> 1084[label="",style="dashed", color="magenta", weight=3]; 1007 -> 1085[label="",style="dashed", color="magenta", weight=3]; 1008 -> 379[label="",style="dashed", color="red", weight=0]; 1008[label="vwx32 == vwx42",fontsize=16,color="magenta"];1008 -> 1086[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1087[label="",style="dashed", color="magenta", weight=3]; 1009 -> 380[label="",style="dashed", color="red", weight=0]; 1009[label="vwx32 == vwx42",fontsize=16,color="magenta"];1009 -> 1088[label="",style="dashed", color="magenta", weight=3]; 1009 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1010 -> 381[label="",style="dashed", color="red", weight=0]; 1010[label="vwx32 == vwx42",fontsize=16,color="magenta"];1010 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1010 -> 1091[label="",style="dashed", color="magenta", weight=3]; 1011 -> 382[label="",style="dashed", color="red", weight=0]; 1011[label="vwx32 == vwx42",fontsize=16,color="magenta"];1011 -> 1092[label="",style="dashed", color="magenta", weight=3]; 1011 -> 1093[label="",style="dashed", color="magenta", weight=3]; 1012 -> 383[label="",style="dashed", color="red", weight=0]; 1012[label="vwx32 == vwx42",fontsize=16,color="magenta"];1012 -> 1094[label="",style="dashed", color="magenta", weight=3]; 1012 -> 1095[label="",style="dashed", color="magenta", weight=3]; 1013 -> 384[label="",style="dashed", color="red", weight=0]; 1013[label="vwx32 == vwx42",fontsize=16,color="magenta"];1013 -> 1096[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1229[label="",style="dashed", color="red", weight=0]; 1014[label="compare1 (vwx54,vwx55,vwx56) (vwx57,vwx58,vwx59) (vwx54 < vwx57 || vwx54 == vwx57 && (vwx55 < vwx58 || vwx55 == vwx58 && vwx56 <= vwx59))",fontsize=16,color="magenta"];1014 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1237[label="",style="dashed", color="magenta", weight=3]; 910[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];910 -> 1100[label="",style="solid", color="black", weight=3]; 911[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];911 -> 1101[label="",style="solid", color="black", weight=3]; 912[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];912 -> 1102[label="",style="solid", color="black", weight=3]; 913[label="vwx410",fontsize=16,color="green",shape="box"];914[label="vwx300",fontsize=16,color="green",shape="box"];915[label="primMulNat vwx300 vwx410",fontsize=16,color="burlywood",shape="triangle"];3058[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];915 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 1103[label="",style="solid", color="burlywood", weight=3]; 3059[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];915 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 1104[label="",style="solid", color="burlywood", weight=3]; 916 -> 915[label="",style="dashed", color="red", weight=0]; 916[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];916 -> 1105[label="",style="dashed", color="magenta", weight=3]; 917 -> 915[label="",style="dashed", color="red", weight=0]; 917[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];917 -> 1106[label="",style="dashed", color="magenta", weight=3]; 918 -> 915[label="",style="dashed", color="red", weight=0]; 918[label="primMulNat vwx300 vwx410",fontsize=16,color="magenta"];918 -> 1107[label="",style="dashed", color="magenta", weight=3]; 918 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1112[label="vwx68",fontsize=16,color="green",shape="box"];1113[label="vwx67 < vwx69",fontsize=16,color="blue",shape="box"];3060[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1124[label="",style="solid", color="blue", weight=3]; 3061[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1125[label="",style="solid", color="blue", weight=3]; 3062[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1126[label="",style="solid", color="blue", weight=3]; 3063[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1127[label="",style="solid", color="blue", weight=3]; 3064[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1128[label="",style="solid", color="blue", weight=3]; 3065[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1129[label="",style="solid", color="blue", weight=3]; 3066[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1130[label="",style="solid", color="blue", weight=3]; 3067[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1131[label="",style="solid", color="blue", weight=3]; 3068[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1132[label="",style="solid", color="blue", weight=3]; 3069[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1133[label="",style="solid", color="blue", weight=3]; 3070[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1134[label="",style="solid", color="blue", weight=3]; 3071[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1135[label="",style="solid", color="blue", weight=3]; 3072[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1136[label="",style="solid", color="blue", weight=3]; 3073[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1113 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1137[label="",style="solid", color="blue", weight=3]; 1114[label="vwx69",fontsize=16,color="green",shape="box"];1115[label="vwx70",fontsize=16,color="green",shape="box"];1116 -> 851[label="",style="dashed", color="red", weight=0]; 1116[label="vwx67 == vwx69 && vwx68 <= vwx70",fontsize=16,color="magenta"];1116 -> 1138[label="",style="dashed", color="magenta", weight=3]; 1116 -> 1139[label="",style="dashed", color="magenta", weight=3]; 1117[label="vwx67",fontsize=16,color="green",shape="box"];1111[label="compare1 (vwx117,vwx118) (vwx119,vwx120) (vwx121 || vwx122)",fontsize=16,color="burlywood",shape="triangle"];3074[label="vwx121/False",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 1140[label="",style="solid", color="burlywood", weight=3]; 3075[label="vwx121/True",fontsize=10,color="white",style="solid",shape="box"];1111 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 1141[label="",style="solid", color="burlywood", weight=3]; 919[label="GT",fontsize=16,color="green",shape="box"];733[label="False == False",fontsize=16,color="black",shape="box"];733 -> 1142[label="",style="solid", color="black", weight=3]; 734[label="False == True",fontsize=16,color="black",shape="box"];734 -> 1143[label="",style="solid", color="black", weight=3]; 735[label="True == False",fontsize=16,color="black",shape="box"];735 -> 1144[label="",style="solid", color="black", weight=3]; 736[label="True == True",fontsize=16,color="black",shape="box"];736 -> 1145[label="",style="solid", color="black", weight=3]; 737[label="LT == LT",fontsize=16,color="black",shape="box"];737 -> 1146[label="",style="solid", color="black", weight=3]; 738[label="LT == EQ",fontsize=16,color="black",shape="box"];738 -> 1147[label="",style="solid", color="black", weight=3]; 739[label="LT == GT",fontsize=16,color="black",shape="box"];739 -> 1148[label="",style="solid", color="black", weight=3]; 740[label="EQ == LT",fontsize=16,color="black",shape="box"];740 -> 1149[label="",style="solid", color="black", weight=3]; 741[label="EQ == EQ",fontsize=16,color="black",shape="box"];741 -> 1150[label="",style="solid", color="black", weight=3]; 742[label="EQ == GT",fontsize=16,color="black",shape="box"];742 -> 1151[label="",style="solid", color="black", weight=3]; 743[label="GT == LT",fontsize=16,color="black",shape="box"];743 -> 1152[label="",style="solid", color="black", weight=3]; 744[label="GT == EQ",fontsize=16,color="black",shape="box"];744 -> 1153[label="",style="solid", color="black", weight=3]; 745[label="GT == GT",fontsize=16,color="black",shape="box"];745 -> 1154[label="",style="solid", color="black", weight=3]; 746[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];746 -> 1155[label="",style="solid", color="black", weight=3]; 747[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3076[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];747 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 1156[label="",style="solid", color="burlywood", weight=3]; 748[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];748 -> 1157[label="",style="solid", color="black", weight=3]; 749[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];749 -> 1158[label="",style="solid", color="black", weight=3]; 750[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];750 -> 1159[label="",style="solid", color="black", weight=3]; 751[label="[] == []",fontsize=16,color="black",shape="box"];751 -> 1160[label="",style="solid", color="black", weight=3]; 752[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];752 -> 1161[label="",style="solid", color="black", weight=3]; 753[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];753 -> 1162[label="",style="solid", color="black", weight=3]; 754[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];754 -> 1163[label="",style="solid", color="black", weight=3]; 755[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];755 -> 1164[label="",style="solid", color="black", weight=3]; 756[label="() == ()",fontsize=16,color="black",shape="box"];756 -> 1165[label="",style="solid", color="black", weight=3]; 757[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];757 -> 1166[label="",style="solid", color="black", weight=3]; 758[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];758 -> 1167[label="",style="solid", color="black", weight=3]; 759[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];759 -> 1168[label="",style="solid", color="black", weight=3]; 760[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];760 -> 1169[label="",style="solid", color="black", weight=3]; 761[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];761 -> 1170[label="",style="solid", color="black", weight=3]; 762[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];762 -> 1171[label="",style="solid", color="black", weight=3]; 763[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3077[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];763 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 1172[label="",style="solid", color="burlywood", weight=3]; 764[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3078[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];764 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 1173[label="",style="solid", color="burlywood", weight=3]; 3079[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];764 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 1174[label="",style="solid", color="burlywood", weight=3]; 765[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3080[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];765 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 1175[label="",style="solid", color="burlywood", weight=3]; 3081[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];765 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 1176[label="",style="solid", color="burlywood", weight=3]; 766[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];766 -> 1177[label="",style="solid", color="black", weight=3]; 767[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3082[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];767 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 1178[label="",style="solid", color="burlywood", weight=3]; 1015[label="vwx29 <= vwx30",fontsize=16,color="blue",shape="box"];3083[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 1179[label="",style="solid", color="blue", weight=3]; 3084[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 1180[label="",style="solid", color="blue", weight=3]; 3085[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 1181[label="",style="solid", color="blue", weight=3]; 3086[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 1182[label="",style="solid", color="blue", weight=3]; 3087[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 1183[label="",style="solid", color="blue", weight=3]; 3088[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 1184[label="",style="solid", color="blue", weight=3]; 3089[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 1185[label="",style="solid", color="blue", weight=3]; 3090[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 1186[label="",style="solid", color="blue", weight=3]; 3091[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 1187[label="",style="solid", color="blue", weight=3]; 3092[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 1188[label="",style="solid", color="blue", weight=3]; 3093[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 1189[label="",style="solid", color="blue", weight=3]; 3094[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 1190[label="",style="solid", color="blue", weight=3]; 3095[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 1191[label="",style="solid", color="blue", weight=3]; 3096[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1015 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 1192[label="",style="solid", color="blue", weight=3]; 1016[label="compare1 (Just vwx90) (Just vwx91) False",fontsize=16,color="black",shape="box"];1016 -> 1193[label="",style="solid", color="black", weight=3]; 1017[label="compare1 (Just vwx90) (Just vwx91) True",fontsize=16,color="black",shape="box"];1017 -> 1194[label="",style="solid", color="black", weight=3]; 1018[label="GT",fontsize=16,color="green",shape="box"];1028[label="vwx36 <= vwx37",fontsize=16,color="blue",shape="box"];3097[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 1195[label="",style="solid", color="blue", weight=3]; 3098[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 1196[label="",style="solid", color="blue", weight=3]; 3099[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 1197[label="",style="solid", color="blue", weight=3]; 3100[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 1198[label="",style="solid", color="blue", weight=3]; 3101[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 1199[label="",style="solid", color="blue", weight=3]; 3102[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 1200[label="",style="solid", color="blue", weight=3]; 3103[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 1201[label="",style="solid", color="blue", weight=3]; 3104[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 1202[label="",style="solid", color="blue", weight=3]; 3105[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 1203[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"];1028 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 1204[label="",style="solid", color="blue", weight=3]; 3107[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 1205[label="",style="solid", color="blue", weight=3]; 3108[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 1206[label="",style="solid", color="blue", weight=3]; 3109[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 1207[label="",style="solid", color="blue", weight=3]; 3110[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1028 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 1208[label="",style="solid", color="blue", weight=3]; 1029[label="compare1 (Left vwx97) (Left vwx98) False",fontsize=16,color="black",shape="box"];1029 -> 1209[label="",style="solid", color="black", weight=3]; 1030[label="compare1 (Left vwx97) (Left vwx98) True",fontsize=16,color="black",shape="box"];1030 -> 1210[label="",style="solid", color="black", weight=3]; 1031[label="GT",fontsize=16,color="green",shape="box"];1039[label="vwx43 <= vwx44",fontsize=16,color="blue",shape="box"];3111[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 1211[label="",style="solid", color="blue", weight=3]; 3112[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 1212[label="",style="solid", color="blue", weight=3]; 3113[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 1213[label="",style="solid", color="blue", weight=3]; 3114[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 1214[label="",style="solid", color="blue", weight=3]; 3115[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 1215[label="",style="solid", color="blue", weight=3]; 3116[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 1216[label="",style="solid", color="blue", weight=3]; 3117[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 1217[label="",style="solid", color="blue", weight=3]; 3118[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 1218[label="",style="solid", color="blue", weight=3]; 3119[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 1219[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"];1039 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 1220[label="",style="solid", color="blue", weight=3]; 3121[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 1221[label="",style="solid", color="blue", weight=3]; 3122[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 1222[label="",style="solid", color="blue", weight=3]; 3123[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 1223[label="",style="solid", color="blue", weight=3]; 3124[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 1224[label="",style="solid", color="blue", weight=3]; 1040[label="compare1 (Right vwx105) (Right vwx106) False",fontsize=16,color="black",shape="box"];1040 -> 1225[label="",style="solid", color="black", weight=3]; 1041[label="compare1 (Right vwx105) (Right vwx106) True",fontsize=16,color="black",shape="box"];1041 -> 1226[label="",style="solid", color="black", weight=3]; 1042[label="vwx41",fontsize=16,color="green",shape="box"];1043[label="vwx31",fontsize=16,color="green",shape="box"];1044[label="vwx41",fontsize=16,color="green",shape="box"];1045[label="vwx31",fontsize=16,color="green",shape="box"];1046[label="vwx41",fontsize=16,color="green",shape="box"];1047[label="vwx31",fontsize=16,color="green",shape="box"];1048[label="vwx41",fontsize=16,color="green",shape="box"];1049[label="vwx31",fontsize=16,color="green",shape="box"];1050[label="vwx41",fontsize=16,color="green",shape="box"];1051[label="vwx31",fontsize=16,color="green",shape="box"];1052[label="vwx41",fontsize=16,color="green",shape="box"];1053[label="vwx31",fontsize=16,color="green",shape="box"];1054[label="vwx41",fontsize=16,color="green",shape="box"];1055[label="vwx31",fontsize=16,color="green",shape="box"];1056[label="vwx41",fontsize=16,color="green",shape="box"];1057[label="vwx31",fontsize=16,color="green",shape="box"];1058[label="vwx41",fontsize=16,color="green",shape="box"];1059[label="vwx31",fontsize=16,color="green",shape="box"];1060[label="vwx41",fontsize=16,color="green",shape="box"];1061[label="vwx31",fontsize=16,color="green",shape="box"];1062[label="vwx41",fontsize=16,color="green",shape="box"];1063[label="vwx31",fontsize=16,color="green",shape="box"];1064[label="vwx41",fontsize=16,color="green",shape="box"];1065[label="vwx31",fontsize=16,color="green",shape="box"];1066[label="vwx41",fontsize=16,color="green",shape="box"];1067[label="vwx31",fontsize=16,color="green",shape="box"];1068[label="vwx41",fontsize=16,color="green",shape="box"];1069[label="vwx31",fontsize=16,color="green",shape="box"];1070[label="vwx42",fontsize=16,color="green",shape="box"];1071[label="vwx32",fontsize=16,color="green",shape="box"];1072[label="vwx42",fontsize=16,color="green",shape="box"];1073[label="vwx32",fontsize=16,color="green",shape="box"];1074[label="vwx42",fontsize=16,color="green",shape="box"];1075[label="vwx32",fontsize=16,color="green",shape="box"];1076[label="vwx42",fontsize=16,color="green",shape="box"];1077[label="vwx32",fontsize=16,color="green",shape="box"];1078[label="vwx42",fontsize=16,color="green",shape="box"];1079[label="vwx32",fontsize=16,color="green",shape="box"];1080[label="vwx42",fontsize=16,color="green",shape="box"];1081[label="vwx32",fontsize=16,color="green",shape="box"];1082[label="vwx42",fontsize=16,color="green",shape="box"];1083[label="vwx32",fontsize=16,color="green",shape="box"];1084[label="vwx42",fontsize=16,color="green",shape="box"];1085[label="vwx32",fontsize=16,color="green",shape="box"];1086[label="vwx42",fontsize=16,color="green",shape="box"];1087[label="vwx32",fontsize=16,color="green",shape="box"];1088[label="vwx42",fontsize=16,color="green",shape="box"];1089[label="vwx32",fontsize=16,color="green",shape="box"];1090[label="vwx42",fontsize=16,color="green",shape="box"];1091[label="vwx32",fontsize=16,color="green",shape="box"];1092[label="vwx42",fontsize=16,color="green",shape="box"];1093[label="vwx32",fontsize=16,color="green",shape="box"];1094[label="vwx42",fontsize=16,color="green",shape="box"];1095[label="vwx32",fontsize=16,color="green",shape="box"];1096[label="vwx42",fontsize=16,color="green",shape="box"];1097[label="vwx32",fontsize=16,color="green",shape="box"];1230[label="vwx56",fontsize=16,color="green",shape="box"];1231[label="vwx54 < vwx57",fontsize=16,color="blue",shape="box"];3125[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 1246[label="",style="solid", color="blue", weight=3]; 3126[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 1247[label="",style="solid", color="blue", weight=3]; 3127[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 1248[label="",style="solid", color="blue", weight=3]; 3128[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 1249[label="",style="solid", color="blue", weight=3]; 3129[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 1250[label="",style="solid", color="blue", weight=3]; 3130[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 1251[label="",style="solid", color="blue", weight=3]; 3131[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 1252[label="",style="solid", color="blue", weight=3]; 3132[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 1253[label="",style="solid", color="blue", weight=3]; 3133[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1254[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"];1231 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1255[label="",style="solid", color="blue", weight=3]; 3135[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1256[label="",style="solid", color="blue", weight=3]; 3136[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1257[label="",style="solid", color="blue", weight=3]; 3137[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1258[label="",style="solid", color="blue", weight=3]; 3138[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1231 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1259[label="",style="solid", color="blue", weight=3]; 1232[label="vwx57",fontsize=16,color="green",shape="box"];1233[label="vwx58",fontsize=16,color="green",shape="box"];1234[label="vwx54",fontsize=16,color="green",shape="box"];1235[label="vwx55",fontsize=16,color="green",shape="box"];1236 -> 851[label="",style="dashed", color="red", weight=0]; 1236[label="vwx54 == vwx57 && (vwx55 < vwx58 || vwx55 == vwx58 && vwx56 <= vwx59)",fontsize=16,color="magenta"];1236 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1237[label="vwx59",fontsize=16,color="green",shape="box"];1229[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) (vwx138 || vwx139)",fontsize=16,color="burlywood",shape="triangle"];3139[label="vwx138/False",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1262[label="",style="solid", color="burlywood", weight=3]; 3140[label="vwx138/True",fontsize=10,color="white",style="solid",shape="box"];1229 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1263[label="",style="solid", color="burlywood", weight=3]; 1100[label="GT",fontsize=16,color="green",shape="box"];1101[label="GT",fontsize=16,color="green",shape="box"];1102[label="GT",fontsize=16,color="green",shape="box"];1103[label="primMulNat (Succ vwx3000) vwx410",fontsize=16,color="burlywood",shape="box"];3141[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];1103 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1264[label="",style="solid", color="burlywood", weight=3]; 3142[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];1103 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1265[label="",style="solid", color="burlywood", weight=3]; 1104[label="primMulNat Zero vwx410",fontsize=16,color="burlywood",shape="box"];3143[label="vwx410/Succ vwx4100",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1266[label="",style="solid", color="burlywood", weight=3]; 3144[label="vwx410/Zero",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1267[label="",style="solid", color="burlywood", weight=3]; 1105[label="vwx410",fontsize=16,color="green",shape="box"];1106[label="vwx300",fontsize=16,color="green",shape="box"];1107[label="vwx410",fontsize=16,color="green",shape="box"];1108[label="vwx300",fontsize=16,color="green",shape="box"];1124 -> 5[label="",style="dashed", color="red", weight=0]; 1124[label="vwx67 < vwx69",fontsize=16,color="magenta"];1124 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1124 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1125 -> 6[label="",style="dashed", color="red", weight=0]; 1125[label="vwx67 < vwx69",fontsize=16,color="magenta"];1125 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1125 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1126 -> 7[label="",style="dashed", color="red", weight=0]; 1126[label="vwx67 < vwx69",fontsize=16,color="magenta"];1126 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1126 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1127 -> 8[label="",style="dashed", color="red", weight=0]; 1127[label="vwx67 < vwx69",fontsize=16,color="magenta"];1127 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1128 -> 9[label="",style="dashed", color="red", weight=0]; 1128[label="vwx67 < vwx69",fontsize=16,color="magenta"];1128 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1129 -> 10[label="",style="dashed", color="red", weight=0]; 1129[label="vwx67 < vwx69",fontsize=16,color="magenta"];1129 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1130 -> 11[label="",style="dashed", color="red", weight=0]; 1130[label="vwx67 < vwx69",fontsize=16,color="magenta"];1130 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1131 -> 12[label="",style="dashed", color="red", weight=0]; 1131[label="vwx67 < vwx69",fontsize=16,color="magenta"];1131 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1132 -> 13[label="",style="dashed", color="red", weight=0]; 1132[label="vwx67 < vwx69",fontsize=16,color="magenta"];1132 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1133 -> 14[label="",style="dashed", color="red", weight=0]; 1133[label="vwx67 < vwx69",fontsize=16,color="magenta"];1133 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1134 -> 15[label="",style="dashed", color="red", weight=0]; 1134[label="vwx67 < vwx69",fontsize=16,color="magenta"];1134 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1135 -> 16[label="",style="dashed", color="red", weight=0]; 1135[label="vwx67 < vwx69",fontsize=16,color="magenta"];1135 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1136 -> 17[label="",style="dashed", color="red", weight=0]; 1136[label="vwx67 < vwx69",fontsize=16,color="magenta"];1136 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1137 -> 18[label="",style="dashed", color="red", weight=0]; 1137[label="vwx67 < vwx69",fontsize=16,color="magenta"];1137 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1138[label="vwx67 == vwx69",fontsize=16,color="blue",shape="box"];3145[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1296[label="",style="solid", color="blue", weight=3]; 3146[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1297[label="",style="solid", color="blue", weight=3]; 3147[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1298[label="",style="solid", color="blue", weight=3]; 3148[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1299[label="",style="solid", color="blue", weight=3]; 3149[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1300[label="",style="solid", color="blue", weight=3]; 3150[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1301[label="",style="solid", color="blue", weight=3]; 3151[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1302[label="",style="solid", color="blue", weight=3]; 3152[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1303[label="",style="solid", color="blue", weight=3]; 3153[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1304[label="",style="solid", color="blue", weight=3]; 3154[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1305[label="",style="solid", color="blue", weight=3]; 3155[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1306[label="",style="solid", color="blue", weight=3]; 3156[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1307[label="",style="solid", color="blue", weight=3]; 3157[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1308[label="",style="solid", color="blue", weight=3]; 3158[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1309[label="",style="solid", color="blue", weight=3]; 1139[label="vwx68 <= vwx70",fontsize=16,color="blue",shape="box"];3159[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1310[label="",style="solid", color="blue", weight=3]; 3160[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1311[label="",style="solid", color="blue", weight=3]; 3161[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1312[label="",style="solid", color="blue", weight=3]; 3162[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1313[label="",style="solid", color="blue", weight=3]; 3163[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1314[label="",style="solid", color="blue", weight=3]; 3164[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1315[label="",style="solid", color="blue", weight=3]; 3165[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1316[label="",style="solid", color="blue", weight=3]; 3166[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1317[label="",style="solid", color="blue", weight=3]; 3167[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1318[label="",style="solid", color="blue", weight=3]; 3168[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1319[label="",style="solid", color="blue", weight=3]; 3169[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1320[label="",style="solid", color="blue", weight=3]; 3170[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1321[label="",style="solid", color="blue", weight=3]; 3171[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1322[label="",style="solid", color="blue", weight=3]; 3172[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1139 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1323[label="",style="solid", color="blue", weight=3]; 1140[label="compare1 (vwx117,vwx118) (vwx119,vwx120) (False || vwx122)",fontsize=16,color="black",shape="box"];1140 -> 1324[label="",style="solid", color="black", weight=3]; 1141[label="compare1 (vwx117,vwx118) (vwx119,vwx120) (True || vwx122)",fontsize=16,color="black",shape="box"];1141 -> 1325[label="",style="solid", color="black", weight=3]; 1142[label="True",fontsize=16,color="green",shape="box"];1143[label="False",fontsize=16,color="green",shape="box"];1144[label="False",fontsize=16,color="green",shape="box"];1145[label="True",fontsize=16,color="green",shape="box"];1146[label="True",fontsize=16,color="green",shape="box"];1147[label="False",fontsize=16,color="green",shape="box"];1148[label="False",fontsize=16,color="green",shape="box"];1149[label="False",fontsize=16,color="green",shape="box"];1150[label="True",fontsize=16,color="green",shape="box"];1151[label="False",fontsize=16,color="green",shape="box"];1152[label="False",fontsize=16,color="green",shape="box"];1153[label="False",fontsize=16,color="green",shape="box"];1154[label="True",fontsize=16,color="green",shape="box"];1155 -> 526[label="",style="dashed", color="red", weight=0]; 1155[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];1155 -> 1326[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1327[label="",style="dashed", color="magenta", weight=3]; 1156[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];1156 -> 1328[label="",style="solid", color="black", weight=3]; 1157 -> 851[label="",style="dashed", color="red", weight=0]; 1157[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1157 -> 1329[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1330[label="",style="dashed", color="magenta", weight=3]; 1158[label="False",fontsize=16,color="green",shape="box"];1159[label="False",fontsize=16,color="green",shape="box"];1160[label="True",fontsize=16,color="green",shape="box"];1161[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3173[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1331[label="",style="solid", color="blue", weight=3]; 3174[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1332[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1333[label="",style="solid", color="blue", weight=3]; 3176[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1334[label="",style="solid", color="blue", weight=3]; 3177[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1335[label="",style="solid", color="blue", weight=3]; 3178[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1336[label="",style="solid", color="blue", weight=3]; 3179[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1337[label="",style="solid", color="blue", weight=3]; 3180[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1338[label="",style="solid", color="blue", weight=3]; 3181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1339[label="",style="solid", color="blue", weight=3]; 3182[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1340[label="",style="solid", color="blue", weight=3]; 3183[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1341[label="",style="solid", color="blue", weight=3]; 3184[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1342[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"];1161 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1343[label="",style="solid", color="blue", weight=3]; 3186[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1161 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1344[label="",style="solid", color="blue", weight=3]; 1162[label="False",fontsize=16,color="green",shape="box"];1163[label="False",fontsize=16,color="green",shape="box"];1164[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3187[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1345[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1346[label="",style="solid", color="blue", weight=3]; 3189[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1347[label="",style="solid", color="blue", weight=3]; 3190[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1348[label="",style="solid", color="blue", weight=3]; 3191[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1349[label="",style="solid", color="blue", weight=3]; 3192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1350[label="",style="solid", color="blue", weight=3]; 3193[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1351[label="",style="solid", color="blue", weight=3]; 3194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1352[label="",style="solid", color="blue", weight=3]; 3195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1353[label="",style="solid", color="blue", weight=3]; 3196[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1354[label="",style="solid", color="blue", weight=3]; 3197[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1355[label="",style="solid", color="blue", weight=3]; 3198[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1356[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1357[label="",style="solid", color="blue", weight=3]; 3200[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1164 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1358[label="",style="solid", color="blue", weight=3]; 1165[label="True",fontsize=16,color="green",shape="box"];1166 -> 851[label="",style="dashed", color="red", weight=0]; 1166[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1166 -> 1359[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1360[label="",style="dashed", color="magenta", weight=3]; 1167 -> 851[label="",style="dashed", color="red", weight=0]; 1167[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];1167 -> 1361[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1362[label="",style="dashed", color="magenta", weight=3]; 1168[label="True",fontsize=16,color="green",shape="box"];1169[label="False",fontsize=16,color="green",shape="box"];1170[label="False",fontsize=16,color="green",shape="box"];1171[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3201[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1363[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1364[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1365[label="",style="solid", color="blue", weight=3]; 3204[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1366[label="",style="solid", color="blue", weight=3]; 3205[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1367[label="",style="solid", color="blue", weight=3]; 3206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1368[label="",style="solid", color="blue", weight=3]; 3207[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1369[label="",style="solid", color="blue", weight=3]; 3208[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1370[label="",style="solid", color="blue", weight=3]; 3209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1371[label="",style="solid", color="blue", weight=3]; 3210[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1372[label="",style="solid", color="blue", weight=3]; 3211[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1373[label="",style="solid", color="blue", weight=3]; 3212[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1374[label="",style="solid", color="blue", weight=3]; 3213[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1375[label="",style="solid", color="blue", weight=3]; 3214[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1171 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1376[label="",style="solid", color="blue", weight=3]; 1172[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];1172 -> 1377[label="",style="solid", color="black", weight=3]; 1173[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3215[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1173 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 1378[label="",style="solid", color="burlywood", weight=3]; 3216[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1173 -> 3216[label="",style="solid", color="burlywood", weight=9]; 3216 -> 1379[label="",style="solid", color="burlywood", weight=3]; 1174[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3217[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1174 -> 3217[label="",style="solid", color="burlywood", weight=9]; 3217 -> 1380[label="",style="solid", color="burlywood", weight=3]; 3218[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1174 -> 3218[label="",style="solid", color="burlywood", weight=9]; 3218 -> 1381[label="",style="solid", color="burlywood", weight=3]; 1175[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3219[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1175 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 1382[label="",style="solid", color="burlywood", weight=3]; 3220[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1175 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 1383[label="",style="solid", color="burlywood", weight=3]; 1176[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3221[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1384[label="",style="solid", color="burlywood", weight=3]; 3222[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];1176 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1385[label="",style="solid", color="burlywood", weight=3]; 1177 -> 851[label="",style="dashed", color="red", weight=0]; 1177[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];1177 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1178[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];1178 -> 1388[label="",style="solid", color="black", weight=3]; 1179[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1179 -> 1389[label="",style="solid", color="black", weight=3]; 1180[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1180 -> 1390[label="",style="solid", color="black", weight=3]; 1181[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3223[label="vwx29/(vwx290,vwx291)",fontsize=10,color="white",style="solid",shape="box"];1181 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 1391[label="",style="solid", color="burlywood", weight=3]; 1182[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1182 -> 1392[label="",style="solid", color="black", weight=3]; 1183[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1183 -> 1393[label="",style="solid", color="black", weight=3]; 1184[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3224[label="vwx29/Nothing",fontsize=10,color="white",style="solid",shape="box"];1184 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 1394[label="",style="solid", color="burlywood", weight=3]; 3225[label="vwx29/Just vwx290",fontsize=10,color="white",style="solid",shape="box"];1184 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 1395[label="",style="solid", color="burlywood", weight=3]; 1185[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3226[label="vwx29/False",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 1396[label="",style="solid", color="burlywood", weight=3]; 3227[label="vwx29/True",fontsize=10,color="white",style="solid",shape="box"];1185 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 1397[label="",style="solid", color="burlywood", weight=3]; 1186[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1186 -> 1398[label="",style="solid", color="black", weight=3]; 1187[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3228[label="vwx29/Left vwx290",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1399[label="",style="solid", color="burlywood", weight=3]; 3229[label="vwx29/Right vwx290",fontsize=10,color="white",style="solid",shape="box"];1187 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1400[label="",style="solid", color="burlywood", weight=3]; 1188[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3230[label="vwx29/(vwx290,vwx291,vwx292)",fontsize=10,color="white",style="solid",shape="box"];1188 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1401[label="",style="solid", color="burlywood", weight=3]; 1189[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1189 -> 1402[label="",style="solid", color="black", weight=3]; 1190[label="vwx29 <= vwx30",fontsize=16,color="burlywood",shape="triangle"];3231[label="vwx29/LT",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1403[label="",style="solid", color="burlywood", weight=3]; 3232[label="vwx29/EQ",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1404[label="",style="solid", color="burlywood", weight=3]; 3233[label="vwx29/GT",fontsize=10,color="white",style="solid",shape="box"];1190 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1405[label="",style="solid", color="burlywood", weight=3]; 1191[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1191 -> 1406[label="",style="solid", color="black", weight=3]; 1192[label="vwx29 <= vwx30",fontsize=16,color="black",shape="triangle"];1192 -> 1407[label="",style="solid", color="black", weight=3]; 1193[label="compare0 (Just vwx90) (Just vwx91) otherwise",fontsize=16,color="black",shape="box"];1193 -> 1408[label="",style="solid", color="black", weight=3]; 1194[label="LT",fontsize=16,color="green",shape="box"];1195 -> 1179[label="",style="dashed", color="red", weight=0]; 1195[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1195 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1195 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1180[label="",style="dashed", color="red", weight=0]; 1196[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1196 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1196 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1181[label="",style="dashed", color="red", weight=0]; 1197[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1197 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1197 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1182[label="",style="dashed", color="red", weight=0]; 1198[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1198 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1198 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1183[label="",style="dashed", color="red", weight=0]; 1199[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1199 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1199 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1184[label="",style="dashed", color="red", weight=0]; 1200[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1200 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1200 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1185[label="",style="dashed", color="red", weight=0]; 1201[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1201 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1201 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1186[label="",style="dashed", color="red", weight=0]; 1202[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1202 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1202 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1187[label="",style="dashed", color="red", weight=0]; 1203[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1203 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1203 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1188[label="",style="dashed", color="red", weight=0]; 1204[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1204 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1204 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1189[label="",style="dashed", color="red", weight=0]; 1205[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1205 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1205 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1190[label="",style="dashed", color="red", weight=0]; 1206[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1206 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1206 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1191[label="",style="dashed", color="red", weight=0]; 1207[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1207 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1207 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1192[label="",style="dashed", color="red", weight=0]; 1208[label="vwx36 <= vwx37",fontsize=16,color="magenta"];1208 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1208 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1209[label="compare0 (Left vwx97) (Left vwx98) otherwise",fontsize=16,color="black",shape="box"];1209 -> 1437[label="",style="solid", color="black", weight=3]; 1210[label="LT",fontsize=16,color="green",shape="box"];1211 -> 1179[label="",style="dashed", color="red", weight=0]; 1211[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1211 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1211 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1180[label="",style="dashed", color="red", weight=0]; 1212[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1212 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1212 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1181[label="",style="dashed", color="red", weight=0]; 1213[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1213 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1213 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1182[label="",style="dashed", color="red", weight=0]; 1214[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1214 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1214 -> 1445[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1183[label="",style="dashed", color="red", weight=0]; 1215[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1215 -> 1446[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1447[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1184[label="",style="dashed", color="red", weight=0]; 1216[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1216 -> 1448[label="",style="dashed", color="magenta", weight=3]; 1216 -> 1449[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1185[label="",style="dashed", color="red", weight=0]; 1217[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1217 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1217 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1186[label="",style="dashed", color="red", weight=0]; 1218[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1218 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1218 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1187[label="",style="dashed", color="red", weight=0]; 1219[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1219 -> 1454[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1455[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1188[label="",style="dashed", color="red", weight=0]; 1220[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1220 -> 1456[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1457[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1189[label="",style="dashed", color="red", weight=0]; 1221[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1221 -> 1458[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1459[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1190[label="",style="dashed", color="red", weight=0]; 1222[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1222 -> 1460[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1461[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1191[label="",style="dashed", color="red", weight=0]; 1223[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1223 -> 1462[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1463[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1192[label="",style="dashed", color="red", weight=0]; 1224[label="vwx43 <= vwx44",fontsize=16,color="magenta"];1224 -> 1464[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1465[label="",style="dashed", color="magenta", weight=3]; 1225[label="compare0 (Right vwx105) (Right vwx106) otherwise",fontsize=16,color="black",shape="box"];1225 -> 1466[label="",style="solid", color="black", weight=3]; 1226[label="LT",fontsize=16,color="green",shape="box"];1246 -> 5[label="",style="dashed", color="red", weight=0]; 1246[label="vwx54 < vwx57",fontsize=16,color="magenta"];1246 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1246 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1247 -> 6[label="",style="dashed", color="red", weight=0]; 1247[label="vwx54 < vwx57",fontsize=16,color="magenta"];1247 -> 1469[label="",style="dashed", color="magenta", weight=3]; 1247 -> 1470[label="",style="dashed", color="magenta", weight=3]; 1248 -> 7[label="",style="dashed", color="red", weight=0]; 1248[label="vwx54 < vwx57",fontsize=16,color="magenta"];1248 -> 1471[label="",style="dashed", color="magenta", weight=3]; 1248 -> 1472[label="",style="dashed", color="magenta", weight=3]; 1249 -> 8[label="",style="dashed", color="red", weight=0]; 1249[label="vwx54 < vwx57",fontsize=16,color="magenta"];1249 -> 1473[label="",style="dashed", color="magenta", weight=3]; 1249 -> 1474[label="",style="dashed", color="magenta", weight=3]; 1250 -> 9[label="",style="dashed", color="red", weight=0]; 1250[label="vwx54 < vwx57",fontsize=16,color="magenta"];1250 -> 1475[label="",style="dashed", color="magenta", weight=3]; 1250 -> 1476[label="",style="dashed", color="magenta", weight=3]; 1251 -> 10[label="",style="dashed", color="red", weight=0]; 1251[label="vwx54 < vwx57",fontsize=16,color="magenta"];1251 -> 1477[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1478[label="",style="dashed", color="magenta", weight=3]; 1252 -> 11[label="",style="dashed", color="red", weight=0]; 1252[label="vwx54 < vwx57",fontsize=16,color="magenta"];1252 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1252 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1253 -> 12[label="",style="dashed", color="red", weight=0]; 1253[label="vwx54 < vwx57",fontsize=16,color="magenta"];1253 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1253 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1254 -> 13[label="",style="dashed", color="red", weight=0]; 1254[label="vwx54 < vwx57",fontsize=16,color="magenta"];1254 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1254 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1255 -> 14[label="",style="dashed", color="red", weight=0]; 1255[label="vwx54 < vwx57",fontsize=16,color="magenta"];1255 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1255 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1256 -> 15[label="",style="dashed", color="red", weight=0]; 1256[label="vwx54 < vwx57",fontsize=16,color="magenta"];1256 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1256 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1257 -> 16[label="",style="dashed", color="red", weight=0]; 1257[label="vwx54 < vwx57",fontsize=16,color="magenta"];1257 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1257 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1258 -> 17[label="",style="dashed", color="red", weight=0]; 1258[label="vwx54 < vwx57",fontsize=16,color="magenta"];1258 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1258 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1259 -> 18[label="",style="dashed", color="red", weight=0]; 1259[label="vwx54 < vwx57",fontsize=16,color="magenta"];1259 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1259 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1260[label="vwx54 == vwx57",fontsize=16,color="blue",shape="box"];3234[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1495[label="",style="solid", color="blue", weight=3]; 3235[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1496[label="",style="solid", color="blue", weight=3]; 3236[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1497[label="",style="solid", color="blue", weight=3]; 3237[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1498[label="",style="solid", color="blue", weight=3]; 3238[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1499[label="",style="solid", color="blue", weight=3]; 3239[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1500[label="",style="solid", color="blue", weight=3]; 3240[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1501[label="",style="solid", color="blue", weight=3]; 3241[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1502[label="",style="solid", color="blue", weight=3]; 3242[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1503[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"];1260 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1504[label="",style="solid", color="blue", weight=3]; 3244[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1505[label="",style="solid", color="blue", weight=3]; 3245[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1506[label="",style="solid", color="blue", weight=3]; 3246[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1507[label="",style="solid", color="blue", weight=3]; 3247[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1260 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1508[label="",style="solid", color="blue", weight=3]; 1261 -> 1809[label="",style="dashed", color="red", weight=0]; 1261[label="vwx55 < vwx58 || vwx55 == vwx58 && vwx56 <= vwx59",fontsize=16,color="magenta"];1261 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1261 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1262[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) (False || vwx139)",fontsize=16,color="black",shape="box"];1262 -> 1511[label="",style="solid", color="black", weight=3]; 1263[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) (True || vwx139)",fontsize=16,color="black",shape="box"];1263 -> 1512[label="",style="solid", color="black", weight=3]; 1264[label="primMulNat (Succ vwx3000) (Succ vwx4100)",fontsize=16,color="black",shape="box"];1264 -> 1513[label="",style="solid", color="black", weight=3]; 1265[label="primMulNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];1265 -> 1514[label="",style="solid", color="black", weight=3]; 1266[label="primMulNat Zero (Succ vwx4100)",fontsize=16,color="black",shape="box"];1266 -> 1515[label="",style="solid", color="black", weight=3]; 1267[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1267 -> 1516[label="",style="solid", color="black", weight=3]; 1268[label="vwx67",fontsize=16,color="green",shape="box"];1269[label="vwx69",fontsize=16,color="green",shape="box"];1270[label="vwx67",fontsize=16,color="green",shape="box"];1271[label="vwx69",fontsize=16,color="green",shape="box"];1272[label="vwx67",fontsize=16,color="green",shape="box"];1273[label="vwx69",fontsize=16,color="green",shape="box"];1274[label="vwx67",fontsize=16,color="green",shape="box"];1275[label="vwx69",fontsize=16,color="green",shape="box"];1276[label="vwx67",fontsize=16,color="green",shape="box"];1277[label="vwx69",fontsize=16,color="green",shape="box"];1278[label="vwx67",fontsize=16,color="green",shape="box"];1279[label="vwx69",fontsize=16,color="green",shape="box"];1280[label="vwx67",fontsize=16,color="green",shape="box"];1281[label="vwx69",fontsize=16,color="green",shape="box"];1282[label="vwx67",fontsize=16,color="green",shape="box"];1283[label="vwx69",fontsize=16,color="green",shape="box"];1284[label="vwx67",fontsize=16,color="green",shape="box"];1285[label="vwx69",fontsize=16,color="green",shape="box"];1286[label="vwx67",fontsize=16,color="green",shape="box"];1287[label="vwx69",fontsize=16,color="green",shape="box"];1288[label="vwx67",fontsize=16,color="green",shape="box"];1289[label="vwx69",fontsize=16,color="green",shape="box"];1290[label="vwx67",fontsize=16,color="green",shape="box"];1291[label="vwx69",fontsize=16,color="green",shape="box"];1292[label="vwx67",fontsize=16,color="green",shape="box"];1293[label="vwx69",fontsize=16,color="green",shape="box"];1294[label="vwx67",fontsize=16,color="green",shape="box"];1295[label="vwx69",fontsize=16,color="green",shape="box"];1296 -> 378[label="",style="dashed", color="red", weight=0]; 1296[label="vwx67 == vwx69",fontsize=16,color="magenta"];1296 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1297 -> 373[label="",style="dashed", color="red", weight=0]; 1297[label="vwx67 == vwx69",fontsize=16,color="magenta"];1297 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1298 -> 379[label="",style="dashed", color="red", weight=0]; 1298[label="vwx67 == vwx69",fontsize=16,color="magenta"];1298 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1299 -> 375[label="",style="dashed", color="red", weight=0]; 1299[label="vwx67 == vwx69",fontsize=16,color="magenta"];1299 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1300 -> 384[label="",style="dashed", color="red", weight=0]; 1300[label="vwx67 == vwx69",fontsize=16,color="magenta"];1300 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1301 -> 380[label="",style="dashed", color="red", weight=0]; 1301[label="vwx67 == vwx69",fontsize=16,color="magenta"];1301 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1302 -> 371[label="",style="dashed", color="red", weight=0]; 1302[label="vwx67 == vwx69",fontsize=16,color="magenta"];1302 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1303 -> 377[label="",style="dashed", color="red", weight=0]; 1303[label="vwx67 == vwx69",fontsize=16,color="magenta"];1303 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1304 -> 376[label="",style="dashed", color="red", weight=0]; 1304[label="vwx67 == vwx69",fontsize=16,color="magenta"];1304 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1305 -> 383[label="",style="dashed", color="red", weight=0]; 1305[label="vwx67 == vwx69",fontsize=16,color="magenta"];1305 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1306 -> 374[label="",style="dashed", color="red", weight=0]; 1306[label="vwx67 == vwx69",fontsize=16,color="magenta"];1306 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1307 -> 372[label="",style="dashed", color="red", weight=0]; 1307[label="vwx67 == vwx69",fontsize=16,color="magenta"];1307 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1308 -> 382[label="",style="dashed", color="red", weight=0]; 1308[label="vwx67 == vwx69",fontsize=16,color="magenta"];1308 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1309 -> 381[label="",style="dashed", color="red", weight=0]; 1309[label="vwx67 == vwx69",fontsize=16,color="magenta"];1309 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1544[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1179[label="",style="dashed", color="red", weight=0]; 1310[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1310 -> 1545[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1546[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1180[label="",style="dashed", color="red", weight=0]; 1311[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1311 -> 1547[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1548[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1181[label="",style="dashed", color="red", weight=0]; 1312[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1312 -> 1549[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1550[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1182[label="",style="dashed", color="red", weight=0]; 1313[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1313 -> 1551[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1552[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1183[label="",style="dashed", color="red", weight=0]; 1314[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1314 -> 1553[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1554[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1184[label="",style="dashed", color="red", weight=0]; 1315[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1315 -> 1555[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1556[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1185[label="",style="dashed", color="red", weight=0]; 1316[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1316 -> 1557[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1558[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1186[label="",style="dashed", color="red", weight=0]; 1317[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1317 -> 1559[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1187[label="",style="dashed", color="red", weight=0]; 1318[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1318 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1562[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1188[label="",style="dashed", color="red", weight=0]; 1319[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1319 -> 1563[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1189[label="",style="dashed", color="red", weight=0]; 1320[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1320 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1320 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1190[label="",style="dashed", color="red", weight=0]; 1321[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1321 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1321 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1191[label="",style="dashed", color="red", weight=0]; 1322[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1322 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1322 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1192[label="",style="dashed", color="red", weight=0]; 1323[label="vwx68 <= vwx70",fontsize=16,color="magenta"];1323 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1323 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1324[label="compare1 (vwx117,vwx118) (vwx119,vwx120) vwx122",fontsize=16,color="burlywood",shape="triangle"];3248[label="vwx122/False",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 1573[label="",style="solid", color="burlywood", weight=3]; 3249[label="vwx122/True",fontsize=10,color="white",style="solid",shape="box"];1324 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 1574[label="",style="solid", color="burlywood", weight=3]; 1325 -> 1324[label="",style="dashed", color="red", weight=0]; 1325[label="compare1 (vwx117,vwx118) (vwx119,vwx120) True",fontsize=16,color="magenta"];1325 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1326[label="vwx400",fontsize=16,color="green",shape="box"];1327[label="vwx300",fontsize=16,color="green",shape="box"];1328[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3250[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];1328 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 1576[label="",style="solid", color="burlywood", weight=3]; 3251[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];1328 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 1577[label="",style="solid", color="burlywood", weight=3]; 1329[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3252[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1578[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1579[label="",style="solid", color="blue", weight=3]; 3254[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1580[label="",style="solid", color="blue", weight=3]; 3255[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1581[label="",style="solid", color="blue", weight=3]; 3256[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1582[label="",style="solid", color="blue", weight=3]; 3257[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1583[label="",style="solid", color="blue", weight=3]; 3258[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1584[label="",style="solid", color="blue", weight=3]; 3259[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1585[label="",style="solid", color="blue", weight=3]; 3260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1586[label="",style="solid", color="blue", weight=3]; 3261[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1587[label="",style="solid", color="blue", weight=3]; 3262[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1588[label="",style="solid", color="blue", weight=3]; 3263[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1589[label="",style="solid", color="blue", weight=3]; 3264[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1590[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1591[label="",style="solid", color="blue", weight=3]; 1330 -> 375[label="",style="dashed", color="red", weight=0]; 1330[label="vwx301 == vwx401",fontsize=16,color="magenta"];1330 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1331 -> 371[label="",style="dashed", color="red", weight=0]; 1331[label="vwx300 == vwx400",fontsize=16,color="magenta"];1331 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1595[label="",style="dashed", color="magenta", weight=3]; 1332 -> 372[label="",style="dashed", color="red", weight=0]; 1332[label="vwx300 == vwx400",fontsize=16,color="magenta"];1332 -> 1596[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1597[label="",style="dashed", color="magenta", weight=3]; 1333 -> 373[label="",style="dashed", color="red", weight=0]; 1333[label="vwx300 == vwx400",fontsize=16,color="magenta"];1333 -> 1598[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1599[label="",style="dashed", color="magenta", weight=3]; 1334 -> 374[label="",style="dashed", color="red", weight=0]; 1334[label="vwx300 == vwx400",fontsize=16,color="magenta"];1334 -> 1600[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1601[label="",style="dashed", color="magenta", weight=3]; 1335 -> 375[label="",style="dashed", color="red", weight=0]; 1335[label="vwx300 == vwx400",fontsize=16,color="magenta"];1335 -> 1602[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1603[label="",style="dashed", color="magenta", weight=3]; 1336 -> 376[label="",style="dashed", color="red", weight=0]; 1336[label="vwx300 == vwx400",fontsize=16,color="magenta"];1336 -> 1604[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1605[label="",style="dashed", color="magenta", weight=3]; 1337 -> 377[label="",style="dashed", color="red", weight=0]; 1337[label="vwx300 == vwx400",fontsize=16,color="magenta"];1337 -> 1606[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1607[label="",style="dashed", color="magenta", weight=3]; 1338 -> 378[label="",style="dashed", color="red", weight=0]; 1338[label="vwx300 == vwx400",fontsize=16,color="magenta"];1338 -> 1608[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1339 -> 379[label="",style="dashed", color="red", weight=0]; 1339[label="vwx300 == vwx400",fontsize=16,color="magenta"];1339 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1611[label="",style="dashed", color="magenta", weight=3]; 1340 -> 380[label="",style="dashed", color="red", weight=0]; 1340[label="vwx300 == vwx400",fontsize=16,color="magenta"];1340 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1613[label="",style="dashed", color="magenta", weight=3]; 1341 -> 381[label="",style="dashed", color="red", weight=0]; 1341[label="vwx300 == vwx400",fontsize=16,color="magenta"];1341 -> 1614[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1615[label="",style="dashed", color="magenta", weight=3]; 1342 -> 382[label="",style="dashed", color="red", weight=0]; 1342[label="vwx300 == vwx400",fontsize=16,color="magenta"];1342 -> 1616[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1617[label="",style="dashed", color="magenta", weight=3]; 1343 -> 383[label="",style="dashed", color="red", weight=0]; 1343[label="vwx300 == vwx400",fontsize=16,color="magenta"];1343 -> 1618[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1619[label="",style="dashed", color="magenta", weight=3]; 1344 -> 384[label="",style="dashed", color="red", weight=0]; 1344[label="vwx300 == vwx400",fontsize=16,color="magenta"];1344 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1621[label="",style="dashed", color="magenta", weight=3]; 1345 -> 371[label="",style="dashed", color="red", weight=0]; 1345[label="vwx300 == vwx400",fontsize=16,color="magenta"];1345 -> 1622[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1623[label="",style="dashed", color="magenta", weight=3]; 1346 -> 372[label="",style="dashed", color="red", weight=0]; 1346[label="vwx300 == vwx400",fontsize=16,color="magenta"];1346 -> 1624[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1347 -> 373[label="",style="dashed", color="red", weight=0]; 1347[label="vwx300 == vwx400",fontsize=16,color="magenta"];1347 -> 1626[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1627[label="",style="dashed", color="magenta", weight=3]; 1348 -> 374[label="",style="dashed", color="red", weight=0]; 1348[label="vwx300 == vwx400",fontsize=16,color="magenta"];1348 -> 1628[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1629[label="",style="dashed", color="magenta", weight=3]; 1349 -> 375[label="",style="dashed", color="red", weight=0]; 1349[label="vwx300 == vwx400",fontsize=16,color="magenta"];1349 -> 1630[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1631[label="",style="dashed", color="magenta", weight=3]; 1350 -> 376[label="",style="dashed", color="red", weight=0]; 1350[label="vwx300 == vwx400",fontsize=16,color="magenta"];1350 -> 1632[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1351 -> 377[label="",style="dashed", color="red", weight=0]; 1351[label="vwx300 == vwx400",fontsize=16,color="magenta"];1351 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1352 -> 378[label="",style="dashed", color="red", weight=0]; 1352[label="vwx300 == vwx400",fontsize=16,color="magenta"];1352 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1637[label="",style="dashed", color="magenta", weight=3]; 1353 -> 379[label="",style="dashed", color="red", weight=0]; 1353[label="vwx300 == vwx400",fontsize=16,color="magenta"];1353 -> 1638[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1354 -> 380[label="",style="dashed", color="red", weight=0]; 1354[label="vwx300 == vwx400",fontsize=16,color="magenta"];1354 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1355 -> 381[label="",style="dashed", color="red", weight=0]; 1355[label="vwx300 == vwx400",fontsize=16,color="magenta"];1355 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1356 -> 382[label="",style="dashed", color="red", weight=0]; 1356[label="vwx300 == vwx400",fontsize=16,color="magenta"];1356 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1357 -> 383[label="",style="dashed", color="red", weight=0]; 1357[label="vwx300 == vwx400",fontsize=16,color="magenta"];1357 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1358 -> 384[label="",style="dashed", color="red", weight=0]; 1358[label="vwx300 == vwx400",fontsize=16,color="magenta"];1358 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1359[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3266[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1650[label="",style="solid", color="blue", weight=3]; 3267[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1359 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1651[label="",style="solid", color="blue", weight=3]; 1360[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3268[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1652[label="",style="solid", color="blue", weight=3]; 3269[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1360 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1653[label="",style="solid", color="blue", weight=3]; 1361[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1654[label="",style="solid", color="blue", weight=3]; 3271[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1655[label="",style="solid", color="blue", weight=3]; 3272[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1656[label="",style="solid", color="blue", weight=3]; 3273[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1657[label="",style="solid", color="blue", weight=3]; 3274[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1658[label="",style="solid", color="blue", weight=3]; 3275[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1659[label="",style="solid", color="blue", weight=3]; 3276[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 1660[label="",style="solid", color="blue", weight=3]; 3277[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 1661[label="",style="solid", color="blue", weight=3]; 3278[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 1662[label="",style="solid", color="blue", weight=3]; 3279[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1663[label="",style="solid", color="blue", weight=3]; 3280[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1664[label="",style="solid", color="blue", weight=3]; 3281[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1665[label="",style="solid", color="blue", weight=3]; 3282[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1666[label="",style="solid", color="blue", weight=3]; 3283[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1361 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1667[label="",style="solid", color="blue", weight=3]; 1362[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3284[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1668[label="",style="solid", color="blue", weight=3]; 3285[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1669[label="",style="solid", color="blue", weight=3]; 3286[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1670[label="",style="solid", color="blue", weight=3]; 3287[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1671[label="",style="solid", color="blue", weight=3]; 3288[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1672[label="",style="solid", color="blue", weight=3]; 3289[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1673[label="",style="solid", color="blue", weight=3]; 3290[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1674[label="",style="solid", color="blue", weight=3]; 3291[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1675[label="",style="solid", color="blue", weight=3]; 3292[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1676[label="",style="solid", color="blue", weight=3]; 3293[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1677[label="",style="solid", color="blue", weight=3]; 3294[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1678[label="",style="solid", color="blue", weight=3]; 3295[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1679[label="",style="solid", color="blue", weight=3]; 3296[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1680[label="",style="solid", color="blue", weight=3]; 3297[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1681[label="",style="solid", color="blue", weight=3]; 1363 -> 371[label="",style="dashed", color="red", weight=0]; 1363[label="vwx300 == vwx400",fontsize=16,color="magenta"];1363 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1363 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1364 -> 372[label="",style="dashed", color="red", weight=0]; 1364[label="vwx300 == vwx400",fontsize=16,color="magenta"];1364 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1364 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1365 -> 373[label="",style="dashed", color="red", weight=0]; 1365[label="vwx300 == vwx400",fontsize=16,color="magenta"];1365 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1366 -> 374[label="",style="dashed", color="red", weight=0]; 1366[label="vwx300 == vwx400",fontsize=16,color="magenta"];1366 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1366 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1367 -> 375[label="",style="dashed", color="red", weight=0]; 1367[label="vwx300 == vwx400",fontsize=16,color="magenta"];1367 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1368 -> 376[label="",style="dashed", color="red", weight=0]; 1368[label="vwx300 == vwx400",fontsize=16,color="magenta"];1368 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1369 -> 377[label="",style="dashed", color="red", weight=0]; 1369[label="vwx300 == vwx400",fontsize=16,color="magenta"];1369 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1370 -> 378[label="",style="dashed", color="red", weight=0]; 1370[label="vwx300 == vwx400",fontsize=16,color="magenta"];1370 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1371 -> 379[label="",style="dashed", color="red", weight=0]; 1371[label="vwx300 == vwx400",fontsize=16,color="magenta"];1371 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1372 -> 380[label="",style="dashed", color="red", weight=0]; 1372[label="vwx300 == vwx400",fontsize=16,color="magenta"];1372 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1373 -> 381[label="",style="dashed", color="red", weight=0]; 1373[label="vwx300 == vwx400",fontsize=16,color="magenta"];1373 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1374 -> 382[label="",style="dashed", color="red", weight=0]; 1374[label="vwx300 == vwx400",fontsize=16,color="magenta"];1374 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1375 -> 383[label="",style="dashed", color="red", weight=0]; 1375[label="vwx300 == vwx400",fontsize=16,color="magenta"];1375 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1376 -> 384[label="",style="dashed", color="red", weight=0]; 1376[label="vwx300 == vwx400",fontsize=16,color="magenta"];1376 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1377 -> 382[label="",style="dashed", color="red", weight=0]; 1377[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1377 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1378[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3298[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 1712[label="",style="solid", color="burlywood", weight=3]; 3299[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1378 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 1713[label="",style="solid", color="burlywood", weight=3]; 1379[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];1379 -> 1714[label="",style="solid", color="black", weight=3]; 1380[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3300[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 1715[label="",style="solid", color="burlywood", weight=3]; 3301[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1380 -> 3301[label="",style="solid", color="burlywood", weight=9]; 3301 -> 1716[label="",style="solid", color="burlywood", weight=3]; 1381[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3302[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3302[label="",style="solid", color="burlywood", weight=9]; 3302 -> 1717[label="",style="solid", color="burlywood", weight=3]; 3303[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1381 -> 3303[label="",style="solid", color="burlywood", weight=9]; 3303 -> 1718[label="",style="solid", color="burlywood", weight=3]; 1382[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];1382 -> 1719[label="",style="solid", color="black", weight=3]; 1383[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3304[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3304[label="",style="solid", color="burlywood", weight=9]; 3304 -> 1720[label="",style="solid", color="burlywood", weight=3]; 3305[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1383 -> 3305[label="",style="solid", color="burlywood", weight=9]; 3305 -> 1721[label="",style="solid", color="burlywood", weight=3]; 1384[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3306[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3306[label="",style="solid", color="burlywood", weight=9]; 3306 -> 1722[label="",style="solid", color="burlywood", weight=3]; 3307[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1384 -> 3307[label="",style="solid", color="burlywood", weight=9]; 3307 -> 1723[label="",style="solid", color="burlywood", weight=3]; 1385[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3308[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3308[label="",style="solid", color="burlywood", weight=9]; 3308 -> 1724[label="",style="solid", color="burlywood", weight=3]; 3309[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3309[label="",style="solid", color="burlywood", weight=9]; 3309 -> 1725[label="",style="solid", color="burlywood", weight=3]; 1386[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3310[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1726[label="",style="solid", color="blue", weight=3]; 3311[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1727[label="",style="solid", color="blue", weight=3]; 3312[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1728[label="",style="solid", color="blue", weight=3]; 3313[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1729[label="",style="solid", color="blue", weight=3]; 3314[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1730[label="",style="solid", color="blue", weight=3]; 3315[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1731[label="",style="solid", color="blue", weight=3]; 3316[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1732[label="",style="solid", color="blue", weight=3]; 3317[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1733[label="",style="solid", color="blue", weight=3]; 3318[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1734[label="",style="solid", color="blue", weight=3]; 3319[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1735[label="",style="solid", color="blue", weight=3]; 3320[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1736[label="",style="solid", color="blue", weight=3]; 3321[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1737[label="",style="solid", color="blue", weight=3]; 3322[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1738[label="",style="solid", color="blue", weight=3]; 3323[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1386 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1739[label="",style="solid", color="blue", weight=3]; 1387 -> 851[label="",style="dashed", color="red", weight=0]; 1387[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];1387 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1388 -> 382[label="",style="dashed", color="red", weight=0]; 1388[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];1388 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1744[label="",style="dashed", color="red", weight=0]; 1389[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1389 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1744[label="",style="dashed", color="red", weight=0]; 1390[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1390 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1391[label="(vwx290,vwx291) <= vwx30",fontsize=16,color="burlywood",shape="box"];3324[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];1391 -> 3324[label="",style="solid", color="burlywood", weight=9]; 3324 -> 1753[label="",style="solid", color="burlywood", weight=3]; 1392 -> 1744[label="",style="dashed", color="red", weight=0]; 1392[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1392 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1744[label="",style="dashed", color="red", weight=0]; 1393[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1393 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1394[label="Nothing <= vwx30",fontsize=16,color="burlywood",shape="box"];3325[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3325[label="",style="solid", color="burlywood", weight=9]; 3325 -> 1754[label="",style="solid", color="burlywood", weight=3]; 3326[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];1394 -> 3326[label="",style="solid", color="burlywood", weight=9]; 3326 -> 1755[label="",style="solid", color="burlywood", weight=3]; 1395[label="Just vwx290 <= vwx30",fontsize=16,color="burlywood",shape="box"];3327[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3327[label="",style="solid", color="burlywood", weight=9]; 3327 -> 1756[label="",style="solid", color="burlywood", weight=3]; 3328[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];1395 -> 3328[label="",style="solid", color="burlywood", weight=9]; 3328 -> 1757[label="",style="solid", color="burlywood", weight=3]; 1396[label="False <= vwx30",fontsize=16,color="burlywood",shape="box"];3329[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3329[label="",style="solid", color="burlywood", weight=9]; 3329 -> 1758[label="",style="solid", color="burlywood", weight=3]; 3330[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];1396 -> 3330[label="",style="solid", color="burlywood", weight=9]; 3330 -> 1759[label="",style="solid", color="burlywood", weight=3]; 1397[label="True <= vwx30",fontsize=16,color="burlywood",shape="box"];3331[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3331[label="",style="solid", color="burlywood", weight=9]; 3331 -> 1760[label="",style="solid", color="burlywood", weight=3]; 3332[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];1397 -> 3332[label="",style="solid", color="burlywood", weight=9]; 3332 -> 1761[label="",style="solid", color="burlywood", weight=3]; 1398 -> 1744[label="",style="dashed", color="red", weight=0]; 1398[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1398 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1399[label="Left vwx290 <= vwx30",fontsize=16,color="burlywood",shape="box"];3333[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3333[label="",style="solid", color="burlywood", weight=9]; 3333 -> 1762[label="",style="solid", color="burlywood", weight=3]; 3334[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];1399 -> 3334[label="",style="solid", color="burlywood", weight=9]; 3334 -> 1763[label="",style="solid", color="burlywood", weight=3]; 1400[label="Right vwx290 <= vwx30",fontsize=16,color="burlywood",shape="box"];3335[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];1400 -> 3335[label="",style="solid", color="burlywood", weight=9]; 3335 -> 1764[label="",style="solid", color="burlywood", weight=3]; 3336[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];1400 -> 3336[label="",style="solid", color="burlywood", weight=9]; 3336 -> 1765[label="",style="solid", color="burlywood", weight=3]; 1401[label="(vwx290,vwx291,vwx292) <= vwx30",fontsize=16,color="burlywood",shape="box"];3337[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];1401 -> 3337[label="",style="solid", color="burlywood", weight=9]; 3337 -> 1766[label="",style="solid", color="burlywood", weight=3]; 1402 -> 1744[label="",style="dashed", color="red", weight=0]; 1402[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1402 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1403[label="LT <= vwx30",fontsize=16,color="burlywood",shape="box"];3338[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3338[label="",style="solid", color="burlywood", weight=9]; 3338 -> 1767[label="",style="solid", color="burlywood", weight=3]; 3339[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3339[label="",style="solid", color="burlywood", weight=9]; 3339 -> 1768[label="",style="solid", color="burlywood", weight=3]; 3340[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 1769[label="",style="solid", color="burlywood", weight=3]; 1404[label="EQ <= vwx30",fontsize=16,color="burlywood",shape="box"];3341[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];1404 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 1770[label="",style="solid", color="burlywood", weight=3]; 3342[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];1404 -> 3342[label="",style="solid", color="burlywood", weight=9]; 3342 -> 1771[label="",style="solid", color="burlywood", weight=3]; 3343[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];1404 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 1772[label="",style="solid", color="burlywood", weight=3]; 1405[label="GT <= vwx30",fontsize=16,color="burlywood",shape="box"];3344[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 1773[label="",style="solid", color="burlywood", weight=3]; 3345[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 1774[label="",style="solid", color="burlywood", weight=3]; 3346[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];1405 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 1775[label="",style="solid", color="burlywood", weight=3]; 1406 -> 1744[label="",style="dashed", color="red", weight=0]; 1406[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1406 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1744[label="",style="dashed", color="red", weight=0]; 1407[label="compare vwx29 vwx30 /= GT",fontsize=16,color="magenta"];1407 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1408[label="compare0 (Just vwx90) (Just vwx91) True",fontsize=16,color="black",shape="box"];1408 -> 1776[label="",style="solid", color="black", weight=3]; 1409[label="vwx36",fontsize=16,color="green",shape="box"];1410[label="vwx37",fontsize=16,color="green",shape="box"];1411[label="vwx36",fontsize=16,color="green",shape="box"];1412[label="vwx37",fontsize=16,color="green",shape="box"];1413[label="vwx36",fontsize=16,color="green",shape="box"];1414[label="vwx37",fontsize=16,color="green",shape="box"];1415[label="vwx36",fontsize=16,color="green",shape="box"];1416[label="vwx37",fontsize=16,color="green",shape="box"];1417[label="vwx36",fontsize=16,color="green",shape="box"];1418[label="vwx37",fontsize=16,color="green",shape="box"];1419[label="vwx36",fontsize=16,color="green",shape="box"];1420[label="vwx37",fontsize=16,color="green",shape="box"];1421[label="vwx36",fontsize=16,color="green",shape="box"];1422[label="vwx37",fontsize=16,color="green",shape="box"];1423[label="vwx36",fontsize=16,color="green",shape="box"];1424[label="vwx37",fontsize=16,color="green",shape="box"];1425[label="vwx36",fontsize=16,color="green",shape="box"];1426[label="vwx37",fontsize=16,color="green",shape="box"];1427[label="vwx36",fontsize=16,color="green",shape="box"];1428[label="vwx37",fontsize=16,color="green",shape="box"];1429[label="vwx36",fontsize=16,color="green",shape="box"];1430[label="vwx37",fontsize=16,color="green",shape="box"];1431[label="vwx36",fontsize=16,color="green",shape="box"];1432[label="vwx37",fontsize=16,color="green",shape="box"];1433[label="vwx36",fontsize=16,color="green",shape="box"];1434[label="vwx37",fontsize=16,color="green",shape="box"];1435[label="vwx36",fontsize=16,color="green",shape="box"];1436[label="vwx37",fontsize=16,color="green",shape="box"];1437[label="compare0 (Left vwx97) (Left vwx98) True",fontsize=16,color="black",shape="box"];1437 -> 1777[label="",style="solid", color="black", weight=3]; 1438[label="vwx43",fontsize=16,color="green",shape="box"];1439[label="vwx44",fontsize=16,color="green",shape="box"];1440[label="vwx43",fontsize=16,color="green",shape="box"];1441[label="vwx44",fontsize=16,color="green",shape="box"];1442[label="vwx43",fontsize=16,color="green",shape="box"];1443[label="vwx44",fontsize=16,color="green",shape="box"];1444[label="vwx43",fontsize=16,color="green",shape="box"];1445[label="vwx44",fontsize=16,color="green",shape="box"];1446[label="vwx43",fontsize=16,color="green",shape="box"];1447[label="vwx44",fontsize=16,color="green",shape="box"];1448[label="vwx43",fontsize=16,color="green",shape="box"];1449[label="vwx44",fontsize=16,color="green",shape="box"];1450[label="vwx43",fontsize=16,color="green",shape="box"];1451[label="vwx44",fontsize=16,color="green",shape="box"];1452[label="vwx43",fontsize=16,color="green",shape="box"];1453[label="vwx44",fontsize=16,color="green",shape="box"];1454[label="vwx43",fontsize=16,color="green",shape="box"];1455[label="vwx44",fontsize=16,color="green",shape="box"];1456[label="vwx43",fontsize=16,color="green",shape="box"];1457[label="vwx44",fontsize=16,color="green",shape="box"];1458[label="vwx43",fontsize=16,color="green",shape="box"];1459[label="vwx44",fontsize=16,color="green",shape="box"];1460[label="vwx43",fontsize=16,color="green",shape="box"];1461[label="vwx44",fontsize=16,color="green",shape="box"];1462[label="vwx43",fontsize=16,color="green",shape="box"];1463[label="vwx44",fontsize=16,color="green",shape="box"];1464[label="vwx43",fontsize=16,color="green",shape="box"];1465[label="vwx44",fontsize=16,color="green",shape="box"];1466[label="compare0 (Right vwx105) (Right vwx106) True",fontsize=16,color="black",shape="box"];1466 -> 1778[label="",style="solid", color="black", weight=3]; 1467[label="vwx54",fontsize=16,color="green",shape="box"];1468[label="vwx57",fontsize=16,color="green",shape="box"];1469[label="vwx54",fontsize=16,color="green",shape="box"];1470[label="vwx57",fontsize=16,color="green",shape="box"];1471[label="vwx54",fontsize=16,color="green",shape="box"];1472[label="vwx57",fontsize=16,color="green",shape="box"];1473[label="vwx54",fontsize=16,color="green",shape="box"];1474[label="vwx57",fontsize=16,color="green",shape="box"];1475[label="vwx54",fontsize=16,color="green",shape="box"];1476[label="vwx57",fontsize=16,color="green",shape="box"];1477[label="vwx54",fontsize=16,color="green",shape="box"];1478[label="vwx57",fontsize=16,color="green",shape="box"];1479[label="vwx54",fontsize=16,color="green",shape="box"];1480[label="vwx57",fontsize=16,color="green",shape="box"];1481[label="vwx54",fontsize=16,color="green",shape="box"];1482[label="vwx57",fontsize=16,color="green",shape="box"];1483[label="vwx54",fontsize=16,color="green",shape="box"];1484[label="vwx57",fontsize=16,color="green",shape="box"];1485[label="vwx54",fontsize=16,color="green",shape="box"];1486[label="vwx57",fontsize=16,color="green",shape="box"];1487[label="vwx54",fontsize=16,color="green",shape="box"];1488[label="vwx57",fontsize=16,color="green",shape="box"];1489[label="vwx54",fontsize=16,color="green",shape="box"];1490[label="vwx57",fontsize=16,color="green",shape="box"];1491[label="vwx54",fontsize=16,color="green",shape="box"];1492[label="vwx57",fontsize=16,color="green",shape="box"];1493[label="vwx54",fontsize=16,color="green",shape="box"];1494[label="vwx57",fontsize=16,color="green",shape="box"];1495 -> 378[label="",style="dashed", color="red", weight=0]; 1495[label="vwx54 == vwx57",fontsize=16,color="magenta"];1495 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1495 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1496 -> 373[label="",style="dashed", color="red", weight=0]; 1496[label="vwx54 == vwx57",fontsize=16,color="magenta"];1496 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1496 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1497 -> 379[label="",style="dashed", color="red", weight=0]; 1497[label="vwx54 == vwx57",fontsize=16,color="magenta"];1497 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1497 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1498 -> 375[label="",style="dashed", color="red", weight=0]; 1498[label="vwx54 == vwx57",fontsize=16,color="magenta"];1498 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1498 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1499 -> 384[label="",style="dashed", color="red", weight=0]; 1499[label="vwx54 == vwx57",fontsize=16,color="magenta"];1499 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1499 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1500 -> 380[label="",style="dashed", color="red", weight=0]; 1500[label="vwx54 == vwx57",fontsize=16,color="magenta"];1500 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1501 -> 371[label="",style="dashed", color="red", weight=0]; 1501[label="vwx54 == vwx57",fontsize=16,color="magenta"];1501 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1502 -> 377[label="",style="dashed", color="red", weight=0]; 1502[label="vwx54 == vwx57",fontsize=16,color="magenta"];1502 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1503 -> 376[label="",style="dashed", color="red", weight=0]; 1503[label="vwx54 == vwx57",fontsize=16,color="magenta"];1503 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1504 -> 383[label="",style="dashed", color="red", weight=0]; 1504[label="vwx54 == vwx57",fontsize=16,color="magenta"];1504 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1505 -> 374[label="",style="dashed", color="red", weight=0]; 1505[label="vwx54 == vwx57",fontsize=16,color="magenta"];1505 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1506 -> 372[label="",style="dashed", color="red", weight=0]; 1506[label="vwx54 == vwx57",fontsize=16,color="magenta"];1506 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1507 -> 382[label="",style="dashed", color="red", weight=0]; 1507[label="vwx54 == vwx57",fontsize=16,color="magenta"];1507 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1508 -> 381[label="",style="dashed", color="red", weight=0]; 1508[label="vwx54 == vwx57",fontsize=16,color="magenta"];1508 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1508 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1810[label="vwx55 < vwx58",fontsize=16,color="blue",shape="box"];3347[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1814[label="",style="solid", color="blue", weight=3]; 3348[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1815[label="",style="solid", color="blue", weight=3]; 3349[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1816[label="",style="solid", color="blue", weight=3]; 3350[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1817[label="",style="solid", color="blue", weight=3]; 3351[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1818[label="",style="solid", color="blue", weight=3]; 3352[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1819[label="",style="solid", color="blue", weight=3]; 3353[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1820[label="",style="solid", color="blue", weight=3]; 3354[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1821[label="",style="solid", color="blue", weight=3]; 3355[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1822[label="",style="solid", color="blue", weight=3]; 3356[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1823[label="",style="solid", color="blue", weight=3]; 3357[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1824[label="",style="solid", color="blue", weight=3]; 3358[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1825[label="",style="solid", color="blue", weight=3]; 3359[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1826[label="",style="solid", color="blue", weight=3]; 3360[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1810 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1827[label="",style="solid", color="blue", weight=3]; 1811 -> 851[label="",style="dashed", color="red", weight=0]; 1811[label="vwx55 == vwx58 && vwx56 <= vwx59",fontsize=16,color="magenta"];1811 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1811 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1809[label="vwx145 || vwx146",fontsize=16,color="burlywood",shape="triangle"];3361[label="vwx145/False",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3361[label="",style="solid", color="burlywood", weight=9]; 3361 -> 1830[label="",style="solid", color="burlywood", weight=3]; 3362[label="vwx145/True",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3362[label="",style="solid", color="burlywood", weight=9]; 3362 -> 1831[label="",style="solid", color="burlywood", weight=3]; 1511[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) vwx139",fontsize=16,color="burlywood",shape="triangle"];3363[label="vwx139/False",fontsize=10,color="white",style="solid",shape="box"];1511 -> 3363[label="",style="solid", color="burlywood", weight=9]; 3363 -> 1832[label="",style="solid", color="burlywood", weight=3]; 3364[label="vwx139/True",fontsize=10,color="white",style="solid",shape="box"];1511 -> 3364[label="",style="solid", color="burlywood", weight=9]; 3364 -> 1833[label="",style="solid", color="burlywood", weight=3]; 1512 -> 1511[label="",style="dashed", color="red", weight=0]; 1512[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) True",fontsize=16,color="magenta"];1512 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1513 -> 1835[label="",style="dashed", color="red", weight=0]; 1513[label="primPlusNat (primMulNat vwx3000 (Succ vwx4100)) (Succ vwx4100)",fontsize=16,color="magenta"];1513 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1514[label="Zero",fontsize=16,color="green",shape="box"];1515[label="Zero",fontsize=16,color="green",shape="box"];1516[label="Zero",fontsize=16,color="green",shape="box"];1517[label="vwx69",fontsize=16,color="green",shape="box"];1518[label="vwx67",fontsize=16,color="green",shape="box"];1519[label="vwx69",fontsize=16,color="green",shape="box"];1520[label="vwx67",fontsize=16,color="green",shape="box"];1521[label="vwx69",fontsize=16,color="green",shape="box"];1522[label="vwx67",fontsize=16,color="green",shape="box"];1523[label="vwx69",fontsize=16,color="green",shape="box"];1524[label="vwx67",fontsize=16,color="green",shape="box"];1525[label="vwx69",fontsize=16,color="green",shape="box"];1526[label="vwx67",fontsize=16,color="green",shape="box"];1527[label="vwx69",fontsize=16,color="green",shape="box"];1528[label="vwx67",fontsize=16,color="green",shape="box"];1529[label="vwx69",fontsize=16,color="green",shape="box"];1530[label="vwx67",fontsize=16,color="green",shape="box"];1531[label="vwx69",fontsize=16,color="green",shape="box"];1532[label="vwx67",fontsize=16,color="green",shape="box"];1533[label="vwx69",fontsize=16,color="green",shape="box"];1534[label="vwx67",fontsize=16,color="green",shape="box"];1535[label="vwx69",fontsize=16,color="green",shape="box"];1536[label="vwx67",fontsize=16,color="green",shape="box"];1537[label="vwx69",fontsize=16,color="green",shape="box"];1538[label="vwx67",fontsize=16,color="green",shape="box"];1539[label="vwx69",fontsize=16,color="green",shape="box"];1540[label="vwx67",fontsize=16,color="green",shape="box"];1541[label="vwx69",fontsize=16,color="green",shape="box"];1542[label="vwx67",fontsize=16,color="green",shape="box"];1543[label="vwx69",fontsize=16,color="green",shape="box"];1544[label="vwx67",fontsize=16,color="green",shape="box"];1545[label="vwx68",fontsize=16,color="green",shape="box"];1546[label="vwx70",fontsize=16,color="green",shape="box"];1547[label="vwx68",fontsize=16,color="green",shape="box"];1548[label="vwx70",fontsize=16,color="green",shape="box"];1549[label="vwx68",fontsize=16,color="green",shape="box"];1550[label="vwx70",fontsize=16,color="green",shape="box"];1551[label="vwx68",fontsize=16,color="green",shape="box"];1552[label="vwx70",fontsize=16,color="green",shape="box"];1553[label="vwx68",fontsize=16,color="green",shape="box"];1554[label="vwx70",fontsize=16,color="green",shape="box"];1555[label="vwx68",fontsize=16,color="green",shape="box"];1556[label="vwx70",fontsize=16,color="green",shape="box"];1557[label="vwx68",fontsize=16,color="green",shape="box"];1558[label="vwx70",fontsize=16,color="green",shape="box"];1559[label="vwx68",fontsize=16,color="green",shape="box"];1560[label="vwx70",fontsize=16,color="green",shape="box"];1561[label="vwx68",fontsize=16,color="green",shape="box"];1562[label="vwx70",fontsize=16,color="green",shape="box"];1563[label="vwx68",fontsize=16,color="green",shape="box"];1564[label="vwx70",fontsize=16,color="green",shape="box"];1565[label="vwx68",fontsize=16,color="green",shape="box"];1566[label="vwx70",fontsize=16,color="green",shape="box"];1567[label="vwx68",fontsize=16,color="green",shape="box"];1568[label="vwx70",fontsize=16,color="green",shape="box"];1569[label="vwx68",fontsize=16,color="green",shape="box"];1570[label="vwx70",fontsize=16,color="green",shape="box"];1571[label="vwx68",fontsize=16,color="green",shape="box"];1572[label="vwx70",fontsize=16,color="green",shape="box"];1573[label="compare1 (vwx117,vwx118) (vwx119,vwx120) False",fontsize=16,color="black",shape="box"];1573 -> 1837[label="",style="solid", color="black", weight=3]; 1574[label="compare1 (vwx117,vwx118) (vwx119,vwx120) True",fontsize=16,color="black",shape="box"];1574 -> 1838[label="",style="solid", color="black", weight=3]; 1575[label="True",fontsize=16,color="green",shape="box"];1576[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3365[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3365[label="",style="solid", color="burlywood", weight=9]; 3365 -> 1839[label="",style="solid", color="burlywood", weight=3]; 3366[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1576 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 1840[label="",style="solid", color="burlywood", weight=3]; 1577[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];3367[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];1577 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1841[label="",style="solid", color="burlywood", weight=3]; 3368[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];1577 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 1842[label="",style="solid", color="burlywood", weight=3]; 1578 -> 371[label="",style="dashed", color="red", weight=0]; 1578[label="vwx300 == vwx400",fontsize=16,color="magenta"];1578 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1579 -> 372[label="",style="dashed", color="red", weight=0]; 1579[label="vwx300 == vwx400",fontsize=16,color="magenta"];1579 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1580 -> 373[label="",style="dashed", color="red", weight=0]; 1580[label="vwx300 == vwx400",fontsize=16,color="magenta"];1580 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1581 -> 374[label="",style="dashed", color="red", weight=0]; 1581[label="vwx300 == vwx400",fontsize=16,color="magenta"];1581 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1582 -> 375[label="",style="dashed", color="red", weight=0]; 1582[label="vwx300 == vwx400",fontsize=16,color="magenta"];1582 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1583 -> 376[label="",style="dashed", color="red", weight=0]; 1583[label="vwx300 == vwx400",fontsize=16,color="magenta"];1583 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1584 -> 377[label="",style="dashed", color="red", weight=0]; 1584[label="vwx300 == vwx400",fontsize=16,color="magenta"];1584 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1585 -> 378[label="",style="dashed", color="red", weight=0]; 1585[label="vwx300 == vwx400",fontsize=16,color="magenta"];1585 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1586 -> 379[label="",style="dashed", color="red", weight=0]; 1586[label="vwx300 == vwx400",fontsize=16,color="magenta"];1586 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1587 -> 380[label="",style="dashed", color="red", weight=0]; 1587[label="vwx300 == vwx400",fontsize=16,color="magenta"];1587 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1588 -> 381[label="",style="dashed", color="red", weight=0]; 1588[label="vwx300 == vwx400",fontsize=16,color="magenta"];1588 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1589 -> 382[label="",style="dashed", color="red", weight=0]; 1589[label="vwx300 == vwx400",fontsize=16,color="magenta"];1589 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1590 -> 383[label="",style="dashed", color="red", weight=0]; 1590[label="vwx300 == vwx400",fontsize=16,color="magenta"];1590 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1591 -> 384[label="",style="dashed", color="red", weight=0]; 1591[label="vwx300 == vwx400",fontsize=16,color="magenta"];1591 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1592[label="vwx401",fontsize=16,color="green",shape="box"];1593[label="vwx301",fontsize=16,color="green",shape="box"];1594[label="vwx400",fontsize=16,color="green",shape="box"];1595[label="vwx300",fontsize=16,color="green",shape="box"];1596[label="vwx400",fontsize=16,color="green",shape="box"];1597[label="vwx300",fontsize=16,color="green",shape="box"];1598[label="vwx400",fontsize=16,color="green",shape="box"];1599[label="vwx300",fontsize=16,color="green",shape="box"];1600[label="vwx400",fontsize=16,color="green",shape="box"];1601[label="vwx300",fontsize=16,color="green",shape="box"];1602[label="vwx400",fontsize=16,color="green",shape="box"];1603[label="vwx300",fontsize=16,color="green",shape="box"];1604[label="vwx400",fontsize=16,color="green",shape="box"];1605[label="vwx300",fontsize=16,color="green",shape="box"];1606[label="vwx400",fontsize=16,color="green",shape="box"];1607[label="vwx300",fontsize=16,color="green",shape="box"];1608[label="vwx400",fontsize=16,color="green",shape="box"];1609[label="vwx300",fontsize=16,color="green",shape="box"];1610[label="vwx400",fontsize=16,color="green",shape="box"];1611[label="vwx300",fontsize=16,color="green",shape="box"];1612[label="vwx400",fontsize=16,color="green",shape="box"];1613[label="vwx300",fontsize=16,color="green",shape="box"];1614[label="vwx400",fontsize=16,color="green",shape="box"];1615[label="vwx300",fontsize=16,color="green",shape="box"];1616[label="vwx400",fontsize=16,color="green",shape="box"];1617[label="vwx300",fontsize=16,color="green",shape="box"];1618[label="vwx400",fontsize=16,color="green",shape="box"];1619[label="vwx300",fontsize=16,color="green",shape="box"];1620[label="vwx400",fontsize=16,color="green",shape="box"];1621[label="vwx300",fontsize=16,color="green",shape="box"];1622[label="vwx400",fontsize=16,color="green",shape="box"];1623[label="vwx300",fontsize=16,color="green",shape="box"];1624[label="vwx400",fontsize=16,color="green",shape="box"];1625[label="vwx300",fontsize=16,color="green",shape="box"];1626[label="vwx400",fontsize=16,color="green",shape="box"];1627[label="vwx300",fontsize=16,color="green",shape="box"];1628[label="vwx400",fontsize=16,color="green",shape="box"];1629[label="vwx300",fontsize=16,color="green",shape="box"];1630[label="vwx400",fontsize=16,color="green",shape="box"];1631[label="vwx300",fontsize=16,color="green",shape="box"];1632[label="vwx400",fontsize=16,color="green",shape="box"];1633[label="vwx300",fontsize=16,color="green",shape="box"];1634[label="vwx400",fontsize=16,color="green",shape="box"];1635[label="vwx300",fontsize=16,color="green",shape="box"];1636[label="vwx400",fontsize=16,color="green",shape="box"];1637[label="vwx300",fontsize=16,color="green",shape="box"];1638[label="vwx400",fontsize=16,color="green",shape="box"];1639[label="vwx300",fontsize=16,color="green",shape="box"];1640[label="vwx400",fontsize=16,color="green",shape="box"];1641[label="vwx300",fontsize=16,color="green",shape="box"];1642[label="vwx400",fontsize=16,color="green",shape="box"];1643[label="vwx300",fontsize=16,color="green",shape="box"];1644[label="vwx400",fontsize=16,color="green",shape="box"];1645[label="vwx300",fontsize=16,color="green",shape="box"];1646[label="vwx400",fontsize=16,color="green",shape="box"];1647[label="vwx300",fontsize=16,color="green",shape="box"];1648[label="vwx400",fontsize=16,color="green",shape="box"];1649[label="vwx300",fontsize=16,color="green",shape="box"];1650 -> 373[label="",style="dashed", color="red", weight=0]; 1650[label="vwx300 == vwx400",fontsize=16,color="magenta"];1650 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1650 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1651 -> 382[label="",style="dashed", color="red", weight=0]; 1651[label="vwx300 == vwx400",fontsize=16,color="magenta"];1651 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1651 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1652 -> 373[label="",style="dashed", color="red", weight=0]; 1652[label="vwx301 == vwx401",fontsize=16,color="magenta"];1652 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1652 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1653 -> 382[label="",style="dashed", color="red", weight=0]; 1653[label="vwx301 == vwx401",fontsize=16,color="magenta"];1653 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1653 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1654 -> 371[label="",style="dashed", color="red", weight=0]; 1654[label="vwx300 == vwx400",fontsize=16,color="magenta"];1654 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1654 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1655 -> 372[label="",style="dashed", color="red", weight=0]; 1655[label="vwx300 == vwx400",fontsize=16,color="magenta"];1655 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1655 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1656 -> 373[label="",style="dashed", color="red", weight=0]; 1656[label="vwx300 == vwx400",fontsize=16,color="magenta"];1656 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1656 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1657 -> 374[label="",style="dashed", color="red", weight=0]; 1657[label="vwx300 == vwx400",fontsize=16,color="magenta"];1657 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1657 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1658 -> 375[label="",style="dashed", color="red", weight=0]; 1658[label="vwx300 == vwx400",fontsize=16,color="magenta"];1658 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1658 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1659 -> 376[label="",style="dashed", color="red", weight=0]; 1659[label="vwx300 == vwx400",fontsize=16,color="magenta"];1659 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1659 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1660 -> 377[label="",style="dashed", color="red", weight=0]; 1660[label="vwx300 == vwx400",fontsize=16,color="magenta"];1660 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1660 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1661 -> 378[label="",style="dashed", color="red", weight=0]; 1661[label="vwx300 == vwx400",fontsize=16,color="magenta"];1661 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1661 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1662 -> 379[label="",style="dashed", color="red", weight=0]; 1662[label="vwx300 == vwx400",fontsize=16,color="magenta"];1662 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1662 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1663 -> 380[label="",style="dashed", color="red", weight=0]; 1663[label="vwx300 == vwx400",fontsize=16,color="magenta"];1663 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1663 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1664 -> 381[label="",style="dashed", color="red", weight=0]; 1664[label="vwx300 == vwx400",fontsize=16,color="magenta"];1664 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1664 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1665 -> 382[label="",style="dashed", color="red", weight=0]; 1665[label="vwx300 == vwx400",fontsize=16,color="magenta"];1665 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1665 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1666 -> 383[label="",style="dashed", color="red", weight=0]; 1666[label="vwx300 == vwx400",fontsize=16,color="magenta"];1666 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1666 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1667 -> 384[label="",style="dashed", color="red", weight=0]; 1667[label="vwx300 == vwx400",fontsize=16,color="magenta"];1667 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1667 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1668 -> 371[label="",style="dashed", color="red", weight=0]; 1668[label="vwx301 == vwx401",fontsize=16,color="magenta"];1668 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1668 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1669 -> 372[label="",style="dashed", color="red", weight=0]; 1669[label="vwx301 == vwx401",fontsize=16,color="magenta"];1669 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1669 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1670 -> 373[label="",style="dashed", color="red", weight=0]; 1670[label="vwx301 == vwx401",fontsize=16,color="magenta"];1670 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1670 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1671 -> 374[label="",style="dashed", color="red", weight=0]; 1671[label="vwx301 == vwx401",fontsize=16,color="magenta"];1671 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1671 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1672 -> 375[label="",style="dashed", color="red", weight=0]; 1672[label="vwx301 == vwx401",fontsize=16,color="magenta"];1672 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1672 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1673 -> 376[label="",style="dashed", color="red", weight=0]; 1673[label="vwx301 == vwx401",fontsize=16,color="magenta"];1673 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1673 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1674 -> 377[label="",style="dashed", color="red", weight=0]; 1674[label="vwx301 == vwx401",fontsize=16,color="magenta"];1674 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1674 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1675 -> 378[label="",style="dashed", color="red", weight=0]; 1675[label="vwx301 == vwx401",fontsize=16,color="magenta"];1675 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1675 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1676 -> 379[label="",style="dashed", color="red", weight=0]; 1676[label="vwx301 == vwx401",fontsize=16,color="magenta"];1676 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1676 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1677 -> 380[label="",style="dashed", color="red", weight=0]; 1677[label="vwx301 == vwx401",fontsize=16,color="magenta"];1677 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1677 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1678 -> 381[label="",style="dashed", color="red", weight=0]; 1678[label="vwx301 == vwx401",fontsize=16,color="magenta"];1678 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1678 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1679 -> 382[label="",style="dashed", color="red", weight=0]; 1679[label="vwx301 == vwx401",fontsize=16,color="magenta"];1679 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1679 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1680 -> 383[label="",style="dashed", color="red", weight=0]; 1680[label="vwx301 == vwx401",fontsize=16,color="magenta"];1680 -> 1931[label="",style="dashed", color="magenta", weight=3]; 1680 -> 1932[label="",style="dashed", color="magenta", weight=3]; 1681 -> 384[label="",style="dashed", color="red", weight=0]; 1681[label="vwx301 == vwx401",fontsize=16,color="magenta"];1681 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1681 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1682[label="vwx400",fontsize=16,color="green",shape="box"];1683[label="vwx300",fontsize=16,color="green",shape="box"];1684[label="vwx400",fontsize=16,color="green",shape="box"];1685[label="vwx300",fontsize=16,color="green",shape="box"];1686[label="vwx400",fontsize=16,color="green",shape="box"];1687[label="vwx300",fontsize=16,color="green",shape="box"];1688[label="vwx400",fontsize=16,color="green",shape="box"];1689[label="vwx300",fontsize=16,color="green",shape="box"];1690[label="vwx400",fontsize=16,color="green",shape="box"];1691[label="vwx300",fontsize=16,color="green",shape="box"];1692[label="vwx400",fontsize=16,color="green",shape="box"];1693[label="vwx300",fontsize=16,color="green",shape="box"];1694[label="vwx400",fontsize=16,color="green",shape="box"];1695[label="vwx300",fontsize=16,color="green",shape="box"];1696[label="vwx400",fontsize=16,color="green",shape="box"];1697[label="vwx300",fontsize=16,color="green",shape="box"];1698[label="vwx400",fontsize=16,color="green",shape="box"];1699[label="vwx300",fontsize=16,color="green",shape="box"];1700[label="vwx400",fontsize=16,color="green",shape="box"];1701[label="vwx300",fontsize=16,color="green",shape="box"];1702[label="vwx400",fontsize=16,color="green",shape="box"];1703[label="vwx300",fontsize=16,color="green",shape="box"];1704[label="vwx400",fontsize=16,color="green",shape="box"];1705[label="vwx300",fontsize=16,color="green",shape="box"];1706[label="vwx400",fontsize=16,color="green",shape="box"];1707[label="vwx300",fontsize=16,color="green",shape="box"];1708[label="vwx400",fontsize=16,color="green",shape="box"];1709[label="vwx300",fontsize=16,color="green",shape="box"];1710 -> 241[label="",style="dashed", color="red", weight=0]; 1710[label="vwx301 * vwx400",fontsize=16,color="magenta"];1710 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1710 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1711 -> 241[label="",style="dashed", color="red", weight=0]; 1711[label="vwx300 * vwx401",fontsize=16,color="magenta"];1711 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1711 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1712[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1712 -> 1939[label="",style="solid", color="black", weight=3]; 1713[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1713 -> 1940[label="",style="solid", color="black", weight=3]; 1714[label="False",fontsize=16,color="green",shape="box"];1715[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1715 -> 1941[label="",style="solid", color="black", weight=3]; 1716[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1716 -> 1942[label="",style="solid", color="black", weight=3]; 1717[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1717 -> 1943[label="",style="solid", color="black", weight=3]; 1718[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1718 -> 1944[label="",style="solid", color="black", weight=3]; 1719[label="False",fontsize=16,color="green",shape="box"];1720[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1720 -> 1945[label="",style="solid", color="black", weight=3]; 1721[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1721 -> 1946[label="",style="solid", color="black", weight=3]; 1722[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];1722 -> 1947[label="",style="solid", color="black", weight=3]; 1723[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1723 -> 1948[label="",style="solid", color="black", weight=3]; 1724[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];1724 -> 1949[label="",style="solid", color="black", weight=3]; 1725[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1725 -> 1950[label="",style="solid", color="black", weight=3]; 1726 -> 371[label="",style="dashed", color="red", weight=0]; 1726[label="vwx300 == vwx400",fontsize=16,color="magenta"];1726 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1727 -> 372[label="",style="dashed", color="red", weight=0]; 1727[label="vwx300 == vwx400",fontsize=16,color="magenta"];1727 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1728 -> 373[label="",style="dashed", color="red", weight=0]; 1728[label="vwx300 == vwx400",fontsize=16,color="magenta"];1728 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1729 -> 374[label="",style="dashed", color="red", weight=0]; 1729[label="vwx300 == vwx400",fontsize=16,color="magenta"];1729 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1730 -> 375[label="",style="dashed", color="red", weight=0]; 1730[label="vwx300 == vwx400",fontsize=16,color="magenta"];1730 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1731 -> 376[label="",style="dashed", color="red", weight=0]; 1731[label="vwx300 == vwx400",fontsize=16,color="magenta"];1731 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1732 -> 377[label="",style="dashed", color="red", weight=0]; 1732[label="vwx300 == vwx400",fontsize=16,color="magenta"];1732 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1733 -> 378[label="",style="dashed", color="red", weight=0]; 1733[label="vwx300 == vwx400",fontsize=16,color="magenta"];1733 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1734 -> 379[label="",style="dashed", color="red", weight=0]; 1734[label="vwx300 == vwx400",fontsize=16,color="magenta"];1734 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1735 -> 380[label="",style="dashed", color="red", weight=0]; 1735[label="vwx300 == vwx400",fontsize=16,color="magenta"];1735 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1735 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1736 -> 381[label="",style="dashed", color="red", weight=0]; 1736[label="vwx300 == vwx400",fontsize=16,color="magenta"];1736 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1736 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1737 -> 382[label="",style="dashed", color="red", weight=0]; 1737[label="vwx300 == vwx400",fontsize=16,color="magenta"];1737 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1737 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1738 -> 383[label="",style="dashed", color="red", weight=0]; 1738[label="vwx300 == vwx400",fontsize=16,color="magenta"];1738 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1738 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1739 -> 384[label="",style="dashed", color="red", weight=0]; 1739[label="vwx300 == vwx400",fontsize=16,color="magenta"];1739 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1739 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1740[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3369[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1979[label="",style="solid", color="blue", weight=3]; 3370[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1980[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1981[label="",style="solid", color="blue", weight=3]; 3372[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1982[label="",style="solid", color="blue", weight=3]; 3373[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1983[label="",style="solid", color="blue", weight=3]; 3374[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1984[label="",style="solid", color="blue", weight=3]; 3375[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1985[label="",style="solid", color="blue", weight=3]; 3376[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1986[label="",style="solid", color="blue", weight=3]; 3377[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1987[label="",style="solid", color="blue", weight=3]; 3378[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1988[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1989[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1990[label="",style="solid", color="blue", weight=3]; 3381[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1991[label="",style="solid", color="blue", weight=3]; 3382[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1740 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1992[label="",style="solid", color="blue", weight=3]; 1741[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3383[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1993[label="",style="solid", color="blue", weight=3]; 3384[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1994[label="",style="solid", color="blue", weight=3]; 3385[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1995[label="",style="solid", color="blue", weight=3]; 3386[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1996[label="",style="solid", color="blue", weight=3]; 3387[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1997[label="",style="solid", color="blue", weight=3]; 3388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1998[label="",style="solid", color="blue", weight=3]; 3389[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1999[label="",style="solid", color="blue", weight=3]; 3390[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2000[label="",style="solid", color="blue", weight=3]; 3391[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2001[label="",style="solid", color="blue", weight=3]; 3392[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2002[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2003[label="",style="solid", color="blue", weight=3]; 3394[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2004[label="",style="solid", color="blue", weight=3]; 3395[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2005[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1741 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2006[label="",style="solid", color="blue", weight=3]; 1742 -> 241[label="",style="dashed", color="red", weight=0]; 1742[label="vwx301 * vwx400",fontsize=16,color="magenta"];1742 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1743 -> 241[label="",style="dashed", color="red", weight=0]; 1743[label="vwx300 * vwx401",fontsize=16,color="magenta"];1743 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1743 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1745 -> 94[label="",style="dashed", color="red", weight=0]; 1745[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1745 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1745 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1744[label="vwx141 /= GT",fontsize=16,color="black",shape="triangle"];1744 -> 2013[label="",style="solid", color="black", weight=3]; 1746 -> 95[label="",style="dashed", color="red", weight=0]; 1746[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1746 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1746 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1753[label="(vwx290,vwx291) <= (vwx300,vwx301)",fontsize=16,color="black",shape="box"];1753 -> 2016[label="",style="solid", color="black", weight=3]; 1747 -> 97[label="",style="dashed", color="red", weight=0]; 1747[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1747 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1747 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1748 -> 98[label="",style="dashed", color="red", weight=0]; 1748[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1748 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1748 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1754[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1754 -> 2021[label="",style="solid", color="black", weight=3]; 1755[label="Nothing <= Just vwx300",fontsize=16,color="black",shape="box"];1755 -> 2022[label="",style="solid", color="black", weight=3]; 1756[label="Just vwx290 <= Nothing",fontsize=16,color="black",shape="box"];1756 -> 2023[label="",style="solid", color="black", weight=3]; 1757[label="Just vwx290 <= Just vwx300",fontsize=16,color="black",shape="box"];1757 -> 2024[label="",style="solid", color="black", weight=3]; 1758[label="False <= False",fontsize=16,color="black",shape="box"];1758 -> 2025[label="",style="solid", color="black", weight=3]; 1759[label="False <= True",fontsize=16,color="black",shape="box"];1759 -> 2026[label="",style="solid", color="black", weight=3]; 1760[label="True <= False",fontsize=16,color="black",shape="box"];1760 -> 2027[label="",style="solid", color="black", weight=3]; 1761[label="True <= True",fontsize=16,color="black",shape="box"];1761 -> 2028[label="",style="solid", color="black", weight=3]; 1749 -> 101[label="",style="dashed", color="red", weight=0]; 1749[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1749 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1749 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1762[label="Left vwx290 <= Left vwx300",fontsize=16,color="black",shape="box"];1762 -> 2031[label="",style="solid", color="black", weight=3]; 1763[label="Left vwx290 <= Right vwx300",fontsize=16,color="black",shape="box"];1763 -> 2032[label="",style="solid", color="black", weight=3]; 1764[label="Right vwx290 <= Left vwx300",fontsize=16,color="black",shape="box"];1764 -> 2033[label="",style="solid", color="black", weight=3]; 1765[label="Right vwx290 <= Right vwx300",fontsize=16,color="black",shape="box"];1765 -> 2034[label="",style="solid", color="black", weight=3]; 1766[label="(vwx290,vwx291,vwx292) <= (vwx300,vwx301,vwx302)",fontsize=16,color="black",shape="box"];1766 -> 2035[label="",style="solid", color="black", weight=3]; 1750 -> 104[label="",style="dashed", color="red", weight=0]; 1750[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1750 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1750 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1767[label="LT <= LT",fontsize=16,color="black",shape="box"];1767 -> 2038[label="",style="solid", color="black", weight=3]; 1768[label="LT <= EQ",fontsize=16,color="black",shape="box"];1768 -> 2039[label="",style="solid", color="black", weight=3]; 1769[label="LT <= GT",fontsize=16,color="black",shape="box"];1769 -> 2040[label="",style="solid", color="black", weight=3]; 1770[label="EQ <= LT",fontsize=16,color="black",shape="box"];1770 -> 2041[label="",style="solid", color="black", weight=3]; 1771[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1771 -> 2042[label="",style="solid", color="black", weight=3]; 1772[label="EQ <= GT",fontsize=16,color="black",shape="box"];1772 -> 2043[label="",style="solid", color="black", weight=3]; 1773[label="GT <= LT",fontsize=16,color="black",shape="box"];1773 -> 2044[label="",style="solid", color="black", weight=3]; 1774[label="GT <= EQ",fontsize=16,color="black",shape="box"];1774 -> 2045[label="",style="solid", color="black", weight=3]; 1775[label="GT <= GT",fontsize=16,color="black",shape="box"];1775 -> 2046[label="",style="solid", color="black", weight=3]; 1751 -> 106[label="",style="dashed", color="red", weight=0]; 1751[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1751 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1751 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1752 -> 107[label="",style="dashed", color="red", weight=0]; 1752[label="compare vwx29 vwx30",fontsize=16,color="magenta"];1752 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1752 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1776[label="GT",fontsize=16,color="green",shape="box"];1777[label="GT",fontsize=16,color="green",shape="box"];1778[label="GT",fontsize=16,color="green",shape="box"];1779[label="vwx57",fontsize=16,color="green",shape="box"];1780[label="vwx54",fontsize=16,color="green",shape="box"];1781[label="vwx57",fontsize=16,color="green",shape="box"];1782[label="vwx54",fontsize=16,color="green",shape="box"];1783[label="vwx57",fontsize=16,color="green",shape="box"];1784[label="vwx54",fontsize=16,color="green",shape="box"];1785[label="vwx57",fontsize=16,color="green",shape="box"];1786[label="vwx54",fontsize=16,color="green",shape="box"];1787[label="vwx57",fontsize=16,color="green",shape="box"];1788[label="vwx54",fontsize=16,color="green",shape="box"];1789[label="vwx57",fontsize=16,color="green",shape="box"];1790[label="vwx54",fontsize=16,color="green",shape="box"];1791[label="vwx57",fontsize=16,color="green",shape="box"];1792[label="vwx54",fontsize=16,color="green",shape="box"];1793[label="vwx57",fontsize=16,color="green",shape="box"];1794[label="vwx54",fontsize=16,color="green",shape="box"];1795[label="vwx57",fontsize=16,color="green",shape="box"];1796[label="vwx54",fontsize=16,color="green",shape="box"];1797[label="vwx57",fontsize=16,color="green",shape="box"];1798[label="vwx54",fontsize=16,color="green",shape="box"];1799[label="vwx57",fontsize=16,color="green",shape="box"];1800[label="vwx54",fontsize=16,color="green",shape="box"];1801[label="vwx57",fontsize=16,color="green",shape="box"];1802[label="vwx54",fontsize=16,color="green",shape="box"];1803[label="vwx57",fontsize=16,color="green",shape="box"];1804[label="vwx54",fontsize=16,color="green",shape="box"];1805[label="vwx57",fontsize=16,color="green",shape="box"];1806[label="vwx54",fontsize=16,color="green",shape="box"];1814 -> 5[label="",style="dashed", color="red", weight=0]; 1814[label="vwx55 < vwx58",fontsize=16,color="magenta"];1814 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1814 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1815 -> 6[label="",style="dashed", color="red", weight=0]; 1815[label="vwx55 < vwx58",fontsize=16,color="magenta"];1815 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1815 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1816 -> 7[label="",style="dashed", color="red", weight=0]; 1816[label="vwx55 < vwx58",fontsize=16,color="magenta"];1816 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1816 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1817 -> 8[label="",style="dashed", color="red", weight=0]; 1817[label="vwx55 < vwx58",fontsize=16,color="magenta"];1817 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1817 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1818 -> 9[label="",style="dashed", color="red", weight=0]; 1818[label="vwx55 < vwx58",fontsize=16,color="magenta"];1818 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1818 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1819 -> 10[label="",style="dashed", color="red", weight=0]; 1819[label="vwx55 < vwx58",fontsize=16,color="magenta"];1819 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1819 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1820 -> 11[label="",style="dashed", color="red", weight=0]; 1820[label="vwx55 < vwx58",fontsize=16,color="magenta"];1820 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1820 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1821 -> 12[label="",style="dashed", color="red", weight=0]; 1821[label="vwx55 < vwx58",fontsize=16,color="magenta"];1821 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1821 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1822 -> 13[label="",style="dashed", color="red", weight=0]; 1822[label="vwx55 < vwx58",fontsize=16,color="magenta"];1822 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1822 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1823 -> 14[label="",style="dashed", color="red", weight=0]; 1823[label="vwx55 < vwx58",fontsize=16,color="magenta"];1823 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1823 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1824 -> 15[label="",style="dashed", color="red", weight=0]; 1824[label="vwx55 < vwx58",fontsize=16,color="magenta"];1824 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1824 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1825 -> 16[label="",style="dashed", color="red", weight=0]; 1825[label="vwx55 < vwx58",fontsize=16,color="magenta"];1825 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1825 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1826 -> 17[label="",style="dashed", color="red", weight=0]; 1826[label="vwx55 < vwx58",fontsize=16,color="magenta"];1826 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1826 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1827 -> 18[label="",style="dashed", color="red", weight=0]; 1827[label="vwx55 < vwx58",fontsize=16,color="magenta"];1827 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1827 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1828[label="vwx55 == vwx58",fontsize=16,color="blue",shape="box"];3397[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2079[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2080[label="",style="solid", color="blue", weight=3]; 3399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2081[label="",style="solid", color="blue", weight=3]; 3400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2082[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2083[label="",style="solid", color="blue", weight=3]; 3402[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2084[label="",style="solid", color="blue", weight=3]; 3403[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2085[label="",style="solid", color="blue", weight=3]; 3404[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2086[label="",style="solid", color="blue", weight=3]; 3405[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2087[label="",style="solid", color="blue", weight=3]; 3406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2088[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 2089[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 2090[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 2091[label="",style="solid", color="blue", weight=3]; 3410[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1828 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 2092[label="",style="solid", color="blue", weight=3]; 1829[label="vwx56 <= vwx59",fontsize=16,color="blue",shape="box"];3411[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 2093[label="",style="solid", color="blue", weight=3]; 3412[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 2094[label="",style="solid", color="blue", weight=3]; 3413[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 2095[label="",style="solid", color="blue", weight=3]; 3414[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 2096[label="",style="solid", color="blue", weight=3]; 3415[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 2097[label="",style="solid", color="blue", weight=3]; 3416[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 2098[label="",style="solid", color="blue", weight=3]; 3417[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2099[label="",style="solid", color="blue", weight=3]; 3418[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2100[label="",style="solid", color="blue", weight=3]; 3419[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2101[label="",style="solid", color="blue", weight=3]; 3420[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2102[label="",style="solid", color="blue", weight=3]; 3421[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2103[label="",style="solid", color="blue", weight=3]; 3422[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2104[label="",style="solid", color="blue", weight=3]; 3423[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2105[label="",style="solid", color="blue", weight=3]; 3424[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1829 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 2106[label="",style="solid", color="blue", weight=3]; 1830[label="False || vwx146",fontsize=16,color="black",shape="box"];1830 -> 2107[label="",style="solid", color="black", weight=3]; 1831[label="True || vwx146",fontsize=16,color="black",shape="box"];1831 -> 2108[label="",style="solid", color="black", weight=3]; 1832[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) False",fontsize=16,color="black",shape="box"];1832 -> 2109[label="",style="solid", color="black", weight=3]; 1833[label="compare1 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) True",fontsize=16,color="black",shape="box"];1833 -> 2110[label="",style="solid", color="black", weight=3]; 1834[label="True",fontsize=16,color="green",shape="box"];1836 -> 915[label="",style="dashed", color="red", weight=0]; 1836[label="primMulNat vwx3000 (Succ vwx4100)",fontsize=16,color="magenta"];1836 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1836 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1835[label="primPlusNat vwx147 (Succ vwx4100)",fontsize=16,color="burlywood",shape="triangle"];3425[label="vwx147/Succ vwx1470",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2113[label="",style="solid", color="burlywood", weight=3]; 3426[label="vwx147/Zero",fontsize=10,color="white",style="solid",shape="box"];1835 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2114[label="",style="solid", color="burlywood", weight=3]; 1837[label="compare0 (vwx117,vwx118) (vwx119,vwx120) otherwise",fontsize=16,color="black",shape="box"];1837 -> 2115[label="",style="solid", color="black", weight=3]; 1838[label="LT",fontsize=16,color="green",shape="box"];1839[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];1839 -> 2116[label="",style="solid", color="black", weight=3]; 1840[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];1840 -> 2117[label="",style="solid", color="black", weight=3]; 1841[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];1841 -> 2118[label="",style="solid", color="black", weight=3]; 1842[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1842 -> 2119[label="",style="solid", color="black", weight=3]; 1843[label="vwx400",fontsize=16,color="green",shape="box"];1844[label="vwx300",fontsize=16,color="green",shape="box"];1845[label="vwx400",fontsize=16,color="green",shape="box"];1846[label="vwx300",fontsize=16,color="green",shape="box"];1847[label="vwx400",fontsize=16,color="green",shape="box"];1848[label="vwx300",fontsize=16,color="green",shape="box"];1849[label="vwx400",fontsize=16,color="green",shape="box"];1850[label="vwx300",fontsize=16,color="green",shape="box"];1851[label="vwx400",fontsize=16,color="green",shape="box"];1852[label="vwx300",fontsize=16,color="green",shape="box"];1853[label="vwx400",fontsize=16,color="green",shape="box"];1854[label="vwx300",fontsize=16,color="green",shape="box"];1855[label="vwx400",fontsize=16,color="green",shape="box"];1856[label="vwx300",fontsize=16,color="green",shape="box"];1857[label="vwx400",fontsize=16,color="green",shape="box"];1858[label="vwx300",fontsize=16,color="green",shape="box"];1859[label="vwx400",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="vwx300",fontsize=16,color="green",shape="box"];1863[label="vwx400",fontsize=16,color="green",shape="box"];1864[label="vwx300",fontsize=16,color="green",shape="box"];1865[label="vwx400",fontsize=16,color="green",shape="box"];1866[label="vwx300",fontsize=16,color="green",shape="box"];1867[label="vwx400",fontsize=16,color="green",shape="box"];1868[label="vwx300",fontsize=16,color="green",shape="box"];1869[label="vwx400",fontsize=16,color="green",shape="box"];1870[label="vwx300",fontsize=16,color="green",shape="box"];1871[label="vwx400",fontsize=16,color="green",shape="box"];1872[label="vwx300",fontsize=16,color="green",shape="box"];1873[label="vwx400",fontsize=16,color="green",shape="box"];1874[label="vwx300",fontsize=16,color="green",shape="box"];1875[label="vwx401",fontsize=16,color="green",shape="box"];1876[label="vwx301",fontsize=16,color="green",shape="box"];1877[label="vwx401",fontsize=16,color="green",shape="box"];1878[label="vwx301",fontsize=16,color="green",shape="box"];1879[label="vwx400",fontsize=16,color="green",shape="box"];1880[label="vwx300",fontsize=16,color="green",shape="box"];1881[label="vwx400",fontsize=16,color="green",shape="box"];1882[label="vwx300",fontsize=16,color="green",shape="box"];1883[label="vwx400",fontsize=16,color="green",shape="box"];1884[label="vwx300",fontsize=16,color="green",shape="box"];1885[label="vwx400",fontsize=16,color="green",shape="box"];1886[label="vwx300",fontsize=16,color="green",shape="box"];1887[label="vwx400",fontsize=16,color="green",shape="box"];1888[label="vwx300",fontsize=16,color="green",shape="box"];1889[label="vwx400",fontsize=16,color="green",shape="box"];1890[label="vwx300",fontsize=16,color="green",shape="box"];1891[label="vwx400",fontsize=16,color="green",shape="box"];1892[label="vwx300",fontsize=16,color="green",shape="box"];1893[label="vwx400",fontsize=16,color="green",shape="box"];1894[label="vwx300",fontsize=16,color="green",shape="box"];1895[label="vwx400",fontsize=16,color="green",shape="box"];1896[label="vwx300",fontsize=16,color="green",shape="box"];1897[label="vwx400",fontsize=16,color="green",shape="box"];1898[label="vwx300",fontsize=16,color="green",shape="box"];1899[label="vwx400",fontsize=16,color="green",shape="box"];1900[label="vwx300",fontsize=16,color="green",shape="box"];1901[label="vwx400",fontsize=16,color="green",shape="box"];1902[label="vwx300",fontsize=16,color="green",shape="box"];1903[label="vwx400",fontsize=16,color="green",shape="box"];1904[label="vwx300",fontsize=16,color="green",shape="box"];1905[label="vwx400",fontsize=16,color="green",shape="box"];1906[label="vwx300",fontsize=16,color="green",shape="box"];1907[label="vwx401",fontsize=16,color="green",shape="box"];1908[label="vwx301",fontsize=16,color="green",shape="box"];1909[label="vwx401",fontsize=16,color="green",shape="box"];1910[label="vwx301",fontsize=16,color="green",shape="box"];1911[label="vwx401",fontsize=16,color="green",shape="box"];1912[label="vwx301",fontsize=16,color="green",shape="box"];1913[label="vwx401",fontsize=16,color="green",shape="box"];1914[label="vwx301",fontsize=16,color="green",shape="box"];1915[label="vwx401",fontsize=16,color="green",shape="box"];1916[label="vwx301",fontsize=16,color="green",shape="box"];1917[label="vwx401",fontsize=16,color="green",shape="box"];1918[label="vwx301",fontsize=16,color="green",shape="box"];1919[label="vwx401",fontsize=16,color="green",shape="box"];1920[label="vwx301",fontsize=16,color="green",shape="box"];1921[label="vwx401",fontsize=16,color="green",shape="box"];1922[label="vwx301",fontsize=16,color="green",shape="box"];1923[label="vwx401",fontsize=16,color="green",shape="box"];1924[label="vwx301",fontsize=16,color="green",shape="box"];1925[label="vwx401",fontsize=16,color="green",shape="box"];1926[label="vwx301",fontsize=16,color="green",shape="box"];1927[label="vwx401",fontsize=16,color="green",shape="box"];1928[label="vwx301",fontsize=16,color="green",shape="box"];1929[label="vwx401",fontsize=16,color="green",shape="box"];1930[label="vwx301",fontsize=16,color="green",shape="box"];1931[label="vwx401",fontsize=16,color="green",shape="box"];1932[label="vwx301",fontsize=16,color="green",shape="box"];1933[label="vwx401",fontsize=16,color="green",shape="box"];1934[label="vwx301",fontsize=16,color="green",shape="box"];1935[label="vwx400",fontsize=16,color="green",shape="box"];1936[label="vwx301",fontsize=16,color="green",shape="box"];1937[label="vwx401",fontsize=16,color="green",shape="box"];1938[label="vwx300",fontsize=16,color="green",shape="box"];1939 -> 1328[label="",style="dashed", color="red", weight=0]; 1939[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1939 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1940[label="False",fontsize=16,color="green",shape="box"];1941[label="False",fontsize=16,color="green",shape="box"];1942[label="True",fontsize=16,color="green",shape="box"];1943[label="False",fontsize=16,color="green",shape="box"];1944[label="True",fontsize=16,color="green",shape="box"];1945 -> 1328[label="",style="dashed", color="red", weight=0]; 1945[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];1945 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1946[label="False",fontsize=16,color="green",shape="box"];1947[label="False",fontsize=16,color="green",shape="box"];1948[label="True",fontsize=16,color="green",shape="box"];1949[label="False",fontsize=16,color="green",shape="box"];1950[label="True",fontsize=16,color="green",shape="box"];1951[label="vwx400",fontsize=16,color="green",shape="box"];1952[label="vwx300",fontsize=16,color="green",shape="box"];1953[label="vwx400",fontsize=16,color="green",shape="box"];1954[label="vwx300",fontsize=16,color="green",shape="box"];1955[label="vwx400",fontsize=16,color="green",shape="box"];1956[label="vwx300",fontsize=16,color="green",shape="box"];1957[label="vwx400",fontsize=16,color="green",shape="box"];1958[label="vwx300",fontsize=16,color="green",shape="box"];1959[label="vwx400",fontsize=16,color="green",shape="box"];1960[label="vwx300",fontsize=16,color="green",shape="box"];1961[label="vwx400",fontsize=16,color="green",shape="box"];1962[label="vwx300",fontsize=16,color="green",shape="box"];1963[label="vwx400",fontsize=16,color="green",shape="box"];1964[label="vwx300",fontsize=16,color="green",shape="box"];1965[label="vwx400",fontsize=16,color="green",shape="box"];1966[label="vwx300",fontsize=16,color="green",shape="box"];1967[label="vwx400",fontsize=16,color="green",shape="box"];1968[label="vwx300",fontsize=16,color="green",shape="box"];1969[label="vwx400",fontsize=16,color="green",shape="box"];1970[label="vwx300",fontsize=16,color="green",shape="box"];1971[label="vwx400",fontsize=16,color="green",shape="box"];1972[label="vwx300",fontsize=16,color="green",shape="box"];1973[label="vwx400",fontsize=16,color="green",shape="box"];1974[label="vwx300",fontsize=16,color="green",shape="box"];1975[label="vwx400",fontsize=16,color="green",shape="box"];1976[label="vwx300",fontsize=16,color="green",shape="box"];1977[label="vwx400",fontsize=16,color="green",shape="box"];1978[label="vwx300",fontsize=16,color="green",shape="box"];1979 -> 371[label="",style="dashed", color="red", weight=0]; 1979[label="vwx301 == vwx401",fontsize=16,color="magenta"];1979 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1980 -> 372[label="",style="dashed", color="red", weight=0]; 1980[label="vwx301 == vwx401",fontsize=16,color="magenta"];1980 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1981 -> 373[label="",style="dashed", color="red", weight=0]; 1981[label="vwx301 == vwx401",fontsize=16,color="magenta"];1981 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1982 -> 374[label="",style="dashed", color="red", weight=0]; 1982[label="vwx301 == vwx401",fontsize=16,color="magenta"];1982 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1983 -> 375[label="",style="dashed", color="red", weight=0]; 1983[label="vwx301 == vwx401",fontsize=16,color="magenta"];1983 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1984 -> 376[label="",style="dashed", color="red", weight=0]; 1984[label="vwx301 == vwx401",fontsize=16,color="magenta"];1984 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1985 -> 377[label="",style="dashed", color="red", weight=0]; 1985[label="vwx301 == vwx401",fontsize=16,color="magenta"];1985 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1986 -> 378[label="",style="dashed", color="red", weight=0]; 1986[label="vwx301 == vwx401",fontsize=16,color="magenta"];1986 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1987 -> 379[label="",style="dashed", color="red", weight=0]; 1987[label="vwx301 == vwx401",fontsize=16,color="magenta"];1987 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1988 -> 380[label="",style="dashed", color="red", weight=0]; 1988[label="vwx301 == vwx401",fontsize=16,color="magenta"];1988 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1989 -> 381[label="",style="dashed", color="red", weight=0]; 1989[label="vwx301 == vwx401",fontsize=16,color="magenta"];1989 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1990 -> 382[label="",style="dashed", color="red", weight=0]; 1990[label="vwx301 == vwx401",fontsize=16,color="magenta"];1990 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1991 -> 383[label="",style="dashed", color="red", weight=0]; 1991[label="vwx301 == vwx401",fontsize=16,color="magenta"];1991 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1992 -> 384[label="",style="dashed", color="red", weight=0]; 1992[label="vwx301 == vwx401",fontsize=16,color="magenta"];1992 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1993 -> 371[label="",style="dashed", color="red", weight=0]; 1993[label="vwx302 == vwx402",fontsize=16,color="magenta"];1993 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1994 -> 372[label="",style="dashed", color="red", weight=0]; 1994[label="vwx302 == vwx402",fontsize=16,color="magenta"];1994 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1995 -> 373[label="",style="dashed", color="red", weight=0]; 1995[label="vwx302 == vwx402",fontsize=16,color="magenta"];1995 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1996 -> 374[label="",style="dashed", color="red", weight=0]; 1996[label="vwx302 == vwx402",fontsize=16,color="magenta"];1996 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1997 -> 375[label="",style="dashed", color="red", weight=0]; 1997[label="vwx302 == vwx402",fontsize=16,color="magenta"];1997 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1998 -> 376[label="",style="dashed", color="red", weight=0]; 1998[label="vwx302 == vwx402",fontsize=16,color="magenta"];1998 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1999 -> 377[label="",style="dashed", color="red", weight=0]; 1999[label="vwx302 == vwx402",fontsize=16,color="magenta"];1999 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2165[label="",style="dashed", color="magenta", weight=3]; 2000 -> 378[label="",style="dashed", color="red", weight=0]; 2000[label="vwx302 == vwx402",fontsize=16,color="magenta"];2000 -> 2166[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2167[label="",style="dashed", color="magenta", weight=3]; 2001 -> 379[label="",style="dashed", color="red", weight=0]; 2001[label="vwx302 == vwx402",fontsize=16,color="magenta"];2001 -> 2168[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2002 -> 380[label="",style="dashed", color="red", weight=0]; 2002[label="vwx302 == vwx402",fontsize=16,color="magenta"];2002 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2003 -> 381[label="",style="dashed", color="red", weight=0]; 2003[label="vwx302 == vwx402",fontsize=16,color="magenta"];2003 -> 2172[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2173[label="",style="dashed", color="magenta", weight=3]; 2004 -> 382[label="",style="dashed", color="red", weight=0]; 2004[label="vwx302 == vwx402",fontsize=16,color="magenta"];2004 -> 2174[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2175[label="",style="dashed", color="magenta", weight=3]; 2005 -> 383[label="",style="dashed", color="red", weight=0]; 2005[label="vwx302 == vwx402",fontsize=16,color="magenta"];2005 -> 2176[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2177[label="",style="dashed", color="magenta", weight=3]; 2006 -> 384[label="",style="dashed", color="red", weight=0]; 2006[label="vwx302 == vwx402",fontsize=16,color="magenta"];2006 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2007[label="vwx400",fontsize=16,color="green",shape="box"];2008[label="vwx301",fontsize=16,color="green",shape="box"];2009[label="vwx401",fontsize=16,color="green",shape="box"];2010[label="vwx300",fontsize=16,color="green",shape="box"];2011[label="vwx29",fontsize=16,color="green",shape="box"];2012[label="vwx30",fontsize=16,color="green",shape="box"];2013 -> 2180[label="",style="dashed", color="red", weight=0]; 2013[label="not (vwx141 == GT)",fontsize=16,color="magenta"];2013 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2014[label="vwx29",fontsize=16,color="green",shape="box"];2015[label="vwx30",fontsize=16,color="green",shape="box"];2016 -> 1809[label="",style="dashed", color="red", weight=0]; 2016[label="vwx290 < vwx300 || vwx290 == vwx300 && vwx291 <= vwx301",fontsize=16,color="magenta"];2016 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2017[label="vwx29",fontsize=16,color="green",shape="box"];2018[label="vwx30",fontsize=16,color="green",shape="box"];2019[label="vwx29",fontsize=16,color="green",shape="box"];2020[label="vwx30",fontsize=16,color="green",shape="box"];2021[label="True",fontsize=16,color="green",shape="box"];2022[label="True",fontsize=16,color="green",shape="box"];2023[label="False",fontsize=16,color="green",shape="box"];2024[label="vwx290 <= vwx300",fontsize=16,color="blue",shape="box"];3427[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2184[label="",style="solid", color="blue", weight=3]; 3428[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2185[label="",style="solid", color="blue", weight=3]; 3429[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2186[label="",style="solid", color="blue", weight=3]; 3430[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2187[label="",style="solid", color="blue", weight=3]; 3431[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2188[label="",style="solid", color="blue", weight=3]; 3432[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2189[label="",style="solid", color="blue", weight=3]; 3433[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2190[label="",style="solid", color="blue", weight=3]; 3434[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2191[label="",style="solid", color="blue", weight=3]; 3435[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2192[label="",style="solid", color="blue", weight=3]; 3436[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2193[label="",style="solid", color="blue", weight=3]; 3437[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2194[label="",style="solid", color="blue", weight=3]; 3438[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2195[label="",style="solid", color="blue", weight=3]; 3439[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2196[label="",style="solid", color="blue", weight=3]; 3440[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2024 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2197[label="",style="solid", color="blue", weight=3]; 2025[label="True",fontsize=16,color="green",shape="box"];2026[label="True",fontsize=16,color="green",shape="box"];2027[label="False",fontsize=16,color="green",shape="box"];2028[label="True",fontsize=16,color="green",shape="box"];2029[label="vwx29",fontsize=16,color="green",shape="box"];2030[label="vwx30",fontsize=16,color="green",shape="box"];2031[label="vwx290 <= vwx300",fontsize=16,color="blue",shape="box"];3441[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 2198[label="",style="solid", color="blue", weight=3]; 3442[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 2199[label="",style="solid", color="blue", weight=3]; 3443[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 2200[label="",style="solid", color="blue", weight=3]; 3444[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2201[label="",style="solid", color="blue", weight=3]; 3445[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2202[label="",style="solid", color="blue", weight=3]; 3446[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2203[label="",style="solid", color="blue", weight=3]; 3447[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2204[label="",style="solid", color="blue", weight=3]; 3448[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2205[label="",style="solid", color="blue", weight=3]; 3449[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2206[label="",style="solid", color="blue", weight=3]; 3450[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2207[label="",style="solid", color="blue", weight=3]; 3451[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2208[label="",style="solid", color="blue", weight=3]; 3452[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2209[label="",style="solid", color="blue", weight=3]; 3453[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2210[label="",style="solid", color="blue", weight=3]; 3454[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2211[label="",style="solid", color="blue", weight=3]; 2032[label="True",fontsize=16,color="green",shape="box"];2033[label="False",fontsize=16,color="green",shape="box"];2034[label="vwx290 <= vwx300",fontsize=16,color="blue",shape="box"];3455[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2212[label="",style="solid", color="blue", weight=3]; 3456[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 2213[label="",style="solid", color="blue", weight=3]; 3457[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 2214[label="",style="solid", color="blue", weight=3]; 3458[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 2215[label="",style="solid", color="blue", weight=3]; 3459[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 2216[label="",style="solid", color="blue", weight=3]; 3460[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 2217[label="",style="solid", color="blue", weight=3]; 3461[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 2218[label="",style="solid", color="blue", weight=3]; 3462[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 2219[label="",style="solid", color="blue", weight=3]; 3463[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 2220[label="",style="solid", color="blue", weight=3]; 3464[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 2221[label="",style="solid", color="blue", weight=3]; 3465[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 2222[label="",style="solid", color="blue", weight=3]; 3466[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2223[label="",style="solid", color="blue", weight=3]; 3467[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2224[label="",style="solid", color="blue", weight=3]; 3468[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2225[label="",style="solid", color="blue", weight=3]; 2035 -> 1809[label="",style="dashed", color="red", weight=0]; 2035[label="vwx290 < vwx300 || vwx290 == vwx300 && (vwx291 < vwx301 || vwx291 == vwx301 && vwx292 <= vwx302)",fontsize=16,color="magenta"];2035 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2035 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2036[label="vwx29",fontsize=16,color="green",shape="box"];2037[label="vwx30",fontsize=16,color="green",shape="box"];2038[label="True",fontsize=16,color="green",shape="box"];2039[label="True",fontsize=16,color="green",shape="box"];2040[label="True",fontsize=16,color="green",shape="box"];2041[label="False",fontsize=16,color="green",shape="box"];2042[label="True",fontsize=16,color="green",shape="box"];2043[label="True",fontsize=16,color="green",shape="box"];2044[label="False",fontsize=16,color="green",shape="box"];2045[label="False",fontsize=16,color="green",shape="box"];2046[label="True",fontsize=16,color="green",shape="box"];2047[label="vwx29",fontsize=16,color="green",shape="box"];2048[label="vwx30",fontsize=16,color="green",shape="box"];2049[label="vwx29",fontsize=16,color="green",shape="box"];2050[label="vwx30",fontsize=16,color="green",shape="box"];2051[label="vwx55",fontsize=16,color="green",shape="box"];2052[label="vwx58",fontsize=16,color="green",shape="box"];2053[label="vwx55",fontsize=16,color="green",shape="box"];2054[label="vwx58",fontsize=16,color="green",shape="box"];2055[label="vwx55",fontsize=16,color="green",shape="box"];2056[label="vwx58",fontsize=16,color="green",shape="box"];2057[label="vwx55",fontsize=16,color="green",shape="box"];2058[label="vwx58",fontsize=16,color="green",shape="box"];2059[label="vwx55",fontsize=16,color="green",shape="box"];2060[label="vwx58",fontsize=16,color="green",shape="box"];2061[label="vwx55",fontsize=16,color="green",shape="box"];2062[label="vwx58",fontsize=16,color="green",shape="box"];2063[label="vwx55",fontsize=16,color="green",shape="box"];2064[label="vwx58",fontsize=16,color="green",shape="box"];2065[label="vwx55",fontsize=16,color="green",shape="box"];2066[label="vwx58",fontsize=16,color="green",shape="box"];2067[label="vwx55",fontsize=16,color="green",shape="box"];2068[label="vwx58",fontsize=16,color="green",shape="box"];2069[label="vwx55",fontsize=16,color="green",shape="box"];2070[label="vwx58",fontsize=16,color="green",shape="box"];2071[label="vwx55",fontsize=16,color="green",shape="box"];2072[label="vwx58",fontsize=16,color="green",shape="box"];2073[label="vwx55",fontsize=16,color="green",shape="box"];2074[label="vwx58",fontsize=16,color="green",shape="box"];2075[label="vwx55",fontsize=16,color="green",shape="box"];2076[label="vwx58",fontsize=16,color="green",shape="box"];2077[label="vwx55",fontsize=16,color="green",shape="box"];2078[label="vwx58",fontsize=16,color="green",shape="box"];2079 -> 378[label="",style="dashed", color="red", weight=0]; 2079[label="vwx55 == vwx58",fontsize=16,color="magenta"];2079 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2080 -> 373[label="",style="dashed", color="red", weight=0]; 2080[label="vwx55 == vwx58",fontsize=16,color="magenta"];2080 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2081 -> 379[label="",style="dashed", color="red", weight=0]; 2081[label="vwx55 == vwx58",fontsize=16,color="magenta"];2081 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2082 -> 375[label="",style="dashed", color="red", weight=0]; 2082[label="vwx55 == vwx58",fontsize=16,color="magenta"];2082 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2083 -> 384[label="",style="dashed", color="red", weight=0]; 2083[label="vwx55 == vwx58",fontsize=16,color="magenta"];2083 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2084 -> 380[label="",style="dashed", color="red", weight=0]; 2084[label="vwx55 == vwx58",fontsize=16,color="magenta"];2084 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2085 -> 371[label="",style="dashed", color="red", weight=0]; 2085[label="vwx55 == vwx58",fontsize=16,color="magenta"];2085 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2086 -> 377[label="",style="dashed", color="red", weight=0]; 2086[label="vwx55 == vwx58",fontsize=16,color="magenta"];2086 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2087 -> 376[label="",style="dashed", color="red", weight=0]; 2087[label="vwx55 == vwx58",fontsize=16,color="magenta"];2087 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2088 -> 383[label="",style="dashed", color="red", weight=0]; 2088[label="vwx55 == vwx58",fontsize=16,color="magenta"];2088 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2089 -> 374[label="",style="dashed", color="red", weight=0]; 2089[label="vwx55 == vwx58",fontsize=16,color="magenta"];2089 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2090 -> 372[label="",style="dashed", color="red", weight=0]; 2090[label="vwx55 == vwx58",fontsize=16,color="magenta"];2090 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2091 -> 382[label="",style="dashed", color="red", weight=0]; 2091[label="vwx55 == vwx58",fontsize=16,color="magenta"];2091 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2092 -> 381[label="",style="dashed", color="red", weight=0]; 2092[label="vwx55 == vwx58",fontsize=16,color="magenta"];2092 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1179[label="",style="dashed", color="red", weight=0]; 2093[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2093 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2094 -> 1180[label="",style="dashed", color="red", weight=0]; 2094[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2094 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2094 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2095 -> 1181[label="",style="dashed", color="red", weight=0]; 2095[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2095 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2096 -> 1182[label="",style="dashed", color="red", weight=0]; 2096[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2096 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2097 -> 1183[label="",style="dashed", color="red", weight=0]; 2097[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2097 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2097 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2098 -> 1184[label="",style="dashed", color="red", weight=0]; 2098[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2098 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2099 -> 1185[label="",style="dashed", color="red", weight=0]; 2099[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2099 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2099 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2100 -> 1186[label="",style="dashed", color="red", weight=0]; 2100[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2100 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2101 -> 1187[label="",style="dashed", color="red", weight=0]; 2101[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2101 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2102 -> 1188[label="",style="dashed", color="red", weight=0]; 2102[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2102 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2103 -> 1189[label="",style="dashed", color="red", weight=0]; 2103[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2103 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2104 -> 1190[label="",style="dashed", color="red", weight=0]; 2104[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2104 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1191[label="",style="dashed", color="red", weight=0]; 2105[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2105 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2106 -> 1192[label="",style="dashed", color="red", weight=0]; 2106[label="vwx56 <= vwx59",fontsize=16,color="magenta"];2106 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2107[label="vwx146",fontsize=16,color="green",shape="box"];2108[label="True",fontsize=16,color="green",shape="box"];2109[label="compare0 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) otherwise",fontsize=16,color="black",shape="box"];2109 -> 2284[label="",style="solid", color="black", weight=3]; 2110[label="LT",fontsize=16,color="green",shape="box"];2111[label="Succ vwx4100",fontsize=16,color="green",shape="box"];2112[label="vwx3000",fontsize=16,color="green",shape="box"];2113[label="primPlusNat (Succ vwx1470) (Succ vwx4100)",fontsize=16,color="black",shape="box"];2113 -> 2285[label="",style="solid", color="black", weight=3]; 2114[label="primPlusNat Zero (Succ vwx4100)",fontsize=16,color="black",shape="box"];2114 -> 2286[label="",style="solid", color="black", weight=3]; 2115[label="compare0 (vwx117,vwx118) (vwx119,vwx120) True",fontsize=16,color="black",shape="box"];2115 -> 2287[label="",style="solid", color="black", weight=3]; 2116 -> 1328[label="",style="dashed", color="red", weight=0]; 2116[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];2116 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2117[label="False",fontsize=16,color="green",shape="box"];2118[label="False",fontsize=16,color="green",shape="box"];2119[label="True",fontsize=16,color="green",shape="box"];2120[label="vwx3000",fontsize=16,color="green",shape="box"];2121[label="vwx4000",fontsize=16,color="green",shape="box"];2122[label="vwx3000",fontsize=16,color="green",shape="box"];2123[label="vwx4000",fontsize=16,color="green",shape="box"];2124[label="vwx401",fontsize=16,color="green",shape="box"];2125[label="vwx301",fontsize=16,color="green",shape="box"];2126[label="vwx401",fontsize=16,color="green",shape="box"];2127[label="vwx301",fontsize=16,color="green",shape="box"];2128[label="vwx401",fontsize=16,color="green",shape="box"];2129[label="vwx301",fontsize=16,color="green",shape="box"];2130[label="vwx401",fontsize=16,color="green",shape="box"];2131[label="vwx301",fontsize=16,color="green",shape="box"];2132[label="vwx401",fontsize=16,color="green",shape="box"];2133[label="vwx301",fontsize=16,color="green",shape="box"];2134[label="vwx401",fontsize=16,color="green",shape="box"];2135[label="vwx301",fontsize=16,color="green",shape="box"];2136[label="vwx401",fontsize=16,color="green",shape="box"];2137[label="vwx301",fontsize=16,color="green",shape="box"];2138[label="vwx401",fontsize=16,color="green",shape="box"];2139[label="vwx301",fontsize=16,color="green",shape="box"];2140[label="vwx401",fontsize=16,color="green",shape="box"];2141[label="vwx301",fontsize=16,color="green",shape="box"];2142[label="vwx401",fontsize=16,color="green",shape="box"];2143[label="vwx301",fontsize=16,color="green",shape="box"];2144[label="vwx401",fontsize=16,color="green",shape="box"];2145[label="vwx301",fontsize=16,color="green",shape="box"];2146[label="vwx401",fontsize=16,color="green",shape="box"];2147[label="vwx301",fontsize=16,color="green",shape="box"];2148[label="vwx401",fontsize=16,color="green",shape="box"];2149[label="vwx301",fontsize=16,color="green",shape="box"];2150[label="vwx401",fontsize=16,color="green",shape="box"];2151[label="vwx301",fontsize=16,color="green",shape="box"];2152[label="vwx402",fontsize=16,color="green",shape="box"];2153[label="vwx302",fontsize=16,color="green",shape="box"];2154[label="vwx402",fontsize=16,color="green",shape="box"];2155[label="vwx302",fontsize=16,color="green",shape="box"];2156[label="vwx402",fontsize=16,color="green",shape="box"];2157[label="vwx302",fontsize=16,color="green",shape="box"];2158[label="vwx402",fontsize=16,color="green",shape="box"];2159[label="vwx302",fontsize=16,color="green",shape="box"];2160[label="vwx402",fontsize=16,color="green",shape="box"];2161[label="vwx302",fontsize=16,color="green",shape="box"];2162[label="vwx402",fontsize=16,color="green",shape="box"];2163[label="vwx302",fontsize=16,color="green",shape="box"];2164[label="vwx402",fontsize=16,color="green",shape="box"];2165[label="vwx302",fontsize=16,color="green",shape="box"];2166[label="vwx402",fontsize=16,color="green",shape="box"];2167[label="vwx302",fontsize=16,color="green",shape="box"];2168[label="vwx402",fontsize=16,color="green",shape="box"];2169[label="vwx302",fontsize=16,color="green",shape="box"];2170[label="vwx402",fontsize=16,color="green",shape="box"];2171[label="vwx302",fontsize=16,color="green",shape="box"];2172[label="vwx402",fontsize=16,color="green",shape="box"];2173[label="vwx302",fontsize=16,color="green",shape="box"];2174[label="vwx402",fontsize=16,color="green",shape="box"];2175[label="vwx302",fontsize=16,color="green",shape="box"];2176[label="vwx402",fontsize=16,color="green",shape="box"];2177[label="vwx302",fontsize=16,color="green",shape="box"];2178[label="vwx402",fontsize=16,color="green",shape="box"];2179[label="vwx302",fontsize=16,color="green",shape="box"];2181 -> 372[label="",style="dashed", color="red", weight=0]; 2181[label="vwx141 == GT",fontsize=16,color="magenta"];2181 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2180[label="not vwx148",fontsize=16,color="burlywood",shape="triangle"];3469[label="vwx148/False",fontsize=10,color="white",style="solid",shape="box"];2180 -> 3469[label="",style="solid", color="burlywood", weight=9]; 3469 -> 2292[label="",style="solid", color="burlywood", weight=3]; 3470[label="vwx148/True",fontsize=10,color="white",style="solid",shape="box"];2180 -> 3470[label="",style="solid", color="burlywood", weight=9]; 3470 -> 2293[label="",style="solid", color="burlywood", weight=3]; 2182[label="vwx290 < vwx300",fontsize=16,color="blue",shape="box"];3471[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2294[label="",style="solid", color="blue", weight=3]; 3472[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2295[label="",style="solid", color="blue", weight=3]; 3473[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2296[label="",style="solid", color="blue", weight=3]; 3474[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2297[label="",style="solid", color="blue", weight=3]; 3475[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2298[label="",style="solid", color="blue", weight=3]; 3476[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2299[label="",style="solid", color="blue", weight=3]; 3477[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2300[label="",style="solid", color="blue", weight=3]; 3478[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2301[label="",style="solid", color="blue", weight=3]; 3479[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2302[label="",style="solid", color="blue", weight=3]; 3480[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 2303[label="",style="solid", color="blue", weight=3]; 3481[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 2304[label="",style="solid", color="blue", weight=3]; 3482[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 2305[label="",style="solid", color="blue", weight=3]; 3483[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 2306[label="",style="solid", color="blue", weight=3]; 3484[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 2307[label="",style="solid", color="blue", weight=3]; 2183 -> 851[label="",style="dashed", color="red", weight=0]; 2183[label="vwx290 == vwx300 && vwx291 <= vwx301",fontsize=16,color="magenta"];2183 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1179[label="",style="dashed", color="red", weight=0]; 2184[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2184 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1180[label="",style="dashed", color="red", weight=0]; 2185[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2185 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1181[label="",style="dashed", color="red", weight=0]; 2186[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2186 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2187 -> 1182[label="",style="dashed", color="red", weight=0]; 2187[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2187 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2188 -> 1183[label="",style="dashed", color="red", weight=0]; 2188[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2188 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2189 -> 1184[label="",style="dashed", color="red", weight=0]; 2189[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2189 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1185[label="",style="dashed", color="red", weight=0]; 2190[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2190 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1186[label="",style="dashed", color="red", weight=0]; 2191[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2191 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1187[label="",style="dashed", color="red", weight=0]; 2192[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2192 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1188[label="",style="dashed", color="red", weight=0]; 2193[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2193 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1189[label="",style="dashed", color="red", weight=0]; 2194[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2194 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1190[label="",style="dashed", color="red", weight=0]; 2195[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2195 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2196 -> 1191[label="",style="dashed", color="red", weight=0]; 2196[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2196 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2197 -> 1192[label="",style="dashed", color="red", weight=0]; 2197[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2197 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2198 -> 1179[label="",style="dashed", color="red", weight=0]; 2198[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2198 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2199 -> 1180[label="",style="dashed", color="red", weight=0]; 2199[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2199 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2200 -> 1181[label="",style="dashed", color="red", weight=0]; 2200[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2200 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2201 -> 1182[label="",style="dashed", color="red", weight=0]; 2201[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2201 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2202 -> 1183[label="",style="dashed", color="red", weight=0]; 2202[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2202 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2203 -> 1184[label="",style="dashed", color="red", weight=0]; 2203[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2203 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2204 -> 1185[label="",style="dashed", color="red", weight=0]; 2204[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2204 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2205 -> 1186[label="",style="dashed", color="red", weight=0]; 2205[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2205 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2206 -> 1187[label="",style="dashed", color="red", weight=0]; 2206[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2206 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1188[label="",style="dashed", color="red", weight=0]; 2207[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2207 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1189[label="",style="dashed", color="red", weight=0]; 2208[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2208 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1190[label="",style="dashed", color="red", weight=0]; 2209[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2209 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1191[label="",style="dashed", color="red", weight=0]; 2210[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2210 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1192[label="",style="dashed", color="red", weight=0]; 2211[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2211 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1179[label="",style="dashed", color="red", weight=0]; 2212[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2212 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1180[label="",style="dashed", color="red", weight=0]; 2213[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2213 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1181[label="",style="dashed", color="red", weight=0]; 2214[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2214 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1182[label="",style="dashed", color="red", weight=0]; 2215[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2215 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1183[label="",style="dashed", color="red", weight=0]; 2216[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2216 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1184[label="",style="dashed", color="red", weight=0]; 2217[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2217 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2218 -> 1185[label="",style="dashed", color="red", weight=0]; 2218[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2218 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1186[label="",style="dashed", color="red", weight=0]; 2219[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2219 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2220 -> 1187[label="",style="dashed", color="red", weight=0]; 2220[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2220 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2221 -> 1188[label="",style="dashed", color="red", weight=0]; 2221[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2221 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2222 -> 1189[label="",style="dashed", color="red", weight=0]; 2222[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2222 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2223 -> 1190[label="",style="dashed", color="red", weight=0]; 2223[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2223 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2224 -> 1191[label="",style="dashed", color="red", weight=0]; 2224[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2224 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2225 -> 1192[label="",style="dashed", color="red", weight=0]; 2225[label="vwx290 <= vwx300",fontsize=16,color="magenta"];2225 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2226[label="vwx290 < vwx300",fontsize=16,color="blue",shape="box"];3485[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 2394[label="",style="solid", color="blue", weight=3]; 3486[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 2395[label="",style="solid", color="blue", weight=3]; 3487[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 2396[label="",style="solid", color="blue", weight=3]; 3488[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 2397[label="",style="solid", color="blue", weight=3]; 3489[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 2398[label="",style="solid", color="blue", weight=3]; 3490[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 2399[label="",style="solid", color="blue", weight=3]; 3491[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 2400[label="",style="solid", color="blue", weight=3]; 3492[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 2401[label="",style="solid", color="blue", weight=3]; 3493[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2402[label="",style="solid", color="blue", weight=3]; 3494[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2403[label="",style="solid", color="blue", weight=3]; 3495[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2404[label="",style="solid", color="blue", weight=3]; 3496[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2405[label="",style="solid", color="blue", weight=3]; 3497[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2406[label="",style="solid", color="blue", weight=3]; 3498[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2407[label="",style="solid", color="blue", weight=3]; 2227 -> 851[label="",style="dashed", color="red", weight=0]; 2227[label="vwx290 == vwx300 && (vwx291 < vwx301 || vwx291 == vwx301 && vwx292 <= vwx302)",fontsize=16,color="magenta"];2227 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2228[label="vwx58",fontsize=16,color="green",shape="box"];2229[label="vwx55",fontsize=16,color="green",shape="box"];2230[label="vwx58",fontsize=16,color="green",shape="box"];2231[label="vwx55",fontsize=16,color="green",shape="box"];2232[label="vwx58",fontsize=16,color="green",shape="box"];2233[label="vwx55",fontsize=16,color="green",shape="box"];2234[label="vwx58",fontsize=16,color="green",shape="box"];2235[label="vwx55",fontsize=16,color="green",shape="box"];2236[label="vwx58",fontsize=16,color="green",shape="box"];2237[label="vwx55",fontsize=16,color="green",shape="box"];2238[label="vwx58",fontsize=16,color="green",shape="box"];2239[label="vwx55",fontsize=16,color="green",shape="box"];2240[label="vwx58",fontsize=16,color="green",shape="box"];2241[label="vwx55",fontsize=16,color="green",shape="box"];2242[label="vwx58",fontsize=16,color="green",shape="box"];2243[label="vwx55",fontsize=16,color="green",shape="box"];2244[label="vwx58",fontsize=16,color="green",shape="box"];2245[label="vwx55",fontsize=16,color="green",shape="box"];2246[label="vwx58",fontsize=16,color="green",shape="box"];2247[label="vwx55",fontsize=16,color="green",shape="box"];2248[label="vwx58",fontsize=16,color="green",shape="box"];2249[label="vwx55",fontsize=16,color="green",shape="box"];2250[label="vwx58",fontsize=16,color="green",shape="box"];2251[label="vwx55",fontsize=16,color="green",shape="box"];2252[label="vwx58",fontsize=16,color="green",shape="box"];2253[label="vwx55",fontsize=16,color="green",shape="box"];2254[label="vwx58",fontsize=16,color="green",shape="box"];2255[label="vwx55",fontsize=16,color="green",shape="box"];2256[label="vwx56",fontsize=16,color="green",shape="box"];2257[label="vwx59",fontsize=16,color="green",shape="box"];2258[label="vwx56",fontsize=16,color="green",shape="box"];2259[label="vwx59",fontsize=16,color="green",shape="box"];2260[label="vwx56",fontsize=16,color="green",shape="box"];2261[label="vwx59",fontsize=16,color="green",shape="box"];2262[label="vwx56",fontsize=16,color="green",shape="box"];2263[label="vwx59",fontsize=16,color="green",shape="box"];2264[label="vwx56",fontsize=16,color="green",shape="box"];2265[label="vwx59",fontsize=16,color="green",shape="box"];2266[label="vwx56",fontsize=16,color="green",shape="box"];2267[label="vwx59",fontsize=16,color="green",shape="box"];2268[label="vwx56",fontsize=16,color="green",shape="box"];2269[label="vwx59",fontsize=16,color="green",shape="box"];2270[label="vwx56",fontsize=16,color="green",shape="box"];2271[label="vwx59",fontsize=16,color="green",shape="box"];2272[label="vwx56",fontsize=16,color="green",shape="box"];2273[label="vwx59",fontsize=16,color="green",shape="box"];2274[label="vwx56",fontsize=16,color="green",shape="box"];2275[label="vwx59",fontsize=16,color="green",shape="box"];2276[label="vwx56",fontsize=16,color="green",shape="box"];2277[label="vwx59",fontsize=16,color="green",shape="box"];2278[label="vwx56",fontsize=16,color="green",shape="box"];2279[label="vwx59",fontsize=16,color="green",shape="box"];2280[label="vwx56",fontsize=16,color="green",shape="box"];2281[label="vwx59",fontsize=16,color="green",shape="box"];2282[label="vwx56",fontsize=16,color="green",shape="box"];2283[label="vwx59",fontsize=16,color="green",shape="box"];2284[label="compare0 (vwx132,vwx133,vwx134) (vwx135,vwx136,vwx137) True",fontsize=16,color="black",shape="box"];2284 -> 2410[label="",style="solid", color="black", weight=3]; 2285[label="Succ (Succ (primPlusNat vwx1470 vwx4100))",fontsize=16,color="green",shape="box"];2285 -> 2411[label="",style="dashed", color="green", weight=3]; 2286[label="Succ vwx4100",fontsize=16,color="green",shape="box"];2287[label="GT",fontsize=16,color="green",shape="box"];2288[label="vwx3000",fontsize=16,color="green",shape="box"];2289[label="vwx4000",fontsize=16,color="green",shape="box"];2290[label="GT",fontsize=16,color="green",shape="box"];2291[label="vwx141",fontsize=16,color="green",shape="box"];2292[label="not False",fontsize=16,color="black",shape="box"];2292 -> 2412[label="",style="solid", color="black", weight=3]; 2293[label="not True",fontsize=16,color="black",shape="box"];2293 -> 2413[label="",style="solid", color="black", weight=3]; 2294 -> 5[label="",style="dashed", color="red", weight=0]; 2294[label="vwx290 < vwx300",fontsize=16,color="magenta"];2294 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2295 -> 6[label="",style="dashed", color="red", weight=0]; 2295[label="vwx290 < vwx300",fontsize=16,color="magenta"];2295 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2296 -> 7[label="",style="dashed", color="red", weight=0]; 2296[label="vwx290 < vwx300",fontsize=16,color="magenta"];2296 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2297 -> 8[label="",style="dashed", color="red", weight=0]; 2297[label="vwx290 < vwx300",fontsize=16,color="magenta"];2297 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2298 -> 9[label="",style="dashed", color="red", weight=0]; 2298[label="vwx290 < vwx300",fontsize=16,color="magenta"];2298 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2299 -> 10[label="",style="dashed", color="red", weight=0]; 2299[label="vwx290 < vwx300",fontsize=16,color="magenta"];2299 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2300 -> 11[label="",style="dashed", color="red", weight=0]; 2300[label="vwx290 < vwx300",fontsize=16,color="magenta"];2300 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2301 -> 12[label="",style="dashed", color="red", weight=0]; 2301[label="vwx290 < vwx300",fontsize=16,color="magenta"];2301 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2302 -> 13[label="",style="dashed", color="red", weight=0]; 2302[label="vwx290 < vwx300",fontsize=16,color="magenta"];2302 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2303 -> 14[label="",style="dashed", color="red", weight=0]; 2303[label="vwx290 < vwx300",fontsize=16,color="magenta"];2303 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2304 -> 15[label="",style="dashed", color="red", weight=0]; 2304[label="vwx290 < vwx300",fontsize=16,color="magenta"];2304 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2305 -> 16[label="",style="dashed", color="red", weight=0]; 2305[label="vwx290 < vwx300",fontsize=16,color="magenta"];2305 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2306 -> 17[label="",style="dashed", color="red", weight=0]; 2306[label="vwx290 < vwx300",fontsize=16,color="magenta"];2306 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2307 -> 18[label="",style="dashed", color="red", weight=0]; 2307[label="vwx290 < vwx300",fontsize=16,color="magenta"];2307 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2308[label="vwx290 == vwx300",fontsize=16,color="blue",shape="box"];3499[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2442[label="",style="solid", color="blue", weight=3]; 3500[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2443[label="",style="solid", color="blue", weight=3]; 3501[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2444[label="",style="solid", color="blue", weight=3]; 3502[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2445[label="",style="solid", color="blue", weight=3]; 3503[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2446[label="",style="solid", color="blue", weight=3]; 3504[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2447[label="",style="solid", color="blue", weight=3]; 3505[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2448[label="",style="solid", color="blue", weight=3]; 3506[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2449[label="",style="solid", color="blue", weight=3]; 3507[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 2450[label="",style="solid", color="blue", weight=3]; 3508[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 2451[label="",style="solid", color="blue", weight=3]; 3509[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 2452[label="",style="solid", color="blue", weight=3]; 3510[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 2453[label="",style="solid", color="blue", weight=3]; 3511[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 2454[label="",style="solid", color="blue", weight=3]; 3512[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2308 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2455[label="",style="solid", color="blue", weight=3]; 2309[label="vwx291 <= vwx301",fontsize=16,color="blue",shape="box"];3513[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 2456[label="",style="solid", color="blue", weight=3]; 3514[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 2457[label="",style="solid", color="blue", weight=3]; 3515[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 2458[label="",style="solid", color="blue", weight=3]; 3516[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 2459[label="",style="solid", color="blue", weight=3]; 3517[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2460[label="",style="solid", color="blue", weight=3]; 3518[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2461[label="",style="solid", color="blue", weight=3]; 3519[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2462[label="",style="solid", color="blue", weight=3]; 3520[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2463[label="",style="solid", color="blue", weight=3]; 3521[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2464[label="",style="solid", color="blue", weight=3]; 3522[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2465[label="",style="solid", color="blue", weight=3]; 3523[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2466[label="",style="solid", color="blue", weight=3]; 3524[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2467[label="",style="solid", color="blue", weight=3]; 3525[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2468[label="",style="solid", color="blue", weight=3]; 3526[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2469[label="",style="solid", color="blue", weight=3]; 2310[label="vwx290",fontsize=16,color="green",shape="box"];2311[label="vwx300",fontsize=16,color="green",shape="box"];2312[label="vwx290",fontsize=16,color="green",shape="box"];2313[label="vwx300",fontsize=16,color="green",shape="box"];2314[label="vwx290",fontsize=16,color="green",shape="box"];2315[label="vwx300",fontsize=16,color="green",shape="box"];2316[label="vwx290",fontsize=16,color="green",shape="box"];2317[label="vwx300",fontsize=16,color="green",shape="box"];2318[label="vwx290",fontsize=16,color="green",shape="box"];2319[label="vwx300",fontsize=16,color="green",shape="box"];2320[label="vwx290",fontsize=16,color="green",shape="box"];2321[label="vwx300",fontsize=16,color="green",shape="box"];2322[label="vwx290",fontsize=16,color="green",shape="box"];2323[label="vwx300",fontsize=16,color="green",shape="box"];2324[label="vwx290",fontsize=16,color="green",shape="box"];2325[label="vwx300",fontsize=16,color="green",shape="box"];2326[label="vwx290",fontsize=16,color="green",shape="box"];2327[label="vwx300",fontsize=16,color="green",shape="box"];2328[label="vwx290",fontsize=16,color="green",shape="box"];2329[label="vwx300",fontsize=16,color="green",shape="box"];2330[label="vwx290",fontsize=16,color="green",shape="box"];2331[label="vwx300",fontsize=16,color="green",shape="box"];2332[label="vwx290",fontsize=16,color="green",shape="box"];2333[label="vwx300",fontsize=16,color="green",shape="box"];2334[label="vwx290",fontsize=16,color="green",shape="box"];2335[label="vwx300",fontsize=16,color="green",shape="box"];2336[label="vwx290",fontsize=16,color="green",shape="box"];2337[label="vwx300",fontsize=16,color="green",shape="box"];2338[label="vwx290",fontsize=16,color="green",shape="box"];2339[label="vwx300",fontsize=16,color="green",shape="box"];2340[label="vwx290",fontsize=16,color="green",shape="box"];2341[label="vwx300",fontsize=16,color="green",shape="box"];2342[label="vwx290",fontsize=16,color="green",shape="box"];2343[label="vwx300",fontsize=16,color="green",shape="box"];2344[label="vwx290",fontsize=16,color="green",shape="box"];2345[label="vwx300",fontsize=16,color="green",shape="box"];2346[label="vwx290",fontsize=16,color="green",shape="box"];2347[label="vwx300",fontsize=16,color="green",shape="box"];2348[label="vwx290",fontsize=16,color="green",shape="box"];2349[label="vwx300",fontsize=16,color="green",shape="box"];2350[label="vwx290",fontsize=16,color="green",shape="box"];2351[label="vwx300",fontsize=16,color="green",shape="box"];2352[label="vwx290",fontsize=16,color="green",shape="box"];2353[label="vwx300",fontsize=16,color="green",shape="box"];2354[label="vwx290",fontsize=16,color="green",shape="box"];2355[label="vwx300",fontsize=16,color="green",shape="box"];2356[label="vwx290",fontsize=16,color="green",shape="box"];2357[label="vwx300",fontsize=16,color="green",shape="box"];2358[label="vwx290",fontsize=16,color="green",shape="box"];2359[label="vwx300",fontsize=16,color="green",shape="box"];2360[label="vwx290",fontsize=16,color="green",shape="box"];2361[label="vwx300",fontsize=16,color="green",shape="box"];2362[label="vwx290",fontsize=16,color="green",shape="box"];2363[label="vwx300",fontsize=16,color="green",shape="box"];2364[label="vwx290",fontsize=16,color="green",shape="box"];2365[label="vwx300",fontsize=16,color="green",shape="box"];2366[label="vwx290",fontsize=16,color="green",shape="box"];2367[label="vwx300",fontsize=16,color="green",shape="box"];2368[label="vwx290",fontsize=16,color="green",shape="box"];2369[label="vwx300",fontsize=16,color="green",shape="box"];2370[label="vwx290",fontsize=16,color="green",shape="box"];2371[label="vwx300",fontsize=16,color="green",shape="box"];2372[label="vwx290",fontsize=16,color="green",shape="box"];2373[label="vwx300",fontsize=16,color="green",shape="box"];2374[label="vwx290",fontsize=16,color="green",shape="box"];2375[label="vwx300",fontsize=16,color="green",shape="box"];2376[label="vwx290",fontsize=16,color="green",shape="box"];2377[label="vwx300",fontsize=16,color="green",shape="box"];2378[label="vwx290",fontsize=16,color="green",shape="box"];2379[label="vwx300",fontsize=16,color="green",shape="box"];2380[label="vwx290",fontsize=16,color="green",shape="box"];2381[label="vwx300",fontsize=16,color="green",shape="box"];2382[label="vwx290",fontsize=16,color="green",shape="box"];2383[label="vwx300",fontsize=16,color="green",shape="box"];2384[label="vwx290",fontsize=16,color="green",shape="box"];2385[label="vwx300",fontsize=16,color="green",shape="box"];2386[label="vwx290",fontsize=16,color="green",shape="box"];2387[label="vwx300",fontsize=16,color="green",shape="box"];2388[label="vwx290",fontsize=16,color="green",shape="box"];2389[label="vwx300",fontsize=16,color="green",shape="box"];2390[label="vwx290",fontsize=16,color="green",shape="box"];2391[label="vwx300",fontsize=16,color="green",shape="box"];2392[label="vwx290",fontsize=16,color="green",shape="box"];2393[label="vwx300",fontsize=16,color="green",shape="box"];2394 -> 5[label="",style="dashed", color="red", weight=0]; 2394[label="vwx290 < vwx300",fontsize=16,color="magenta"];2394 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2395 -> 6[label="",style="dashed", color="red", weight=0]; 2395[label="vwx290 < vwx300",fontsize=16,color="magenta"];2395 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2396 -> 7[label="",style="dashed", color="red", weight=0]; 2396[label="vwx290 < vwx300",fontsize=16,color="magenta"];2396 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2397 -> 8[label="",style="dashed", color="red", weight=0]; 2397[label="vwx290 < vwx300",fontsize=16,color="magenta"];2397 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2398 -> 9[label="",style="dashed", color="red", weight=0]; 2398[label="vwx290 < vwx300",fontsize=16,color="magenta"];2398 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2399 -> 10[label="",style="dashed", color="red", weight=0]; 2399[label="vwx290 < vwx300",fontsize=16,color="magenta"];2399 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2400 -> 11[label="",style="dashed", color="red", weight=0]; 2400[label="vwx290 < vwx300",fontsize=16,color="magenta"];2400 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2401 -> 12[label="",style="dashed", color="red", weight=0]; 2401[label="vwx290 < vwx300",fontsize=16,color="magenta"];2401 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2402 -> 13[label="",style="dashed", color="red", weight=0]; 2402[label="vwx290 < vwx300",fontsize=16,color="magenta"];2402 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2403 -> 14[label="",style="dashed", color="red", weight=0]; 2403[label="vwx290 < vwx300",fontsize=16,color="magenta"];2403 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2404 -> 15[label="",style="dashed", color="red", weight=0]; 2404[label="vwx290 < vwx300",fontsize=16,color="magenta"];2404 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2405 -> 16[label="",style="dashed", color="red", weight=0]; 2405[label="vwx290 < vwx300",fontsize=16,color="magenta"];2405 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2406 -> 17[label="",style="dashed", color="red", weight=0]; 2406[label="vwx290 < vwx300",fontsize=16,color="magenta"];2406 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2407 -> 18[label="",style="dashed", color="red", weight=0]; 2407[label="vwx290 < vwx300",fontsize=16,color="magenta"];2407 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2408[label="vwx290 == vwx300",fontsize=16,color="blue",shape="box"];3527[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2498[label="",style="solid", color="blue", weight=3]; 3528[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 2499[label="",style="solid", color="blue", weight=3]; 3529[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 2500[label="",style="solid", color="blue", weight=3]; 3530[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2501[label="",style="solid", color="blue", weight=3]; 3531[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 2502[label="",style="solid", color="blue", weight=3]; 3532[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 2503[label="",style="solid", color="blue", weight=3]; 3533[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2504[label="",style="solid", color="blue", weight=3]; 3534[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2505[label="",style="solid", color="blue", weight=3]; 3535[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2506[label="",style="solid", color="blue", weight=3]; 3536[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2507[label="",style="solid", color="blue", weight=3]; 3537[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2508[label="",style="solid", color="blue", weight=3]; 3538[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2509[label="",style="solid", color="blue", weight=3]; 3539[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2510[label="",style="solid", color="blue", weight=3]; 3540[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2408 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 2511[label="",style="solid", color="blue", weight=3]; 2409 -> 1809[label="",style="dashed", color="red", weight=0]; 2409[label="vwx291 < vwx301 || vwx291 == vwx301 && vwx292 <= vwx302",fontsize=16,color="magenta"];2409 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2409 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2410[label="GT",fontsize=16,color="green",shape="box"];2411[label="primPlusNat vwx1470 vwx4100",fontsize=16,color="burlywood",shape="triangle"];3541[label="vwx1470/Succ vwx14700",fontsize=10,color="white",style="solid",shape="box"];2411 -> 3541[label="",style="solid", color="burlywood", weight=9]; 3541 -> 2514[label="",style="solid", color="burlywood", weight=3]; 3542[label="vwx1470/Zero",fontsize=10,color="white",style="solid",shape="box"];2411 -> 3542[label="",style="solid", color="burlywood", weight=9]; 3542 -> 2515[label="",style="solid", color="burlywood", weight=3]; 2412[label="True",fontsize=16,color="green",shape="box"];2413[label="False",fontsize=16,color="green",shape="box"];2414[label="vwx290",fontsize=16,color="green",shape="box"];2415[label="vwx300",fontsize=16,color="green",shape="box"];2416[label="vwx290",fontsize=16,color="green",shape="box"];2417[label="vwx300",fontsize=16,color="green",shape="box"];2418[label="vwx290",fontsize=16,color="green",shape="box"];2419[label="vwx300",fontsize=16,color="green",shape="box"];2420[label="vwx290",fontsize=16,color="green",shape="box"];2421[label="vwx300",fontsize=16,color="green",shape="box"];2422[label="vwx290",fontsize=16,color="green",shape="box"];2423[label="vwx300",fontsize=16,color="green",shape="box"];2424[label="vwx290",fontsize=16,color="green",shape="box"];2425[label="vwx300",fontsize=16,color="green",shape="box"];2426[label="vwx290",fontsize=16,color="green",shape="box"];2427[label="vwx300",fontsize=16,color="green",shape="box"];2428[label="vwx290",fontsize=16,color="green",shape="box"];2429[label="vwx300",fontsize=16,color="green",shape="box"];2430[label="vwx290",fontsize=16,color="green",shape="box"];2431[label="vwx300",fontsize=16,color="green",shape="box"];2432[label="vwx290",fontsize=16,color="green",shape="box"];2433[label="vwx300",fontsize=16,color="green",shape="box"];2434[label="vwx290",fontsize=16,color="green",shape="box"];2435[label="vwx300",fontsize=16,color="green",shape="box"];2436[label="vwx290",fontsize=16,color="green",shape="box"];2437[label="vwx300",fontsize=16,color="green",shape="box"];2438[label="vwx290",fontsize=16,color="green",shape="box"];2439[label="vwx300",fontsize=16,color="green",shape="box"];2440[label="vwx290",fontsize=16,color="green",shape="box"];2441[label="vwx300",fontsize=16,color="green",shape="box"];2442 -> 378[label="",style="dashed", color="red", weight=0]; 2442[label="vwx290 == vwx300",fontsize=16,color="magenta"];2442 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2443 -> 373[label="",style="dashed", color="red", weight=0]; 2443[label="vwx290 == vwx300",fontsize=16,color="magenta"];2443 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2444 -> 379[label="",style="dashed", color="red", weight=0]; 2444[label="vwx290 == vwx300",fontsize=16,color="magenta"];2444 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2445 -> 375[label="",style="dashed", color="red", weight=0]; 2445[label="vwx290 == vwx300",fontsize=16,color="magenta"];2445 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2446 -> 384[label="",style="dashed", color="red", weight=0]; 2446[label="vwx290 == vwx300",fontsize=16,color="magenta"];2446 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2447 -> 380[label="",style="dashed", color="red", weight=0]; 2447[label="vwx290 == vwx300",fontsize=16,color="magenta"];2447 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2448 -> 371[label="",style="dashed", color="red", weight=0]; 2448[label="vwx290 == vwx300",fontsize=16,color="magenta"];2448 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2449 -> 377[label="",style="dashed", color="red", weight=0]; 2449[label="vwx290 == vwx300",fontsize=16,color="magenta"];2449 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2450 -> 376[label="",style="dashed", color="red", weight=0]; 2450[label="vwx290 == vwx300",fontsize=16,color="magenta"];2450 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2451 -> 383[label="",style="dashed", color="red", weight=0]; 2451[label="vwx290 == vwx300",fontsize=16,color="magenta"];2451 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2452 -> 374[label="",style="dashed", color="red", weight=0]; 2452[label="vwx290 == vwx300",fontsize=16,color="magenta"];2452 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2453 -> 372[label="",style="dashed", color="red", weight=0]; 2453[label="vwx290 == vwx300",fontsize=16,color="magenta"];2453 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2454 -> 382[label="",style="dashed", color="red", weight=0]; 2454[label="vwx290 == vwx300",fontsize=16,color="magenta"];2454 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2455 -> 381[label="",style="dashed", color="red", weight=0]; 2455[label="vwx290 == vwx300",fontsize=16,color="magenta"];2455 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2456 -> 1179[label="",style="dashed", color="red", weight=0]; 2456[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2456 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2457 -> 1180[label="",style="dashed", color="red", weight=0]; 2457[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2457 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2458 -> 1181[label="",style="dashed", color="red", weight=0]; 2458[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2458 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2459 -> 1182[label="",style="dashed", color="red", weight=0]; 2459[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2459 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1183[label="",style="dashed", color="red", weight=0]; 2460[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2460 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1184[label="",style="dashed", color="red", weight=0]; 2461[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2461 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1185[label="",style="dashed", color="red", weight=0]; 2462[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2462 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1186[label="",style="dashed", color="red", weight=0]; 2463[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2463 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1187[label="",style="dashed", color="red", weight=0]; 2464[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2464 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1188[label="",style="dashed", color="red", weight=0]; 2465[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2465 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1189[label="",style="dashed", color="red", weight=0]; 2466[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2466 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1190[label="",style="dashed", color="red", weight=0]; 2467[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2467 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1191[label="",style="dashed", color="red", weight=0]; 2468[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2468 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1192[label="",style="dashed", color="red", weight=0]; 2469[label="vwx291 <= vwx301",fontsize=16,color="magenta"];2469 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2470[label="vwx290",fontsize=16,color="green",shape="box"];2471[label="vwx300",fontsize=16,color="green",shape="box"];2472[label="vwx290",fontsize=16,color="green",shape="box"];2473[label="vwx300",fontsize=16,color="green",shape="box"];2474[label="vwx290",fontsize=16,color="green",shape="box"];2475[label="vwx300",fontsize=16,color="green",shape="box"];2476[label="vwx290",fontsize=16,color="green",shape="box"];2477[label="vwx300",fontsize=16,color="green",shape="box"];2478[label="vwx290",fontsize=16,color="green",shape="box"];2479[label="vwx300",fontsize=16,color="green",shape="box"];2480[label="vwx290",fontsize=16,color="green",shape="box"];2481[label="vwx300",fontsize=16,color="green",shape="box"];2482[label="vwx290",fontsize=16,color="green",shape="box"];2483[label="vwx300",fontsize=16,color="green",shape="box"];2484[label="vwx290",fontsize=16,color="green",shape="box"];2485[label="vwx300",fontsize=16,color="green",shape="box"];2486[label="vwx290",fontsize=16,color="green",shape="box"];2487[label="vwx300",fontsize=16,color="green",shape="box"];2488[label="vwx290",fontsize=16,color="green",shape="box"];2489[label="vwx300",fontsize=16,color="green",shape="box"];2490[label="vwx290",fontsize=16,color="green",shape="box"];2491[label="vwx300",fontsize=16,color="green",shape="box"];2492[label="vwx290",fontsize=16,color="green",shape="box"];2493[label="vwx300",fontsize=16,color="green",shape="box"];2494[label="vwx290",fontsize=16,color="green",shape="box"];2495[label="vwx300",fontsize=16,color="green",shape="box"];2496[label="vwx290",fontsize=16,color="green",shape="box"];2497[label="vwx300",fontsize=16,color="green",shape="box"];2498 -> 378[label="",style="dashed", color="red", weight=0]; 2498[label="vwx290 == vwx300",fontsize=16,color="magenta"];2498 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2499 -> 373[label="",style="dashed", color="red", weight=0]; 2499[label="vwx290 == vwx300",fontsize=16,color="magenta"];2499 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2500 -> 379[label="",style="dashed", color="red", weight=0]; 2500[label="vwx290 == vwx300",fontsize=16,color="magenta"];2500 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2501 -> 375[label="",style="dashed", color="red", weight=0]; 2501[label="vwx290 == vwx300",fontsize=16,color="magenta"];2501 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2502 -> 384[label="",style="dashed", color="red", weight=0]; 2502[label="vwx290 == vwx300",fontsize=16,color="magenta"];2502 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2503 -> 380[label="",style="dashed", color="red", weight=0]; 2503[label="vwx290 == vwx300",fontsize=16,color="magenta"];2503 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2504 -> 371[label="",style="dashed", color="red", weight=0]; 2504[label="vwx290 == vwx300",fontsize=16,color="magenta"];2504 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2505 -> 377[label="",style="dashed", color="red", weight=0]; 2505[label="vwx290 == vwx300",fontsize=16,color="magenta"];2505 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2506 -> 376[label="",style="dashed", color="red", weight=0]; 2506[label="vwx290 == vwx300",fontsize=16,color="magenta"];2506 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2507 -> 383[label="",style="dashed", color="red", weight=0]; 2507[label="vwx290 == vwx300",fontsize=16,color="magenta"];2507 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2508 -> 374[label="",style="dashed", color="red", weight=0]; 2508[label="vwx290 == vwx300",fontsize=16,color="magenta"];2508 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2509 -> 372[label="",style="dashed", color="red", weight=0]; 2509[label="vwx290 == vwx300",fontsize=16,color="magenta"];2509 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2510 -> 382[label="",style="dashed", color="red", weight=0]; 2510[label="vwx290 == vwx300",fontsize=16,color="magenta"];2510 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2511 -> 381[label="",style="dashed", color="red", weight=0]; 2511[label="vwx290 == vwx300",fontsize=16,color="magenta"];2511 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2512[label="vwx291 < vwx301",fontsize=16,color="blue",shape="box"];3543[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 2600[label="",style="solid", color="blue", weight=3]; 3544[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 2601[label="",style="solid", color="blue", weight=3]; 3545[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 2602[label="",style="solid", color="blue", weight=3]; 3546[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2603[label="",style="solid", color="blue", weight=3]; 3547[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2604[label="",style="solid", color="blue", weight=3]; 3548[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2605[label="",style="solid", color="blue", weight=3]; 3549[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2606[label="",style="solid", color="blue", weight=3]; 3550[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 2607[label="",style="solid", color="blue", weight=3]; 3551[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 2608[label="",style="solid", color="blue", weight=3]; 3552[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 2609[label="",style="solid", color="blue", weight=3]; 3553[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 2610[label="",style="solid", color="blue", weight=3]; 3554[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 2611[label="",style="solid", color="blue", weight=3]; 3555[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 2612[label="",style="solid", color="blue", weight=3]; 3556[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2512 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2613[label="",style="solid", color="blue", weight=3]; 2513 -> 851[label="",style="dashed", color="red", weight=0]; 2513[label="vwx291 == vwx301 && vwx292 <= vwx302",fontsize=16,color="magenta"];2513 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2514[label="primPlusNat (Succ vwx14700) vwx4100",fontsize=16,color="burlywood",shape="box"];3557[label="vwx4100/Succ vwx41000",fontsize=10,color="white",style="solid",shape="box"];2514 -> 3557[label="",style="solid", color="burlywood", weight=9]; 3557 -> 2616[label="",style="solid", color="burlywood", weight=3]; 3558[label="vwx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2514 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 2617[label="",style="solid", color="burlywood", weight=3]; 2515[label="primPlusNat Zero vwx4100",fontsize=16,color="burlywood",shape="box"];3559[label="vwx4100/Succ vwx41000",fontsize=10,color="white",style="solid",shape="box"];2515 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 2618[label="",style="solid", color="burlywood", weight=3]; 3560[label="vwx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2515 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 2619[label="",style="solid", color="burlywood", weight=3]; 2516[label="vwx300",fontsize=16,color="green",shape="box"];2517[label="vwx290",fontsize=16,color="green",shape="box"];2518[label="vwx300",fontsize=16,color="green",shape="box"];2519[label="vwx290",fontsize=16,color="green",shape="box"];2520[label="vwx300",fontsize=16,color="green",shape="box"];2521[label="vwx290",fontsize=16,color="green",shape="box"];2522[label="vwx300",fontsize=16,color="green",shape="box"];2523[label="vwx290",fontsize=16,color="green",shape="box"];2524[label="vwx300",fontsize=16,color="green",shape="box"];2525[label="vwx290",fontsize=16,color="green",shape="box"];2526[label="vwx300",fontsize=16,color="green",shape="box"];2527[label="vwx290",fontsize=16,color="green",shape="box"];2528[label="vwx300",fontsize=16,color="green",shape="box"];2529[label="vwx290",fontsize=16,color="green",shape="box"];2530[label="vwx300",fontsize=16,color="green",shape="box"];2531[label="vwx290",fontsize=16,color="green",shape="box"];2532[label="vwx300",fontsize=16,color="green",shape="box"];2533[label="vwx290",fontsize=16,color="green",shape="box"];2534[label="vwx300",fontsize=16,color="green",shape="box"];2535[label="vwx290",fontsize=16,color="green",shape="box"];2536[label="vwx300",fontsize=16,color="green",shape="box"];2537[label="vwx290",fontsize=16,color="green",shape="box"];2538[label="vwx300",fontsize=16,color="green",shape="box"];2539[label="vwx290",fontsize=16,color="green",shape="box"];2540[label="vwx300",fontsize=16,color="green",shape="box"];2541[label="vwx290",fontsize=16,color="green",shape="box"];2542[label="vwx300",fontsize=16,color="green",shape="box"];2543[label="vwx290",fontsize=16,color="green",shape="box"];2544[label="vwx291",fontsize=16,color="green",shape="box"];2545[label="vwx301",fontsize=16,color="green",shape="box"];2546[label="vwx291",fontsize=16,color="green",shape="box"];2547[label="vwx301",fontsize=16,color="green",shape="box"];2548[label="vwx291",fontsize=16,color="green",shape="box"];2549[label="vwx301",fontsize=16,color="green",shape="box"];2550[label="vwx291",fontsize=16,color="green",shape="box"];2551[label="vwx301",fontsize=16,color="green",shape="box"];2552[label="vwx291",fontsize=16,color="green",shape="box"];2553[label="vwx301",fontsize=16,color="green",shape="box"];2554[label="vwx291",fontsize=16,color="green",shape="box"];2555[label="vwx301",fontsize=16,color="green",shape="box"];2556[label="vwx291",fontsize=16,color="green",shape="box"];2557[label="vwx301",fontsize=16,color="green",shape="box"];2558[label="vwx291",fontsize=16,color="green",shape="box"];2559[label="vwx301",fontsize=16,color="green",shape="box"];2560[label="vwx291",fontsize=16,color="green",shape="box"];2561[label="vwx301",fontsize=16,color="green",shape="box"];2562[label="vwx291",fontsize=16,color="green",shape="box"];2563[label="vwx301",fontsize=16,color="green",shape="box"];2564[label="vwx291",fontsize=16,color="green",shape="box"];2565[label="vwx301",fontsize=16,color="green",shape="box"];2566[label="vwx291",fontsize=16,color="green",shape="box"];2567[label="vwx301",fontsize=16,color="green",shape="box"];2568[label="vwx291",fontsize=16,color="green",shape="box"];2569[label="vwx301",fontsize=16,color="green",shape="box"];2570[label="vwx291",fontsize=16,color="green",shape="box"];2571[label="vwx301",fontsize=16,color="green",shape="box"];2572[label="vwx300",fontsize=16,color="green",shape="box"];2573[label="vwx290",fontsize=16,color="green",shape="box"];2574[label="vwx300",fontsize=16,color="green",shape="box"];2575[label="vwx290",fontsize=16,color="green",shape="box"];2576[label="vwx300",fontsize=16,color="green",shape="box"];2577[label="vwx290",fontsize=16,color="green",shape="box"];2578[label="vwx300",fontsize=16,color="green",shape="box"];2579[label="vwx290",fontsize=16,color="green",shape="box"];2580[label="vwx300",fontsize=16,color="green",shape="box"];2581[label="vwx290",fontsize=16,color="green",shape="box"];2582[label="vwx300",fontsize=16,color="green",shape="box"];2583[label="vwx290",fontsize=16,color="green",shape="box"];2584[label="vwx300",fontsize=16,color="green",shape="box"];2585[label="vwx290",fontsize=16,color="green",shape="box"];2586[label="vwx300",fontsize=16,color="green",shape="box"];2587[label="vwx290",fontsize=16,color="green",shape="box"];2588[label="vwx300",fontsize=16,color="green",shape="box"];2589[label="vwx290",fontsize=16,color="green",shape="box"];2590[label="vwx300",fontsize=16,color="green",shape="box"];2591[label="vwx290",fontsize=16,color="green",shape="box"];2592[label="vwx300",fontsize=16,color="green",shape="box"];2593[label="vwx290",fontsize=16,color="green",shape="box"];2594[label="vwx300",fontsize=16,color="green",shape="box"];2595[label="vwx290",fontsize=16,color="green",shape="box"];2596[label="vwx300",fontsize=16,color="green",shape="box"];2597[label="vwx290",fontsize=16,color="green",shape="box"];2598[label="vwx300",fontsize=16,color="green",shape="box"];2599[label="vwx290",fontsize=16,color="green",shape="box"];2600 -> 5[label="",style="dashed", color="red", weight=0]; 2600[label="vwx291 < vwx301",fontsize=16,color="magenta"];2600 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2601 -> 6[label="",style="dashed", color="red", weight=0]; 2601[label="vwx291 < vwx301",fontsize=16,color="magenta"];2601 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2601 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2602 -> 7[label="",style="dashed", color="red", weight=0]; 2602[label="vwx291 < vwx301",fontsize=16,color="magenta"];2602 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2603 -> 8[label="",style="dashed", color="red", weight=0]; 2603[label="vwx291 < vwx301",fontsize=16,color="magenta"];2603 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2603 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2604 -> 9[label="",style="dashed", color="red", weight=0]; 2604[label="vwx291 < vwx301",fontsize=16,color="magenta"];2604 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2605 -> 10[label="",style="dashed", color="red", weight=0]; 2605[label="vwx291 < vwx301",fontsize=16,color="magenta"];2605 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2605 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2606 -> 11[label="",style="dashed", color="red", weight=0]; 2606[label="vwx291 < vwx301",fontsize=16,color="magenta"];2606 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2606 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2607 -> 12[label="",style="dashed", color="red", weight=0]; 2607[label="vwx291 < vwx301",fontsize=16,color="magenta"];2607 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2607 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2608 -> 13[label="",style="dashed", color="red", weight=0]; 2608[label="vwx291 < vwx301",fontsize=16,color="magenta"];2608 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2608 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2609 -> 14[label="",style="dashed", color="red", weight=0]; 2609[label="vwx291 < vwx301",fontsize=16,color="magenta"];2609 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2609 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2610 -> 15[label="",style="dashed", color="red", weight=0]; 2610[label="vwx291 < vwx301",fontsize=16,color="magenta"];2610 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2610 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2611 -> 16[label="",style="dashed", color="red", weight=0]; 2611[label="vwx291 < vwx301",fontsize=16,color="magenta"];2611 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2611 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2612 -> 17[label="",style="dashed", color="red", weight=0]; 2612[label="vwx291 < vwx301",fontsize=16,color="magenta"];2612 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2612 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2613 -> 18[label="",style="dashed", color="red", weight=0]; 2613[label="vwx291 < vwx301",fontsize=16,color="magenta"];2613 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2613 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2614[label="vwx291 == vwx301",fontsize=16,color="blue",shape="box"];3561[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3561[label="",style="solid", color="blue", weight=9]; 3561 -> 2648[label="",style="solid", color="blue", weight=3]; 3562[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3562[label="",style="solid", color="blue", weight=9]; 3562 -> 2649[label="",style="solid", color="blue", weight=3]; 3563[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3563[label="",style="solid", color="blue", weight=9]; 3563 -> 2650[label="",style="solid", color="blue", weight=3]; 3564[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2651[label="",style="solid", color="blue", weight=3]; 3565[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2652[label="",style="solid", color="blue", weight=3]; 3566[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2653[label="",style="solid", color="blue", weight=3]; 3567[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2654[label="",style="solid", color="blue", weight=3]; 3568[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2655[label="",style="solid", color="blue", weight=3]; 3569[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2656[label="",style="solid", color="blue", weight=3]; 3570[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2657[label="",style="solid", color="blue", weight=3]; 3571[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2658[label="",style="solid", color="blue", weight=3]; 3572[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2659[label="",style="solid", color="blue", weight=3]; 3573[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2660[label="",style="solid", color="blue", weight=3]; 3574[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2614 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2661[label="",style="solid", color="blue", weight=3]; 2615[label="vwx292 <= vwx302",fontsize=16,color="blue",shape="box"];3575[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2662[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2663[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2664[label="",style="solid", color="blue", weight=3]; 3578[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2665[label="",style="solid", color="blue", weight=3]; 3579[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2666[label="",style="solid", color="blue", weight=3]; 3580[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2667[label="",style="solid", color="blue", weight=3]; 3581[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2668[label="",style="solid", color="blue", weight=3]; 3582[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2669[label="",style="solid", color="blue", weight=3]; 3583[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2670[label="",style="solid", color="blue", weight=3]; 3584[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2671[label="",style="solid", color="blue", weight=3]; 3585[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2672[label="",style="solid", color="blue", weight=3]; 3586[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2673[label="",style="solid", color="blue", weight=3]; 3587[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2674[label="",style="solid", color="blue", weight=3]; 3588[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2675[label="",style="solid", color="blue", weight=3]; 2616[label="primPlusNat (Succ vwx14700) (Succ vwx41000)",fontsize=16,color="black",shape="box"];2616 -> 2676[label="",style="solid", color="black", weight=3]; 2617[label="primPlusNat (Succ vwx14700) Zero",fontsize=16,color="black",shape="box"];2617 -> 2677[label="",style="solid", color="black", weight=3]; 2618[label="primPlusNat Zero (Succ vwx41000)",fontsize=16,color="black",shape="box"];2618 -> 2678[label="",style="solid", color="black", weight=3]; 2619[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2619 -> 2679[label="",style="solid", color="black", weight=3]; 2620[label="vwx291",fontsize=16,color="green",shape="box"];2621[label="vwx301",fontsize=16,color="green",shape="box"];2622[label="vwx291",fontsize=16,color="green",shape="box"];2623[label="vwx301",fontsize=16,color="green",shape="box"];2624[label="vwx291",fontsize=16,color="green",shape="box"];2625[label="vwx301",fontsize=16,color="green",shape="box"];2626[label="vwx291",fontsize=16,color="green",shape="box"];2627[label="vwx301",fontsize=16,color="green",shape="box"];2628[label="vwx291",fontsize=16,color="green",shape="box"];2629[label="vwx301",fontsize=16,color="green",shape="box"];2630[label="vwx291",fontsize=16,color="green",shape="box"];2631[label="vwx301",fontsize=16,color="green",shape="box"];2632[label="vwx291",fontsize=16,color="green",shape="box"];2633[label="vwx301",fontsize=16,color="green",shape="box"];2634[label="vwx291",fontsize=16,color="green",shape="box"];2635[label="vwx301",fontsize=16,color="green",shape="box"];2636[label="vwx291",fontsize=16,color="green",shape="box"];2637[label="vwx301",fontsize=16,color="green",shape="box"];2638[label="vwx291",fontsize=16,color="green",shape="box"];2639[label="vwx301",fontsize=16,color="green",shape="box"];2640[label="vwx291",fontsize=16,color="green",shape="box"];2641[label="vwx301",fontsize=16,color="green",shape="box"];2642[label="vwx291",fontsize=16,color="green",shape="box"];2643[label="vwx301",fontsize=16,color="green",shape="box"];2644[label="vwx291",fontsize=16,color="green",shape="box"];2645[label="vwx301",fontsize=16,color="green",shape="box"];2646[label="vwx291",fontsize=16,color="green",shape="box"];2647[label="vwx301",fontsize=16,color="green",shape="box"];2648 -> 378[label="",style="dashed", color="red", weight=0]; 2648[label="vwx291 == vwx301",fontsize=16,color="magenta"];2648 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2649 -> 373[label="",style="dashed", color="red", weight=0]; 2649[label="vwx291 == vwx301",fontsize=16,color="magenta"];2649 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2650 -> 379[label="",style="dashed", color="red", weight=0]; 2650[label="vwx291 == vwx301",fontsize=16,color="magenta"];2650 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2651 -> 375[label="",style="dashed", color="red", weight=0]; 2651[label="vwx291 == vwx301",fontsize=16,color="magenta"];2651 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2652 -> 384[label="",style="dashed", color="red", weight=0]; 2652[label="vwx291 == vwx301",fontsize=16,color="magenta"];2652 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2653 -> 380[label="",style="dashed", color="red", weight=0]; 2653[label="vwx291 == vwx301",fontsize=16,color="magenta"];2653 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2654 -> 371[label="",style="dashed", color="red", weight=0]; 2654[label="vwx291 == vwx301",fontsize=16,color="magenta"];2654 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2655 -> 377[label="",style="dashed", color="red", weight=0]; 2655[label="vwx291 == vwx301",fontsize=16,color="magenta"];2655 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2656 -> 376[label="",style="dashed", color="red", weight=0]; 2656[label="vwx291 == vwx301",fontsize=16,color="magenta"];2656 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2657 -> 383[label="",style="dashed", color="red", weight=0]; 2657[label="vwx291 == vwx301",fontsize=16,color="magenta"];2657 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2658 -> 374[label="",style="dashed", color="red", weight=0]; 2658[label="vwx291 == vwx301",fontsize=16,color="magenta"];2658 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2659 -> 372[label="",style="dashed", color="red", weight=0]; 2659[label="vwx291 == vwx301",fontsize=16,color="magenta"];2659 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2660 -> 382[label="",style="dashed", color="red", weight=0]; 2660[label="vwx291 == vwx301",fontsize=16,color="magenta"];2660 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2661 -> 381[label="",style="dashed", color="red", weight=0]; 2661[label="vwx291 == vwx301",fontsize=16,color="magenta"];2661 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2662 -> 1179[label="",style="dashed", color="red", weight=0]; 2662[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2662 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2663 -> 1180[label="",style="dashed", color="red", weight=0]; 2663[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2663 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2664 -> 1181[label="",style="dashed", color="red", weight=0]; 2664[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2664 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2665 -> 1182[label="",style="dashed", color="red", weight=0]; 2665[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2665 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2666 -> 1183[label="",style="dashed", color="red", weight=0]; 2666[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2666 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2667 -> 1184[label="",style="dashed", color="red", weight=0]; 2667[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2667 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2668 -> 1185[label="",style="dashed", color="red", weight=0]; 2668[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2668 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2669 -> 1186[label="",style="dashed", color="red", weight=0]; 2669[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2669 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2670 -> 1187[label="",style="dashed", color="red", weight=0]; 2670[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2670 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2670 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2671 -> 1188[label="",style="dashed", color="red", weight=0]; 2671[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2671 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2671 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2672 -> 1189[label="",style="dashed", color="red", weight=0]; 2672[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2672 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2672 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2673 -> 1190[label="",style="dashed", color="red", weight=0]; 2673[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2673 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2674 -> 1191[label="",style="dashed", color="red", weight=0]; 2674[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2674 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2675 -> 1192[label="",style="dashed", color="red", weight=0]; 2675[label="vwx292 <= vwx302",fontsize=16,color="magenta"];2675 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2676[label="Succ (Succ (primPlusNat vwx14700 vwx41000))",fontsize=16,color="green",shape="box"];2676 -> 2736[label="",style="dashed", color="green", weight=3]; 2677[label="Succ vwx14700",fontsize=16,color="green",shape="box"];2678[label="Succ vwx41000",fontsize=16,color="green",shape="box"];2679[label="Zero",fontsize=16,color="green",shape="box"];2680[label="vwx301",fontsize=16,color="green",shape="box"];2681[label="vwx291",fontsize=16,color="green",shape="box"];2682[label="vwx301",fontsize=16,color="green",shape="box"];2683[label="vwx291",fontsize=16,color="green",shape="box"];2684[label="vwx301",fontsize=16,color="green",shape="box"];2685[label="vwx291",fontsize=16,color="green",shape="box"];2686[label="vwx301",fontsize=16,color="green",shape="box"];2687[label="vwx291",fontsize=16,color="green",shape="box"];2688[label="vwx301",fontsize=16,color="green",shape="box"];2689[label="vwx291",fontsize=16,color="green",shape="box"];2690[label="vwx301",fontsize=16,color="green",shape="box"];2691[label="vwx291",fontsize=16,color="green",shape="box"];2692[label="vwx301",fontsize=16,color="green",shape="box"];2693[label="vwx291",fontsize=16,color="green",shape="box"];2694[label="vwx301",fontsize=16,color="green",shape="box"];2695[label="vwx291",fontsize=16,color="green",shape="box"];2696[label="vwx301",fontsize=16,color="green",shape="box"];2697[label="vwx291",fontsize=16,color="green",shape="box"];2698[label="vwx301",fontsize=16,color="green",shape="box"];2699[label="vwx291",fontsize=16,color="green",shape="box"];2700[label="vwx301",fontsize=16,color="green",shape="box"];2701[label="vwx291",fontsize=16,color="green",shape="box"];2702[label="vwx301",fontsize=16,color="green",shape="box"];2703[label="vwx291",fontsize=16,color="green",shape="box"];2704[label="vwx301",fontsize=16,color="green",shape="box"];2705[label="vwx291",fontsize=16,color="green",shape="box"];2706[label="vwx301",fontsize=16,color="green",shape="box"];2707[label="vwx291",fontsize=16,color="green",shape="box"];2708[label="vwx292",fontsize=16,color="green",shape="box"];2709[label="vwx302",fontsize=16,color="green",shape="box"];2710[label="vwx292",fontsize=16,color="green",shape="box"];2711[label="vwx302",fontsize=16,color="green",shape="box"];2712[label="vwx292",fontsize=16,color="green",shape="box"];2713[label="vwx302",fontsize=16,color="green",shape="box"];2714[label="vwx292",fontsize=16,color="green",shape="box"];2715[label="vwx302",fontsize=16,color="green",shape="box"];2716[label="vwx292",fontsize=16,color="green",shape="box"];2717[label="vwx302",fontsize=16,color="green",shape="box"];2718[label="vwx292",fontsize=16,color="green",shape="box"];2719[label="vwx302",fontsize=16,color="green",shape="box"];2720[label="vwx292",fontsize=16,color="green",shape="box"];2721[label="vwx302",fontsize=16,color="green",shape="box"];2722[label="vwx292",fontsize=16,color="green",shape="box"];2723[label="vwx302",fontsize=16,color="green",shape="box"];2724[label="vwx292",fontsize=16,color="green",shape="box"];2725[label="vwx302",fontsize=16,color="green",shape="box"];2726[label="vwx292",fontsize=16,color="green",shape="box"];2727[label="vwx302",fontsize=16,color="green",shape="box"];2728[label="vwx292",fontsize=16,color="green",shape="box"];2729[label="vwx302",fontsize=16,color="green",shape="box"];2730[label="vwx292",fontsize=16,color="green",shape="box"];2731[label="vwx302",fontsize=16,color="green",shape="box"];2732[label="vwx292",fontsize=16,color="green",shape="box"];2733[label="vwx302",fontsize=16,color="green",shape="box"];2734[label="vwx292",fontsize=16,color="green",shape="box"];2735[label="vwx302",fontsize=16,color="green",shape="box"];2736 -> 2411[label="",style="dashed", color="red", weight=0]; 2736[label="primPlusNat vwx14700 vwx41000",fontsize=16,color="magenta"];2736 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2737[label="vwx14700",fontsize=16,color="green",shape="box"];2738[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_lt0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, dg), dg) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx56, vwx59, cee, cef, ceg) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(ty_[], ff)), fd)) -> new_lt0(vwx290, vwx300, ff) new_compare21(vwx36, vwx37, False, app(app(ty_Either, cab), cac), bhg) -> new_ltEs2(vwx36, vwx37, cab, cac) new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbc)) -> new_ltEs3(vwx290, vwx300, bbh, bca, bcb) new_primCompAux(vwx30, vwx40, vwx8, app(app(app(ty_@3, ef), eg), eh)) -> new_compare5(vwx30, vwx40, ef, eg, eh) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(ty_[], bfc), bdh) -> new_lt0(vwx291, vwx301, bfc) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(ty_@2, bde), bdf), bdg, bdh) -> new_lt(vwx290, vwx300, bde, bdf) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(ty_Maybe, cbg), cbd, cbe) -> new_lt1(vwx54, vwx57, cbg) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(ty_Maybe, ha))) -> new_ltEs1(vwx291, vwx301, ha) new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(vwx290, vwx300, bcg) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(app(ty_@3, bee), bef), beg)), bdg), bdh)) -> new_lt3(vwx290, vwx300, bee, bef, beg) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(ty_Maybe, beb), bdg, bdh) -> new_lt1(vwx290, vwx300, beb) new_lt0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare1(vwx31, vwx41, dg) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(ty_[], gh)) -> new_ltEs0(vwx291, vwx301, gh) new_ltEs1(Just(vwx290), Just(vwx300), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(vwx290, vwx300, baf, bag, bah) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(ty_[], bgd)) -> new_ltEs0(vwx292, vwx302, bgd) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdg), bdh)) -> new_lt1(vwx290, vwx300, beb) new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(ty_[], bcf))) -> new_ltEs0(vwx290, vwx300, bcf) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(ty_Maybe, bge))) -> new_ltEs1(vwx292, vwx302, bge) new_compare5(@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_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(vwx290, vwx300, bch, bda) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vwx56, vwx59, cdg, cdh) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(ty_Either, hb), hc))) -> new_ltEs2(vwx291, vwx301, hb, hc) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(ty_[], bgd))) -> new_ltEs0(vwx292, vwx302, bgd) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(ty_[], cch), cbe) -> new_lt0(vwx55, vwx58, cch) new_compare21(vwx36, vwx37, False, app(ty_Maybe, caa), bhg) -> new_ltEs1(vwx36, vwx37, caa) new_compare22(vwx43, vwx44, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(vwx43, vwx44, cfd) new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(ty_@2, bb), bc), bd) -> new_lt(vwx67, vwx69, bb, bc) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(ty_[], bea)), bdg), bdh)) -> new_lt0(vwx290, vwx300, bea) new_ltEs0(vwx29, vwx30, hg) -> new_compare1(vwx29, vwx30, hg) new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(ty_Either, db), dc)) -> new_ltEs2(vwx68, vwx70, db, dc) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(ty_@2, cbb), cbc), cbd, cbe) -> new_lt(vwx54, vwx57, cbb, cbc) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(app(ty_@3, ccb), ccc), ccd), cbd, cbe) -> new_lt3(vwx54, vwx57, ccb, ccc, ccd) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(ty_[], cea)) -> new_ltEs0(vwx56, vwx59, cea) new_compare(@2(vwx30, vwx31), @2(vwx40, vwx41), h, ba) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, h), new_esEs5(vwx31, vwx41, ba)), h, ba) new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(vwx290, vwx300, bdb, bdc, bdd) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(ty_@2, bgb), bgc)) -> new_ltEs(vwx292, vwx302, bgb, bgc) new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vwx68, vwx70, dd, de, df) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs3(vwx292, vwx302, bgh, bha, bhb) new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs(vwx290, vwx300, bcd, bce) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(ty_Either, bgf), bgg))) -> new_ltEs2(vwx292, vwx302, bgf, bgg) new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(ty_[], bbd)), bbc)) -> new_ltEs0(vwx290, vwx300, bbd) new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(ty_Maybe, bf), bd) -> new_lt1(vwx67, vwx69, bf) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs3(vwx292, vwx302, bgh, bha, bhb) new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(ty_@2, bcd), bce))) -> new_ltEs(vwx290, vwx300, bcd, bce) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(ty_Either, cbh), cca), cbd, cbe) -> new_lt2(vwx54, vwx57, cbh, cca) new_lt2(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare21(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(vwx290, vwx300, fb, fc) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_lt3(vwx290, vwx300, gb, gc, gd) new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(vwx290, vwx300, bdb, bdc, bdd) new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare1(vwx31, vwx41, dg) new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(ty_Maybe, da)) -> new_ltEs1(vwx68, vwx70, da) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(ty_Either, cec), ced)) -> new_ltEs2(vwx56, vwx59, cec, ced) new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(vwx290, vwx300, bad, bae) new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(vwx290, vwx300, bcg) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(ty_@2, ccf), ccg), cbe) -> new_lt(vwx55, vwx58, ccf, ccg) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(app(ty_@3, bfg), bfh), bga)), bdh)) -> new_lt3(vwx291, vwx301, bfg, bfh, bga) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(ty_Maybe, bfd)), bdh)) -> new_lt1(vwx291, vwx301, bfd) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(ty_Maybe, ceb)) -> new_ltEs1(vwx56, vwx59, ceb) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(ty_@2, gf), gg)) -> new_ltEs(vwx291, vwx301, gf, gg) new_lt(@2(vwx30, vwx31), @2(vwx40, vwx41), h, ba) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, h), new_esEs5(vwx31, vwx41, ba)), h, ba) new_compare4(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare21(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(app(ty_@3, bee), bef), beg), bdg, bdh) -> new_lt3(vwx290, vwx300, bee, bef, beg) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(ty_[], cbf), cbd, cbe) -> new_lt0(vwx54, vwx57, cbf) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(ty_[], ff), fd) -> new_lt0(vwx290, vwx300, ff) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(ty_Maybe, fg)), fd)) -> new_lt1(vwx290, vwx300, fg) new_compare21(vwx36, vwx37, False, app(app(app(ty_@3, cad), cae), caf), bhg) -> new_ltEs3(vwx36, vwx37, cad, cae, caf) new_ltEs1(Just(vwx290), Just(vwx300), app(ty_Maybe, bac)) -> new_ltEs1(vwx290, vwx300, bac) new_ltEs2(Left(vwx290), Left(vwx300), app(ty_Maybe, bbe), bbc) -> new_ltEs1(vwx290, vwx300, bbe) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(ty_Either, bec), bed), bdg, bdh) -> new_lt2(vwx290, vwx300, bec, bed) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(ty_Either, cdb), cdc), cbe) -> new_lt2(vwx55, vwx58, cdb, cdc) new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(vwx290, vwx300, bab) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdg), bdh)) -> new_lt2(vwx290, vwx300, bec, bed) new_compare4(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare22(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(ty_@2, bba), bbb)), bbc)) -> new_ltEs(vwx290, vwx300, bba, bbb) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(ty_Maybe, cda), cbe) -> new_lt1(vwx55, vwx58, cda) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(ty_Maybe, bge)) -> new_ltEs1(vwx292, vwx302, bge) new_primCompAux(vwx30, vwx40, vwx8, app(ty_Maybe, ec)) -> new_compare3(vwx30, vwx40, ec) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(ty_@2, bgb), bgc))) -> new_ltEs(vwx292, vwx302, bgb, bgc) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(ty_[], bea), bdg, bdh) -> new_lt0(vwx290, vwx300, bea) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(ty_Maybe, bfd), bdh) -> new_lt1(vwx291, vwx301, bfd) new_compare3(Just(vwx30), Just(vwx40), fa) -> new_compare20(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(ty_@2, fb), fc), fd) -> new_lt(vwx290, vwx300, fb, fc) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(ty_Either, fh), ga)), fd)) -> new_lt2(vwx290, vwx300, fh, ga) new_compare20(vwx29, vwx30, False, app(ty_[], hg)) -> new_compare1(vwx29, vwx30, hg) new_compare21(vwx36, vwx37, False, app(ty_[], bhh), bhg) -> new_ltEs0(vwx36, vwx37, bhh) new_compare22(vwx43, vwx44, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vwx43, vwx44, cfc) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(ty_Either, hb), hc)) -> new_ltEs2(vwx291, vwx301, hb, hc) new_compare21(vwx36, vwx37, False, app(app(ty_@2, bhe), bhf), bhg) -> new_ltEs(vwx36, vwx37, bhe, bhf) new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_@2, dh), ea)) -> new_compare(vwx30, vwx40, dh, ea) new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(vwx290, vwx300, bac) new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_Either, ed), ee)) -> new_compare4(vwx30, vwx40, ed, ee) new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vwx68, vwx70, ce, cf) new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbc)) -> new_ltEs2(vwx290, vwx300, bbf, bbg) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(ty_Either, bfe), bff), bdh) -> new_lt2(vwx291, vwx301, bfe, bff) new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(ty_[], cg)) -> new_ltEs0(vwx68, vwx70, cg) new_compare22(vwx43, vwx44, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx43, vwx44, cfg, cfh, cga) new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(ty_[], be), bd) -> new_lt0(vwx67, vwx69, be) new_ltEs2(Left(vwx290), Left(vwx300), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs3(vwx290, vwx300, bbh, bca, bcb) new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, dg), dg) new_primCompAux(vwx30, vwx40, vwx8, app(ty_[], eb)) -> new_compare1(vwx30, vwx40, eb) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(app(ty_@3, gb), gc), gd), fd) -> new_lt3(vwx290, vwx300, gb, gc, gd) new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(vwx290, vwx300, bch, bda) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(ty_@2, bfa), bfb), bdh) -> new_lt(vwx291, vwx301, bfa, bfb) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(ty_Either, bgf), bgg)) -> new_ltEs2(vwx292, vwx302, bgf, bgg) new_compare22(vwx43, vwx44, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs2(vwx43, vwx44, cfe, cff) new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(vwx290, vwx300, hh, baa) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(ty_Either, fh), ga), fd) -> new_lt2(vwx290, vwx300, fh, ga) new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(ty_Either, bg), bh), bd) -> new_lt2(vwx67, vwx69, bg, bh) new_ltEs2(Left(vwx290), Left(vwx300), app(ty_[], bbd), bbc) -> new_ltEs0(vwx290, vwx300, bbd) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(ty_Maybe, fg), fd) -> new_lt1(vwx290, vwx300, fg) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(ty_@2, gf), gg))) -> new_ltEs(vwx291, vwx301, gf, gg) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs3(vwx291, vwx301, hd, he, hf) new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(app(ty_@3, ca), cb), cc), bd) -> new_lt3(vwx67, vwx69, ca, cb, cc) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdg), bdh)) -> new_lt(vwx290, vwx300, bde, bdf) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(ty_[], bfc)), bdh)) -> new_lt0(vwx291, vwx301, bfc) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(ty_[], gh))) -> new_ltEs0(vwx291, vwx301, gh) new_compare22(vwx43, vwx44, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vwx43, vwx44, cfa, cfb) new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbe) -> new_lt3(vwx55, vwx58, cdd, cde, cdf) new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbc)) -> new_ltEs1(vwx290, vwx300, bbe) new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs3(vwx291, vwx301, hd, he, hf) new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(vwx290, vwx300, baf, bag, bah) new_ltEs1(Just(vwx290), Just(vwx300), app(ty_[], bab)) -> new_ltEs0(vwx290, vwx300, bab) new_ltEs2(Left(vwx290), Left(vwx300), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs2(vwx290, vwx300, bbf, bbg) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(ty_Either, bfe), bff)), bdh)) -> new_lt2(vwx291, vwx301, bfe, bff) new_ltEs2(Left(vwx290), Left(vwx300), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs(vwx290, vwx300, bba, bbb) new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(ty_@2, bfa), bfb)), bdh)) -> new_lt(vwx291, vwx301, bfa, bfb) new_ltEs1(Just(vwx290), Just(vwx300), app(app(ty_@2, hh), baa)) -> new_ltEs(vwx290, vwx300, hh, baa) new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(ty_Maybe, ha)) -> new_ltEs1(vwx291, vwx301, ha) new_lt2(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare22(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) new_lt3(@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_ltEs1(Just(vwx290), Just(vwx300), app(app(ty_Either, bad), bae)) -> new_ltEs2(vwx290, vwx300, bad, bae) new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(app(ty_@3, bfg), bfh), bga), bdh) -> new_lt3(vwx291, vwx301, bfg, bfh, bga) new_lt1(Just(vwx30), Just(vwx40), fa) -> new_compare20(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(ty_[], bcf)) -> new_ltEs0(vwx290, vwx300, bcf) The TRS R consists of the following rules: new_esEs6(vwx30, vwx40, ty_Double) -> new_esEs25(vwx30, vwx40) new_esEs37(vwx302, vwx402, ty_Integer) -> new_esEs15(vwx302, vwx402) new_esEs37(vwx302, vwx402, app(app(app(ty_@3, fcc), fcd), fce)) -> new_esEs26(vwx302, vwx402, fcc, fcd, fce) new_compare28(vwx30, vwx40, ty_Integer) -> new_compare8(vwx30, vwx40) new_primCmpInt(Neg(Succ(vwx300)), Pos(vwx40)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs22(vwx56, vwx59, app(ty_[], cea)) -> new_ltEs8(vwx56, vwx59, cea) new_lt6(vwx290, vwx300, app(app(ty_@2, fb), fc)) -> new_lt8(vwx290, vwx300, fb, fc) new_pePe(True, vwx146) -> True new_ltEs19(vwx291, vwx301, ty_Double) -> new_ltEs18(vwx291, vwx301) new_esEs21(Left(vwx300), Left(vwx400), app(ty_Ratio, feh), dfc) -> new_esEs12(vwx300, vwx400, feh) new_esEs10(vwx31, vwx41, ty_@0) -> new_esEs22(vwx31, vwx41) new_ltEs8(vwx29, vwx30, hg) -> new_fsEs(new_compare0(vwx29, vwx30, hg)) new_esEs21(Right(vwx300), Right(vwx400), dfb, app(app(app(ty_@3, fgf), fgg), fgh)) -> new_esEs26(vwx300, vwx400, fgf, fgg, fgh) new_compare9(False, False) -> EQ new_esEs30(vwx67, vwx69, ty_Char) -> new_esEs19(vwx67, vwx69) new_ltEs22(vwx56, vwx59, app(ty_Ratio, egf)) -> new_ltEs5(vwx56, vwx59, egf) new_compare28(vwx30, vwx40, app(ty_Maybe, ec)) -> new_compare13(vwx30, vwx40, ec) new_esEs24(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs19(vwx300, vwx400) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs37(vwx302, vwx402, ty_Bool) -> new_esEs17(vwx302, vwx402) new_esEs37(vwx302, vwx402, ty_Int) -> new_esEs16(vwx302, vwx402) new_primCmpInt(Pos(Zero), Neg(Succ(vwx400))) -> GT new_esEs37(vwx302, vwx402, ty_Float) -> new_esEs27(vwx302, vwx402) new_lt22(vwx290, vwx300, ty_Int) -> new_lt17(vwx290, vwx300) new_ltEs4(vwx36, vwx37, app(app(app(ty_@3, cad), cae), caf)) -> new_ltEs14(vwx36, vwx37, cad, cae, caf) new_ltEs10(Just(vwx290), Just(vwx300), ty_Double) -> new_ltEs18(vwx290, vwx300) new_compare32(Double(vwx30, Neg(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare31(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare13(Nothing, Nothing, fa) -> EQ new_lt21(vwx55, vwx58, app(ty_Maybe, cda)) -> new_lt11(vwx55, vwx58, cda) new_esEs37(vwx302, vwx402, app(app(ty_Either, fbe), fbf)) -> new_esEs21(vwx302, vwx402, fbe, fbf) new_ltEs13(Left(vwx290), Left(vwx300), ty_Float, bbc) -> new_ltEs9(vwx290, vwx300) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Int) -> new_ltEs17(vwx290, vwx300) new_lt6(vwx290, vwx300, ty_Bool) -> new_lt12(vwx290, vwx300) new_esEs36(vwx301, vwx401, ty_Ordering) -> new_esEs18(vwx301, vwx401) new_primCmpInt(Neg(Succ(vwx300)), Neg(vwx40)) -> new_primCmpNat0(vwx40, Succ(vwx300)) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Bool) -> new_ltEs11(vwx290, vwx300) new_compare16(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, False, dhg, dhh, eaa) -> GT new_compare211(vwx29, vwx30, True, eeg) -> EQ new_esEs5(vwx31, vwx41, app(ty_Ratio, eag)) -> new_esEs12(vwx31, vwx41, eag) new_esEs9(vwx30, vwx40, ty_Ordering) -> new_esEs18(vwx30, vwx40) new_compare18(LT, LT) -> EQ new_esEs33(vwx54, vwx57, ty_Double) -> new_esEs25(vwx54, vwx57) new_esEs39(vwx290, vwx300, ty_Char) -> new_esEs19(vwx290, vwx300) new_esEs32(vwx301, vwx401, app(ty_Ratio, edh)) -> new_esEs12(vwx301, vwx401, edh) new_lt10(vwx3, vwx4) -> new_esEs28(new_compare27(vwx3, vwx4)) new_ltEs4(vwx36, vwx37, ty_Float) -> new_ltEs9(vwx36, vwx37) new_ltEs10(Just(vwx290), Just(vwx300), ty_Ordering) -> new_ltEs16(vwx290, vwx300) new_esEs29(vwx290, vwx300, ty_Char) -> new_esEs19(vwx290, vwx300) new_esEs35(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs4(vwx36, vwx37, ty_Integer) -> new_ltEs6(vwx36, vwx37) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs22(vwx30, vwx40) new_esEs19(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_ltEs21(vwx29, vwx30, ty_Ordering) -> new_ltEs16(vwx29, vwx30) new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Ordering) -> new_esEs18(vwx300, vwx400) new_ltEs21(vwx29, vwx30, app(app(ty_@2, ge), fd)) -> new_ltEs7(vwx29, vwx30, ge, fd) new_esEs21(Left(vwx300), Right(vwx400), dfb, dfc) -> False new_esEs21(Right(vwx300), Left(vwx400), dfb, dfc) -> False new_compare6(Left(vwx30), Left(vwx40), bhc, bhd) -> new_compare24(vwx30, vwx40, new_esEs7(vwx30, vwx40, bhc), bhc, bhd) new_esEs31(vwx300, vwx400, app(app(ty_@2, ecg), ech)) -> new_esEs23(vwx300, vwx400, ecg, ech) new_esEs21(Right(vwx300), Right(vwx400), dfb, app(ty_Ratio, fgb)) -> new_esEs12(vwx300, vwx400, fgb) new_ltEs19(vwx291, vwx301, ty_@0) -> new_ltEs12(vwx291, vwx301) new_esEs34(vwx55, vwx58, app(ty_[], cch)) -> new_esEs20(vwx55, vwx58, cch) new_lt14(vwx3, vwx4, cag, cah, cba) -> new_esEs28(new_compare7(vwx3, vwx4, cag, cah, cba)) new_esEs7(vwx30, vwx40, app(ty_[], cgg)) -> new_esEs20(vwx30, vwx40, cgg) new_esEs11(vwx32, vwx42, ty_Ordering) -> new_esEs18(vwx32, vwx42) new_ltEs4(vwx36, vwx37, app(app(ty_@2, bhe), bhf)) -> new_ltEs7(vwx36, vwx37, bhe, bhf) new_esEs4(vwx30, vwx40, app(app(ty_@2, dfd), dfe)) -> new_esEs23(vwx30, vwx40, dfd, dfe) new_ltEs10(Just(vwx290), Just(vwx300), ty_@0) -> new_ltEs12(vwx290, vwx300) new_lt21(vwx55, vwx58, ty_Integer) -> new_lt4(vwx55, vwx58) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs29(vwx290, vwx300, ty_@0) -> new_esEs22(vwx290, vwx300) new_ltEs22(vwx56, vwx59, app(ty_Maybe, ceb)) -> new_ltEs10(vwx56, vwx59, ceb) new_compare30(@2(vwx30, vwx31), @2(vwx40, vwx41), h, ba) -> new_compare210(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, h), new_esEs5(vwx31, vwx41, ba)), h, ba) new_esEs38(vwx300, vwx400, app(ty_Maybe, fdf)) -> new_esEs24(vwx300, vwx400, fdf) new_esEs6(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_compare13(Just(vwx30), Nothing, fa) -> GT new_ltEs9(vwx29, vwx30) -> new_fsEs(new_compare27(vwx29, vwx30)) new_lt23(vwx291, vwx301, app(app(ty_@2, bfa), bfb)) -> new_lt8(vwx291, vwx301, bfa, bfb) new_ltEs21(vwx29, vwx30, ty_Integer) -> new_ltEs6(vwx29, vwx30) new_not(True) -> False new_esEs40(vwx291, vwx301, app(ty_[], bfc)) -> new_esEs20(vwx291, vwx301, bfc) new_lt20(vwx54, vwx57, app(ty_Ratio, egd)) -> new_lt7(vwx54, vwx57, egd) new_esEs33(vwx54, vwx57, ty_Integer) -> new_esEs15(vwx54, vwx57) new_esEs18(GT, GT) -> True new_ltEs24(vwx292, vwx302, ty_Int) -> new_ltEs17(vwx292, vwx302) new_esEs4(vwx30, vwx40, ty_Ordering) -> new_esEs18(vwx30, vwx40) new_esEs11(vwx32, vwx42, app(ty_Ratio, deb)) -> new_esEs12(vwx32, vwx42, deb) new_esEs24(Just(vwx300), Just(vwx400), app(ty_[], dgb)) -> new_esEs20(vwx300, vwx400, dgb) new_esEs34(vwx55, vwx58, ty_Char) -> new_esEs19(vwx55, vwx58) new_ltEs23(vwx43, vwx44, ty_Bool) -> new_ltEs11(vwx43, vwx44) new_ltEs23(vwx43, vwx44, ty_Char) -> new_ltEs15(vwx43, vwx44) new_lt19(vwx67, vwx69, app(ty_Ratio, eca)) -> new_lt7(vwx67, vwx69, eca) new_primCompAux00(vwx23, LT) -> LT new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs4(vwx36, vwx37, app(ty_Ratio, cgf)) -> new_ltEs5(vwx36, vwx37, cgf) new_esEs24(Just(vwx300), Just(vwx400), app(ty_Maybe, dgh)) -> new_esEs24(vwx300, vwx400, dgh) new_primCmpNat0(Zero, Zero) -> EQ new_lt21(vwx55, vwx58, ty_Float) -> new_lt10(vwx55, vwx58) new_esEs6(vwx30, vwx40, app(app(app(ty_@3, ega), egb), egc)) -> new_esEs26(vwx30, vwx40, ega, egb, egc) new_esEs33(vwx54, vwx57, ty_Bool) -> new_esEs17(vwx54, vwx57) new_ltEs21(vwx29, vwx30, ty_Float) -> new_ltEs9(vwx29, vwx30) new_esEs5(vwx31, vwx41, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs26(vwx31, vwx41, ebc, ebd, ebe) new_esEs33(vwx54, vwx57, app(app(ty_Either, cbh), cca)) -> new_esEs21(vwx54, vwx57, cbh, cca) new_lt22(vwx290, vwx300, ty_Float) -> new_lt10(vwx290, vwx300) new_ltEs16(GT, EQ) -> False new_esEs32(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_ltEs24(vwx292, vwx302, ty_Bool) -> new_ltEs11(vwx292, vwx302) new_esEs40(vwx291, vwx301, ty_Char) -> new_esEs19(vwx291, vwx301) new_compare15(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, True, vwx139, dhg, dhh, eaa) -> new_compare16(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, True, dhg, dhh, eaa) new_esEs35(vwx300, vwx400, app(app(ty_@2, ehd), ehe)) -> new_esEs23(vwx300, vwx400, ehd, ehe) new_lt20(vwx54, vwx57, ty_Ordering) -> new_lt16(vwx54, vwx57) new_compare13(Nothing, Just(vwx40), fa) -> LT new_ltEs5(vwx29, vwx30, eeh) -> new_fsEs(new_compare29(vwx29, vwx30, eeh)) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs39(vwx290, vwx300, app(ty_Maybe, beb)) -> new_esEs24(vwx290, vwx300, beb) new_esEs6(vwx30, vwx40, ty_Float) -> new_esEs27(vwx30, vwx40) new_compare10(vwx105, vwx106, True, cgb, cgc) -> LT new_ltEs20(vwx68, vwx70, ty_Double) -> new_ltEs18(vwx68, vwx70) new_esEs37(vwx302, vwx402, ty_Double) -> new_esEs25(vwx302, vwx402) new_compare110(vwx117, vwx118, vwx119, vwx120, False, vwx122, eab, eac) -> new_compare19(vwx117, vwx118, vwx119, vwx120, vwx122, eab, eac) new_esEs36(vwx301, vwx401, app(app(ty_@2, faf), fag)) -> new_esEs23(vwx301, vwx401, faf, fag) new_esEs9(vwx30, vwx40, app(ty_Ratio, dbf)) -> new_esEs12(vwx30, vwx40, dbf) new_primCompAux00(vwx23, GT) -> GT new_esEs32(vwx301, vwx401, ty_Ordering) -> new_esEs18(vwx301, vwx401) new_esEs35(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs22(vwx56, vwx59, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs14(vwx56, vwx59, cee, cef, ceg) new_compare27(Float(vwx30, Pos(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare31(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare27(Float(vwx30, Neg(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare31(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_lt20(vwx54, vwx57, app(ty_[], cbf)) -> new_lt9(vwx54, vwx57, cbf) new_esEs6(vwx30, vwx40, app(ty_[], efb)) -> new_esEs20(vwx30, vwx40, efb) new_esEs4(vwx30, vwx40, ty_@0) -> new_esEs22(vwx30, vwx40) new_esEs40(vwx291, vwx301, app(ty_Maybe, bfd)) -> new_esEs24(vwx291, vwx301, bfd) new_ltEs10(Nothing, Just(vwx300), efa) -> True new_lt19(vwx67, vwx69, app(app(app(ty_@3, ca), cb), cc)) -> new_lt14(vwx67, vwx69, ca, cb, cc) new_esEs24(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs22(vwx300, vwx400) new_esEs9(vwx30, vwx40, ty_@0) -> new_esEs22(vwx30, vwx40) new_primCmpInt(Pos(Succ(vwx300)), Neg(vwx40)) -> GT new_lt22(vwx290, vwx300, ty_Integer) -> new_lt4(vwx290, vwx300) new_lt6(vwx290, vwx300, ty_Ordering) -> new_lt16(vwx290, vwx300) new_esEs10(vwx31, vwx41, ty_Ordering) -> new_esEs18(vwx31, vwx41) new_esEs12(:%(vwx300, vwx301), :%(vwx400, vwx401), cgd) -> new_asAs(new_esEs13(vwx300, vwx400, cgd), new_esEs14(vwx301, vwx401, cgd)) new_compare14(vwx90, vwx91, False, dhf) -> GT new_esEs5(vwx31, vwx41, ty_Float) -> new_esEs27(vwx31, vwx41) new_primCompAux0(vwx30, vwx40, vwx8, dg) -> new_primCompAux00(vwx8, new_compare28(vwx30, vwx40, dg)) new_ltEs16(LT, LT) -> True new_ltEs21(vwx29, vwx30, app(app(app(ty_@3, beh), bdg), bdh)) -> new_ltEs14(vwx29, vwx30, beh, bdg, bdh) new_lt23(vwx291, vwx301, ty_Bool) -> new_lt12(vwx291, vwx301) new_ltEs10(Just(vwx290), Just(vwx300), ty_Integer) -> new_ltEs6(vwx290, vwx300) new_esEs29(vwx290, vwx300, app(app(ty_@2, fb), fc)) -> new_esEs23(vwx290, vwx300, fb, fc) new_esEs33(vwx54, vwx57, ty_Int) -> new_esEs16(vwx54, vwx57) new_esEs34(vwx55, vwx58, app(ty_Maybe, cda)) -> new_esEs24(vwx55, vwx58, cda) new_ltEs22(vwx56, vwx59, ty_Char) -> new_ltEs15(vwx56, vwx59) new_ltEs13(Left(vwx290), Left(vwx300), ty_Integer, bbc) -> new_ltEs6(vwx290, vwx300) new_compare28(vwx30, vwx40, ty_Float) -> new_compare27(vwx30, vwx40) new_esEs39(vwx290, vwx300, ty_@0) -> new_esEs22(vwx290, vwx300) new_esEs29(vwx290, vwx300, app(ty_[], ff)) -> new_esEs20(vwx290, vwx300, ff) new_ltEs17(vwx29, vwx30) -> new_fsEs(new_compare31(vwx29, vwx30)) new_esEs32(vwx301, vwx401, ty_Bool) -> new_esEs17(vwx301, vwx401) new_lt5(vwx3, vwx4) -> new_esEs28(new_compare12(vwx3, vwx4)) new_primPlusNat1(Succ(vwx14700), Succ(vwx41000)) -> Succ(Succ(new_primPlusNat1(vwx14700, vwx41000))) new_ltEs21(vwx29, vwx30, ty_Double) -> new_ltEs18(vwx29, vwx30) new_compare19(vwx117, vwx118, vwx119, vwx120, False, eab, eac) -> GT new_ltEs21(vwx29, vwx30, ty_@0) -> new_ltEs12(vwx29, vwx30) new_lt21(vwx55, vwx58, ty_Char) -> new_lt15(vwx55, vwx58) new_primCmpNat0(Zero, Succ(vwx400)) -> LT new_lt20(vwx54, vwx57, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_lt14(vwx54, vwx57, ccb, ccc, ccd) new_esEs30(vwx67, vwx69, app(ty_[], be)) -> new_esEs20(vwx67, vwx69, be) new_ltEs22(vwx56, vwx59, app(app(ty_@2, cdg), cdh)) -> new_ltEs7(vwx56, vwx59, cdg, cdh) new_esEs20([], [], dfa) -> True new_esEs32(vwx301, vwx401, app(app(ty_Either, edf), edg)) -> new_esEs21(vwx301, vwx401, edf, edg) new_esEs11(vwx32, vwx42, ty_@0) -> new_esEs22(vwx32, vwx42) new_ltEs19(vwx291, vwx301, ty_Integer) -> new_ltEs6(vwx291, vwx301) new_esEs18(LT, LT) -> True new_ltEs4(vwx36, vwx37, app(ty_Maybe, caa)) -> new_ltEs10(vwx36, vwx37, caa) new_esEs9(vwx30, vwx40, ty_Int) -> new_esEs16(vwx30, vwx40) new_compare18(GT, GT) -> EQ new_lt21(vwx55, vwx58, ty_Int) -> new_lt17(vwx55, vwx58) new_primCmpNat0(Succ(vwx300), Zero) -> GT new_esEs30(vwx67, vwx69, app(app(ty_@2, bb), bc)) -> new_esEs23(vwx67, vwx69, bb, bc) new_esEs38(vwx300, vwx400, ty_Bool) -> new_esEs17(vwx300, vwx400) new_lt7(vwx3, vwx4, egg) -> new_esEs28(new_compare29(vwx3, vwx4, egg)) new_esEs38(vwx300, vwx400, ty_Float) -> new_esEs27(vwx300, vwx400) new_esEs40(vwx291, vwx301, ty_@0) -> new_esEs22(vwx291, vwx301) new_esEs21(Left(vwx300), Left(vwx400), ty_Int, dfc) -> new_esEs16(vwx300, vwx400) new_ltEs21(vwx29, vwx30, app(ty_Ratio, eeh)) -> new_ltEs5(vwx29, vwx30, eeh) new_pePe(False, vwx146) -> vwx146 new_lt22(vwx290, vwx300, app(ty_Maybe, beb)) -> new_lt11(vwx290, vwx300, beb) new_ltEs10(Just(vwx290), Just(vwx300), app(ty_Maybe, bac)) -> new_ltEs10(vwx290, vwx300, bac) new_ltEs10(Just(vwx290), Just(vwx300), ty_Float) -> new_ltEs9(vwx290, vwx300) new_esEs38(vwx300, vwx400, app(app(ty_Either, fda), fdb)) -> new_esEs21(vwx300, vwx400, fda, fdb) new_ltEs18(vwx29, vwx30) -> new_fsEs(new_compare32(vwx29, vwx30)) new_ltEs13(Left(vwx290), Right(vwx300), bcc, bbc) -> True new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs18(vwx30, vwx40) new_compare25(vwx43, vwx44, True, ceh, fcf) -> EQ new_compare18(LT, GT) -> LT new_esEs8(vwx30, vwx40, app(ty_Maybe, dag)) -> new_esEs24(vwx30, vwx40, dag) new_esEs29(vwx290, vwx300, app(ty_Maybe, fg)) -> new_esEs24(vwx290, vwx300, fg) new_esEs32(vwx301, vwx401, ty_Double) -> new_esEs25(vwx301, vwx401) new_lt21(vwx55, vwx58, app(ty_Ratio, ege)) -> new_lt7(vwx55, vwx58, ege) new_ltEs19(vwx291, vwx301, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs14(vwx291, vwx301, hd, he, hf) new_esEs29(vwx290, vwx300, ty_Ordering) -> new_esEs18(vwx290, vwx300) new_ltEs16(LT, GT) -> True new_esEs7(vwx30, vwx40, ty_Double) -> new_esEs25(vwx30, vwx40) new_fsEs(vwx141) -> new_not(new_esEs18(vwx141, GT)) new_ltEs13(Left(vwx290), Left(vwx300), ty_Char, bbc) -> new_ltEs15(vwx290, vwx300) new_esEs5(vwx31, vwx41, ty_@0) -> new_esEs22(vwx31, vwx41) new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Char) -> new_esEs19(vwx300, vwx400) new_compare31(vwx3, vwx4) -> new_primCmpInt(vwx3, vwx4) new_esEs38(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs9(vwx30, vwx40, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_esEs26(vwx30, vwx40, dcb, dcc, dcd) new_esEs11(vwx32, vwx42, ty_Int) -> new_esEs16(vwx32, vwx42) new_ltEs16(LT, EQ) -> True new_ltEs16(EQ, LT) -> False new_esEs21(Left(vwx300), Left(vwx400), app(app(app(ty_@3, ffd), ffe), fff), dfc) -> new_esEs26(vwx300, vwx400, ffd, ffe, fff) new_compare6(Left(vwx30), Right(vwx40), bhc, bhd) -> LT new_lt21(vwx55, vwx58, app(app(app(ty_@3, cdd), cde), cdf)) -> new_lt14(vwx55, vwx58, cdd, cde, cdf) new_compare11(vwx97, vwx98, False, ebf, ebg) -> GT new_esEs32(vwx301, vwx401, ty_@0) -> new_esEs22(vwx301, vwx401) new_compare211(vwx29, vwx30, False, eeg) -> new_compare14(vwx29, vwx30, new_ltEs21(vwx29, vwx30, eeg), eeg) new_ltEs13(Left(vwx290), Left(vwx300), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs13(vwx290, vwx300, bbf, bbg) new_esEs31(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_ltEs23(vwx43, vwx44, app(ty_Ratio, fcg)) -> new_ltEs5(vwx43, vwx44, fcg) new_compare9(True, False) -> GT new_esEs28(GT) -> False new_ltEs13(Right(vwx290), Left(vwx300), bcc, bbc) -> False new_esEs32(vwx301, vwx401, app(app(ty_@2, eea), eeb)) -> new_esEs23(vwx301, vwx401, eea, eeb) new_esEs26(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), dfg, dfh, dga) -> new_asAs(new_esEs35(vwx300, vwx400, dfg), new_asAs(new_esEs36(vwx301, vwx401, dfh), new_esEs37(vwx302, vwx402, dga))) new_ltEs16(GT, LT) -> False new_esEs34(vwx55, vwx58, ty_Int) -> new_esEs16(vwx55, vwx58) new_esEs6(vwx30, vwx40, app(ty_Maybe, efh)) -> new_esEs24(vwx30, vwx40, efh) new_ltEs20(vwx68, vwx70, app(app(app(ty_@3, dd), de), df)) -> new_ltEs14(vwx68, vwx70, dd, de, df) new_compare26(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, cbe) -> new_compare15(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, new_lt20(vwx54, vwx57, cce), new_asAs(new_esEs33(vwx54, vwx57, cce), new_pePe(new_lt21(vwx55, vwx58, cbd), new_asAs(new_esEs34(vwx55, vwx58, cbd), new_ltEs22(vwx56, vwx59, cbe)))), cce, cbd, cbe) new_esEs4(vwx30, vwx40, ty_Float) -> new_esEs27(vwx30, vwx40) new_esEs21(Left(vwx300), Left(vwx400), ty_Float, dfc) -> new_esEs27(vwx300, vwx400) new_esEs38(vwx300, vwx400, ty_Int) -> new_esEs16(vwx300, vwx400) new_esEs31(vwx300, vwx400, app(app(ty_Either, ecd), ece)) -> new_esEs21(vwx300, vwx400, ecd, ece) new_esEs21(Left(vwx300), Left(vwx400), ty_Bool, dfc) -> new_esEs17(vwx300, vwx400) new_lt22(vwx290, vwx300, ty_Bool) -> new_lt12(vwx290, vwx300) new_ltEs20(vwx68, vwx70, ty_@0) -> new_ltEs12(vwx68, vwx70) new_esEs31(vwx300, vwx400, ty_Bool) -> new_esEs17(vwx300, vwx400) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_lt22(vwx290, vwx300, ty_Char) -> new_lt15(vwx290, vwx300) new_ltEs4(vwx36, vwx37, ty_Ordering) -> new_ltEs16(vwx36, vwx37) new_compare32(Double(vwx30, Pos(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare31(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs14(vwx290, vwx300, bdb, bdc, bdd) new_primCmpInt(Neg(Zero), Pos(Succ(vwx400))) -> LT new_esEs30(vwx67, vwx69, ty_@0) -> new_esEs22(vwx67, vwx69) new_lt23(vwx291, vwx301, app(ty_Ratio, fec)) -> new_lt7(vwx291, vwx301, fec) new_ltEs20(vwx68, vwx70, app(app(ty_Either, db), dc)) -> new_ltEs13(vwx68, vwx70, db, dc) new_esEs6(vwx30, vwx40, app(ty_Ratio, efe)) -> new_esEs12(vwx30, vwx40, efe) new_ltEs7(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, fd) -> new_pePe(new_lt6(vwx290, vwx300, ge), new_asAs(new_esEs29(vwx290, vwx300, ge), new_ltEs19(vwx291, vwx301, fd))) new_esEs9(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_esEs34(vwx55, vwx58, app(app(app(ty_@3, cdd), cde), cdf)) -> new_esEs26(vwx55, vwx58, cdd, cde, cdf) new_esEs36(vwx301, vwx401, ty_Float) -> new_esEs27(vwx301, vwx401) new_esEs4(vwx30, vwx40, ty_Bool) -> new_esEs17(vwx30, vwx40) new_primMulInt(Pos(vwx300), Pos(vwx410)) -> Pos(new_primMulNat0(vwx300, vwx410)) new_esEs33(vwx54, vwx57, app(ty_Ratio, egd)) -> new_esEs12(vwx54, vwx57, egd) new_lt23(vwx291, vwx301, ty_Int) -> new_lt17(vwx291, vwx301) new_esEs33(vwx54, vwx57, app(ty_Maybe, cbg)) -> new_esEs24(vwx54, vwx57, cbg) new_lt20(vwx54, vwx57, app(app(ty_@2, cbb), cbc)) -> new_lt8(vwx54, vwx57, cbb, cbc) new_ltEs10(Just(vwx290), Just(vwx300), ty_Bool) -> new_ltEs11(vwx290, vwx300) new_esEs11(vwx32, vwx42, app(app(app(ty_@3, def), deg), deh)) -> new_esEs26(vwx32, vwx42, def, deg, deh) new_esEs4(vwx30, vwx40, app(app(ty_Either, dfb), dfc)) -> new_esEs21(vwx30, vwx40, dfb, dfc) new_esEs37(vwx302, vwx402, app(ty_[], fbd)) -> new_esEs20(vwx302, vwx402, fbd) new_ltEs21(vwx29, vwx30, ty_Char) -> new_ltEs15(vwx29, vwx30) new_compare29(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Integer) -> new_compare8(new_sr0(vwx30, vwx41), new_sr0(vwx40, vwx31)) new_esEs6(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_lt6(vwx290, vwx300, app(app(app(ty_@3, gb), gc), gd)) -> new_lt14(vwx290, vwx300, gb, gc, gd) new_lt21(vwx55, vwx58, app(app(ty_Either, cdb), cdc)) -> new_lt13(vwx55, vwx58, cdb, cdc) new_esEs21(Left(vwx300), Left(vwx400), ty_Integer, dfc) -> new_esEs15(vwx300, vwx400) new_esEs10(vwx31, vwx41, app(ty_Ratio, dch)) -> new_esEs12(vwx31, vwx41, dch) new_esEs7(vwx30, vwx40, app(app(app(ty_@3, chf), chg), chh)) -> new_esEs26(vwx30, vwx40, chf, chg, chh) new_ltEs4(vwx36, vwx37, ty_Char) -> new_ltEs15(vwx36, vwx37) new_esEs10(vwx31, vwx41, app(ty_Maybe, ddc)) -> new_esEs24(vwx31, vwx41, ddc) new_primMulNat0(Succ(vwx3000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx4100)) -> Zero new_ltEs11(False, False) -> True new_primPlusNat0(Zero, vwx4100) -> Succ(vwx4100) new_lt6(vwx290, vwx300, app(app(ty_Either, fh), ga)) -> new_lt13(vwx290, vwx300, fh, ga) new_esEs34(vwx55, vwx58, app(app(ty_@2, ccf), ccg)) -> new_esEs23(vwx55, vwx58, ccf, ccg) new_ltEs15(vwx29, vwx30) -> new_fsEs(new_compare17(vwx29, vwx30)) new_esEs7(vwx30, vwx40, app(app(ty_@2, chc), chd)) -> new_esEs23(vwx30, vwx40, chc, chd) new_compare28(vwx30, vwx40, app(app(ty_@2, dh), ea)) -> new_compare30(vwx30, vwx40, dh, ea) new_ltEs19(vwx291, vwx301, app(app(ty_Either, hb), hc)) -> new_ltEs13(vwx291, vwx301, hb, hc) new_esEs10(vwx31, vwx41, ty_Char) -> new_esEs19(vwx31, vwx41) new_esEs24(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs18(vwx300, vwx400) new_esEs33(vwx54, vwx57, ty_Char) -> new_esEs19(vwx54, vwx57) new_esEs30(vwx67, vwx69, app(ty_Maybe, bf)) -> new_esEs24(vwx67, vwx69, bf) new_compare28(vwx30, vwx40, app(ty_[], eb)) -> new_compare0(vwx30, vwx40, eb) new_esEs11(vwx32, vwx42, app(app(ty_@2, dec), ded)) -> new_esEs23(vwx32, vwx42, dec, ded) new_esEs16(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_esEs7(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_lt20(vwx54, vwx57, ty_Bool) -> new_lt12(vwx54, vwx57) new_ltEs19(vwx291, vwx301, app(ty_Ratio, dhe)) -> new_ltEs5(vwx291, vwx301, dhe) new_ltEs16(EQ, GT) -> True new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Double) -> new_esEs25(vwx300, vwx400) new_compare9(True, True) -> EQ new_compare18(EQ, GT) -> LT new_ltEs16(EQ, EQ) -> True new_ltEs22(vwx56, vwx59, ty_Float) -> new_ltEs9(vwx56, vwx59) new_ltEs13(Left(vwx290), Left(vwx300), ty_@0, bbc) -> new_ltEs12(vwx290, vwx300) new_esEs4(vwx30, vwx40, app(ty_[], dfa)) -> new_esEs20(vwx30, vwx40, dfa) new_esEs40(vwx291, vwx301, ty_Integer) -> new_esEs15(vwx291, vwx301) new_esEs40(vwx291, vwx301, ty_Bool) -> new_esEs17(vwx291, vwx301) new_esEs31(vwx300, vwx400, app(ty_Maybe, eda)) -> new_esEs24(vwx300, vwx400, eda) new_esEs21(Right(vwx300), Right(vwx400), dfb, app(ty_[], ffg)) -> new_esEs20(vwx300, vwx400, ffg) new_esEs6(vwx30, vwx40, ty_Bool) -> new_esEs17(vwx30, vwx40) new_esEs32(vwx301, vwx401, app(app(app(ty_@3, eed), eee), eef)) -> new_esEs26(vwx301, vwx401, eed, eee, eef) new_ltEs4(vwx36, vwx37, app(ty_[], bhh)) -> new_ltEs8(vwx36, vwx37, bhh) new_esEs5(vwx31, vwx41, ty_Integer) -> new_esEs15(vwx31, vwx41) new_esEs8(vwx30, vwx40, app(ty_Ratio, dad)) -> new_esEs12(vwx30, vwx40, dad) new_esEs8(vwx30, vwx40, app(app(ty_@2, dae), daf)) -> new_esEs23(vwx30, vwx40, dae, daf) new_esEs31(vwx300, vwx400, ty_Ordering) -> new_esEs18(vwx300, vwx400) new_esEs6(vwx30, vwx40, app(app(ty_Either, efc), efd)) -> new_esEs21(vwx30, vwx40, efc, efd) new_esEs39(vwx290, vwx300, app(ty_[], bea)) -> new_esEs20(vwx290, vwx300, bea) new_compare28(vwx30, vwx40, ty_Double) -> new_compare32(vwx30, vwx40) new_lt19(vwx67, vwx69, app(app(ty_@2, bb), bc)) -> new_lt8(vwx67, vwx69, bb, bc) new_lt21(vwx55, vwx58, ty_Bool) -> new_lt12(vwx55, vwx58) new_ltEs4(vwx36, vwx37, ty_@0) -> new_ltEs12(vwx36, vwx37) new_esEs18(EQ, EQ) -> True new_ltEs13(Left(vwx290), Left(vwx300), ty_Ordering, bbc) -> new_ltEs16(vwx290, vwx300) new_esEs9(vwx30, vwx40, app(app(ty_@2, dbg), dbh)) -> new_esEs23(vwx30, vwx40, dbg, dbh) new_ltEs11(True, True) -> True new_compare19(vwx117, vwx118, vwx119, vwx120, True, eab, eac) -> LT new_primPlusNat1(Succ(vwx14700), Zero) -> Succ(vwx14700) new_primPlusNat1(Zero, Succ(vwx41000)) -> Succ(vwx41000) new_esEs5(vwx31, vwx41, ty_Ordering) -> new_esEs18(vwx31, vwx41) new_lt19(vwx67, vwx69, app(ty_Maybe, bf)) -> new_lt11(vwx67, vwx69, bf) new_lt23(vwx291, vwx301, app(app(ty_Either, bfe), bff)) -> new_lt13(vwx291, vwx301, bfe, bff) new_ltEs23(vwx43, vwx44, ty_Double) -> new_ltEs18(vwx43, vwx44) new_esEs40(vwx291, vwx301, app(app(ty_Either, bfe), bff)) -> new_esEs21(vwx291, vwx301, bfe, bff) new_lt23(vwx291, vwx301, ty_Float) -> new_lt10(vwx291, vwx301) new_lt23(vwx291, vwx301, ty_Char) -> new_lt15(vwx291, vwx301) new_esEs4(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_esEs32(vwx301, vwx401, app(ty_Maybe, eec)) -> new_esEs24(vwx301, vwx401, eec) new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs7(vwx290, vwx300, bcd, bce) new_ltEs20(vwx68, vwx70, ty_Ordering) -> new_ltEs16(vwx68, vwx70) new_compare16(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, True, dhg, dhh, eaa) -> LT new_ltEs20(vwx68, vwx70, app(app(ty_@2, ce), cf)) -> new_ltEs7(vwx68, vwx70, ce, cf) new_lt20(vwx54, vwx57, app(ty_Maybe, cbg)) -> new_lt11(vwx54, vwx57, cbg) new_compare210(vwx67, vwx68, vwx69, vwx70, True, cd, bd) -> EQ new_lt22(vwx290, vwx300, app(app(ty_Either, bec), bed)) -> new_lt13(vwx290, vwx300, bec, bed) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, dah), dba), dbb)) -> new_esEs26(vwx30, vwx40, dah, dba, dbb) new_esEs29(vwx290, vwx300, app(app(ty_Either, fh), ga)) -> new_esEs21(vwx290, vwx300, fh, ga) new_esEs29(vwx290, vwx300, ty_Bool) -> new_esEs17(vwx290, vwx300) new_lt23(vwx291, vwx301, ty_Ordering) -> new_lt16(vwx291, vwx301) new_esEs31(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_ltEs24(vwx292, vwx302, ty_Double) -> new_ltEs18(vwx292, vwx302) new_esEs11(vwx32, vwx42, ty_Double) -> new_esEs25(vwx32, vwx42) new_primMulInt(Neg(vwx300), Neg(vwx410)) -> Pos(new_primMulNat0(vwx300, vwx410)) new_ltEs19(vwx291, vwx301, ty_Char) -> new_ltEs15(vwx291, vwx301) new_primCmpInt(Pos(Zero), Pos(Succ(vwx400))) -> new_primCmpNat0(Zero, Succ(vwx400)) new_esEs9(vwx30, vwx40, ty_Double) -> new_esEs25(vwx30, vwx40) new_esEs32(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_esEs6(vwx30, vwx40, ty_Ordering) -> new_esEs18(vwx30, vwx40) new_esEs24(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs33(vwx54, vwx57, app(app(ty_@2, cbb), cbc)) -> new_esEs23(vwx54, vwx57, cbb, cbc) new_ltEs19(vwx291, vwx301, ty_Ordering) -> new_ltEs16(vwx291, vwx301) new_compare210(vwx67, vwx68, vwx69, vwx70, False, cd, bd) -> new_compare110(vwx67, vwx68, vwx69, vwx70, new_lt19(vwx67, vwx69, cd), new_asAs(new_esEs30(vwx67, vwx69, cd), new_ltEs20(vwx68, vwx70, bd)), cd, bd) new_esEs10(vwx31, vwx41, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs26(vwx31, vwx41, ddd, dde, ddf) new_esEs31(vwx300, vwx400, app(ty_Ratio, ecf)) -> new_esEs12(vwx300, vwx400, ecf) new_esEs34(vwx55, vwx58, ty_Double) -> new_esEs25(vwx55, vwx58) new_ltEs11(False, True) -> True new_ltEs19(vwx291, vwx301, app(app(ty_@2, gf), gg)) -> new_ltEs7(vwx291, vwx301, gf, gg) new_esEs10(vwx31, vwx41, app(app(ty_@2, dda), ddb)) -> new_esEs23(vwx31, vwx41, dda, ddb) new_compare25(vwx43, vwx44, False, ceh, fcf) -> new_compare10(vwx43, vwx44, new_ltEs23(vwx43, vwx44, fcf), ceh, fcf) new_ltEs23(vwx43, vwx44, ty_Float) -> new_ltEs9(vwx43, vwx44) new_esEs7(vwx30, vwx40, ty_@0) -> new_esEs22(vwx30, vwx40) new_lt6(vwx290, vwx300, app(ty_Ratio, dhd)) -> new_lt7(vwx290, vwx300, dhd) new_esEs13(vwx300, vwx400, ty_Int) -> new_esEs16(vwx300, vwx400) new_ltEs4(vwx36, vwx37, app(app(ty_Either, cab), cac)) -> new_ltEs13(vwx36, vwx37, cab, cac) new_lt23(vwx291, vwx301, app(app(app(ty_@3, bfg), bfh), bga)) -> new_lt14(vwx291, vwx301, bfg, bfh, bga) new_ltEs13(Left(vwx290), Left(vwx300), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs7(vwx290, vwx300, bba, bbb) new_esEs5(vwx31, vwx41, app(app(ty_Either, eae), eaf)) -> new_esEs21(vwx31, vwx41, eae, eaf) new_lt6(vwx290, vwx300, ty_Int) -> new_lt17(vwx290, vwx300) new_esEs7(vwx30, vwx40, app(ty_Ratio, chb)) -> new_esEs12(vwx30, vwx40, chb) new_esEs30(vwx67, vwx69, ty_Ordering) -> new_esEs18(vwx67, vwx69) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_esEs33(vwx54, vwx57, app(app(app(ty_@3, ccb), ccc), ccd)) -> new_esEs26(vwx54, vwx57, ccb, ccc, ccd) new_esEs5(vwx31, vwx41, ty_Bool) -> new_esEs17(vwx31, vwx41) new_esEs36(vwx301, vwx401, ty_Int) -> new_esEs16(vwx301, vwx401) new_esEs7(vwx30, vwx40, app(ty_Maybe, che)) -> new_esEs24(vwx30, vwx40, che) new_esEs38(vwx300, vwx400, app(ty_[], fch)) -> new_esEs20(vwx300, vwx400, fch) new_ltEs13(Left(vwx290), Left(vwx300), ty_Bool, bbc) -> new_ltEs11(vwx290, vwx300) new_esEs33(vwx54, vwx57, ty_@0) -> new_esEs22(vwx54, vwx57) new_ltEs13(Left(vwx290), Left(vwx300), app(ty_[], bbd), bbc) -> new_ltEs8(vwx290, vwx300, bbd) new_esEs39(vwx290, vwx300, app(ty_Ratio, feb)) -> new_esEs12(vwx290, vwx300, feb) new_ltEs6(vwx29, vwx30) -> new_fsEs(new_compare8(vwx29, vwx30)) new_compare12(@0, @0) -> EQ new_ltEs23(vwx43, vwx44, ty_@0) -> new_ltEs12(vwx43, vwx44) new_compare8(Integer(vwx30), Integer(vwx40)) -> new_primCmpInt(vwx30, vwx40) new_esEs6(vwx30, vwx40, ty_@0) -> new_esEs22(vwx30, vwx40) new_lt6(vwx290, vwx300, app(ty_Maybe, fg)) -> new_lt11(vwx290, vwx300, fg) new_primMulInt(Pos(vwx300), Neg(vwx410)) -> Neg(new_primMulNat0(vwx300, vwx410)) new_primMulInt(Neg(vwx300), Pos(vwx410)) -> Neg(new_primMulNat0(vwx300, vwx410)) new_lt20(vwx54, vwx57, app(app(ty_Either, cbh), cca)) -> new_lt13(vwx54, vwx57, cbh, cca) new_lt12(vwx3, vwx4) -> new_esEs28(new_compare9(vwx3, vwx4)) new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(ty_[], bcf)) -> new_ltEs8(vwx290, vwx300, bcf) new_esEs21(Left(vwx300), Left(vwx400), ty_Ordering, dfc) -> new_esEs18(vwx300, vwx400) new_esEs29(vwx290, vwx300, ty_Int) -> new_esEs16(vwx290, vwx300) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs16(vwx30, vwx40) new_esEs35(vwx300, vwx400, ty_Int) -> new_esEs16(vwx300, vwx400) new_esEs30(vwx67, vwx69, ty_Bool) -> new_esEs17(vwx67, vwx69) new_esEs30(vwx67, vwx69, app(app(ty_Either, bg), bh)) -> new_esEs21(vwx67, vwx69, bg, bh) new_ltEs23(vwx43, vwx44, ty_Ordering) -> new_ltEs16(vwx43, vwx44) new_ltEs20(vwx68, vwx70, app(ty_Ratio, ecb)) -> new_ltEs5(vwx68, vwx70, ecb) new_esEs29(vwx290, vwx300, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs26(vwx290, vwx300, gb, gc, gd) new_esEs36(vwx301, vwx401, app(ty_Maybe, fah)) -> new_esEs24(vwx301, vwx401, fah) new_esEs24(Just(vwx300), Just(vwx400), app(app(ty_Either, dgc), dgd)) -> new_esEs21(vwx300, vwx400, dgc, dgd) new_sr0(Integer(vwx300), Integer(vwx410)) -> Integer(new_primMulInt(vwx300, vwx410)) new_esEs24(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs17(vwx300, vwx400) new_ltEs24(vwx292, vwx302, app(ty_Maybe, bge)) -> new_ltEs10(vwx292, vwx302, bge) new_esEs10(vwx31, vwx41, ty_Double) -> new_esEs25(vwx31, vwx41) new_esEs9(vwx30, vwx40, app(ty_Maybe, dca)) -> new_esEs24(vwx30, vwx40, dca) new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(ty_Ratio, fhc)) -> new_ltEs5(vwx290, vwx300, fhc) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Integer) -> new_ltEs6(vwx290, vwx300) new_lt22(vwx290, vwx300, app(ty_Ratio, feb)) -> new_lt7(vwx290, vwx300, feb) new_lt21(vwx55, vwx58, app(app(ty_@2, ccf), ccg)) -> new_lt8(vwx55, vwx58, ccf, ccg) new_compare110(vwx117, vwx118, vwx119, vwx120, True, vwx122, eab, eac) -> new_compare19(vwx117, vwx118, vwx119, vwx120, True, eab, eac) new_esEs39(vwx290, vwx300, ty_Integer) -> new_esEs15(vwx290, vwx300) new_esEs9(vwx30, vwx40, app(ty_[], dbc)) -> new_esEs20(vwx30, vwx40, dbc) new_esEs35(vwx300, vwx400, app(app(app(ty_@3, ehg), ehh), faa)) -> new_esEs26(vwx300, vwx400, ehg, ehh, faa) new_esEs36(vwx301, vwx401, app(ty_[], fab)) -> new_esEs20(vwx301, vwx401, fab) new_esEs29(vwx290, vwx300, ty_Integer) -> new_esEs15(vwx290, vwx300) new_esEs35(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_ltEs10(Just(vwx290), Just(vwx300), ty_Char) -> new_ltEs15(vwx290, vwx300) new_lt18(vwx3, vwx4) -> new_esEs28(new_compare32(vwx3, vwx4)) new_esEs39(vwx290, vwx300, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs26(vwx290, vwx300, bee, bef, beg) new_ltEs20(vwx68, vwx70, ty_Char) -> new_ltEs15(vwx68, vwx70) new_esEs30(vwx67, vwx69, ty_Integer) -> new_esEs15(vwx67, vwx69) new_compare18(GT, LT) -> GT new_compare6(Right(vwx30), Right(vwx40), bhc, bhd) -> new_compare25(vwx30, vwx40, new_esEs8(vwx30, vwx40, bhd), bhc, bhd) new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_ltEs24(vwx292, vwx302, ty_Float) -> new_ltEs9(vwx292, vwx302) new_ltEs4(vwx36, vwx37, ty_Int) -> new_ltEs17(vwx36, vwx37) new_lt6(vwx290, vwx300, ty_Integer) -> new_lt4(vwx290, vwx300) new_compare18(EQ, LT) -> GT new_esEs35(vwx300, vwx400, ty_Double) -> new_esEs25(vwx300, vwx400) new_esEs15(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_lt22(vwx290, vwx300, app(app(app(ty_@3, bee), bef), beg)) -> new_lt14(vwx290, vwx300, bee, bef, beg) new_compare0([], :(vwx40, vwx41), dg) -> LT new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(ty_Maybe, bcg)) -> new_ltEs10(vwx290, vwx300, bcg) new_asAs(True, vwx85) -> vwx85 new_compare10(vwx105, vwx106, False, cgb, cgc) -> GT new_esEs22(@0, @0) -> True new_esEs14(vwx301, vwx401, ty_Int) -> new_esEs16(vwx301, vwx401) new_esEs24(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs27(vwx300, vwx400) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_lt19(vwx67, vwx69, ty_Bool) -> new_lt12(vwx67, vwx69) new_esEs24(Just(vwx300), Just(vwx400), app(app(app(ty_@3, dha), dhb), dhc)) -> new_esEs26(vwx300, vwx400, dha, dhb, dhc) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_@0) -> new_ltEs12(vwx290, vwx300) new_esEs29(vwx290, vwx300, app(ty_Ratio, dhd)) -> new_esEs12(vwx290, vwx300, dhd) new_ltEs13(Right(vwx290), Right(vwx300), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs13(vwx290, vwx300, bch, bda) new_esEs28(LT) -> True new_ltEs13(Left(vwx290), Left(vwx300), app(ty_Maybe, bbe), bbc) -> new_ltEs10(vwx290, vwx300, bbe) new_esEs39(vwx290, vwx300, ty_Float) -> new_esEs27(vwx290, vwx300) new_esEs10(vwx31, vwx41, ty_Integer) -> new_esEs15(vwx31, vwx41) new_lt21(vwx55, vwx58, app(ty_[], cch)) -> new_lt9(vwx55, vwx58, cch) new_lt15(vwx3, vwx4) -> new_esEs28(new_compare17(vwx3, vwx4)) new_lt20(vwx54, vwx57, ty_Int) -> new_lt17(vwx54, vwx57) new_ltEs13(Left(vwx290), Left(vwx300), app(ty_Ratio, fhb), bbc) -> new_ltEs5(vwx290, vwx300, fhb) new_esEs39(vwx290, vwx300, app(app(ty_Either, bec), bed)) -> new_esEs21(vwx290, vwx300, bec, bed) new_lt22(vwx290, vwx300, ty_Ordering) -> new_lt16(vwx290, vwx300) new_compare24(vwx36, vwx37, True, cge, bhg) -> EQ new_ltEs24(vwx292, vwx302, app(ty_[], bgd)) -> new_ltEs8(vwx292, vwx302, bgd) new_esEs11(vwx32, vwx42, app(ty_[], ddg)) -> new_esEs20(vwx32, vwx42, ddg) new_primCmpInt(Pos(Succ(vwx300)), Pos(vwx40)) -> new_primCmpNat0(Succ(vwx300), vwx40) new_ltEs14(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, bdh) -> new_pePe(new_lt22(vwx290, vwx300, beh), new_asAs(new_esEs39(vwx290, vwx300, beh), new_pePe(new_lt23(vwx291, vwx301, bdg), new_asAs(new_esEs40(vwx291, vwx301, bdg), new_ltEs24(vwx292, vwx302, bdh))))) new_esEs7(vwx30, vwx40, ty_Ordering) -> new_esEs18(vwx30, vwx40) new_ltEs21(vwx29, vwx30, ty_Int) -> new_ltEs17(vwx29, vwx30) new_esEs38(vwx300, vwx400, ty_@0) -> new_esEs22(vwx300, vwx400) new_esEs39(vwx290, vwx300, ty_Bool) -> new_esEs17(vwx290, vwx300) new_compare6(Right(vwx30), Left(vwx40), bhc, bhd) -> GT new_esEs27(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs16(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs29(vwx290, vwx300, ty_Double) -> new_esEs25(vwx290, vwx300) new_esEs30(vwx67, vwx69, app(ty_Ratio, eca)) -> new_esEs12(vwx67, vwx69, eca) new_lt21(vwx55, vwx58, ty_Double) -> new_lt18(vwx55, vwx58) new_esEs40(vwx291, vwx301, ty_Ordering) -> new_esEs18(vwx291, vwx301) new_primCompAux00(vwx23, EQ) -> vwx23 new_compare0([], [], dg) -> EQ new_esEs21(Right(vwx300), Right(vwx400), dfb, app(app(ty_Either, ffh), fga)) -> new_esEs21(vwx300, vwx400, ffh, fga) new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs25(vwx30, vwx40) new_sr(vwx30, vwx41) -> new_primMulInt(vwx30, vwx41) new_compare32(Double(vwx30, Pos(vwx310)), Double(vwx40, Neg(vwx410))) -> new_compare31(new_sr(vwx30, Pos(vwx410)), new_sr(Neg(vwx310), vwx40)) new_compare32(Double(vwx30, Neg(vwx310)), Double(vwx40, Pos(vwx410))) -> new_compare31(new_sr(vwx30, Neg(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs34(vwx55, vwx58, ty_Ordering) -> new_esEs18(vwx55, vwx58) new_esEs10(vwx31, vwx41, app(app(ty_Either, dcf), dcg)) -> new_esEs21(vwx31, vwx41, dcf, dcg) new_ltEs16(GT, GT) -> True new_esEs10(vwx31, vwx41, ty_Bool) -> new_esEs17(vwx31, vwx41) new_esEs7(vwx30, vwx40, ty_Bool) -> new_esEs17(vwx30, vwx40) new_primMulNat0(Zero, Zero) -> Zero new_esEs4(vwx30, vwx40, ty_Int) -> new_esEs16(vwx30, vwx40) new_esEs21(Left(vwx300), Left(vwx400), app(ty_Maybe, ffc), dfc) -> new_esEs24(vwx300, vwx400, ffc) new_lt21(vwx55, vwx58, ty_Ordering) -> new_lt16(vwx55, vwx58) new_esEs21(Left(vwx300), Left(vwx400), app(app(ty_Either, fef), feg), dfc) -> new_esEs21(vwx300, vwx400, fef, feg) new_ltEs22(vwx56, vwx59, ty_Double) -> new_ltEs18(vwx56, vwx59) new_esEs31(vwx300, vwx400, app(ty_[], ecc)) -> new_esEs20(vwx300, vwx400, ecc) new_ltEs23(vwx43, vwx44, app(app(ty_@2, cfa), cfb)) -> new_ltEs7(vwx43, vwx44, cfa, cfb) new_esEs11(vwx32, vwx42, ty_Char) -> new_esEs19(vwx32, vwx42) new_esEs35(vwx300, vwx400, app(ty_Ratio, ehc)) -> new_esEs12(vwx300, vwx400, ehc) new_ltEs19(vwx291, vwx301, app(ty_[], gh)) -> new_ltEs8(vwx291, vwx301, gh) new_esEs40(vwx291, vwx301, ty_Float) -> new_esEs27(vwx291, vwx301) new_lt19(vwx67, vwx69, ty_Int) -> new_lt17(vwx67, vwx69) new_ltEs22(vwx56, vwx59, app(app(ty_Either, cec), ced)) -> new_ltEs13(vwx56, vwx59, cec, ced) new_esEs4(vwx30, vwx40, app(ty_Maybe, dff)) -> new_esEs24(vwx30, vwx40, dff) new_esEs34(vwx55, vwx58, ty_Float) -> new_esEs27(vwx55, vwx58) new_lt13(vwx3, vwx4, bhc, bhd) -> new_esEs28(new_compare6(vwx3, vwx4, bhc, bhd)) new_ltEs24(vwx292, vwx302, ty_Integer) -> new_ltEs6(vwx292, vwx302) new_lt20(vwx54, vwx57, ty_Float) -> new_lt10(vwx54, vwx57) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_ltEs11(True, False) -> False new_esEs31(vwx300, vwx400, app(app(app(ty_@3, edb), edc), edd)) -> new_esEs26(vwx300, vwx400, edb, edc, edd) new_esEs39(vwx290, vwx300, ty_Ordering) -> new_esEs18(vwx290, vwx300) new_esEs36(vwx301, vwx401, ty_Double) -> new_esEs25(vwx301, vwx401) new_compare27(Float(vwx30, Pos(vwx310)), Float(vwx40, Pos(vwx410))) -> new_compare31(new_sr(vwx30, Pos(vwx410)), new_sr(Pos(vwx310), vwx40)) new_esEs5(vwx31, vwx41, app(ty_[], ead)) -> new_esEs20(vwx31, vwx41, ead) new_compare7(@3(vwx30, vwx31, vwx32), @3(vwx40, vwx41, vwx42), cag, cah, cba) -> new_compare26(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_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Double) -> new_ltEs18(vwx290, vwx300) new_esEs40(vwx291, vwx301, ty_Int) -> new_esEs16(vwx291, vwx301) new_esEs21(Left(vwx300), Left(vwx400), ty_@0, dfc) -> new_esEs22(vwx300, vwx400) new_lt23(vwx291, vwx301, ty_Integer) -> new_lt4(vwx291, vwx301) new_esEs7(vwx30, vwx40, app(app(ty_Either, cgh), cha)) -> new_esEs21(vwx30, vwx40, cgh, cha) new_esEs24(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs16(vwx300, vwx400) new_esEs31(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs5(vwx31, vwx41, app(ty_Maybe, ebb)) -> new_esEs24(vwx31, vwx41, ebb) new_esEs30(vwx67, vwx69, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs26(vwx67, vwx69, ca, cb, cc) new_lt11(vwx3, vwx4, fa) -> new_esEs28(new_compare13(vwx3, vwx4, fa)) new_ltEs20(vwx68, vwx70, app(ty_[], cg)) -> new_ltEs8(vwx68, vwx70, cg) new_esEs10(vwx31, vwx41, ty_Int) -> new_esEs16(vwx31, vwx41) new_ltEs19(vwx291, vwx301, ty_Int) -> new_ltEs17(vwx291, vwx301) new_ltEs23(vwx43, vwx44, app(ty_Maybe, cfd)) -> new_ltEs10(vwx43, vwx44, cfd) new_esEs5(vwx31, vwx41, ty_Char) -> new_esEs19(vwx31, vwx41) new_esEs6(vwx30, vwx40, app(app(ty_@2, eff), efg)) -> new_esEs23(vwx30, vwx40, eff, efg) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Int) -> new_esEs16(vwx300, vwx400) new_esEs20(:(vwx300, vwx301), :(vwx400, vwx401), dfa) -> new_asAs(new_esEs38(vwx300, vwx400, dfa), new_esEs20(vwx301, vwx401, dfa)) new_lt19(vwx67, vwx69, app(app(ty_Either, bg), bh)) -> new_lt13(vwx67, vwx69, bg, bh) new_lt6(vwx290, vwx300, ty_Char) -> new_lt15(vwx290, vwx300) new_ltEs10(Just(vwx290), Just(vwx300), ty_Int) -> new_ltEs17(vwx290, vwx300) new_esEs7(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs39(vwx290, vwx300, ty_Int) -> new_esEs16(vwx290, vwx300) new_lt6(vwx290, vwx300, ty_Float) -> new_lt10(vwx290, vwx300) new_esEs30(vwx67, vwx69, ty_Float) -> new_esEs27(vwx67, vwx69) new_ltEs24(vwx292, vwx302, app(ty_Ratio, fed)) -> new_ltEs5(vwx292, vwx302, fed) new_esEs33(vwx54, vwx57, ty_Ordering) -> new_esEs18(vwx54, vwx57) new_compare28(vwx30, vwx40, ty_@0) -> new_compare12(vwx30, vwx40) new_ltEs10(Just(vwx290), Just(vwx300), app(ty_[], bab)) -> new_ltEs8(vwx290, vwx300, bab) new_esEs8(vwx30, vwx40, app(app(ty_Either, dab), dac)) -> new_esEs21(vwx30, vwx40, dab, dac) new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs17(vwx30, vwx40) new_esEs34(vwx55, vwx58, ty_@0) -> new_esEs22(vwx55, vwx58) new_esEs4(vwx30, vwx40, app(ty_Ratio, cgd)) -> new_esEs12(vwx30, vwx40, cgd) new_lt19(vwx67, vwx69, app(ty_[], be)) -> new_lt9(vwx67, vwx69, be) new_compare27(Float(vwx30, Neg(vwx310)), Float(vwx40, Neg(vwx410))) -> new_compare31(new_sr(vwx30, Neg(vwx410)), new_sr(Neg(vwx310), vwx40)) new_ltEs20(vwx68, vwx70, ty_Float) -> new_ltEs9(vwx68, vwx70) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_lt23(vwx291, vwx301, app(ty_Maybe, bfd)) -> new_lt11(vwx291, vwx301, bfd) new_lt17(vwx3, vwx4) -> new_esEs28(new_compare31(vwx3, vwx4)) new_esEs11(vwx32, vwx42, app(ty_Maybe, dee)) -> new_esEs24(vwx32, vwx42, dee) new_esEs24(Just(vwx300), Just(vwx400), app(ty_Ratio, dge)) -> new_esEs12(vwx300, vwx400, dge) new_esEs14(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_esEs31(vwx300, vwx400, ty_Double) -> new_esEs25(vwx300, vwx400) new_primCmpInt(Neg(Zero), Neg(Succ(vwx400))) -> new_primCmpNat0(Succ(vwx400), Zero) new_ltEs21(vwx29, vwx30, app(app(ty_Either, bcc), bbc)) -> new_ltEs13(vwx29, vwx30, bcc, bbc) new_esEs35(vwx300, vwx400, ty_Float) -> new_esEs27(vwx300, vwx400) new_ltEs4(vwx36, vwx37, ty_Bool) -> new_ltEs11(vwx36, vwx37) new_esEs40(vwx291, vwx301, app(ty_Ratio, fec)) -> new_esEs12(vwx291, vwx301, fec) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Float) -> new_ltEs9(vwx290, vwx300) new_esEs38(vwx300, vwx400, ty_Ordering) -> new_esEs18(vwx300, vwx400) new_ltEs13(Left(vwx290), Left(vwx300), ty_Int, bbc) -> new_ltEs17(vwx290, vwx300) new_lt19(vwx67, vwx69, ty_Double) -> new_lt18(vwx67, vwx69) new_esEs20(:(vwx300, vwx301), [], dfa) -> False new_esEs20([], :(vwx400, vwx401), dfa) -> False new_esEs34(vwx55, vwx58, app(ty_Ratio, ege)) -> new_esEs12(vwx55, vwx58, ege) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs29(vwx290, vwx300, ty_Float) -> new_esEs27(vwx290, vwx300) new_ltEs22(vwx56, vwx59, ty_Ordering) -> new_ltEs16(vwx56, vwx59) new_lt19(vwx67, vwx69, ty_@0) -> new_lt5(vwx67, vwx69) new_esEs35(vwx300, vwx400, app(ty_[], egh)) -> new_esEs20(vwx300, vwx400, egh) new_lt19(vwx67, vwx69, ty_Float) -> new_lt10(vwx67, vwx69) new_esEs40(vwx291, vwx301, ty_Double) -> new_esEs25(vwx291, vwx301) new_esEs17(True, True) -> True new_esEs35(vwx300, vwx400, app(ty_Maybe, ehf)) -> new_esEs24(vwx300, vwx400, ehf) new_esEs8(vwx30, vwx40, app(ty_[], daa)) -> new_esEs20(vwx30, vwx40, daa) new_lt20(vwx54, vwx57, ty_Integer) -> new_lt4(vwx54, vwx57) new_esEs13(vwx300, vwx400, ty_Integer) -> new_esEs15(vwx300, vwx400) new_ltEs19(vwx291, vwx301, ty_Float) -> new_ltEs9(vwx291, vwx301) new_ltEs19(vwx291, vwx301, app(ty_Maybe, ha)) -> new_ltEs10(vwx291, vwx301, ha) new_compare18(EQ, EQ) -> EQ new_lt20(vwx54, vwx57, ty_Char) -> new_lt15(vwx54, vwx57) new_lt19(vwx67, vwx69, ty_Ordering) -> new_lt16(vwx67, vwx69) new_lt22(vwx290, vwx300, app(app(ty_@2, bde), bdf)) -> new_lt8(vwx290, vwx300, bde, bdf) new_esEs38(vwx300, vwx400, ty_Char) -> new_esEs19(vwx300, vwx400) new_ltEs20(vwx68, vwx70, ty_Int) -> new_ltEs17(vwx68, vwx70) new_ltEs20(vwx68, vwx70, ty_Integer) -> new_ltEs6(vwx68, vwx70) new_ltEs23(vwx43, vwx44, app(ty_[], cfc)) -> new_ltEs8(vwx43, vwx44, cfc) new_esEs39(vwx290, vwx300, app(app(ty_@2, bde), bdf)) -> new_esEs23(vwx290, vwx300, bde, bdf) new_esEs5(vwx31, vwx41, ty_Double) -> new_esEs25(vwx31, vwx41) new_esEs36(vwx301, vwx401, ty_Integer) -> new_esEs15(vwx301, vwx401) new_esEs36(vwx301, vwx401, app(app(app(ty_@3, fba), fbb), fbc)) -> new_esEs26(vwx301, vwx401, fba, fbb, fbc) new_esEs35(vwx300, vwx400, ty_Ordering) -> new_esEs18(vwx300, vwx400) new_esEs38(vwx300, vwx400, app(app(app(ty_@3, fdg), fdh), fea)) -> new_esEs26(vwx300, vwx400, fdg, fdh, fea) new_lt20(vwx54, vwx57, ty_Double) -> new_lt18(vwx54, vwx57) new_esEs9(vwx30, vwx40, ty_Integer) -> new_esEs15(vwx30, vwx40) new_esEs28(EQ) -> False new_not(False) -> True new_ltEs10(Just(vwx290), Just(vwx300), app(app(ty_@2, hh), baa)) -> new_ltEs7(vwx290, vwx300, hh, baa) new_esEs4(vwx30, vwx40, ty_Char) -> new_esEs19(vwx30, vwx40) new_compare18(LT, EQ) -> LT new_compare15(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, False, vwx139, dhg, dhh, eaa) -> new_compare16(vwx132, vwx133, vwx134, vwx135, vwx136, vwx137, vwx139, dhg, dhh, eaa) new_ltEs22(vwx56, vwx59, ty_@0) -> new_ltEs12(vwx56, vwx59) new_esEs5(vwx31, vwx41, app(app(ty_@2, eah), eba)) -> new_esEs23(vwx31, vwx41, eah, eba) new_compare0(:(vwx30, vwx31), [], dg) -> GT new_compare18(GT, EQ) -> GT new_esEs7(vwx30, vwx40, ty_Int) -> new_esEs16(vwx30, vwx40) new_ltEs24(vwx292, vwx302, ty_Ordering) -> new_ltEs16(vwx292, vwx302) new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Integer) -> new_esEs15(vwx300, vwx400) new_esEs9(vwx30, vwx40, ty_Bool) -> new_esEs17(vwx30, vwx40) new_ltEs10(Just(vwx290), Nothing, efa) -> False new_esEs9(vwx30, vwx40, app(app(ty_Either, dbd), dbe)) -> new_esEs21(vwx30, vwx40, dbd, dbe) new_esEs21(Right(vwx300), Right(vwx400), dfb, app(app(ty_@2, fgc), fgd)) -> new_esEs23(vwx300, vwx400, fgc, fgd) new_ltEs10(Nothing, Nothing, efa) -> True new_esEs36(vwx301, vwx401, ty_Bool) -> new_esEs17(vwx301, vwx401) new_esEs36(vwx301, vwx401, app(app(ty_Either, fac), fad)) -> new_esEs21(vwx301, vwx401, fac, fad) new_lt4(vwx3, vwx4) -> new_esEs28(new_compare8(vwx3, vwx4)) new_ltEs10(Just(vwx290), Just(vwx300), app(app(ty_Either, bad), bae)) -> new_ltEs13(vwx290, vwx300, bad, bae) new_ltEs20(vwx68, vwx70, ty_Bool) -> new_ltEs11(vwx68, vwx70) new_primPlusNat0(Succ(vwx1470), vwx4100) -> Succ(Succ(new_primPlusNat1(vwx1470, vwx4100))) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Char) -> new_ltEs15(vwx290, vwx300) new_compare11(vwx97, vwx98, True, ebf, ebg) -> LT new_esEs37(vwx302, vwx402, ty_Ordering) -> new_esEs18(vwx302, vwx402) new_esEs30(vwx67, vwx69, ty_Double) -> new_esEs25(vwx67, vwx69) new_lt23(vwx291, vwx301, ty_@0) -> new_lt5(vwx291, vwx301) new_esEs37(vwx302, vwx402, app(app(ty_@2, fbh), fca)) -> new_esEs23(vwx302, vwx402, fbh, fca) new_esEs9(vwx30, vwx40, ty_Float) -> new_esEs27(vwx30, vwx40) new_esEs36(vwx301, vwx401, ty_Char) -> new_esEs19(vwx301, vwx401) new_esEs38(vwx300, vwx400, app(ty_Ratio, fdc)) -> new_esEs12(vwx300, vwx400, fdc) new_ltEs13(Left(vwx290), Left(vwx300), ty_Double, bbc) -> new_ltEs18(vwx290, vwx300) new_esEs11(vwx32, vwx42, ty_Float) -> new_esEs27(vwx32, vwx42) new_ltEs22(vwx56, vwx59, ty_Bool) -> new_ltEs11(vwx56, vwx59) new_ltEs21(vwx29, vwx30, app(ty_[], hg)) -> new_ltEs8(vwx29, vwx30, hg) new_esEs25(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs16(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux0(vwx30, vwx40, new_compare0(vwx31, vwx41, dg), dg) new_primPlusNat1(Zero, Zero) -> Zero new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Bool) -> new_esEs17(vwx300, vwx400) new_lt19(vwx67, vwx69, ty_Char) -> new_lt15(vwx67, vwx69) new_esEs23(@2(vwx300, vwx301), @2(vwx400, vwx401), dfd, dfe) -> new_asAs(new_esEs31(vwx300, vwx400, dfd), new_esEs32(vwx301, vwx401, dfe)) new_ltEs19(vwx291, vwx301, ty_Bool) -> new_ltEs11(vwx291, vwx301) new_esEs21(Left(vwx300), Left(vwx400), ty_Char, dfc) -> new_esEs19(vwx300, vwx400) new_esEs21(Right(vwx300), Right(vwx400), dfb, ty_Float) -> new_esEs27(vwx300, vwx400) new_esEs5(vwx31, vwx41, ty_Int) -> new_esEs16(vwx31, vwx41) new_compare28(vwx30, vwx40, ty_Int) -> new_compare31(vwx30, vwx40) new_esEs32(vwx301, vwx401, ty_Int) -> new_esEs16(vwx301, vwx401) new_esEs40(vwx291, vwx301, app(app(ty_@2, bfa), bfb)) -> new_esEs23(vwx291, vwx301, bfa, bfb) new_esEs24(Just(vwx300), Just(vwx400), app(app(ty_@2, dgf), dgg)) -> new_esEs23(vwx300, vwx400, dgf, dgg) new_esEs31(vwx300, vwx400, ty_Float) -> new_esEs27(vwx300, vwx400) new_lt20(vwx54, vwx57, ty_@0) -> new_lt5(vwx54, vwx57) new_ltEs10(Just(vwx290), Just(vwx300), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs14(vwx290, vwx300, baf, bag, bah) new_esEs31(vwx300, vwx400, ty_Int) -> new_esEs16(vwx300, vwx400) new_ltEs23(vwx43, vwx44, app(app(ty_Either, cfe), cff)) -> new_ltEs13(vwx43, vwx44, cfe, cff) new_esEs21(Left(vwx300), Left(vwx400), app(ty_[], fee), dfc) -> new_esEs20(vwx300, vwx400, fee) new_ltEs10(Just(vwx290), Just(vwx300), app(ty_Ratio, fha)) -> new_ltEs5(vwx290, vwx300, fha) new_esEs10(vwx31, vwx41, ty_Float) -> new_esEs27(vwx31, vwx41) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_ltEs21(vwx29, vwx30, app(ty_Maybe, efa)) -> new_ltEs10(vwx29, vwx30, efa) new_esEs34(vwx55, vwx58, ty_Bool) -> new_esEs17(vwx55, vwx58) new_primMulNat0(Succ(vwx3000), Succ(vwx4100)) -> new_primPlusNat0(new_primMulNat0(vwx3000, Succ(vwx4100)), vwx4100) new_ltEs23(vwx43, vwx44, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs14(vwx43, vwx44, cfg, cfh, cga) new_esEs40(vwx291, vwx301, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs26(vwx291, vwx301, bfg, bfh, bga) new_esEs21(Right(vwx300), Right(vwx400), dfb, app(ty_Maybe, fge)) -> new_esEs24(vwx300, vwx400, fge) new_esEs7(vwx30, vwx40, ty_Float) -> new_esEs27(vwx30, vwx40) new_esEs38(vwx300, vwx400, ty_Double) -> new_esEs25(vwx300, vwx400) new_compare26(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, True, cce, cbd, cbe) -> EQ new_esEs37(vwx302, vwx402, ty_@0) -> new_esEs22(vwx302, vwx402) new_lt22(vwx290, vwx300, app(ty_[], bea)) -> new_lt9(vwx290, vwx300, bea) new_ltEs13(Right(vwx290), Right(vwx300), bcc, ty_Ordering) -> new_ltEs16(vwx290, vwx300) new_lt6(vwx290, vwx300, app(ty_[], ff)) -> new_lt9(vwx290, vwx300, ff) new_compare29(:%(vwx30, vwx31), :%(vwx40, vwx41), ty_Int) -> new_compare31(new_sr(vwx30, vwx41), new_sr(vwx40, vwx31)) new_primCmpNat0(Succ(vwx300), Succ(vwx400)) -> new_primCmpNat0(vwx300, vwx400) new_lt6(vwx290, vwx300, ty_Double) -> new_lt18(vwx290, vwx300) new_lt21(vwx55, vwx58, ty_@0) -> new_lt5(vwx55, vwx58) new_compare24(vwx36, vwx37, False, cge, bhg) -> new_compare11(vwx36, vwx37, new_ltEs4(vwx36, vwx37, cge), cge, bhg) new_ltEs23(vwx43, vwx44, ty_Integer) -> new_ltEs6(vwx43, vwx44) new_esEs30(vwx67, vwx69, ty_Int) -> new_esEs16(vwx67, vwx69) new_ltEs23(vwx43, vwx44, ty_Int) -> new_ltEs17(vwx43, vwx44) new_esEs11(vwx32, vwx42, ty_Bool) -> new_esEs17(vwx32, vwx42) new_ltEs20(vwx68, vwx70, app(ty_Maybe, da)) -> new_ltEs10(vwx68, vwx70, da) new_ltEs12(vwx29, vwx30) -> new_fsEs(new_compare12(vwx29, vwx30)) new_esEs24(Nothing, Nothing, dff) -> True new_esEs11(vwx32, vwx42, app(app(ty_Either, ddh), dea)) -> new_esEs21(vwx32, vwx42, ddh, dea) new_esEs4(vwx30, vwx40, app(app(app(ty_@3, dfg), dfh), dga)) -> new_esEs26(vwx30, vwx40, dfg, dfh, dga) new_lt16(vwx3, vwx4) -> new_esEs28(new_compare18(vwx3, vwx4)) new_lt22(vwx290, vwx300, ty_@0) -> new_lt5(vwx290, vwx300) new_lt23(vwx291, vwx301, app(ty_[], bfc)) -> new_lt9(vwx291, vwx301, bfc) new_esEs21(Left(vwx300), Left(vwx400), ty_Double, dfc) -> new_esEs25(vwx300, vwx400) new_lt9(vwx3, vwx4, dg) -> new_esEs28(new_compare0(vwx3, vwx4, dg)) new_esEs34(vwx55, vwx58, app(app(ty_Either, cdb), cdc)) -> new_esEs21(vwx55, vwx58, cdb, cdc) new_esEs36(vwx301, vwx401, ty_@0) -> new_esEs22(vwx301, vwx401) new_ltEs24(vwx292, vwx302, app(app(ty_@2, bgb), bgc)) -> new_ltEs7(vwx292, vwx302, bgb, bgc) new_compare28(vwx30, vwx40, ty_Bool) -> new_compare9(vwx30, vwx40) new_esEs32(vwx301, vwx401, app(ty_[], ede)) -> new_esEs20(vwx301, vwx401, ede) new_compare13(Just(vwx30), Just(vwx40), fa) -> new_compare211(vwx30, vwx40, new_esEs6(vwx30, vwx40, fa), fa) new_lt8(vwx3, vwx4, h, ba) -> new_esEs28(new_compare30(vwx3, vwx4, h, ba)) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs33(vwx54, vwx57, ty_Float) -> new_esEs27(vwx54, vwx57) new_ltEs24(vwx292, vwx302, ty_Char) -> new_ltEs15(vwx292, vwx302) new_esEs36(vwx301, vwx401, app(ty_Ratio, fae)) -> new_esEs12(vwx301, vwx401, fae) new_lt23(vwx291, vwx301, ty_Double) -> new_lt18(vwx291, vwx301) new_esEs11(vwx32, vwx42, ty_Integer) -> new_esEs15(vwx32, vwx42) new_esEs37(vwx302, vwx402, app(ty_Ratio, fbg)) -> new_esEs12(vwx302, vwx402, fbg) new_esEs24(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs25(vwx300, vwx400) new_primEqNat0(Zero, Zero) -> True new_compare17(Char(vwx30), Char(vwx40)) -> new_primCmpNat0(vwx30, vwx40) new_esEs33(vwx54, vwx57, app(ty_[], cbf)) -> new_esEs20(vwx54, vwx57, cbf) new_compare28(vwx30, vwx40, ty_Char) -> new_compare17(vwx30, vwx40) new_compare14(vwx90, vwx91, True, dhf) -> LT new_compare28(vwx30, vwx40, app(app(ty_Either, ed), ee)) -> new_compare6(vwx30, vwx40, ed, ee) new_esEs24(Nothing, Just(vwx400), dff) -> False new_esEs24(Just(vwx300), Nothing, dff) -> False new_compare28(vwx30, vwx40, app(app(app(ty_@3, ef), eg), eh)) -> new_compare7(vwx30, vwx40, ef, eg, eh) new_esEs37(vwx302, vwx402, app(ty_Maybe, fcb)) -> new_esEs24(vwx302, vwx402, fcb) new_esEs6(vwx30, vwx40, ty_Int) -> new_esEs16(vwx30, vwx40) new_ltEs22(vwx56, vwx59, ty_Int) -> new_ltEs17(vwx56, vwx59) new_esEs10(vwx31, vwx41, app(ty_[], dce)) -> new_esEs20(vwx31, vwx41, dce) new_lt22(vwx290, vwx300, ty_Double) -> new_lt18(vwx290, vwx300) new_asAs(False, vwx85) -> False new_ltEs22(vwx56, vwx59, ty_Integer) -> new_ltEs6(vwx56, vwx59) new_esEs34(vwx55, vwx58, ty_Integer) -> new_esEs15(vwx55, vwx58) new_esEs32(vwx301, vwx401, ty_Float) -> new_esEs27(vwx301, vwx401) new_ltEs13(Left(vwx290), Left(vwx300), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs14(vwx290, vwx300, bbh, bca, bcb) new_lt19(vwx67, vwx69, ty_Integer) -> new_lt4(vwx67, vwx69) new_esEs38(vwx300, vwx400, app(app(ty_@2, fdd), fde)) -> new_esEs23(vwx300, vwx400, fdd, fde) new_lt6(vwx290, vwx300, ty_@0) -> new_lt5(vwx290, vwx300) new_ltEs24(vwx292, vwx302, ty_@0) -> new_ltEs12(vwx292, vwx302) new_ltEs24(vwx292, vwx302, app(app(ty_Either, bgf), bgg)) -> new_ltEs13(vwx292, vwx302, bgf, bgg) new_esEs35(vwx300, vwx400, ty_Bool) -> new_esEs17(vwx300, vwx400) new_esEs39(vwx290, vwx300, ty_Double) -> new_esEs25(vwx290, vwx300) new_esEs35(vwx300, vwx400, app(app(ty_Either, eha), ehb)) -> new_esEs21(vwx300, vwx400, eha, ehb) new_esEs21(Left(vwx300), Left(vwx400), app(app(ty_@2, ffa), ffb), dfc) -> new_esEs23(vwx300, vwx400, ffa, ffb) new_compare28(vwx30, vwx40, ty_Ordering) -> new_compare18(vwx30, vwx40) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs27(vwx30, vwx40) new_ltEs21(vwx29, vwx30, ty_Bool) -> new_ltEs11(vwx29, vwx30) new_ltEs4(vwx36, vwx37, ty_Double) -> new_ltEs18(vwx36, vwx37) new_compare9(False, True) -> LT new_esEs4(vwx30, vwx40, ty_Double) -> new_esEs25(vwx30, vwx40) new_esEs37(vwx302, vwx402, ty_Char) -> new_esEs19(vwx302, vwx402) new_ltEs24(vwx292, vwx302, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs14(vwx292, vwx302, bgh, bha, bhb) new_compare28(vwx30, vwx40, app(ty_Ratio, ebh)) -> new_compare29(vwx30, vwx40, ebh) The set Q consists of the following terms: new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs29(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Int) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, ty_Float) new_compare15(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt13(x0, x1, x2, x3) new_lt6(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Bool) new_ltEs13(Right(x0), Right(x1), x2, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs30(x0, x1, ty_Ordering) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Char) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Zero) new_lt23(x0, x1, ty_@0) new_lt19(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Char) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs10(Just(x0), Just(x1), ty_Integer) new_ltEs21(x0, x1, ty_@0) new_ltEs13(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_esEs21(Left(x0), Left(x1), ty_Bool, x2) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs20(:(x0, x1), [], x2) new_lt22(x0, x1, ty_Bool) new_lt19(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_lt16(x0, x1) new_ltEs21(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_lt22(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_esEs17(False, False) new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_compare6(Left(x0), Right(x1), x2, x3) new_compare6(Right(x0), Left(x1), x2, x3) new_esEs34(x0, x1, ty_Double) new_esEs20([], [], x0) new_esEs21(Right(x0), Right(x1), x2, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, ty_Bool) new_lt9(x0, x1, x2) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Succ(x0), Zero) new_compare210(x0, x1, x2, x3, True, x4, x5) new_ltEs20(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, ty_@0) new_esEs7(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, ty_Double) new_ltEs16(GT, EQ) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(x0, x1, ty_Double) new_ltEs16(EQ, GT) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt12(x0, x1) new_primEqNat0(Zero, Succ(x0)) new_ltEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs4(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Char) new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) new_lt22(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), ty_Integer, x2) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Double) new_ltEs16(LT, LT) new_ltEs20(x0, x1, ty_@0) new_ltEs6(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, ty_@0) new_compare18(EQ, LT) new_compare18(LT, EQ) new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) new_ltEs10(Just(x0), Just(x1), ty_@0) new_esEs20(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, ty_Int) new_ltEs12(x0, x1) new_esEs10(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Float) new_ltEs11(True, True) new_ltEs10(Just(x0), Just(x1), ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, True, x2, x3) new_compare28(x0, x1, ty_Bool) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Char) new_esEs24(Nothing, Nothing, x0) new_compare8(Integer(x0), Integer(x1)) new_esEs34(x0, x1, ty_Int) new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs10(Just(x0), Just(x1), ty_Bool) new_ltEs22(x0, x1, ty_Int) new_compare18(LT, LT) new_esEs7(x0, x1, ty_@0) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs21(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(x0, x1, ty_Integer) new_compare211(x0, x1, True, x2) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Double) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, ty_Int) new_compare26(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs33(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Ordering, x2) new_compare24(x0, x1, True, x2, x3) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs22(@0, @0) new_lt22(x0, x1, ty_Ordering) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(Just(x0), Just(x1), ty_Double) new_lt8(x0, x1, x2, x3) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Char) new_esEs31(x0, x1, app(ty_[], x2)) new_compare18(GT, GT) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs10(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_@0) new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs19(x0, x1, ty_@0) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, ty_Int) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, ty_Integer) new_compare28(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, ty_Double) new_lt18(x0, x1) new_ltEs21(x0, x1, ty_Float) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(True, x0) new_ltEs24(x0, x1, ty_@0) new_esEs30(x0, x1, ty_@0) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs36(x0, x1, ty_Double) new_lt23(x0, x1, ty_Ordering) new_ltEs10(Just(x0), Just(x1), ty_Char) new_compare10(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Float) new_lt20(x0, x1, ty_Integer) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Bool) new_ltEs24(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_Integer) new_compare31(x0, x1) new_esEs28(EQ) new_compare6(Left(x0), Left(x1), x2, x3) new_compare32(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare32(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs22(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Double) new_ltEs10(Nothing, Just(x0), x1) new_ltEs18(x0, x1) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt19(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), ty_Double, x2) new_esEs11(x0, x1, ty_Double) new_compare210(x0, x1, x2, x3, False, x4, x5) new_esEs40(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Float) new_esEs26(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Float) new_compare18(EQ, GT) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare18(GT, EQ) new_esEs29(x0, x1, ty_Double) new_esEs39(x0, x1, ty_Char) new_lt23(x0, x1, ty_Int) new_ltEs16(GT, GT) new_esEs10(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs37(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Int) new_ltEs4(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, ty_Int) new_esEs9(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_Char, x2) new_primCompAux00(x0, LT) new_esEs21(Right(x0), Right(x1), x2, ty_Integer) new_compare28(x0, x1, ty_@0) new_lt21(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Ordering) new_esEs16(x0, x1) new_ltEs16(LT, EQ) new_ltEs16(EQ, LT) new_esEs27(Float(x0, x1), Float(x2, x3)) new_esEs21(Right(x0), Right(x1), x2, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Zero, x0) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Int) new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt22(x0, x1, ty_Double) new_primMulInt(Neg(x0), Neg(x1)) new_lt23(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_compare0([], [], x0) new_ltEs24(x0, x1, ty_Integer) new_esEs18(GT, GT) new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs38(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_lt19(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare13(Nothing, Nothing, x0) new_esEs21(Left(x0), Right(x1), x2, x3) new_esEs21(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Int) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Int) new_compare11(x0, x1, True, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs23(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Integer) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Float) new_pePe(True, x0) new_esEs39(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt20(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare6(Right(x0), Right(x1), x2, x3) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Left(x0), Left(x1), ty_Int, x2) new_lt19(x0, x1, ty_Integer) new_esEs21(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs23(x0, x1, ty_Ordering) new_compare13(Just(x0), Just(x1), x2) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_sr(x0, x1) new_lt6(x0, x1, ty_Bool) new_lt23(x0, x1, ty_Integer) new_esEs18(EQ, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Int) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_compare16(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_ltEs10(Just(x0), Just(x1), ty_Ordering) new_primPlusNat0(Succ(x0), x1) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Integer) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_lt22(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs24(Just(x0), Nothing, x1) new_compare27(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare27(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, ty_Int) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs28(LT) new_ltEs11(False, True) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs11(True, False) new_esEs21(Left(x0), Left(x1), ty_@0, x2) new_ltEs21(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Float) new_primCompAux00(x0, EQ) new_ltEs13(Left(x0), Left(x1), ty_Float, x2) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_@0) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs25(Double(x0, x1), Double(x2, x3)) new_compare14(x0, x1, True, x2) new_asAs(False, x0) new_esEs33(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs16(EQ, EQ) new_esEs36(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Int) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Char) new_lt19(x0, x1, ty_Double) new_esEs24(Just(x0), Just(x1), ty_Bool) new_compare0([], :(x0, x1), x2) new_compare28(x0, x1, app(ty_[], x2)) new_compare18(LT, GT) new_compare18(GT, LT) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare9(True, False) new_compare9(False, True) new_ltEs24(x0, x1, ty_Ordering) new_primMulNat0(Zero, Zero) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Char) new_ltEs10(Nothing, Nothing, x0) new_esEs30(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs21(Right(x0), Right(x1), x2, ty_Int) new_lt20(x0, x1, ty_Char) new_esEs21(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(Just(x0), Just(x1), ty_@0) new_ltEs22(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_esEs17(True, True) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Bool) new_ltEs13(Left(x0), Left(x1), ty_Double, x2) new_lt21(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs21(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt17(x0, x1) new_lt6(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_@0) new_compare28(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Integer) new_esEs24(Just(x0), Just(x1), ty_Integer) new_esEs40(x0, x1, ty_Bool) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Char) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_@0) new_lt19(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_lt21(x0, x1, ty_Bool) new_compare10(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_primPlusNat1(Succ(x0), Succ(x1)) new_compare0(:(x0, x1), [], x2) new_lt19(x0, x1, ty_Int) new_ltEs24(x0, x1, ty_Char) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_fsEs(x0) new_ltEs23(x0, x1, ty_Float) new_ltEs13(Right(x0), Right(x1), x2, ty_Float) new_not(True) new_ltEs4(x0, x1, ty_Bool) new_esEs40(x0, x1, ty_Integer) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Int) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs4(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_compare211(x0, x1, False, x2) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Just(x0), Just(x1), ty_Double) new_esEs4(x0, x1, ty_@0) new_ltEs10(Just(x0), Nothing, x1) new_esEs21(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, ty_Float) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_compare25(x0, x1, False, x2, x3) new_esEs35(x0, x1, ty_Int) new_primCompAux0(x0, x1, x2, x3) new_esEs13(x0, x1, ty_Int) new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Double) new_compare28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Int) new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) new_esEs32(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs34(x0, x1, ty_@0) new_esEs37(x0, x1, ty_@0) new_ltEs13(Left(x0), Right(x1), x2, x3) new_ltEs13(Right(x0), Left(x1), x2, x3) new_ltEs10(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs9(x0, x1) new_ltEs23(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Integer) new_ltEs4(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Char) new_ltEs15(x0, x1) new_esEs40(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs17(False, True) new_esEs17(True, False) new_lt21(x0, x1, ty_@0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs37(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Zero) new_esEs21(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs21(Right(x0), Right(x1), x2, ty_Char) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Double) new_ltEs16(LT, GT) new_ltEs16(GT, LT) new_primMulNat0(Succ(x0), Zero) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs10(Just(x0), Just(x1), ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1) new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs8(x0, x1, x2) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_compare19(x0, x1, x2, x3, False, x4, x5) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Right(x0), Right(x1), x2, ty_Double) new_esEs34(x0, x1, ty_Float) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs18(LT, LT) new_esEs21(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare12(@0, @0) new_ltEs22(x0, x1, ty_Bool) new_esEs24(Just(x0), Just(x1), ty_Char) new_esEs11(x0, x1, ty_Ordering) new_ltEs24(x0, x1, ty_Double) new_esEs6(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare30(@2(x0, x1), @2(x2, x3), x4, x5) new_primCmpNat0(Zero, Succ(x0)) new_esEs8(x0, x1, ty_Bool) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_@0) new_ltEs10(Just(x0), Just(x1), app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs37(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, False, x2) new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs8(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_esEs23(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt7(x0, x1, x2) new_esEs24(Just(x0), Just(x1), ty_Float) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Integer) new_esEs15(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(x0, x1, ty_Float) new_compare9(True, True) new_esEs32(x0, x1, ty_Double) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, GT) new_esEs31(x0, x1, ty_Double) new_compare9(False, False) new_esEs24(Just(x0), Just(x1), ty_Int) new_esEs6(x0, x1, ty_Integer) new_esEs21(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_lt22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Ordering) new_esEs21(Left(x0), Left(x1), ty_Float, x2) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare26(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare15(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs30(x0, x1, ty_Bool) new_compare32(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare18(EQ, EQ) new_esEs5(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Float) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs17(x0, x1) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs22(x0, x1, ty_@0) new_compare28(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt4(x0, x1) new_compare28(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs33(x0, x1, ty_Double) new_lt10(x0, x1) new_esEs8(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_lt23(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20([], :(x0, x1), x2) new_esEs34(x0, x1, ty_Char) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs39(x0, x1, ty_@0) new_esEs36(x0, x1, ty_Float) new_ltEs11(False, False) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_compare27(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, ty_Integer) new_lt6(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Int) new_esEs38(x0, x1, ty_Float) new_primEqNat0(Zero, Zero) new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs10(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_compare17(Char(x0), Char(x1)) new_compare13(Just(x0), Nothing, x1) new_esEs10(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Int) new_not(False) new_pePe(False, x0) new_esEs6(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Ordering) new_esEs28(GT) new_esEs6(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_primMulNat0(Zero, Succ(x0)) new_esEs34(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs40(x0, x1, ty_Char) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare19(x0, x1, x2, x3, True, x4, x5) new_compare28(x0, x1, ty_Float) new_esEs21(Left(x0), Left(x1), ty_Char, x2) new_esEs7(x0, x1, ty_Bool) new_lt5(x0, x1) new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1, x2, x3, x4) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Succ(x0)) new_esEs7(x0, x1, ty_Ordering) new_esEs34(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, ty_Ordering) new_esEs39(x0, x1, ty_Double) new_esEs14(x0, x1, ty_Int) new_compare27(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare13(Nothing, Just(x0), x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Integer) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Char(x0), Char(x1)) new_esEs10(x0, x1, ty_Ordering) new_ltEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs40(x0, x1, ty_Float) new_compare11(x0, x1, False, x2, x3) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs21(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs9(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Int) new_ltEs10(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Bool) new_esEs29(x0, x1, ty_Integer) new_lt11(x0, x1, x2) new_esEs6(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs29(x0, x1, ty_Ordering) new_ltEs5(x0, x1, x2) new_esEs24(Nothing, Just(x0), x1) new_ltEs22(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Zero, Zero) new_ltEs21(x0, x1, ty_Double) new_esEs21(Left(x0), Left(x1), ty_Int, x2) new_compare32(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs13(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Float) 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_compare5(@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_lt3(@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_lt0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, dg), dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare1(vwx31, vwx41, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_primCompAux(vwx30, vwx40, new_compare0(vwx31, vwx41, dg), dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(app(ty_@3, bgh), bha), bhb)) -> new_ltEs3(vwx292, vwx302, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(@2(vwx30, vwx31), @2(vwx40, vwx41), h, ba) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, h), new_esEs5(vwx31, vwx41, ba)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt1(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(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_ltEs1(Just(vwx290), Just(vwx300), app(app(app(ty_@3, baf), bag), bah)) -> new_ltEs3(vwx290, vwx300, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare1(:(vwx30, vwx31), :(vwx40, vwx41), dg) -> new_compare1(vwx31, vwx41, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(ty_@2, bgb), bgc)) -> new_ltEs(vwx292, vwx302, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(Just(vwx290), Just(vwx300), app(app(ty_@2, hh), baa)) -> new_ltEs(vwx290, vwx300, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(vwx29, vwx30, hg) -> new_compare1(vwx29, vwx30, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(ty_Maybe, bge)) -> new_ltEs1(vwx292, vwx302, bge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Just(vwx290), Just(vwx300), app(ty_Maybe, bac)) -> new_ltEs1(vwx290, vwx300, bac) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx30, vwx40, vwx8, app(app(app(ty_@3, ef), eg), eh)) -> new_compare5(vwx30, vwx40, ef, eg, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs3(vwx56, vwx59, cee, cef, ceg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(ty_@2, cdg), cdh)) -> new_ltEs(vwx56, vwx59, cdg, cdh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(ty_Maybe, ceb)) -> new_ltEs1(vwx56, vwx59, ceb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(ty_[], ff), fd) -> new_lt0(vwx290, vwx300, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs3(vwx291, vwx301, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(ty_@2, gf), gg)) -> new_ltEs(vwx291, vwx301, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(ty_Maybe, ha)) -> new_ltEs1(vwx291, vwx301, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare(@2(vwx30, vwx31), @2(vwx40, vwx41), h, ba) -> new_compare2(vwx30, vwx31, vwx40, vwx41, new_asAs(new_esEs4(vwx30, vwx40, h), new_esEs5(vwx31, vwx41, ba)), h, ba) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(ty_[], bgd)) -> new_ltEs0(vwx292, vwx302, bgd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs1(Just(vwx290), Just(vwx300), app(ty_[], bab)) -> new_ltEs0(vwx290, vwx300, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Just(vwx290), Just(vwx300), app(app(ty_Either, bad), bae)) -> new_ltEs2(vwx290, vwx300, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(ty_[], cea)) -> new_ltEs0(vwx56, vwx59, cea) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(ty_[], gh)) -> new_ltEs0(vwx291, vwx301, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(vwx30, vwx40, vwx8, 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_compare2(vwx67, vwx68, vwx69, vwx70, False, app(ty_[], be), bd) -> new_lt0(vwx67, vwx69, be) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vwx68, vwx70, dd, de, df) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(ty_@2, ce), cf)) -> new_ltEs(vwx68, vwx70, ce, cf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(ty_Maybe, da)) -> new_ltEs1(vwx68, vwx70, da) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(ty_[], cg)) -> new_ltEs0(vwx68, vwx70, cg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, bdg, app(app(ty_Either, bgf), bgg)) -> new_ltEs2(vwx292, vwx302, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, cbd, app(app(ty_Either, cec), ced)) -> new_ltEs2(vwx56, vwx59, cec, ced) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), ge, app(app(ty_Either, hb), hc)) -> new_ltEs2(vwx291, vwx301, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, cd, app(app(ty_Either, db), dc)) -> new_ltEs2(vwx68, vwx70, db, dc) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_lt2(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_compare4(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_lt2(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_compare4(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_compare21(vwx36, vwx37, False, app(app(app(ty_@3, cad), cae), caf), bhg) -> new_ltEs3(vwx36, vwx37, cad, cae, caf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx36, vwx37, False, app(app(ty_@2, bhe), bhf), bhg) -> new_ltEs(vwx36, vwx37, bhe, bhf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare21(vwx36, vwx37, False, app(ty_Maybe, caa), bhg) -> new_ltEs1(vwx36, vwx37, caa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(ty_Either, fh), ga), fd) -> new_lt2(vwx290, vwx300, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(vwx36, vwx37, False, app(ty_[], bhh), bhg) -> new_ltEs0(vwx36, vwx37, bhh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(ty_Either, bg), bh), bd) -> new_lt2(vwx67, vwx69, bg, bh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vwx36, vwx37, False, app(app(ty_Either, cab), cac), bhg) -> new_ltEs2(vwx36, vwx37, cab, cac) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx30, vwx40, vwx8, app(ty_[], eb)) -> new_compare1(vwx30, vwx40, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vwx29, vwx30, False, app(ty_[], hg)) -> new_compare1(vwx29, vwx30, hg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(ty_@2, fb), fc), fd) -> new_lt(vwx290, vwx300, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(ty_@2, bb), bc), bd) -> new_lt(vwx67, vwx69, bb, bc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_primCompAux(vwx30, vwx40, vwx8, app(app(ty_Either, ed), ee)) -> new_compare4(vwx30, vwx40, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vwx30, vwx40, vwx8, app(ty_Maybe, ec)) -> new_compare3(vwx30, vwx40, ec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(vwx43, vwx44, False, ceh, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs3(vwx43, vwx44, cfg, cfh, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vwx43, vwx44, False, ceh, app(app(ty_@2, cfa), cfb)) -> new_ltEs(vwx43, vwx44, cfa, cfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vwx43, vwx44, False, ceh, app(ty_Maybe, cfd)) -> new_ltEs1(vwx43, vwx44, cfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx43, vwx44, False, ceh, app(ty_[], cfc)) -> new_ltEs0(vwx43, vwx44, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vwx43, vwx44, False, ceh, app(app(ty_Either, cfe), cff)) -> new_ltEs2(vwx43, vwx44, cfe, cff) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(app(app(ty_@3, gb), gc), gd), fd) -> new_lt3(vwx290, vwx300, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@2(vwx290, vwx291), @2(vwx300, vwx301), app(ty_Maybe, fg), fd) -> new_lt1(vwx290, vwx300, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(app(app(ty_@3, ca), cb), cc), bd) -> new_lt3(vwx67, vwx69, ca, cb, cc) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vwx67, vwx68, vwx69, vwx70, False, app(ty_Maybe, bf), bd) -> new_lt1(vwx67, vwx69, bf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(ty_[], bfc), bdh) -> new_lt0(vwx291, vwx301, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(ty_[], bea), bdg, bdh) -> new_lt0(vwx290, vwx300, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(ty_[], cch), cbe) -> new_lt0(vwx55, vwx58, cch) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(ty_[], cbf), cbd, cbe) -> new_lt0(vwx54, vwx57, cbf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(ty_[], ff)), fd)) -> new_lt0(vwx290, vwx300, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(ty_[], bea)), bdg), bdh)) -> new_lt0(vwx290, vwx300, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(ty_[], bfc)), bdh)) -> new_lt0(vwx291, vwx301, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(ty_Either, bec), bed), bdg, bdh) -> new_lt2(vwx290, vwx300, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(ty_Either, bfe), bff), bdh) -> new_lt2(vwx291, vwx301, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(ty_@2, bde), bdf), bdg, bdh) -> new_lt(vwx290, vwx300, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(ty_@2, bfa), bfb), bdh) -> new_lt(vwx291, vwx301, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(app(app(ty_@3, bee), bef), beg), bdg, bdh) -> new_lt3(vwx290, vwx300, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(app(app(ty_@3, bfg), bfh), bga), bdh) -> new_lt3(vwx291, vwx301, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), app(ty_Maybe, beb), bdg, bdh) -> new_lt1(vwx290, vwx300, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), beh, app(ty_Maybe, bfd), bdh) -> new_lt1(vwx291, vwx301, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_ltEs3(vwx290, vwx300, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(Left(vwx290), Left(vwx300), app(app(app(ty_@3, bbh), bca), bcb), bbc) -> new_ltEs3(vwx290, vwx300, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(ty_@2, bcd), bce)) -> new_ltEs(vwx290, vwx300, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx290), Left(vwx300), app(app(ty_@2, bba), bbb), bbc) -> new_ltEs(vwx290, vwx300, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(ty_Maybe, bcg)) -> new_ltEs1(vwx290, vwx300, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Left(vwx290), Left(vwx300), app(ty_Maybe, bbe), bbc) -> new_ltEs1(vwx290, vwx300, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Left(vwx290), Left(vwx300), app(ty_[], bbd), bbc) -> new_ltEs0(vwx290, vwx300, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(ty_[], bcf)) -> new_ltEs0(vwx290, vwx300, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(Right(vwx290), Right(vwx300), bcc, app(app(ty_Either, bch), bda)) -> new_ltEs2(vwx290, vwx300, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(Left(vwx290), Left(vwx300), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs2(vwx290, vwx300, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(app(ty_@3, bbh), bca), bcb)), bbc)) -> new_ltEs3(vwx290, vwx300, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(app(ty_@3, bdb), bdc), bdd))) -> new_ltEs3(vwx290, vwx300, bdb, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(app(ty_@3, bgh), bha), bhb))) -> new_ltEs3(vwx292, vwx302, bgh, bha, bhb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs3(vwx291, vwx301, hd, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(app(ty_@3, baf), bag), bah))) -> new_ltEs3(vwx290, vwx300, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(ty_@2, bcd), bce))) -> new_ltEs(vwx290, vwx300, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(ty_@2, bba), bbb)), bbc)) -> new_ltEs(vwx290, vwx300, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(ty_@2, bgb), bgc))) -> new_ltEs(vwx292, vwx302, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(ty_@2, hh), baa))) -> new_ltEs(vwx290, vwx300, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(ty_@2, gf), gg))) -> new_ltEs(vwx291, vwx301, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(ty_Maybe, ha))) -> new_ltEs1(vwx291, vwx301, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(ty_Maybe, bcg))) -> new_ltEs1(vwx290, vwx300, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(ty_Maybe, bge))) -> new_ltEs1(vwx292, vwx302, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(ty_Maybe, bac))) -> new_ltEs1(vwx290, vwx300, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(ty_Maybe, bbe)), bbc)) -> new_ltEs1(vwx290, vwx300, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(ty_Either, cbh), cca), cbd, cbe) -> new_lt2(vwx54, vwx57, cbh, cca) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(ty_Either, cdb), cdc), cbe) -> new_lt2(vwx55, vwx58, cdb, cdc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(ty_@2, cbb), cbc), cbd, cbe) -> new_lt(vwx54, vwx57, cbb, cbc) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(ty_@2, ccf), ccg), cbe) -> new_lt(vwx55, vwx58, ccf, ccg) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(app(app(ty_@3, ccb), ccc), ccd), cbd, cbe) -> new_lt3(vwx54, vwx57, ccb, ccc, ccd) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(app(app(ty_@3, cdd), cde), cdf), cbe) -> new_lt3(vwx55, vwx58, cdd, cde, cdf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, app(ty_Maybe, cbg), cbd, cbe) -> new_lt1(vwx54, vwx57, cbg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare23(vwx54, vwx55, vwx56, vwx57, vwx58, vwx59, False, cce, app(ty_Maybe, cda), cbe) -> new_lt1(vwx55, vwx58, cda) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(ty_[], bcf))) -> new_ltEs0(vwx290, vwx300, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(ty_[], bgd))) -> new_ltEs0(vwx292, vwx302, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(ty_[], bbd)), bbc)) -> new_ltEs0(vwx290, vwx300, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(ty_[], bab))) -> new_ltEs0(vwx290, vwx300, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(ty_[], gh))) -> new_ltEs0(vwx291, vwx301, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vwx290), Right(vwx300), False, app(app(ty_Either, bcc), app(app(ty_Either, bch), bda))) -> new_ltEs2(vwx290, vwx300, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, ge), app(app(ty_Either, hb), hc))) -> new_ltEs2(vwx291, vwx301, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), bdg), app(app(ty_Either, bgf), bgg))) -> new_ltEs2(vwx292, vwx302, bgf, bgg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vwx290), Just(vwx300), False, app(ty_Maybe, app(app(ty_Either, bad), bae))) -> new_ltEs2(vwx290, vwx300, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vwx290), Left(vwx300), False, app(app(ty_Either, app(app(ty_Either, bbf), bbg)), bbc)) -> new_ltEs2(vwx290, vwx300, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(ty_Either, bec), bed)), bdg), bdh)) -> new_lt2(vwx290, vwx300, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(ty_Either, fh), ga)), fd)) -> new_lt2(vwx290, vwx300, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(ty_Either, bfe), bff)), bdh)) -> new_lt2(vwx291, vwx301, bfe, bff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fd)) -> new_lt(vwx290, vwx300, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(ty_@2, bde), bdf)), bdg), bdh)) -> new_lt(vwx290, vwx300, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(ty_@2, bfa), bfb)), bdh)) -> new_lt(vwx291, vwx301, bfa, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(app(app(ty_@3, bee), bef), beg)), bdg), bdh)) -> new_lt3(vwx290, vwx300, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(app(app(ty_@3, gb), gc), gd)), fd)) -> new_lt3(vwx290, vwx300, gb, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(app(app(ty_@3, bfg), bfh), bga)), bdh)) -> new_lt3(vwx291, vwx301, bfg, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, app(ty_Maybe, beb)), bdg), bdh)) -> new_lt1(vwx290, vwx300, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vwx290, vwx291, vwx292), @3(vwx300, vwx301, vwx302), False, app(app(app(ty_@3, beh), app(ty_Maybe, bfd)), bdh)) -> new_lt1(vwx291, vwx301, bfd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vwx290, vwx291), @2(vwx300, vwx301), False, app(app(ty_@2, app(ty_Maybe, fg)), fd)) -> new_lt1(vwx290, vwx300, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) 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. ---------------------------------------- (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_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 ---------------------------------------- (23) YES ---------------------------------------- (24) 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. ---------------------------------------- (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_primMulNat(Succ(vwx3000), Succ(vwx4100)) -> new_primMulNat(vwx3000, Succ(vwx4100)) 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_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. ---------------------------------------- (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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) 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_primPlusNat(Succ(vwx14700), Succ(vwx41000)) -> new_primPlusNat(vwx14700, vwx41000) R is empty. Q is empty. 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_primPlusNat(Succ(vwx14700), Succ(vwx41000)) -> new_primPlusNat(vwx14700, vwx41000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES