/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, 4 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 13 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 79 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; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "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' x zx = gcd0Gcd'2 x zx; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` 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 "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; " "reduce2Reduce0 vwv vww x y True = x `quot` reduce2D vwv vww :% (y `quot` reduce2D vwv vww); " ---------------------------------------- (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="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="compare vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 6[label="compare3 vwx3 vwx4 == LT",fontsize=16,color="black",shape="box"];6 -> 7[label="",style="solid", color="black", weight=3]; 7[label="compare2 vwx3 vwx4 (vwx3 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2929[label="vwx3/(vwx30,vwx31)",fontsize=10,color="white",style="solid",shape="box"];7 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 8[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (vwx30,vwx31) vwx4 ((vwx30,vwx31) == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2930[label="vwx4/(vwx40,vwx41)",fontsize=10,color="white",style="solid",shape="box"];8 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 9[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 (vwx30,vwx31) (vwx40,vwx41) ((vwx30,vwx31) == (vwx40,vwx41)) == LT",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 10 -> 11[label="",style="dashed", color="red", weight=0]; 10[label="compare2 (vwx30,vwx31) (vwx40,vwx41) (vwx30 == vwx40 && vwx31 == vwx41) == LT",fontsize=16,color="magenta"];10 -> 12[label="",style="dashed", color="magenta", weight=3]; 10 -> 13[label="",style="dashed", color="magenta", weight=3]; 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 12[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2931[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2931[label="",style="solid", color="blue", weight=9]; 2931 -> 17[label="",style="solid", color="blue", weight=3]; 2932[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2932[label="",style="solid", color="blue", weight=9]; 2932 -> 18[label="",style="solid", color="blue", weight=3]; 2933[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2933[label="",style="solid", color="blue", weight=9]; 2933 -> 19[label="",style="solid", color="blue", weight=3]; 2934[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2934[label="",style="solid", color="blue", weight=9]; 2934 -> 20[label="",style="solid", color="blue", weight=3]; 2935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 21[label="",style="solid", color="blue", weight=3]; 2936[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 22[label="",style="solid", color="blue", weight=3]; 2937[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 23[label="",style="solid", color="blue", weight=3]; 2938[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 24[label="",style="solid", color="blue", weight=3]; 2939[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 25[label="",style="solid", color="blue", weight=3]; 2940[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 26[label="",style="solid", color="blue", weight=3]; 2941[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 27[label="",style="solid", color="blue", weight=3]; 2942[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 28[label="",style="solid", color="blue", weight=3]; 2943[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 29[label="",style="solid", color="blue", weight=3]; 2944[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];12 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 30[label="",style="solid", color="blue", weight=3]; 13[label="vwx41",fontsize=16,color="green",shape="box"];14[label="vwx30",fontsize=16,color="green",shape="box"];15[label="vwx31",fontsize=16,color="green",shape="box"];16[label="vwx40",fontsize=16,color="green",shape="box"];11[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx15 && vwx12 == vwx14) == LT",fontsize=16,color="burlywood",shape="triangle"];2945[label="vwx15/False",fontsize=10,color="white",style="solid",shape="box"];11 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 31[label="",style="solid", color="burlywood", weight=3]; 2946[label="vwx15/True",fontsize=10,color="white",style="solid",shape="box"];11 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 32[label="",style="solid", color="burlywood", weight=3]; 17[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];17 -> 33[label="",style="solid", color="black", weight=3]; 18[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];18 -> 34[label="",style="solid", color="black", weight=3]; 19[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2947[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];19 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 35[label="",style="solid", color="burlywood", weight=3]; 2948[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];19 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 36[label="",style="solid", color="burlywood", weight=3]; 20[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2949[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];20 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 37[label="",style="solid", color="burlywood", weight=3]; 2950[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];20 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 38[label="",style="solid", color="burlywood", weight=3]; 21[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2951[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];21 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 39[label="",style="solid", color="burlywood", weight=3]; 2952[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];21 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 40[label="",style="solid", color="burlywood", weight=3]; 22[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2953[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];22 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 41[label="",style="solid", color="burlywood", weight=3]; 2954[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];22 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 42[label="",style="solid", color="burlywood", weight=3]; 2955[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];22 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 43[label="",style="solid", color="burlywood", weight=3]; 23[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2956[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];23 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 44[label="",style="solid", color="burlywood", weight=3]; 24[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2957[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];24 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 45[label="",style="solid", color="burlywood", weight=3]; 2958[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];24 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 46[label="",style="solid", color="burlywood", weight=3]; 25[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2959[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];25 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 47[label="",style="solid", color="burlywood", weight=3]; 26[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2960[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];26 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 48[label="",style="solid", color="burlywood", weight=3]; 27[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];27 -> 49[label="",style="solid", color="black", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2961[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];28 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 50[label="",style="solid", color="burlywood", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];29 -> 51[label="",style="solid", color="black", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2962[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];30 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 52[label="",style="solid", color="burlywood", weight=3]; 31[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (False && vwx12 == vwx14) == LT",fontsize=16,color="black",shape="box"];31 -> 53[label="",style="solid", color="black", weight=3]; 32[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (True && vwx12 == vwx14) == LT",fontsize=16,color="black",shape="box"];32 -> 54[label="",style="solid", color="black", weight=3]; 33[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2963[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];33 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 55[label="",style="solid", color="burlywood", weight=3]; 2964[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];33 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 56[label="",style="solid", color="burlywood", weight=3]; 34[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2965[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];34 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 57[label="",style="solid", color="burlywood", weight=3]; 35[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2966[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];35 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 58[label="",style="solid", color="burlywood", weight=3]; 2967[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];35 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 59[label="",style="solid", color="burlywood", weight=3]; 36[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2968[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];36 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 60[label="",style="solid", color="burlywood", weight=3]; 2969[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];36 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 61[label="",style="solid", color="burlywood", weight=3]; 37[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2970[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];37 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 62[label="",style="solid", color="burlywood", weight=3]; 2971[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];37 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 63[label="",style="solid", color="burlywood", weight=3]; 38[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2972[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];38 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 64[label="",style="solid", color="burlywood", weight=3]; 2973[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];38 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 65[label="",style="solid", color="burlywood", weight=3]; 39[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2974[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];39 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 66[label="",style="solid", color="burlywood", weight=3]; 2975[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];39 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 67[label="",style="solid", color="burlywood", weight=3]; 40[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2976[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];40 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 68[label="",style="solid", color="burlywood", weight=3]; 2977[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];40 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 69[label="",style="solid", color="burlywood", weight=3]; 41[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2978[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];41 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 70[label="",style="solid", color="burlywood", weight=3]; 2979[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];41 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 71[label="",style="solid", color="burlywood", weight=3]; 2980[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];41 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 72[label="",style="solid", color="burlywood", weight=3]; 42[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2981[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];42 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 73[label="",style="solid", color="burlywood", weight=3]; 2982[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];42 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 74[label="",style="solid", color="burlywood", weight=3]; 2983[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];42 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 75[label="",style="solid", color="burlywood", weight=3]; 43[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2984[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];43 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 76[label="",style="solid", color="burlywood", weight=3]; 2985[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];43 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 77[label="",style="solid", color="burlywood", weight=3]; 2986[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];43 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 78[label="",style="solid", color="burlywood", weight=3]; 44[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2987[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];44 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 79[label="",style="solid", color="burlywood", weight=3]; 45[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2988[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];45 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 80[label="",style="solid", color="burlywood", weight=3]; 2989[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];45 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 81[label="",style="solid", color="burlywood", weight=3]; 46[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2990[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];46 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 82[label="",style="solid", color="burlywood", weight=3]; 2991[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];46 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 83[label="",style="solid", color="burlywood", weight=3]; 47[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2992[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];47 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 84[label="",style="solid", color="burlywood", weight=3]; 48[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2993[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];48 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 85[label="",style="solid", color="burlywood", weight=3]; 49[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2994[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];49 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 86[label="",style="solid", color="burlywood", weight=3]; 50[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2995[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];50 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 87[label="",style="solid", color="burlywood", weight=3]; 51[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2996[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];51 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 88[label="",style="solid", color="burlywood", weight=3]; 52[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2997[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];52 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 89[label="",style="solid", color="burlywood", weight=3]; 53 -> 22[label="",style="dashed", color="red", weight=0]; 53[label="compare2 (vwx11,vwx12) (vwx13,vwx14) False == LT",fontsize=16,color="magenta"];53 -> 90[label="",style="dashed", color="magenta", weight=3]; 53 -> 91[label="",style="dashed", color="magenta", weight=3]; 54 -> 22[label="",style="dashed", color="red", weight=0]; 54[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx12 == vwx14) == LT",fontsize=16,color="magenta"];54 -> 92[label="",style="dashed", color="magenta", weight=3]; 54 -> 93[label="",style="dashed", color="magenta", weight=3]; 55[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2998[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];55 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 94[label="",style="solid", color="burlywood", weight=3]; 2999[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];55 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 95[label="",style="solid", color="burlywood", weight=3]; 56[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3000[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];56 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 96[label="",style="solid", color="burlywood", weight=3]; 3001[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];56 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 97[label="",style="solid", color="burlywood", weight=3]; 57[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3002[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];57 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 98[label="",style="solid", color="burlywood", weight=3]; 58[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];58 -> 99[label="",style="solid", color="black", weight=3]; 59[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];59 -> 100[label="",style="solid", color="black", weight=3]; 60[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];60 -> 101[label="",style="solid", color="black", weight=3]; 61[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];61 -> 102[label="",style="solid", color="black", weight=3]; 62[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];62 -> 103[label="",style="solid", color="black", weight=3]; 63[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];63 -> 104[label="",style="solid", color="black", weight=3]; 64[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];64 -> 105[label="",style="solid", color="black", weight=3]; 65[label="[] == []",fontsize=16,color="black",shape="box"];65 -> 106[label="",style="solid", color="black", weight=3]; 66[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];66 -> 107[label="",style="solid", color="black", weight=3]; 67[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];67 -> 108[label="",style="solid", color="black", weight=3]; 68[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];68 -> 109[label="",style="solid", color="black", weight=3]; 69[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];69 -> 110[label="",style="solid", color="black", weight=3]; 70[label="LT == LT",fontsize=16,color="black",shape="box"];70 -> 111[label="",style="solid", color="black", weight=3]; 71[label="LT == EQ",fontsize=16,color="black",shape="box"];71 -> 112[label="",style="solid", color="black", weight=3]; 72[label="LT == GT",fontsize=16,color="black",shape="box"];72 -> 113[label="",style="solid", color="black", weight=3]; 73[label="EQ == LT",fontsize=16,color="black",shape="box"];73 -> 114[label="",style="solid", color="black", weight=3]; 74[label="EQ == EQ",fontsize=16,color="black",shape="box"];74 -> 115[label="",style="solid", color="black", weight=3]; 75[label="EQ == GT",fontsize=16,color="black",shape="box"];75 -> 116[label="",style="solid", color="black", weight=3]; 76[label="GT == LT",fontsize=16,color="black",shape="box"];76 -> 117[label="",style="solid", color="black", weight=3]; 77[label="GT == EQ",fontsize=16,color="black",shape="box"];77 -> 118[label="",style="solid", color="black", weight=3]; 78[label="GT == GT",fontsize=16,color="black",shape="box"];78 -> 119[label="",style="solid", color="black", weight=3]; 79[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];79 -> 120[label="",style="solid", color="black", weight=3]; 80[label="False == False",fontsize=16,color="black",shape="box"];80 -> 121[label="",style="solid", color="black", weight=3]; 81[label="False == True",fontsize=16,color="black",shape="box"];81 -> 122[label="",style="solid", color="black", weight=3]; 82[label="True == False",fontsize=16,color="black",shape="box"];82 -> 123[label="",style="solid", color="black", weight=3]; 83[label="True == True",fontsize=16,color="black",shape="box"];83 -> 124[label="",style="solid", color="black", weight=3]; 84[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];84 -> 125[label="",style="solid", color="black", weight=3]; 85[label="() == ()",fontsize=16,color="black",shape="box"];85 -> 126[label="",style="solid", color="black", weight=3]; 86[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];3003[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];86 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 127[label="",style="solid", color="burlywood", weight=3]; 87[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];87 -> 128[label="",style="solid", color="black", weight=3]; 88[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];3004[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];88 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 129[label="",style="solid", color="burlywood", weight=3]; 89[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];89 -> 130[label="",style="solid", color="black", weight=3]; 90 -> 1803[label="",style="dashed", color="red", weight=0]; 90[label="compare2 (vwx11,vwx12) (vwx13,vwx14) False",fontsize=16,color="magenta"];90 -> 1804[label="",style="dashed", color="magenta", weight=3]; 90 -> 1805[label="",style="dashed", color="magenta", weight=3]; 90 -> 1806[label="",style="dashed", color="magenta", weight=3]; 91[label="LT",fontsize=16,color="green",shape="box"];92 -> 1803[label="",style="dashed", color="red", weight=0]; 92[label="compare2 (vwx11,vwx12) (vwx13,vwx14) (vwx12 == vwx14)",fontsize=16,color="magenta"];92 -> 1807[label="",style="dashed", color="magenta", weight=3]; 92 -> 1808[label="",style="dashed", color="magenta", weight=3]; 92 -> 1809[label="",style="dashed", color="magenta", weight=3]; 93[label="LT",fontsize=16,color="green",shape="box"];94[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3005[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];94 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 143[label="",style="solid", color="burlywood", weight=3]; 3006[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];94 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 144[label="",style="solid", color="burlywood", weight=3]; 95[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3007[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];95 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 145[label="",style="solid", color="burlywood", weight=3]; 3008[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];95 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 146[label="",style="solid", color="burlywood", weight=3]; 96[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];3009[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];96 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 147[label="",style="solid", color="burlywood", weight=3]; 3010[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];96 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 148[label="",style="solid", color="burlywood", weight=3]; 97[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];3011[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];97 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 149[label="",style="solid", color="burlywood", weight=3]; 3012[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];97 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 150[label="",style="solid", color="burlywood", weight=3]; 98[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];98 -> 151[label="",style="solid", color="black", weight=3]; 99[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3013[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 152[label="",style="solid", color="blue", weight=3]; 3014[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 153[label="",style="solid", color="blue", weight=3]; 3015[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 154[label="",style="solid", color="blue", weight=3]; 3016[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 155[label="",style="solid", color="blue", weight=3]; 3017[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 156[label="",style="solid", color="blue", weight=3]; 3018[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 157[label="",style="solid", color="blue", weight=3]; 3019[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 158[label="",style="solid", color="blue", weight=3]; 3020[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 159[label="",style="solid", color="blue", weight=3]; 3021[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 160[label="",style="solid", color="blue", weight=3]; 3022[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 161[label="",style="solid", color="blue", weight=3]; 3023[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 162[label="",style="solid", color="blue", weight=3]; 3024[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 163[label="",style="solid", color="blue", weight=3]; 3025[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 164[label="",style="solid", color="blue", weight=3]; 3026[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];99 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 165[label="",style="solid", color="blue", weight=3]; 100[label="False",fontsize=16,color="green",shape="box"];101[label="False",fontsize=16,color="green",shape="box"];102[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3027[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 166[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 167[label="",style="solid", color="blue", weight=3]; 3029[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 168[label="",style="solid", color="blue", weight=3]; 3030[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 169[label="",style="solid", color="blue", weight=3]; 3031[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 170[label="",style="solid", color="blue", weight=3]; 3032[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 171[label="",style="solid", color="blue", weight=3]; 3033[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 172[label="",style="solid", color="blue", weight=3]; 3034[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 173[label="",style="solid", color="blue", weight=3]; 3035[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 174[label="",style="solid", color="blue", weight=3]; 3036[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 175[label="",style="solid", color="blue", weight=3]; 3037[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 176[label="",style="solid", color="blue", weight=3]; 3038[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 177[label="",style="solid", color="blue", weight=3]; 3039[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 178[label="",style="solid", color="blue", weight=3]; 3040[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];102 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 179[label="",style="solid", color="blue", weight=3]; 103 -> 299[label="",style="dashed", color="red", weight=0]; 103[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];103 -> 300[label="",style="dashed", color="magenta", weight=3]; 103 -> 301[label="",style="dashed", color="magenta", weight=3]; 104[label="False",fontsize=16,color="green",shape="box"];105[label="False",fontsize=16,color="green",shape="box"];106[label="True",fontsize=16,color="green",shape="box"];107[label="True",fontsize=16,color="green",shape="box"];108[label="False",fontsize=16,color="green",shape="box"];109[label="False",fontsize=16,color="green",shape="box"];110[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3041[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 191[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 192[label="",style="solid", color="blue", weight=3]; 3043[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 193[label="",style="solid", color="blue", weight=3]; 3044[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 194[label="",style="solid", color="blue", weight=3]; 3045[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 195[label="",style="solid", color="blue", weight=3]; 3046[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 196[label="",style="solid", color="blue", weight=3]; 3047[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 197[label="",style="solid", color="blue", weight=3]; 3048[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 198[label="",style="solid", color="blue", weight=3]; 3049[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 199[label="",style="solid", color="blue", weight=3]; 3050[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 200[label="",style="solid", color="blue", weight=3]; 3051[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 201[label="",style="solid", color="blue", weight=3]; 3052[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 202[label="",style="solid", color="blue", weight=3]; 3053[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 203[label="",style="solid", color="blue", weight=3]; 3054[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];110 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 204[label="",style="solid", color="blue", weight=3]; 111[label="True",fontsize=16,color="green",shape="box"];112[label="False",fontsize=16,color="green",shape="box"];113[label="False",fontsize=16,color="green",shape="box"];114[label="False",fontsize=16,color="green",shape="box"];115[label="True",fontsize=16,color="green",shape="box"];116[label="False",fontsize=16,color="green",shape="box"];117[label="False",fontsize=16,color="green",shape="box"];118[label="False",fontsize=16,color="green",shape="box"];119[label="True",fontsize=16,color="green",shape="box"];120 -> 299[label="",style="dashed", color="red", weight=0]; 120[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];120 -> 302[label="",style="dashed", color="magenta", weight=3]; 120 -> 303[label="",style="dashed", color="magenta", weight=3]; 121[label="True",fontsize=16,color="green",shape="box"];122[label="False",fontsize=16,color="green",shape="box"];123[label="False",fontsize=16,color="green",shape="box"];124[label="True",fontsize=16,color="green",shape="box"];125 -> 299[label="",style="dashed", color="red", weight=0]; 125[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];125 -> 304[label="",style="dashed", color="magenta", weight=3]; 125 -> 305[label="",style="dashed", color="magenta", weight=3]; 126[label="True",fontsize=16,color="green",shape="box"];127[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];127 -> 205[label="",style="solid", color="black", weight=3]; 128 -> 299[label="",style="dashed", color="red", weight=0]; 128[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];128 -> 306[label="",style="dashed", color="magenta", weight=3]; 128 -> 307[label="",style="dashed", color="magenta", weight=3]; 129[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];129 -> 206[label="",style="solid", color="black", weight=3]; 130 -> 33[label="",style="dashed", color="red", weight=0]; 130[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];130 -> 207[label="",style="dashed", color="magenta", weight=3]; 130 -> 208[label="",style="dashed", color="magenta", weight=3]; 1804[label="(vwx13,vwx14)",fontsize=16,color="green",shape="box"];1805[label="(vwx11,vwx12)",fontsize=16,color="green",shape="box"];1806[label="False",fontsize=16,color="green",shape="box"];1803[label="compare2 vwx220 vwx240 vwx72",fontsize=16,color="burlywood",shape="triangle"];3055[label="vwx72/False",fontsize=10,color="white",style="solid",shape="box"];1803 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 1814[label="",style="solid", color="burlywood", weight=3]; 3056[label="vwx72/True",fontsize=10,color="white",style="solid",shape="box"];1803 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 1815[label="",style="solid", color="burlywood", weight=3]; 1807[label="(vwx13,vwx14)",fontsize=16,color="green",shape="box"];1808[label="(vwx11,vwx12)",fontsize=16,color="green",shape="box"];1809[label="vwx12 == vwx14",fontsize=16,color="blue",shape="box"];3057[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1816[label="",style="solid", color="blue", weight=3]; 3058[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1817[label="",style="solid", color="blue", weight=3]; 3059[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1818[label="",style="solid", color="blue", weight=3]; 3060[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1819[label="",style="solid", color="blue", weight=3]; 3061[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1820[label="",style="solid", color="blue", weight=3]; 3062[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1821[label="",style="solid", color="blue", weight=3]; 3063[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1822[label="",style="solid", color="blue", weight=3]; 3064[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1823[label="",style="solid", color="blue", weight=3]; 3065[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1824[label="",style="solid", color="blue", weight=3]; 3066[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1825[label="",style="solid", color="blue", weight=3]; 3067[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1826[label="",style="solid", color="blue", weight=3]; 3068[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1827[label="",style="solid", color="blue", weight=3]; 3069[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1828[label="",style="solid", color="blue", weight=3]; 3070[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1809 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1829[label="",style="solid", color="blue", weight=3]; 143[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3071[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];143 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 225[label="",style="solid", color="burlywood", weight=3]; 3072[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];143 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 226[label="",style="solid", color="burlywood", weight=3]; 144[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];144 -> 227[label="",style="solid", color="black", weight=3]; 145[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3073[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];145 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 228[label="",style="solid", color="burlywood", weight=3]; 3074[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];145 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 229[label="",style="solid", color="burlywood", weight=3]; 146[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3075[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];146 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 230[label="",style="solid", color="burlywood", weight=3]; 3076[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];146 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 231[label="",style="solid", color="burlywood", weight=3]; 147[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];147 -> 232[label="",style="solid", color="black", weight=3]; 148[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3077[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];148 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 233[label="",style="solid", color="burlywood", weight=3]; 3078[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];148 -> 3078[label="",style="solid", color="burlywood", weight=9]; 3078 -> 234[label="",style="solid", color="burlywood", weight=3]; 149[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];3079[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];149 -> 3079[label="",style="solid", color="burlywood", weight=9]; 3079 -> 235[label="",style="solid", color="burlywood", weight=3]; 3080[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];149 -> 3080[label="",style="solid", color="burlywood", weight=9]; 3080 -> 236[label="",style="solid", color="burlywood", weight=3]; 150[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];3081[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];150 -> 3081[label="",style="solid", color="burlywood", weight=9]; 3081 -> 237[label="",style="solid", color="burlywood", weight=3]; 3082[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];150 -> 3082[label="",style="solid", color="burlywood", weight=9]; 3082 -> 238[label="",style="solid", color="burlywood", weight=3]; 151 -> 17[label="",style="dashed", color="red", weight=0]; 151[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];151 -> 239[label="",style="dashed", color="magenta", weight=3]; 151 -> 240[label="",style="dashed", color="magenta", weight=3]; 152 -> 17[label="",style="dashed", color="red", weight=0]; 152[label="vwx300 == vwx400",fontsize=16,color="magenta"];152 -> 241[label="",style="dashed", color="magenta", weight=3]; 152 -> 242[label="",style="dashed", color="magenta", weight=3]; 153 -> 18[label="",style="dashed", color="red", weight=0]; 153[label="vwx300 == vwx400",fontsize=16,color="magenta"];153 -> 243[label="",style="dashed", color="magenta", weight=3]; 153 -> 244[label="",style="dashed", color="magenta", weight=3]; 154 -> 19[label="",style="dashed", color="red", weight=0]; 154[label="vwx300 == vwx400",fontsize=16,color="magenta"];154 -> 245[label="",style="dashed", color="magenta", weight=3]; 154 -> 246[label="",style="dashed", color="magenta", weight=3]; 155 -> 20[label="",style="dashed", color="red", weight=0]; 155[label="vwx300 == vwx400",fontsize=16,color="magenta"];155 -> 247[label="",style="dashed", color="magenta", weight=3]; 155 -> 248[label="",style="dashed", color="magenta", weight=3]; 156 -> 21[label="",style="dashed", color="red", weight=0]; 156[label="vwx300 == vwx400",fontsize=16,color="magenta"];156 -> 249[label="",style="dashed", color="magenta", weight=3]; 156 -> 250[label="",style="dashed", color="magenta", weight=3]; 157 -> 22[label="",style="dashed", color="red", weight=0]; 157[label="vwx300 == vwx400",fontsize=16,color="magenta"];157 -> 251[label="",style="dashed", color="magenta", weight=3]; 157 -> 252[label="",style="dashed", color="magenta", weight=3]; 158 -> 23[label="",style="dashed", color="red", weight=0]; 158[label="vwx300 == vwx400",fontsize=16,color="magenta"];158 -> 253[label="",style="dashed", color="magenta", weight=3]; 158 -> 254[label="",style="dashed", color="magenta", weight=3]; 159 -> 24[label="",style="dashed", color="red", weight=0]; 159[label="vwx300 == vwx400",fontsize=16,color="magenta"];159 -> 255[label="",style="dashed", color="magenta", weight=3]; 159 -> 256[label="",style="dashed", color="magenta", weight=3]; 160 -> 25[label="",style="dashed", color="red", weight=0]; 160[label="vwx300 == vwx400",fontsize=16,color="magenta"];160 -> 257[label="",style="dashed", color="magenta", weight=3]; 160 -> 258[label="",style="dashed", color="magenta", weight=3]; 161 -> 26[label="",style="dashed", color="red", weight=0]; 161[label="vwx300 == vwx400",fontsize=16,color="magenta"];161 -> 259[label="",style="dashed", color="magenta", weight=3]; 161 -> 260[label="",style="dashed", color="magenta", weight=3]; 162 -> 27[label="",style="dashed", color="red", weight=0]; 162[label="vwx300 == vwx400",fontsize=16,color="magenta"];162 -> 261[label="",style="dashed", color="magenta", weight=3]; 162 -> 262[label="",style="dashed", color="magenta", weight=3]; 163 -> 28[label="",style="dashed", color="red", weight=0]; 163[label="vwx300 == vwx400",fontsize=16,color="magenta"];163 -> 263[label="",style="dashed", color="magenta", weight=3]; 163 -> 264[label="",style="dashed", color="magenta", weight=3]; 164 -> 29[label="",style="dashed", color="red", weight=0]; 164[label="vwx300 == vwx400",fontsize=16,color="magenta"];164 -> 265[label="",style="dashed", color="magenta", weight=3]; 164 -> 266[label="",style="dashed", color="magenta", weight=3]; 165 -> 30[label="",style="dashed", color="red", weight=0]; 165[label="vwx300 == vwx400",fontsize=16,color="magenta"];165 -> 267[label="",style="dashed", color="magenta", weight=3]; 165 -> 268[label="",style="dashed", color="magenta", weight=3]; 166 -> 17[label="",style="dashed", color="red", weight=0]; 166[label="vwx300 == vwx400",fontsize=16,color="magenta"];166 -> 269[label="",style="dashed", color="magenta", weight=3]; 166 -> 270[label="",style="dashed", color="magenta", weight=3]; 167 -> 18[label="",style="dashed", color="red", weight=0]; 167[label="vwx300 == vwx400",fontsize=16,color="magenta"];167 -> 271[label="",style="dashed", color="magenta", weight=3]; 167 -> 272[label="",style="dashed", color="magenta", weight=3]; 168 -> 19[label="",style="dashed", color="red", weight=0]; 168[label="vwx300 == vwx400",fontsize=16,color="magenta"];168 -> 273[label="",style="dashed", color="magenta", weight=3]; 168 -> 274[label="",style="dashed", color="magenta", weight=3]; 169 -> 20[label="",style="dashed", color="red", weight=0]; 169[label="vwx300 == vwx400",fontsize=16,color="magenta"];169 -> 275[label="",style="dashed", color="magenta", weight=3]; 169 -> 276[label="",style="dashed", color="magenta", weight=3]; 170 -> 21[label="",style="dashed", color="red", weight=0]; 170[label="vwx300 == vwx400",fontsize=16,color="magenta"];170 -> 277[label="",style="dashed", color="magenta", weight=3]; 170 -> 278[label="",style="dashed", color="magenta", weight=3]; 171 -> 22[label="",style="dashed", color="red", weight=0]; 171[label="vwx300 == vwx400",fontsize=16,color="magenta"];171 -> 279[label="",style="dashed", color="magenta", weight=3]; 171 -> 280[label="",style="dashed", color="magenta", weight=3]; 172 -> 23[label="",style="dashed", color="red", weight=0]; 172[label="vwx300 == vwx400",fontsize=16,color="magenta"];172 -> 281[label="",style="dashed", color="magenta", weight=3]; 172 -> 282[label="",style="dashed", color="magenta", weight=3]; 173 -> 24[label="",style="dashed", color="red", weight=0]; 173[label="vwx300 == vwx400",fontsize=16,color="magenta"];173 -> 283[label="",style="dashed", color="magenta", weight=3]; 173 -> 284[label="",style="dashed", color="magenta", weight=3]; 174 -> 25[label="",style="dashed", color="red", weight=0]; 174[label="vwx300 == vwx400",fontsize=16,color="magenta"];174 -> 285[label="",style="dashed", color="magenta", weight=3]; 174 -> 286[label="",style="dashed", color="magenta", weight=3]; 175 -> 26[label="",style="dashed", color="red", weight=0]; 175[label="vwx300 == vwx400",fontsize=16,color="magenta"];175 -> 287[label="",style="dashed", color="magenta", weight=3]; 175 -> 288[label="",style="dashed", color="magenta", weight=3]; 176 -> 27[label="",style="dashed", color="red", weight=0]; 176[label="vwx300 == vwx400",fontsize=16,color="magenta"];176 -> 289[label="",style="dashed", color="magenta", weight=3]; 176 -> 290[label="",style="dashed", color="magenta", weight=3]; 177 -> 28[label="",style="dashed", color="red", weight=0]; 177[label="vwx300 == vwx400",fontsize=16,color="magenta"];177 -> 291[label="",style="dashed", color="magenta", weight=3]; 177 -> 292[label="",style="dashed", color="magenta", weight=3]; 178 -> 29[label="",style="dashed", color="red", weight=0]; 178[label="vwx300 == vwx400",fontsize=16,color="magenta"];178 -> 293[label="",style="dashed", color="magenta", weight=3]; 178 -> 294[label="",style="dashed", color="magenta", weight=3]; 179 -> 30[label="",style="dashed", color="red", weight=0]; 179[label="vwx300 == vwx400",fontsize=16,color="magenta"];179 -> 295[label="",style="dashed", color="magenta", weight=3]; 179 -> 296[label="",style="dashed", color="magenta", weight=3]; 300[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3083[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 312[label="",style="solid", color="blue", weight=3]; 3084[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 313[label="",style="solid", color="blue", weight=3]; 3085[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 314[label="",style="solid", color="blue", weight=3]; 3086[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 315[label="",style="solid", color="blue", weight=3]; 3087[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 316[label="",style="solid", color="blue", weight=3]; 3088[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 317[label="",style="solid", color="blue", weight=3]; 3089[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 318[label="",style="solid", color="blue", weight=3]; 3090[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 319[label="",style="solid", color="blue", weight=3]; 3091[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 320[label="",style="solid", color="blue", weight=3]; 3092[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 321[label="",style="solid", color="blue", weight=3]; 3093[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 322[label="",style="solid", color="blue", weight=3]; 3094[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 323[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 324[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];300 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 325[label="",style="solid", color="blue", weight=3]; 301 -> 20[label="",style="dashed", color="red", weight=0]; 301[label="vwx301 == vwx401",fontsize=16,color="magenta"];301 -> 326[label="",style="dashed", color="magenta", weight=3]; 301 -> 327[label="",style="dashed", color="magenta", weight=3]; 299[label="vwx31 && vwx32",fontsize=16,color="burlywood",shape="triangle"];3097[label="vwx31/False",fontsize=10,color="white",style="solid",shape="box"];299 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 328[label="",style="solid", color="burlywood", weight=3]; 3098[label="vwx31/True",fontsize=10,color="white",style="solid",shape="box"];299 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 329[label="",style="solid", color="burlywood", weight=3]; 191 -> 17[label="",style="dashed", color="red", weight=0]; 191[label="vwx300 == vwx400",fontsize=16,color="magenta"];191 -> 330[label="",style="dashed", color="magenta", weight=3]; 191 -> 331[label="",style="dashed", color="magenta", weight=3]; 192 -> 18[label="",style="dashed", color="red", weight=0]; 192[label="vwx300 == vwx400",fontsize=16,color="magenta"];192 -> 332[label="",style="dashed", color="magenta", weight=3]; 192 -> 333[label="",style="dashed", color="magenta", weight=3]; 193 -> 19[label="",style="dashed", color="red", weight=0]; 193[label="vwx300 == vwx400",fontsize=16,color="magenta"];193 -> 334[label="",style="dashed", color="magenta", weight=3]; 193 -> 335[label="",style="dashed", color="magenta", weight=3]; 194 -> 20[label="",style="dashed", color="red", weight=0]; 194[label="vwx300 == vwx400",fontsize=16,color="magenta"];194 -> 336[label="",style="dashed", color="magenta", weight=3]; 194 -> 337[label="",style="dashed", color="magenta", weight=3]; 195 -> 21[label="",style="dashed", color="red", weight=0]; 195[label="vwx300 == vwx400",fontsize=16,color="magenta"];195 -> 338[label="",style="dashed", color="magenta", weight=3]; 195 -> 339[label="",style="dashed", color="magenta", weight=3]; 196 -> 22[label="",style="dashed", color="red", weight=0]; 196[label="vwx300 == vwx400",fontsize=16,color="magenta"];196 -> 340[label="",style="dashed", color="magenta", weight=3]; 196 -> 341[label="",style="dashed", color="magenta", weight=3]; 197 -> 23[label="",style="dashed", color="red", weight=0]; 197[label="vwx300 == vwx400",fontsize=16,color="magenta"];197 -> 342[label="",style="dashed", color="magenta", weight=3]; 197 -> 343[label="",style="dashed", color="magenta", weight=3]; 198 -> 24[label="",style="dashed", color="red", weight=0]; 198[label="vwx300 == vwx400",fontsize=16,color="magenta"];198 -> 344[label="",style="dashed", color="magenta", weight=3]; 198 -> 345[label="",style="dashed", color="magenta", weight=3]; 199 -> 25[label="",style="dashed", color="red", weight=0]; 199[label="vwx300 == vwx400",fontsize=16,color="magenta"];199 -> 346[label="",style="dashed", color="magenta", weight=3]; 199 -> 347[label="",style="dashed", color="magenta", weight=3]; 200 -> 26[label="",style="dashed", color="red", weight=0]; 200[label="vwx300 == vwx400",fontsize=16,color="magenta"];200 -> 348[label="",style="dashed", color="magenta", weight=3]; 200 -> 349[label="",style="dashed", color="magenta", weight=3]; 201 -> 27[label="",style="dashed", color="red", weight=0]; 201[label="vwx300 == vwx400",fontsize=16,color="magenta"];201 -> 350[label="",style="dashed", color="magenta", weight=3]; 201 -> 351[label="",style="dashed", color="magenta", weight=3]; 202 -> 28[label="",style="dashed", color="red", weight=0]; 202[label="vwx300 == vwx400",fontsize=16,color="magenta"];202 -> 352[label="",style="dashed", color="magenta", weight=3]; 202 -> 353[label="",style="dashed", color="magenta", weight=3]; 203 -> 29[label="",style="dashed", color="red", weight=0]; 203[label="vwx300 == vwx400",fontsize=16,color="magenta"];203 -> 354[label="",style="dashed", color="magenta", weight=3]; 203 -> 355[label="",style="dashed", color="magenta", weight=3]; 204 -> 30[label="",style="dashed", color="red", weight=0]; 204[label="vwx300 == vwx400",fontsize=16,color="magenta"];204 -> 356[label="",style="dashed", color="magenta", weight=3]; 204 -> 357[label="",style="dashed", color="magenta", weight=3]; 302[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3099[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 358[label="",style="solid", color="blue", weight=3]; 3100[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];302 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 359[label="",style="solid", color="blue", weight=3]; 303[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3101[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 360[label="",style="solid", color="blue", weight=3]; 3102[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];303 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 361[label="",style="solid", color="blue", weight=3]; 304[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3103[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 362[label="",style="solid", color="blue", weight=3]; 3104[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 363[label="",style="solid", color="blue", weight=3]; 3105[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 364[label="",style="solid", color="blue", weight=3]; 3106[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 365[label="",style="solid", color="blue", weight=3]; 3107[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 366[label="",style="solid", color="blue", weight=3]; 3108[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 367[label="",style="solid", color="blue", weight=3]; 3109[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3109[label="",style="solid", color="blue", weight=9]; 3109 -> 368[label="",style="solid", color="blue", weight=3]; 3110[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 369[label="",style="solid", color="blue", weight=3]; 3111[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 370[label="",style="solid", color="blue", weight=3]; 3112[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 371[label="",style="solid", color="blue", weight=3]; 3113[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 372[label="",style="solid", color="blue", weight=3]; 3114[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 373[label="",style="solid", color="blue", weight=3]; 3115[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 374[label="",style="solid", color="blue", weight=3]; 3116[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];304 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 375[label="",style="solid", color="blue", weight=3]; 305[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3117[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 376[label="",style="solid", color="blue", weight=3]; 3118[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 377[label="",style="solid", color="blue", weight=3]; 3119[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 378[label="",style="solid", color="blue", weight=3]; 3120[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 379[label="",style="solid", color="blue", weight=3]; 3121[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 380[label="",style="solid", color="blue", weight=3]; 3122[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 381[label="",style="solid", color="blue", weight=3]; 3123[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 382[label="",style="solid", color="blue", weight=3]; 3124[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 383[label="",style="solid", color="blue", weight=3]; 3125[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 384[label="",style="solid", color="blue", weight=3]; 3126[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 385[label="",style="solid", color="blue", weight=3]; 3127[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 386[label="",style="solid", color="blue", weight=3]; 3128[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 387[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 388[label="",style="solid", color="blue", weight=3]; 3130[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];305 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 389[label="",style="solid", color="blue", weight=3]; 205 -> 17[label="",style="dashed", color="red", weight=0]; 205[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];205 -> 390[label="",style="dashed", color="magenta", weight=3]; 205 -> 391[label="",style="dashed", color="magenta", weight=3]; 306[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3131[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 392[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 393[label="",style="solid", color="blue", weight=3]; 3133[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 394[label="",style="solid", color="blue", weight=3]; 3134[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 395[label="",style="solid", color="blue", weight=3]; 3135[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 396[label="",style="solid", color="blue", weight=3]; 3136[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 397[label="",style="solid", color="blue", weight=3]; 3137[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 398[label="",style="solid", color="blue", weight=3]; 3138[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 399[label="",style="solid", color="blue", weight=3]; 3139[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 400[label="",style="solid", color="blue", weight=3]; 3140[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 401[label="",style="solid", color="blue", weight=3]; 3141[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 402[label="",style="solid", color="blue", weight=3]; 3142[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 403[label="",style="solid", color="blue", weight=3]; 3143[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 404[label="",style="solid", color="blue", weight=3]; 3144[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];306 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 405[label="",style="solid", color="blue", weight=3]; 307 -> 299[label="",style="dashed", color="red", weight=0]; 307[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];307 -> 406[label="",style="dashed", color="magenta", weight=3]; 307 -> 407[label="",style="dashed", color="magenta", weight=3]; 206[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3145[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];206 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 408[label="",style="solid", color="burlywood", weight=3]; 3146[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];206 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 409[label="",style="solid", color="burlywood", weight=3]; 207[label="vwx300",fontsize=16,color="green",shape="box"];208[label="vwx400",fontsize=16,color="green",shape="box"];1814[label="compare2 vwx220 vwx240 False",fontsize=16,color="black",shape="box"];1814 -> 1831[label="",style="solid", color="black", weight=3]; 1815[label="compare2 vwx220 vwx240 True",fontsize=16,color="black",shape="box"];1815 -> 1832[label="",style="solid", color="black", weight=3]; 1816 -> 17[label="",style="dashed", color="red", weight=0]; 1816[label="vwx12 == vwx14",fontsize=16,color="magenta"];1816 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1816 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1817 -> 18[label="",style="dashed", color="red", weight=0]; 1817[label="vwx12 == vwx14",fontsize=16,color="magenta"];1817 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1817 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1818 -> 19[label="",style="dashed", color="red", weight=0]; 1818[label="vwx12 == vwx14",fontsize=16,color="magenta"];1818 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1818 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1819 -> 20[label="",style="dashed", color="red", weight=0]; 1819[label="vwx12 == vwx14",fontsize=16,color="magenta"];1819 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1819 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1820 -> 21[label="",style="dashed", color="red", weight=0]; 1820[label="vwx12 == vwx14",fontsize=16,color="magenta"];1820 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1820 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1821 -> 22[label="",style="dashed", color="red", weight=0]; 1821[label="vwx12 == vwx14",fontsize=16,color="magenta"];1821 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1821 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1822 -> 23[label="",style="dashed", color="red", weight=0]; 1822[label="vwx12 == vwx14",fontsize=16,color="magenta"];1822 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1822 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1823 -> 24[label="",style="dashed", color="red", weight=0]; 1823[label="vwx12 == vwx14",fontsize=16,color="magenta"];1823 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1823 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1824 -> 25[label="",style="dashed", color="red", weight=0]; 1824[label="vwx12 == vwx14",fontsize=16,color="magenta"];1824 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1824 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1825 -> 26[label="",style="dashed", color="red", weight=0]; 1825[label="vwx12 == vwx14",fontsize=16,color="magenta"];1825 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1826 -> 27[label="",style="dashed", color="red", weight=0]; 1826[label="vwx12 == vwx14",fontsize=16,color="magenta"];1826 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1827 -> 28[label="",style="dashed", color="red", weight=0]; 1827[label="vwx12 == vwx14",fontsize=16,color="magenta"];1827 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1828 -> 29[label="",style="dashed", color="red", weight=0]; 1828[label="vwx12 == vwx14",fontsize=16,color="magenta"];1828 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1829 -> 30[label="",style="dashed", color="red", weight=0]; 1829[label="vwx12 == vwx14",fontsize=16,color="magenta"];1829 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1860[label="",style="dashed", color="magenta", weight=3]; 225[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];225 -> 440[label="",style="solid", color="black", weight=3]; 226[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];226 -> 441[label="",style="solid", color="black", weight=3]; 227[label="False",fontsize=16,color="green",shape="box"];228[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];228 -> 442[label="",style="solid", color="black", weight=3]; 229[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];229 -> 443[label="",style="solid", color="black", weight=3]; 230[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];230 -> 444[label="",style="solid", color="black", weight=3]; 231[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];231 -> 445[label="",style="solid", color="black", weight=3]; 232[label="False",fontsize=16,color="green",shape="box"];233[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];233 -> 446[label="",style="solid", color="black", weight=3]; 234[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];234 -> 447[label="",style="solid", color="black", weight=3]; 235[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];235 -> 448[label="",style="solid", color="black", weight=3]; 236[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];236 -> 449[label="",style="solid", color="black", weight=3]; 237[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];237 -> 450[label="",style="solid", color="black", weight=3]; 238[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];238 -> 451[label="",style="solid", color="black", weight=3]; 239[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];239 -> 452[label="",style="solid", color="black", weight=3]; 240 -> 239[label="",style="dashed", color="red", weight=0]; 240[label="vwx301 * vwx400",fontsize=16,color="magenta"];240 -> 453[label="",style="dashed", color="magenta", weight=3]; 240 -> 454[label="",style="dashed", color="magenta", weight=3]; 241[label="vwx300",fontsize=16,color="green",shape="box"];242[label="vwx400",fontsize=16,color="green",shape="box"];243[label="vwx300",fontsize=16,color="green",shape="box"];244[label="vwx400",fontsize=16,color="green",shape="box"];245[label="vwx300",fontsize=16,color="green",shape="box"];246[label="vwx400",fontsize=16,color="green",shape="box"];247[label="vwx300",fontsize=16,color="green",shape="box"];248[label="vwx400",fontsize=16,color="green",shape="box"];249[label="vwx300",fontsize=16,color="green",shape="box"];250[label="vwx400",fontsize=16,color="green",shape="box"];251[label="vwx300",fontsize=16,color="green",shape="box"];252[label="vwx400",fontsize=16,color="green",shape="box"];253[label="vwx300",fontsize=16,color="green",shape="box"];254[label="vwx400",fontsize=16,color="green",shape="box"];255[label="vwx300",fontsize=16,color="green",shape="box"];256[label="vwx400",fontsize=16,color="green",shape="box"];257[label="vwx300",fontsize=16,color="green",shape="box"];258[label="vwx400",fontsize=16,color="green",shape="box"];259[label="vwx300",fontsize=16,color="green",shape="box"];260[label="vwx400",fontsize=16,color="green",shape="box"];261[label="vwx300",fontsize=16,color="green",shape="box"];262[label="vwx400",fontsize=16,color="green",shape="box"];263[label="vwx300",fontsize=16,color="green",shape="box"];264[label="vwx400",fontsize=16,color="green",shape="box"];265[label="vwx300",fontsize=16,color="green",shape="box"];266[label="vwx400",fontsize=16,color="green",shape="box"];267[label="vwx300",fontsize=16,color="green",shape="box"];268[label="vwx400",fontsize=16,color="green",shape="box"];269[label="vwx300",fontsize=16,color="green",shape="box"];270[label="vwx400",fontsize=16,color="green",shape="box"];271[label="vwx300",fontsize=16,color="green",shape="box"];272[label="vwx400",fontsize=16,color="green",shape="box"];273[label="vwx300",fontsize=16,color="green",shape="box"];274[label="vwx400",fontsize=16,color="green",shape="box"];275[label="vwx300",fontsize=16,color="green",shape="box"];276[label="vwx400",fontsize=16,color="green",shape="box"];277[label="vwx300",fontsize=16,color="green",shape="box"];278[label="vwx400",fontsize=16,color="green",shape="box"];279[label="vwx300",fontsize=16,color="green",shape="box"];280[label="vwx400",fontsize=16,color="green",shape="box"];281[label="vwx300",fontsize=16,color="green",shape="box"];282[label="vwx400",fontsize=16,color="green",shape="box"];283[label="vwx300",fontsize=16,color="green",shape="box"];284[label="vwx400",fontsize=16,color="green",shape="box"];285[label="vwx300",fontsize=16,color="green",shape="box"];286[label="vwx400",fontsize=16,color="green",shape="box"];287[label="vwx300",fontsize=16,color="green",shape="box"];288[label="vwx400",fontsize=16,color="green",shape="box"];289[label="vwx300",fontsize=16,color="green",shape="box"];290[label="vwx400",fontsize=16,color="green",shape="box"];291[label="vwx300",fontsize=16,color="green",shape="box"];292[label="vwx400",fontsize=16,color="green",shape="box"];293[label="vwx300",fontsize=16,color="green",shape="box"];294[label="vwx400",fontsize=16,color="green",shape="box"];295[label="vwx300",fontsize=16,color="green",shape="box"];296[label="vwx400",fontsize=16,color="green",shape="box"];312 -> 17[label="",style="dashed", color="red", weight=0]; 312[label="vwx300 == vwx400",fontsize=16,color="magenta"];312 -> 455[label="",style="dashed", color="magenta", weight=3]; 312 -> 456[label="",style="dashed", color="magenta", weight=3]; 313 -> 18[label="",style="dashed", color="red", weight=0]; 313[label="vwx300 == vwx400",fontsize=16,color="magenta"];313 -> 457[label="",style="dashed", color="magenta", weight=3]; 313 -> 458[label="",style="dashed", color="magenta", weight=3]; 314 -> 19[label="",style="dashed", color="red", weight=0]; 314[label="vwx300 == vwx400",fontsize=16,color="magenta"];314 -> 459[label="",style="dashed", color="magenta", weight=3]; 314 -> 460[label="",style="dashed", color="magenta", weight=3]; 315 -> 20[label="",style="dashed", color="red", weight=0]; 315[label="vwx300 == vwx400",fontsize=16,color="magenta"];315 -> 461[label="",style="dashed", color="magenta", weight=3]; 315 -> 462[label="",style="dashed", color="magenta", weight=3]; 316 -> 21[label="",style="dashed", color="red", weight=0]; 316[label="vwx300 == vwx400",fontsize=16,color="magenta"];316 -> 463[label="",style="dashed", color="magenta", weight=3]; 316 -> 464[label="",style="dashed", color="magenta", weight=3]; 317 -> 22[label="",style="dashed", color="red", weight=0]; 317[label="vwx300 == vwx400",fontsize=16,color="magenta"];317 -> 465[label="",style="dashed", color="magenta", weight=3]; 317 -> 466[label="",style="dashed", color="magenta", weight=3]; 318 -> 23[label="",style="dashed", color="red", weight=0]; 318[label="vwx300 == vwx400",fontsize=16,color="magenta"];318 -> 467[label="",style="dashed", color="magenta", weight=3]; 318 -> 468[label="",style="dashed", color="magenta", weight=3]; 319 -> 24[label="",style="dashed", color="red", weight=0]; 319[label="vwx300 == vwx400",fontsize=16,color="magenta"];319 -> 469[label="",style="dashed", color="magenta", weight=3]; 319 -> 470[label="",style="dashed", color="magenta", weight=3]; 320 -> 25[label="",style="dashed", color="red", weight=0]; 320[label="vwx300 == vwx400",fontsize=16,color="magenta"];320 -> 471[label="",style="dashed", color="magenta", weight=3]; 320 -> 472[label="",style="dashed", color="magenta", weight=3]; 321 -> 26[label="",style="dashed", color="red", weight=0]; 321[label="vwx300 == vwx400",fontsize=16,color="magenta"];321 -> 473[label="",style="dashed", color="magenta", weight=3]; 321 -> 474[label="",style="dashed", color="magenta", weight=3]; 322 -> 27[label="",style="dashed", color="red", weight=0]; 322[label="vwx300 == vwx400",fontsize=16,color="magenta"];322 -> 475[label="",style="dashed", color="magenta", weight=3]; 322 -> 476[label="",style="dashed", color="magenta", weight=3]; 323 -> 28[label="",style="dashed", color="red", weight=0]; 323[label="vwx300 == vwx400",fontsize=16,color="magenta"];323 -> 477[label="",style="dashed", color="magenta", weight=3]; 323 -> 478[label="",style="dashed", color="magenta", weight=3]; 324 -> 29[label="",style="dashed", color="red", weight=0]; 324[label="vwx300 == vwx400",fontsize=16,color="magenta"];324 -> 479[label="",style="dashed", color="magenta", weight=3]; 324 -> 480[label="",style="dashed", color="magenta", weight=3]; 325 -> 30[label="",style="dashed", color="red", weight=0]; 325[label="vwx300 == vwx400",fontsize=16,color="magenta"];325 -> 481[label="",style="dashed", color="magenta", weight=3]; 325 -> 482[label="",style="dashed", color="magenta", weight=3]; 326[label="vwx301",fontsize=16,color="green",shape="box"];327[label="vwx401",fontsize=16,color="green",shape="box"];328[label="False && vwx32",fontsize=16,color="black",shape="box"];328 -> 483[label="",style="solid", color="black", weight=3]; 329[label="True && vwx32",fontsize=16,color="black",shape="box"];329 -> 484[label="",style="solid", color="black", weight=3]; 330[label="vwx300",fontsize=16,color="green",shape="box"];331[label="vwx400",fontsize=16,color="green",shape="box"];332[label="vwx300",fontsize=16,color="green",shape="box"];333[label="vwx400",fontsize=16,color="green",shape="box"];334[label="vwx300",fontsize=16,color="green",shape="box"];335[label="vwx400",fontsize=16,color="green",shape="box"];336[label="vwx300",fontsize=16,color="green",shape="box"];337[label="vwx400",fontsize=16,color="green",shape="box"];338[label="vwx300",fontsize=16,color="green",shape="box"];339[label="vwx400",fontsize=16,color="green",shape="box"];340[label="vwx300",fontsize=16,color="green",shape="box"];341[label="vwx400",fontsize=16,color="green",shape="box"];342[label="vwx300",fontsize=16,color="green",shape="box"];343[label="vwx400",fontsize=16,color="green",shape="box"];344[label="vwx300",fontsize=16,color="green",shape="box"];345[label="vwx400",fontsize=16,color="green",shape="box"];346[label="vwx300",fontsize=16,color="green",shape="box"];347[label="vwx400",fontsize=16,color="green",shape="box"];348[label="vwx300",fontsize=16,color="green",shape="box"];349[label="vwx400",fontsize=16,color="green",shape="box"];350[label="vwx300",fontsize=16,color="green",shape="box"];351[label="vwx400",fontsize=16,color="green",shape="box"];352[label="vwx300",fontsize=16,color="green",shape="box"];353[label="vwx400",fontsize=16,color="green",shape="box"];354[label="vwx300",fontsize=16,color="green",shape="box"];355[label="vwx400",fontsize=16,color="green",shape="box"];356[label="vwx300",fontsize=16,color="green",shape="box"];357[label="vwx400",fontsize=16,color="green",shape="box"];358 -> 17[label="",style="dashed", color="red", weight=0]; 358[label="vwx300 == vwx400",fontsize=16,color="magenta"];358 -> 485[label="",style="dashed", color="magenta", weight=3]; 358 -> 486[label="",style="dashed", color="magenta", weight=3]; 359 -> 30[label="",style="dashed", color="red", weight=0]; 359[label="vwx300 == vwx400",fontsize=16,color="magenta"];359 -> 487[label="",style="dashed", color="magenta", weight=3]; 359 -> 488[label="",style="dashed", color="magenta", weight=3]; 360 -> 17[label="",style="dashed", color="red", weight=0]; 360[label="vwx301 == vwx401",fontsize=16,color="magenta"];360 -> 489[label="",style="dashed", color="magenta", weight=3]; 360 -> 490[label="",style="dashed", color="magenta", weight=3]; 361 -> 30[label="",style="dashed", color="red", weight=0]; 361[label="vwx301 == vwx401",fontsize=16,color="magenta"];361 -> 491[label="",style="dashed", color="magenta", weight=3]; 361 -> 492[label="",style="dashed", color="magenta", weight=3]; 362 -> 17[label="",style="dashed", color="red", weight=0]; 362[label="vwx300 == vwx400",fontsize=16,color="magenta"];362 -> 493[label="",style="dashed", color="magenta", weight=3]; 362 -> 494[label="",style="dashed", color="magenta", weight=3]; 363 -> 18[label="",style="dashed", color="red", weight=0]; 363[label="vwx300 == vwx400",fontsize=16,color="magenta"];363 -> 495[label="",style="dashed", color="magenta", weight=3]; 363 -> 496[label="",style="dashed", color="magenta", weight=3]; 364 -> 19[label="",style="dashed", color="red", weight=0]; 364[label="vwx300 == vwx400",fontsize=16,color="magenta"];364 -> 497[label="",style="dashed", color="magenta", weight=3]; 364 -> 498[label="",style="dashed", color="magenta", weight=3]; 365 -> 20[label="",style="dashed", color="red", weight=0]; 365[label="vwx300 == vwx400",fontsize=16,color="magenta"];365 -> 499[label="",style="dashed", color="magenta", weight=3]; 365 -> 500[label="",style="dashed", color="magenta", weight=3]; 366 -> 21[label="",style="dashed", color="red", weight=0]; 366[label="vwx300 == vwx400",fontsize=16,color="magenta"];366 -> 501[label="",style="dashed", color="magenta", weight=3]; 366 -> 502[label="",style="dashed", color="magenta", weight=3]; 367 -> 22[label="",style="dashed", color="red", weight=0]; 367[label="vwx300 == vwx400",fontsize=16,color="magenta"];367 -> 503[label="",style="dashed", color="magenta", weight=3]; 367 -> 504[label="",style="dashed", color="magenta", weight=3]; 368 -> 23[label="",style="dashed", color="red", weight=0]; 368[label="vwx300 == vwx400",fontsize=16,color="magenta"];368 -> 505[label="",style="dashed", color="magenta", weight=3]; 368 -> 506[label="",style="dashed", color="magenta", weight=3]; 369 -> 24[label="",style="dashed", color="red", weight=0]; 369[label="vwx300 == vwx400",fontsize=16,color="magenta"];369 -> 507[label="",style="dashed", color="magenta", weight=3]; 369 -> 508[label="",style="dashed", color="magenta", weight=3]; 370 -> 25[label="",style="dashed", color="red", weight=0]; 370[label="vwx300 == vwx400",fontsize=16,color="magenta"];370 -> 509[label="",style="dashed", color="magenta", weight=3]; 370 -> 510[label="",style="dashed", color="magenta", weight=3]; 371 -> 26[label="",style="dashed", color="red", weight=0]; 371[label="vwx300 == vwx400",fontsize=16,color="magenta"];371 -> 511[label="",style="dashed", color="magenta", weight=3]; 371 -> 512[label="",style="dashed", color="magenta", weight=3]; 372 -> 27[label="",style="dashed", color="red", weight=0]; 372[label="vwx300 == vwx400",fontsize=16,color="magenta"];372 -> 513[label="",style="dashed", color="magenta", weight=3]; 372 -> 514[label="",style="dashed", color="magenta", weight=3]; 373 -> 28[label="",style="dashed", color="red", weight=0]; 373[label="vwx300 == vwx400",fontsize=16,color="magenta"];373 -> 515[label="",style="dashed", color="magenta", weight=3]; 373 -> 516[label="",style="dashed", color="magenta", weight=3]; 374 -> 29[label="",style="dashed", color="red", weight=0]; 374[label="vwx300 == vwx400",fontsize=16,color="magenta"];374 -> 517[label="",style="dashed", color="magenta", weight=3]; 374 -> 518[label="",style="dashed", color="magenta", weight=3]; 375 -> 30[label="",style="dashed", color="red", weight=0]; 375[label="vwx300 == vwx400",fontsize=16,color="magenta"];375 -> 519[label="",style="dashed", color="magenta", weight=3]; 375 -> 520[label="",style="dashed", color="magenta", weight=3]; 376 -> 17[label="",style="dashed", color="red", weight=0]; 376[label="vwx301 == vwx401",fontsize=16,color="magenta"];376 -> 521[label="",style="dashed", color="magenta", weight=3]; 376 -> 522[label="",style="dashed", color="magenta", weight=3]; 377 -> 18[label="",style="dashed", color="red", weight=0]; 377[label="vwx301 == vwx401",fontsize=16,color="magenta"];377 -> 523[label="",style="dashed", color="magenta", weight=3]; 377 -> 524[label="",style="dashed", color="magenta", weight=3]; 378 -> 19[label="",style="dashed", color="red", weight=0]; 378[label="vwx301 == vwx401",fontsize=16,color="magenta"];378 -> 525[label="",style="dashed", color="magenta", weight=3]; 378 -> 526[label="",style="dashed", color="magenta", weight=3]; 379 -> 20[label="",style="dashed", color="red", weight=0]; 379[label="vwx301 == vwx401",fontsize=16,color="magenta"];379 -> 527[label="",style="dashed", color="magenta", weight=3]; 379 -> 528[label="",style="dashed", color="magenta", weight=3]; 380 -> 21[label="",style="dashed", color="red", weight=0]; 380[label="vwx301 == vwx401",fontsize=16,color="magenta"];380 -> 529[label="",style="dashed", color="magenta", weight=3]; 380 -> 530[label="",style="dashed", color="magenta", weight=3]; 381 -> 22[label="",style="dashed", color="red", weight=0]; 381[label="vwx301 == vwx401",fontsize=16,color="magenta"];381 -> 531[label="",style="dashed", color="magenta", weight=3]; 381 -> 532[label="",style="dashed", color="magenta", weight=3]; 382 -> 23[label="",style="dashed", color="red", weight=0]; 382[label="vwx301 == vwx401",fontsize=16,color="magenta"];382 -> 533[label="",style="dashed", color="magenta", weight=3]; 382 -> 534[label="",style="dashed", color="magenta", weight=3]; 383 -> 24[label="",style="dashed", color="red", weight=0]; 383[label="vwx301 == vwx401",fontsize=16,color="magenta"];383 -> 535[label="",style="dashed", color="magenta", weight=3]; 383 -> 536[label="",style="dashed", color="magenta", weight=3]; 384 -> 25[label="",style="dashed", color="red", weight=0]; 384[label="vwx301 == vwx401",fontsize=16,color="magenta"];384 -> 537[label="",style="dashed", color="magenta", weight=3]; 384 -> 538[label="",style="dashed", color="magenta", weight=3]; 385 -> 26[label="",style="dashed", color="red", weight=0]; 385[label="vwx301 == vwx401",fontsize=16,color="magenta"];385 -> 539[label="",style="dashed", color="magenta", weight=3]; 385 -> 540[label="",style="dashed", color="magenta", weight=3]; 386 -> 27[label="",style="dashed", color="red", weight=0]; 386[label="vwx301 == vwx401",fontsize=16,color="magenta"];386 -> 541[label="",style="dashed", color="magenta", weight=3]; 386 -> 542[label="",style="dashed", color="magenta", weight=3]; 387 -> 28[label="",style="dashed", color="red", weight=0]; 387[label="vwx301 == vwx401",fontsize=16,color="magenta"];387 -> 543[label="",style="dashed", color="magenta", weight=3]; 387 -> 544[label="",style="dashed", color="magenta", weight=3]; 388 -> 29[label="",style="dashed", color="red", weight=0]; 388[label="vwx301 == vwx401",fontsize=16,color="magenta"];388 -> 545[label="",style="dashed", color="magenta", weight=3]; 388 -> 546[label="",style="dashed", color="magenta", weight=3]; 389 -> 30[label="",style="dashed", color="red", weight=0]; 389[label="vwx301 == vwx401",fontsize=16,color="magenta"];389 -> 547[label="",style="dashed", color="magenta", weight=3]; 389 -> 548[label="",style="dashed", color="magenta", weight=3]; 390 -> 239[label="",style="dashed", color="red", weight=0]; 390[label="vwx300 * vwx401",fontsize=16,color="magenta"];390 -> 549[label="",style="dashed", color="magenta", weight=3]; 390 -> 550[label="",style="dashed", color="magenta", weight=3]; 391 -> 239[label="",style="dashed", color="red", weight=0]; 391[label="vwx301 * vwx400",fontsize=16,color="magenta"];391 -> 551[label="",style="dashed", color="magenta", weight=3]; 391 -> 552[label="",style="dashed", color="magenta", weight=3]; 392 -> 17[label="",style="dashed", color="red", weight=0]; 392[label="vwx300 == vwx400",fontsize=16,color="magenta"];392 -> 553[label="",style="dashed", color="magenta", weight=3]; 392 -> 554[label="",style="dashed", color="magenta", weight=3]; 393 -> 18[label="",style="dashed", color="red", weight=0]; 393[label="vwx300 == vwx400",fontsize=16,color="magenta"];393 -> 555[label="",style="dashed", color="magenta", weight=3]; 393 -> 556[label="",style="dashed", color="magenta", weight=3]; 394 -> 19[label="",style="dashed", color="red", weight=0]; 394[label="vwx300 == vwx400",fontsize=16,color="magenta"];394 -> 557[label="",style="dashed", color="magenta", weight=3]; 394 -> 558[label="",style="dashed", color="magenta", weight=3]; 395 -> 20[label="",style="dashed", color="red", weight=0]; 395[label="vwx300 == vwx400",fontsize=16,color="magenta"];395 -> 559[label="",style="dashed", color="magenta", weight=3]; 395 -> 560[label="",style="dashed", color="magenta", weight=3]; 396 -> 21[label="",style="dashed", color="red", weight=0]; 396[label="vwx300 == vwx400",fontsize=16,color="magenta"];396 -> 561[label="",style="dashed", color="magenta", weight=3]; 396 -> 562[label="",style="dashed", color="magenta", weight=3]; 397 -> 22[label="",style="dashed", color="red", weight=0]; 397[label="vwx300 == vwx400",fontsize=16,color="magenta"];397 -> 563[label="",style="dashed", color="magenta", weight=3]; 397 -> 564[label="",style="dashed", color="magenta", weight=3]; 398 -> 23[label="",style="dashed", color="red", weight=0]; 398[label="vwx300 == vwx400",fontsize=16,color="magenta"];398 -> 565[label="",style="dashed", color="magenta", weight=3]; 398 -> 566[label="",style="dashed", color="magenta", weight=3]; 399 -> 24[label="",style="dashed", color="red", weight=0]; 399[label="vwx300 == vwx400",fontsize=16,color="magenta"];399 -> 567[label="",style="dashed", color="magenta", weight=3]; 399 -> 568[label="",style="dashed", color="magenta", weight=3]; 400 -> 25[label="",style="dashed", color="red", weight=0]; 400[label="vwx300 == vwx400",fontsize=16,color="magenta"];400 -> 569[label="",style="dashed", color="magenta", weight=3]; 400 -> 570[label="",style="dashed", color="magenta", weight=3]; 401 -> 26[label="",style="dashed", color="red", weight=0]; 401[label="vwx300 == vwx400",fontsize=16,color="magenta"];401 -> 571[label="",style="dashed", color="magenta", weight=3]; 401 -> 572[label="",style="dashed", color="magenta", weight=3]; 402 -> 27[label="",style="dashed", color="red", weight=0]; 402[label="vwx300 == vwx400",fontsize=16,color="magenta"];402 -> 573[label="",style="dashed", color="magenta", weight=3]; 402 -> 574[label="",style="dashed", color="magenta", weight=3]; 403 -> 28[label="",style="dashed", color="red", weight=0]; 403[label="vwx300 == vwx400",fontsize=16,color="magenta"];403 -> 575[label="",style="dashed", color="magenta", weight=3]; 403 -> 576[label="",style="dashed", color="magenta", weight=3]; 404 -> 29[label="",style="dashed", color="red", weight=0]; 404[label="vwx300 == vwx400",fontsize=16,color="magenta"];404 -> 577[label="",style="dashed", color="magenta", weight=3]; 404 -> 578[label="",style="dashed", color="magenta", weight=3]; 405 -> 30[label="",style="dashed", color="red", weight=0]; 405[label="vwx300 == vwx400",fontsize=16,color="magenta"];405 -> 579[label="",style="dashed", color="magenta", weight=3]; 405 -> 580[label="",style="dashed", color="magenta", weight=3]; 406[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3147[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 581[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 582[label="",style="solid", color="blue", weight=3]; 3149[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 583[label="",style="solid", color="blue", weight=3]; 3150[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 584[label="",style="solid", color="blue", weight=3]; 3151[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 585[label="",style="solid", color="blue", weight=3]; 3152[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 586[label="",style="solid", color="blue", weight=3]; 3153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 587[label="",style="solid", color="blue", weight=3]; 3154[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 588[label="",style="solid", color="blue", weight=3]; 3155[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 589[label="",style="solid", color="blue", weight=3]; 3156[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 590[label="",style="solid", color="blue", weight=3]; 3157[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 591[label="",style="solid", color="blue", weight=3]; 3158[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 592[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 593[label="",style="solid", color="blue", weight=3]; 3160[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 594[label="",style="solid", color="blue", weight=3]; 407[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3161[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 595[label="",style="solid", color="blue", weight=3]; 3162[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 596[label="",style="solid", color="blue", weight=3]; 3163[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 597[label="",style="solid", color="blue", weight=3]; 3164[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 598[label="",style="solid", color="blue", weight=3]; 3165[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 599[label="",style="solid", color="blue", weight=3]; 3166[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 600[label="",style="solid", color="blue", weight=3]; 3167[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 601[label="",style="solid", color="blue", weight=3]; 3168[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 602[label="",style="solid", color="blue", weight=3]; 3169[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 603[label="",style="solid", color="blue", weight=3]; 3170[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 604[label="",style="solid", color="blue", weight=3]; 3171[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 605[label="",style="solid", color="blue", weight=3]; 3172[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 606[label="",style="solid", color="blue", weight=3]; 3173[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 607[label="",style="solid", color="blue", weight=3]; 3174[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 608[label="",style="solid", color="blue", weight=3]; 408[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3175[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];408 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 609[label="",style="solid", color="burlywood", weight=3]; 3176[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];408 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 610[label="",style="solid", color="burlywood", weight=3]; 409[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];3177[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];409 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 611[label="",style="solid", color="burlywood", weight=3]; 3178[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];409 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 612[label="",style="solid", color="burlywood", weight=3]; 1831[label="compare1 vwx220 vwx240 (vwx220 <= vwx240)",fontsize=16,color="burlywood",shape="box"];3179[label="vwx220/(vwx2200,vwx2201)",fontsize=10,color="white",style="solid",shape="box"];1831 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 1863[label="",style="solid", color="burlywood", weight=3]; 1832[label="EQ",fontsize=16,color="green",shape="box"];1833[label="vwx12",fontsize=16,color="green",shape="box"];1834[label="vwx14",fontsize=16,color="green",shape="box"];1835[label="vwx12",fontsize=16,color="green",shape="box"];1836[label="vwx14",fontsize=16,color="green",shape="box"];1837[label="vwx12",fontsize=16,color="green",shape="box"];1838[label="vwx14",fontsize=16,color="green",shape="box"];1839[label="vwx12",fontsize=16,color="green",shape="box"];1840[label="vwx14",fontsize=16,color="green",shape="box"];1841[label="vwx12",fontsize=16,color="green",shape="box"];1842[label="vwx14",fontsize=16,color="green",shape="box"];1843[label="vwx12",fontsize=16,color="green",shape="box"];1844[label="vwx14",fontsize=16,color="green",shape="box"];1845[label="vwx12",fontsize=16,color="green",shape="box"];1846[label="vwx14",fontsize=16,color="green",shape="box"];1847[label="vwx12",fontsize=16,color="green",shape="box"];1848[label="vwx14",fontsize=16,color="green",shape="box"];1849[label="vwx12",fontsize=16,color="green",shape="box"];1850[label="vwx14",fontsize=16,color="green",shape="box"];1851[label="vwx12",fontsize=16,color="green",shape="box"];1852[label="vwx14",fontsize=16,color="green",shape="box"];1853[label="vwx12",fontsize=16,color="green",shape="box"];1854[label="vwx14",fontsize=16,color="green",shape="box"];1855[label="vwx12",fontsize=16,color="green",shape="box"];1856[label="vwx14",fontsize=16,color="green",shape="box"];1857[label="vwx12",fontsize=16,color="green",shape="box"];1858[label="vwx14",fontsize=16,color="green",shape="box"];1859[label="vwx12",fontsize=16,color="green",shape="box"];1860[label="vwx14",fontsize=16,color="green",shape="box"];440 -> 206[label="",style="dashed", color="red", weight=0]; 440[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];440 -> 614[label="",style="dashed", color="magenta", weight=3]; 440 -> 615[label="",style="dashed", color="magenta", weight=3]; 441[label="False",fontsize=16,color="green",shape="box"];442[label="False",fontsize=16,color="green",shape="box"];443[label="True",fontsize=16,color="green",shape="box"];444[label="False",fontsize=16,color="green",shape="box"];445[label="True",fontsize=16,color="green",shape="box"];446 -> 206[label="",style="dashed", color="red", weight=0]; 446[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];446 -> 616[label="",style="dashed", color="magenta", weight=3]; 446 -> 617[label="",style="dashed", color="magenta", weight=3]; 447[label="False",fontsize=16,color="green",shape="box"];448[label="False",fontsize=16,color="green",shape="box"];449[label="True",fontsize=16,color="green",shape="box"];450[label="False",fontsize=16,color="green",shape="box"];451[label="True",fontsize=16,color="green",shape="box"];452[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];3180[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 618[label="",style="solid", color="burlywood", weight=3]; 3181[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];452 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 619[label="",style="solid", color="burlywood", weight=3]; 453[label="vwx400",fontsize=16,color="green",shape="box"];454[label="vwx301",fontsize=16,color="green",shape="box"];455[label="vwx300",fontsize=16,color="green",shape="box"];456[label="vwx400",fontsize=16,color="green",shape="box"];457[label="vwx300",fontsize=16,color="green",shape="box"];458[label="vwx400",fontsize=16,color="green",shape="box"];459[label="vwx300",fontsize=16,color="green",shape="box"];460[label="vwx400",fontsize=16,color="green",shape="box"];461[label="vwx300",fontsize=16,color="green",shape="box"];462[label="vwx400",fontsize=16,color="green",shape="box"];463[label="vwx300",fontsize=16,color="green",shape="box"];464[label="vwx400",fontsize=16,color="green",shape="box"];465[label="vwx300",fontsize=16,color="green",shape="box"];466[label="vwx400",fontsize=16,color="green",shape="box"];467[label="vwx300",fontsize=16,color="green",shape="box"];468[label="vwx400",fontsize=16,color="green",shape="box"];469[label="vwx300",fontsize=16,color="green",shape="box"];470[label="vwx400",fontsize=16,color="green",shape="box"];471[label="vwx300",fontsize=16,color="green",shape="box"];472[label="vwx400",fontsize=16,color="green",shape="box"];473[label="vwx300",fontsize=16,color="green",shape="box"];474[label="vwx400",fontsize=16,color="green",shape="box"];475[label="vwx300",fontsize=16,color="green",shape="box"];476[label="vwx400",fontsize=16,color="green",shape="box"];477[label="vwx300",fontsize=16,color="green",shape="box"];478[label="vwx400",fontsize=16,color="green",shape="box"];479[label="vwx300",fontsize=16,color="green",shape="box"];480[label="vwx400",fontsize=16,color="green",shape="box"];481[label="vwx300",fontsize=16,color="green",shape="box"];482[label="vwx400",fontsize=16,color="green",shape="box"];483[label="False",fontsize=16,color="green",shape="box"];484[label="vwx32",fontsize=16,color="green",shape="box"];485[label="vwx300",fontsize=16,color="green",shape="box"];486[label="vwx400",fontsize=16,color="green",shape="box"];487[label="vwx300",fontsize=16,color="green",shape="box"];488[label="vwx400",fontsize=16,color="green",shape="box"];489[label="vwx301",fontsize=16,color="green",shape="box"];490[label="vwx401",fontsize=16,color="green",shape="box"];491[label="vwx301",fontsize=16,color="green",shape="box"];492[label="vwx401",fontsize=16,color="green",shape="box"];493[label="vwx300",fontsize=16,color="green",shape="box"];494[label="vwx400",fontsize=16,color="green",shape="box"];495[label="vwx300",fontsize=16,color="green",shape="box"];496[label="vwx400",fontsize=16,color="green",shape="box"];497[label="vwx300",fontsize=16,color="green",shape="box"];498[label="vwx400",fontsize=16,color="green",shape="box"];499[label="vwx300",fontsize=16,color="green",shape="box"];500[label="vwx400",fontsize=16,color="green",shape="box"];501[label="vwx300",fontsize=16,color="green",shape="box"];502[label="vwx400",fontsize=16,color="green",shape="box"];503[label="vwx300",fontsize=16,color="green",shape="box"];504[label="vwx400",fontsize=16,color="green",shape="box"];505[label="vwx300",fontsize=16,color="green",shape="box"];506[label="vwx400",fontsize=16,color="green",shape="box"];507[label="vwx300",fontsize=16,color="green",shape="box"];508[label="vwx400",fontsize=16,color="green",shape="box"];509[label="vwx300",fontsize=16,color="green",shape="box"];510[label="vwx400",fontsize=16,color="green",shape="box"];511[label="vwx300",fontsize=16,color="green",shape="box"];512[label="vwx400",fontsize=16,color="green",shape="box"];513[label="vwx300",fontsize=16,color="green",shape="box"];514[label="vwx400",fontsize=16,color="green",shape="box"];515[label="vwx300",fontsize=16,color="green",shape="box"];516[label="vwx400",fontsize=16,color="green",shape="box"];517[label="vwx300",fontsize=16,color="green",shape="box"];518[label="vwx400",fontsize=16,color="green",shape="box"];519[label="vwx300",fontsize=16,color="green",shape="box"];520[label="vwx400",fontsize=16,color="green",shape="box"];521[label="vwx301",fontsize=16,color="green",shape="box"];522[label="vwx401",fontsize=16,color="green",shape="box"];523[label="vwx301",fontsize=16,color="green",shape="box"];524[label="vwx401",fontsize=16,color="green",shape="box"];525[label="vwx301",fontsize=16,color="green",shape="box"];526[label="vwx401",fontsize=16,color="green",shape="box"];527[label="vwx301",fontsize=16,color="green",shape="box"];528[label="vwx401",fontsize=16,color="green",shape="box"];529[label="vwx301",fontsize=16,color="green",shape="box"];530[label="vwx401",fontsize=16,color="green",shape="box"];531[label="vwx301",fontsize=16,color="green",shape="box"];532[label="vwx401",fontsize=16,color="green",shape="box"];533[label="vwx301",fontsize=16,color="green",shape="box"];534[label="vwx401",fontsize=16,color="green",shape="box"];535[label="vwx301",fontsize=16,color="green",shape="box"];536[label="vwx401",fontsize=16,color="green",shape="box"];537[label="vwx301",fontsize=16,color="green",shape="box"];538[label="vwx401",fontsize=16,color="green",shape="box"];539[label="vwx301",fontsize=16,color="green",shape="box"];540[label="vwx401",fontsize=16,color="green",shape="box"];541[label="vwx301",fontsize=16,color="green",shape="box"];542[label="vwx401",fontsize=16,color="green",shape="box"];543[label="vwx301",fontsize=16,color="green",shape="box"];544[label="vwx401",fontsize=16,color="green",shape="box"];545[label="vwx301",fontsize=16,color="green",shape="box"];546[label="vwx401",fontsize=16,color="green",shape="box"];547[label="vwx301",fontsize=16,color="green",shape="box"];548[label="vwx401",fontsize=16,color="green",shape="box"];549[label="vwx401",fontsize=16,color="green",shape="box"];550[label="vwx300",fontsize=16,color="green",shape="box"];551[label="vwx400",fontsize=16,color="green",shape="box"];552[label="vwx301",fontsize=16,color="green",shape="box"];553[label="vwx300",fontsize=16,color="green",shape="box"];554[label="vwx400",fontsize=16,color="green",shape="box"];555[label="vwx300",fontsize=16,color="green",shape="box"];556[label="vwx400",fontsize=16,color="green",shape="box"];557[label="vwx300",fontsize=16,color="green",shape="box"];558[label="vwx400",fontsize=16,color="green",shape="box"];559[label="vwx300",fontsize=16,color="green",shape="box"];560[label="vwx400",fontsize=16,color="green",shape="box"];561[label="vwx300",fontsize=16,color="green",shape="box"];562[label="vwx400",fontsize=16,color="green",shape="box"];563[label="vwx300",fontsize=16,color="green",shape="box"];564[label="vwx400",fontsize=16,color="green",shape="box"];565[label="vwx300",fontsize=16,color="green",shape="box"];566[label="vwx400",fontsize=16,color="green",shape="box"];567[label="vwx300",fontsize=16,color="green",shape="box"];568[label="vwx400",fontsize=16,color="green",shape="box"];569[label="vwx300",fontsize=16,color="green",shape="box"];570[label="vwx400",fontsize=16,color="green",shape="box"];571[label="vwx300",fontsize=16,color="green",shape="box"];572[label="vwx400",fontsize=16,color="green",shape="box"];573[label="vwx300",fontsize=16,color="green",shape="box"];574[label="vwx400",fontsize=16,color="green",shape="box"];575[label="vwx300",fontsize=16,color="green",shape="box"];576[label="vwx400",fontsize=16,color="green",shape="box"];577[label="vwx300",fontsize=16,color="green",shape="box"];578[label="vwx400",fontsize=16,color="green",shape="box"];579[label="vwx300",fontsize=16,color="green",shape="box"];580[label="vwx400",fontsize=16,color="green",shape="box"];581 -> 17[label="",style="dashed", color="red", weight=0]; 581[label="vwx301 == vwx401",fontsize=16,color="magenta"];581 -> 620[label="",style="dashed", color="magenta", weight=3]; 581 -> 621[label="",style="dashed", color="magenta", weight=3]; 582 -> 18[label="",style="dashed", color="red", weight=0]; 582[label="vwx301 == vwx401",fontsize=16,color="magenta"];582 -> 622[label="",style="dashed", color="magenta", weight=3]; 582 -> 623[label="",style="dashed", color="magenta", weight=3]; 583 -> 19[label="",style="dashed", color="red", weight=0]; 583[label="vwx301 == vwx401",fontsize=16,color="magenta"];583 -> 624[label="",style="dashed", color="magenta", weight=3]; 583 -> 625[label="",style="dashed", color="magenta", weight=3]; 584 -> 20[label="",style="dashed", color="red", weight=0]; 584[label="vwx301 == vwx401",fontsize=16,color="magenta"];584 -> 626[label="",style="dashed", color="magenta", weight=3]; 584 -> 627[label="",style="dashed", color="magenta", weight=3]; 585 -> 21[label="",style="dashed", color="red", weight=0]; 585[label="vwx301 == vwx401",fontsize=16,color="magenta"];585 -> 628[label="",style="dashed", color="magenta", weight=3]; 585 -> 629[label="",style="dashed", color="magenta", weight=3]; 586 -> 22[label="",style="dashed", color="red", weight=0]; 586[label="vwx301 == vwx401",fontsize=16,color="magenta"];586 -> 630[label="",style="dashed", color="magenta", weight=3]; 586 -> 631[label="",style="dashed", color="magenta", weight=3]; 587 -> 23[label="",style="dashed", color="red", weight=0]; 587[label="vwx301 == vwx401",fontsize=16,color="magenta"];587 -> 632[label="",style="dashed", color="magenta", weight=3]; 587 -> 633[label="",style="dashed", color="magenta", weight=3]; 588 -> 24[label="",style="dashed", color="red", weight=0]; 588[label="vwx301 == vwx401",fontsize=16,color="magenta"];588 -> 634[label="",style="dashed", color="magenta", weight=3]; 588 -> 635[label="",style="dashed", color="magenta", weight=3]; 589 -> 25[label="",style="dashed", color="red", weight=0]; 589[label="vwx301 == vwx401",fontsize=16,color="magenta"];589 -> 636[label="",style="dashed", color="magenta", weight=3]; 589 -> 637[label="",style="dashed", color="magenta", weight=3]; 590 -> 26[label="",style="dashed", color="red", weight=0]; 590[label="vwx301 == vwx401",fontsize=16,color="magenta"];590 -> 638[label="",style="dashed", color="magenta", weight=3]; 590 -> 639[label="",style="dashed", color="magenta", weight=3]; 591 -> 27[label="",style="dashed", color="red", weight=0]; 591[label="vwx301 == vwx401",fontsize=16,color="magenta"];591 -> 640[label="",style="dashed", color="magenta", weight=3]; 591 -> 641[label="",style="dashed", color="magenta", weight=3]; 592 -> 28[label="",style="dashed", color="red", weight=0]; 592[label="vwx301 == vwx401",fontsize=16,color="magenta"];592 -> 642[label="",style="dashed", color="magenta", weight=3]; 592 -> 643[label="",style="dashed", color="magenta", weight=3]; 593 -> 29[label="",style="dashed", color="red", weight=0]; 593[label="vwx301 == vwx401",fontsize=16,color="magenta"];593 -> 644[label="",style="dashed", color="magenta", weight=3]; 593 -> 645[label="",style="dashed", color="magenta", weight=3]; 594 -> 30[label="",style="dashed", color="red", weight=0]; 594[label="vwx301 == vwx401",fontsize=16,color="magenta"];594 -> 646[label="",style="dashed", color="magenta", weight=3]; 594 -> 647[label="",style="dashed", color="magenta", weight=3]; 595 -> 17[label="",style="dashed", color="red", weight=0]; 595[label="vwx302 == vwx402",fontsize=16,color="magenta"];595 -> 648[label="",style="dashed", color="magenta", weight=3]; 595 -> 649[label="",style="dashed", color="magenta", weight=3]; 596 -> 18[label="",style="dashed", color="red", weight=0]; 596[label="vwx302 == vwx402",fontsize=16,color="magenta"];596 -> 650[label="",style="dashed", color="magenta", weight=3]; 596 -> 651[label="",style="dashed", color="magenta", weight=3]; 597 -> 19[label="",style="dashed", color="red", weight=0]; 597[label="vwx302 == vwx402",fontsize=16,color="magenta"];597 -> 652[label="",style="dashed", color="magenta", weight=3]; 597 -> 653[label="",style="dashed", color="magenta", weight=3]; 598 -> 20[label="",style="dashed", color="red", weight=0]; 598[label="vwx302 == vwx402",fontsize=16,color="magenta"];598 -> 654[label="",style="dashed", color="magenta", weight=3]; 598 -> 655[label="",style="dashed", color="magenta", weight=3]; 599 -> 21[label="",style="dashed", color="red", weight=0]; 599[label="vwx302 == vwx402",fontsize=16,color="magenta"];599 -> 656[label="",style="dashed", color="magenta", weight=3]; 599 -> 657[label="",style="dashed", color="magenta", weight=3]; 600 -> 22[label="",style="dashed", color="red", weight=0]; 600[label="vwx302 == vwx402",fontsize=16,color="magenta"];600 -> 658[label="",style="dashed", color="magenta", weight=3]; 600 -> 659[label="",style="dashed", color="magenta", weight=3]; 601 -> 23[label="",style="dashed", color="red", weight=0]; 601[label="vwx302 == vwx402",fontsize=16,color="magenta"];601 -> 660[label="",style="dashed", color="magenta", weight=3]; 601 -> 661[label="",style="dashed", color="magenta", weight=3]; 602 -> 24[label="",style="dashed", color="red", weight=0]; 602[label="vwx302 == vwx402",fontsize=16,color="magenta"];602 -> 662[label="",style="dashed", color="magenta", weight=3]; 602 -> 663[label="",style="dashed", color="magenta", weight=3]; 603 -> 25[label="",style="dashed", color="red", weight=0]; 603[label="vwx302 == vwx402",fontsize=16,color="magenta"];603 -> 664[label="",style="dashed", color="magenta", weight=3]; 603 -> 665[label="",style="dashed", color="magenta", weight=3]; 604 -> 26[label="",style="dashed", color="red", weight=0]; 604[label="vwx302 == vwx402",fontsize=16,color="magenta"];604 -> 666[label="",style="dashed", color="magenta", weight=3]; 604 -> 667[label="",style="dashed", color="magenta", weight=3]; 605 -> 27[label="",style="dashed", color="red", weight=0]; 605[label="vwx302 == vwx402",fontsize=16,color="magenta"];605 -> 668[label="",style="dashed", color="magenta", weight=3]; 605 -> 669[label="",style="dashed", color="magenta", weight=3]; 606 -> 28[label="",style="dashed", color="red", weight=0]; 606[label="vwx302 == vwx402",fontsize=16,color="magenta"];606 -> 670[label="",style="dashed", color="magenta", weight=3]; 606 -> 671[label="",style="dashed", color="magenta", weight=3]; 607 -> 29[label="",style="dashed", color="red", weight=0]; 607[label="vwx302 == vwx402",fontsize=16,color="magenta"];607 -> 672[label="",style="dashed", color="magenta", weight=3]; 607 -> 673[label="",style="dashed", color="magenta", weight=3]; 608 -> 30[label="",style="dashed", color="red", weight=0]; 608[label="vwx302 == vwx402",fontsize=16,color="magenta"];608 -> 674[label="",style="dashed", color="magenta", weight=3]; 608 -> 675[label="",style="dashed", color="magenta", weight=3]; 609[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];609 -> 676[label="",style="solid", color="black", weight=3]; 610[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];610 -> 677[label="",style="solid", color="black", weight=3]; 611[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];611 -> 678[label="",style="solid", color="black", weight=3]; 612[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];612 -> 679[label="",style="solid", color="black", weight=3]; 1863[label="compare1 (vwx2200,vwx2201) vwx240 ((vwx2200,vwx2201) <= vwx240)",fontsize=16,color="burlywood",shape="box"];3182[label="vwx240/(vwx2400,vwx2401)",fontsize=10,color="white",style="solid",shape="box"];1863 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 1864[label="",style="solid", color="burlywood", weight=3]; 614[label="vwx4000",fontsize=16,color="green",shape="box"];615[label="vwx3000",fontsize=16,color="green",shape="box"];616[label="vwx4000",fontsize=16,color="green",shape="box"];617[label="vwx3000",fontsize=16,color="green",shape="box"];618[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];3183[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];618 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 682[label="",style="solid", color="burlywood", weight=3]; 3184[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];618 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 683[label="",style="solid", color="burlywood", weight=3]; 619[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];3185[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];619 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 684[label="",style="solid", color="burlywood", weight=3]; 3186[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];619 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 685[label="",style="solid", color="burlywood", weight=3]; 620[label="vwx301",fontsize=16,color="green",shape="box"];621[label="vwx401",fontsize=16,color="green",shape="box"];622[label="vwx301",fontsize=16,color="green",shape="box"];623[label="vwx401",fontsize=16,color="green",shape="box"];624[label="vwx301",fontsize=16,color="green",shape="box"];625[label="vwx401",fontsize=16,color="green",shape="box"];626[label="vwx301",fontsize=16,color="green",shape="box"];627[label="vwx401",fontsize=16,color="green",shape="box"];628[label="vwx301",fontsize=16,color="green",shape="box"];629[label="vwx401",fontsize=16,color="green",shape="box"];630[label="vwx301",fontsize=16,color="green",shape="box"];631[label="vwx401",fontsize=16,color="green",shape="box"];632[label="vwx301",fontsize=16,color="green",shape="box"];633[label="vwx401",fontsize=16,color="green",shape="box"];634[label="vwx301",fontsize=16,color="green",shape="box"];635[label="vwx401",fontsize=16,color="green",shape="box"];636[label="vwx301",fontsize=16,color="green",shape="box"];637[label="vwx401",fontsize=16,color="green",shape="box"];638[label="vwx301",fontsize=16,color="green",shape="box"];639[label="vwx401",fontsize=16,color="green",shape="box"];640[label="vwx301",fontsize=16,color="green",shape="box"];641[label="vwx401",fontsize=16,color="green",shape="box"];642[label="vwx301",fontsize=16,color="green",shape="box"];643[label="vwx401",fontsize=16,color="green",shape="box"];644[label="vwx301",fontsize=16,color="green",shape="box"];645[label="vwx401",fontsize=16,color="green",shape="box"];646[label="vwx301",fontsize=16,color="green",shape="box"];647[label="vwx401",fontsize=16,color="green",shape="box"];648[label="vwx302",fontsize=16,color="green",shape="box"];649[label="vwx402",fontsize=16,color="green",shape="box"];650[label="vwx302",fontsize=16,color="green",shape="box"];651[label="vwx402",fontsize=16,color="green",shape="box"];652[label="vwx302",fontsize=16,color="green",shape="box"];653[label="vwx402",fontsize=16,color="green",shape="box"];654[label="vwx302",fontsize=16,color="green",shape="box"];655[label="vwx402",fontsize=16,color="green",shape="box"];656[label="vwx302",fontsize=16,color="green",shape="box"];657[label="vwx402",fontsize=16,color="green",shape="box"];658[label="vwx302",fontsize=16,color="green",shape="box"];659[label="vwx402",fontsize=16,color="green",shape="box"];660[label="vwx302",fontsize=16,color="green",shape="box"];661[label="vwx402",fontsize=16,color="green",shape="box"];662[label="vwx302",fontsize=16,color="green",shape="box"];663[label="vwx402",fontsize=16,color="green",shape="box"];664[label="vwx302",fontsize=16,color="green",shape="box"];665[label="vwx402",fontsize=16,color="green",shape="box"];666[label="vwx302",fontsize=16,color="green",shape="box"];667[label="vwx402",fontsize=16,color="green",shape="box"];668[label="vwx302",fontsize=16,color="green",shape="box"];669[label="vwx402",fontsize=16,color="green",shape="box"];670[label="vwx302",fontsize=16,color="green",shape="box"];671[label="vwx402",fontsize=16,color="green",shape="box"];672[label="vwx302",fontsize=16,color="green",shape="box"];673[label="vwx402",fontsize=16,color="green",shape="box"];674[label="vwx302",fontsize=16,color="green",shape="box"];675[label="vwx402",fontsize=16,color="green",shape="box"];676 -> 206[label="",style="dashed", color="red", weight=0]; 676[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];676 -> 686[label="",style="dashed", color="magenta", weight=3]; 676 -> 687[label="",style="dashed", color="magenta", weight=3]; 677[label="False",fontsize=16,color="green",shape="box"];678[label="False",fontsize=16,color="green",shape="box"];679[label="True",fontsize=16,color="green",shape="box"];1864[label="compare1 (vwx2200,vwx2201) (vwx2400,vwx2401) ((vwx2200,vwx2201) <= (vwx2400,vwx2401))",fontsize=16,color="black",shape="box"];1864 -> 1865[label="",style="solid", color="black", weight=3]; 682[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];682 -> 721[label="",style="solid", color="black", weight=3]; 683[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];683 -> 722[label="",style="solid", color="black", weight=3]; 684[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];684 -> 723[label="",style="solid", color="black", weight=3]; 685[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];685 -> 724[label="",style="solid", color="black", weight=3]; 686[label="vwx4000",fontsize=16,color="green",shape="box"];687[label="vwx3000",fontsize=16,color="green",shape="box"];1865 -> 1870[label="",style="dashed", color="red", weight=0]; 1865[label="compare1 (vwx2200,vwx2201) (vwx2400,vwx2401) (vwx2200 < vwx2400 || vwx2200 == vwx2400 && vwx2201 <= vwx2401)",fontsize=16,color="magenta"];1865 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1865 -> 1876[label="",style="dashed", color="magenta", weight=3]; 721[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];721 -> 770[label="",style="dashed", color="green", weight=3]; 722[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];722 -> 771[label="",style="dashed", color="green", weight=3]; 723[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];723 -> 772[label="",style="dashed", color="green", weight=3]; 724[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];724 -> 773[label="",style="dashed", color="green", weight=3]; 1871[label="vwx2401",fontsize=16,color="green",shape="box"];1872[label="vwx2200",fontsize=16,color="green",shape="box"];1873[label="vwx2400",fontsize=16,color="green",shape="box"];1874[label="vwx2201",fontsize=16,color="green",shape="box"];1875[label="vwx2200 < vwx2400",fontsize=16,color="blue",shape="box"];3187[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1883[label="",style="solid", color="blue", weight=3]; 3188[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1884[label="",style="solid", color="blue", weight=3]; 3189[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1885[label="",style="solid", color="blue", weight=3]; 3190[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 1886[label="",style="solid", color="blue", weight=3]; 3191[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1887[label="",style="solid", color="blue", weight=3]; 3192[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1888[label="",style="solid", color="blue", weight=3]; 3193[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1889[label="",style="solid", color="blue", weight=3]; 3194[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1890[label="",style="solid", color="blue", weight=3]; 3195[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1891[label="",style="solid", color="blue", weight=3]; 3196[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1892[label="",style="solid", color="blue", weight=3]; 3197[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1893[label="",style="solid", color="blue", weight=3]; 3198[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1894[label="",style="solid", color="blue", weight=3]; 3199[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1895[label="",style="solid", color="blue", weight=3]; 3200[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1875 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1896[label="",style="solid", color="blue", weight=3]; 1876 -> 299[label="",style="dashed", color="red", weight=0]; 1876[label="vwx2200 == vwx2400 && vwx2201 <= vwx2401",fontsize=16,color="magenta"];1876 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1870[label="compare1 (vwx81,vwx82) (vwx83,vwx84) (vwx85 || vwx86)",fontsize=16,color="burlywood",shape="triangle"];3201[label="vwx85/False",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3201[label="",style="solid", color="burlywood", weight=9]; 3201 -> 1899[label="",style="solid", color="burlywood", weight=3]; 3202[label="vwx85/True",fontsize=10,color="white",style="solid",shape="box"];1870 -> 3202[label="",style="solid", color="burlywood", weight=9]; 3202 -> 1900[label="",style="solid", color="burlywood", weight=3]; 770[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];3203[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];770 -> 3203[label="",style="solid", color="burlywood", weight=9]; 3203 -> 850[label="",style="solid", color="burlywood", weight=3]; 3204[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];770 -> 3204[label="",style="solid", color="burlywood", weight=9]; 3204 -> 851[label="",style="solid", color="burlywood", weight=3]; 771 -> 770[label="",style="dashed", color="red", weight=0]; 771[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];771 -> 852[label="",style="dashed", color="magenta", weight=3]; 772 -> 770[label="",style="dashed", color="red", weight=0]; 772[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];772 -> 853[label="",style="dashed", color="magenta", weight=3]; 773 -> 770[label="",style="dashed", color="red", weight=0]; 773[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];773 -> 854[label="",style="dashed", color="magenta", weight=3]; 773 -> 855[label="",style="dashed", color="magenta", weight=3]; 1883[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1883 -> 1901[label="",style="solid", color="black", weight=3]; 1884[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1884 -> 1902[label="",style="solid", color="black", weight=3]; 1885[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1885 -> 1903[label="",style="solid", color="black", weight=3]; 1886[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1886 -> 1904[label="",style="solid", color="black", weight=3]; 1887[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1887 -> 1905[label="",style="solid", color="black", weight=3]; 1888 -> 4[label="",style="dashed", color="red", weight=0]; 1888[label="vwx2200 < vwx2400",fontsize=16,color="magenta"];1888 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1889[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1889 -> 1908[label="",style="solid", color="black", weight=3]; 1890[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1890 -> 1909[label="",style="solid", color="black", weight=3]; 1891[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1891 -> 1910[label="",style="solid", color="black", weight=3]; 1892[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1892 -> 1911[label="",style="solid", color="black", weight=3]; 1893[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1893 -> 1912[label="",style="solid", color="black", weight=3]; 1894[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1894 -> 1913[label="",style="solid", color="black", weight=3]; 1895[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1895 -> 1914[label="",style="solid", color="black", weight=3]; 1896[label="vwx2200 < vwx2400",fontsize=16,color="black",shape="triangle"];1896 -> 1915[label="",style="solid", color="black", weight=3]; 1897[label="vwx2200 == vwx2400",fontsize=16,color="blue",shape="box"];3205[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1916[label="",style="solid", color="blue", weight=3]; 3206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1917[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1918[label="",style="solid", color="blue", weight=3]; 3208[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1919[label="",style="solid", color="blue", weight=3]; 3209[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1920[label="",style="solid", color="blue", weight=3]; 3210[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1921[label="",style="solid", color="blue", weight=3]; 3211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1922[label="",style="solid", color="blue", weight=3]; 3212[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1923[label="",style="solid", color="blue", weight=3]; 3213[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1924[label="",style="solid", color="blue", weight=3]; 3214[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1925[label="",style="solid", color="blue", weight=3]; 3215[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1926[label="",style="solid", color="blue", weight=3]; 3216[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1927[label="",style="solid", color="blue", weight=3]; 3217[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1928[label="",style="solid", color="blue", weight=3]; 3218[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1929[label="",style="solid", color="blue", weight=3]; 1898[label="vwx2201 <= vwx2401",fontsize=16,color="blue",shape="box"];3219[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1930[label="",style="solid", color="blue", weight=3]; 3220[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1931[label="",style="solid", color="blue", weight=3]; 3221[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1932[label="",style="solid", color="blue", weight=3]; 3222[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 1933[label="",style="solid", color="blue", weight=3]; 3223[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 1934[label="",style="solid", color="blue", weight=3]; 3224[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 1935[label="",style="solid", color="blue", weight=3]; 3225[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 1936[label="",style="solid", color="blue", weight=3]; 3226[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 1937[label="",style="solid", color="blue", weight=3]; 3227[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 1938[label="",style="solid", color="blue", weight=3]; 3228[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 1939[label="",style="solid", color="blue", weight=3]; 3229[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 1940[label="",style="solid", color="blue", weight=3]; 3230[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3230[label="",style="solid", color="blue", weight=9]; 3230 -> 1941[label="",style="solid", color="blue", weight=3]; 3231[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3231[label="",style="solid", color="blue", weight=9]; 3231 -> 1942[label="",style="solid", color="blue", weight=3]; 3232[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3232[label="",style="solid", color="blue", weight=9]; 3232 -> 1943[label="",style="solid", color="blue", weight=3]; 1899[label="compare1 (vwx81,vwx82) (vwx83,vwx84) (False || vwx86)",fontsize=16,color="black",shape="box"];1899 -> 1944[label="",style="solid", color="black", weight=3]; 1900[label="compare1 (vwx81,vwx82) (vwx83,vwx84) (True || vwx86)",fontsize=16,color="black",shape="box"];1900 -> 1945[label="",style="solid", color="black", weight=3]; 850[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];3233[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];850 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 903[label="",style="solid", color="burlywood", weight=3]; 3234[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];850 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 904[label="",style="solid", color="burlywood", weight=3]; 851[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];3235[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];851 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 905[label="",style="solid", color="burlywood", weight=3]; 3236[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];851 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 906[label="",style="solid", color="burlywood", weight=3]; 852[label="vwx4010",fontsize=16,color="green",shape="box"];853[label="vwx3000",fontsize=16,color="green",shape="box"];854[label="vwx4010",fontsize=16,color="green",shape="box"];855[label="vwx3000",fontsize=16,color="green",shape="box"];1901 -> 22[label="",style="dashed", color="red", weight=0]; 1901[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1901 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1902 -> 22[label="",style="dashed", color="red", weight=0]; 1902[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1902 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1903 -> 22[label="",style="dashed", color="red", weight=0]; 1903[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1903 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1904 -> 22[label="",style="dashed", color="red", weight=0]; 1904[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1904 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1905 -> 22[label="",style="dashed", color="red", weight=0]; 1905[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1905 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1906[label="vwx2200",fontsize=16,color="green",shape="box"];1907[label="vwx2400",fontsize=16,color="green",shape="box"];1908 -> 22[label="",style="dashed", color="red", weight=0]; 1908[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1908 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1909 -> 22[label="",style="dashed", color="red", weight=0]; 1909[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1909 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1910 -> 22[label="",style="dashed", color="red", weight=0]; 1910[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1910 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1911 -> 22[label="",style="dashed", color="red", weight=0]; 1911[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1911 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1912 -> 22[label="",style="dashed", color="red", weight=0]; 1912[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1912 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1913 -> 22[label="",style="dashed", color="red", weight=0]; 1913[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1913 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1914 -> 22[label="",style="dashed", color="red", weight=0]; 1914[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1914 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1915 -> 22[label="",style="dashed", color="red", weight=0]; 1915[label="compare vwx2200 vwx2400 == LT",fontsize=16,color="magenta"];1915 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1915 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1916 -> 17[label="",style="dashed", color="red", weight=0]; 1916[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1916 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1916 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1917 -> 19[label="",style="dashed", color="red", weight=0]; 1917[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1917 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1917 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1918 -> 24[label="",style="dashed", color="red", weight=0]; 1918[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1918 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1919 -> 26[label="",style="dashed", color="red", weight=0]; 1919[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1919 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1919 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1920 -> 30[label="",style="dashed", color="red", weight=0]; 1920[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1920 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1921 -> 25[label="",style="dashed", color="red", weight=0]; 1921[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1921 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1922 -> 22[label="",style="dashed", color="red", weight=0]; 1922[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1922 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1922 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1923 -> 29[label="",style="dashed", color="red", weight=0]; 1923[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1923 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1923 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1924 -> 23[label="",style="dashed", color="red", weight=0]; 1924[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1924 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1925 -> 28[label="",style="dashed", color="red", weight=0]; 1925[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1925 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1926 -> 20[label="",style="dashed", color="red", weight=0]; 1926[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1926 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1927 -> 21[label="",style="dashed", color="red", weight=0]; 1927[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1927 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1928 -> 27[label="",style="dashed", color="red", weight=0]; 1928[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1928 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1928 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1929 -> 18[label="",style="dashed", color="red", weight=0]; 1929[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];1929 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1929 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1930[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1930 -> 2000[label="",style="solid", color="black", weight=3]; 1931[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3237[label="vwx2201/Left vwx22010",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 2001[label="",style="solid", color="burlywood", weight=3]; 3238[label="vwx2201/Right vwx22010",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 2002[label="",style="solid", color="burlywood", weight=3]; 1932[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3239[label="vwx2201/False",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 2003[label="",style="solid", color="burlywood", weight=3]; 3240[label="vwx2201/True",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 2004[label="",style="solid", color="burlywood", weight=3]; 1933[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1933 -> 2005[label="",style="solid", color="black", weight=3]; 1934[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1934 -> 2006[label="",style="solid", color="black", weight=3]; 1935[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3241[label="vwx2201/(vwx22010,vwx22011)",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 2007[label="",style="solid", color="burlywood", weight=3]; 1936[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3242[label="vwx2201/LT",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 2008[label="",style="solid", color="burlywood", weight=3]; 3243[label="vwx2201/EQ",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 2009[label="",style="solid", color="burlywood", weight=3]; 3244[label="vwx2201/GT",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 2010[label="",style="solid", color="burlywood", weight=3]; 1937[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1937 -> 2011[label="",style="solid", color="black", weight=3]; 1938[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1938 -> 2012[label="",style="solid", color="black", weight=3]; 1939[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3245[label="vwx2201/(vwx22010,vwx22011,vwx22012)",fontsize=10,color="white",style="solid",shape="box"];1939 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 2013[label="",style="solid", color="burlywood", weight=3]; 1940[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1940 -> 2014[label="",style="solid", color="black", weight=3]; 1941[label="vwx2201 <= vwx2401",fontsize=16,color="burlywood",shape="triangle"];3246[label="vwx2201/Nothing",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 2015[label="",style="solid", color="burlywood", weight=3]; 3247[label="vwx2201/Just vwx22010",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 2016[label="",style="solid", color="burlywood", weight=3]; 1942[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1942 -> 2017[label="",style="solid", color="black", weight=3]; 1943[label="vwx2201 <= vwx2401",fontsize=16,color="black",shape="triangle"];1943 -> 2018[label="",style="solid", color="black", weight=3]; 1944[label="compare1 (vwx81,vwx82) (vwx83,vwx84) vwx86",fontsize=16,color="burlywood",shape="triangle"];3248[label="vwx86/False",fontsize=10,color="white",style="solid",shape="box"];1944 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 2019[label="",style="solid", color="burlywood", weight=3]; 3249[label="vwx86/True",fontsize=10,color="white",style="solid",shape="box"];1944 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 2020[label="",style="solid", color="burlywood", weight=3]; 1945 -> 1944[label="",style="dashed", color="red", weight=0]; 1945[label="compare1 (vwx81,vwx82) (vwx83,vwx84) True",fontsize=16,color="magenta"];1945 -> 2021[label="",style="dashed", color="magenta", weight=3]; 903[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];903 -> 957[label="",style="solid", color="black", weight=3]; 904[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];904 -> 958[label="",style="solid", color="black", weight=3]; 905[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];905 -> 959[label="",style="solid", color="black", weight=3]; 906[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];906 -> 960[label="",style="solid", color="black", weight=3]; 1946[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1946 -> 2022[label="",style="solid", color="black", weight=3]; 1947[label="LT",fontsize=16,color="green",shape="box"];1948[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1948 -> 2023[label="",style="solid", color="black", weight=3]; 1949[label="LT",fontsize=16,color="green",shape="box"];1950[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1950 -> 2024[label="",style="solid", color="black", weight=3]; 1951[label="LT",fontsize=16,color="green",shape="box"];1952[label="compare vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];3250[label="vwx2200/()",fontsize=10,color="white",style="solid",shape="box"];1952 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 2025[label="",style="solid", color="burlywood", weight=3]; 1953[label="LT",fontsize=16,color="green",shape="box"];1954[label="compare vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];3251[label="vwx2200/Integer vwx22000",fontsize=10,color="white",style="solid",shape="box"];1954 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1955[label="LT",fontsize=16,color="green",shape="box"];1956[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1956 -> 2027[label="",style="solid", color="black", weight=3]; 1957[label="LT",fontsize=16,color="green",shape="box"];1958[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1958 -> 2028[label="",style="solid", color="black", weight=3]; 1959[label="LT",fontsize=16,color="green",shape="box"];1960[label="compare vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];3252[label="vwx2200/vwx22000 :% vwx22001",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 2029[label="",style="solid", color="burlywood", weight=3]; 1961[label="LT",fontsize=16,color="green",shape="box"];1962[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1962 -> 2030[label="",style="solid", color="black", weight=3]; 1963[label="LT",fontsize=16,color="green",shape="box"];1964[label="compare vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];3253[label="vwx2200/vwx22000 : vwx22001",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 2031[label="",style="solid", color="burlywood", weight=3]; 3254[label="vwx2200/[]",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 2032[label="",style="solid", color="burlywood", weight=3]; 1965[label="LT",fontsize=16,color="green",shape="box"];1966[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1966 -> 2033[label="",style="solid", color="black", weight=3]; 1967[label="LT",fontsize=16,color="green",shape="box"];1968[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1968 -> 2034[label="",style="solid", color="black", weight=3]; 1969[label="LT",fontsize=16,color="green",shape="box"];1970[label="compare vwx2200 vwx2400",fontsize=16,color="black",shape="triangle"];1970 -> 2035[label="",style="solid", color="black", weight=3]; 1971[label="LT",fontsize=16,color="green",shape="box"];1972[label="vwx2200",fontsize=16,color="green",shape="box"];1973[label="vwx2400",fontsize=16,color="green",shape="box"];1974[label="vwx2200",fontsize=16,color="green",shape="box"];1975[label="vwx2400",fontsize=16,color="green",shape="box"];1976[label="vwx2200",fontsize=16,color="green",shape="box"];1977[label="vwx2400",fontsize=16,color="green",shape="box"];1978[label="vwx2200",fontsize=16,color="green",shape="box"];1979[label="vwx2400",fontsize=16,color="green",shape="box"];1980[label="vwx2200",fontsize=16,color="green",shape="box"];1981[label="vwx2400",fontsize=16,color="green",shape="box"];1982[label="vwx2200",fontsize=16,color="green",shape="box"];1983[label="vwx2400",fontsize=16,color="green",shape="box"];1984[label="vwx2200",fontsize=16,color="green",shape="box"];1985[label="vwx2400",fontsize=16,color="green",shape="box"];1986[label="vwx2200",fontsize=16,color="green",shape="box"];1987[label="vwx2400",fontsize=16,color="green",shape="box"];1988[label="vwx2200",fontsize=16,color="green",shape="box"];1989[label="vwx2400",fontsize=16,color="green",shape="box"];1990[label="vwx2200",fontsize=16,color="green",shape="box"];1991[label="vwx2400",fontsize=16,color="green",shape="box"];1992[label="vwx2200",fontsize=16,color="green",shape="box"];1993[label="vwx2400",fontsize=16,color="green",shape="box"];1994[label="vwx2200",fontsize=16,color="green",shape="box"];1995[label="vwx2400",fontsize=16,color="green",shape="box"];1996[label="vwx2200",fontsize=16,color="green",shape="box"];1997[label="vwx2400",fontsize=16,color="green",shape="box"];1998[label="vwx2200",fontsize=16,color="green",shape="box"];1999[label="vwx2400",fontsize=16,color="green",shape="box"];2000 -> 2036[label="",style="dashed", color="red", weight=0]; 2000[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2000 -> 2037[label="",style="dashed", color="magenta", weight=3]; 2001[label="Left vwx22010 <= vwx2401",fontsize=16,color="burlywood",shape="box"];3255[label="vwx2401/Left vwx24010",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 2045[label="",style="solid", color="burlywood", weight=3]; 3256[label="vwx2401/Right vwx24010",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 2046[label="",style="solid", color="burlywood", weight=3]; 2002[label="Right vwx22010 <= vwx2401",fontsize=16,color="burlywood",shape="box"];3257[label="vwx2401/Left vwx24010",fontsize=10,color="white",style="solid",shape="box"];2002 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 2047[label="",style="solid", color="burlywood", weight=3]; 3258[label="vwx2401/Right vwx24010",fontsize=10,color="white",style="solid",shape="box"];2002 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 2048[label="",style="solid", color="burlywood", weight=3]; 2003[label="False <= vwx2401",fontsize=16,color="burlywood",shape="box"];3259[label="vwx2401/False",fontsize=10,color="white",style="solid",shape="box"];2003 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 2049[label="",style="solid", color="burlywood", weight=3]; 3260[label="vwx2401/True",fontsize=10,color="white",style="solid",shape="box"];2003 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 2050[label="",style="solid", color="burlywood", weight=3]; 2004[label="True <= vwx2401",fontsize=16,color="burlywood",shape="box"];3261[label="vwx2401/False",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 2051[label="",style="solid", color="burlywood", weight=3]; 3262[label="vwx2401/True",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 2052[label="",style="solid", color="burlywood", weight=3]; 2005 -> 2036[label="",style="dashed", color="red", weight=0]; 2005[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2005 -> 2038[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2036[label="",style="dashed", color="red", weight=0]; 2006[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2006 -> 2039[label="",style="dashed", color="magenta", weight=3]; 2007[label="(vwx22010,vwx22011) <= vwx2401",fontsize=16,color="burlywood",shape="box"];3263[label="vwx2401/(vwx24010,vwx24011)",fontsize=10,color="white",style="solid",shape="box"];2007 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 2053[label="",style="solid", color="burlywood", weight=3]; 2008[label="LT <= vwx2401",fontsize=16,color="burlywood",shape="box"];3264[label="vwx2401/LT",fontsize=10,color="white",style="solid",shape="box"];2008 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 2054[label="",style="solid", color="burlywood", weight=3]; 3265[label="vwx2401/EQ",fontsize=10,color="white",style="solid",shape="box"];2008 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 2055[label="",style="solid", color="burlywood", weight=3]; 3266[label="vwx2401/GT",fontsize=10,color="white",style="solid",shape="box"];2008 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 2056[label="",style="solid", color="burlywood", weight=3]; 2009[label="EQ <= vwx2401",fontsize=16,color="burlywood",shape="box"];3267[label="vwx2401/LT",fontsize=10,color="white",style="solid",shape="box"];2009 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 2057[label="",style="solid", color="burlywood", weight=3]; 3268[label="vwx2401/EQ",fontsize=10,color="white",style="solid",shape="box"];2009 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 2058[label="",style="solid", color="burlywood", weight=3]; 3269[label="vwx2401/GT",fontsize=10,color="white",style="solid",shape="box"];2009 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 2059[label="",style="solid", color="burlywood", weight=3]; 2010[label="GT <= vwx2401",fontsize=16,color="burlywood",shape="box"];3270[label="vwx2401/LT",fontsize=10,color="white",style="solid",shape="box"];2010 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 2060[label="",style="solid", color="burlywood", weight=3]; 3271[label="vwx2401/EQ",fontsize=10,color="white",style="solid",shape="box"];2010 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 2061[label="",style="solid", color="burlywood", weight=3]; 3272[label="vwx2401/GT",fontsize=10,color="white",style="solid",shape="box"];2010 -> 3272[label="",style="solid", color="burlywood", weight=9]; 3272 -> 2062[label="",style="solid", color="burlywood", weight=3]; 2011 -> 2036[label="",style="dashed", color="red", weight=0]; 2011[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2011 -> 2040[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2036[label="",style="dashed", color="red", weight=0]; 2012[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2012 -> 2041[label="",style="dashed", color="magenta", weight=3]; 2013[label="(vwx22010,vwx22011,vwx22012) <= vwx2401",fontsize=16,color="burlywood",shape="box"];3273[label="vwx2401/(vwx24010,vwx24011,vwx24012)",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 2063[label="",style="solid", color="burlywood", weight=3]; 2014 -> 2036[label="",style="dashed", color="red", weight=0]; 2014[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2014 -> 2042[label="",style="dashed", color="magenta", weight=3]; 2015[label="Nothing <= vwx2401",fontsize=16,color="burlywood",shape="box"];3274[label="vwx2401/Nothing",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 2064[label="",style="solid", color="burlywood", weight=3]; 3275[label="vwx2401/Just vwx24010",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 2065[label="",style="solid", color="burlywood", weight=3]; 2016[label="Just vwx22010 <= vwx2401",fontsize=16,color="burlywood",shape="box"];3276[label="vwx2401/Nothing",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 2066[label="",style="solid", color="burlywood", weight=3]; 3277[label="vwx2401/Just vwx24010",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 2067[label="",style="solid", color="burlywood", weight=3]; 2017 -> 2036[label="",style="dashed", color="red", weight=0]; 2017[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2017 -> 2043[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2036[label="",style="dashed", color="red", weight=0]; 2018[label="compare vwx2201 vwx2401 /= GT",fontsize=16,color="magenta"];2018 -> 2044[label="",style="dashed", color="magenta", weight=3]; 2019[label="compare1 (vwx81,vwx82) (vwx83,vwx84) False",fontsize=16,color="black",shape="box"];2019 -> 2068[label="",style="solid", color="black", weight=3]; 2020[label="compare1 (vwx81,vwx82) (vwx83,vwx84) True",fontsize=16,color="black",shape="box"];2020 -> 2069[label="",style="solid", color="black", weight=3]; 2021[label="True",fontsize=16,color="green",shape="box"];957 -> 1053[label="",style="dashed", color="red", weight=0]; 957[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];957 -> 1054[label="",style="dashed", color="magenta", weight=3]; 958[label="Zero",fontsize=16,color="green",shape="box"];959[label="Zero",fontsize=16,color="green",shape="box"];960[label="Zero",fontsize=16,color="green",shape="box"];2022[label="primCmpInt vwx2200 vwx2400",fontsize=16,color="burlywood",shape="triangle"];3278[label="vwx2200/Pos vwx22000",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 2070[label="",style="solid", color="burlywood", weight=3]; 3279[label="vwx2200/Neg vwx22000",fontsize=10,color="white",style="solid",shape="box"];2022 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 2071[label="",style="solid", color="burlywood", weight=3]; 2023[label="compare3 vwx2200 vwx2400",fontsize=16,color="black",shape="box"];2023 -> 2072[label="",style="solid", color="black", weight=3]; 2024[label="compare3 vwx2200 vwx2400",fontsize=16,color="black",shape="box"];2024 -> 2073[label="",style="solid", color="black", weight=3]; 2025[label="compare () vwx2400",fontsize=16,color="burlywood",shape="box"];3280[label="vwx2400/()",fontsize=10,color="white",style="solid",shape="box"];2025 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 2074[label="",style="solid", color="burlywood", weight=3]; 2026[label="compare (Integer vwx22000) vwx2400",fontsize=16,color="burlywood",shape="box"];3281[label="vwx2400/Integer vwx24000",fontsize=10,color="white",style="solid",shape="box"];2026 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 2075[label="",style="solid", color="burlywood", weight=3]; 2027[label="compare3 vwx2200 vwx2400",fontsize=16,color="black",shape="box"];2027 -> 2076[label="",style="solid", color="black", weight=3]; 2028[label="primCmpChar vwx2200 vwx2400",fontsize=16,color="burlywood",shape="box"];3282[label="vwx2200/Char vwx22000",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 2077[label="",style="solid", color="burlywood", weight=3]; 2029[label="compare (vwx22000 :% vwx22001) vwx2400",fontsize=16,color="burlywood",shape="box"];3283[label="vwx2400/vwx24000 :% vwx24001",fontsize=10,color="white",style="solid",shape="box"];2029 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 2078[label="",style="solid", color="burlywood", weight=3]; 2030[label="compare3 vwx2200 vwx2400",fontsize=16,color="black",shape="box"];2030 -> 2079[label="",style="solid", color="black", weight=3]; 2031[label="compare (vwx22000 : vwx22001) vwx2400",fontsize=16,color="burlywood",shape="box"];3284[label="vwx2400/vwx24000 : vwx24001",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 2080[label="",style="solid", color="burlywood", weight=3]; 3285[label="vwx2400/[]",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 2081[label="",style="solid", color="burlywood", weight=3]; 2032[label="compare [] vwx2400",fontsize=16,color="burlywood",shape="box"];3286[label="vwx2400/vwx24000 : vwx24001",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 2082[label="",style="solid", color="burlywood", weight=3]; 3287[label="vwx2400/[]",fontsize=10,color="white",style="solid",shape="box"];2032 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 2083[label="",style="solid", color="burlywood", weight=3]; 2033[label="compare3 vwx2200 vwx2400",fontsize=16,color="black",shape="box"];2033 -> 2084[label="",style="solid", color="black", weight=3]; 2034[label="primCmpDouble vwx2200 vwx2400",fontsize=16,color="burlywood",shape="box"];3288[label="vwx2200/Double vwx22000 vwx22001",fontsize=10,color="white",style="solid",shape="box"];2034 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 2085[label="",style="solid", color="burlywood", weight=3]; 2035[label="primCmpFloat vwx2200 vwx2400",fontsize=16,color="burlywood",shape="box"];3289[label="vwx2200/Float vwx22000 vwx22001",fontsize=10,color="white",style="solid",shape="box"];2035 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 2086[label="",style="solid", color="burlywood", weight=3]; 2037 -> 1946[label="",style="dashed", color="red", weight=0]; 2037[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2037 -> 2087[label="",style="dashed", color="magenta", weight=3]; 2037 -> 2088[label="",style="dashed", color="magenta", weight=3]; 2036[label="vwx87 /= GT",fontsize=16,color="black",shape="triangle"];2036 -> 2089[label="",style="solid", color="black", weight=3]; 2045[label="Left vwx22010 <= Left vwx24010",fontsize=16,color="black",shape="box"];2045 -> 2104[label="",style="solid", color="black", weight=3]; 2046[label="Left vwx22010 <= Right vwx24010",fontsize=16,color="black",shape="box"];2046 -> 2105[label="",style="solid", color="black", weight=3]; 2047[label="Right vwx22010 <= Left vwx24010",fontsize=16,color="black",shape="box"];2047 -> 2106[label="",style="solid", color="black", weight=3]; 2048[label="Right vwx22010 <= Right vwx24010",fontsize=16,color="black",shape="box"];2048 -> 2107[label="",style="solid", color="black", weight=3]; 2049[label="False <= False",fontsize=16,color="black",shape="box"];2049 -> 2108[label="",style="solid", color="black", weight=3]; 2050[label="False <= True",fontsize=16,color="black",shape="box"];2050 -> 2109[label="",style="solid", color="black", weight=3]; 2051[label="True <= False",fontsize=16,color="black",shape="box"];2051 -> 2110[label="",style="solid", color="black", weight=3]; 2052[label="True <= True",fontsize=16,color="black",shape="box"];2052 -> 2111[label="",style="solid", color="black", weight=3]; 2038 -> 1952[label="",style="dashed", color="red", weight=0]; 2038[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2038 -> 2090[label="",style="dashed", color="magenta", weight=3]; 2038 -> 2091[label="",style="dashed", color="magenta", weight=3]; 2039 -> 1954[label="",style="dashed", color="red", weight=0]; 2039[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2039 -> 2092[label="",style="dashed", color="magenta", weight=3]; 2039 -> 2093[label="",style="dashed", color="magenta", weight=3]; 2053[label="(vwx22010,vwx22011) <= (vwx24010,vwx24011)",fontsize=16,color="black",shape="box"];2053 -> 2112[label="",style="solid", color="black", weight=3]; 2054[label="LT <= LT",fontsize=16,color="black",shape="box"];2054 -> 2113[label="",style="solid", color="black", weight=3]; 2055[label="LT <= EQ",fontsize=16,color="black",shape="box"];2055 -> 2114[label="",style="solid", color="black", weight=3]; 2056[label="LT <= GT",fontsize=16,color="black",shape="box"];2056 -> 2115[label="",style="solid", color="black", weight=3]; 2057[label="EQ <= LT",fontsize=16,color="black",shape="box"];2057 -> 2116[label="",style="solid", color="black", weight=3]; 2058[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2058 -> 2117[label="",style="solid", color="black", weight=3]; 2059[label="EQ <= GT",fontsize=16,color="black",shape="box"];2059 -> 2118[label="",style="solid", color="black", weight=3]; 2060[label="GT <= LT",fontsize=16,color="black",shape="box"];2060 -> 2119[label="",style="solid", color="black", weight=3]; 2061[label="GT <= EQ",fontsize=16,color="black",shape="box"];2061 -> 2120[label="",style="solid", color="black", weight=3]; 2062[label="GT <= GT",fontsize=16,color="black",shape="box"];2062 -> 2121[label="",style="solid", color="black", weight=3]; 2040 -> 1958[label="",style="dashed", color="red", weight=0]; 2040[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2040 -> 2094[label="",style="dashed", color="magenta", weight=3]; 2040 -> 2095[label="",style="dashed", color="magenta", weight=3]; 2041 -> 1960[label="",style="dashed", color="red", weight=0]; 2041[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2041 -> 2096[label="",style="dashed", color="magenta", weight=3]; 2041 -> 2097[label="",style="dashed", color="magenta", weight=3]; 2063[label="(vwx22010,vwx22011,vwx22012) <= (vwx24010,vwx24011,vwx24012)",fontsize=16,color="black",shape="box"];2063 -> 2122[label="",style="solid", color="black", weight=3]; 2042 -> 1964[label="",style="dashed", color="red", weight=0]; 2042[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2042 -> 2098[label="",style="dashed", color="magenta", weight=3]; 2042 -> 2099[label="",style="dashed", color="magenta", weight=3]; 2064[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2064 -> 2123[label="",style="solid", color="black", weight=3]; 2065[label="Nothing <= Just vwx24010",fontsize=16,color="black",shape="box"];2065 -> 2124[label="",style="solid", color="black", weight=3]; 2066[label="Just vwx22010 <= Nothing",fontsize=16,color="black",shape="box"];2066 -> 2125[label="",style="solid", color="black", weight=3]; 2067[label="Just vwx22010 <= Just vwx24010",fontsize=16,color="black",shape="box"];2067 -> 2126[label="",style="solid", color="black", weight=3]; 2043 -> 1968[label="",style="dashed", color="red", weight=0]; 2043[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2043 -> 2100[label="",style="dashed", color="magenta", weight=3]; 2043 -> 2101[label="",style="dashed", color="magenta", weight=3]; 2044 -> 1970[label="",style="dashed", color="red", weight=0]; 2044[label="compare vwx2201 vwx2401",fontsize=16,color="magenta"];2044 -> 2102[label="",style="dashed", color="magenta", weight=3]; 2044 -> 2103[label="",style="dashed", color="magenta", weight=3]; 2068[label="compare0 (vwx81,vwx82) (vwx83,vwx84) otherwise",fontsize=16,color="black",shape="box"];2068 -> 2127[label="",style="solid", color="black", weight=3]; 2069[label="LT",fontsize=16,color="green",shape="box"];1054 -> 770[label="",style="dashed", color="red", weight=0]; 1054[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1054 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1054 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1053[label="primPlusNat vwx55 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];3290[label="vwx55/Succ vwx550",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 1241[label="",style="solid", color="burlywood", weight=3]; 3291[label="vwx55/Zero",fontsize=10,color="white",style="solid",shape="box"];1053 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 1242[label="",style="solid", color="burlywood", weight=3]; 2070[label="primCmpInt (Pos vwx22000) vwx2400",fontsize=16,color="burlywood",shape="box"];3292[label="vwx22000/Succ vwx220000",fontsize=10,color="white",style="solid",shape="box"];2070 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 2128[label="",style="solid", color="burlywood", weight=3]; 3293[label="vwx22000/Zero",fontsize=10,color="white",style="solid",shape="box"];2070 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 2129[label="",style="solid", color="burlywood", weight=3]; 2071[label="primCmpInt (Neg vwx22000) vwx2400",fontsize=16,color="burlywood",shape="box"];3294[label="vwx22000/Succ vwx220000",fontsize=10,color="white",style="solid",shape="box"];2071 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 2130[label="",style="solid", color="burlywood", weight=3]; 3295[label="vwx22000/Zero",fontsize=10,color="white",style="solid",shape="box"];2071 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 2131[label="",style="solid", color="burlywood", weight=3]; 2072 -> 2132[label="",style="dashed", color="red", weight=0]; 2072[label="compare2 vwx2200 vwx2400 (vwx2200 == vwx2400)",fontsize=16,color="magenta"];2072 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2134[label="",style="dashed", color="red", weight=0]; 2073[label="compare2 vwx2200 vwx2400 (vwx2200 == vwx2400)",fontsize=16,color="magenta"];2073 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2074[label="compare () ()",fontsize=16,color="black",shape="box"];2074 -> 2136[label="",style="solid", color="black", weight=3]; 2075[label="compare (Integer vwx22000) (Integer vwx24000)",fontsize=16,color="black",shape="box"];2075 -> 2137[label="",style="solid", color="black", weight=3]; 2076 -> 2138[label="",style="dashed", color="red", weight=0]; 2076[label="compare2 vwx2200 vwx2400 (vwx2200 == vwx2400)",fontsize=16,color="magenta"];2076 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2077[label="primCmpChar (Char vwx22000) vwx2400",fontsize=16,color="burlywood",shape="box"];3296[label="vwx2400/Char vwx24000",fontsize=10,color="white",style="solid",shape="box"];2077 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 2140[label="",style="solid", color="burlywood", weight=3]; 2078[label="compare (vwx22000 :% vwx22001) (vwx24000 :% vwx24001)",fontsize=16,color="black",shape="box"];2078 -> 2141[label="",style="solid", color="black", weight=3]; 2079 -> 2142[label="",style="dashed", color="red", weight=0]; 2079[label="compare2 vwx2200 vwx2400 (vwx2200 == vwx2400)",fontsize=16,color="magenta"];2079 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2080[label="compare (vwx22000 : vwx22001) (vwx24000 : vwx24001)",fontsize=16,color="black",shape="box"];2080 -> 2144[label="",style="solid", color="black", weight=3]; 2081[label="compare (vwx22000 : vwx22001) []",fontsize=16,color="black",shape="box"];2081 -> 2145[label="",style="solid", color="black", weight=3]; 2082[label="compare [] (vwx24000 : vwx24001)",fontsize=16,color="black",shape="box"];2082 -> 2146[label="",style="solid", color="black", weight=3]; 2083[label="compare [] []",fontsize=16,color="black",shape="box"];2083 -> 2147[label="",style="solid", color="black", weight=3]; 2084 -> 2148[label="",style="dashed", color="red", weight=0]; 2084[label="compare2 vwx2200 vwx2400 (vwx2200 == vwx2400)",fontsize=16,color="magenta"];2084 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2085[label="primCmpDouble (Double vwx22000 vwx22001) vwx2400",fontsize=16,color="burlywood",shape="box"];3297[label="vwx22001/Pos vwx220010",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3297[label="",style="solid", color="burlywood", weight=9]; 3297 -> 2150[label="",style="solid", color="burlywood", weight=3]; 3298[label="vwx22001/Neg vwx220010",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3298[label="",style="solid", color="burlywood", weight=9]; 3298 -> 2151[label="",style="solid", color="burlywood", weight=3]; 2086[label="primCmpFloat (Float vwx22000 vwx22001) vwx2400",fontsize=16,color="burlywood",shape="box"];3299[label="vwx22001/Pos vwx220010",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3299[label="",style="solid", color="burlywood", weight=9]; 3299 -> 2152[label="",style="solid", color="burlywood", weight=3]; 3300[label="vwx22001/Neg vwx220010",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3300[label="",style="solid", color="burlywood", weight=9]; 3300 -> 2153[label="",style="solid", color="burlywood", weight=3]; 2087[label="vwx2201",fontsize=16,color="green",shape="box"];2088[label="vwx2401",fontsize=16,color="green",shape="box"];2089 -> 2154[label="",style="dashed", color="red", weight=0]; 2089[label="not (vwx87 == GT)",fontsize=16,color="magenta"];2089 -> 2155[label="",style="dashed", color="magenta", weight=3]; 2104[label="vwx22010 <= vwx24010",fontsize=16,color="blue",shape="box"];3301[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 2156[label="",style="solid", color="blue", weight=3]; 3302[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 2157[label="",style="solid", color="blue", weight=3]; 3303[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 2158[label="",style="solid", color="blue", weight=3]; 3304[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 2159[label="",style="solid", color="blue", weight=3]; 3305[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 2160[label="",style="solid", color="blue", weight=3]; 3306[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 2161[label="",style="solid", color="blue", weight=3]; 3307[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 2162[label="",style="solid", color="blue", weight=3]; 3308[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 2163[label="",style="solid", color="blue", weight=3]; 3309[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 2164[label="",style="solid", color="blue", weight=3]; 3310[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 2165[label="",style="solid", color="blue", weight=3]; 3311[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 2166[label="",style="solid", color="blue", weight=3]; 3312[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 2167[label="",style="solid", color="blue", weight=3]; 3313[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 2168[label="",style="solid", color="blue", weight=3]; 3314[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 2169[label="",style="solid", color="blue", weight=3]; 2105[label="True",fontsize=16,color="green",shape="box"];2106[label="False",fontsize=16,color="green",shape="box"];2107[label="vwx22010 <= vwx24010",fontsize=16,color="blue",shape="box"];3315[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 2170[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 2171[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 2172[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 2173[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 2174[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 2175[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 2176[label="",style="solid", color="blue", weight=3]; 3322[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 2177[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2178[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2179[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2180[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2181[label="",style="solid", color="blue", weight=3]; 3327[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2182[label="",style="solid", color="blue", weight=3]; 3328[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2183[label="",style="solid", color="blue", weight=3]; 2108[label="True",fontsize=16,color="green",shape="box"];2109[label="True",fontsize=16,color="green",shape="box"];2110[label="False",fontsize=16,color="green",shape="box"];2111[label="True",fontsize=16,color="green",shape="box"];2090[label="vwx2201",fontsize=16,color="green",shape="box"];2091[label="vwx2401",fontsize=16,color="green",shape="box"];2092[label="vwx2201",fontsize=16,color="green",shape="box"];2093[label="vwx2401",fontsize=16,color="green",shape="box"];2112 -> 2305[label="",style="dashed", color="red", weight=0]; 2112[label="vwx22010 < vwx24010 || vwx22010 == vwx24010 && vwx22011 <= vwx24011",fontsize=16,color="magenta"];2112 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2113[label="True",fontsize=16,color="green",shape="box"];2114[label="True",fontsize=16,color="green",shape="box"];2115[label="True",fontsize=16,color="green",shape="box"];2116[label="False",fontsize=16,color="green",shape="box"];2117[label="True",fontsize=16,color="green",shape="box"];2118[label="True",fontsize=16,color="green",shape="box"];2119[label="False",fontsize=16,color="green",shape="box"];2120[label="False",fontsize=16,color="green",shape="box"];2121[label="True",fontsize=16,color="green",shape="box"];2094[label="vwx2201",fontsize=16,color="green",shape="box"];2095[label="vwx2401",fontsize=16,color="green",shape="box"];2096[label="vwx2201",fontsize=16,color="green",shape="box"];2097[label="vwx2401",fontsize=16,color="green",shape="box"];2122 -> 2305[label="",style="dashed", color="red", weight=0]; 2122[label="vwx22010 < vwx24010 || vwx22010 == vwx24010 && (vwx22011 < vwx24011 || vwx22011 == vwx24011 && vwx22012 <= vwx24012)",fontsize=16,color="magenta"];2122 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2098[label="vwx2201",fontsize=16,color="green",shape="box"];2099[label="vwx2401",fontsize=16,color="green",shape="box"];2123[label="True",fontsize=16,color="green",shape="box"];2124[label="True",fontsize=16,color="green",shape="box"];2125[label="False",fontsize=16,color="green",shape="box"];2126[label="vwx22010 <= vwx24010",fontsize=16,color="blue",shape="box"];3329[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2189[label="",style="solid", color="blue", weight=3]; 3330[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2190[label="",style="solid", color="blue", weight=3]; 3331[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2191[label="",style="solid", color="blue", weight=3]; 3332[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2192[label="",style="solid", color="blue", weight=3]; 3333[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2193[label="",style="solid", color="blue", weight=3]; 3334[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2194[label="",style="solid", color="blue", weight=3]; 3335[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2195[label="",style="solid", color="blue", weight=3]; 3336[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 2196[label="",style="solid", color="blue", weight=3]; 3337[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 2197[label="",style="solid", color="blue", weight=3]; 3338[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2198[label="",style="solid", color="blue", weight=3]; 3339[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2199[label="",style="solid", color="blue", weight=3]; 3340[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2200[label="",style="solid", color="blue", weight=3]; 3341[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 2201[label="",style="solid", color="blue", weight=3]; 3342[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 2202[label="",style="solid", color="blue", weight=3]; 2100[label="vwx2201",fontsize=16,color="green",shape="box"];2101[label="vwx2401",fontsize=16,color="green",shape="box"];2102[label="vwx2201",fontsize=16,color="green",shape="box"];2103[label="vwx2401",fontsize=16,color="green",shape="box"];2127[label="compare0 (vwx81,vwx82) (vwx83,vwx84) True",fontsize=16,color="black",shape="box"];2127 -> 2203[label="",style="solid", color="black", weight=3]; 1239[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1240[label="vwx30000",fontsize=16,color="green",shape="box"];1241[label="primPlusNat (Succ vwx550) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1241 -> 1384[label="",style="solid", color="black", weight=3]; 1242[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1242 -> 1385[label="",style="solid", color="black", weight=3]; 2128[label="primCmpInt (Pos (Succ vwx220000)) vwx2400",fontsize=16,color="burlywood",shape="box"];3343[label="vwx2400/Pos vwx24000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3343[label="",style="solid", color="burlywood", weight=9]; 3343 -> 2204[label="",style="solid", color="burlywood", weight=3]; 3344[label="vwx2400/Neg vwx24000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3344[label="",style="solid", color="burlywood", weight=9]; 3344 -> 2205[label="",style="solid", color="burlywood", weight=3]; 2129[label="primCmpInt (Pos Zero) vwx2400",fontsize=16,color="burlywood",shape="box"];3345[label="vwx2400/Pos vwx24000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 3345[label="",style="solid", color="burlywood", weight=9]; 3345 -> 2206[label="",style="solid", color="burlywood", weight=3]; 3346[label="vwx2400/Neg vwx24000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 2207[label="",style="solid", color="burlywood", weight=3]; 2130[label="primCmpInt (Neg (Succ vwx220000)) vwx2400",fontsize=16,color="burlywood",shape="box"];3347[label="vwx2400/Pos vwx24000",fontsize=10,color="white",style="solid",shape="box"];2130 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 2208[label="",style="solid", color="burlywood", weight=3]; 3348[label="vwx2400/Neg vwx24000",fontsize=10,color="white",style="solid",shape="box"];2130 -> 3348[label="",style="solid", color="burlywood", weight=9]; 3348 -> 2209[label="",style="solid", color="burlywood", weight=3]; 2131[label="primCmpInt (Neg Zero) vwx2400",fontsize=16,color="burlywood",shape="box"];3349[label="vwx2400/Pos vwx24000",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3349[label="",style="solid", color="burlywood", weight=9]; 3349 -> 2210[label="",style="solid", color="burlywood", weight=3]; 3350[label="vwx2400/Neg vwx24000",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3350[label="",style="solid", color="burlywood", weight=9]; 3350 -> 2211[label="",style="solid", color="burlywood", weight=3]; 2133 -> 19[label="",style="dashed", color="red", weight=0]; 2133[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];2133 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2132[label="compare2 vwx2200 vwx2400 vwx88",fontsize=16,color="burlywood",shape="triangle"];3351[label="vwx88/False",fontsize=10,color="white",style="solid",shape="box"];2132 -> 3351[label="",style="solid", color="burlywood", weight=9]; 3351 -> 2214[label="",style="solid", color="burlywood", weight=3]; 3352[label="vwx88/True",fontsize=10,color="white",style="solid",shape="box"];2132 -> 3352[label="",style="solid", color="burlywood", weight=9]; 3352 -> 2215[label="",style="solid", color="burlywood", weight=3]; 2135 -> 24[label="",style="dashed", color="red", weight=0]; 2135[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];2135 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2134[label="compare2 vwx2200 vwx2400 vwx89",fontsize=16,color="burlywood",shape="triangle"];3353[label="vwx89/False",fontsize=10,color="white",style="solid",shape="box"];2134 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 2218[label="",style="solid", color="burlywood", weight=3]; 3354[label="vwx89/True",fontsize=10,color="white",style="solid",shape="box"];2134 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 2219[label="",style="solid", color="burlywood", weight=3]; 2136[label="EQ",fontsize=16,color="green",shape="box"];2137 -> 2022[label="",style="dashed", color="red", weight=0]; 2137[label="primCmpInt vwx22000 vwx24000",fontsize=16,color="magenta"];2137 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2139 -> 22[label="",style="dashed", color="red", weight=0]; 2139[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];2139 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2138[label="compare2 vwx2200 vwx2400 vwx90",fontsize=16,color="burlywood",shape="triangle"];3355[label="vwx90/False",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3355[label="",style="solid", color="burlywood", weight=9]; 3355 -> 2224[label="",style="solid", color="burlywood", weight=3]; 3356[label="vwx90/True",fontsize=10,color="white",style="solid",shape="box"];2138 -> 3356[label="",style="solid", color="burlywood", weight=9]; 3356 -> 2225[label="",style="solid", color="burlywood", weight=3]; 2140[label="primCmpChar (Char vwx22000) (Char vwx24000)",fontsize=16,color="black",shape="box"];2140 -> 2226[label="",style="solid", color="black", weight=3]; 2141[label="compare (vwx22000 * vwx24001) (vwx24000 * vwx22001)",fontsize=16,color="blue",shape="box"];3357[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 2227[label="",style="solid", color="blue", weight=3]; 3358[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2141 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 2228[label="",style="solid", color="blue", weight=3]; 2143 -> 28[label="",style="dashed", color="red", weight=0]; 2143[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];2143 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2142[label="compare2 vwx2200 vwx2400 vwx91",fontsize=16,color="burlywood",shape="triangle"];3359[label="vwx91/False",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3359[label="",style="solid", color="burlywood", weight=9]; 3359 -> 2231[label="",style="solid", color="burlywood", weight=3]; 3360[label="vwx91/True",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3360[label="",style="solid", color="burlywood", weight=9]; 3360 -> 2232[label="",style="solid", color="burlywood", weight=3]; 2144 -> 2233[label="",style="dashed", color="red", weight=0]; 2144[label="primCompAux vwx22000 vwx24000 (compare vwx22001 vwx24001)",fontsize=16,color="magenta"];2144 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2145[label="GT",fontsize=16,color="green",shape="box"];2146[label="LT",fontsize=16,color="green",shape="box"];2147[label="EQ",fontsize=16,color="green",shape="box"];2149 -> 21[label="",style="dashed", color="red", weight=0]; 2149[label="vwx2200 == vwx2400",fontsize=16,color="magenta"];2149 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2148[label="compare2 vwx2200 vwx2400 vwx92",fontsize=16,color="burlywood",shape="triangle"];3361[label="vwx92/False",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3361[label="",style="solid", color="burlywood", weight=9]; 3361 -> 2237[label="",style="solid", color="burlywood", weight=3]; 3362[label="vwx92/True",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3362[label="",style="solid", color="burlywood", weight=9]; 3362 -> 2238[label="",style="solid", color="burlywood", weight=3]; 2150[label="primCmpDouble (Double vwx22000 (Pos vwx220010)) vwx2400",fontsize=16,color="burlywood",shape="box"];3363[label="vwx2400/Double vwx24000 vwx24001",fontsize=10,color="white",style="solid",shape="box"];2150 -> 3363[label="",style="solid", color="burlywood", weight=9]; 3363 -> 2239[label="",style="solid", color="burlywood", weight=3]; 2151[label="primCmpDouble (Double vwx22000 (Neg vwx220010)) vwx2400",fontsize=16,color="burlywood",shape="box"];3364[label="vwx2400/Double vwx24000 vwx24001",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3364[label="",style="solid", color="burlywood", weight=9]; 3364 -> 2240[label="",style="solid", color="burlywood", weight=3]; 2152[label="primCmpFloat (Float vwx22000 (Pos vwx220010)) vwx2400",fontsize=16,color="burlywood",shape="box"];3365[label="vwx2400/Float vwx24000 vwx24001",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3365[label="",style="solid", color="burlywood", weight=9]; 3365 -> 2241[label="",style="solid", color="burlywood", weight=3]; 2153[label="primCmpFloat (Float vwx22000 (Neg vwx220010)) vwx2400",fontsize=16,color="burlywood",shape="box"];3366[label="vwx2400/Float vwx24000 vwx24001",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 2242[label="",style="solid", color="burlywood", weight=3]; 2155 -> 22[label="",style="dashed", color="red", weight=0]; 2155[label="vwx87 == GT",fontsize=16,color="magenta"];2155 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2154[label="not vwx93",fontsize=16,color="burlywood",shape="triangle"];3367[label="vwx93/False",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 2245[label="",style="solid", color="burlywood", weight=3]; 3368[label="vwx93/True",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 2246[label="",style="solid", color="burlywood", weight=3]; 2156 -> 1930[label="",style="dashed", color="red", weight=0]; 2156[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2156 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2157 -> 1931[label="",style="dashed", color="red", weight=0]; 2157[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2157 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1932[label="",style="dashed", color="red", weight=0]; 2158[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2158 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1933[label="",style="dashed", color="red", weight=0]; 2159[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2159 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1934[label="",style="dashed", color="red", weight=0]; 2160[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2160 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1935[label="",style="dashed", color="red", weight=0]; 2161[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2161 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1936[label="",style="dashed", color="red", weight=0]; 2162[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2162 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1937[label="",style="dashed", color="red", weight=0]; 2163[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2163 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2164 -> 1938[label="",style="dashed", color="red", weight=0]; 2164[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2164 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2165 -> 1939[label="",style="dashed", color="red", weight=0]; 2165[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2165 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2166 -> 1940[label="",style="dashed", color="red", weight=0]; 2166[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2166 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2167 -> 1941[label="",style="dashed", color="red", weight=0]; 2167[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2167 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1942[label="",style="dashed", color="red", weight=0]; 2168[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2168 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1943[label="",style="dashed", color="red", weight=0]; 2169[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2169 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1930[label="",style="dashed", color="red", weight=0]; 2170[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2170 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2171 -> 1931[label="",style="dashed", color="red", weight=0]; 2171[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2171 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2172 -> 1932[label="",style="dashed", color="red", weight=0]; 2172[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2172 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2173 -> 1933[label="",style="dashed", color="red", weight=0]; 2173[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2173 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1934[label="",style="dashed", color="red", weight=0]; 2174[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2174 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1935[label="",style="dashed", color="red", weight=0]; 2175[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2175 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1936[label="",style="dashed", color="red", weight=0]; 2176[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2176 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1937[label="",style="dashed", color="red", weight=0]; 2177[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2177 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1938[label="",style="dashed", color="red", weight=0]; 2178[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2178 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1939[label="",style="dashed", color="red", weight=0]; 2179[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2179 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1940[label="",style="dashed", color="red", weight=0]; 2180[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2180 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1941[label="",style="dashed", color="red", weight=0]; 2181[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2181 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1942[label="",style="dashed", color="red", weight=0]; 2182[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2182 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1943[label="",style="dashed", color="red", weight=0]; 2183[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2183 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2306 -> 299[label="",style="dashed", color="red", weight=0]; 2306[label="vwx22010 == vwx24010 && vwx22011 <= vwx24011",fontsize=16,color="magenta"];2306 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2307[label="vwx22010 < vwx24010",fontsize=16,color="blue",shape="box"];3369[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 2314[label="",style="solid", color="blue", weight=3]; 3370[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 2315[label="",style="solid", color="blue", weight=3]; 3371[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 2316[label="",style="solid", color="blue", weight=3]; 3372[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 2317[label="",style="solid", color="blue", weight=3]; 3373[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 2318[label="",style="solid", color="blue", weight=3]; 3374[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 2319[label="",style="solid", color="blue", weight=3]; 3375[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 2320[label="",style="solid", color="blue", weight=3]; 3376[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 2321[label="",style="solid", color="blue", weight=3]; 3377[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 2322[label="",style="solid", color="blue", weight=3]; 3378[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 2323[label="",style="solid", color="blue", weight=3]; 3379[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 2324[label="",style="solid", color="blue", weight=3]; 3380[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 2325[label="",style="solid", color="blue", weight=3]; 3381[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 2326[label="",style="solid", color="blue", weight=3]; 3382[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 2327[label="",style="solid", color="blue", weight=3]; 2305[label="vwx99 || vwx100",fontsize=16,color="burlywood",shape="triangle"];3383[label="vwx99/False",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3383[label="",style="solid", color="burlywood", weight=9]; 3383 -> 2328[label="",style="solid", color="burlywood", weight=3]; 3384[label="vwx99/True",fontsize=10,color="white",style="solid",shape="box"];2305 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 2329[label="",style="solid", color="burlywood", weight=3]; 2308 -> 299[label="",style="dashed", color="red", weight=0]; 2308[label="vwx22010 == vwx24010 && (vwx22011 < vwx24011 || vwx22011 == vwx24011 && vwx22012 <= vwx24012)",fontsize=16,color="magenta"];2308 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2309[label="vwx22010 < vwx24010",fontsize=16,color="blue",shape="box"];3385[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 2332[label="",style="solid", color="blue", weight=3]; 3386[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 2333[label="",style="solid", color="blue", weight=3]; 3387[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 2334[label="",style="solid", color="blue", weight=3]; 3388[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 2335[label="",style="solid", color="blue", weight=3]; 3389[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 2336[label="",style="solid", color="blue", weight=3]; 3390[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 2337[label="",style="solid", color="blue", weight=3]; 3391[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 2338[label="",style="solid", color="blue", weight=3]; 3392[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 2339[label="",style="solid", color="blue", weight=3]; 3393[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2340[label="",style="solid", color="blue", weight=3]; 3394[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2341[label="",style="solid", color="blue", weight=3]; 3395[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2342[label="",style="solid", color="blue", weight=3]; 3396[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2343[label="",style="solid", color="blue", weight=3]; 3397[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2344[label="",style="solid", color="blue", weight=3]; 3398[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2309 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2345[label="",style="solid", color="blue", weight=3]; 2189 -> 1930[label="",style="dashed", color="red", weight=0]; 2189[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2189 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1931[label="",style="dashed", color="red", weight=0]; 2190[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2190 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1932[label="",style="dashed", color="red", weight=0]; 2191[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2191 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1933[label="",style="dashed", color="red", weight=0]; 2192[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2192 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1934[label="",style="dashed", color="red", weight=0]; 2193[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2193 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1935[label="",style="dashed", color="red", weight=0]; 2194[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2194 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1936[label="",style="dashed", color="red", weight=0]; 2195[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2195 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2196 -> 1937[label="",style="dashed", color="red", weight=0]; 2196[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2196 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2197 -> 1938[label="",style="dashed", color="red", weight=0]; 2197[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2197 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2198 -> 1939[label="",style="dashed", color="red", weight=0]; 2198[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2198 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2199 -> 1940[label="",style="dashed", color="red", weight=0]; 2199[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2199 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2200 -> 1941[label="",style="dashed", color="red", weight=0]; 2200[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2200 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2201 -> 1942[label="",style="dashed", color="red", weight=0]; 2201[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2201 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2202 -> 1943[label="",style="dashed", color="red", weight=0]; 2202[label="vwx22010 <= vwx24010",fontsize=16,color="magenta"];2202 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2203[label="GT",fontsize=16,color="green",shape="box"];1384[label="Succ (Succ (primPlusNat vwx550 vwx40100))",fontsize=16,color="green",shape="box"];1384 -> 1530[label="",style="dashed", color="green", weight=3]; 1385[label="Succ vwx40100",fontsize=16,color="green",shape="box"];2204[label="primCmpInt (Pos (Succ vwx220000)) (Pos vwx24000)",fontsize=16,color="black",shape="box"];2204 -> 2374[label="",style="solid", color="black", weight=3]; 2205[label="primCmpInt (Pos (Succ vwx220000)) (Neg vwx24000)",fontsize=16,color="black",shape="box"];2205 -> 2375[label="",style="solid", color="black", weight=3]; 2206[label="primCmpInt (Pos Zero) (Pos vwx24000)",fontsize=16,color="burlywood",shape="box"];3399[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2206 -> 3399[label="",style="solid", color="burlywood", weight=9]; 3399 -> 2376[label="",style="solid", color="burlywood", weight=3]; 3400[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2206 -> 3400[label="",style="solid", color="burlywood", weight=9]; 3400 -> 2377[label="",style="solid", color="burlywood", weight=3]; 2207[label="primCmpInt (Pos Zero) (Neg vwx24000)",fontsize=16,color="burlywood",shape="box"];3401[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2207 -> 3401[label="",style="solid", color="burlywood", weight=9]; 3401 -> 2378[label="",style="solid", color="burlywood", weight=3]; 3402[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2207 -> 3402[label="",style="solid", color="burlywood", weight=9]; 3402 -> 2379[label="",style="solid", color="burlywood", weight=3]; 2208[label="primCmpInt (Neg (Succ vwx220000)) (Pos vwx24000)",fontsize=16,color="black",shape="box"];2208 -> 2380[label="",style="solid", color="black", weight=3]; 2209[label="primCmpInt (Neg (Succ vwx220000)) (Neg vwx24000)",fontsize=16,color="black",shape="box"];2209 -> 2381[label="",style="solid", color="black", weight=3]; 2210[label="primCmpInt (Neg Zero) (Pos vwx24000)",fontsize=16,color="burlywood",shape="box"];3403[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2210 -> 3403[label="",style="solid", color="burlywood", weight=9]; 3403 -> 2382[label="",style="solid", color="burlywood", weight=3]; 3404[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2210 -> 3404[label="",style="solid", color="burlywood", weight=9]; 3404 -> 2383[label="",style="solid", color="burlywood", weight=3]; 2211[label="primCmpInt (Neg Zero) (Neg vwx24000)",fontsize=16,color="burlywood",shape="box"];3405[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2211 -> 3405[label="",style="solid", color="burlywood", weight=9]; 3405 -> 2384[label="",style="solid", color="burlywood", weight=3]; 3406[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2211 -> 3406[label="",style="solid", color="burlywood", weight=9]; 3406 -> 2385[label="",style="solid", color="burlywood", weight=3]; 2212[label="vwx2200",fontsize=16,color="green",shape="box"];2213[label="vwx2400",fontsize=16,color="green",shape="box"];2214[label="compare2 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2214 -> 2386[label="",style="solid", color="black", weight=3]; 2215[label="compare2 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2215 -> 2387[label="",style="solid", color="black", weight=3]; 2216[label="vwx2200",fontsize=16,color="green",shape="box"];2217[label="vwx2400",fontsize=16,color="green",shape="box"];2218[label="compare2 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2218 -> 2388[label="",style="solid", color="black", weight=3]; 2219[label="compare2 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2219 -> 2389[label="",style="solid", color="black", weight=3]; 2220[label="vwx22000",fontsize=16,color="green",shape="box"];2221[label="vwx24000",fontsize=16,color="green",shape="box"];2222[label="vwx2200",fontsize=16,color="green",shape="box"];2223[label="vwx2400",fontsize=16,color="green",shape="box"];2224[label="compare2 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2224 -> 2390[label="",style="solid", color="black", weight=3]; 2225[label="compare2 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2225 -> 2391[label="",style="solid", color="black", weight=3]; 2226[label="primCmpNat vwx22000 vwx24000",fontsize=16,color="burlywood",shape="triangle"];3407[label="vwx22000/Succ vwx220000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3407[label="",style="solid", color="burlywood", weight=9]; 3407 -> 2392[label="",style="solid", color="burlywood", weight=3]; 3408[label="vwx22000/Zero",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3408[label="",style="solid", color="burlywood", weight=9]; 3408 -> 2393[label="",style="solid", color="burlywood", weight=3]; 2227 -> 1946[label="",style="dashed", color="red", weight=0]; 2227[label="compare (vwx22000 * vwx24001) (vwx24000 * vwx22001)",fontsize=16,color="magenta"];2227 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2227 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2228 -> 1954[label="",style="dashed", color="red", weight=0]; 2228[label="compare (vwx22000 * vwx24001) (vwx24000 * vwx22001)",fontsize=16,color="magenta"];2228 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2228 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2229[label="vwx2200",fontsize=16,color="green",shape="box"];2230[label="vwx2400",fontsize=16,color="green",shape="box"];2231[label="compare2 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2231 -> 2398[label="",style="solid", color="black", weight=3]; 2232[label="compare2 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2232 -> 2399[label="",style="solid", color="black", weight=3]; 2234 -> 1964[label="",style="dashed", color="red", weight=0]; 2234[label="compare vwx22001 vwx24001",fontsize=16,color="magenta"];2234 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2233[label="primCompAux vwx22000 vwx24000 vwx95",fontsize=16,color="black",shape="triangle"];2233 -> 2402[label="",style="solid", color="black", weight=3]; 2235[label="vwx2200",fontsize=16,color="green",shape="box"];2236[label="vwx2400",fontsize=16,color="green",shape="box"];2237[label="compare2 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2237 -> 2403[label="",style="solid", color="black", weight=3]; 2238[label="compare2 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2238 -> 2404[label="",style="solid", color="black", weight=3]; 2239[label="primCmpDouble (Double vwx22000 (Pos vwx220010)) (Double vwx24000 vwx24001)",fontsize=16,color="burlywood",shape="box"];3409[label="vwx24001/Pos vwx240010",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3409[label="",style="solid", color="burlywood", weight=9]; 3409 -> 2405[label="",style="solid", color="burlywood", weight=3]; 3410[label="vwx24001/Neg vwx240010",fontsize=10,color="white",style="solid",shape="box"];2239 -> 3410[label="",style="solid", color="burlywood", weight=9]; 3410 -> 2406[label="",style="solid", color="burlywood", weight=3]; 2240[label="primCmpDouble (Double vwx22000 (Neg vwx220010)) (Double vwx24000 vwx24001)",fontsize=16,color="burlywood",shape="box"];3411[label="vwx24001/Pos vwx240010",fontsize=10,color="white",style="solid",shape="box"];2240 -> 3411[label="",style="solid", color="burlywood", weight=9]; 3411 -> 2407[label="",style="solid", color="burlywood", weight=3]; 3412[label="vwx24001/Neg vwx240010",fontsize=10,color="white",style="solid",shape="box"];2240 -> 3412[label="",style="solid", color="burlywood", weight=9]; 3412 -> 2408[label="",style="solid", color="burlywood", weight=3]; 2241[label="primCmpFloat (Float vwx22000 (Pos vwx220010)) (Float vwx24000 vwx24001)",fontsize=16,color="burlywood",shape="box"];3413[label="vwx24001/Pos vwx240010",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3413[label="",style="solid", color="burlywood", weight=9]; 3413 -> 2409[label="",style="solid", color="burlywood", weight=3]; 3414[label="vwx24001/Neg vwx240010",fontsize=10,color="white",style="solid",shape="box"];2241 -> 3414[label="",style="solid", color="burlywood", weight=9]; 3414 -> 2410[label="",style="solid", color="burlywood", weight=3]; 2242[label="primCmpFloat (Float vwx22000 (Neg vwx220010)) (Float vwx24000 vwx24001)",fontsize=16,color="burlywood",shape="box"];3415[label="vwx24001/Pos vwx240010",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3415[label="",style="solid", color="burlywood", weight=9]; 3415 -> 2411[label="",style="solid", color="burlywood", weight=3]; 3416[label="vwx24001/Neg vwx240010",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3416[label="",style="solid", color="burlywood", weight=9]; 3416 -> 2412[label="",style="solid", color="burlywood", weight=3]; 2243[label="vwx87",fontsize=16,color="green",shape="box"];2244[label="GT",fontsize=16,color="green",shape="box"];2245[label="not False",fontsize=16,color="black",shape="box"];2245 -> 2413[label="",style="solid", color="black", weight=3]; 2246[label="not True",fontsize=16,color="black",shape="box"];2246 -> 2414[label="",style="solid", color="black", weight=3]; 2247[label="vwx24010",fontsize=16,color="green",shape="box"];2248[label="vwx22010",fontsize=16,color="green",shape="box"];2249[label="vwx24010",fontsize=16,color="green",shape="box"];2250[label="vwx22010",fontsize=16,color="green",shape="box"];2251[label="vwx24010",fontsize=16,color="green",shape="box"];2252[label="vwx22010",fontsize=16,color="green",shape="box"];2253[label="vwx24010",fontsize=16,color="green",shape="box"];2254[label="vwx22010",fontsize=16,color="green",shape="box"];2255[label="vwx24010",fontsize=16,color="green",shape="box"];2256[label="vwx22010",fontsize=16,color="green",shape="box"];2257[label="vwx24010",fontsize=16,color="green",shape="box"];2258[label="vwx22010",fontsize=16,color="green",shape="box"];2259[label="vwx24010",fontsize=16,color="green",shape="box"];2260[label="vwx22010",fontsize=16,color="green",shape="box"];2261[label="vwx24010",fontsize=16,color="green",shape="box"];2262[label="vwx22010",fontsize=16,color="green",shape="box"];2263[label="vwx24010",fontsize=16,color="green",shape="box"];2264[label="vwx22010",fontsize=16,color="green",shape="box"];2265[label="vwx24010",fontsize=16,color="green",shape="box"];2266[label="vwx22010",fontsize=16,color="green",shape="box"];2267[label="vwx24010",fontsize=16,color="green",shape="box"];2268[label="vwx22010",fontsize=16,color="green",shape="box"];2269[label="vwx24010",fontsize=16,color="green",shape="box"];2270[label="vwx22010",fontsize=16,color="green",shape="box"];2271[label="vwx24010",fontsize=16,color="green",shape="box"];2272[label="vwx22010",fontsize=16,color="green",shape="box"];2273[label="vwx24010",fontsize=16,color="green",shape="box"];2274[label="vwx22010",fontsize=16,color="green",shape="box"];2275[label="vwx24010",fontsize=16,color="green",shape="box"];2276[label="vwx22010",fontsize=16,color="green",shape="box"];2277[label="vwx24010",fontsize=16,color="green",shape="box"];2278[label="vwx22010",fontsize=16,color="green",shape="box"];2279[label="vwx24010",fontsize=16,color="green",shape="box"];2280[label="vwx22010",fontsize=16,color="green",shape="box"];2281[label="vwx24010",fontsize=16,color="green",shape="box"];2282[label="vwx22010",fontsize=16,color="green",shape="box"];2283[label="vwx24010",fontsize=16,color="green",shape="box"];2284[label="vwx22010",fontsize=16,color="green",shape="box"];2285[label="vwx24010",fontsize=16,color="green",shape="box"];2286[label="vwx22010",fontsize=16,color="green",shape="box"];2287[label="vwx24010",fontsize=16,color="green",shape="box"];2288[label="vwx22010",fontsize=16,color="green",shape="box"];2289[label="vwx24010",fontsize=16,color="green",shape="box"];2290[label="vwx22010",fontsize=16,color="green",shape="box"];2291[label="vwx24010",fontsize=16,color="green",shape="box"];2292[label="vwx22010",fontsize=16,color="green",shape="box"];2293[label="vwx24010",fontsize=16,color="green",shape="box"];2294[label="vwx22010",fontsize=16,color="green",shape="box"];2295[label="vwx24010",fontsize=16,color="green",shape="box"];2296[label="vwx22010",fontsize=16,color="green",shape="box"];2297[label="vwx24010",fontsize=16,color="green",shape="box"];2298[label="vwx22010",fontsize=16,color="green",shape="box"];2299[label="vwx24010",fontsize=16,color="green",shape="box"];2300[label="vwx22010",fontsize=16,color="green",shape="box"];2301[label="vwx24010",fontsize=16,color="green",shape="box"];2302[label="vwx22010",fontsize=16,color="green",shape="box"];2312[label="vwx22010 == vwx24010",fontsize=16,color="blue",shape="box"];3417[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 2415[label="",style="solid", color="blue", weight=3]; 3418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 2416[label="",style="solid", color="blue", weight=3]; 3419[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 2417[label="",style="solid", color="blue", weight=3]; 3420[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 2418[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 2419[label="",style="solid", color="blue", weight=3]; 3422[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 2420[label="",style="solid", color="blue", weight=3]; 3423[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 2421[label="",style="solid", color="blue", weight=3]; 3424[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 2422[label="",style="solid", color="blue", weight=3]; 3425[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 2423[label="",style="solid", color="blue", weight=3]; 3426[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 2424[label="",style="solid", color="blue", weight=3]; 3427[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 2425[label="",style="solid", color="blue", weight=3]; 3428[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 2426[label="",style="solid", color="blue", weight=3]; 3429[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 2427[label="",style="solid", color="blue", weight=3]; 3430[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2312 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 2428[label="",style="solid", color="blue", weight=3]; 2313[label="vwx22011 <= vwx24011",fontsize=16,color="blue",shape="box"];3431[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 2429[label="",style="solid", color="blue", weight=3]; 3432[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 2430[label="",style="solid", color="blue", weight=3]; 3433[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 2431[label="",style="solid", color="blue", weight=3]; 3434[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 2432[label="",style="solid", color="blue", weight=3]; 3435[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 2433[label="",style="solid", color="blue", weight=3]; 3436[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 2434[label="",style="solid", color="blue", weight=3]; 3437[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 2435[label="",style="solid", color="blue", weight=3]; 3438[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 2436[label="",style="solid", color="blue", weight=3]; 3439[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 2437[label="",style="solid", color="blue", weight=3]; 3440[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 2438[label="",style="solid", color="blue", weight=3]; 3441[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 2439[label="",style="solid", color="blue", weight=3]; 3442[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 2440[label="",style="solid", color="blue", weight=3]; 3443[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 2441[label="",style="solid", color="blue", weight=3]; 3444[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2313 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 2442[label="",style="solid", color="blue", weight=3]; 2314 -> 1883[label="",style="dashed", color="red", weight=0]; 2314[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2314 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1884[label="",style="dashed", color="red", weight=0]; 2315[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2315 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1885[label="",style="dashed", color="red", weight=0]; 2316[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2316 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1886[label="",style="dashed", color="red", weight=0]; 2317[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2317 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1887[label="",style="dashed", color="red", weight=0]; 2318[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2318 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2319 -> 4[label="",style="dashed", color="red", weight=0]; 2319[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2319 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2320 -> 1889[label="",style="dashed", color="red", weight=0]; 2320[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2320 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1890[label="",style="dashed", color="red", weight=0]; 2321[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2321 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1891[label="",style="dashed", color="red", weight=0]; 2322[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2322 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2323 -> 1892[label="",style="dashed", color="red", weight=0]; 2323[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2323 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2324 -> 1893[label="",style="dashed", color="red", weight=0]; 2324[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2324 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2325 -> 1894[label="",style="dashed", color="red", weight=0]; 2325[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2325 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2326 -> 1895[label="",style="dashed", color="red", weight=0]; 2326[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2326 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2327 -> 1896[label="",style="dashed", color="red", weight=0]; 2327[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2327 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2328[label="False || vwx100",fontsize=16,color="black",shape="box"];2328 -> 2471[label="",style="solid", color="black", weight=3]; 2329[label="True || vwx100",fontsize=16,color="black",shape="box"];2329 -> 2472[label="",style="solid", color="black", weight=3]; 2330[label="vwx22010 == vwx24010",fontsize=16,color="blue",shape="box"];3445[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 2473[label="",style="solid", color="blue", weight=3]; 3446[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3446[label="",style="solid", color="blue", weight=9]; 3446 -> 2474[label="",style="solid", color="blue", weight=3]; 3447[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 2475[label="",style="solid", color="blue", weight=3]; 3448[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 2476[label="",style="solid", color="blue", weight=3]; 3449[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 2477[label="",style="solid", color="blue", weight=3]; 3450[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 2478[label="",style="solid", color="blue", weight=3]; 3451[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 2479[label="",style="solid", color="blue", weight=3]; 3452[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 2480[label="",style="solid", color="blue", weight=3]; 3453[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 2481[label="",style="solid", color="blue", weight=3]; 3454[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 2482[label="",style="solid", color="blue", weight=3]; 3455[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 2483[label="",style="solid", color="blue", weight=3]; 3456[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 2484[label="",style="solid", color="blue", weight=3]; 3457[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 2485[label="",style="solid", color="blue", weight=3]; 3458[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2330 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 2486[label="",style="solid", color="blue", weight=3]; 2331 -> 2305[label="",style="dashed", color="red", weight=0]; 2331[label="vwx22011 < vwx24011 || vwx22011 == vwx24011 && vwx22012 <= vwx24012",fontsize=16,color="magenta"];2331 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2332 -> 1883[label="",style="dashed", color="red", weight=0]; 2332[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2332 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2333 -> 1884[label="",style="dashed", color="red", weight=0]; 2333[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2333 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2334 -> 1885[label="",style="dashed", color="red", weight=0]; 2334[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2334 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2335 -> 1886[label="",style="dashed", color="red", weight=0]; 2335[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2335 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2336 -> 1887[label="",style="dashed", color="red", weight=0]; 2336[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2336 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2337 -> 4[label="",style="dashed", color="red", weight=0]; 2337[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2337 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2338 -> 1889[label="",style="dashed", color="red", weight=0]; 2338[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2338 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2339 -> 1890[label="",style="dashed", color="red", weight=0]; 2339[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2339 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2340 -> 1891[label="",style="dashed", color="red", weight=0]; 2340[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2340 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2341 -> 1892[label="",style="dashed", color="red", weight=0]; 2341[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2341 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2342 -> 1893[label="",style="dashed", color="red", weight=0]; 2342[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2342 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2343 -> 1894[label="",style="dashed", color="red", weight=0]; 2343[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2343 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2344 -> 1895[label="",style="dashed", color="red", weight=0]; 2344[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2344 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2345 -> 1896[label="",style="dashed", color="red", weight=0]; 2345[label="vwx22010 < vwx24010",fontsize=16,color="magenta"];2345 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2346[label="vwx24010",fontsize=16,color="green",shape="box"];2347[label="vwx22010",fontsize=16,color="green",shape="box"];2348[label="vwx24010",fontsize=16,color="green",shape="box"];2349[label="vwx22010",fontsize=16,color="green",shape="box"];2350[label="vwx24010",fontsize=16,color="green",shape="box"];2351[label="vwx22010",fontsize=16,color="green",shape="box"];2352[label="vwx24010",fontsize=16,color="green",shape="box"];2353[label="vwx22010",fontsize=16,color="green",shape="box"];2354[label="vwx24010",fontsize=16,color="green",shape="box"];2355[label="vwx22010",fontsize=16,color="green",shape="box"];2356[label="vwx24010",fontsize=16,color="green",shape="box"];2357[label="vwx22010",fontsize=16,color="green",shape="box"];2358[label="vwx24010",fontsize=16,color="green",shape="box"];2359[label="vwx22010",fontsize=16,color="green",shape="box"];2360[label="vwx24010",fontsize=16,color="green",shape="box"];2361[label="vwx22010",fontsize=16,color="green",shape="box"];2362[label="vwx24010",fontsize=16,color="green",shape="box"];2363[label="vwx22010",fontsize=16,color="green",shape="box"];2364[label="vwx24010",fontsize=16,color="green",shape="box"];2365[label="vwx22010",fontsize=16,color="green",shape="box"];2366[label="vwx24010",fontsize=16,color="green",shape="box"];2367[label="vwx22010",fontsize=16,color="green",shape="box"];2368[label="vwx24010",fontsize=16,color="green",shape="box"];2369[label="vwx22010",fontsize=16,color="green",shape="box"];2370[label="vwx24010",fontsize=16,color="green",shape="box"];2371[label="vwx22010",fontsize=16,color="green",shape="box"];2372[label="vwx24010",fontsize=16,color="green",shape="box"];2373[label="vwx22010",fontsize=16,color="green",shape="box"];1530[label="primPlusNat vwx550 vwx40100",fontsize=16,color="burlywood",shape="triangle"];3459[label="vwx550/Succ vwx5500",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 1649[label="",style="solid", color="burlywood", weight=3]; 3460[label="vwx550/Zero",fontsize=10,color="white",style="solid",shape="box"];1530 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1650[label="",style="solid", color="burlywood", weight=3]; 2374 -> 2226[label="",style="dashed", color="red", weight=0]; 2374[label="primCmpNat (Succ vwx220000) vwx24000",fontsize=16,color="magenta"];2374 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2374 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2375[label="GT",fontsize=16,color="green",shape="box"];2376[label="primCmpInt (Pos Zero) (Pos (Succ vwx240000))",fontsize=16,color="black",shape="box"];2376 -> 2519[label="",style="solid", color="black", weight=3]; 2377[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2377 -> 2520[label="",style="solid", color="black", weight=3]; 2378[label="primCmpInt (Pos Zero) (Neg (Succ vwx240000))",fontsize=16,color="black",shape="box"];2378 -> 2521[label="",style="solid", color="black", weight=3]; 2379[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2379 -> 2522[label="",style="solid", color="black", weight=3]; 2380[label="LT",fontsize=16,color="green",shape="box"];2381 -> 2226[label="",style="dashed", color="red", weight=0]; 2381[label="primCmpNat vwx24000 (Succ vwx220000)",fontsize=16,color="magenta"];2381 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2382[label="primCmpInt (Neg Zero) (Pos (Succ vwx240000))",fontsize=16,color="black",shape="box"];2382 -> 2525[label="",style="solid", color="black", weight=3]; 2383[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2383 -> 2526[label="",style="solid", color="black", weight=3]; 2384[label="primCmpInt (Neg Zero) (Neg (Succ vwx240000))",fontsize=16,color="black",shape="box"];2384 -> 2527[label="",style="solid", color="black", weight=3]; 2385[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2385 -> 2528[label="",style="solid", color="black", weight=3]; 2386 -> 2529[label="",style="dashed", color="red", weight=0]; 2386[label="compare1 vwx2200 vwx2400 (vwx2200 <= vwx2400)",fontsize=16,color="magenta"];2386 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2387[label="EQ",fontsize=16,color="green",shape="box"];2388 -> 2531[label="",style="dashed", color="red", weight=0]; 2388[label="compare1 vwx2200 vwx2400 (vwx2200 <= vwx2400)",fontsize=16,color="magenta"];2388 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2389[label="EQ",fontsize=16,color="green",shape="box"];2390 -> 2533[label="",style="dashed", color="red", weight=0]; 2390[label="compare1 vwx2200 vwx2400 (vwx2200 <= vwx2400)",fontsize=16,color="magenta"];2390 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2391[label="EQ",fontsize=16,color="green",shape="box"];2392[label="primCmpNat (Succ vwx220000) vwx24000",fontsize=16,color="burlywood",shape="box"];3461[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2392 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 2535[label="",style="solid", color="burlywood", weight=3]; 3462[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2392 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 2536[label="",style="solid", color="burlywood", weight=3]; 2393[label="primCmpNat Zero vwx24000",fontsize=16,color="burlywood",shape="box"];3463[label="vwx24000/Succ vwx240000",fontsize=10,color="white",style="solid",shape="box"];2393 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 2537[label="",style="solid", color="burlywood", weight=3]; 3464[label="vwx24000/Zero",fontsize=10,color="white",style="solid",shape="box"];2393 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 2538[label="",style="solid", color="burlywood", weight=3]; 2394 -> 239[label="",style="dashed", color="red", weight=0]; 2394[label="vwx22000 * vwx24001",fontsize=16,color="magenta"];2394 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2395 -> 239[label="",style="dashed", color="red", weight=0]; 2395[label="vwx24000 * vwx22001",fontsize=16,color="magenta"];2395 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2396[label="vwx22000 * vwx24001",fontsize=16,color="burlywood",shape="triangle"];3465[label="vwx22000/Integer vwx220000",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 2543[label="",style="solid", color="burlywood", weight=3]; 2397 -> 2396[label="",style="dashed", color="red", weight=0]; 2397[label="vwx24000 * vwx22001",fontsize=16,color="magenta"];2397 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2546[label="",style="dashed", color="red", weight=0]; 2398[label="compare1 vwx2200 vwx2400 (vwx2200 <= vwx2400)",fontsize=16,color="magenta"];2398 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2399[label="EQ",fontsize=16,color="green",shape="box"];2400[label="vwx22001",fontsize=16,color="green",shape="box"];2401[label="vwx24001",fontsize=16,color="green",shape="box"];2402 -> 2548[label="",style="dashed", color="red", weight=0]; 2402[label="primCompAux0 vwx95 (compare vwx22000 vwx24000)",fontsize=16,color="magenta"];2402 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2551[label="",style="dashed", color="red", weight=0]; 2403[label="compare1 vwx2200 vwx2400 (vwx2200 <= vwx2400)",fontsize=16,color="magenta"];2403 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2404[label="EQ",fontsize=16,color="green",shape="box"];2405[label="primCmpDouble (Double vwx22000 (Pos vwx220010)) (Double vwx24000 (Pos vwx240010))",fontsize=16,color="black",shape="box"];2405 -> 2553[label="",style="solid", color="black", weight=3]; 2406[label="primCmpDouble (Double vwx22000 (Pos vwx220010)) (Double vwx24000 (Neg vwx240010))",fontsize=16,color="black",shape="box"];2406 -> 2554[label="",style="solid", color="black", weight=3]; 2407[label="primCmpDouble (Double vwx22000 (Neg vwx220010)) (Double vwx24000 (Pos vwx240010))",fontsize=16,color="black",shape="box"];2407 -> 2555[label="",style="solid", color="black", weight=3]; 2408[label="primCmpDouble (Double vwx22000 (Neg vwx220010)) (Double vwx24000 (Neg vwx240010))",fontsize=16,color="black",shape="box"];2408 -> 2556[label="",style="solid", color="black", weight=3]; 2409[label="primCmpFloat (Float vwx22000 (Pos vwx220010)) (Float vwx24000 (Pos vwx240010))",fontsize=16,color="black",shape="box"];2409 -> 2557[label="",style="solid", color="black", weight=3]; 2410[label="primCmpFloat (Float vwx22000 (Pos vwx220010)) (Float vwx24000 (Neg vwx240010))",fontsize=16,color="black",shape="box"];2410 -> 2558[label="",style="solid", color="black", weight=3]; 2411[label="primCmpFloat (Float vwx22000 (Neg vwx220010)) (Float vwx24000 (Pos vwx240010))",fontsize=16,color="black",shape="box"];2411 -> 2559[label="",style="solid", color="black", weight=3]; 2412[label="primCmpFloat (Float vwx22000 (Neg vwx220010)) (Float vwx24000 (Neg vwx240010))",fontsize=16,color="black",shape="box"];2412 -> 2560[label="",style="solid", color="black", weight=3]; 2413[label="True",fontsize=16,color="green",shape="box"];2414[label="False",fontsize=16,color="green",shape="box"];2415 -> 17[label="",style="dashed", color="red", weight=0]; 2415[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2415 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2415 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2416 -> 19[label="",style="dashed", color="red", weight=0]; 2416[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2416 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2416 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2417 -> 24[label="",style="dashed", color="red", weight=0]; 2417[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2417 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2417 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2418 -> 26[label="",style="dashed", color="red", weight=0]; 2418[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2418 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2418 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2419 -> 30[label="",style="dashed", color="red", weight=0]; 2419[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2419 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2419 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2420 -> 25[label="",style="dashed", color="red", weight=0]; 2420[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2420 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2420 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2421 -> 22[label="",style="dashed", color="red", weight=0]; 2421[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2421 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2421 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2422 -> 29[label="",style="dashed", color="red", weight=0]; 2422[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2422 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2422 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2423 -> 23[label="",style="dashed", color="red", weight=0]; 2423[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2423 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2423 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2424 -> 28[label="",style="dashed", color="red", weight=0]; 2424[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2424 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2424 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2425 -> 20[label="",style="dashed", color="red", weight=0]; 2425[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2425 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2425 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2426 -> 21[label="",style="dashed", color="red", weight=0]; 2426[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2426 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2426 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2427 -> 27[label="",style="dashed", color="red", weight=0]; 2427[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2427 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2427 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2428 -> 18[label="",style="dashed", color="red", weight=0]; 2428[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2428 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1930[label="",style="dashed", color="red", weight=0]; 2429[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2429 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1931[label="",style="dashed", color="red", weight=0]; 2430[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2430 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2431 -> 1932[label="",style="dashed", color="red", weight=0]; 2431[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2431 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1933[label="",style="dashed", color="red", weight=0]; 2432[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2432 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1934[label="",style="dashed", color="red", weight=0]; 2433[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2433 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1935[label="",style="dashed", color="red", weight=0]; 2434[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2434 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1936[label="",style="dashed", color="red", weight=0]; 2435[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2435 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1937[label="",style="dashed", color="red", weight=0]; 2436[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2436 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1938[label="",style="dashed", color="red", weight=0]; 2437[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2437 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1939[label="",style="dashed", color="red", weight=0]; 2438[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2438 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1940[label="",style="dashed", color="red", weight=0]; 2439[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2439 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1941[label="",style="dashed", color="red", weight=0]; 2440[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2440 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1942[label="",style="dashed", color="red", weight=0]; 2441[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2441 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1943[label="",style="dashed", color="red", weight=0]; 2442[label="vwx22011 <= vwx24011",fontsize=16,color="magenta"];2442 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2443[label="vwx22010",fontsize=16,color="green",shape="box"];2444[label="vwx24010",fontsize=16,color="green",shape="box"];2445[label="vwx22010",fontsize=16,color="green",shape="box"];2446[label="vwx24010",fontsize=16,color="green",shape="box"];2447[label="vwx22010",fontsize=16,color="green",shape="box"];2448[label="vwx24010",fontsize=16,color="green",shape="box"];2449[label="vwx22010",fontsize=16,color="green",shape="box"];2450[label="vwx24010",fontsize=16,color="green",shape="box"];2451[label="vwx22010",fontsize=16,color="green",shape="box"];2452[label="vwx24010",fontsize=16,color="green",shape="box"];2453[label="vwx22010",fontsize=16,color="green",shape="box"];2454[label="vwx24010",fontsize=16,color="green",shape="box"];2455[label="vwx22010",fontsize=16,color="green",shape="box"];2456[label="vwx24010",fontsize=16,color="green",shape="box"];2457[label="vwx22010",fontsize=16,color="green",shape="box"];2458[label="vwx24010",fontsize=16,color="green",shape="box"];2459[label="vwx22010",fontsize=16,color="green",shape="box"];2460[label="vwx24010",fontsize=16,color="green",shape="box"];2461[label="vwx22010",fontsize=16,color="green",shape="box"];2462[label="vwx24010",fontsize=16,color="green",shape="box"];2463[label="vwx22010",fontsize=16,color="green",shape="box"];2464[label="vwx24010",fontsize=16,color="green",shape="box"];2465[label="vwx22010",fontsize=16,color="green",shape="box"];2466[label="vwx24010",fontsize=16,color="green",shape="box"];2467[label="vwx22010",fontsize=16,color="green",shape="box"];2468[label="vwx24010",fontsize=16,color="green",shape="box"];2469[label="vwx22010",fontsize=16,color="green",shape="box"];2470[label="vwx24010",fontsize=16,color="green",shape="box"];2471[label="vwx100",fontsize=16,color="green",shape="box"];2472[label="True",fontsize=16,color="green",shape="box"];2473 -> 17[label="",style="dashed", color="red", weight=0]; 2473[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2473 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2474 -> 19[label="",style="dashed", color="red", weight=0]; 2474[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2474 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2475 -> 24[label="",style="dashed", color="red", weight=0]; 2475[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2475 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2476 -> 26[label="",style="dashed", color="red", weight=0]; 2476[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2476 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2477 -> 30[label="",style="dashed", color="red", weight=0]; 2477[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2477 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2478 -> 25[label="",style="dashed", color="red", weight=0]; 2478[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2478 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2479 -> 22[label="",style="dashed", color="red", weight=0]; 2479[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2479 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2480 -> 29[label="",style="dashed", color="red", weight=0]; 2480[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2480 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2481 -> 23[label="",style="dashed", color="red", weight=0]; 2481[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2481 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2482 -> 28[label="",style="dashed", color="red", weight=0]; 2482[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2482 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2483 -> 20[label="",style="dashed", color="red", weight=0]; 2483[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2483 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2484 -> 21[label="",style="dashed", color="red", weight=0]; 2484[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2484 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2485 -> 27[label="",style="dashed", color="red", weight=0]; 2485[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2485 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2486 -> 18[label="",style="dashed", color="red", weight=0]; 2486[label="vwx22010 == vwx24010",fontsize=16,color="magenta"];2486 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2487 -> 299[label="",style="dashed", color="red", weight=0]; 2487[label="vwx22011 == vwx24011 && vwx22012 <= vwx24012",fontsize=16,color="magenta"];2487 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2488[label="vwx22011 < vwx24011",fontsize=16,color="blue",shape="box"];3466[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 2647[label="",style="solid", color="blue", weight=3]; 3467[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 2648[label="",style="solid", color="blue", weight=3]; 3468[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 2649[label="",style="solid", color="blue", weight=3]; 3469[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 2650[label="",style="solid", color="blue", weight=3]; 3470[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 2651[label="",style="solid", color="blue", weight=3]; 3471[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 2652[label="",style="solid", color="blue", weight=3]; 3472[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 2653[label="",style="solid", color="blue", weight=3]; 3473[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 2654[label="",style="solid", color="blue", weight=3]; 3474[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 2655[label="",style="solid", color="blue", weight=3]; 3475[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 2656[label="",style="solid", color="blue", weight=3]; 3476[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 2657[label="",style="solid", color="blue", weight=3]; 3477[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 2658[label="",style="solid", color="blue", weight=3]; 3478[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 2659[label="",style="solid", color="blue", weight=3]; 3479[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2488 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 2660[label="",style="solid", color="blue", weight=3]; 2489[label="vwx22010",fontsize=16,color="green",shape="box"];2490[label="vwx24010",fontsize=16,color="green",shape="box"];2491[label="vwx22010",fontsize=16,color="green",shape="box"];2492[label="vwx24010",fontsize=16,color="green",shape="box"];2493[label="vwx22010",fontsize=16,color="green",shape="box"];2494[label="vwx24010",fontsize=16,color="green",shape="box"];2495[label="vwx22010",fontsize=16,color="green",shape="box"];2496[label="vwx24010",fontsize=16,color="green",shape="box"];2497[label="vwx22010",fontsize=16,color="green",shape="box"];2498[label="vwx24010",fontsize=16,color="green",shape="box"];2499[label="vwx22010",fontsize=16,color="green",shape="box"];2500[label="vwx24010",fontsize=16,color="green",shape="box"];2501[label="vwx22010",fontsize=16,color="green",shape="box"];2502[label="vwx24010",fontsize=16,color="green",shape="box"];2503[label="vwx22010",fontsize=16,color="green",shape="box"];2504[label="vwx24010",fontsize=16,color="green",shape="box"];2505[label="vwx22010",fontsize=16,color="green",shape="box"];2506[label="vwx24010",fontsize=16,color="green",shape="box"];2507[label="vwx22010",fontsize=16,color="green",shape="box"];2508[label="vwx24010",fontsize=16,color="green",shape="box"];2509[label="vwx22010",fontsize=16,color="green",shape="box"];2510[label="vwx24010",fontsize=16,color="green",shape="box"];2511[label="vwx22010",fontsize=16,color="green",shape="box"];2512[label="vwx24010",fontsize=16,color="green",shape="box"];2513[label="vwx22010",fontsize=16,color="green",shape="box"];2514[label="vwx24010",fontsize=16,color="green",shape="box"];2515[label="vwx22010",fontsize=16,color="green",shape="box"];2516[label="vwx24010",fontsize=16,color="green",shape="box"];1649[label="primPlusNat (Succ vwx5500) vwx40100",fontsize=16,color="burlywood",shape="box"];3480[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3480[label="",style="solid", color="burlywood", weight=9]; 3480 -> 1782[label="",style="solid", color="burlywood", weight=3]; 3481[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3481[label="",style="solid", color="burlywood", weight=9]; 3481 -> 1783[label="",style="solid", color="burlywood", weight=3]; 1650[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];3482[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3482[label="",style="solid", color="burlywood", weight=9]; 3482 -> 1784[label="",style="solid", color="burlywood", weight=3]; 3483[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3483[label="",style="solid", color="burlywood", weight=9]; 3483 -> 1785[label="",style="solid", color="burlywood", weight=3]; 2517[label="vwx24000",fontsize=16,color="green",shape="box"];2518[label="Succ vwx220000",fontsize=16,color="green",shape="box"];2519 -> 2226[label="",style="dashed", color="red", weight=0]; 2519[label="primCmpNat Zero (Succ vwx240000)",fontsize=16,color="magenta"];2519 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2520[label="EQ",fontsize=16,color="green",shape="box"];2521[label="GT",fontsize=16,color="green",shape="box"];2522[label="EQ",fontsize=16,color="green",shape="box"];2523[label="Succ vwx220000",fontsize=16,color="green",shape="box"];2524[label="vwx24000",fontsize=16,color="green",shape="box"];2525[label="LT",fontsize=16,color="green",shape="box"];2526[label="EQ",fontsize=16,color="green",shape="box"];2527 -> 2226[label="",style="dashed", color="red", weight=0]; 2527[label="primCmpNat (Succ vwx240000) Zero",fontsize=16,color="magenta"];2527 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2528[label="EQ",fontsize=16,color="green",shape="box"];2530 -> 1931[label="",style="dashed", color="red", weight=0]; 2530[label="vwx2200 <= vwx2400",fontsize=16,color="magenta"];2530 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2529[label="compare1 vwx2200 vwx2400 vwx101",fontsize=16,color="burlywood",shape="triangle"];3484[label="vwx101/False",fontsize=10,color="white",style="solid",shape="box"];2529 -> 3484[label="",style="solid", color="burlywood", weight=9]; 3484 -> 2667[label="",style="solid", color="burlywood", weight=3]; 3485[label="vwx101/True",fontsize=10,color="white",style="solid",shape="box"];2529 -> 3485[label="",style="solid", color="burlywood", weight=9]; 3485 -> 2668[label="",style="solid", color="burlywood", weight=3]; 2532 -> 1932[label="",style="dashed", color="red", weight=0]; 2532[label="vwx2200 <= vwx2400",fontsize=16,color="magenta"];2532 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2531[label="compare1 vwx2200 vwx2400 vwx102",fontsize=16,color="burlywood",shape="triangle"];3486[label="vwx102/False",fontsize=10,color="white",style="solid",shape="box"];2531 -> 3486[label="",style="solid", color="burlywood", weight=9]; 3486 -> 2671[label="",style="solid", color="burlywood", weight=3]; 3487[label="vwx102/True",fontsize=10,color="white",style="solid",shape="box"];2531 -> 3487[label="",style="solid", color="burlywood", weight=9]; 3487 -> 2672[label="",style="solid", color="burlywood", weight=3]; 2534 -> 1936[label="",style="dashed", color="red", weight=0]; 2534[label="vwx2200 <= vwx2400",fontsize=16,color="magenta"];2534 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2533[label="compare1 vwx2200 vwx2400 vwx103",fontsize=16,color="burlywood",shape="triangle"];3488[label="vwx103/False",fontsize=10,color="white",style="solid",shape="box"];2533 -> 3488[label="",style="solid", color="burlywood", weight=9]; 3488 -> 2675[label="",style="solid", color="burlywood", weight=3]; 3489[label="vwx103/True",fontsize=10,color="white",style="solid",shape="box"];2533 -> 3489[label="",style="solid", color="burlywood", weight=9]; 3489 -> 2676[label="",style="solid", color="burlywood", weight=3]; 2535[label="primCmpNat (Succ vwx220000) (Succ vwx240000)",fontsize=16,color="black",shape="box"];2535 -> 2677[label="",style="solid", color="black", weight=3]; 2536[label="primCmpNat (Succ vwx220000) Zero",fontsize=16,color="black",shape="box"];2536 -> 2678[label="",style="solid", color="black", weight=3]; 2537[label="primCmpNat Zero (Succ vwx240000)",fontsize=16,color="black",shape="box"];2537 -> 2679[label="",style="solid", color="black", weight=3]; 2538[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2538 -> 2680[label="",style="solid", color="black", weight=3]; 2539[label="vwx24001",fontsize=16,color="green",shape="box"];2540[label="vwx22000",fontsize=16,color="green",shape="box"];2541[label="vwx22001",fontsize=16,color="green",shape="box"];2542[label="vwx24000",fontsize=16,color="green",shape="box"];2543[label="Integer vwx220000 * vwx24001",fontsize=16,color="burlywood",shape="box"];3490[label="vwx24001/Integer vwx240010",fontsize=10,color="white",style="solid",shape="box"];2543 -> 3490[label="",style="solid", color="burlywood", weight=9]; 3490 -> 2681[label="",style="solid", color="burlywood", weight=3]; 2544[label="vwx22001",fontsize=16,color="green",shape="box"];2545[label="vwx24000",fontsize=16,color="green",shape="box"];2547 -> 1939[label="",style="dashed", color="red", weight=0]; 2547[label="vwx2200 <= vwx2400",fontsize=16,color="magenta"];2547 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2546[label="compare1 vwx2200 vwx2400 vwx104",fontsize=16,color="burlywood",shape="triangle"];3491[label="vwx104/False",fontsize=10,color="white",style="solid",shape="box"];2546 -> 3491[label="",style="solid", color="burlywood", weight=9]; 3491 -> 2684[label="",style="solid", color="burlywood", weight=3]; 3492[label="vwx104/True",fontsize=10,color="white",style="solid",shape="box"];2546 -> 3492[label="",style="solid", color="burlywood", weight=9]; 3492 -> 2685[label="",style="solid", color="burlywood", weight=3]; 2549[label="compare vwx22000 vwx24000",fontsize=16,color="blue",shape="box"];3493[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 2686[label="",style="solid", color="blue", weight=3]; 3494[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 2687[label="",style="solid", color="blue", weight=3]; 3495[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 2688[label="",style="solid", color="blue", weight=3]; 3496[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 2689[label="",style="solid", color="blue", weight=3]; 3497[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 2690[label="",style="solid", color="blue", weight=3]; 3498[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 2691[label="",style="solid", color="blue", weight=3]; 3499[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 2692[label="",style="solid", color="blue", weight=3]; 3500[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 2693[label="",style="solid", color="blue", weight=3]; 3501[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 2694[label="",style="solid", color="blue", weight=3]; 3502[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 2695[label="",style="solid", color="blue", weight=3]; 3503[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 2696[label="",style="solid", color="blue", weight=3]; 3504[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 2697[label="",style="solid", color="blue", weight=3]; 3505[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 2698[label="",style="solid", color="blue", weight=3]; 3506[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2549 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 2699[label="",style="solid", color="blue", weight=3]; 2550[label="vwx95",fontsize=16,color="green",shape="box"];2548[label="primCompAux0 vwx108 vwx109",fontsize=16,color="burlywood",shape="triangle"];3507[label="vwx109/LT",fontsize=10,color="white",style="solid",shape="box"];2548 -> 3507[label="",style="solid", color="burlywood", weight=9]; 3507 -> 2700[label="",style="solid", color="burlywood", weight=3]; 3508[label="vwx109/EQ",fontsize=10,color="white",style="solid",shape="box"];2548 -> 3508[label="",style="solid", color="burlywood", weight=9]; 3508 -> 2701[label="",style="solid", color="burlywood", weight=3]; 3509[label="vwx109/GT",fontsize=10,color="white",style="solid",shape="box"];2548 -> 3509[label="",style="solid", color="burlywood", weight=9]; 3509 -> 2702[label="",style="solid", color="burlywood", weight=3]; 2552 -> 1941[label="",style="dashed", color="red", weight=0]; 2552[label="vwx2200 <= vwx2400",fontsize=16,color="magenta"];2552 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2551[label="compare1 vwx2200 vwx2400 vwx110",fontsize=16,color="burlywood",shape="triangle"];3510[label="vwx110/False",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3510[label="",style="solid", color="burlywood", weight=9]; 3510 -> 2705[label="",style="solid", color="burlywood", weight=3]; 3511[label="vwx110/True",fontsize=10,color="white",style="solid",shape="box"];2551 -> 3511[label="",style="solid", color="burlywood", weight=9]; 3511 -> 2706[label="",style="solid", color="burlywood", weight=3]; 2553 -> 1946[label="",style="dashed", color="red", weight=0]; 2553[label="compare (vwx22000 * Pos vwx240010) (Pos vwx220010 * vwx24000)",fontsize=16,color="magenta"];2553 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2553 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2554 -> 1946[label="",style="dashed", color="red", weight=0]; 2554[label="compare (vwx22000 * Pos vwx240010) (Neg vwx220010 * vwx24000)",fontsize=16,color="magenta"];2554 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2554 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2555 -> 1946[label="",style="dashed", color="red", weight=0]; 2555[label="compare (vwx22000 * Neg vwx240010) (Pos vwx220010 * vwx24000)",fontsize=16,color="magenta"];2555 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2555 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2556 -> 1946[label="",style="dashed", color="red", weight=0]; 2556[label="compare (vwx22000 * Neg vwx240010) (Neg vwx220010 * vwx24000)",fontsize=16,color="magenta"];2556 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2556 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2557 -> 1946[label="",style="dashed", color="red", weight=0]; 2557[label="compare (vwx22000 * Pos vwx240010) (Pos vwx220010 * vwx24000)",fontsize=16,color="magenta"];2557 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2557 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2558 -> 1946[label="",style="dashed", color="red", weight=0]; 2558[label="compare (vwx22000 * Pos vwx240010) (Neg vwx220010 * vwx24000)",fontsize=16,color="magenta"];2558 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2559 -> 1946[label="",style="dashed", color="red", weight=0]; 2559[label="compare (vwx22000 * Neg vwx240010) (Pos vwx220010 * vwx24000)",fontsize=16,color="magenta"];2559 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2560 -> 1946[label="",style="dashed", color="red", weight=0]; 2560[label="compare (vwx22000 * Neg vwx240010) (Neg vwx220010 * vwx24000)",fontsize=16,color="magenta"];2560 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2561[label="vwx22010",fontsize=16,color="green",shape="box"];2562[label="vwx24010",fontsize=16,color="green",shape="box"];2563[label="vwx22010",fontsize=16,color="green",shape="box"];2564[label="vwx24010",fontsize=16,color="green",shape="box"];2565[label="vwx22010",fontsize=16,color="green",shape="box"];2566[label="vwx24010",fontsize=16,color="green",shape="box"];2567[label="vwx22010",fontsize=16,color="green",shape="box"];2568[label="vwx24010",fontsize=16,color="green",shape="box"];2569[label="vwx22010",fontsize=16,color="green",shape="box"];2570[label="vwx24010",fontsize=16,color="green",shape="box"];2571[label="vwx22010",fontsize=16,color="green",shape="box"];2572[label="vwx24010",fontsize=16,color="green",shape="box"];2573[label="vwx22010",fontsize=16,color="green",shape="box"];2574[label="vwx24010",fontsize=16,color="green",shape="box"];2575[label="vwx22010",fontsize=16,color="green",shape="box"];2576[label="vwx24010",fontsize=16,color="green",shape="box"];2577[label="vwx22010",fontsize=16,color="green",shape="box"];2578[label="vwx24010",fontsize=16,color="green",shape="box"];2579[label="vwx22010",fontsize=16,color="green",shape="box"];2580[label="vwx24010",fontsize=16,color="green",shape="box"];2581[label="vwx22010",fontsize=16,color="green",shape="box"];2582[label="vwx24010",fontsize=16,color="green",shape="box"];2583[label="vwx22010",fontsize=16,color="green",shape="box"];2584[label="vwx24010",fontsize=16,color="green",shape="box"];2585[label="vwx22010",fontsize=16,color="green",shape="box"];2586[label="vwx24010",fontsize=16,color="green",shape="box"];2587[label="vwx22010",fontsize=16,color="green",shape="box"];2588[label="vwx24010",fontsize=16,color="green",shape="box"];2589[label="vwx24011",fontsize=16,color="green",shape="box"];2590[label="vwx22011",fontsize=16,color="green",shape="box"];2591[label="vwx24011",fontsize=16,color="green",shape="box"];2592[label="vwx22011",fontsize=16,color="green",shape="box"];2593[label="vwx24011",fontsize=16,color="green",shape="box"];2594[label="vwx22011",fontsize=16,color="green",shape="box"];2595[label="vwx24011",fontsize=16,color="green",shape="box"];2596[label="vwx22011",fontsize=16,color="green",shape="box"];2597[label="vwx24011",fontsize=16,color="green",shape="box"];2598[label="vwx22011",fontsize=16,color="green",shape="box"];2599[label="vwx24011",fontsize=16,color="green",shape="box"];2600[label="vwx22011",fontsize=16,color="green",shape="box"];2601[label="vwx24011",fontsize=16,color="green",shape="box"];2602[label="vwx22011",fontsize=16,color="green",shape="box"];2603[label="vwx24011",fontsize=16,color="green",shape="box"];2604[label="vwx22011",fontsize=16,color="green",shape="box"];2605[label="vwx24011",fontsize=16,color="green",shape="box"];2606[label="vwx22011",fontsize=16,color="green",shape="box"];2607[label="vwx24011",fontsize=16,color="green",shape="box"];2608[label="vwx22011",fontsize=16,color="green",shape="box"];2609[label="vwx24011",fontsize=16,color="green",shape="box"];2610[label="vwx22011",fontsize=16,color="green",shape="box"];2611[label="vwx24011",fontsize=16,color="green",shape="box"];2612[label="vwx22011",fontsize=16,color="green",shape="box"];2613[label="vwx24011",fontsize=16,color="green",shape="box"];2614[label="vwx22011",fontsize=16,color="green",shape="box"];2615[label="vwx24011",fontsize=16,color="green",shape="box"];2616[label="vwx22011",fontsize=16,color="green",shape="box"];2617[label="vwx22010",fontsize=16,color="green",shape="box"];2618[label="vwx24010",fontsize=16,color="green",shape="box"];2619[label="vwx22010",fontsize=16,color="green",shape="box"];2620[label="vwx24010",fontsize=16,color="green",shape="box"];2621[label="vwx22010",fontsize=16,color="green",shape="box"];2622[label="vwx24010",fontsize=16,color="green",shape="box"];2623[label="vwx22010",fontsize=16,color="green",shape="box"];2624[label="vwx24010",fontsize=16,color="green",shape="box"];2625[label="vwx22010",fontsize=16,color="green",shape="box"];2626[label="vwx24010",fontsize=16,color="green",shape="box"];2627[label="vwx22010",fontsize=16,color="green",shape="box"];2628[label="vwx24010",fontsize=16,color="green",shape="box"];2629[label="vwx22010",fontsize=16,color="green",shape="box"];2630[label="vwx24010",fontsize=16,color="green",shape="box"];2631[label="vwx22010",fontsize=16,color="green",shape="box"];2632[label="vwx24010",fontsize=16,color="green",shape="box"];2633[label="vwx22010",fontsize=16,color="green",shape="box"];2634[label="vwx24010",fontsize=16,color="green",shape="box"];2635[label="vwx22010",fontsize=16,color="green",shape="box"];2636[label="vwx24010",fontsize=16,color="green",shape="box"];2637[label="vwx22010",fontsize=16,color="green",shape="box"];2638[label="vwx24010",fontsize=16,color="green",shape="box"];2639[label="vwx22010",fontsize=16,color="green",shape="box"];2640[label="vwx24010",fontsize=16,color="green",shape="box"];2641[label="vwx22010",fontsize=16,color="green",shape="box"];2642[label="vwx24010",fontsize=16,color="green",shape="box"];2643[label="vwx22010",fontsize=16,color="green",shape="box"];2644[label="vwx24010",fontsize=16,color="green",shape="box"];2645[label="vwx22011 == vwx24011",fontsize=16,color="blue",shape="box"];3512[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 2723[label="",style="solid", color="blue", weight=3]; 3513[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 2724[label="",style="solid", color="blue", weight=3]; 3514[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 2725[label="",style="solid", color="blue", weight=3]; 3515[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 2726[label="",style="solid", color="blue", weight=3]; 3516[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 2727[label="",style="solid", color="blue", weight=3]; 3517[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 2728[label="",style="solid", color="blue", weight=3]; 3518[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 2729[label="",style="solid", color="blue", weight=3]; 3519[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 2730[label="",style="solid", color="blue", weight=3]; 3520[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 2731[label="",style="solid", color="blue", weight=3]; 3521[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 2732[label="",style="solid", color="blue", weight=3]; 3522[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 2733[label="",style="solid", color="blue", weight=3]; 3523[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 2734[label="",style="solid", color="blue", weight=3]; 3524[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 2735[label="",style="solid", color="blue", weight=3]; 3525[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2645 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 2736[label="",style="solid", color="blue", weight=3]; 2646[label="vwx22012 <= vwx24012",fontsize=16,color="blue",shape="box"];3526[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 2737[label="",style="solid", color="blue", weight=3]; 3527[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 2738[label="",style="solid", color="blue", weight=3]; 3528[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 2739[label="",style="solid", color="blue", weight=3]; 3529[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 2740[label="",style="solid", color="blue", weight=3]; 3530[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 2741[label="",style="solid", color="blue", weight=3]; 3531[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 2742[label="",style="solid", color="blue", weight=3]; 3532[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 2743[label="",style="solid", color="blue", weight=3]; 3533[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 2744[label="",style="solid", color="blue", weight=3]; 3534[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 2745[label="",style="solid", color="blue", weight=3]; 3535[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3535[label="",style="solid", color="blue", weight=9]; 3535 -> 2746[label="",style="solid", color="blue", weight=3]; 3536[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3536[label="",style="solid", color="blue", weight=9]; 3536 -> 2747[label="",style="solid", color="blue", weight=3]; 3537[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 2748[label="",style="solid", color="blue", weight=3]; 3538[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 2749[label="",style="solid", color="blue", weight=3]; 3539[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2646 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 2750[label="",style="solid", color="blue", weight=3]; 2647 -> 1883[label="",style="dashed", color="red", weight=0]; 2647[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2647 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2648 -> 1884[label="",style="dashed", color="red", weight=0]; 2648[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2648 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2649 -> 1885[label="",style="dashed", color="red", weight=0]; 2649[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2649 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2650 -> 1886[label="",style="dashed", color="red", weight=0]; 2650[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2650 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2651 -> 1887[label="",style="dashed", color="red", weight=0]; 2651[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2651 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2652 -> 4[label="",style="dashed", color="red", weight=0]; 2652[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2652 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2653 -> 1889[label="",style="dashed", color="red", weight=0]; 2653[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2653 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2654 -> 1890[label="",style="dashed", color="red", weight=0]; 2654[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2654 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2655 -> 1891[label="",style="dashed", color="red", weight=0]; 2655[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2655 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2655 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2656 -> 1892[label="",style="dashed", color="red", weight=0]; 2656[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2656 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2657 -> 1893[label="",style="dashed", color="red", weight=0]; 2657[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2657 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2657 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2658 -> 1894[label="",style="dashed", color="red", weight=0]; 2658[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2658 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2659 -> 1895[label="",style="dashed", color="red", weight=0]; 2659[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2659 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2660 -> 1896[label="",style="dashed", color="red", weight=0]; 2660[label="vwx22011 < vwx24011",fontsize=16,color="magenta"];2660 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2778[label="",style="dashed", color="magenta", weight=3]; 1782[label="primPlusNat (Succ vwx5500) (Succ vwx401000)",fontsize=16,color="black",shape="box"];1782 -> 1793[label="",style="solid", color="black", weight=3]; 1783[label="primPlusNat (Succ vwx5500) Zero",fontsize=16,color="black",shape="box"];1783 -> 1794[label="",style="solid", color="black", weight=3]; 1784[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];1784 -> 1795[label="",style="solid", color="black", weight=3]; 1785[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1785 -> 1796[label="",style="solid", color="black", weight=3]; 2661[label="Succ vwx240000",fontsize=16,color="green",shape="box"];2662[label="Zero",fontsize=16,color="green",shape="box"];2663[label="Zero",fontsize=16,color="green",shape="box"];2664[label="Succ vwx240000",fontsize=16,color="green",shape="box"];2665[label="vwx2400",fontsize=16,color="green",shape="box"];2666[label="vwx2200",fontsize=16,color="green",shape="box"];2667[label="compare1 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2667 -> 2779[label="",style="solid", color="black", weight=3]; 2668[label="compare1 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2668 -> 2780[label="",style="solid", color="black", weight=3]; 2669[label="vwx2400",fontsize=16,color="green",shape="box"];2670[label="vwx2200",fontsize=16,color="green",shape="box"];2671[label="compare1 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2671 -> 2781[label="",style="solid", color="black", weight=3]; 2672[label="compare1 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2672 -> 2782[label="",style="solid", color="black", weight=3]; 2673[label="vwx2400",fontsize=16,color="green",shape="box"];2674[label="vwx2200",fontsize=16,color="green",shape="box"];2675[label="compare1 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2675 -> 2783[label="",style="solid", color="black", weight=3]; 2676[label="compare1 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2676 -> 2784[label="",style="solid", color="black", weight=3]; 2677 -> 2226[label="",style="dashed", color="red", weight=0]; 2677[label="primCmpNat vwx220000 vwx240000",fontsize=16,color="magenta"];2677 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2678[label="GT",fontsize=16,color="green",shape="box"];2679[label="LT",fontsize=16,color="green",shape="box"];2680[label="EQ",fontsize=16,color="green",shape="box"];2681[label="Integer vwx220000 * Integer vwx240010",fontsize=16,color="black",shape="box"];2681 -> 2787[label="",style="solid", color="black", weight=3]; 2682[label="vwx2400",fontsize=16,color="green",shape="box"];2683[label="vwx2200",fontsize=16,color="green",shape="box"];2684[label="compare1 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2684 -> 2788[label="",style="solid", color="black", weight=3]; 2685[label="compare1 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2685 -> 2789[label="",style="solid", color="black", weight=3]; 2686 -> 1946[label="",style="dashed", color="red", weight=0]; 2686[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2686 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2687 -> 1948[label="",style="dashed", color="red", weight=0]; 2687[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2687 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2688 -> 1950[label="",style="dashed", color="red", weight=0]; 2688[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2688 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2689 -> 1952[label="",style="dashed", color="red", weight=0]; 2689[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2689 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2690 -> 1954[label="",style="dashed", color="red", weight=0]; 2690[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2690 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2691[label="compare vwx22000 vwx24000",fontsize=16,color="black",shape="box"];2691 -> 2800[label="",style="solid", color="black", weight=3]; 2692 -> 1956[label="",style="dashed", color="red", weight=0]; 2692[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2692 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2693 -> 1958[label="",style="dashed", color="red", weight=0]; 2693[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2693 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2694 -> 1960[label="",style="dashed", color="red", weight=0]; 2694[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2694 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2695 -> 1962[label="",style="dashed", color="red", weight=0]; 2695[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2695 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2696 -> 1964[label="",style="dashed", color="red", weight=0]; 2696[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2696 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2697 -> 1966[label="",style="dashed", color="red", weight=0]; 2697[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2697 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2698 -> 1968[label="",style="dashed", color="red", weight=0]; 2698[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2698 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2699 -> 1970[label="",style="dashed", color="red", weight=0]; 2699[label="compare vwx22000 vwx24000",fontsize=16,color="magenta"];2699 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2700[label="primCompAux0 vwx108 LT",fontsize=16,color="black",shape="box"];2700 -> 2817[label="",style="solid", color="black", weight=3]; 2701[label="primCompAux0 vwx108 EQ",fontsize=16,color="black",shape="box"];2701 -> 2818[label="",style="solid", color="black", weight=3]; 2702[label="primCompAux0 vwx108 GT",fontsize=16,color="black",shape="box"];2702 -> 2819[label="",style="solid", color="black", weight=3]; 2703[label="vwx2400",fontsize=16,color="green",shape="box"];2704[label="vwx2200",fontsize=16,color="green",shape="box"];2705[label="compare1 vwx2200 vwx2400 False",fontsize=16,color="black",shape="box"];2705 -> 2820[label="",style="solid", color="black", weight=3]; 2706[label="compare1 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2706 -> 2821[label="",style="solid", color="black", weight=3]; 2707 -> 239[label="",style="dashed", color="red", weight=0]; 2707[label="vwx22000 * Pos vwx240010",fontsize=16,color="magenta"];2707 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2708 -> 239[label="",style="dashed", color="red", weight=0]; 2708[label="Pos vwx220010 * vwx24000",fontsize=16,color="magenta"];2708 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2709 -> 239[label="",style="dashed", color="red", weight=0]; 2709[label="vwx22000 * Pos vwx240010",fontsize=16,color="magenta"];2709 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2710 -> 239[label="",style="dashed", color="red", weight=0]; 2710[label="Neg vwx220010 * vwx24000",fontsize=16,color="magenta"];2710 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2711 -> 239[label="",style="dashed", color="red", weight=0]; 2711[label="vwx22000 * Neg vwx240010",fontsize=16,color="magenta"];2711 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2711 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2712 -> 239[label="",style="dashed", color="red", weight=0]; 2712[label="Pos vwx220010 * vwx24000",fontsize=16,color="magenta"];2712 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2713 -> 239[label="",style="dashed", color="red", weight=0]; 2713[label="vwx22000 * Neg vwx240010",fontsize=16,color="magenta"];2713 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2714 -> 239[label="",style="dashed", color="red", weight=0]; 2714[label="Neg vwx220010 * vwx24000",fontsize=16,color="magenta"];2714 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2715 -> 239[label="",style="dashed", color="red", weight=0]; 2715[label="vwx22000 * Pos vwx240010",fontsize=16,color="magenta"];2715 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2716 -> 239[label="",style="dashed", color="red", weight=0]; 2716[label="Pos vwx220010 * vwx24000",fontsize=16,color="magenta"];2716 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2717 -> 239[label="",style="dashed", color="red", weight=0]; 2717[label="vwx22000 * Pos vwx240010",fontsize=16,color="magenta"];2717 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2718 -> 239[label="",style="dashed", color="red", weight=0]; 2718[label="Neg vwx220010 * vwx24000",fontsize=16,color="magenta"];2718 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2719 -> 239[label="",style="dashed", color="red", weight=0]; 2719[label="vwx22000 * Neg vwx240010",fontsize=16,color="magenta"];2719 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2720 -> 239[label="",style="dashed", color="red", weight=0]; 2720[label="Pos vwx220010 * vwx24000",fontsize=16,color="magenta"];2720 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2721 -> 239[label="",style="dashed", color="red", weight=0]; 2721[label="vwx22000 * Neg vwx240010",fontsize=16,color="magenta"];2721 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2722 -> 239[label="",style="dashed", color="red", weight=0]; 2722[label="Neg vwx220010 * vwx24000",fontsize=16,color="magenta"];2722 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2723 -> 17[label="",style="dashed", color="red", weight=0]; 2723[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2723 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2724 -> 19[label="",style="dashed", color="red", weight=0]; 2724[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2724 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2725 -> 24[label="",style="dashed", color="red", weight=0]; 2725[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2725 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2726 -> 26[label="",style="dashed", color="red", weight=0]; 2726[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2726 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2727 -> 30[label="",style="dashed", color="red", weight=0]; 2727[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2727 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2728 -> 25[label="",style="dashed", color="red", weight=0]; 2728[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2728 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2729 -> 22[label="",style="dashed", color="red", weight=0]; 2729[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2729 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2730 -> 29[label="",style="dashed", color="red", weight=0]; 2730[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2730 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2731 -> 23[label="",style="dashed", color="red", weight=0]; 2731[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2731 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2732 -> 28[label="",style="dashed", color="red", weight=0]; 2732[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2732 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2732 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2733 -> 20[label="",style="dashed", color="red", weight=0]; 2733[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2733 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2733 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2734 -> 21[label="",style="dashed", color="red", weight=0]; 2734[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2734 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2734 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2735 -> 27[label="",style="dashed", color="red", weight=0]; 2735[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2735 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2736 -> 18[label="",style="dashed", color="red", weight=0]; 2736[label="vwx22011 == vwx24011",fontsize=16,color="magenta"];2736 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2737 -> 1930[label="",style="dashed", color="red", weight=0]; 2737[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2737 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2738 -> 1931[label="",style="dashed", color="red", weight=0]; 2738[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2738 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2738 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2739 -> 1932[label="",style="dashed", color="red", weight=0]; 2739[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2739 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2739 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2740 -> 1933[label="",style="dashed", color="red", weight=0]; 2740[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2740 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2740 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2741 -> 1934[label="",style="dashed", color="red", weight=0]; 2741[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2741 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2741 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2742 -> 1935[label="",style="dashed", color="red", weight=0]; 2742[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2742 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2742 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2743 -> 1936[label="",style="dashed", color="red", weight=0]; 2743[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2743 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2743 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2744 -> 1937[label="",style="dashed", color="red", weight=0]; 2744[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2744 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2744 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2745 -> 1938[label="",style="dashed", color="red", weight=0]; 2745[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2745 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2746 -> 1939[label="",style="dashed", color="red", weight=0]; 2746[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2746 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2747 -> 1940[label="",style="dashed", color="red", weight=0]; 2747[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2747 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2748 -> 1941[label="",style="dashed", color="red", weight=0]; 2748[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2748 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2749 -> 1942[label="",style="dashed", color="red", weight=0]; 2749[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2749 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2750 -> 1943[label="",style="dashed", color="red", weight=0]; 2750[label="vwx22012 <= vwx24012",fontsize=16,color="magenta"];2750 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2751[label="vwx22011",fontsize=16,color="green",shape="box"];2752[label="vwx24011",fontsize=16,color="green",shape="box"];2753[label="vwx22011",fontsize=16,color="green",shape="box"];2754[label="vwx24011",fontsize=16,color="green",shape="box"];2755[label="vwx22011",fontsize=16,color="green",shape="box"];2756[label="vwx24011",fontsize=16,color="green",shape="box"];2757[label="vwx22011",fontsize=16,color="green",shape="box"];2758[label="vwx24011",fontsize=16,color="green",shape="box"];2759[label="vwx22011",fontsize=16,color="green",shape="box"];2760[label="vwx24011",fontsize=16,color="green",shape="box"];2761[label="vwx22011",fontsize=16,color="green",shape="box"];2762[label="vwx24011",fontsize=16,color="green",shape="box"];2763[label="vwx22011",fontsize=16,color="green",shape="box"];2764[label="vwx24011",fontsize=16,color="green",shape="box"];2765[label="vwx22011",fontsize=16,color="green",shape="box"];2766[label="vwx24011",fontsize=16,color="green",shape="box"];2767[label="vwx22011",fontsize=16,color="green",shape="box"];2768[label="vwx24011",fontsize=16,color="green",shape="box"];2769[label="vwx22011",fontsize=16,color="green",shape="box"];2770[label="vwx24011",fontsize=16,color="green",shape="box"];2771[label="vwx22011",fontsize=16,color="green",shape="box"];2772[label="vwx24011",fontsize=16,color="green",shape="box"];2773[label="vwx22011",fontsize=16,color="green",shape="box"];2774[label="vwx24011",fontsize=16,color="green",shape="box"];2775[label="vwx22011",fontsize=16,color="green",shape="box"];2776[label="vwx24011",fontsize=16,color="green",shape="box"];2777[label="vwx22011",fontsize=16,color="green",shape="box"];2778[label="vwx24011",fontsize=16,color="green",shape="box"];1793[label="Succ (Succ (primPlusNat vwx5500 vwx401000))",fontsize=16,color="green",shape="box"];1793 -> 1830[label="",style="dashed", color="green", weight=3]; 1794[label="Succ vwx5500",fontsize=16,color="green",shape="box"];1795[label="Succ vwx401000",fontsize=16,color="green",shape="box"];1796[label="Zero",fontsize=16,color="green",shape="box"];2779[label="compare0 vwx2200 vwx2400 otherwise",fontsize=16,color="black",shape="box"];2779 -> 2910[label="",style="solid", color="black", weight=3]; 2780[label="LT",fontsize=16,color="green",shape="box"];2781[label="compare0 vwx2200 vwx2400 otherwise",fontsize=16,color="black",shape="box"];2781 -> 2911[label="",style="solid", color="black", weight=3]; 2782[label="LT",fontsize=16,color="green",shape="box"];2783[label="compare0 vwx2200 vwx2400 otherwise",fontsize=16,color="black",shape="box"];2783 -> 2912[label="",style="solid", color="black", weight=3]; 2784[label="LT",fontsize=16,color="green",shape="box"];2785[label="vwx240000",fontsize=16,color="green",shape="box"];2786[label="vwx220000",fontsize=16,color="green",shape="box"];2787[label="Integer (primMulInt vwx220000 vwx240010)",fontsize=16,color="green",shape="box"];2787 -> 2913[label="",style="dashed", color="green", weight=3]; 2788[label="compare0 vwx2200 vwx2400 otherwise",fontsize=16,color="black",shape="box"];2788 -> 2914[label="",style="solid", color="black", weight=3]; 2789[label="LT",fontsize=16,color="green",shape="box"];2790[label="vwx22000",fontsize=16,color="green",shape="box"];2791[label="vwx24000",fontsize=16,color="green",shape="box"];2792[label="vwx22000",fontsize=16,color="green",shape="box"];2793[label="vwx24000",fontsize=16,color="green",shape="box"];2794[label="vwx22000",fontsize=16,color="green",shape="box"];2795[label="vwx24000",fontsize=16,color="green",shape="box"];2796[label="vwx22000",fontsize=16,color="green",shape="box"];2797[label="vwx24000",fontsize=16,color="green",shape="box"];2798[label="vwx22000",fontsize=16,color="green",shape="box"];2799[label="vwx24000",fontsize=16,color="green",shape="box"];2800[label="compare3 vwx22000 vwx24000",fontsize=16,color="black",shape="box"];2800 -> 2915[label="",style="solid", color="black", weight=3]; 2801[label="vwx22000",fontsize=16,color="green",shape="box"];2802[label="vwx24000",fontsize=16,color="green",shape="box"];2803[label="vwx22000",fontsize=16,color="green",shape="box"];2804[label="vwx24000",fontsize=16,color="green",shape="box"];2805[label="vwx22000",fontsize=16,color="green",shape="box"];2806[label="vwx24000",fontsize=16,color="green",shape="box"];2807[label="vwx22000",fontsize=16,color="green",shape="box"];2808[label="vwx24000",fontsize=16,color="green",shape="box"];2809[label="vwx22000",fontsize=16,color="green",shape="box"];2810[label="vwx24000",fontsize=16,color="green",shape="box"];2811[label="vwx22000",fontsize=16,color="green",shape="box"];2812[label="vwx24000",fontsize=16,color="green",shape="box"];2813[label="vwx22000",fontsize=16,color="green",shape="box"];2814[label="vwx24000",fontsize=16,color="green",shape="box"];2815[label="vwx22000",fontsize=16,color="green",shape="box"];2816[label="vwx24000",fontsize=16,color="green",shape="box"];2817[label="LT",fontsize=16,color="green",shape="box"];2818[label="vwx108",fontsize=16,color="green",shape="box"];2819[label="GT",fontsize=16,color="green",shape="box"];2820[label="compare0 vwx2200 vwx2400 otherwise",fontsize=16,color="black",shape="box"];2820 -> 2916[label="",style="solid", color="black", weight=3]; 2821[label="LT",fontsize=16,color="green",shape="box"];2822[label="Pos vwx240010",fontsize=16,color="green",shape="box"];2823[label="vwx22000",fontsize=16,color="green",shape="box"];2824[label="vwx24000",fontsize=16,color="green",shape="box"];2825[label="Pos vwx220010",fontsize=16,color="green",shape="box"];2826[label="Pos vwx240010",fontsize=16,color="green",shape="box"];2827[label="vwx22000",fontsize=16,color="green",shape="box"];2828[label="vwx24000",fontsize=16,color="green",shape="box"];2829[label="Neg vwx220010",fontsize=16,color="green",shape="box"];2830[label="Neg vwx240010",fontsize=16,color="green",shape="box"];2831[label="vwx22000",fontsize=16,color="green",shape="box"];2832[label="vwx24000",fontsize=16,color="green",shape="box"];2833[label="Pos vwx220010",fontsize=16,color="green",shape="box"];2834[label="Neg vwx240010",fontsize=16,color="green",shape="box"];2835[label="vwx22000",fontsize=16,color="green",shape="box"];2836[label="vwx24000",fontsize=16,color="green",shape="box"];2837[label="Neg vwx220010",fontsize=16,color="green",shape="box"];2838[label="Pos vwx240010",fontsize=16,color="green",shape="box"];2839[label="vwx22000",fontsize=16,color="green",shape="box"];2840[label="vwx24000",fontsize=16,color="green",shape="box"];2841[label="Pos vwx220010",fontsize=16,color="green",shape="box"];2842[label="Pos vwx240010",fontsize=16,color="green",shape="box"];2843[label="vwx22000",fontsize=16,color="green",shape="box"];2844[label="vwx24000",fontsize=16,color="green",shape="box"];2845[label="Neg vwx220010",fontsize=16,color="green",shape="box"];2846[label="Neg vwx240010",fontsize=16,color="green",shape="box"];2847[label="vwx22000",fontsize=16,color="green",shape="box"];2848[label="vwx24000",fontsize=16,color="green",shape="box"];2849[label="Pos vwx220010",fontsize=16,color="green",shape="box"];2850[label="Neg vwx240010",fontsize=16,color="green",shape="box"];2851[label="vwx22000",fontsize=16,color="green",shape="box"];2852[label="vwx24000",fontsize=16,color="green",shape="box"];2853[label="Neg vwx220010",fontsize=16,color="green",shape="box"];2854[label="vwx22011",fontsize=16,color="green",shape="box"];2855[label="vwx24011",fontsize=16,color="green",shape="box"];2856[label="vwx22011",fontsize=16,color="green",shape="box"];2857[label="vwx24011",fontsize=16,color="green",shape="box"];2858[label="vwx22011",fontsize=16,color="green",shape="box"];2859[label="vwx24011",fontsize=16,color="green",shape="box"];2860[label="vwx22011",fontsize=16,color="green",shape="box"];2861[label="vwx24011",fontsize=16,color="green",shape="box"];2862[label="vwx22011",fontsize=16,color="green",shape="box"];2863[label="vwx24011",fontsize=16,color="green",shape="box"];2864[label="vwx22011",fontsize=16,color="green",shape="box"];2865[label="vwx24011",fontsize=16,color="green",shape="box"];2866[label="vwx22011",fontsize=16,color="green",shape="box"];2867[label="vwx24011",fontsize=16,color="green",shape="box"];2868[label="vwx22011",fontsize=16,color="green",shape="box"];2869[label="vwx24011",fontsize=16,color="green",shape="box"];2870[label="vwx22011",fontsize=16,color="green",shape="box"];2871[label="vwx24011",fontsize=16,color="green",shape="box"];2872[label="vwx22011",fontsize=16,color="green",shape="box"];2873[label="vwx24011",fontsize=16,color="green",shape="box"];2874[label="vwx22011",fontsize=16,color="green",shape="box"];2875[label="vwx24011",fontsize=16,color="green",shape="box"];2876[label="vwx22011",fontsize=16,color="green",shape="box"];2877[label="vwx24011",fontsize=16,color="green",shape="box"];2878[label="vwx22011",fontsize=16,color="green",shape="box"];2879[label="vwx24011",fontsize=16,color="green",shape="box"];2880[label="vwx22011",fontsize=16,color="green",shape="box"];2881[label="vwx24011",fontsize=16,color="green",shape="box"];2882[label="vwx24012",fontsize=16,color="green",shape="box"];2883[label="vwx22012",fontsize=16,color="green",shape="box"];2884[label="vwx24012",fontsize=16,color="green",shape="box"];2885[label="vwx22012",fontsize=16,color="green",shape="box"];2886[label="vwx24012",fontsize=16,color="green",shape="box"];2887[label="vwx22012",fontsize=16,color="green",shape="box"];2888[label="vwx24012",fontsize=16,color="green",shape="box"];2889[label="vwx22012",fontsize=16,color="green",shape="box"];2890[label="vwx24012",fontsize=16,color="green",shape="box"];2891[label="vwx22012",fontsize=16,color="green",shape="box"];2892[label="vwx24012",fontsize=16,color="green",shape="box"];2893[label="vwx22012",fontsize=16,color="green",shape="box"];2894[label="vwx24012",fontsize=16,color="green",shape="box"];2895[label="vwx22012",fontsize=16,color="green",shape="box"];2896[label="vwx24012",fontsize=16,color="green",shape="box"];2897[label="vwx22012",fontsize=16,color="green",shape="box"];2898[label="vwx24012",fontsize=16,color="green",shape="box"];2899[label="vwx22012",fontsize=16,color="green",shape="box"];2900[label="vwx24012",fontsize=16,color="green",shape="box"];2901[label="vwx22012",fontsize=16,color="green",shape="box"];2902[label="vwx24012",fontsize=16,color="green",shape="box"];2903[label="vwx22012",fontsize=16,color="green",shape="box"];2904[label="vwx24012",fontsize=16,color="green",shape="box"];2905[label="vwx22012",fontsize=16,color="green",shape="box"];2906[label="vwx24012",fontsize=16,color="green",shape="box"];2907[label="vwx22012",fontsize=16,color="green",shape="box"];2908[label="vwx24012",fontsize=16,color="green",shape="box"];2909[label="vwx22012",fontsize=16,color="green",shape="box"];1830 -> 1530[label="",style="dashed", color="red", weight=0]; 1830[label="primPlusNat vwx5500 vwx401000",fontsize=16,color="magenta"];1830 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1862[label="",style="dashed", color="magenta", weight=3]; 2910[label="compare0 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2910 -> 2917[label="",style="solid", color="black", weight=3]; 2911[label="compare0 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2911 -> 2918[label="",style="solid", color="black", weight=3]; 2912[label="compare0 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2912 -> 2919[label="",style="solid", color="black", weight=3]; 2913 -> 452[label="",style="dashed", color="red", weight=0]; 2913[label="primMulInt vwx220000 vwx240010",fontsize=16,color="magenta"];2913 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2913 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2914[label="compare0 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2914 -> 2922[label="",style="solid", color="black", weight=3]; 2915 -> 1803[label="",style="dashed", color="red", weight=0]; 2915[label="compare2 vwx22000 vwx24000 (vwx22000 == vwx24000)",fontsize=16,color="magenta"];2915 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2915 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2916[label="compare0 vwx2200 vwx2400 True",fontsize=16,color="black",shape="box"];2916 -> 2926[label="",style="solid", color="black", weight=3]; 1861[label="vwx5500",fontsize=16,color="green",shape="box"];1862[label="vwx401000",fontsize=16,color="green",shape="box"];2917[label="GT",fontsize=16,color="green",shape="box"];2918[label="GT",fontsize=16,color="green",shape="box"];2919[label="GT",fontsize=16,color="green",shape="box"];2920[label="vwx240010",fontsize=16,color="green",shape="box"];2921[label="vwx220000",fontsize=16,color="green",shape="box"];2922[label="GT",fontsize=16,color="green",shape="box"];2923[label="vwx24000",fontsize=16,color="green",shape="box"];2924[label="vwx22000",fontsize=16,color="green",shape="box"];2925 -> 25[label="",style="dashed", color="red", weight=0]; 2925[label="vwx22000 == vwx24000",fontsize=16,color="magenta"];2925 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2926[label="GT",fontsize=16,color="green",shape="box"];2927[label="vwx22000",fontsize=16,color="green",shape="box"];2928[label="vwx24000",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(vwx220000), Succ(vwx240000)) -> new_primCmpNat(vwx220000, vwx240000) 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(vwx220000), Succ(vwx240000)) -> new_primCmpNat(vwx220000, vwx240000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (17) YES ---------------------------------------- (18) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_[], hf)) -> new_esEs0(vwx301, vwx401, hf) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, gh), ha), hb), gc) -> new_esEs3(vwx300, vwx400, gh, ha, hb) new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), bag, bah) -> new_esEs3(vwx300, vwx400, bbe, bbf, bbg) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx301, vwx401, hh, baa) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ea), eb)) -> new_esEs2(vwx300, vwx400, ea, eb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_Either, bdb), bdc)) -> new_esEs(vwx302, vwx402, bdb, bdc) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gd), gc) -> new_esEs0(vwx300, vwx400, gd) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, ga), gb), gc) -> new_esEs(vwx300, vwx400, ga, gb) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, de), df)) -> new_esEs(vwx300, vwx400, de, df) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dg)) -> new_esEs0(vwx300, vwx400, dg) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs3(vwx302, vwx402, bdh, bea, beb) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs2(vwx300, vwx400, gf, gg) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), ef) -> new_esEs0(vwx301, vwx401, ef) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bce), bcf), bah) -> new_esEs2(vwx301, vwx401, bce, bcf) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, dh)) -> new_esEs1(vwx300, vwx400, dh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bba), bag, bah) -> new_esEs0(vwx300, vwx400, bba) new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx302, vwx402, bdf, bdg) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx301, vwx401, bab, bac, bad) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vwx300, vwx400, ec, ed, ee) new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(app(ty_@3, bcg), bch), bda), bah) -> new_esEs3(vwx301, vwx401, bcg, bch, bda) new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_[], bdd)) -> new_esEs0(vwx302, vwx402, bdd) new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_@2, bbc), bbd), bag, bah) -> new_esEs2(vwx300, vwx400, bbc, bbd) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bcc), bah) -> new_esEs0(vwx301, vwx401, bcc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbb), bag, bah) -> new_esEs1(vwx300, vwx400, bbb) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx301, vwx401, hg) new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_Either, hd), he)) -> new_esEs(vwx301, vwx401, hd, he) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_Maybe, bcd), bah) -> new_esEs1(vwx301, vwx401, bcd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ge), gc) -> new_esEs1(vwx300, vwx400, ge) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bae), baf), bag, bah) -> new_esEs(vwx300, vwx400, bae, baf) new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_Maybe, bde)) -> new_esEs1(vwx302, vwx402, bde) new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_Either, bca), bcb), bah) -> new_esEs(vwx301, vwx401, bca, bcb) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (19) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, ea), eb)) -> new_esEs2(vwx300, vwx400, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, de), df)) -> new_esEs(vwx300, vwx400, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ec), ed), ee)) -> new_esEs3(vwx300, vwx400, ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, dh)) -> new_esEs1(vwx300, vwx400, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_@2, fc), fd)) -> new_esEs2(vwx300, vwx400, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(ty_Either, eg), eh)) -> new_esEs(vwx300, vwx400, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vwx300), Just(vwx400), app(app(app(ty_@3, ff), fg), fh)) -> new_esEs3(vwx300, vwx400, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(Just(vwx300), Just(vwx400), app(ty_Maybe, fb)) -> new_esEs1(vwx300, vwx400, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dg)) -> new_esEs0(vwx300, vwx400, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), ef) -> new_esEs0(vwx301, vwx401, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(app(ty_@2, bce), bcf), bah) -> new_esEs2(vwx301, vwx401, bce, bcf) 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, bag, app(app(ty_@2, bdf), bdg)) -> new_esEs2(vwx302, vwx402, bdf, bdg) 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(ty_@2, bbc), bbd), bag, bah) -> new_esEs2(vwx300, vwx400, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_@2, hh), baa)) -> new_esEs2(vwx301, vwx401, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_@2, gf), gg), gc) -> new_esEs2(vwx300, vwx400, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_@2, cg), da)) -> new_esEs2(vwx300, vwx400, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_@2, be), bf), bb) -> new_esEs2(vwx300, vwx400, be, bf) 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, bag, app(app(ty_Either, bdb), bdc)) -> new_esEs(vwx302, vwx402, bdb, bdc) 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(ty_Either, bae), baf), bag, bah) -> new_esEs(vwx300, vwx400, bae, baf) 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, bca), bcb), bah) -> new_esEs(vwx301, vwx401, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(app(ty_@3, bbe), bbf), bbg), bag, bah) -> 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, bag, 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), bah) -> 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), app(ty_[], bba), bag, bah) -> new_esEs0(vwx300, vwx400, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_[], bdd)) -> new_esEs0(vwx302, vwx402, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, app(ty_[], bcc), bah) -> new_esEs0(vwx301, vwx401, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bbb), bag, bah) -> new_esEs1(vwx300, vwx400, bbb) 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, bcd), bah) -> new_esEs1(vwx301, vwx401, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bbh, bag, app(ty_Maybe, bde)) -> new_esEs1(vwx302, vwx402, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, ga), gb), gc) -> new_esEs(vwx300, vwx400, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(ty_Either, hd), he)) -> new_esEs(vwx301, vwx401, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vwx300, vwx400, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vwx300), Left(vwx400), app(app(ty_Either, h), ba), bb) -> new_esEs(vwx300, vwx400, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, gh), ha), hb), gc) -> new_esEs3(vwx300, vwx400, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vwx301, vwx401, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Right(vwx300), Right(vwx400), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vwx300, vwx400, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vwx300, vwx400, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_[], hf)) -> new_esEs0(vwx301, vwx401, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], gd), gc) -> new_esEs0(vwx300, vwx400, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), hc, app(ty_Maybe, hg)) -> new_esEs1(vwx301, vwx401, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, ge), gc) -> new_esEs1(vwx300, vwx400, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_[], bc), bb) -> new_esEs0(vwx300, vwx400, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_[], ce)) -> new_esEs0(vwx300, vwx400, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vwx300), Right(vwx400), cb, app(ty_Maybe, cf)) -> new_esEs1(vwx300, vwx400, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vwx300), Left(vwx400), app(ty_Maybe, bd), bb) -> new_esEs1(vwx300, vwx400, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (22) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (23) YES ---------------------------------------- (24) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(ty_Maybe, fa)) -> new_ltEs3(vwx22010, vwx24010, fa) new_primCompAux(vwx22000, vwx24000, vwx95, app(ty_[], bff)) -> new_compare0(vwx22000, vwx24000, bff) new_primCompAux(vwx22000, vwx24000, vwx95, app(ty_Maybe, bfg)) -> new_compare4(vwx22000, vwx24000, bfg) new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(ty_@2, ec), ed))) -> new_ltEs0(vwx22010, vwx24010, ec, ed) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(ty_Maybe, gd)) -> new_ltEs3(vwx22011, vwx24011, gd) new_esEs4(vwx11, vwx12, vwx13, vwx14, True, h, ba) -> new_compare2(@2(vwx11, vwx12), @2(vwx13, vwx14), new_esEs5(vwx12, vwx14, ba), h, ba) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(ty_[], bdc)), hh), bbd)) -> new_lt2(vwx22010, vwx24010, bdc) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(app(ty_@3, bae), baf), bag))) -> new_ltEs1(vwx22012, vwx24012, bae, baf, bag) new_primCompAux(vwx22000, vwx24000, vwx95, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare3(vwx22000, vwx24000, bfc, bfd, bfe) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(ty_Either, bcd), bce), hh, bbd) -> new_lt0(vwx22010, vwx24010, bcd, bce) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(ty_@2, ff), fg)) -> new_ltEs0(vwx22011, vwx24011, ff, fg) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(app(ty_@3, bbg), bbh), bca), bbd) -> new_lt1(vwx22011, vwx24011, bbg, bbh, bca) new_primCompAux(vwx22000, vwx24000, vwx95, app(app(ty_@2, bfa), bfb)) -> new_compare2(vwx22000, vwx24000, new_esEs9(vwx22000, vwx24000, bfa, bfb), bfa, bfb) new_lt2(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(ty_Either, fc), fd)) -> new_ltEs(vwx22011, vwx24011, fc, fd) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(app(ty_@3, hb), hc), hd), gg) -> new_lt1(vwx22010, vwx24010, hb, hc, hd) new_ltEs3(Just(vwx22010), Just(vwx24010), app(ty_[], bee)) -> new_ltEs2(vwx22010, vwx24010, bee) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs1(vwx22011, vwx24011, fh, ga, gb) new_lt(@2(vwx30, vwx31), @2(vwx40, vwx41), bfh, bga) -> new_esEs4(vwx30, vwx31, vwx40, vwx41, new_esEs10(vwx30, vwx40, bfh), bfh, bga) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(ty_Maybe, gd))) -> new_ltEs3(vwx22011, vwx24011, gd) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(ty_Maybe, hf), gg) -> new_lt3(vwx22010, vwx24010, hf) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(ty_[], bcb), bbd) -> new_lt2(vwx22011, vwx24011, bcb) new_ltEs(Left(vwx22010), Left(vwx24010), app(ty_Maybe, dg), cg) -> new_ltEs3(vwx22010, vwx24010, dg) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(ty_@2, bcf), bcg), hh, bbd) -> new_lt(vwx22010, vwx24010, bcf, bcg) new_ltEs3(Just(vwx22010), Just(vwx24010), app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx22010, vwx24010, bdf, bdg) new_ltEs3(Just(vwx22010), Just(vwx24010), app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx22010, vwx24010, bdh, bea) new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(ty_Either, bdf), bdg))) -> new_ltEs(vwx22010, vwx24010, bdf, bdg) new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(ty_Maybe, cc), bd) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(ty_[], gc))) -> new_ltEs2(vwx22011, vwx24011, gc) new_ltEs(Left(vwx22010), Left(vwx24010), app(app(ty_@2, da), db), cg) -> new_ltEs0(vwx22010, vwx24010, da, db) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(ty_[], bah)) -> new_ltEs2(vwx22012, vwx24012, bah) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gg)) -> new_lt1(vwx22010, vwx24010, hb, hc, hd) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), hh), bbd)) -> new_lt0(vwx22010, vwx24010, bcd, bce) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(ty_Maybe, bdd), hh, bbd) -> new_lt3(vwx22010, vwx24010, bdd) new_ltEs(Left(vwx22010), Left(vwx24010), app(app(ty_Either, ce), cf), cg) -> new_ltEs(vwx22010, vwx24010, ce, cf) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(ty_Either, bbb), bbc)), bbd)) -> new_lt0(vwx22011, vwx24011, bbb, bbc) new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs1(vwx22010, vwx24010, beb, bec, bed) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(ty_Maybe, bba))) -> new_ltEs3(vwx22012, vwx24012, bba) new_primCompAux(vwx22000, vwx24000, vwx95, app(app(ty_Either, beg), beh)) -> new_compare1(vwx22000, vwx24000, beg, beh) new_lt3(vwx2200, vwx2400, cc) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(app(ty_@3, bch), bda), bdb), hh, bbd) -> new_lt1(vwx22010, vwx24010, bch, bda, bdb) new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(ty_Either, ce), cf)), cg)) -> new_ltEs(vwx22010, vwx24010, ce, cf) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(ty_Either, bbb), bbc), bbd) -> new_lt0(vwx22011, vwx24011, bbb, bbc) new_compare0(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_compare0(vwx22001, vwx24001, cb) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(ty_Either, ge), gf)), gg)) -> new_lt0(vwx22010, vwx24010, ge, gf) new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(ty_@2, da), db)), cg)) -> new_ltEs0(vwx22010, vwx24010, da, db) new_compare20(vwx2200, vwx2400, False, bb, bc) -> new_ltEs(vwx2200, vwx2400, bb, bc) new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(ty_[], eh))) -> new_ltEs2(vwx22010, vwx24010, eh) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(ty_[], he)), gg)) -> new_lt2(vwx22010, vwx24010, he) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(ty_@2, bac), bad)) -> new_ltEs0(vwx22012, vwx24012, bac, bad) new_compare2(@2(:(vwx22000, vwx22001), vwx2201), @2(:(vwx24000, vwx24001), vwx2401), False, app(ty_[], cb), bd) -> new_compare0(vwx22001, vwx24001, cb) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(ty_[], gc)) -> new_ltEs2(vwx22011, vwx24011, gc) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(ty_@2, bbe), bbf), bbd) -> new_lt(vwx22011, vwx24011, bbe, bbf) new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(app(ty_@3, bg), bh), ca), bd) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) new_ltEs(Left(vwx22010), Left(vwx24010), app(ty_[], df), cg) -> new_ltEs2(vwx22010, vwx24010, df) new_lt0(vwx2200, vwx2400, bb, bc) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(ty_[], he), gg) -> new_lt2(vwx22010, vwx24010, he) new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(ty_Maybe, dg)), cg)) -> new_ltEs3(vwx22010, vwx24010, dg) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs1(vwx22011, vwx24011, fh, ga, gb) new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(ty_[], eh)) -> new_ltEs2(vwx22010, vwx24010, eh) new_ltEs(Left(vwx22010), Left(vwx24010), app(app(app(ty_@3, dc), dd), de), cg) -> new_ltEs1(vwx22010, vwx24010, dc, dd, de) new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(ty_Either, ea), eb)) -> new_ltEs(vwx22010, vwx24010, ea, eb) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(ty_[], bcb)), bbd)) -> new_lt2(vwx22011, vwx24011, bcb) new_ltEs3(Just(vwx22010), Just(vwx24010), app(ty_Maybe, bef)) -> new_ltEs3(vwx22010, vwx24010, bef) new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(ty_Either, bb), bc), bd) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(ty_@2, ff), fg))) -> new_ltEs0(vwx22011, vwx24011, ff, fg) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(app(ty_@3, bbg), bbh), bca)), bbd)) -> new_lt1(vwx22011, vwx24011, bbg, bbh, bca) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(ty_Maybe, bcc)), bbd)) -> new_lt3(vwx22011, vwx24011, bcc) new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(ty_Maybe, bef))) -> new_ltEs3(vwx22010, vwx24010, bef) new_compare21(vwx2200, vwx2400, False, bg, bh, ca) -> new_ltEs1(vwx2200, vwx2400, bg, bh, ca) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(ty_Either, fc), fd))) -> new_ltEs(vwx22011, vwx24011, fc, fd) new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(ty_[], df)), cg)) -> new_ltEs2(vwx22010, vwx24010, df) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(ty_@2, bac), bad))) -> new_ltEs0(vwx22012, vwx24012, bac, bad) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(ty_Either, ge), gf), gg) -> new_lt0(vwx22010, vwx24010, ge, gf) new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs1(vwx22010, vwx24010, ee, ef, eg) new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(ty_@2, bdh), bea))) -> new_ltEs0(vwx22010, vwx24010, bdh, bea) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), hh), bbd)) -> new_lt1(vwx22010, vwx24010, bch, bda, bdb) new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, cd, app(ty_[], bde)) -> new_compare0(vwx2201, vwx2401, bde) new_ltEs2(vwx2201, vwx2401, bde) -> new_compare0(vwx2201, vwx2401, bde) new_compare0(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(app(ty_@3, dc), dd), de)), cg)) -> new_ltEs1(vwx22010, vwx24010, dc, dd, de) new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(ty_[], bee))) -> new_ltEs2(vwx22010, vwx24010, bee) new_compare2(@2(:(vwx22000, vwx22001), vwx2201), @2(:(vwx24000, vwx24001), vwx2401), False, app(ty_[], cb), bd) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(ty_Maybe, hf)), gg)) -> new_lt3(vwx22010, vwx24010, hf) new_ltEs3(Just(vwx22010), Just(vwx24010), app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx22010, vwx24010, beb, bec, bed) new_lt2(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_compare0(vwx22001, vwx24001, cb) new_compare1(vwx2200, vwx2400, bb, bc) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(ty_Either, baa), bab)) -> new_ltEs(vwx22012, vwx24012, baa, bab) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(ty_Maybe, bcc), bbd) -> new_lt3(vwx22011, vwx24011, bcc) new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(ty_Either, ea), eb))) -> new_ltEs(vwx22010, vwx24010, ea, eb) new_lt1(vwx2200, vwx2400, bg, bh, ca) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(ty_Either, baa), bab))) -> new_ltEs(vwx22012, vwx24012, baa, bab) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(ty_Maybe, bdd)), hh), bbd)) -> new_lt3(vwx22010, vwx24010, bdd) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs1(vwx22012, vwx24012, bae, baf, bag) new_esEs4(vwx11, vwx12, vwx13, vwx14, False, h, ba) -> new_compare2(@2(vwx11, vwx12), @2(vwx13, vwx14), False, h, ba) new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(ty_@2, gh), ha), gg) -> new_lt(vwx22010, vwx24010, gh, ha) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(ty_Maybe, bba)) -> new_ltEs3(vwx22012, vwx24012, bba) new_compare4(vwx2200, vwx2400, cc) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(ty_@2, be), bf), bd) -> new_lt(vwx2200, vwx2400, be, bf) new_compare3(vwx2200, vwx2400, bg, bh, ca) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(ty_[], bah))) -> new_ltEs2(vwx22012, vwx24012, bah) new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(ty_[], bdc), hh, bbd) -> new_lt2(vwx22010, vwx24010, bdc) new_compare22(vwx2200, vwx2400, False, cc) -> new_ltEs3(vwx2200, vwx2400, cc) new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs1(vwx22010, vwx24010, ee, ef, eg) new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(ty_@2, ec), ed)) -> new_ltEs0(vwx22010, vwx24010, ec, ed) new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(ty_@2, gh), ha)), gg)) -> new_lt(vwx22010, vwx24010, gh, ha) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(ty_@2, bcf), bcg)), hh), bbd)) -> new_lt(vwx22010, vwx24010, bcf, bcg) new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(ty_@2, bbe), bbf)), bbd)) -> new_lt(vwx22011, vwx24011, bbe, bbf) new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(ty_Maybe, fa))) -> new_ltEs3(vwx22010, vwx24010, fa) The TRS R consists of the following rules: new_esEs10(vwx30, vwx40, ty_Double) -> new_esEs21(vwx30, vwx40) new_esEs28(vwx22010, vwx24010, app(ty_[], bdc)) -> new_esEs20(vwx22010, vwx24010, bdc) new_lt19(vwx22011, vwx24011, app(app(ty_Either, bbb), bbc)) -> new_lt7(vwx22011, vwx24011, bbb, bbc) new_ltEs19(vwx22012, vwx24012, ty_Integer) -> new_ltEs11(vwx22012, vwx24012) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx220000)), Pos(vwx24000)) -> LT new_esEs26(vwx301, vwx401, app(ty_Ratio, cgh)) -> new_esEs19(vwx301, vwx401, cgh) new_ltEs17(Just(vwx22010), Just(vwx24010), app(ty_[], bee)) -> new_ltEs16(vwx22010, vwx24010, bee) new_esEs33(vwx2200, vwx2400, ty_@0) -> new_esEs16(vwx2200, vwx2400) new_pePe(True, vwx100) -> True new_ltEs19(vwx22012, vwx24012, ty_Double) -> new_ltEs18(vwx22012, vwx24012) new_esEs6(Left(vwx300), Left(vwx400), app(ty_[], bha), bgf) -> new_esEs20(vwx300, vwx400, bha) new_esEs6(Right(vwx300), Right(vwx400), caa, app(ty_[], cad)) -> new_esEs20(vwx300, vwx400, cad) new_compare19(vwx22000, vwx24000, ty_Float) -> new_compare5(vwx22000, vwx24000) new_esEs17(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs11(LT, EQ) -> False new_esEs11(EQ, LT) -> False new_esEs29(vwx22011, vwx24011, ty_Int) -> new_esEs12(vwx22011, vwx24011) new_compare31(vwx2200, vwx2400, bg, bh, ca) -> new_compare23(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) new_esEs27(vwx302, vwx402, ty_@0) -> new_esEs16(vwx302, vwx402) new_esEs8(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs21(vwx300, vwx400) new_esEs5(vwx12, vwx14, ty_Ordering) -> new_esEs11(vwx12, vwx14) new_ltEs12(LT, LT) -> True new_esEs26(vwx301, vwx401, ty_Ordering) -> new_esEs11(vwx301, vwx401) new_compare(:(vwx22000, vwx22001), [], cb) -> GT new_esEs32(vwx300, vwx400, ty_Ordering) -> new_esEs11(vwx300, vwx400) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs32(vwx300, vwx400, app(ty_Ratio, dee)) -> new_esEs19(vwx300, vwx400, dee) new_primCmpInt(Pos(Zero), Neg(Succ(vwx240000))) -> GT new_esEs5(vwx12, vwx14, app(ty_Ratio, dbh)) -> new_esEs19(vwx12, vwx14, dbh) new_esEs25(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_ltEs19(vwx22012, vwx24012, app(app(ty_@2, bac), bad)) -> new_ltEs5(vwx22012, vwx24012, bac, bad) new_esEs28(vwx22010, vwx24010, ty_Char) -> new_esEs18(vwx22010, vwx24010) new_ltEs8(Left(vwx22010), Left(vwx24010), app(app(ty_@2, da), db), cg) -> new_ltEs5(vwx22010, vwx24010, da, db) new_esEs11(LT, GT) -> False new_esEs11(GT, LT) -> False new_primCmpInt(Neg(Succ(vwx220000)), Neg(vwx24000)) -> new_primCmpNat0(vwx24000, Succ(vwx220000)) new_lt20(vwx22010, vwx24010, ty_Char) -> new_lt13(vwx22010, vwx24010) new_esEs24(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs28(vwx22010, vwx24010, ty_Integer) -> new_esEs17(vwx22010, vwx24010) new_compare19(vwx22000, vwx24000, app(app(ty_Either, beg), beh)) -> new_compare15(vwx22000, vwx24000, beg, beh) new_compare12(vwx81, vwx82, vwx83, vwx84, True, bgb, bgc) -> LT new_lt19(vwx22011, vwx24011, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt15(vwx22011, vwx24011, bbg, bbh, bca) new_ltEs5(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, gg) -> new_pePe(new_lt5(vwx22010, vwx24010, fb), new_asAs(new_esEs14(vwx22010, vwx24010, fb), new_ltEs6(vwx22011, vwx24011, gg))) new_esEs8(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs29(vwx22011, vwx24011, ty_Double) -> new_esEs21(vwx22011, vwx24011) new_primCompAux0(vwx108, GT) -> GT new_esEs15(False, False) -> True new_esEs23(vwx300, vwx400, ty_Integer) -> new_esEs17(vwx300, vwx400) new_lt5(vwx22010, vwx24010, ty_Int) -> new_lt6(vwx22010, vwx24010) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_lt5(vwx22010, vwx24010, ty_Float) -> new_lt18(vwx22010, vwx24010) new_compare19(vwx22000, vwx24000, app(app(ty_@2, bfa), bfb)) -> new_compare210(vwx22000, vwx24000, new_esEs9(vwx22000, vwx24000, bfa, bfb), bfa, bfb) new_compare19(vwx22000, vwx24000, ty_@0) -> new_compare28(vwx22000, vwx24000) new_ltEs9(False, True) -> True new_esEs23(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_compare210(vwx220, vwx240, True, cd, bd) -> EQ new_compare18(vwx2200, vwx2400, False, cc) -> GT new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs15(vwx22010, vwx24010, ee, ef, eg) new_esEs23(vwx300, vwx400, app(app(ty_@2, cdc), cdd)) -> new_esEs9(vwx300, vwx400, cdc, cdd) new_ltEs6(vwx22011, vwx24011, app(ty_Ratio, bge)) -> new_ltEs14(vwx22011, vwx24011, bge) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Float, cg) -> new_ltEs4(vwx22010, vwx24010) new_esEs14(vwx22010, vwx24010, ty_Int) -> new_esEs12(vwx22010, vwx24010) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs29(vwx22011, vwx24011, ty_Float) -> new_esEs13(vwx22011, vwx24011) new_esEs14(vwx22010, vwx24010, app(ty_Maybe, hf)) -> new_esEs8(vwx22010, vwx24010, hf) new_primCompAux0(vwx108, LT) -> LT new_lt19(vwx22011, vwx24011, app(ty_[], bcb)) -> new_lt4(vwx22011, vwx24011, bcb) new_ltEs20(vwx2201, vwx2401, app(app(ty_Either, dh), cg)) -> new_ltEs8(vwx2201, vwx2401, dh, cg) new_lt9(vwx2200, vwx2400) -> new_esEs11(new_compare28(vwx2200, vwx2400), LT) new_ltEs6(vwx22011, vwx24011, ty_Float) -> new_ltEs4(vwx22011, vwx24011) new_not(True) -> False new_esEs9(@2(vwx300, vwx301), @2(vwx400, vwx401), cca, ccb) -> new_asAs(new_esEs23(vwx300, vwx400, cca), new_esEs24(vwx301, vwx401, ccb)) new_lt5(vwx22010, vwx24010, ty_Bool) -> new_lt8(vwx22010, vwx24010) new_compare19(vwx22000, vwx24000, ty_Integer) -> new_compare29(vwx22000, vwx24000) new_esEs7(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), ccc, ccd, cce) -> new_asAs(new_esEs25(vwx300, vwx400, ccc), new_asAs(new_esEs26(vwx301, vwx401, ccd), new_esEs27(vwx302, vwx402, cce))) new_compare7(Double(vwx22000, Neg(vwx220010)), Double(vwx24000, Neg(vwx240010))) -> new_compare9(new_sr(vwx22000, Neg(vwx240010)), new_sr(Neg(vwx220010), vwx24000)) new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_esEs33(vwx2200, vwx2400, app(app(ty_Either, bb), bc)) -> new_esEs6(vwx2200, vwx2400, bb, bc) new_ltEs15(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, bbd) -> new_pePe(new_lt20(vwx22010, vwx24010, hg), new_asAs(new_esEs28(vwx22010, vwx24010, hg), new_pePe(new_lt19(vwx22011, vwx24011, hh), new_asAs(new_esEs29(vwx22011, vwx24011, hh), new_ltEs19(vwx22012, vwx24012, bbd))))) new_esEs28(vwx22010, vwx24010, ty_Float) -> new_esEs13(vwx22010, vwx24010) new_esEs23(vwx300, vwx400, app(ty_[], cch)) -> new_esEs20(vwx300, vwx400, cch) new_esEs28(vwx22010, vwx24010, app(ty_Maybe, bdd)) -> new_esEs8(vwx22010, vwx24010, bdd) new_esEs23(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_esEs6(Left(vwx300), Left(vwx400), ty_Int, bgf) -> new_esEs12(vwx300, vwx400) new_compare16(vwx2200, vwx2400, False, bb, bc) -> GT new_esEs31(vwx301, vwx401, ty_Int) -> new_esEs12(vwx301, vwx401) new_esEs25(vwx300, vwx400, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs7(vwx300, vwx400, cga, cgb, cgc) new_lt20(vwx22010, vwx24010, app(app(app(ty_@3, bch), bda), bdb)) -> new_lt15(vwx22010, vwx24010, bch, bda, bdb) new_compare14(vwx2200, vwx2400, True, bg, bh, ca) -> LT new_esEs25(vwx300, vwx400, ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs8(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs15(vwx300, vwx400) new_ltEs17(Just(vwx22010), Just(vwx24010), app(ty_Ratio, dfe)) -> new_ltEs14(vwx22010, vwx24010, dfe) new_ltEs8(Left(vwx22010), Left(vwx24010), app(app(ty_Either, ce), cf), cg) -> new_ltEs8(vwx22010, vwx24010, ce, cf) new_esEs10(vwx30, vwx40, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs7(vwx30, vwx40, ccc, ccd, cce) new_esEs11(EQ, GT) -> False new_esEs11(GT, EQ) -> False new_lt19(vwx22011, vwx24011, ty_Char) -> new_lt13(vwx22011, vwx24011) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs18(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_esEs13(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs12(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_lt20(vwx22010, vwx24010, app(ty_[], bdc)) -> new_lt4(vwx22010, vwx24010, bdc) new_esEs10(vwx30, vwx40, ty_Float) -> new_esEs13(vwx30, vwx40) new_esEs25(vwx300, vwx400, ty_Bool) -> new_esEs15(vwx300, vwx400) new_ltEs6(vwx22011, vwx24011, ty_@0) -> new_ltEs10(vwx22011, vwx24011) new_compare7(Double(vwx22000, Pos(vwx220010)), Double(vwx24000, Pos(vwx240010))) -> new_compare9(new_sr(vwx22000, Pos(vwx240010)), new_sr(Pos(vwx220010), vwx24000)) new_ltEs20(vwx2201, vwx2401, ty_Double) -> new_ltEs18(vwx2201, vwx2401) new_lt20(vwx22010, vwx24010, app(app(ty_Either, bcd), bce)) -> new_lt7(vwx22010, vwx24010, bcd, bce) new_ltEs20(vwx2201, vwx2401, ty_Integer) -> new_ltEs11(vwx2201, vwx2401) new_lt21(vwx2200, vwx2400, app(ty_[], cb)) -> new_lt4(vwx2200, vwx2400, cb) new_lt5(vwx22010, vwx24010, app(ty_Ratio, bgd)) -> new_lt14(vwx22010, vwx24010, bgd) new_esEs27(vwx302, vwx402, ty_Integer) -> new_esEs17(vwx302, vwx402) new_compare11(vwx81, vwx82, vwx83, vwx84, True, vwx86, bgb, bgc) -> new_compare12(vwx81, vwx82, vwx83, vwx84, True, bgb, bgc) new_primCmpInt(Pos(Succ(vwx220000)), Neg(vwx24000)) -> GT new_esEs6(Left(vwx300), Left(vwx400), ty_Bool, bgf) -> new_esEs15(vwx300, vwx400) new_ltEs4(vwx2201, vwx2401) -> new_fsEs(new_compare5(vwx2201, vwx2401)) new_compare24(vwx2200, vwx2400, False) -> new_compare10(vwx2200, vwx2400, new_ltEs9(vwx2200, vwx2400)) new_ltEs20(vwx2201, vwx2401, ty_@0) -> new_ltEs10(vwx2201, vwx2401) new_ltEs20(vwx2201, vwx2401, app(app(ty_@2, fb), gg)) -> new_ltEs5(vwx2201, vwx2401, fb, gg) new_compare9(vwx2200, vwx2400) -> new_primCmpInt(vwx2200, vwx2400) new_compare19(vwx22000, vwx24000, ty_Ordering) -> new_compare8(vwx22000, vwx24000) new_esEs33(vwx2200, vwx2400, ty_Integer) -> new_esEs17(vwx2200, vwx2400) new_esEs29(vwx22011, vwx24011, app(ty_[], bcb)) -> new_esEs20(vwx22011, vwx24011, bcb) new_primPlusNat1(Succ(vwx5500), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat1(vwx5500, vwx401000))) new_esEs24(vwx301, vwx401, app(ty_[], ceb)) -> new_esEs20(vwx301, vwx401, ceb) new_primCmpNat0(Zero, Succ(vwx240000)) -> LT new_lt21(vwx2200, vwx2400, app(app(app(ty_@3, bg), bh), ca)) -> new_lt15(vwx2200, vwx2400, bg, bh, ca) new_esEs6(Left(vwx300), Left(vwx400), app(app(ty_@2, bhd), bhe), bgf) -> new_esEs9(vwx300, vwx400, bhd, bhe) new_esEs22(vwx11, vwx12, vwx13, vwx14, True, h, ba) -> new_esEs11(new_compare210(@2(vwx11, vwx12), @2(vwx13, vwx14), new_esEs5(vwx12, vwx14, ba), h, ba), LT) new_esEs26(vwx301, vwx401, app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(vwx301, vwx401, chc, chd, che) new_ltEs19(vwx22012, vwx24012, ty_@0) -> new_ltEs10(vwx22012, vwx24012) new_esEs30(vwx300, vwx400, ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs20([], [], cbf) -> True new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Float) -> new_ltEs4(vwx22010, vwx24010) new_esEs10(vwx30, vwx40, app(ty_Maybe, cbg)) -> new_esEs8(vwx30, vwx40, cbg) new_esEs24(vwx301, vwx401, ty_Int) -> new_esEs12(vwx301, vwx401) new_esEs32(vwx300, vwx400, app(app(app(ty_@3, deh), dfa), dfb)) -> new_esEs7(vwx300, vwx400, deh, dfa, dfb) new_esEs25(vwx300, vwx400, ty_Ordering) -> new_esEs11(vwx300, vwx400) new_esEs14(vwx22010, vwx24010, app(app(ty_Either, ge), gf)) -> new_esEs6(vwx22010, vwx24010, ge, gf) new_primCmpNat0(Succ(vwx220000), Zero) -> GT new_lt5(vwx22010, vwx24010, app(app(ty_@2, gh), ha)) -> new_lt11(vwx22010, vwx24010, gh, ha) new_ltEs17(Nothing, Nothing, dfd) -> True new_pePe(False, vwx100) -> vwx100 new_esEs23(vwx300, vwx400, app(ty_Maybe, cda)) -> new_esEs8(vwx300, vwx400, cda) new_ltEs17(Nothing, Just(vwx24010), dfd) -> True new_esEs14(vwx22010, vwx24010, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs7(vwx22010, vwx24010, hb, hc, hd) new_ltEs17(Just(vwx22010), Nothing, dfd) -> False new_ltEs12(GT, GT) -> True new_lt21(vwx2200, vwx2400, ty_Char) -> new_lt13(vwx2200, vwx2400) new_ltEs20(vwx2201, vwx2401, app(ty_Maybe, dfd)) -> new_ltEs17(vwx2201, vwx2401, dfd) new_compare25(vwx2200, vwx2400, True, bb, bc) -> EQ new_lt19(vwx22011, vwx24011, ty_@0) -> new_lt9(vwx22011, vwx24011) new_ltEs16(vwx2201, vwx2401, bde) -> new_fsEs(new_compare(vwx2201, vwx2401, bde)) new_ltEs9(True, True) -> True new_esEs29(vwx22011, vwx24011, ty_Integer) -> new_esEs17(vwx22011, vwx24011) new_compare19(vwx22000, vwx24000, ty_Int) -> new_compare9(vwx22000, vwx24000) new_esEs14(vwx22010, vwx24010, ty_Bool) -> new_esEs15(vwx22010, vwx24010) new_ltEs12(GT, EQ) -> False new_ltEs6(vwx22011, vwx24011, app(app(ty_@2, ff), fg)) -> new_ltEs5(vwx22011, vwx24011, ff, fg) new_esEs26(vwx301, vwx401, app(app(ty_@2, cha), chb)) -> new_esEs9(vwx301, vwx401, cha, chb) new_esEs8(Just(vwx300), Just(vwx400), app(ty_[], dch)) -> new_esEs20(vwx300, vwx400, dch) new_ltEs20(vwx2201, vwx2401, ty_Char) -> new_ltEs13(vwx2201, vwx2401) new_ltEs17(Just(vwx22010), Just(vwx24010), app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs15(vwx22010, vwx24010, beb, bec, bed) new_esEs33(vwx2200, vwx2400, ty_Char) -> new_esEs18(vwx2200, vwx2400) new_esEs25(vwx300, vwx400, app(ty_Ratio, cff)) -> new_esEs19(vwx300, vwx400, cff) new_esEs27(vwx302, vwx402, app(ty_[], chh)) -> new_esEs20(vwx302, vwx402, chh) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Char) -> new_esEs18(vwx300, vwx400) new_esEs10(vwx30, vwx40, ty_Ordering) -> new_esEs11(vwx30, vwx40) new_esEs28(vwx22010, vwx24010, ty_Double) -> new_esEs21(vwx22010, vwx24010) new_esEs10(vwx30, vwx40, ty_Char) -> new_esEs18(vwx30, vwx40) new_primEqInt(Pos(Zero), Neg(Succ(vwx4000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vwx4000))) -> False new_lt19(vwx22011, vwx24011, ty_Ordering) -> new_lt12(vwx22011, vwx24011) new_esEs28(vwx22010, vwx24010, ty_@0) -> new_esEs16(vwx22010, vwx24010) new_esEs23(vwx300, vwx400, ty_Ordering) -> new_esEs11(vwx300, vwx400) new_ltEs10(vwx2201, vwx2401) -> new_fsEs(new_compare28(vwx2201, vwx2401)) new_esEs8(Just(vwx300), Just(vwx400), app(ty_Ratio, ddb)) -> new_esEs19(vwx300, vwx400, ddb) new_esEs33(vwx2200, vwx2400, ty_Ordering) -> new_esEs11(vwx2200, vwx2400) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Float) -> new_esEs13(vwx300, vwx400) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Integer, cg) -> new_ltEs11(vwx22010, vwx24010) new_compare29(Integer(vwx22000), Integer(vwx24000)) -> new_primCmpInt(vwx22000, vwx24000) new_compare5(Float(vwx22000, Pos(vwx220010)), Float(vwx24000, Neg(vwx240010))) -> new_compare9(new_sr(vwx22000, Pos(vwx240010)), new_sr(Neg(vwx220010), vwx24000)) new_compare5(Float(vwx22000, Neg(vwx220010)), Float(vwx24000, Pos(vwx240010))) -> new_compare9(new_sr(vwx22000, Neg(vwx240010)), new_sr(Pos(vwx220010), vwx24000)) new_esEs14(vwx22010, vwx24010, app(ty_[], he)) -> new_esEs20(vwx22010, vwx24010, he) new_fsEs(vwx87) -> new_not(new_esEs11(vwx87, GT)) new_ltEs19(vwx22012, vwx24012, ty_Char) -> new_ltEs13(vwx22012, vwx24012) new_ltEs6(vwx22011, vwx24011, app(app(ty_Either, fc), fd)) -> new_ltEs8(vwx22011, vwx24011, fc, fd) new_esEs15(True, True) -> True new_esEs29(vwx22011, vwx24011, ty_Char) -> new_esEs18(vwx22011, vwx24011) new_esEs5(vwx12, vwx14, ty_Bool) -> new_esEs15(vwx12, vwx14) new_esEs8(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs11(vwx300, vwx400) new_esEs29(vwx22011, vwx24011, ty_Bool) -> new_esEs15(vwx22011, vwx24011) new_ltEs20(vwx2201, vwx2401, ty_Float) -> new_ltEs4(vwx2201, vwx2401) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs25(vwx300, vwx400, app(ty_Maybe, cfe)) -> new_esEs8(vwx300, vwx400, cfe) new_ltEs19(vwx22012, vwx24012, app(ty_Maybe, bba)) -> new_ltEs17(vwx22012, vwx24012, bba) new_esEs23(vwx300, vwx400, ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs8(Just(vwx300), Just(vwx400), app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs7(vwx300, vwx400, dde, ddf, ddg) new_primCmpInt(Neg(Zero), Pos(Succ(vwx240000))) -> LT new_esEs25(vwx300, vwx400, app(ty_[], cfd)) -> new_esEs20(vwx300, vwx400, cfd) new_ltEs7(vwx2201, vwx2401) -> new_fsEs(new_compare9(vwx2201, vwx2401)) new_lt17(vwx2200, vwx2400) -> new_esEs11(new_compare7(vwx2200, vwx2400), LT) new_esEs5(vwx12, vwx14, ty_Double) -> new_esEs21(vwx12, vwx14) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs28(vwx22010, vwx24010, app(app(ty_@2, bcf), bcg)) -> new_esEs9(vwx22010, vwx24010, bcf, bcg) new_lt21(vwx2200, vwx2400, ty_Float) -> new_lt18(vwx2200, vwx2400) new_esEs24(vwx301, vwx401, app(app(ty_Either, cdh), cea)) -> new_esEs6(vwx301, vwx401, cdh, cea) new_esEs5(vwx12, vwx14, app(app(ty_@2, dca), dcb)) -> new_esEs9(vwx12, vwx14, dca, dcb) new_lt21(vwx2200, vwx2400, ty_Int) -> new_lt6(vwx2200, vwx2400) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Ordering, cg) -> new_ltEs12(vwx22010, vwx24010) new_esEs6(Left(vwx300), Left(vwx400), app(app(ty_Either, bgg), bgh), bgf) -> new_esEs6(vwx300, vwx400, bgg, bgh) new_esEs27(vwx302, vwx402, app(ty_Ratio, dab)) -> new_esEs19(vwx302, vwx402, dab) new_ltEs8(Right(vwx22010), Left(vwx24010), dh, cg) -> False new_esEs32(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_esEs32(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_esEs26(vwx301, vwx401, ty_Bool) -> new_esEs15(vwx301, vwx401) new_primPlusNat0(Zero, vwx40100) -> Succ(vwx40100) new_esEs10(vwx30, vwx40, app(app(ty_Either, caa), bgf)) -> new_esEs6(vwx30, vwx40, caa, bgf) new_esEs5(vwx12, vwx14, ty_@0) -> new_esEs16(vwx12, vwx14) new_ltEs19(vwx22012, vwx24012, ty_Bool) -> new_ltEs9(vwx22012, vwx24012) new_compare26(vwx2200, vwx2400, True, cc) -> EQ new_esEs6(Left(vwx300), Left(vwx400), ty_Ordering, bgf) -> new_esEs11(vwx300, vwx400) new_ltEs8(Left(vwx22010), Left(vwx24010), app(ty_Maybe, dg), cg) -> new_ltEs17(vwx22010, vwx24010, dg) new_ltEs6(vwx22011, vwx24011, app(ty_[], gc)) -> new_ltEs16(vwx22011, vwx24011, gc) new_esEs32(vwx300, vwx400, ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs11(LT, LT) -> True new_esEs14(vwx22010, vwx24010, app(ty_Ratio, bgd)) -> new_esEs19(vwx22010, vwx24010, bgd) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(app(ty_Either, ea), eb)) -> new_ltEs8(vwx22010, vwx24010, ea, eb) new_esEs5(vwx12, vwx14, ty_Integer) -> new_esEs17(vwx12, vwx14) new_esEs27(vwx302, vwx402, ty_Bool) -> new_esEs15(vwx302, vwx402) new_esEs6(Right(vwx300), Right(vwx400), caa, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs7(vwx300, vwx400, cba, cbb, cbc) new_ltEs19(vwx22012, vwx24012, app(app(ty_Either, baa), bab)) -> new_ltEs8(vwx22012, vwx24012, baa, bab) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Integer) -> new_esEs17(vwx300, vwx400) new_esEs28(vwx22010, vwx24010, ty_Bool) -> new_esEs15(vwx22010, vwx24010) new_lt6(vwx2200, vwx2400) -> new_esEs11(new_compare9(vwx2200, vwx2400), LT) new_esEs24(vwx301, vwx401, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs7(vwx301, vwx401, ceg, ceh, cfa) new_primPlusNat1(Succ(vwx5500), Zero) -> Succ(vwx5500) new_primPlusNat1(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_esEs31(vwx301, vwx401, ty_Integer) -> new_esEs17(vwx301, vwx401) new_ltEs20(vwx2201, vwx2401, app(ty_[], bde)) -> new_ltEs16(vwx2201, vwx2401, bde) new_ltEs17(Just(vwx22010), Just(vwx24010), app(ty_Maybe, bef)) -> new_ltEs17(vwx22010, vwx24010, bef) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Bool, cg) -> new_ltEs9(vwx22010, vwx24010) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_@0, cg) -> new_ltEs10(vwx22010, vwx24010) new_compare27(vwx2200, vwx2400) -> new_compare24(vwx2200, vwx2400, new_esEs15(vwx2200, vwx2400)) new_ltEs19(vwx22012, vwx24012, ty_Float) -> new_ltEs4(vwx22012, vwx24012) new_compare15(vwx2200, vwx2400, bb, bc) -> new_compare25(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) new_lt20(vwx22010, vwx24010, ty_@0) -> new_lt9(vwx22010, vwx24010) new_esEs30(vwx300, vwx400, ty_Integer) -> new_esEs17(vwx300, vwx400) new_lt20(vwx22010, vwx24010, ty_Float) -> new_lt18(vwx22010, vwx24010) new_lt21(vwx2200, vwx2400, ty_Ordering) -> new_lt12(vwx2200, vwx2400) new_compare19(vwx22000, vwx24000, app(ty_Ratio, dbc)) -> new_compare30(vwx22000, vwx24000, dbc) new_ltEs6(vwx22011, vwx24011, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs15(vwx22011, vwx24011, fh, ga, gb) new_esEs8(Just(vwx300), Just(vwx400), app(ty_Maybe, dda)) -> new_esEs8(vwx300, vwx400, dda) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Int) -> new_ltEs7(vwx22010, vwx24010) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(app(ty_@2, ec), ed)) -> new_ltEs5(vwx22010, vwx24010, ec, ed) new_ltEs19(vwx22012, vwx24012, app(ty_[], bah)) -> new_ltEs16(vwx22012, vwx24012, bah) new_ltEs20(vwx2201, vwx2401, app(app(app(ty_@3, hg), hh), bbd)) -> new_ltEs15(vwx2201, vwx2401, hg, hh, bbd) new_esEs23(vwx300, vwx400, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vwx300, vwx400, cde, cdf, cdg) new_esEs26(vwx301, vwx401, app(ty_[], cgf)) -> new_esEs20(vwx301, vwx401, cgf) new_ltEs11(vwx2201, vwx2401) -> new_fsEs(new_compare29(vwx2201, vwx2401)) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx240000))) -> new_primCmpNat0(Zero, Succ(vwx240000)) new_lt19(vwx22011, vwx24011, ty_Integer) -> new_lt10(vwx22011, vwx24011) new_lt20(vwx22010, vwx24010, ty_Ordering) -> new_lt12(vwx22010, vwx24010) new_compare23(vwx2200, vwx2400, False, bg, bh, ca) -> new_compare14(vwx2200, vwx2400, new_ltEs15(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) new_compare([], :(vwx24000, vwx24001), cb) -> LT new_lt10(vwx2200, vwx2400) -> new_esEs11(new_compare29(vwx2200, vwx2400), LT) new_ltEs18(vwx2201, vwx2401) -> new_fsEs(new_compare7(vwx2201, vwx2401)) new_lt19(vwx22011, vwx24011, ty_Float) -> new_lt18(vwx22011, vwx24011) new_esEs33(vwx2200, vwx2400, ty_Int) -> new_esEs12(vwx2200, vwx2400) new_esEs24(vwx301, vwx401, app(ty_Maybe, cec)) -> new_esEs8(vwx301, vwx401, cec) new_esEs6(Right(vwx300), Right(vwx400), caa, app(ty_Maybe, cae)) -> new_esEs8(vwx300, vwx400, cae) new_lt20(vwx22010, vwx24010, ty_Integer) -> new_lt10(vwx22010, vwx24010) new_ltEs19(vwx22012, vwx24012, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs15(vwx22012, vwx24012, bae, baf, bag) new_compare211(vwx2200, vwx2400, False) -> new_compare13(vwx2200, vwx2400, new_ltEs12(vwx2200, vwx2400)) new_lt5(vwx22010, vwx24010, ty_Integer) -> new_lt10(vwx22010, vwx24010) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Double) -> new_ltEs18(vwx22010, vwx24010) new_esEs10(vwx30, vwx40, ty_Int) -> new_esEs12(vwx30, vwx40) new_esEs27(vwx302, vwx402, app(app(ty_@2, dac), dad)) -> new_esEs9(vwx302, vwx402, dac, dad) new_esEs23(vwx300, vwx400, app(app(ty_Either, ccf), ccg)) -> new_esEs6(vwx300, vwx400, ccf, ccg) new_lt5(vwx22010, vwx24010, ty_Ordering) -> new_lt12(vwx22010, vwx24010) new_ltEs6(vwx22011, vwx24011, ty_Char) -> new_ltEs13(vwx22011, vwx24011) new_esEs10(vwx30, vwx40, app(app(ty_@2, cca), ccb)) -> new_esEs9(vwx30, vwx40, cca, ccb) new_esEs10(vwx30, vwx40, ty_@0) -> new_esEs16(vwx30, vwx40) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs8(Just(vwx300), Just(vwx400), app(app(ty_@2, ddc), ddd)) -> new_esEs9(vwx300, vwx400, ddc, ddd) new_esEs33(vwx2200, vwx2400, ty_Double) -> new_esEs21(vwx2200, vwx2400) new_ltEs6(vwx22011, vwx24011, ty_Int) -> new_ltEs7(vwx22011, vwx24011) new_esEs8(Nothing, Nothing, cbg) -> True new_lt21(vwx2200, vwx2400, app(app(ty_@2, be), bf)) -> new_lt11(vwx2200, vwx2400, be, bf) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Double) -> new_esEs21(vwx300, vwx400) new_ltEs13(vwx2201, vwx2401) -> new_fsEs(new_compare6(vwx2201, vwx2401)) new_esEs6(Right(vwx300), Right(vwx400), caa, app(app(ty_Either, cab), cac)) -> new_esEs6(vwx300, vwx400, cab, cac) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Char, cg) -> new_ltEs13(vwx22010, vwx24010) new_ltEs6(vwx22011, vwx24011, app(ty_Maybe, gd)) -> new_ltEs17(vwx22011, vwx24011, gd) new_ltEs19(vwx22012, vwx24012, ty_Ordering) -> new_ltEs12(vwx22012, vwx24012) new_esEs24(vwx301, vwx401, ty_Ordering) -> new_esEs11(vwx301, vwx401) new_sr0(Integer(vwx220000), Integer(vwx240010)) -> Integer(new_primMulInt(vwx220000, vwx240010)) new_esEs8(Nothing, Just(vwx400), cbg) -> False new_esEs8(Just(vwx300), Nothing, cbg) -> False new_esEs25(vwx300, vwx400, app(app(ty_@2, cfg), cfh)) -> new_esEs9(vwx300, vwx400, cfg, cfh) new_lt13(vwx2200, vwx2400) -> new_esEs11(new_compare6(vwx2200, vwx2400), LT) new_esEs28(vwx22010, vwx24010, app(app(app(ty_@3, bch), bda), bdb)) -> new_esEs7(vwx22010, vwx24010, bch, bda, bdb) new_esEs5(vwx12, vwx14, ty_Char) -> new_esEs18(vwx12, vwx14) new_lt21(vwx2200, vwx2400, ty_Integer) -> new_lt10(vwx2200, vwx2400) new_esEs29(vwx22011, vwx24011, app(app(ty_@2, bbe), bbf)) -> new_esEs9(vwx22011, vwx24011, bbe, bbf) new_esEs24(vwx301, vwx401, app(ty_Ratio, ced)) -> new_esEs19(vwx301, vwx401, ced) new_esEs29(vwx22011, vwx24011, ty_@0) -> new_esEs16(vwx22011, vwx24011) new_esEs32(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_asAs(True, vwx32) -> vwx32 new_esEs32(vwx300, vwx400, app(ty_Maybe, ded)) -> new_esEs8(vwx300, vwx400, ded) new_esEs26(vwx301, vwx401, ty_Float) -> new_esEs13(vwx301, vwx401) new_esEs5(vwx12, vwx14, app(ty_Maybe, dbg)) -> new_esEs8(vwx12, vwx14, dbg) new_lt19(vwx22011, vwx24011, ty_Double) -> new_lt17(vwx22011, vwx24011) new_esEs6(Left(vwx300), Left(vwx400), app(ty_Ratio, bhc), bgf) -> new_esEs19(vwx300, vwx400, bhc) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Float) -> new_ltEs4(vwx22010, vwx24010) new_compare18(vwx2200, vwx2400, True, cc) -> LT new_esEs6(Left(vwx300), Right(vwx400), caa, bgf) -> False new_esEs6(Right(vwx300), Left(vwx400), caa, bgf) -> False new_esEs28(vwx22010, vwx24010, ty_Ordering) -> new_esEs11(vwx22010, vwx24010) new_esEs16(@0, @0) -> True new_esEs5(vwx12, vwx14, ty_Float) -> new_esEs13(vwx12, vwx14) new_lt5(vwx22010, vwx24010, ty_@0) -> new_lt9(vwx22010, vwx24010) new_esEs23(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_lt11(@2(vwx30, vwx31), @2(vwx40, vwx41), bfh, bga) -> new_esEs22(vwx30, vwx31, vwx40, vwx41, new_esEs10(vwx30, vwx40, bfh), bfh, bga) new_esEs26(vwx301, vwx401, ty_Integer) -> new_esEs17(vwx301, vwx401) new_lt20(vwx22010, vwx24010, ty_Bool) -> new_lt8(vwx22010, vwx24010) new_lt5(vwx22010, vwx24010, ty_Char) -> new_lt13(vwx22010, vwx24010) new_esEs26(vwx301, vwx401, ty_Char) -> new_esEs18(vwx301, vwx401) new_compare16(vwx2200, vwx2400, True, bb, bc) -> LT new_esEs23(vwx300, vwx400, ty_Bool) -> new_esEs15(vwx300, vwx400) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Int, cg) -> new_ltEs7(vwx22010, vwx24010) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Int) -> new_esEs12(vwx300, vwx400) new_esEs32(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_lt4(vwx2200, vwx2400, cb) -> new_esEs11(new_compare(vwx2200, vwx2400, cb), LT) new_ltEs8(Left(vwx22010), Left(vwx24010), app(ty_Ratio, cbd), cg) -> new_ltEs14(vwx22010, vwx24010, cbd) new_primCmpInt(Pos(Succ(vwx220000)), Pos(vwx24000)) -> new_primCmpNat0(Succ(vwx220000), vwx24000) new_compare12(vwx81, vwx82, vwx83, vwx84, False, bgb, bgc) -> GT new_compare210(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, cd, bd) -> new_compare11(vwx2200, vwx2201, vwx2400, vwx2401, new_lt21(vwx2200, vwx2400, cd), new_asAs(new_esEs33(vwx2200, vwx2400, cd), new_ltEs20(vwx2201, vwx2401, bd)), cd, bd) new_esEs6(Right(vwx300), Right(vwx400), caa, app(ty_Ratio, caf)) -> new_esEs19(vwx300, vwx400, caf) new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_esEs5(vwx12, vwx14, ty_Int) -> new_esEs12(vwx12, vwx14) new_lt19(vwx22011, vwx24011, app(app(ty_@2, bbe), bbf)) -> new_lt11(vwx22011, vwx24011, bbe, bbf) new_compare19(vwx22000, vwx24000, ty_Char) -> new_compare6(vwx22000, vwx24000) new_esEs32(vwx300, vwx400, ty_Integer) -> new_esEs17(vwx300, vwx400) new_ltEs9(False, False) -> True new_primMulNat0(Zero, Zero) -> Zero new_lt15(vwx2200, vwx2400, bg, bh, ca) -> new_esEs11(new_compare31(vwx2200, vwx2400, bg, bh, ca), LT) new_ltEs20(vwx2201, vwx2401, ty_Ordering) -> new_ltEs12(vwx2201, vwx2401) new_lt21(vwx2200, vwx2400, ty_@0) -> new_lt9(vwx2200, vwx2400) new_esEs27(vwx302, vwx402, app(ty_Maybe, daa)) -> new_esEs8(vwx302, vwx402, daa) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Char) -> new_ltEs13(vwx22010, vwx24010) new_compare10(vwx2200, vwx2400, False) -> GT new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Ordering) -> new_ltEs12(vwx22010, vwx24010) new_lt21(vwx2200, vwx2400, app(ty_Maybe, cc)) -> new_lt16(vwx2200, vwx2400, cc) new_compare19(vwx22000, vwx24000, app(ty_[], bff)) -> new_compare(vwx22000, vwx24000, bff) new_ltEs17(Just(vwx22010), Just(vwx24010), app(app(ty_@2, bdh), bea)) -> new_ltEs5(vwx22010, vwx24010, bdh, bea) new_esEs20(:(vwx300, vwx301), :(vwx400, vwx401), cbf) -> new_asAs(new_esEs32(vwx300, vwx400, cbf), new_esEs20(vwx301, vwx401, cbf)) new_esEs14(vwx22010, vwx24010, app(app(ty_@2, gh), ha)) -> new_esEs9(vwx22010, vwx24010, gh, ha) new_ltEs20(vwx2201, vwx2401, ty_Bool) -> new_ltEs9(vwx2201, vwx2401) new_compare14(vwx2200, vwx2400, False, bg, bh, ca) -> GT new_esEs26(vwx301, vwx401, app(app(ty_Either, cgd), cge)) -> new_esEs6(vwx301, vwx401, cgd, cge) new_compare211(vwx2200, vwx2400, True) -> EQ new_esEs32(vwx300, vwx400, app(app(ty_Either, dea), deb)) -> new_esEs6(vwx300, vwx400, dea, deb) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Int) -> new_ltEs7(vwx22010, vwx24010) new_lt5(vwx22010, vwx24010, app(app(ty_Either, ge), gf)) -> new_lt7(vwx22010, vwx24010, ge, gf) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Bool) -> new_esEs15(vwx300, vwx400) new_compare8(vwx2200, vwx2400) -> new_compare211(vwx2200, vwx2400, new_esEs11(vwx2200, vwx2400)) new_esEs33(vwx2200, vwx2400, app(app(app(ty_@3, bg), bh), ca)) -> new_esEs7(vwx2200, vwx2400, bg, bh, ca) new_esEs27(vwx302, vwx402, ty_Float) -> new_esEs13(vwx302, vwx402) new_lt20(vwx22010, vwx24010, ty_Int) -> new_lt6(vwx22010, vwx24010) new_compare25(vwx2200, vwx2400, False, bb, bc) -> new_compare16(vwx2200, vwx2400, new_ltEs8(vwx2200, vwx2400, bb, bc), bb, bc) new_esEs6(Right(vwx300), Right(vwx400), caa, app(app(ty_@2, cag), cah)) -> new_esEs9(vwx300, vwx400, cag, cah) new_esEs26(vwx301, vwx401, app(ty_Maybe, cgg)) -> new_esEs8(vwx301, vwx401, cgg) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Double) -> new_ltEs18(vwx22010, vwx24010) new_esEs5(vwx12, vwx14, app(ty_[], dbf)) -> new_esEs20(vwx12, vwx14, dbf) new_esEs14(vwx22010, vwx24010, ty_Ordering) -> new_esEs11(vwx22010, vwx24010) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(ty_Ratio, cbe)) -> new_ltEs14(vwx22010, vwx24010, cbe) new_esEs8(Just(vwx300), Just(vwx400), app(app(ty_Either, dcf), dcg)) -> new_esEs6(vwx300, vwx400, dcf, dcg) new_ltEs6(vwx22011, vwx24011, ty_Bool) -> new_ltEs9(vwx22011, vwx24011) new_esEs29(vwx22011, vwx24011, app(ty_Ratio, dba)) -> new_esEs19(vwx22011, vwx24011, dba) new_compare17(vwx2200, vwx2400, cc) -> new_compare26(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) new_lt19(vwx22011, vwx24011, ty_Bool) -> new_lt8(vwx22011, vwx24011) new_ltEs12(GT, LT) -> False new_esEs25(vwx300, vwx400, app(app(ty_Either, cfb), cfc)) -> new_esEs6(vwx300, vwx400, cfb, cfc) new_esEs33(vwx2200, vwx2400, ty_Float) -> new_esEs13(vwx2200, vwx2400) new_ltEs9(True, False) -> False new_primCompAux0(vwx108, EQ) -> vwx108 new_ltEs17(Just(vwx22010), Just(vwx24010), app(app(ty_Either, bdf), bdg)) -> new_ltEs8(vwx22010, vwx24010, bdf, bdg) new_esEs24(vwx301, vwx401, ty_Bool) -> new_esEs15(vwx301, vwx401) new_lt18(vwx2200, vwx2400) -> new_esEs11(new_compare5(vwx2200, vwx2400), LT) new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_compare([], [], cb) -> EQ new_esEs11(GT, GT) -> True new_lt19(vwx22011, vwx24011, app(ty_Ratio, dba)) -> new_lt14(vwx22011, vwx24011, dba) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_esEs28(vwx22010, vwx24010, app(ty_Ratio, dah)) -> new_esEs19(vwx22010, vwx24010, dah) new_esEs10(vwx30, vwx40, ty_Integer) -> new_esEs17(vwx30, vwx40) new_esEs24(vwx301, vwx401, app(app(ty_@2, cee), cef)) -> new_esEs9(vwx301, vwx401, cee, cef) new_esEs11(EQ, EQ) -> True new_lt19(vwx22011, vwx24011, ty_Int) -> new_lt6(vwx22011, vwx24011) new_compare24(vwx2200, vwx2400, True) -> EQ new_ltEs8(Left(vwx22010), Left(vwx24010), app(app(app(ty_@3, dc), dd), de), cg) -> new_ltEs15(vwx22010, vwx24010, dc, dd, de) new_lt16(vwx2200, vwx2400, cc) -> new_esEs11(new_compare17(vwx2200, vwx2400, cc), LT) new_compare7(Double(vwx22000, Pos(vwx220010)), Double(vwx24000, Neg(vwx240010))) -> new_compare9(new_sr(vwx22000, Pos(vwx240010)), new_sr(Neg(vwx220010), vwx24000)) new_compare7(Double(vwx22000, Neg(vwx220010)), Double(vwx24000, Pos(vwx240010))) -> new_compare9(new_sr(vwx22000, Neg(vwx240010)), new_sr(Pos(vwx220010), vwx24000)) new_esEs33(vwx2200, vwx2400, app(ty_Maybe, cc)) -> new_esEs8(vwx2200, vwx2400, cc) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_lt20(vwx22010, vwx24010, app(app(ty_@2, bcf), bcg)) -> new_lt11(vwx22010, vwx24010, bcf, bcg) new_lt7(vwx2200, vwx2400, bb, bc) -> new_esEs11(new_compare15(vwx2200, vwx2400, bb, bc), LT) new_esEs23(vwx300, vwx400, app(ty_Ratio, cdb)) -> new_esEs19(vwx300, vwx400, cdb) new_esEs27(vwx302, vwx402, ty_Double) -> new_esEs21(vwx302, vwx402) new_lt20(vwx22010, vwx24010, app(ty_Ratio, dah)) -> new_lt14(vwx22010, vwx24010, dah) new_primCmpInt(Neg(Zero), Neg(Succ(vwx240000))) -> new_primCmpNat0(Succ(vwx240000), Zero) new_compare30(:%(vwx22000, vwx22001), :%(vwx24000, vwx24001), ty_Int) -> new_compare9(new_sr(vwx22000, vwx24001), new_sr(vwx24000, vwx22001)) new_esEs20(:(vwx300, vwx301), [], cbf) -> False new_esEs20([], :(vwx400, vwx401), cbf) -> False new_ltEs12(EQ, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs27(vwx302, vwx402, ty_Char) -> new_esEs18(vwx302, vwx402) new_primCompAux1(vwx22000, vwx24000, vwx95, cb) -> new_primCompAux0(vwx95, new_compare19(vwx22000, vwx24000, cb)) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(ty_[], eh)) -> new_ltEs16(vwx22010, vwx24010, eh) new_lt21(vwx2200, vwx2400, ty_Bool) -> new_lt8(vwx2200, vwx2400) new_esEs8(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs18(vwx300, vwx400) new_ltEs12(EQ, EQ) -> True new_esEs6(Left(vwx300), Left(vwx400), ty_Float, bgf) -> new_esEs13(vwx300, vwx400) new_lt19(vwx22011, vwx24011, app(ty_Maybe, bcc)) -> new_lt16(vwx22011, vwx24011, bcc) new_lt8(vwx2200, vwx2400) -> new_esEs11(new_compare27(vwx2200, vwx2400), LT) new_esEs12(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_ltEs8(Left(vwx22010), Left(vwx24010), app(ty_[], df), cg) -> new_ltEs16(vwx22010, vwx24010, df) new_esEs26(vwx301, vwx401, ty_Double) -> new_esEs21(vwx301, vwx401) new_esEs23(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_compare23(vwx2200, vwx2400, True, bg, bh, ca) -> EQ new_esEs29(vwx22011, vwx24011, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(vwx22011, vwx24011, bbg, bbh, bca) new_not(False) -> True new_ltEs8(Left(vwx22010), Right(vwx24010), dh, cg) -> True new_esEs14(vwx22010, vwx24010, ty_Integer) -> new_esEs17(vwx22010, vwx24010) new_compare19(vwx22000, vwx24000, app(ty_Maybe, bfg)) -> new_compare17(vwx22000, vwx24000, bfg) new_lt12(vwx2200, vwx2400) -> new_esEs11(new_compare8(vwx2200, vwx2400), LT) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Bool) -> new_ltEs9(vwx22010, vwx24010) new_esEs6(Right(vwx300), Right(vwx400), caa, ty_Ordering) -> new_esEs11(vwx300, vwx400) new_ltEs8(Left(vwx22010), Left(vwx24010), ty_Double, cg) -> new_ltEs18(vwx22010, vwx24010) new_lt5(vwx22010, vwx24010, app(ty_[], he)) -> new_lt4(vwx22010, vwx24010, he) new_ltEs6(vwx22011, vwx24011, ty_Integer) -> new_ltEs11(vwx22011, vwx24011) new_esEs27(vwx302, vwx402, ty_Ordering) -> new_esEs11(vwx302, vwx402) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_@0) -> new_ltEs10(vwx22010, vwx24010) new_esEs29(vwx22011, vwx24011, app(app(ty_Either, bbb), bbc)) -> new_esEs6(vwx22011, vwx24011, bbb, bbc) new_ltEs6(vwx22011, vwx24011, ty_Double) -> new_ltEs18(vwx22011, vwx24011) new_lt5(vwx22010, vwx24010, app(app(app(ty_@3, hb), hc), hd)) -> new_lt15(vwx22010, vwx24010, hb, hc, hd) new_esEs24(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_compare13(vwx2200, vwx2400, True) -> LT new_lt5(vwx22010, vwx24010, ty_Double) -> new_lt17(vwx22010, vwx24010) new_ltEs20(vwx2201, vwx2401, app(ty_Ratio, ddh)) -> new_ltEs14(vwx2201, vwx2401, ddh) new_esEs32(vwx300, vwx400, ty_Bool) -> new_esEs15(vwx300, vwx400) new_esEs27(vwx302, vwx402, app(app(app(ty_@3, dae), daf), dag)) -> new_esEs7(vwx302, vwx402, dae, daf, dag) new_primPlusNat0(Succ(vwx550), vwx40100) -> Succ(Succ(new_primPlusNat1(vwx550, vwx40100))) new_esEs32(vwx300, vwx400, app(app(ty_@2, def), deg)) -> new_esEs9(vwx300, vwx400, def, deg) new_ltEs14(vwx2201, vwx2401, ddh) -> new_fsEs(new_compare30(vwx2201, vwx2401, ddh)) new_lt21(vwx2200, vwx2400, app(ty_Ratio, dfc)) -> new_lt14(vwx2200, vwx2400, dfc) new_ltEs19(vwx22012, vwx24012, ty_Int) -> new_ltEs7(vwx22012, vwx24012) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_@0) -> new_ltEs10(vwx22010, vwx24010) new_compare5(Float(vwx22000, Neg(vwx220010)), Float(vwx24000, Neg(vwx240010))) -> new_compare9(new_sr(vwx22000, Neg(vwx240010)), new_sr(Neg(vwx220010), vwx24000)) new_ltEs19(vwx22012, vwx24012, app(ty_Ratio, dbb)) -> new_ltEs14(vwx22012, vwx24012, dbb) new_compare10(vwx2200, vwx2400, True) -> LT new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(vwx22010, vwx24010, ty_Double) -> new_lt17(vwx22010, vwx24010) new_primPlusNat1(Zero, Zero) -> Zero new_lt14(vwx2200, vwx2400, dfc) -> new_esEs11(new_compare30(vwx2200, vwx2400, dfc), LT) new_esEs10(vwx30, vwx40, app(ty_Ratio, cbh)) -> new_esEs19(vwx30, vwx40, cbh) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Integer) -> new_ltEs11(vwx22010, vwx24010) new_esEs26(vwx301, vwx401, ty_@0) -> new_esEs16(vwx301, vwx401) new_ltEs20(vwx2201, vwx2401, ty_Int) -> new_ltEs7(vwx2201, vwx2401) new_ltEs6(vwx22011, vwx24011, ty_Ordering) -> new_ltEs12(vwx22011, vwx24011) new_esEs28(vwx22010, vwx24010, ty_Int) -> new_esEs12(vwx22010, vwx24010) new_esEs27(vwx302, vwx402, app(app(ty_Either, chf), chg)) -> new_esEs6(vwx302, vwx402, chf, chg) new_esEs33(vwx2200, vwx2400, app(ty_Ratio, dfc)) -> new_esEs19(vwx2200, vwx2400, dfc) new_esEs19(:%(vwx300, vwx301), :%(vwx400, vwx401), cbh) -> new_asAs(new_esEs30(vwx300, vwx400, cbh), new_esEs31(vwx301, vwx401, cbh)) new_compare28(@0, @0) -> EQ new_esEs15(False, True) -> False new_esEs15(True, False) -> False new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs6(Left(vwx300), Left(vwx400), app(ty_Maybe, bhb), bgf) -> new_esEs8(vwx300, vwx400, bhb) new_lt5(vwx22010, vwx24010, app(ty_Maybe, hf)) -> new_lt16(vwx22010, vwx24010, hf) new_esEs25(vwx300, vwx400, ty_Integer) -> new_esEs17(vwx300, vwx400) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat0(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_ltEs12(EQ, LT) -> False new_compare19(vwx22000, vwx24000, ty_Double) -> new_compare7(vwx22000, vwx24000) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, app(ty_Maybe, fa)) -> new_ltEs17(vwx22010, vwx24010, fa) new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Bool) -> new_ltEs9(vwx22010, vwx24010) new_esEs6(Left(vwx300), Left(vwx400), ty_Integer, bgf) -> new_esEs17(vwx300, vwx400) new_esEs10(vwx30, vwx40, ty_Bool) -> new_esEs15(vwx30, vwx40) new_esEs6(Left(vwx300), Left(vwx400), app(app(app(ty_@3, bhf), bhg), bhh), bgf) -> new_esEs7(vwx300, vwx400, bhf, bhg, bhh) new_primCmpNat0(Succ(vwx220000), Succ(vwx240000)) -> new_primCmpNat0(vwx220000, vwx240000) new_esEs22(vwx11, vwx12, vwx13, vwx14, False, h, ba) -> new_esEs11(new_compare210(@2(vwx11, vwx12), @2(vwx13, vwx14), False, h, ba), LT) new_lt21(vwx2200, vwx2400, app(app(ty_Either, bb), bc)) -> new_lt7(vwx2200, vwx2400, bb, bc) new_esEs14(vwx22010, vwx24010, ty_Double) -> new_esEs21(vwx22010, vwx24010) new_esEs5(vwx12, vwx14, app(app(ty_Either, dbd), dbe)) -> new_esEs6(vwx12, vwx14, dbd, dbe) new_compare26(vwx2200, vwx2400, False, cc) -> new_compare18(vwx2200, vwx2400, new_ltEs17(vwx2200, vwx2400, cc), cc) new_esEs14(vwx22010, vwx24010, ty_Char) -> new_esEs18(vwx22010, vwx24010) new_esEs26(vwx301, vwx401, ty_Int) -> new_esEs12(vwx301, vwx401) new_esEs24(vwx301, vwx401, ty_Integer) -> new_esEs17(vwx301, vwx401) new_esEs29(vwx22011, vwx24011, app(ty_Maybe, bcc)) -> new_esEs8(vwx22011, vwx24011, bcc) new_lt20(vwx22010, vwx24010, app(ty_Maybe, bdd)) -> new_lt16(vwx22010, vwx24010, bdd) new_esEs14(vwx22010, vwx24010, ty_@0) -> new_esEs16(vwx22010, vwx24010) new_compare6(Char(vwx22000), Char(vwx24000)) -> new_primCmpNat0(vwx22000, vwx24000) new_compare5(Float(vwx22000, Pos(vwx220010)), Float(vwx24000, Pos(vwx240010))) -> new_compare9(new_sr(vwx22000, Pos(vwx240010)), new_sr(Pos(vwx220010), vwx24000)) new_esEs24(vwx301, vwx401, ty_Char) -> new_esEs18(vwx301, vwx401) new_compare19(vwx22000, vwx24000, ty_Bool) -> new_compare27(vwx22000, vwx24000) new_esEs32(vwx300, vwx400, app(ty_[], dec)) -> new_esEs20(vwx300, vwx400, dec) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_esEs21(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs12(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs14(vwx22010, vwx24010, ty_Float) -> new_esEs13(vwx22010, vwx24010) new_esEs6(Left(vwx300), Left(vwx400), ty_@0, bgf) -> new_esEs16(vwx300, vwx400) new_esEs28(vwx22010, vwx24010, app(app(ty_Either, bcd), bce)) -> new_esEs6(vwx22010, vwx24010, bcd, bce) new_esEs27(vwx302, vwx402, ty_Int) -> new_esEs12(vwx302, vwx402) new_primEqNat0(Zero, Zero) -> True new_esEs33(vwx2200, vwx2400, app(ty_[], cb)) -> new_esEs20(vwx2200, vwx2400, cb) new_esEs24(vwx301, vwx401, ty_Double) -> new_esEs21(vwx301, vwx401) new_compare13(vwx2200, vwx2400, False) -> GT new_ltEs8(Right(vwx22010), Right(vwx24010), dh, ty_Char) -> new_ltEs13(vwx22010, vwx24010) new_esEs6(Left(vwx300), Left(vwx400), ty_Double, bgf) -> new_esEs21(vwx300, vwx400) new_lt21(vwx2200, vwx2400, ty_Double) -> new_lt17(vwx2200, vwx2400) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Integer) -> new_ltEs11(vwx22010, vwx24010) new_compare19(vwx22000, vwx24000, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare31(vwx22000, vwx24000, bfc, bfd, bfe) new_esEs25(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_esEs10(vwx30, vwx40, app(ty_[], cbf)) -> new_esEs20(vwx30, vwx40, cbf) new_esEs8(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs17(vwx300, vwx400) new_asAs(False, vwx32) -> False new_compare(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_primCompAux1(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) new_esEs8(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs25(vwx300, vwx400, ty_@0) -> new_esEs16(vwx300, vwx400) new_esEs25(vwx300, vwx400, ty_Float) -> new_esEs13(vwx300, vwx400) new_esEs33(vwx2200, vwx2400, ty_Bool) -> new_esEs15(vwx2200, vwx2400) new_compare30(:%(vwx22000, vwx22001), :%(vwx24000, vwx24001), ty_Integer) -> new_compare29(new_sr0(vwx22000, vwx24001), new_sr0(vwx24000, vwx22001)) new_esEs6(Left(vwx300), Left(vwx400), ty_Char, bgf) -> new_esEs18(vwx300, vwx400) new_compare11(vwx81, vwx82, vwx83, vwx84, False, vwx86, bgb, bgc) -> new_compare12(vwx81, vwx82, vwx83, vwx84, vwx86, bgb, bgc) new_esEs33(vwx2200, vwx2400, app(app(ty_@2, be), bf)) -> new_esEs9(vwx2200, vwx2400, be, bf) new_esEs5(vwx12, vwx14, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs7(vwx12, vwx14, dcc, dcd, dce) new_esEs8(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs16(vwx300, vwx400) new_ltEs17(Just(vwx22010), Just(vwx24010), ty_Ordering) -> new_ltEs12(vwx22010, vwx24010) new_esEs29(vwx22011, vwx24011, ty_Ordering) -> new_esEs11(vwx22011, vwx24011) The set Q consists of the following terms: new_lt9(x0, x1) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt5(x0, x1, app(ty_[], x2)) new_compare30(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_compare18(x0, x1, False, x2) new_esEs5(x0, x1, ty_Float) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt5(x0, x1, ty_Float) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs22(x0, x1, x2, x3, True, x4, x5) new_primPlusNat1(Zero, Zero) new_primCompAux1(x0, x1, x2, x3) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_esEs32(x0, x1, ty_@0) new_compare10(x0, x1, False) new_esEs14(x0, x1, ty_Float) new_lt13(x0, x1) new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20([], :(x0, x1), x2) new_compare29(Integer(x0), Integer(x1)) new_compare23(x0, x1, True, x2, x3, x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare16(x0, x1, True, x2, x3) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, ty_Double) new_compare11(x0, x1, x2, x3, False, x4, x5, x6) new_lt19(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Ordering) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs9(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_compare([], [], x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt11(@2(x0, x1), @2(x2, x3), x4, x5) new_compare24(x0, x1, False) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_compare210(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt17(x0, x1) new_esEs14(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Float) new_ltEs16(x0, x1, x2) new_esEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Int) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_primEqNat0(Zero, Succ(x0)) new_ltEs9(True, True) new_lt20(x0, x1, ty_@0) new_esEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, ty_Float) new_ltEs14(x0, x1, x2) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_primCompAux0(x0, EQ) new_compare31(x0, x1, x2, x3, x4) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt5(x0, x1, ty_Integer) new_ltEs12(GT, EQ) new_ltEs12(EQ, GT) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_compare14(x0, x1, False, x2, x3, x4) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs11(EQ, GT) new_esEs11(GT, EQ) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_compare26(x0, x1, False, x2) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt5(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Int) new_pePe(True, x0) new_esEs15(False, False) new_lt21(x0, x1, ty_Double) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Float) new_esEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs32(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_Integer, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs32(x0, x1, ty_Double) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_lt21(x0, x1, ty_Char) new_primPlusNat1(Succ(x0), Zero) new_lt5(x0, x1, ty_@0) new_ltEs11(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare10(x0, x1, True) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, ty_Integer) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs20(:(x0, x1), :(x2, x3), x4) new_lt7(x0, x1, x2, x3) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_esEs14(x0, x1, ty_Bool) new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_@0) new_compare30(:%(x0, x1), :%(x2, x3), ty_Int) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare([], :(x0, x1), x2) new_compare18(x0, x1, True, x2) new_compare16(x0, x1, False, x2, x3) new_esEs17(Integer(x0), Integer(x1)) new_fsEs(x0) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs14(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs11(LT, GT) new_esEs11(GT, LT) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, x0) new_lt19(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_Ordering) new_primCompAux0(x0, GT) new_compare9(x0, x1) new_esEs6(Right(x0), Right(x1), x2, ty_Double) new_ltEs13(x0, x1) new_esEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(GT, GT) new_esEs8(Nothing, Just(x0), x1) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs17(Just(x0), Just(x1), ty_Double) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs9(False, True) new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs9(True, False) new_esEs28(x0, x1, ty_Bool) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_sr(x0, x1) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_lt21(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Integer) new_esEs8(Just(x0), Just(x1), ty_Float) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs33(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs10(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Bool) new_compare25(x0, x1, True, x2, x3) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs15(True, True) new_esEs30(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, True, x2, x3, x4) new_ltEs20(x0, x1, ty_Int) new_ltEs17(Just(x0), Just(x1), ty_@0) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs32(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Char) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs26(x0, x1, ty_Ordering) new_ltEs6(x0, x1, ty_Int) new_lt18(x0, x1) new_ltEs12(LT, LT) new_ltEs6(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Char) new_esEs6(Left(x0), Left(x1), ty_@0, x2) new_compare12(x0, x1, x2, x3, False, x4, x5) new_ltEs6(x0, x1, app(ty_[], x2)) new_compare8(x0, x1) new_lt14(x0, x1, x2) new_esEs14(x0, x1, ty_Char) new_primPlusNat1(Zero, Succ(x0)) new_esEs27(x0, x1, ty_Float) new_compare6(Char(x0), Char(x1)) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Bool) new_esEs14(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs10(x0, x1, ty_Integer) new_esEs16(@0, @0) new_ltEs20(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_ltEs4(x0, x1) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_compare19(x0, x1, ty_Int) new_esEs24(x0, x1, ty_Char) new_esEs6(Left(x0), Right(x1), x2, x3) new_esEs6(Right(x0), Left(x1), x2, x3) new_esEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs17(Just(x0), Just(x1), ty_Char) new_lt12(x0, x1) new_esEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(Right(x0), Right(x1), x2, ty_@0) new_esEs10(x0, x1, ty_Char) new_esEs29(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Ordering) new_lt8(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_asAs(True, x0) new_lt10(x0, x1) new_primMulNat0(Zero, Succ(x0)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs28(x0, x1, ty_Char) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_compare211(x0, x1, False) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, ty_@0) new_esEs8(Just(x0), Just(x1), app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare13(x0, x1, False) new_esEs8(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, ty_Int) new_esEs5(x0, x1, ty_Double) new_esEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs25(x0, x1, ty_Int) new_compare19(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Float) new_lt5(x0, x1, ty_Double) new_lt6(x0, x1) new_esEs6(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, ty_@0) new_compare12(x0, x1, x2, x3, True, x4, x5) new_esEs28(x0, x1, ty_Int) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs33(x0, x1, ty_Int) new_ltEs6(x0, x1, ty_Bool) new_esEs6(Left(x0), Left(x1), ty_Char, x2) new_lt16(x0, x1, x2) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs6(x0, x1, ty_Char) new_ltEs17(Just(x0), Nothing, x1) new_lt21(x0, x1, ty_Integer) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_@0) new_compare26(x0, x1, True, x2) new_esEs33(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1, app(ty_Ratio, x2)) new_esEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_pePe(False, x0) new_esEs5(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Char) new_esEs8(Just(x0), Just(x1), ty_@0) new_esEs26(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Double) new_esEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_@0) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_esEs26(x0, x1, ty_Char) new_esEs8(Just(x0), Just(x1), ty_Int) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Char) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Double) new_compare19(x0, x1, app(app(ty_Either, x2), x3)) new_not(True) new_esEs8(Just(x0), Just(x1), ty_Ordering) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Double) new_lt4(x0, x1, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Int) new_esEs8(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt21(x0, x1, ty_Float) new_compare24(x0, x1, True) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), ty_Ordering) new_esEs8(Just(x0), Just(x1), ty_Double) new_compare28(@0, @0) new_ltEs17(Nothing, Nothing, x0) new_esEs29(x0, x1, ty_Char) new_esEs27(x0, x1, ty_Bool) new_compare19(x0, x1, app(ty_[], x2)) new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_lt21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Int) new_esEs26(x0, x1, ty_@0) new_lt20(x0, x1, ty_Float) new_esEs27(x0, x1, ty_Ordering) new_compare19(x0, x1, ty_Double) new_lt19(x0, x1, ty_Integer) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_compare19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Right(x0), Left(x1), x2, x3) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Left(x0), Right(x1), x2, x3) new_esEs8(Nothing, Nothing, x0) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs12(EQ, EQ) new_esEs27(x0, x1, ty_Integer) new_esEs11(EQ, EQ) new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare13(x0, x1, True) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_compare27(x0, x1) new_compare210(@2(x0, x1), @2(x2, x3), False, x4, x5) new_ltEs6(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_lt5(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Bool) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, ty_@0) new_compare11(x0, x1, x2, x3, True, x4, x5, x6) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20([], [], x0) new_ltEs10(x0, x1) new_primEqNat0(Succ(x0), Zero) new_compare19(x0, x1, ty_Integer) new_esEs25(x0, x1, ty_Bool) new_ltEs7(x0, x1) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, True) new_esEs29(x0, x1, ty_Double) new_asAs(False, x0) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt20(x0, x1, ty_Integer) new_esEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(Double(x0, x1), Double(x2, x3)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs32(x0, x1, ty_Float) new_esEs6(Right(x0), Right(x1), x2, ty_Ordering) new_compare19(x0, x1, ty_Bool) new_ltEs6(x0, x1, ty_Double) new_compare19(x0, x1, app(ty_Maybe, x2)) new_compare(:(x0, x1), :(x2, x3), x4) new_esEs8(Just(x0), Just(x1), ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs6(Left(x0), Left(x1), ty_Bool, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt15(x0, x1, x2, x3, x4) new_esEs24(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), x1) new_lt19(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs11(LT, EQ) new_esEs11(EQ, LT) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_lt5(x0, x1, ty_Bool) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(Right(x0), Right(x1), x2, ty_Int) new_compare25(x0, x1, False, x2, x3) new_esEs15(False, True) new_esEs15(True, False) new_ltEs17(Just(x0), Just(x1), ty_Integer) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, ty_Double) new_esEs11(GT, GT) new_lt5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs5(x0, x1, ty_@0) new_esEs18(Char(x0), Char(x1)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, ty_Integer) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_primEqNat0(Zero, Zero) new_lt5(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs17(Just(x0), Just(x1), ty_Float) new_ltEs9(False, False) new_not(False) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1) new_esEs33(x0, x1, ty_Double) new_ltEs17(Just(x0), Just(x1), ty_Bool) new_esEs24(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs20(:(x0, x1), [], x2) new_esEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_compare15(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_@0) new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Double) new_esEs11(LT, LT) new_primMulNat0(Succ(x0), Zero) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare17(x0, x1, x2) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_lt5(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs6(Left(x0), Left(x1), ty_Float, x2) new_compare23(x0, x1, False, x2, x3, x4) new_ltEs17(Just(x0), Just(x1), ty_Int) new_ltEs17(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Double) new_esEs8(Just(x0), Nothing, x1) new_lt5(x0, x1, ty_Int) new_esEs14(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Double) new_esEs22(x0, x1, x2, x3, False, x4, x5) new_ltEs20(x0, x1, ty_Double) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_compare(:(x0, x1), [], x2) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_compare19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_esEs25(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Integer) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpNat0(Zero, Succ(x0)) new_primMulInt(Neg(x0), Neg(x1)) 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_ltEs3(Just(vwx22010), Just(vwx24010), app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx22010, vwx24010, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare0(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_compare0(vwx22001, vwx24001, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare4(vwx2200, vwx2400, cc) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(ty_Either, fc), fd)) -> new_ltEs(vwx22011, vwx24011, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vwx22010), Just(vwx24010), app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx22010, vwx24010, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(ty_@2, ff), fg)) -> new_ltEs0(vwx22011, vwx24011, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(:(vwx22000, vwx22001), vwx2201), @2(:(vwx24000, vwx24001), vwx2401), False, app(ty_[], cb), bd) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_lt2(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_primCompAux(vwx22000, vwx24000, new_compare(vwx22001, vwx24001, cb), cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt(@2(vwx30, vwx31), @2(vwx40, vwx41), bfh, bga) -> new_esEs4(vwx30, vwx31, vwx40, vwx41, new_esEs10(vwx30, vwx40, bfh), bfh, bga) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_lt2(:(vwx22000, vwx22001), :(vwx24000, vwx24001), cb) -> new_compare0(vwx22001, vwx24001, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(ty_Either, baa), bab)) -> new_ltEs(vwx22012, vwx24012, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(ty_@2, bac), bad)) -> new_ltEs0(vwx22012, vwx24012, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare3(vwx2200, vwx2400, bg, bh, ca) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs3(Just(vwx22010), Just(vwx24010), app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx22010, vwx24010, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(app(app(ty_@3, fh), ga), gb)) -> new_ltEs1(vwx22011, vwx24011, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs1(vwx22012, vwx24012, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(vwx2200, vwx2400, bb, bc) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt1(vwx2200, vwx2400, bg, bh, ca) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(ty_[], he), gg) -> new_lt2(vwx22010, vwx24010, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx22000, vwx24000, vwx95, app(app(ty_@2, bfa), bfb)) -> new_compare2(vwx22000, vwx24000, new_esEs9(vwx22000, vwx24000, bfa, bfb), bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 4, 4 > 5 *new_compare20(vwx2200, vwx2400, False, bb, bc) -> new_ltEs(vwx2200, vwx2400, bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_compare21(vwx2200, vwx2400, False, bg, bh, ca) -> new_ltEs1(vwx2200, vwx2400, bg, bh, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_ltEs3(Just(vwx22010), Just(vwx24010), app(ty_Maybe, bef)) -> new_ltEs3(vwx22010, vwx24010, bef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vwx22010), Just(vwx24010), app(ty_[], bee)) -> new_ltEs2(vwx22010, vwx24010, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(ty_Maybe, gd)) -> new_ltEs3(vwx22011, vwx24011, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(ty_Maybe, bba)) -> new_ltEs3(vwx22012, vwx24012, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs2(vwx2201, vwx2401, bde) -> new_compare0(vwx2201, vwx2401, bde) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_compare22(vwx2200, vwx2400, False, cc) -> new_ltEs3(vwx2200, vwx2400, cc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(ty_@2, gh), ha), gg) -> new_lt(vwx22010, vwx24010, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt3(vwx2200, vwx2400, cc) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare1(vwx2200, vwx2400, bb, bc) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(ty_Maybe, hf), gg) -> new_lt3(vwx22010, vwx24010, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vwx22000, vwx24000, vwx95, app(ty_[], bff)) -> new_compare0(vwx22000, vwx24000, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(ty_Either, bb), bc), bd) -> new_compare20(vwx2200, vwx2400, new_esEs6(vwx2200, vwx2400, bb, bc), bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(ty_Either, ge), gf), gg) -> new_lt0(vwx22010, vwx24010, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(app(ty_@3, bg), bh), ca), bd) -> new_compare21(vwx2200, vwx2400, new_esEs7(vwx2200, vwx2400, bg, bh, ca), bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), fb, app(ty_[], gc)) -> new_ltEs2(vwx22011, vwx24011, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vwx22010, vwx22011), @2(vwx24010, vwx24011), app(app(app(ty_@3, hb), hc), hd), gg) -> new_lt1(vwx22010, vwx24010, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, hh, app(ty_[], bah)) -> new_ltEs2(vwx22012, vwx24012, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_primCompAux(vwx22000, vwx24000, vwx95, app(app(ty_Either, beg), beh)) -> new_compare1(vwx22000, vwx24000, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(ty_Maybe, cc), bd) -> new_compare22(vwx2200, vwx2400, new_esEs8(vwx2200, vwx2400, cc), cc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_primCompAux(vwx22000, vwx24000, vwx95, app(ty_Maybe, bfg)) -> new_compare4(vwx22000, vwx24000, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx22000, vwx24000, vwx95, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare3(vwx22000, vwx24000, bfc, bfd, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(ty_Either, bdf), bdg))) -> new_ltEs(vwx22010, vwx24010, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(ty_Either, ce), cf)), cg)) -> new_ltEs(vwx22010, vwx24010, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(ty_Either, fc), fd))) -> new_ltEs(vwx22011, vwx24011, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(ty_Either, ea), eb))) -> new_ltEs(vwx22010, vwx24010, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(ty_Either, baa), bab))) -> new_ltEs(vwx22012, vwx24012, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vwx22010), Left(vwx24010), app(app(ty_Either, ce), cf), cg) -> new_ltEs(vwx22010, vwx24010, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(ty_Either, ea), eb)) -> new_ltEs(vwx22010, vwx24010, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(vwx11, vwx12, vwx13, vwx14, True, h, ba) -> new_compare2(@2(vwx11, vwx12), @2(vwx13, vwx14), new_esEs5(vwx12, vwx14, ba), h, ba) The graph contains the following edges 6 >= 4, 7 >= 5 *new_esEs4(vwx11, vwx12, vwx13, vwx14, False, h, ba) -> new_compare2(@2(vwx11, vwx12), @2(vwx13, vwx14), False, h, ba) The graph contains the following edges 5 >= 3, 6 >= 4, 7 >= 5 *new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(ty_@2, ec), ed))) -> new_ltEs0(vwx22010, vwx24010, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(ty_@2, da), db)), cg)) -> new_ltEs0(vwx22010, vwx24010, da, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(ty_@2, ff), fg))) -> new_ltEs0(vwx22011, vwx24011, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(ty_@2, bac), bad))) -> new_ltEs0(vwx22012, vwx24012, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(ty_@2, bdh), bea))) -> new_ltEs0(vwx22010, vwx24010, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vwx22010), Left(vwx24010), app(app(ty_@2, da), db), cg) -> new_ltEs0(vwx22010, vwx24010, da, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(ty_@2, ec), ed)) -> new_ltEs0(vwx22010, vwx24010, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(app(app(ty_@3, bae), baf), bag))) -> new_ltEs1(vwx22012, vwx24012, bae, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(app(app(ty_@3, beb), bec), bed))) -> new_ltEs1(vwx22010, vwx24010, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(app(app(ty_@3, fh), ga), gb))) -> new_ltEs1(vwx22011, vwx24011, fh, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(app(app(ty_@3, dc), dd), de)), cg)) -> new_ltEs1(vwx22010, vwx24010, dc, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs1(vwx22010, vwx24010, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(ty_[], bdc)), hh), bbd)) -> new_lt2(vwx22010, vwx24010, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(ty_[], he)), gg)) -> new_lt2(vwx22010, vwx24010, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(ty_[], bcb)), bbd)) -> new_lt2(vwx22011, vwx24011, bcb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(ty_Maybe, gd))) -> new_ltEs3(vwx22011, vwx24011, gd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(ty_Maybe, bba))) -> new_ltEs3(vwx22012, vwx24012, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(ty_Maybe, dg)), cg)) -> new_ltEs3(vwx22010, vwx24010, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(ty_Maybe, bef))) -> new_ltEs3(vwx22010, vwx24010, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(ty_Maybe, fa))) -> new_ltEs3(vwx22010, vwx24010, fa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, app(app(ty_@2, be), bf), bd) -> new_lt(vwx2200, vwx2400, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(ty_@2, gh), ha)), gg)) -> new_lt(vwx22010, vwx24010, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(ty_@2, bcf), bcg)), hh), bbd)) -> new_lt(vwx22010, vwx24010, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(ty_@2, bbe), bbf)), bbd)) -> new_lt(vwx22011, vwx24011, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(ty_Maybe, bcc)), bbd)) -> new_lt3(vwx22011, vwx24011, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(ty_Maybe, hf)), gg)) -> new_lt3(vwx22010, vwx24010, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(ty_Maybe, bdd)), hh), bbd)) -> new_lt3(vwx22010, vwx24010, bdd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(:(vwx22000, vwx22001), vwx2201), @2(:(vwx24000, vwx24001), vwx2401), False, app(ty_[], cb), bd) -> new_compare0(vwx22001, vwx24001, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(@2(vwx2200, vwx2201), @2(vwx2400, vwx2401), False, cd, app(ty_[], bde)) -> new_compare0(vwx2201, vwx2401, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(ty_Either, bcd), bce)), hh), bbd)) -> new_lt0(vwx22010, vwx24010, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(ty_Either, bbb), bbc)), bbd)) -> new_lt0(vwx22011, vwx24011, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(ty_Either, ge), gf)), gg)) -> new_lt0(vwx22010, vwx24010, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, fb), app(ty_[], gc))) -> new_ltEs2(vwx22011, vwx24011, gc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Right(vwx22010)), @2(vwx2400, Right(vwx24010)), False, cd, app(app(ty_Either, dh), app(ty_[], eh))) -> new_ltEs2(vwx22010, vwx24010, eh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Left(vwx22010)), @2(vwx2400, Left(vwx24010)), False, cd, app(app(ty_Either, app(ty_[], df)), cg)) -> new_ltEs2(vwx22010, vwx24010, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, Just(vwx22010)), @2(vwx2400, Just(vwx24010)), False, cd, app(ty_Maybe, app(ty_[], bee))) -> new_ltEs2(vwx22010, vwx24010, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), hh), app(ty_[], bah))) -> new_ltEs2(vwx22012, vwx24012, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(@2(vwx2200, @2(vwx22010, vwx22011)), @2(vwx2400, @2(vwx24010, vwx24011)), False, cd, app(app(ty_@2, app(app(app(ty_@3, hb), hc), hd)), gg)) -> new_lt1(vwx22010, vwx24010, hb, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, hg), app(app(app(ty_@3, bbg), bbh), bca)), bbd)) -> new_lt1(vwx22011, vwx24011, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(@2(vwx2200, @3(vwx22010, vwx22011, vwx22012)), @2(vwx2400, @3(vwx24010, vwx24011, vwx24012)), False, cd, app(app(app(ty_@3, app(app(app(ty_@3, bch), bda), bdb)), hh), bbd)) -> new_lt1(vwx22010, vwx24010, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(ty_[], bcb), bbd) -> new_lt2(vwx22011, vwx24011, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(ty_[], bdc), hh, bbd) -> new_lt2(vwx22010, vwx24010, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(ty_@2, bcf), bcg), hh, bbd) -> new_lt(vwx22010, vwx24010, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(ty_@2, bbe), bbf), bbd) -> new_lt(vwx22011, vwx24011, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(ty_Maybe, bdd), hh, bbd) -> new_lt3(vwx22010, vwx24010, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(ty_Maybe, bcc), bbd) -> new_lt3(vwx22011, vwx24011, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(ty_Either, bcd), bce), hh, bbd) -> new_lt0(vwx22010, vwx24010, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(ty_Either, bbb), bbc), bbd) -> new_lt0(vwx22011, vwx24011, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), hg, app(app(app(ty_@3, bbg), bbh), bca), bbd) -> new_lt1(vwx22011, vwx24011, bbg, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx22010, vwx22011, vwx22012), @3(vwx24010, vwx24011, vwx24012), app(app(app(ty_@3, bch), bda), bdb), hh, bbd) -> new_lt1(vwx22010, vwx24010, bch, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Left(vwx22010), Left(vwx24010), app(app(app(ty_@3, dc), dd), de), cg) -> new_ltEs1(vwx22010, vwx24010, dc, dd, de) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs1(vwx22010, vwx24010, ee, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(ty_Maybe, fa)) -> new_ltEs3(vwx22010, vwx24010, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx22010), Left(vwx24010), app(ty_Maybe, dg), cg) -> new_ltEs3(vwx22010, vwx24010, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Left(vwx22010), Left(vwx24010), app(ty_[], df), cg) -> new_ltEs2(vwx22010, vwx24010, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx22010), Right(vwx24010), dh, app(ty_[], eh)) -> new_ltEs2(vwx22010, vwx24010, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx5500), Succ(vwx401000)) -> new_primPlusNat(vwx5500, vwx401000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (28) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vwx5500), Succ(vwx401000)) -> new_primPlusNat(vwx5500, vwx401000) 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_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. ---------------------------------------- (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_primEqNat(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat(vwx3000, vwx4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (32) YES