/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, 16 ms] (8) HASKELL (9) LetRed [EQUIVALENT, 0 ms] (10) HASKELL (11) NumRed [SOUND, 0 ms] (12) HASKELL (13) Narrow [SOUND, 0 ms] (14) AND (15) QDP (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] (17) YES (18) QDP (19) QDPSizeChangeProof [EQUIVALENT, 72 ms] (20) YES (21) QDP (22) QDPSizeChangeProof [EQUIVALENT, 18 ms] (23) YES (24) QDP (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] (26) YES (27) QDP (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] (29) YES (30) QDP (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] (32) YES ---------------------------------------- (0) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (1) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " ---------------------------------------- (2) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (3) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (4) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (5) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (6) Obligation: mainModule Main module Main where { import qualified Prelude; } ---------------------------------------- (7) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; " "gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vux vuy = gcd3 vux vuy; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x zx = gcd'2 x zx; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x zx = x; gcd'1 zy zz vuu = gcd'0 zz vuu; ; gcd'2 x zx = gcd'1 (zx == 0) x zx; gcd'2 vuv vuw = gcd'0 vuv vuw; } ; " "gcd1 True vux vuy = error []; gcd1 vuz vvu vvv = gcd0 vvu vvv; " "gcd2 True vux vuy = gcd1 (vuy == 0) vux vuy; gcd2 vvw vvx vvy = gcd0 vvx vvy; " "gcd3 vux vuy = gcd2 (vux == 0) vux vuy; gcd3 vvz vwu = gcd0 vvz vwu; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "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"];2829[label="vwx3/Left vwx30",fontsize=10,color="white",style="solid",shape="box"];7 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 8[label="",style="solid", color="burlywood", weight=3]; 2830[label="vwx3/Right vwx30",fontsize=10,color="white",style="solid",shape="box"];7 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 9[label="",style="solid", color="burlywood", weight=3]; 8[label="compare2 (Left vwx30) vwx4 (Left vwx30 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2831[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 10[label="",style="solid", color="burlywood", weight=3]; 2832[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];8 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 11[label="",style="solid", color="burlywood", weight=3]; 9[label="compare2 (Right vwx30) vwx4 (Right vwx30 == vwx4) == LT",fontsize=16,color="burlywood",shape="box"];2833[label="vwx4/Left vwx40",fontsize=10,color="white",style="solid",shape="box"];9 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 12[label="",style="solid", color="burlywood", weight=3]; 2834[label="vwx4/Right vwx40",fontsize=10,color="white",style="solid",shape="box"];9 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 13[label="",style="solid", color="burlywood", weight=3]; 10[label="compare2 (Left vwx30) (Left vwx40) (Left vwx30 == Left vwx40) == LT",fontsize=16,color="black",shape="box"];10 -> 14[label="",style="solid", color="black", weight=3]; 11[label="compare2 (Left vwx30) (Right vwx40) (Left vwx30 == Right vwx40) == LT",fontsize=16,color="black",shape="box"];11 -> 15[label="",style="solid", color="black", weight=3]; 12[label="compare2 (Right vwx30) (Left vwx40) (Right vwx30 == Left vwx40) == LT",fontsize=16,color="black",shape="box"];12 -> 16[label="",style="solid", color="black", weight=3]; 13[label="compare2 (Right vwx30) (Right vwx40) (Right vwx30 == Right vwx40) == LT",fontsize=16,color="black",shape="box"];13 -> 17[label="",style="solid", color="black", weight=3]; 14 -> 18[label="",style="dashed", color="red", weight=0]; 14[label="compare2 (Left vwx30) (Left vwx40) (vwx30 == vwx40) == LT",fontsize=16,color="magenta"];14 -> 19[label="",style="dashed", color="magenta", weight=3]; 14 -> 20[label="",style="dashed", color="magenta", weight=3]; 14 -> 21[label="",style="dashed", color="magenta", weight=3]; 15[label="compare2 (Left vwx30) (Right vwx40) False == LT",fontsize=16,color="black",shape="box"];15 -> 22[label="",style="solid", color="black", weight=3]; 16[label="compare2 (Right vwx30) (Left vwx40) False == LT",fontsize=16,color="black",shape="box"];16 -> 23[label="",style="solid", color="black", weight=3]; 17 -> 24[label="",style="dashed", color="red", weight=0]; 17[label="compare2 (Right vwx30) (Right vwx40) (vwx30 == vwx40) == LT",fontsize=16,color="magenta"];17 -> 25[label="",style="dashed", color="magenta", weight=3]; 17 -> 26[label="",style="dashed", color="magenta", weight=3]; 17 -> 27[label="",style="dashed", color="magenta", weight=3]; 19[label="vwx40",fontsize=16,color="green",shape="box"];20[label="vwx30",fontsize=16,color="green",shape="box"];21[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2835[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2835[label="",style="solid", color="blue", weight=9]; 2835 -> 28[label="",style="solid", color="blue", weight=3]; 2836[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2836[label="",style="solid", color="blue", weight=9]; 2836 -> 29[label="",style="solid", color="blue", weight=3]; 2837[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2837[label="",style="solid", color="blue", weight=9]; 2837 -> 30[label="",style="solid", color="blue", weight=3]; 2838[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2838[label="",style="solid", color="blue", weight=9]; 2838 -> 31[label="",style="solid", color="blue", weight=3]; 2839[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2839[label="",style="solid", color="blue", weight=9]; 2839 -> 32[label="",style="solid", color="blue", weight=3]; 2840[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2840[label="",style="solid", color="blue", weight=9]; 2840 -> 33[label="",style="solid", color="blue", weight=3]; 2841[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2841[label="",style="solid", color="blue", weight=9]; 2841 -> 34[label="",style="solid", color="blue", weight=3]; 2842[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2842[label="",style="solid", color="blue", weight=9]; 2842 -> 35[label="",style="solid", color="blue", weight=3]; 2843[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 36[label="",style="solid", color="blue", weight=3]; 2844[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 37[label="",style="solid", color="blue", weight=3]; 2845[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2845[label="",style="solid", color="blue", weight=9]; 2845 -> 38[label="",style="solid", color="blue", weight=3]; 2846[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2846[label="",style="solid", color="blue", weight=9]; 2846 -> 39[label="",style="solid", color="blue", weight=3]; 2847[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2847[label="",style="solid", color="blue", weight=9]; 2847 -> 40[label="",style="solid", color="blue", weight=3]; 2848[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];21 -> 2848[label="",style="solid", color="blue", weight=9]; 2848 -> 41[label="",style="solid", color="blue", weight=3]; 18[label="compare2 (Left vwx9) (Left vwx10) vwx11 == LT",fontsize=16,color="burlywood",shape="triangle"];2849[label="vwx11/False",fontsize=10,color="white",style="solid",shape="box"];18 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 42[label="",style="solid", color="burlywood", weight=3]; 2850[label="vwx11/True",fontsize=10,color="white",style="solid",shape="box"];18 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 43[label="",style="solid", color="burlywood", weight=3]; 22[label="compare1 (Left vwx30) (Right vwx40) (Left vwx30 <= Right vwx40) == LT",fontsize=16,color="black",shape="box"];22 -> 44[label="",style="solid", color="black", weight=3]; 23[label="compare1 (Right vwx30) (Left vwx40) (Right vwx30 <= Left vwx40) == LT",fontsize=16,color="black",shape="box"];23 -> 45[label="",style="solid", color="black", weight=3]; 25[label="vwx30",fontsize=16,color="green",shape="box"];26[label="vwx40",fontsize=16,color="green",shape="box"];27[label="vwx30 == vwx40",fontsize=16,color="blue",shape="box"];2851[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2851[label="",style="solid", color="blue", weight=9]; 2851 -> 46[label="",style="solid", color="blue", weight=3]; 2852[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2852[label="",style="solid", color="blue", weight=9]; 2852 -> 47[label="",style="solid", color="blue", weight=3]; 2853[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 48[label="",style="solid", color="blue", weight=3]; 2854[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 49[label="",style="solid", color="blue", weight=3]; 2855[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 50[label="",style="solid", color="blue", weight=3]; 2856[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 51[label="",style="solid", color="blue", weight=3]; 2857[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 52[label="",style="solid", color="blue", weight=3]; 2858[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 53[label="",style="solid", color="blue", weight=3]; 2859[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 54[label="",style="solid", color="blue", weight=3]; 2860[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 55[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 56[label="",style="solid", color="blue", weight=3]; 2862[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 57[label="",style="solid", color="blue", weight=3]; 2863[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 58[label="",style="solid", color="blue", weight=3]; 2864[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];27 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 59[label="",style="solid", color="blue", weight=3]; 24[label="compare2 (Right vwx16) (Right vwx17) vwx18 == LT",fontsize=16,color="burlywood",shape="triangle"];2865[label="vwx18/False",fontsize=10,color="white",style="solid",shape="box"];24 -> 2865[label="",style="solid", color="burlywood", weight=9]; 2865 -> 60[label="",style="solid", color="burlywood", weight=3]; 2866[label="vwx18/True",fontsize=10,color="white",style="solid",shape="box"];24 -> 2866[label="",style="solid", color="burlywood", weight=9]; 2866 -> 61[label="",style="solid", color="burlywood", weight=3]; 28[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];28 -> 62[label="",style="solid", color="black", weight=3]; 29[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];29 -> 63[label="",style="solid", color="black", weight=3]; 30[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2867[label="vwx30/Left vwx300",fontsize=10,color="white",style="solid",shape="box"];30 -> 2867[label="",style="solid", color="burlywood", weight=9]; 2867 -> 64[label="",style="solid", color="burlywood", weight=3]; 2868[label="vwx30/Right vwx300",fontsize=10,color="white",style="solid",shape="box"];30 -> 2868[label="",style="solid", color="burlywood", weight=9]; 2868 -> 65[label="",style="solid", color="burlywood", weight=3]; 31[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2869[label="vwx30/vwx300 : vwx301",fontsize=10,color="white",style="solid",shape="box"];31 -> 2869[label="",style="solid", color="burlywood", weight=9]; 2869 -> 66[label="",style="solid", color="burlywood", weight=3]; 2870[label="vwx30/[]",fontsize=10,color="white",style="solid",shape="box"];31 -> 2870[label="",style="solid", color="burlywood", weight=9]; 2870 -> 67[label="",style="solid", color="burlywood", weight=3]; 32[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2871[label="vwx30/Nothing",fontsize=10,color="white",style="solid",shape="box"];32 -> 2871[label="",style="solid", color="burlywood", weight=9]; 2871 -> 68[label="",style="solid", color="burlywood", weight=3]; 2872[label="vwx30/Just vwx300",fontsize=10,color="white",style="solid",shape="box"];32 -> 2872[label="",style="solid", color="burlywood", weight=9]; 2872 -> 69[label="",style="solid", color="burlywood", weight=3]; 33[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2873[label="vwx30/LT",fontsize=10,color="white",style="solid",shape="box"];33 -> 2873[label="",style="solid", color="burlywood", weight=9]; 2873 -> 70[label="",style="solid", color="burlywood", weight=3]; 2874[label="vwx30/EQ",fontsize=10,color="white",style="solid",shape="box"];33 -> 2874[label="",style="solid", color="burlywood", weight=9]; 2874 -> 71[label="",style="solid", color="burlywood", weight=3]; 2875[label="vwx30/GT",fontsize=10,color="white",style="solid",shape="box"];33 -> 2875[label="",style="solid", color="burlywood", weight=9]; 2875 -> 72[label="",style="solid", color="burlywood", weight=3]; 34[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2876[label="vwx30/vwx300 :% vwx301",fontsize=10,color="white",style="solid",shape="box"];34 -> 2876[label="",style="solid", color="burlywood", weight=9]; 2876 -> 73[label="",style="solid", color="burlywood", weight=3]; 35[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2877[label="vwx30/False",fontsize=10,color="white",style="solid",shape="box"];35 -> 2877[label="",style="solid", color="burlywood", weight=9]; 2877 -> 74[label="",style="solid", color="burlywood", weight=3]; 2878[label="vwx30/True",fontsize=10,color="white",style="solid",shape="box"];35 -> 2878[label="",style="solid", color="burlywood", weight=9]; 2878 -> 75[label="",style="solid", color="burlywood", weight=3]; 36[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2879[label="vwx30/(vwx300,vwx301)",fontsize=10,color="white",style="solid",shape="box"];36 -> 2879[label="",style="solid", color="burlywood", weight=9]; 2879 -> 76[label="",style="solid", color="burlywood", weight=3]; 37[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2880[label="vwx30/()",fontsize=10,color="white",style="solid",shape="box"];37 -> 2880[label="",style="solid", color="burlywood", weight=9]; 2880 -> 77[label="",style="solid", color="burlywood", weight=3]; 38[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];38 -> 78[label="",style="solid", color="black", weight=3]; 39[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2881[label="vwx30/(vwx300,vwx301,vwx302)",fontsize=10,color="white",style="solid",shape="box"];39 -> 2881[label="",style="solid", color="burlywood", weight=9]; 2881 -> 79[label="",style="solid", color="burlywood", weight=3]; 40[label="vwx30 == vwx40",fontsize=16,color="black",shape="triangle"];40 -> 80[label="",style="solid", color="black", weight=3]; 41[label="vwx30 == vwx40",fontsize=16,color="burlywood",shape="triangle"];2882[label="vwx30/Integer vwx300",fontsize=10,color="white",style="solid",shape="box"];41 -> 2882[label="",style="solid", color="burlywood", weight=9]; 2882 -> 81[label="",style="solid", color="burlywood", weight=3]; 42[label="compare2 (Left vwx9) (Left vwx10) False == LT",fontsize=16,color="black",shape="box"];42 -> 82[label="",style="solid", color="black", weight=3]; 43[label="compare2 (Left vwx9) (Left vwx10) True == LT",fontsize=16,color="black",shape="box"];43 -> 83[label="",style="solid", color="black", weight=3]; 44 -> 33[label="",style="dashed", color="red", weight=0]; 44[label="compare1 (Left vwx30) (Right vwx40) True == LT",fontsize=16,color="magenta"];44 -> 84[label="",style="dashed", color="magenta", weight=3]; 44 -> 85[label="",style="dashed", color="magenta", weight=3]; 45 -> 33[label="",style="dashed", color="red", weight=0]; 45[label="compare1 (Right vwx30) (Left vwx40) False == LT",fontsize=16,color="magenta"];45 -> 86[label="",style="dashed", color="magenta", weight=3]; 45 -> 87[label="",style="dashed", color="magenta", weight=3]; 46 -> 28[label="",style="dashed", color="red", weight=0]; 46[label="vwx30 == vwx40",fontsize=16,color="magenta"];46 -> 88[label="",style="dashed", color="magenta", weight=3]; 46 -> 89[label="",style="dashed", color="magenta", weight=3]; 47 -> 29[label="",style="dashed", color="red", weight=0]; 47[label="vwx30 == vwx40",fontsize=16,color="magenta"];47 -> 90[label="",style="dashed", color="magenta", weight=3]; 47 -> 91[label="",style="dashed", color="magenta", weight=3]; 48 -> 30[label="",style="dashed", color="red", weight=0]; 48[label="vwx30 == vwx40",fontsize=16,color="magenta"];48 -> 92[label="",style="dashed", color="magenta", weight=3]; 48 -> 93[label="",style="dashed", color="magenta", weight=3]; 49 -> 31[label="",style="dashed", color="red", weight=0]; 49[label="vwx30 == vwx40",fontsize=16,color="magenta"];49 -> 94[label="",style="dashed", color="magenta", weight=3]; 49 -> 95[label="",style="dashed", color="magenta", weight=3]; 50 -> 32[label="",style="dashed", color="red", weight=0]; 50[label="vwx30 == vwx40",fontsize=16,color="magenta"];50 -> 96[label="",style="dashed", color="magenta", weight=3]; 50 -> 97[label="",style="dashed", color="magenta", weight=3]; 51 -> 33[label="",style="dashed", color="red", weight=0]; 51[label="vwx30 == vwx40",fontsize=16,color="magenta"];51 -> 98[label="",style="dashed", color="magenta", weight=3]; 51 -> 99[label="",style="dashed", color="magenta", weight=3]; 52 -> 34[label="",style="dashed", color="red", weight=0]; 52[label="vwx30 == vwx40",fontsize=16,color="magenta"];52 -> 100[label="",style="dashed", color="magenta", weight=3]; 52 -> 101[label="",style="dashed", color="magenta", weight=3]; 53 -> 35[label="",style="dashed", color="red", weight=0]; 53[label="vwx30 == vwx40",fontsize=16,color="magenta"];53 -> 102[label="",style="dashed", color="magenta", weight=3]; 53 -> 103[label="",style="dashed", color="magenta", weight=3]; 54 -> 36[label="",style="dashed", color="red", weight=0]; 54[label="vwx30 == vwx40",fontsize=16,color="magenta"];54 -> 104[label="",style="dashed", color="magenta", weight=3]; 54 -> 105[label="",style="dashed", color="magenta", weight=3]; 55 -> 37[label="",style="dashed", color="red", weight=0]; 55[label="vwx30 == vwx40",fontsize=16,color="magenta"];55 -> 106[label="",style="dashed", color="magenta", weight=3]; 55 -> 107[label="",style="dashed", color="magenta", weight=3]; 56 -> 38[label="",style="dashed", color="red", weight=0]; 56[label="vwx30 == vwx40",fontsize=16,color="magenta"];56 -> 108[label="",style="dashed", color="magenta", weight=3]; 56 -> 109[label="",style="dashed", color="magenta", weight=3]; 57 -> 39[label="",style="dashed", color="red", weight=0]; 57[label="vwx30 == vwx40",fontsize=16,color="magenta"];57 -> 110[label="",style="dashed", color="magenta", weight=3]; 57 -> 111[label="",style="dashed", color="magenta", weight=3]; 58 -> 40[label="",style="dashed", color="red", weight=0]; 58[label="vwx30 == vwx40",fontsize=16,color="magenta"];58 -> 112[label="",style="dashed", color="magenta", weight=3]; 58 -> 113[label="",style="dashed", color="magenta", weight=3]; 59 -> 41[label="",style="dashed", color="red", weight=0]; 59[label="vwx30 == vwx40",fontsize=16,color="magenta"];59 -> 114[label="",style="dashed", color="magenta", weight=3]; 59 -> 115[label="",style="dashed", color="magenta", weight=3]; 60[label="compare2 (Right vwx16) (Right vwx17) False == LT",fontsize=16,color="black",shape="box"];60 -> 116[label="",style="solid", color="black", weight=3]; 61[label="compare2 (Right vwx16) (Right vwx17) True == LT",fontsize=16,color="black",shape="box"];61 -> 117[label="",style="solid", color="black", weight=3]; 62[label="primEqInt vwx30 vwx40",fontsize=16,color="burlywood",shape="triangle"];2883[label="vwx30/Pos vwx300",fontsize=10,color="white",style="solid",shape="box"];62 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 118[label="",style="solid", color="burlywood", weight=3]; 2884[label="vwx30/Neg vwx300",fontsize=10,color="white",style="solid",shape="box"];62 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 119[label="",style="solid", color="burlywood", weight=3]; 63[label="primEqFloat vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2885[label="vwx30/Float vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];63 -> 2885[label="",style="solid", color="burlywood", weight=9]; 2885 -> 120[label="",style="solid", color="burlywood", weight=3]; 64[label="Left vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2886[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];64 -> 2886[label="",style="solid", color="burlywood", weight=9]; 2886 -> 121[label="",style="solid", color="burlywood", weight=3]; 2887[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];64 -> 2887[label="",style="solid", color="burlywood", weight=9]; 2887 -> 122[label="",style="solid", color="burlywood", weight=3]; 65[label="Right vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2888[label="vwx40/Left vwx400",fontsize=10,color="white",style="solid",shape="box"];65 -> 2888[label="",style="solid", color="burlywood", weight=9]; 2888 -> 123[label="",style="solid", color="burlywood", weight=3]; 2889[label="vwx40/Right vwx400",fontsize=10,color="white",style="solid",shape="box"];65 -> 2889[label="",style="solid", color="burlywood", weight=9]; 2889 -> 124[label="",style="solid", color="burlywood", weight=3]; 66[label="vwx300 : vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2890[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];66 -> 2890[label="",style="solid", color="burlywood", weight=9]; 2890 -> 125[label="",style="solid", color="burlywood", weight=3]; 2891[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];66 -> 2891[label="",style="solid", color="burlywood", weight=9]; 2891 -> 126[label="",style="solid", color="burlywood", weight=3]; 67[label="[] == vwx40",fontsize=16,color="burlywood",shape="box"];2892[label="vwx40/vwx400 : vwx401",fontsize=10,color="white",style="solid",shape="box"];67 -> 2892[label="",style="solid", color="burlywood", weight=9]; 2892 -> 127[label="",style="solid", color="burlywood", weight=3]; 2893[label="vwx40/[]",fontsize=10,color="white",style="solid",shape="box"];67 -> 2893[label="",style="solid", color="burlywood", weight=9]; 2893 -> 128[label="",style="solid", color="burlywood", weight=3]; 68[label="Nothing == vwx40",fontsize=16,color="burlywood",shape="box"];2894[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];68 -> 2894[label="",style="solid", color="burlywood", weight=9]; 2894 -> 129[label="",style="solid", color="burlywood", weight=3]; 2895[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];68 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 130[label="",style="solid", color="burlywood", weight=3]; 69[label="Just vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2896[label="vwx40/Nothing",fontsize=10,color="white",style="solid",shape="box"];69 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 131[label="",style="solid", color="burlywood", weight=3]; 2897[label="vwx40/Just vwx400",fontsize=10,color="white",style="solid",shape="box"];69 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 132[label="",style="solid", color="burlywood", weight=3]; 70[label="LT == vwx40",fontsize=16,color="burlywood",shape="box"];2898[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];70 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 133[label="",style="solid", color="burlywood", weight=3]; 2899[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];70 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 134[label="",style="solid", color="burlywood", weight=3]; 2900[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];70 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 135[label="",style="solid", color="burlywood", weight=3]; 71[label="EQ == vwx40",fontsize=16,color="burlywood",shape="box"];2901[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];71 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 136[label="",style="solid", color="burlywood", weight=3]; 2902[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];71 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 137[label="",style="solid", color="burlywood", weight=3]; 2903[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];71 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 138[label="",style="solid", color="burlywood", weight=3]; 72[label="GT == vwx40",fontsize=16,color="burlywood",shape="box"];2904[label="vwx40/LT",fontsize=10,color="white",style="solid",shape="box"];72 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 139[label="",style="solid", color="burlywood", weight=3]; 2905[label="vwx40/EQ",fontsize=10,color="white",style="solid",shape="box"];72 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 140[label="",style="solid", color="burlywood", weight=3]; 2906[label="vwx40/GT",fontsize=10,color="white",style="solid",shape="box"];72 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 141[label="",style="solid", color="burlywood", weight=3]; 73[label="vwx300 :% vwx301 == vwx40",fontsize=16,color="burlywood",shape="box"];2907[label="vwx40/vwx400 :% vwx401",fontsize=10,color="white",style="solid",shape="box"];73 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 142[label="",style="solid", color="burlywood", weight=3]; 74[label="False == vwx40",fontsize=16,color="burlywood",shape="box"];2908[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];74 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 143[label="",style="solid", color="burlywood", weight=3]; 2909[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];74 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 144[label="",style="solid", color="burlywood", weight=3]; 75[label="True == vwx40",fontsize=16,color="burlywood",shape="box"];2910[label="vwx40/False",fontsize=10,color="white",style="solid",shape="box"];75 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 145[label="",style="solid", color="burlywood", weight=3]; 2911[label="vwx40/True",fontsize=10,color="white",style="solid",shape="box"];75 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 146[label="",style="solid", color="burlywood", weight=3]; 76[label="(vwx300,vwx301) == vwx40",fontsize=16,color="burlywood",shape="box"];2912[label="vwx40/(vwx400,vwx401)",fontsize=10,color="white",style="solid",shape="box"];76 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 147[label="",style="solid", color="burlywood", weight=3]; 77[label="() == vwx40",fontsize=16,color="burlywood",shape="box"];2913[label="vwx40/()",fontsize=10,color="white",style="solid",shape="box"];77 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 148[label="",style="solid", color="burlywood", weight=3]; 78[label="primEqDouble vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2914[label="vwx30/Double vwx300 vwx301",fontsize=10,color="white",style="solid",shape="box"];78 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 149[label="",style="solid", color="burlywood", weight=3]; 79[label="(vwx300,vwx301,vwx302) == vwx40",fontsize=16,color="burlywood",shape="box"];2915[label="vwx40/(vwx400,vwx401,vwx402)",fontsize=10,color="white",style="solid",shape="box"];79 -> 2915[label="",style="solid", color="burlywood", weight=9]; 2915 -> 150[label="",style="solid", color="burlywood", weight=3]; 80[label="primEqChar vwx30 vwx40",fontsize=16,color="burlywood",shape="box"];2916[label="vwx30/Char vwx300",fontsize=10,color="white",style="solid",shape="box"];80 -> 2916[label="",style="solid", color="burlywood", weight=9]; 2916 -> 151[label="",style="solid", color="burlywood", weight=3]; 81[label="Integer vwx300 == vwx40",fontsize=16,color="burlywood",shape="box"];2917[label="vwx40/Integer vwx400",fontsize=10,color="white",style="solid",shape="box"];81 -> 2917[label="",style="solid", color="burlywood", weight=9]; 2917 -> 152[label="",style="solid", color="burlywood", weight=3]; 82 -> 33[label="",style="dashed", color="red", weight=0]; 82[label="compare1 (Left vwx9) (Left vwx10) (Left vwx9 <= Left vwx10) == LT",fontsize=16,color="magenta"];82 -> 153[label="",style="dashed", color="magenta", weight=3]; 82 -> 154[label="",style="dashed", color="magenta", weight=3]; 83 -> 33[label="",style="dashed", color="red", weight=0]; 83[label="EQ == LT",fontsize=16,color="magenta"];83 -> 155[label="",style="dashed", color="magenta", weight=3]; 83 -> 156[label="",style="dashed", color="magenta", weight=3]; 84 -> 1785[label="",style="dashed", color="red", weight=0]; 84[label="compare1 (Left vwx30) (Right vwx40) True",fontsize=16,color="magenta"];84 -> 1786[label="",style="dashed", color="magenta", weight=3]; 84 -> 1787[label="",style="dashed", color="magenta", weight=3]; 84 -> 1788[label="",style="dashed", color="magenta", weight=3]; 85[label="LT",fontsize=16,color="green",shape="box"];86 -> 1785[label="",style="dashed", color="red", weight=0]; 86[label="compare1 (Right vwx30) (Left vwx40) False",fontsize=16,color="magenta"];86 -> 1789[label="",style="dashed", color="magenta", weight=3]; 86 -> 1790[label="",style="dashed", color="magenta", weight=3]; 86 -> 1791[label="",style="dashed", color="magenta", weight=3]; 87[label="LT",fontsize=16,color="green",shape="box"];88[label="vwx30",fontsize=16,color="green",shape="box"];89[label="vwx40",fontsize=16,color="green",shape="box"];90[label="vwx30",fontsize=16,color="green",shape="box"];91[label="vwx40",fontsize=16,color="green",shape="box"];92[label="vwx30",fontsize=16,color="green",shape="box"];93[label="vwx40",fontsize=16,color="green",shape="box"];94[label="vwx30",fontsize=16,color="green",shape="box"];95[label="vwx40",fontsize=16,color="green",shape="box"];96[label="vwx30",fontsize=16,color="green",shape="box"];97[label="vwx40",fontsize=16,color="green",shape="box"];98[label="vwx30",fontsize=16,color="green",shape="box"];99[label="vwx40",fontsize=16,color="green",shape="box"];100[label="vwx30",fontsize=16,color="green",shape="box"];101[label="vwx40",fontsize=16,color="green",shape="box"];102[label="vwx30",fontsize=16,color="green",shape="box"];103[label="vwx40",fontsize=16,color="green",shape="box"];104[label="vwx30",fontsize=16,color="green",shape="box"];105[label="vwx40",fontsize=16,color="green",shape="box"];106[label="vwx30",fontsize=16,color="green",shape="box"];107[label="vwx40",fontsize=16,color="green",shape="box"];108[label="vwx30",fontsize=16,color="green",shape="box"];109[label="vwx40",fontsize=16,color="green",shape="box"];110[label="vwx30",fontsize=16,color="green",shape="box"];111[label="vwx40",fontsize=16,color="green",shape="box"];112[label="vwx30",fontsize=16,color="green",shape="box"];113[label="vwx40",fontsize=16,color="green",shape="box"];114[label="vwx30",fontsize=16,color="green",shape="box"];115[label="vwx40",fontsize=16,color="green",shape="box"];116 -> 33[label="",style="dashed", color="red", weight=0]; 116[label="compare1 (Right vwx16) (Right vwx17) (Right vwx16 <= Right vwx17) == LT",fontsize=16,color="magenta"];116 -> 159[label="",style="dashed", color="magenta", weight=3]; 116 -> 160[label="",style="dashed", color="magenta", weight=3]; 117 -> 33[label="",style="dashed", color="red", weight=0]; 117[label="EQ == LT",fontsize=16,color="magenta"];117 -> 161[label="",style="dashed", color="magenta", weight=3]; 117 -> 162[label="",style="dashed", color="magenta", weight=3]; 118[label="primEqInt (Pos vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2918[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];118 -> 2918[label="",style="solid", color="burlywood", weight=9]; 2918 -> 163[label="",style="solid", color="burlywood", weight=3]; 2919[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];118 -> 2919[label="",style="solid", color="burlywood", weight=9]; 2919 -> 164[label="",style="solid", color="burlywood", weight=3]; 119[label="primEqInt (Neg vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2920[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];119 -> 2920[label="",style="solid", color="burlywood", weight=9]; 2920 -> 165[label="",style="solid", color="burlywood", weight=3]; 2921[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];119 -> 2921[label="",style="solid", color="burlywood", weight=9]; 2921 -> 166[label="",style="solid", color="burlywood", weight=3]; 120[label="primEqFloat (Float vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2922[label="vwx40/Float vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];120 -> 2922[label="",style="solid", color="burlywood", weight=9]; 2922 -> 167[label="",style="solid", color="burlywood", weight=3]; 121[label="Left vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];121 -> 168[label="",style="solid", color="black", weight=3]; 122[label="Left vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];122 -> 169[label="",style="solid", color="black", weight=3]; 123[label="Right vwx300 == Left vwx400",fontsize=16,color="black",shape="box"];123 -> 170[label="",style="solid", color="black", weight=3]; 124[label="Right vwx300 == Right vwx400",fontsize=16,color="black",shape="box"];124 -> 171[label="",style="solid", color="black", weight=3]; 125[label="vwx300 : vwx301 == vwx400 : vwx401",fontsize=16,color="black",shape="box"];125 -> 172[label="",style="solid", color="black", weight=3]; 126[label="vwx300 : vwx301 == []",fontsize=16,color="black",shape="box"];126 -> 173[label="",style="solid", color="black", weight=3]; 127[label="[] == vwx400 : vwx401",fontsize=16,color="black",shape="box"];127 -> 174[label="",style="solid", color="black", weight=3]; 128[label="[] == []",fontsize=16,color="black",shape="box"];128 -> 175[label="",style="solid", color="black", weight=3]; 129[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];129 -> 176[label="",style="solid", color="black", weight=3]; 130[label="Nothing == Just vwx400",fontsize=16,color="black",shape="box"];130 -> 177[label="",style="solid", color="black", weight=3]; 131[label="Just vwx300 == Nothing",fontsize=16,color="black",shape="box"];131 -> 178[label="",style="solid", color="black", weight=3]; 132[label="Just vwx300 == Just vwx400",fontsize=16,color="black",shape="box"];132 -> 179[label="",style="solid", color="black", weight=3]; 133[label="LT == LT",fontsize=16,color="black",shape="box"];133 -> 180[label="",style="solid", color="black", weight=3]; 134[label="LT == EQ",fontsize=16,color="black",shape="box"];134 -> 181[label="",style="solid", color="black", weight=3]; 135[label="LT == GT",fontsize=16,color="black",shape="box"];135 -> 182[label="",style="solid", color="black", weight=3]; 136[label="EQ == LT",fontsize=16,color="black",shape="box"];136 -> 183[label="",style="solid", color="black", weight=3]; 137[label="EQ == EQ",fontsize=16,color="black",shape="box"];137 -> 184[label="",style="solid", color="black", weight=3]; 138[label="EQ == GT",fontsize=16,color="black",shape="box"];138 -> 185[label="",style="solid", color="black", weight=3]; 139[label="GT == LT",fontsize=16,color="black",shape="box"];139 -> 186[label="",style="solid", color="black", weight=3]; 140[label="GT == EQ",fontsize=16,color="black",shape="box"];140 -> 187[label="",style="solid", color="black", weight=3]; 141[label="GT == GT",fontsize=16,color="black",shape="box"];141 -> 188[label="",style="solid", color="black", weight=3]; 142[label="vwx300 :% vwx301 == vwx400 :% vwx401",fontsize=16,color="black",shape="box"];142 -> 189[label="",style="solid", color="black", weight=3]; 143[label="False == False",fontsize=16,color="black",shape="box"];143 -> 190[label="",style="solid", color="black", weight=3]; 144[label="False == True",fontsize=16,color="black",shape="box"];144 -> 191[label="",style="solid", color="black", weight=3]; 145[label="True == False",fontsize=16,color="black",shape="box"];145 -> 192[label="",style="solid", color="black", weight=3]; 146[label="True == True",fontsize=16,color="black",shape="box"];146 -> 193[label="",style="solid", color="black", weight=3]; 147[label="(vwx300,vwx301) == (vwx400,vwx401)",fontsize=16,color="black",shape="box"];147 -> 194[label="",style="solid", color="black", weight=3]; 148[label="() == ()",fontsize=16,color="black",shape="box"];148 -> 195[label="",style="solid", color="black", weight=3]; 149[label="primEqDouble (Double vwx300 vwx301) vwx40",fontsize=16,color="burlywood",shape="box"];2923[label="vwx40/Double vwx400 vwx401",fontsize=10,color="white",style="solid",shape="box"];149 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 196[label="",style="solid", color="burlywood", weight=3]; 150[label="(vwx300,vwx301,vwx302) == (vwx400,vwx401,vwx402)",fontsize=16,color="black",shape="box"];150 -> 197[label="",style="solid", color="black", weight=3]; 151[label="primEqChar (Char vwx300) vwx40",fontsize=16,color="burlywood",shape="box"];2924[label="vwx40/Char vwx400",fontsize=10,color="white",style="solid",shape="box"];151 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 198[label="",style="solid", color="burlywood", weight=3]; 152[label="Integer vwx300 == Integer vwx400",fontsize=16,color="black",shape="box"];152 -> 199[label="",style="solid", color="black", weight=3]; 153 -> 1785[label="",style="dashed", color="red", weight=0]; 153[label="compare1 (Left vwx9) (Left vwx10) (Left vwx9 <= Left vwx10)",fontsize=16,color="magenta"];153 -> 1792[label="",style="dashed", color="magenta", weight=3]; 153 -> 1793[label="",style="dashed", color="magenta", weight=3]; 153 -> 1794[label="",style="dashed", color="magenta", weight=3]; 154[label="LT",fontsize=16,color="green",shape="box"];155[label="EQ",fontsize=16,color="green",shape="box"];156[label="LT",fontsize=16,color="green",shape="box"];1786[label="Right vwx40",fontsize=16,color="green",shape="box"];1787[label="True",fontsize=16,color="green",shape="box"];1788[label="Left vwx30",fontsize=16,color="green",shape="box"];1785[label="compare1 vwx90 vwx100 vwx64",fontsize=16,color="burlywood",shape="triangle"];2925[label="vwx64/False",fontsize=10,color="white",style="solid",shape="box"];1785 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 1805[label="",style="solid", color="burlywood", weight=3]; 2926[label="vwx64/True",fontsize=10,color="white",style="solid",shape="box"];1785 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 1806[label="",style="solid", color="burlywood", weight=3]; 1789[label="Left vwx40",fontsize=16,color="green",shape="box"];1790[label="False",fontsize=16,color="green",shape="box"];1791[label="Right vwx30",fontsize=16,color="green",shape="box"];159 -> 1785[label="",style="dashed", color="red", weight=0]; 159[label="compare1 (Right vwx16) (Right vwx17) (Right vwx16 <= Right vwx17)",fontsize=16,color="magenta"];159 -> 1795[label="",style="dashed", color="magenta", weight=3]; 159 -> 1796[label="",style="dashed", color="magenta", weight=3]; 159 -> 1797[label="",style="dashed", color="magenta", weight=3]; 160[label="LT",fontsize=16,color="green",shape="box"];161[label="EQ",fontsize=16,color="green",shape="box"];162[label="LT",fontsize=16,color="green",shape="box"];163[label="primEqInt (Pos (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2927[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];163 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 203[label="",style="solid", color="burlywood", weight=3]; 2928[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];163 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 204[label="",style="solid", color="burlywood", weight=3]; 164[label="primEqInt (Pos Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2929[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];164 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 205[label="",style="solid", color="burlywood", weight=3]; 2930[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];164 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 206[label="",style="solid", color="burlywood", weight=3]; 165[label="primEqInt (Neg (Succ vwx3000)) vwx40",fontsize=16,color="burlywood",shape="box"];2931[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];165 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 207[label="",style="solid", color="burlywood", weight=3]; 2932[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];165 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 208[label="",style="solid", color="burlywood", weight=3]; 166[label="primEqInt (Neg Zero) vwx40",fontsize=16,color="burlywood",shape="box"];2933[label="vwx40/Pos vwx400",fontsize=10,color="white",style="solid",shape="box"];166 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 209[label="",style="solid", color="burlywood", weight=3]; 2934[label="vwx40/Neg vwx400",fontsize=10,color="white",style="solid",shape="box"];166 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 210[label="",style="solid", color="burlywood", weight=3]; 167[label="primEqFloat (Float vwx300 vwx301) (Float vwx400 vwx401)",fontsize=16,color="black",shape="box"];167 -> 211[label="",style="solid", color="black", weight=3]; 168[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2935[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2935[label="",style="solid", color="blue", weight=9]; 2935 -> 212[label="",style="solid", color="blue", weight=3]; 2936[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2936[label="",style="solid", color="blue", weight=9]; 2936 -> 213[label="",style="solid", color="blue", weight=3]; 2937[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2937[label="",style="solid", color="blue", weight=9]; 2937 -> 214[label="",style="solid", color="blue", weight=3]; 2938[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 215[label="",style="solid", color="blue", weight=3]; 2939[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 216[label="",style="solid", color="blue", weight=3]; 2940[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 217[label="",style="solid", color="blue", weight=3]; 2941[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 218[label="",style="solid", color="blue", weight=3]; 2942[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 219[label="",style="solid", color="blue", weight=3]; 2943[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 220[label="",style="solid", color="blue", weight=3]; 2944[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 221[label="",style="solid", color="blue", weight=3]; 2945[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 222[label="",style="solid", color="blue", weight=3]; 2946[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 223[label="",style="solid", color="blue", weight=3]; 2947[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 224[label="",style="solid", color="blue", weight=3]; 2948[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];168 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 225[label="",style="solid", color="blue", weight=3]; 169[label="False",fontsize=16,color="green",shape="box"];170[label="False",fontsize=16,color="green",shape="box"];171[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2949[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 226[label="",style="solid", color="blue", weight=3]; 2950[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 227[label="",style="solid", color="blue", weight=3]; 2951[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 228[label="",style="solid", color="blue", weight=3]; 2952[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 229[label="",style="solid", color="blue", weight=3]; 2953[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 230[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 231[label="",style="solid", color="blue", weight=3]; 2955[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 232[label="",style="solid", color="blue", weight=3]; 2956[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 233[label="",style="solid", color="blue", weight=3]; 2957[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 234[label="",style="solid", color="blue", weight=3]; 2958[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 235[label="",style="solid", color="blue", weight=3]; 2959[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 236[label="",style="solid", color="blue", weight=3]; 2960[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 237[label="",style="solid", color="blue", weight=3]; 2961[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 238[label="",style="solid", color="blue", weight=3]; 2962[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];171 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 239[label="",style="solid", color="blue", weight=3]; 172 -> 364[label="",style="dashed", color="red", weight=0]; 172[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];172 -> 365[label="",style="dashed", color="magenta", weight=3]; 172 -> 366[label="",style="dashed", color="magenta", weight=3]; 173[label="False",fontsize=16,color="green",shape="box"];174[label="False",fontsize=16,color="green",shape="box"];175[label="True",fontsize=16,color="green",shape="box"];176[label="True",fontsize=16,color="green",shape="box"];177[label="False",fontsize=16,color="green",shape="box"];178[label="False",fontsize=16,color="green",shape="box"];179[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2963[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 251[label="",style="solid", color="blue", weight=3]; 2964[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 252[label="",style="solid", color="blue", weight=3]; 2965[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 253[label="",style="solid", color="blue", weight=3]; 2966[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 254[label="",style="solid", color="blue", weight=3]; 2967[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 255[label="",style="solid", color="blue", weight=3]; 2968[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 256[label="",style="solid", color="blue", weight=3]; 2969[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 257[label="",style="solid", color="blue", weight=3]; 2970[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 258[label="",style="solid", color="blue", weight=3]; 2971[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 259[label="",style="solid", color="blue", weight=3]; 2972[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 260[label="",style="solid", color="blue", weight=3]; 2973[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 261[label="",style="solid", color="blue", weight=3]; 2974[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 262[label="",style="solid", color="blue", weight=3]; 2975[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 263[label="",style="solid", color="blue", weight=3]; 2976[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];179 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 264[label="",style="solid", color="blue", weight=3]; 180[label="True",fontsize=16,color="green",shape="box"];181[label="False",fontsize=16,color="green",shape="box"];182[label="False",fontsize=16,color="green",shape="box"];183[label="False",fontsize=16,color="green",shape="box"];184[label="True",fontsize=16,color="green",shape="box"];185[label="False",fontsize=16,color="green",shape="box"];186[label="False",fontsize=16,color="green",shape="box"];187[label="False",fontsize=16,color="green",shape="box"];188[label="True",fontsize=16,color="green",shape="box"];189 -> 364[label="",style="dashed", color="red", weight=0]; 189[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];189 -> 367[label="",style="dashed", color="magenta", weight=3]; 189 -> 368[label="",style="dashed", color="magenta", weight=3]; 190[label="True",fontsize=16,color="green",shape="box"];191[label="False",fontsize=16,color="green",shape="box"];192[label="False",fontsize=16,color="green",shape="box"];193[label="True",fontsize=16,color="green",shape="box"];194 -> 364[label="",style="dashed", color="red", weight=0]; 194[label="vwx300 == vwx400 && vwx301 == vwx401",fontsize=16,color="magenta"];194 -> 369[label="",style="dashed", color="magenta", weight=3]; 194 -> 370[label="",style="dashed", color="magenta", weight=3]; 195[label="True",fontsize=16,color="green",shape="box"];196[label="primEqDouble (Double vwx300 vwx301) (Double vwx400 vwx401)",fontsize=16,color="black",shape="box"];196 -> 265[label="",style="solid", color="black", weight=3]; 197 -> 364[label="",style="dashed", color="red", weight=0]; 197[label="vwx300 == vwx400 && vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];197 -> 371[label="",style="dashed", color="magenta", weight=3]; 197 -> 372[label="",style="dashed", color="magenta", weight=3]; 198[label="primEqChar (Char vwx300) (Char vwx400)",fontsize=16,color="black",shape="box"];198 -> 266[label="",style="solid", color="black", weight=3]; 199 -> 62[label="",style="dashed", color="red", weight=0]; 199[label="primEqInt vwx300 vwx400",fontsize=16,color="magenta"];199 -> 267[label="",style="dashed", color="magenta", weight=3]; 199 -> 268[label="",style="dashed", color="magenta", weight=3]; 1792[label="Left vwx10",fontsize=16,color="green",shape="box"];1793[label="Left vwx9 <= Left vwx10",fontsize=16,color="black",shape="box"];1793 -> 1807[label="",style="solid", color="black", weight=3]; 1794[label="Left vwx9",fontsize=16,color="green",shape="box"];1805[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];1805 -> 1809[label="",style="solid", color="black", weight=3]; 1806[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1806 -> 1810[label="",style="solid", color="black", weight=3]; 1795[label="Right vwx17",fontsize=16,color="green",shape="box"];1796[label="Right vwx16 <= Right vwx17",fontsize=16,color="black",shape="box"];1796 -> 1808[label="",style="solid", color="black", weight=3]; 1797[label="Right vwx16",fontsize=16,color="green",shape="box"];203[label="primEqInt (Pos (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2977[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];203 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 290[label="",style="solid", color="burlywood", weight=3]; 2978[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];203 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 291[label="",style="solid", color="burlywood", weight=3]; 204[label="primEqInt (Pos (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="black",shape="box"];204 -> 292[label="",style="solid", color="black", weight=3]; 205[label="primEqInt (Pos Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2979[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];205 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 293[label="",style="solid", color="burlywood", weight=3]; 2980[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];205 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 294[label="",style="solid", color="burlywood", weight=3]; 206[label="primEqInt (Pos Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2981[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];206 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 295[label="",style="solid", color="burlywood", weight=3]; 2982[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];206 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 296[label="",style="solid", color="burlywood", weight=3]; 207[label="primEqInt (Neg (Succ vwx3000)) (Pos vwx400)",fontsize=16,color="black",shape="box"];207 -> 297[label="",style="solid", color="black", weight=3]; 208[label="primEqInt (Neg (Succ vwx3000)) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2983[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];208 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 298[label="",style="solid", color="burlywood", weight=3]; 2984[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];208 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 299[label="",style="solid", color="burlywood", weight=3]; 209[label="primEqInt (Neg Zero) (Pos vwx400)",fontsize=16,color="burlywood",shape="box"];2985[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];209 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 300[label="",style="solid", color="burlywood", weight=3]; 2986[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];209 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 301[label="",style="solid", color="burlywood", weight=3]; 210[label="primEqInt (Neg Zero) (Neg vwx400)",fontsize=16,color="burlywood",shape="box"];2987[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];210 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 302[label="",style="solid", color="burlywood", weight=3]; 2988[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];210 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 303[label="",style="solid", color="burlywood", weight=3]; 211 -> 28[label="",style="dashed", color="red", weight=0]; 211[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];211 -> 304[label="",style="dashed", color="magenta", weight=3]; 211 -> 305[label="",style="dashed", color="magenta", weight=3]; 212 -> 28[label="",style="dashed", color="red", weight=0]; 212[label="vwx300 == vwx400",fontsize=16,color="magenta"];212 -> 306[label="",style="dashed", color="magenta", weight=3]; 212 -> 307[label="",style="dashed", color="magenta", weight=3]; 213 -> 29[label="",style="dashed", color="red", weight=0]; 213[label="vwx300 == vwx400",fontsize=16,color="magenta"];213 -> 308[label="",style="dashed", color="magenta", weight=3]; 213 -> 309[label="",style="dashed", color="magenta", weight=3]; 214 -> 30[label="",style="dashed", color="red", weight=0]; 214[label="vwx300 == vwx400",fontsize=16,color="magenta"];214 -> 310[label="",style="dashed", color="magenta", weight=3]; 214 -> 311[label="",style="dashed", color="magenta", weight=3]; 215 -> 31[label="",style="dashed", color="red", weight=0]; 215[label="vwx300 == vwx400",fontsize=16,color="magenta"];215 -> 312[label="",style="dashed", color="magenta", weight=3]; 215 -> 313[label="",style="dashed", color="magenta", weight=3]; 216 -> 32[label="",style="dashed", color="red", weight=0]; 216[label="vwx300 == vwx400",fontsize=16,color="magenta"];216 -> 314[label="",style="dashed", color="magenta", weight=3]; 216 -> 315[label="",style="dashed", color="magenta", weight=3]; 217 -> 33[label="",style="dashed", color="red", weight=0]; 217[label="vwx300 == vwx400",fontsize=16,color="magenta"];217 -> 316[label="",style="dashed", color="magenta", weight=3]; 217 -> 317[label="",style="dashed", color="magenta", weight=3]; 218 -> 34[label="",style="dashed", color="red", weight=0]; 218[label="vwx300 == vwx400",fontsize=16,color="magenta"];218 -> 318[label="",style="dashed", color="magenta", weight=3]; 218 -> 319[label="",style="dashed", color="magenta", weight=3]; 219 -> 35[label="",style="dashed", color="red", weight=0]; 219[label="vwx300 == vwx400",fontsize=16,color="magenta"];219 -> 320[label="",style="dashed", color="magenta", weight=3]; 219 -> 321[label="",style="dashed", color="magenta", weight=3]; 220 -> 36[label="",style="dashed", color="red", weight=0]; 220[label="vwx300 == vwx400",fontsize=16,color="magenta"];220 -> 322[label="",style="dashed", color="magenta", weight=3]; 220 -> 323[label="",style="dashed", color="magenta", weight=3]; 221 -> 37[label="",style="dashed", color="red", weight=0]; 221[label="vwx300 == vwx400",fontsize=16,color="magenta"];221 -> 324[label="",style="dashed", color="magenta", weight=3]; 221 -> 325[label="",style="dashed", color="magenta", weight=3]; 222 -> 38[label="",style="dashed", color="red", weight=0]; 222[label="vwx300 == vwx400",fontsize=16,color="magenta"];222 -> 326[label="",style="dashed", color="magenta", weight=3]; 222 -> 327[label="",style="dashed", color="magenta", weight=3]; 223 -> 39[label="",style="dashed", color="red", weight=0]; 223[label="vwx300 == vwx400",fontsize=16,color="magenta"];223 -> 328[label="",style="dashed", color="magenta", weight=3]; 223 -> 329[label="",style="dashed", color="magenta", weight=3]; 224 -> 40[label="",style="dashed", color="red", weight=0]; 224[label="vwx300 == vwx400",fontsize=16,color="magenta"];224 -> 330[label="",style="dashed", color="magenta", weight=3]; 224 -> 331[label="",style="dashed", color="magenta", weight=3]; 225 -> 41[label="",style="dashed", color="red", weight=0]; 225[label="vwx300 == vwx400",fontsize=16,color="magenta"];225 -> 332[label="",style="dashed", color="magenta", weight=3]; 225 -> 333[label="",style="dashed", color="magenta", weight=3]; 226 -> 28[label="",style="dashed", color="red", weight=0]; 226[label="vwx300 == vwx400",fontsize=16,color="magenta"];226 -> 334[label="",style="dashed", color="magenta", weight=3]; 226 -> 335[label="",style="dashed", color="magenta", weight=3]; 227 -> 29[label="",style="dashed", color="red", weight=0]; 227[label="vwx300 == vwx400",fontsize=16,color="magenta"];227 -> 336[label="",style="dashed", color="magenta", weight=3]; 227 -> 337[label="",style="dashed", color="magenta", weight=3]; 228 -> 30[label="",style="dashed", color="red", weight=0]; 228[label="vwx300 == vwx400",fontsize=16,color="magenta"];228 -> 338[label="",style="dashed", color="magenta", weight=3]; 228 -> 339[label="",style="dashed", color="magenta", weight=3]; 229 -> 31[label="",style="dashed", color="red", weight=0]; 229[label="vwx300 == vwx400",fontsize=16,color="magenta"];229 -> 340[label="",style="dashed", color="magenta", weight=3]; 229 -> 341[label="",style="dashed", color="magenta", weight=3]; 230 -> 32[label="",style="dashed", color="red", weight=0]; 230[label="vwx300 == vwx400",fontsize=16,color="magenta"];230 -> 342[label="",style="dashed", color="magenta", weight=3]; 230 -> 343[label="",style="dashed", color="magenta", weight=3]; 231 -> 33[label="",style="dashed", color="red", weight=0]; 231[label="vwx300 == vwx400",fontsize=16,color="magenta"];231 -> 344[label="",style="dashed", color="magenta", weight=3]; 231 -> 345[label="",style="dashed", color="magenta", weight=3]; 232 -> 34[label="",style="dashed", color="red", weight=0]; 232[label="vwx300 == vwx400",fontsize=16,color="magenta"];232 -> 346[label="",style="dashed", color="magenta", weight=3]; 232 -> 347[label="",style="dashed", color="magenta", weight=3]; 233 -> 35[label="",style="dashed", color="red", weight=0]; 233[label="vwx300 == vwx400",fontsize=16,color="magenta"];233 -> 348[label="",style="dashed", color="magenta", weight=3]; 233 -> 349[label="",style="dashed", color="magenta", weight=3]; 234 -> 36[label="",style="dashed", color="red", weight=0]; 234[label="vwx300 == vwx400",fontsize=16,color="magenta"];234 -> 350[label="",style="dashed", color="magenta", weight=3]; 234 -> 351[label="",style="dashed", color="magenta", weight=3]; 235 -> 37[label="",style="dashed", color="red", weight=0]; 235[label="vwx300 == vwx400",fontsize=16,color="magenta"];235 -> 352[label="",style="dashed", color="magenta", weight=3]; 235 -> 353[label="",style="dashed", color="magenta", weight=3]; 236 -> 38[label="",style="dashed", color="red", weight=0]; 236[label="vwx300 == vwx400",fontsize=16,color="magenta"];236 -> 354[label="",style="dashed", color="magenta", weight=3]; 236 -> 355[label="",style="dashed", color="magenta", weight=3]; 237 -> 39[label="",style="dashed", color="red", weight=0]; 237[label="vwx300 == vwx400",fontsize=16,color="magenta"];237 -> 356[label="",style="dashed", color="magenta", weight=3]; 237 -> 357[label="",style="dashed", color="magenta", weight=3]; 238 -> 40[label="",style="dashed", color="red", weight=0]; 238[label="vwx300 == vwx400",fontsize=16,color="magenta"];238 -> 358[label="",style="dashed", color="magenta", weight=3]; 238 -> 359[label="",style="dashed", color="magenta", weight=3]; 239 -> 41[label="",style="dashed", color="red", weight=0]; 239[label="vwx300 == vwx400",fontsize=16,color="magenta"];239 -> 360[label="",style="dashed", color="magenta", weight=3]; 239 -> 361[label="",style="dashed", color="magenta", weight=3]; 365 -> 31[label="",style="dashed", color="red", weight=0]; 365[label="vwx301 == vwx401",fontsize=16,color="magenta"];365 -> 377[label="",style="dashed", color="magenta", weight=3]; 365 -> 378[label="",style="dashed", color="magenta", weight=3]; 366[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];2989[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2989[label="",style="solid", color="blue", weight=9]; 2989 -> 379[label="",style="solid", color="blue", weight=3]; 2990[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2990[label="",style="solid", color="blue", weight=9]; 2990 -> 380[label="",style="solid", color="blue", weight=3]; 2991[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2991[label="",style="solid", color="blue", weight=9]; 2991 -> 381[label="",style="solid", color="blue", weight=3]; 2992[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2992[label="",style="solid", color="blue", weight=9]; 2992 -> 382[label="",style="solid", color="blue", weight=3]; 2993[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2993[label="",style="solid", color="blue", weight=9]; 2993 -> 383[label="",style="solid", color="blue", weight=3]; 2994[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2994[label="",style="solid", color="blue", weight=9]; 2994 -> 384[label="",style="solid", color="blue", weight=3]; 2995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2995[label="",style="solid", color="blue", weight=9]; 2995 -> 385[label="",style="solid", color="blue", weight=3]; 2996[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2996[label="",style="solid", color="blue", weight=9]; 2996 -> 386[label="",style="solid", color="blue", weight=3]; 2997[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2997[label="",style="solid", color="blue", weight=9]; 2997 -> 387[label="",style="solid", color="blue", weight=3]; 2998[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2998[label="",style="solid", color="blue", weight=9]; 2998 -> 388[label="",style="solid", color="blue", weight=3]; 2999[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2999[label="",style="solid", color="blue", weight=9]; 2999 -> 389[label="",style="solid", color="blue", weight=3]; 3000[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 3000[label="",style="solid", color="blue", weight=9]; 3000 -> 390[label="",style="solid", color="blue", weight=3]; 3001[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 3001[label="",style="solid", color="blue", weight=9]; 3001 -> 391[label="",style="solid", color="blue", weight=3]; 3002[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 3002[label="",style="solid", color="blue", weight=9]; 3002 -> 392[label="",style="solid", color="blue", weight=3]; 364[label="vwx37 && vwx38",fontsize=16,color="burlywood",shape="triangle"];3003[label="vwx37/False",fontsize=10,color="white",style="solid",shape="box"];364 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 393[label="",style="solid", color="burlywood", weight=3]; 3004[label="vwx37/True",fontsize=10,color="white",style="solid",shape="box"];364 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 394[label="",style="solid", color="burlywood", weight=3]; 251 -> 28[label="",style="dashed", color="red", weight=0]; 251[label="vwx300 == vwx400",fontsize=16,color="magenta"];251 -> 395[label="",style="dashed", color="magenta", weight=3]; 251 -> 396[label="",style="dashed", color="magenta", weight=3]; 252 -> 29[label="",style="dashed", color="red", weight=0]; 252[label="vwx300 == vwx400",fontsize=16,color="magenta"];252 -> 397[label="",style="dashed", color="magenta", weight=3]; 252 -> 398[label="",style="dashed", color="magenta", weight=3]; 253 -> 30[label="",style="dashed", color="red", weight=0]; 253[label="vwx300 == vwx400",fontsize=16,color="magenta"];253 -> 399[label="",style="dashed", color="magenta", weight=3]; 253 -> 400[label="",style="dashed", color="magenta", weight=3]; 254 -> 31[label="",style="dashed", color="red", weight=0]; 254[label="vwx300 == vwx400",fontsize=16,color="magenta"];254 -> 401[label="",style="dashed", color="magenta", weight=3]; 254 -> 402[label="",style="dashed", color="magenta", weight=3]; 255 -> 32[label="",style="dashed", color="red", weight=0]; 255[label="vwx300 == vwx400",fontsize=16,color="magenta"];255 -> 403[label="",style="dashed", color="magenta", weight=3]; 255 -> 404[label="",style="dashed", color="magenta", weight=3]; 256 -> 33[label="",style="dashed", color="red", weight=0]; 256[label="vwx300 == vwx400",fontsize=16,color="magenta"];256 -> 405[label="",style="dashed", color="magenta", weight=3]; 256 -> 406[label="",style="dashed", color="magenta", weight=3]; 257 -> 34[label="",style="dashed", color="red", weight=0]; 257[label="vwx300 == vwx400",fontsize=16,color="magenta"];257 -> 407[label="",style="dashed", color="magenta", weight=3]; 257 -> 408[label="",style="dashed", color="magenta", weight=3]; 258 -> 35[label="",style="dashed", color="red", weight=0]; 258[label="vwx300 == vwx400",fontsize=16,color="magenta"];258 -> 409[label="",style="dashed", color="magenta", weight=3]; 258 -> 410[label="",style="dashed", color="magenta", weight=3]; 259 -> 36[label="",style="dashed", color="red", weight=0]; 259[label="vwx300 == vwx400",fontsize=16,color="magenta"];259 -> 411[label="",style="dashed", color="magenta", weight=3]; 259 -> 412[label="",style="dashed", color="magenta", weight=3]; 260 -> 37[label="",style="dashed", color="red", weight=0]; 260[label="vwx300 == vwx400",fontsize=16,color="magenta"];260 -> 413[label="",style="dashed", color="magenta", weight=3]; 260 -> 414[label="",style="dashed", color="magenta", weight=3]; 261 -> 38[label="",style="dashed", color="red", weight=0]; 261[label="vwx300 == vwx400",fontsize=16,color="magenta"];261 -> 415[label="",style="dashed", color="magenta", weight=3]; 261 -> 416[label="",style="dashed", color="magenta", weight=3]; 262 -> 39[label="",style="dashed", color="red", weight=0]; 262[label="vwx300 == vwx400",fontsize=16,color="magenta"];262 -> 417[label="",style="dashed", color="magenta", weight=3]; 262 -> 418[label="",style="dashed", color="magenta", weight=3]; 263 -> 40[label="",style="dashed", color="red", weight=0]; 263[label="vwx300 == vwx400",fontsize=16,color="magenta"];263 -> 419[label="",style="dashed", color="magenta", weight=3]; 263 -> 420[label="",style="dashed", color="magenta", weight=3]; 264 -> 41[label="",style="dashed", color="red", weight=0]; 264[label="vwx300 == vwx400",fontsize=16,color="magenta"];264 -> 421[label="",style="dashed", color="magenta", weight=3]; 264 -> 422[label="",style="dashed", color="magenta", weight=3]; 367[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3005[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 3005[label="",style="solid", color="blue", weight=9]; 3005 -> 423[label="",style="solid", color="blue", weight=3]; 3006[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 3006[label="",style="solid", color="blue", weight=9]; 3006 -> 424[label="",style="solid", color="blue", weight=3]; 368[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3007[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];368 -> 3007[label="",style="solid", color="blue", weight=9]; 3007 -> 425[label="",style="solid", color="blue", weight=3]; 3008[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];368 -> 3008[label="",style="solid", color="blue", weight=9]; 3008 -> 426[label="",style="solid", color="blue", weight=3]; 369[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3009[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3009[label="",style="solid", color="blue", weight=9]; 3009 -> 427[label="",style="solid", color="blue", weight=3]; 3010[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3010[label="",style="solid", color="blue", weight=9]; 3010 -> 428[label="",style="solid", color="blue", weight=3]; 3011[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3011[label="",style="solid", color="blue", weight=9]; 3011 -> 429[label="",style="solid", color="blue", weight=3]; 3012[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3012[label="",style="solid", color="blue", weight=9]; 3012 -> 430[label="",style="solid", color="blue", weight=3]; 3013[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3013[label="",style="solid", color="blue", weight=9]; 3013 -> 431[label="",style="solid", color="blue", weight=3]; 3014[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3014[label="",style="solid", color="blue", weight=9]; 3014 -> 432[label="",style="solid", color="blue", weight=3]; 3015[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3015[label="",style="solid", color="blue", weight=9]; 3015 -> 433[label="",style="solid", color="blue", weight=3]; 3016[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3016[label="",style="solid", color="blue", weight=9]; 3016 -> 434[label="",style="solid", color="blue", weight=3]; 3017[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3017[label="",style="solid", color="blue", weight=9]; 3017 -> 435[label="",style="solid", color="blue", weight=3]; 3018[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3018[label="",style="solid", color="blue", weight=9]; 3018 -> 436[label="",style="solid", color="blue", weight=3]; 3019[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3019[label="",style="solid", color="blue", weight=9]; 3019 -> 437[label="",style="solid", color="blue", weight=3]; 3020[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3020[label="",style="solid", color="blue", weight=9]; 3020 -> 438[label="",style="solid", color="blue", weight=3]; 3021[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3021[label="",style="solid", color="blue", weight=9]; 3021 -> 439[label="",style="solid", color="blue", weight=3]; 3022[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];369 -> 3022[label="",style="solid", color="blue", weight=9]; 3022 -> 440[label="",style="solid", color="blue", weight=3]; 370[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3023[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 441[label="",style="solid", color="blue", weight=3]; 3024[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 442[label="",style="solid", color="blue", weight=3]; 3025[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 443[label="",style="solid", color="blue", weight=3]; 3026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 444[label="",style="solid", color="blue", weight=3]; 3027[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 445[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 446[label="",style="solid", color="blue", weight=3]; 3029[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 447[label="",style="solid", color="blue", weight=3]; 3030[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 448[label="",style="solid", color="blue", weight=3]; 3031[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 449[label="",style="solid", color="blue", weight=3]; 3032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 450[label="",style="solid", color="blue", weight=3]; 3033[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 451[label="",style="solid", color="blue", weight=3]; 3034[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 452[label="",style="solid", color="blue", weight=3]; 3035[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 453[label="",style="solid", color="blue", weight=3]; 3036[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];370 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 454[label="",style="solid", color="blue", weight=3]; 265 -> 28[label="",style="dashed", color="red", weight=0]; 265[label="vwx300 * vwx401 == vwx301 * vwx400",fontsize=16,color="magenta"];265 -> 455[label="",style="dashed", color="magenta", weight=3]; 265 -> 456[label="",style="dashed", color="magenta", weight=3]; 371 -> 364[label="",style="dashed", color="red", weight=0]; 371[label="vwx301 == vwx401 && vwx302 == vwx402",fontsize=16,color="magenta"];371 -> 457[label="",style="dashed", color="magenta", weight=3]; 371 -> 458[label="",style="dashed", color="magenta", weight=3]; 372[label="vwx300 == vwx400",fontsize=16,color="blue",shape="box"];3037[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3037[label="",style="solid", color="blue", weight=9]; 3037 -> 459[label="",style="solid", color="blue", weight=3]; 3038[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3038[label="",style="solid", color="blue", weight=9]; 3038 -> 460[label="",style="solid", color="blue", weight=3]; 3039[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 461[label="",style="solid", color="blue", weight=3]; 3040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 462[label="",style="solid", color="blue", weight=3]; 3041[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 463[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 464[label="",style="solid", color="blue", weight=3]; 3043[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 465[label="",style="solid", color="blue", weight=3]; 3044[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 466[label="",style="solid", color="blue", weight=3]; 3045[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 467[label="",style="solid", color="blue", weight=3]; 3046[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 468[label="",style="solid", color="blue", weight=3]; 3047[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 469[label="",style="solid", color="blue", weight=3]; 3048[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 470[label="",style="solid", color="blue", weight=3]; 3049[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 471[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];372 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 472[label="",style="solid", color="blue", weight=3]; 266[label="primEqNat vwx300 vwx400",fontsize=16,color="burlywood",shape="triangle"];3051[label="vwx300/Succ vwx3000",fontsize=10,color="white",style="solid",shape="box"];266 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 473[label="",style="solid", color="burlywood", weight=3]; 3052[label="vwx300/Zero",fontsize=10,color="white",style="solid",shape="box"];266 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 474[label="",style="solid", color="burlywood", weight=3]; 267[label="vwx300",fontsize=16,color="green",shape="box"];268[label="vwx400",fontsize=16,color="green",shape="box"];1807[label="vwx9 <= vwx10",fontsize=16,color="blue",shape="box"];3053[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3053[label="",style="solid", color="blue", weight=9]; 3053 -> 1811[label="",style="solid", color="blue", weight=3]; 3054[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3054[label="",style="solid", color="blue", weight=9]; 3054 -> 1812[label="",style="solid", color="blue", weight=3]; 3055[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 1813[label="",style="solid", color="blue", weight=3]; 3056[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 1814[label="",style="solid", color="blue", weight=3]; 3057[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 1815[label="",style="solid", color="blue", weight=3]; 3058[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 1816[label="",style="solid", color="blue", weight=3]; 3059[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 1817[label="",style="solid", color="blue", weight=3]; 3060[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 1818[label="",style="solid", color="blue", weight=3]; 3061[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 1819[label="",style="solid", color="blue", weight=3]; 3062[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 1820[label="",style="solid", color="blue", weight=3]; 3063[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 1821[label="",style="solid", color="blue", weight=3]; 3064[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 1822[label="",style="solid", color="blue", weight=3]; 3065[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 1823[label="",style="solid", color="blue", weight=3]; 3066[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1807 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 1824[label="",style="solid", color="blue", weight=3]; 1809[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];1809 -> 1839[label="",style="solid", color="black", weight=3]; 1810[label="LT",fontsize=16,color="green",shape="box"];1808[label="vwx16 <= vwx17",fontsize=16,color="blue",shape="box"];3067[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 1825[label="",style="solid", color="blue", weight=3]; 3068[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 1826[label="",style="solid", color="blue", weight=3]; 3069[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3069[label="",style="solid", color="blue", weight=9]; 3069 -> 1827[label="",style="solid", color="blue", weight=3]; 3070[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3070[label="",style="solid", color="blue", weight=9]; 3070 -> 1828[label="",style="solid", color="blue", weight=3]; 3071[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3071[label="",style="solid", color="blue", weight=9]; 3071 -> 1829[label="",style="solid", color="blue", weight=3]; 3072[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3072[label="",style="solid", color="blue", weight=9]; 3072 -> 1830[label="",style="solid", color="blue", weight=3]; 3073[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3073[label="",style="solid", color="blue", weight=9]; 3073 -> 1831[label="",style="solid", color="blue", weight=3]; 3074[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3074[label="",style="solid", color="blue", weight=9]; 3074 -> 1832[label="",style="solid", color="blue", weight=3]; 3075[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 1833[label="",style="solid", color="blue", weight=3]; 3076[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 1834[label="",style="solid", color="blue", weight=3]; 3077[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 1835[label="",style="solid", color="blue", weight=3]; 3078[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 1836[label="",style="solid", color="blue", weight=3]; 3079[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 1837[label="",style="solid", color="blue", weight=3]; 3080[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1808 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 1838[label="",style="solid", color="blue", weight=3]; 290[label="primEqInt (Pos (Succ vwx3000)) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];290 -> 507[label="",style="solid", color="black", weight=3]; 291[label="primEqInt (Pos (Succ vwx3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];291 -> 508[label="",style="solid", color="black", weight=3]; 292[label="False",fontsize=16,color="green",shape="box"];293[label="primEqInt (Pos Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];293 -> 509[label="",style="solid", color="black", weight=3]; 294[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];294 -> 510[label="",style="solid", color="black", weight=3]; 295[label="primEqInt (Pos Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];295 -> 511[label="",style="solid", color="black", weight=3]; 296[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];296 -> 512[label="",style="solid", color="black", weight=3]; 297[label="False",fontsize=16,color="green",shape="box"];298[label="primEqInt (Neg (Succ vwx3000)) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];298 -> 513[label="",style="solid", color="black", weight=3]; 299[label="primEqInt (Neg (Succ vwx3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];299 -> 514[label="",style="solid", color="black", weight=3]; 300[label="primEqInt (Neg Zero) (Pos (Succ vwx4000))",fontsize=16,color="black",shape="box"];300 -> 515[label="",style="solid", color="black", weight=3]; 301[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];301 -> 516[label="",style="solid", color="black", weight=3]; 302[label="primEqInt (Neg Zero) (Neg (Succ vwx4000))",fontsize=16,color="black",shape="box"];302 -> 517[label="",style="solid", color="black", weight=3]; 303[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];303 -> 518[label="",style="solid", color="black", weight=3]; 304[label="vwx300 * vwx401",fontsize=16,color="black",shape="triangle"];304 -> 519[label="",style="solid", color="black", weight=3]; 305 -> 304[label="",style="dashed", color="red", weight=0]; 305[label="vwx301 * vwx400",fontsize=16,color="magenta"];305 -> 520[label="",style="dashed", color="magenta", weight=3]; 305 -> 521[label="",style="dashed", color="magenta", weight=3]; 306[label="vwx300",fontsize=16,color="green",shape="box"];307[label="vwx400",fontsize=16,color="green",shape="box"];308[label="vwx300",fontsize=16,color="green",shape="box"];309[label="vwx400",fontsize=16,color="green",shape="box"];310[label="vwx300",fontsize=16,color="green",shape="box"];311[label="vwx400",fontsize=16,color="green",shape="box"];312[label="vwx300",fontsize=16,color="green",shape="box"];313[label="vwx400",fontsize=16,color="green",shape="box"];314[label="vwx300",fontsize=16,color="green",shape="box"];315[label="vwx400",fontsize=16,color="green",shape="box"];316[label="vwx300",fontsize=16,color="green",shape="box"];317[label="vwx400",fontsize=16,color="green",shape="box"];318[label="vwx300",fontsize=16,color="green",shape="box"];319[label="vwx400",fontsize=16,color="green",shape="box"];320[label="vwx300",fontsize=16,color="green",shape="box"];321[label="vwx400",fontsize=16,color="green",shape="box"];322[label="vwx300",fontsize=16,color="green",shape="box"];323[label="vwx400",fontsize=16,color="green",shape="box"];324[label="vwx300",fontsize=16,color="green",shape="box"];325[label="vwx400",fontsize=16,color="green",shape="box"];326[label="vwx300",fontsize=16,color="green",shape="box"];327[label="vwx400",fontsize=16,color="green",shape="box"];328[label="vwx300",fontsize=16,color="green",shape="box"];329[label="vwx400",fontsize=16,color="green",shape="box"];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[label="vwx300",fontsize=16,color="green",shape="box"];359[label="vwx400",fontsize=16,color="green",shape="box"];360[label="vwx300",fontsize=16,color="green",shape="box"];361[label="vwx400",fontsize=16,color="green",shape="box"];377[label="vwx301",fontsize=16,color="green",shape="box"];378[label="vwx401",fontsize=16,color="green",shape="box"];379 -> 28[label="",style="dashed", color="red", weight=0]; 379[label="vwx300 == vwx400",fontsize=16,color="magenta"];379 -> 522[label="",style="dashed", color="magenta", weight=3]; 379 -> 523[label="",style="dashed", color="magenta", weight=3]; 380 -> 29[label="",style="dashed", color="red", weight=0]; 380[label="vwx300 == vwx400",fontsize=16,color="magenta"];380 -> 524[label="",style="dashed", color="magenta", weight=3]; 380 -> 525[label="",style="dashed", color="magenta", weight=3]; 381 -> 30[label="",style="dashed", color="red", weight=0]; 381[label="vwx300 == vwx400",fontsize=16,color="magenta"];381 -> 526[label="",style="dashed", color="magenta", weight=3]; 381 -> 527[label="",style="dashed", color="magenta", weight=3]; 382 -> 31[label="",style="dashed", color="red", weight=0]; 382[label="vwx300 == vwx400",fontsize=16,color="magenta"];382 -> 528[label="",style="dashed", color="magenta", weight=3]; 382 -> 529[label="",style="dashed", color="magenta", weight=3]; 383 -> 32[label="",style="dashed", color="red", weight=0]; 383[label="vwx300 == vwx400",fontsize=16,color="magenta"];383 -> 530[label="",style="dashed", color="magenta", weight=3]; 383 -> 531[label="",style="dashed", color="magenta", weight=3]; 384 -> 33[label="",style="dashed", color="red", weight=0]; 384[label="vwx300 == vwx400",fontsize=16,color="magenta"];384 -> 532[label="",style="dashed", color="magenta", weight=3]; 384 -> 533[label="",style="dashed", color="magenta", weight=3]; 385 -> 34[label="",style="dashed", color="red", weight=0]; 385[label="vwx300 == vwx400",fontsize=16,color="magenta"];385 -> 534[label="",style="dashed", color="magenta", weight=3]; 385 -> 535[label="",style="dashed", color="magenta", weight=3]; 386 -> 35[label="",style="dashed", color="red", weight=0]; 386[label="vwx300 == vwx400",fontsize=16,color="magenta"];386 -> 536[label="",style="dashed", color="magenta", weight=3]; 386 -> 537[label="",style="dashed", color="magenta", weight=3]; 387 -> 36[label="",style="dashed", color="red", weight=0]; 387[label="vwx300 == vwx400",fontsize=16,color="magenta"];387 -> 538[label="",style="dashed", color="magenta", weight=3]; 387 -> 539[label="",style="dashed", color="magenta", weight=3]; 388 -> 37[label="",style="dashed", color="red", weight=0]; 388[label="vwx300 == vwx400",fontsize=16,color="magenta"];388 -> 540[label="",style="dashed", color="magenta", weight=3]; 388 -> 541[label="",style="dashed", color="magenta", weight=3]; 389 -> 38[label="",style="dashed", color="red", weight=0]; 389[label="vwx300 == vwx400",fontsize=16,color="magenta"];389 -> 542[label="",style="dashed", color="magenta", weight=3]; 389 -> 543[label="",style="dashed", color="magenta", weight=3]; 390 -> 39[label="",style="dashed", color="red", weight=0]; 390[label="vwx300 == vwx400",fontsize=16,color="magenta"];390 -> 544[label="",style="dashed", color="magenta", weight=3]; 390 -> 545[label="",style="dashed", color="magenta", weight=3]; 391 -> 40[label="",style="dashed", color="red", weight=0]; 391[label="vwx300 == vwx400",fontsize=16,color="magenta"];391 -> 546[label="",style="dashed", color="magenta", weight=3]; 391 -> 547[label="",style="dashed", color="magenta", weight=3]; 392 -> 41[label="",style="dashed", color="red", weight=0]; 392[label="vwx300 == vwx400",fontsize=16,color="magenta"];392 -> 548[label="",style="dashed", color="magenta", weight=3]; 392 -> 549[label="",style="dashed", color="magenta", weight=3]; 393[label="False && vwx38",fontsize=16,color="black",shape="box"];393 -> 550[label="",style="solid", color="black", weight=3]; 394[label="True && vwx38",fontsize=16,color="black",shape="box"];394 -> 551[label="",style="solid", color="black", weight=3]; 395[label="vwx300",fontsize=16,color="green",shape="box"];396[label="vwx400",fontsize=16,color="green",shape="box"];397[label="vwx300",fontsize=16,color="green",shape="box"];398[label="vwx400",fontsize=16,color="green",shape="box"];399[label="vwx300",fontsize=16,color="green",shape="box"];400[label="vwx400",fontsize=16,color="green",shape="box"];401[label="vwx300",fontsize=16,color="green",shape="box"];402[label="vwx400",fontsize=16,color="green",shape="box"];403[label="vwx300",fontsize=16,color="green",shape="box"];404[label="vwx400",fontsize=16,color="green",shape="box"];405[label="vwx300",fontsize=16,color="green",shape="box"];406[label="vwx400",fontsize=16,color="green",shape="box"];407[label="vwx300",fontsize=16,color="green",shape="box"];408[label="vwx400",fontsize=16,color="green",shape="box"];409[label="vwx300",fontsize=16,color="green",shape="box"];410[label="vwx400",fontsize=16,color="green",shape="box"];411[label="vwx300",fontsize=16,color="green",shape="box"];412[label="vwx400",fontsize=16,color="green",shape="box"];413[label="vwx300",fontsize=16,color="green",shape="box"];414[label="vwx400",fontsize=16,color="green",shape="box"];415[label="vwx300",fontsize=16,color="green",shape="box"];416[label="vwx400",fontsize=16,color="green",shape="box"];417[label="vwx300",fontsize=16,color="green",shape="box"];418[label="vwx400",fontsize=16,color="green",shape="box"];419[label="vwx300",fontsize=16,color="green",shape="box"];420[label="vwx400",fontsize=16,color="green",shape="box"];421[label="vwx300",fontsize=16,color="green",shape="box"];422[label="vwx400",fontsize=16,color="green",shape="box"];423 -> 28[label="",style="dashed", color="red", weight=0]; 423[label="vwx301 == vwx401",fontsize=16,color="magenta"];423 -> 552[label="",style="dashed", color="magenta", weight=3]; 423 -> 553[label="",style="dashed", color="magenta", weight=3]; 424 -> 41[label="",style="dashed", color="red", weight=0]; 424[label="vwx301 == vwx401",fontsize=16,color="magenta"];424 -> 554[label="",style="dashed", color="magenta", weight=3]; 424 -> 555[label="",style="dashed", color="magenta", weight=3]; 425 -> 28[label="",style="dashed", color="red", weight=0]; 425[label="vwx300 == vwx400",fontsize=16,color="magenta"];425 -> 556[label="",style="dashed", color="magenta", weight=3]; 425 -> 557[label="",style="dashed", color="magenta", weight=3]; 426 -> 41[label="",style="dashed", color="red", weight=0]; 426[label="vwx300 == vwx400",fontsize=16,color="magenta"];426 -> 558[label="",style="dashed", color="magenta", weight=3]; 426 -> 559[label="",style="dashed", color="magenta", weight=3]; 427 -> 28[label="",style="dashed", color="red", weight=0]; 427[label="vwx301 == vwx401",fontsize=16,color="magenta"];427 -> 560[label="",style="dashed", color="magenta", weight=3]; 427 -> 561[label="",style="dashed", color="magenta", weight=3]; 428 -> 29[label="",style="dashed", color="red", weight=0]; 428[label="vwx301 == vwx401",fontsize=16,color="magenta"];428 -> 562[label="",style="dashed", color="magenta", weight=3]; 428 -> 563[label="",style="dashed", color="magenta", weight=3]; 429 -> 30[label="",style="dashed", color="red", weight=0]; 429[label="vwx301 == vwx401",fontsize=16,color="magenta"];429 -> 564[label="",style="dashed", color="magenta", weight=3]; 429 -> 565[label="",style="dashed", color="magenta", weight=3]; 430 -> 31[label="",style="dashed", color="red", weight=0]; 430[label="vwx301 == vwx401",fontsize=16,color="magenta"];430 -> 566[label="",style="dashed", color="magenta", weight=3]; 430 -> 567[label="",style="dashed", color="magenta", weight=3]; 431 -> 32[label="",style="dashed", color="red", weight=0]; 431[label="vwx301 == vwx401",fontsize=16,color="magenta"];431 -> 568[label="",style="dashed", color="magenta", weight=3]; 431 -> 569[label="",style="dashed", color="magenta", weight=3]; 432 -> 33[label="",style="dashed", color="red", weight=0]; 432[label="vwx301 == vwx401",fontsize=16,color="magenta"];432 -> 570[label="",style="dashed", color="magenta", weight=3]; 432 -> 571[label="",style="dashed", color="magenta", weight=3]; 433 -> 34[label="",style="dashed", color="red", weight=0]; 433[label="vwx301 == vwx401",fontsize=16,color="magenta"];433 -> 572[label="",style="dashed", color="magenta", weight=3]; 433 -> 573[label="",style="dashed", color="magenta", weight=3]; 434 -> 35[label="",style="dashed", color="red", weight=0]; 434[label="vwx301 == vwx401",fontsize=16,color="magenta"];434 -> 574[label="",style="dashed", color="magenta", weight=3]; 434 -> 575[label="",style="dashed", color="magenta", weight=3]; 435 -> 36[label="",style="dashed", color="red", weight=0]; 435[label="vwx301 == vwx401",fontsize=16,color="magenta"];435 -> 576[label="",style="dashed", color="magenta", weight=3]; 435 -> 577[label="",style="dashed", color="magenta", weight=3]; 436 -> 37[label="",style="dashed", color="red", weight=0]; 436[label="vwx301 == vwx401",fontsize=16,color="magenta"];436 -> 578[label="",style="dashed", color="magenta", weight=3]; 436 -> 579[label="",style="dashed", color="magenta", weight=3]; 437 -> 38[label="",style="dashed", color="red", weight=0]; 437[label="vwx301 == vwx401",fontsize=16,color="magenta"];437 -> 580[label="",style="dashed", color="magenta", weight=3]; 437 -> 581[label="",style="dashed", color="magenta", weight=3]; 438 -> 39[label="",style="dashed", color="red", weight=0]; 438[label="vwx301 == vwx401",fontsize=16,color="magenta"];438 -> 582[label="",style="dashed", color="magenta", weight=3]; 438 -> 583[label="",style="dashed", color="magenta", weight=3]; 439 -> 40[label="",style="dashed", color="red", weight=0]; 439[label="vwx301 == vwx401",fontsize=16,color="magenta"];439 -> 584[label="",style="dashed", color="magenta", weight=3]; 439 -> 585[label="",style="dashed", color="magenta", weight=3]; 440 -> 41[label="",style="dashed", color="red", weight=0]; 440[label="vwx301 == vwx401",fontsize=16,color="magenta"];440 -> 586[label="",style="dashed", color="magenta", weight=3]; 440 -> 587[label="",style="dashed", color="magenta", weight=3]; 441 -> 28[label="",style="dashed", color="red", weight=0]; 441[label="vwx300 == vwx400",fontsize=16,color="magenta"];441 -> 588[label="",style="dashed", color="magenta", weight=3]; 441 -> 589[label="",style="dashed", color="magenta", weight=3]; 442 -> 29[label="",style="dashed", color="red", weight=0]; 442[label="vwx300 == vwx400",fontsize=16,color="magenta"];442 -> 590[label="",style="dashed", color="magenta", weight=3]; 442 -> 591[label="",style="dashed", color="magenta", weight=3]; 443 -> 30[label="",style="dashed", color="red", weight=0]; 443[label="vwx300 == vwx400",fontsize=16,color="magenta"];443 -> 592[label="",style="dashed", color="magenta", weight=3]; 443 -> 593[label="",style="dashed", color="magenta", weight=3]; 444 -> 31[label="",style="dashed", color="red", weight=0]; 444[label="vwx300 == vwx400",fontsize=16,color="magenta"];444 -> 594[label="",style="dashed", color="magenta", weight=3]; 444 -> 595[label="",style="dashed", color="magenta", weight=3]; 445 -> 32[label="",style="dashed", color="red", weight=0]; 445[label="vwx300 == vwx400",fontsize=16,color="magenta"];445 -> 596[label="",style="dashed", color="magenta", weight=3]; 445 -> 597[label="",style="dashed", color="magenta", weight=3]; 446 -> 33[label="",style="dashed", color="red", weight=0]; 446[label="vwx300 == vwx400",fontsize=16,color="magenta"];446 -> 598[label="",style="dashed", color="magenta", weight=3]; 446 -> 599[label="",style="dashed", color="magenta", weight=3]; 447 -> 34[label="",style="dashed", color="red", weight=0]; 447[label="vwx300 == vwx400",fontsize=16,color="magenta"];447 -> 600[label="",style="dashed", color="magenta", weight=3]; 447 -> 601[label="",style="dashed", color="magenta", weight=3]; 448 -> 35[label="",style="dashed", color="red", weight=0]; 448[label="vwx300 == vwx400",fontsize=16,color="magenta"];448 -> 602[label="",style="dashed", color="magenta", weight=3]; 448 -> 603[label="",style="dashed", color="magenta", weight=3]; 449 -> 36[label="",style="dashed", color="red", weight=0]; 449[label="vwx300 == vwx400",fontsize=16,color="magenta"];449 -> 604[label="",style="dashed", color="magenta", weight=3]; 449 -> 605[label="",style="dashed", color="magenta", weight=3]; 450 -> 37[label="",style="dashed", color="red", weight=0]; 450[label="vwx300 == vwx400",fontsize=16,color="magenta"];450 -> 606[label="",style="dashed", color="magenta", weight=3]; 450 -> 607[label="",style="dashed", color="magenta", weight=3]; 451 -> 38[label="",style="dashed", color="red", weight=0]; 451[label="vwx300 == vwx400",fontsize=16,color="magenta"];451 -> 608[label="",style="dashed", color="magenta", weight=3]; 451 -> 609[label="",style="dashed", color="magenta", weight=3]; 452 -> 39[label="",style="dashed", color="red", weight=0]; 452[label="vwx300 == vwx400",fontsize=16,color="magenta"];452 -> 610[label="",style="dashed", color="magenta", weight=3]; 452 -> 611[label="",style="dashed", color="magenta", weight=3]; 453 -> 40[label="",style="dashed", color="red", weight=0]; 453[label="vwx300 == vwx400",fontsize=16,color="magenta"];453 -> 612[label="",style="dashed", color="magenta", weight=3]; 453 -> 613[label="",style="dashed", color="magenta", weight=3]; 454 -> 41[label="",style="dashed", color="red", weight=0]; 454[label="vwx300 == vwx400",fontsize=16,color="magenta"];454 -> 614[label="",style="dashed", color="magenta", weight=3]; 454 -> 615[label="",style="dashed", color="magenta", weight=3]; 455 -> 304[label="",style="dashed", color="red", weight=0]; 455[label="vwx300 * vwx401",fontsize=16,color="magenta"];455 -> 616[label="",style="dashed", color="magenta", weight=3]; 455 -> 617[label="",style="dashed", color="magenta", weight=3]; 456 -> 304[label="",style="dashed", color="red", weight=0]; 456[label="vwx301 * vwx400",fontsize=16,color="magenta"];456 -> 618[label="",style="dashed", color="magenta", weight=3]; 456 -> 619[label="",style="dashed", color="magenta", weight=3]; 457[label="vwx302 == vwx402",fontsize=16,color="blue",shape="box"];3081[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 620[label="",style="solid", color="blue", weight=3]; 3082[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 621[label="",style="solid", color="blue", weight=3]; 3083[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 622[label="",style="solid", color="blue", weight=3]; 3084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 623[label="",style="solid", color="blue", weight=3]; 3085[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 624[label="",style="solid", color="blue", weight=3]; 3086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 625[label="",style="solid", color="blue", weight=3]; 3087[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 626[label="",style="solid", color="blue", weight=3]; 3088[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 627[label="",style="solid", color="blue", weight=3]; 3089[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 628[label="",style="solid", color="blue", weight=3]; 3090[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 629[label="",style="solid", color="blue", weight=3]; 3091[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 630[label="",style="solid", color="blue", weight=3]; 3092[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3092[label="",style="solid", color="blue", weight=9]; 3092 -> 631[label="",style="solid", color="blue", weight=3]; 3093[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3093[label="",style="solid", color="blue", weight=9]; 3093 -> 632[label="",style="solid", color="blue", weight=3]; 3094[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];457 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 633[label="",style="solid", color="blue", weight=3]; 458[label="vwx301 == vwx401",fontsize=16,color="blue",shape="box"];3095[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 634[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 635[label="",style="solid", color="blue", weight=3]; 3097[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 636[label="",style="solid", color="blue", weight=3]; 3098[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 637[label="",style="solid", color="blue", weight=3]; 3099[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 638[label="",style="solid", color="blue", weight=3]; 3100[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 639[label="",style="solid", color="blue", weight=3]; 3101[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 640[label="",style="solid", color="blue", weight=3]; 3102[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 641[label="",style="solid", color="blue", weight=3]; 3103[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 642[label="",style="solid", color="blue", weight=3]; 3104[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 643[label="",style="solid", color="blue", weight=3]; 3105[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 644[label="",style="solid", color="blue", weight=3]; 3106[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 645[label="",style="solid", color="blue", weight=3]; 3107[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 646[label="",style="solid", color="blue", weight=3]; 3108[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];458 -> 3108[label="",style="solid", color="blue", weight=9]; 3108 -> 647[label="",style="solid", color="blue", weight=3]; 459 -> 28[label="",style="dashed", color="red", weight=0]; 459[label="vwx300 == vwx400",fontsize=16,color="magenta"];459 -> 648[label="",style="dashed", color="magenta", weight=3]; 459 -> 649[label="",style="dashed", color="magenta", weight=3]; 460 -> 29[label="",style="dashed", color="red", weight=0]; 460[label="vwx300 == vwx400",fontsize=16,color="magenta"];460 -> 650[label="",style="dashed", color="magenta", weight=3]; 460 -> 651[label="",style="dashed", color="magenta", weight=3]; 461 -> 30[label="",style="dashed", color="red", weight=0]; 461[label="vwx300 == vwx400",fontsize=16,color="magenta"];461 -> 652[label="",style="dashed", color="magenta", weight=3]; 461 -> 653[label="",style="dashed", color="magenta", weight=3]; 462 -> 31[label="",style="dashed", color="red", weight=0]; 462[label="vwx300 == vwx400",fontsize=16,color="magenta"];462 -> 654[label="",style="dashed", color="magenta", weight=3]; 462 -> 655[label="",style="dashed", color="magenta", weight=3]; 463 -> 32[label="",style="dashed", color="red", weight=0]; 463[label="vwx300 == vwx400",fontsize=16,color="magenta"];463 -> 656[label="",style="dashed", color="magenta", weight=3]; 463 -> 657[label="",style="dashed", color="magenta", weight=3]; 464 -> 33[label="",style="dashed", color="red", weight=0]; 464[label="vwx300 == vwx400",fontsize=16,color="magenta"];464 -> 658[label="",style="dashed", color="magenta", weight=3]; 464 -> 659[label="",style="dashed", color="magenta", weight=3]; 465 -> 34[label="",style="dashed", color="red", weight=0]; 465[label="vwx300 == vwx400",fontsize=16,color="magenta"];465 -> 660[label="",style="dashed", color="magenta", weight=3]; 465 -> 661[label="",style="dashed", color="magenta", weight=3]; 466 -> 35[label="",style="dashed", color="red", weight=0]; 466[label="vwx300 == vwx400",fontsize=16,color="magenta"];466 -> 662[label="",style="dashed", color="magenta", weight=3]; 466 -> 663[label="",style="dashed", color="magenta", weight=3]; 467 -> 36[label="",style="dashed", color="red", weight=0]; 467[label="vwx300 == vwx400",fontsize=16,color="magenta"];467 -> 664[label="",style="dashed", color="magenta", weight=3]; 467 -> 665[label="",style="dashed", color="magenta", weight=3]; 468 -> 37[label="",style="dashed", color="red", weight=0]; 468[label="vwx300 == vwx400",fontsize=16,color="magenta"];468 -> 666[label="",style="dashed", color="magenta", weight=3]; 468 -> 667[label="",style="dashed", color="magenta", weight=3]; 469 -> 38[label="",style="dashed", color="red", weight=0]; 469[label="vwx300 == vwx400",fontsize=16,color="magenta"];469 -> 668[label="",style="dashed", color="magenta", weight=3]; 469 -> 669[label="",style="dashed", color="magenta", weight=3]; 470 -> 39[label="",style="dashed", color="red", weight=0]; 470[label="vwx300 == vwx400",fontsize=16,color="magenta"];470 -> 670[label="",style="dashed", color="magenta", weight=3]; 470 -> 671[label="",style="dashed", color="magenta", weight=3]; 471 -> 40[label="",style="dashed", color="red", weight=0]; 471[label="vwx300 == vwx400",fontsize=16,color="magenta"];471 -> 672[label="",style="dashed", color="magenta", weight=3]; 471 -> 673[label="",style="dashed", color="magenta", weight=3]; 472 -> 41[label="",style="dashed", color="red", weight=0]; 472[label="vwx300 == vwx400",fontsize=16,color="magenta"];472 -> 674[label="",style="dashed", color="magenta", weight=3]; 472 -> 675[label="",style="dashed", color="magenta", weight=3]; 473[label="primEqNat (Succ vwx3000) vwx400",fontsize=16,color="burlywood",shape="box"];3109[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];473 -> 3109[label="",style="solid", color="burlywood", weight=9]; 3109 -> 676[label="",style="solid", color="burlywood", weight=3]; 3110[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];473 -> 3110[label="",style="solid", color="burlywood", weight=9]; 3110 -> 677[label="",style="solid", color="burlywood", weight=3]; 474[label="primEqNat Zero vwx400",fontsize=16,color="burlywood",shape="box"];3111[label="vwx400/Succ vwx4000",fontsize=10,color="white",style="solid",shape="box"];474 -> 3111[label="",style="solid", color="burlywood", weight=9]; 3111 -> 678[label="",style="solid", color="burlywood", weight=3]; 3112[label="vwx400/Zero",fontsize=10,color="white",style="solid",shape="box"];474 -> 3112[label="",style="solid", color="burlywood", weight=9]; 3112 -> 679[label="",style="solid", color="burlywood", weight=3]; 1811[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1811 -> 1840[label="",style="solid", color="black", weight=3]; 1812[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3113[label="vwx9/Left vwx90",fontsize=10,color="white",style="solid",shape="box"];1812 -> 3113[label="",style="solid", color="burlywood", weight=9]; 3113 -> 1841[label="",style="solid", color="burlywood", weight=3]; 3114[label="vwx9/Right vwx90",fontsize=10,color="white",style="solid",shape="box"];1812 -> 3114[label="",style="solid", color="burlywood", weight=9]; 3114 -> 1842[label="",style="solid", color="burlywood", weight=3]; 1813[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3115[label="vwx9/False",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3115[label="",style="solid", color="burlywood", weight=9]; 3115 -> 1843[label="",style="solid", color="burlywood", weight=3]; 3116[label="vwx9/True",fontsize=10,color="white",style="solid",shape="box"];1813 -> 3116[label="",style="solid", color="burlywood", weight=9]; 3116 -> 1844[label="",style="solid", color="burlywood", weight=3]; 1814[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1814 -> 1845[label="",style="solid", color="black", weight=3]; 1815[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1815 -> 1846[label="",style="solid", color="black", weight=3]; 1816[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3117[label="vwx9/(vwx90,vwx91)",fontsize=10,color="white",style="solid",shape="box"];1816 -> 3117[label="",style="solid", color="burlywood", weight=9]; 3117 -> 1847[label="",style="solid", color="burlywood", weight=3]; 1817[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3118[label="vwx9/LT",fontsize=10,color="white",style="solid",shape="box"];1817 -> 3118[label="",style="solid", color="burlywood", weight=9]; 3118 -> 1848[label="",style="solid", color="burlywood", weight=3]; 3119[label="vwx9/EQ",fontsize=10,color="white",style="solid",shape="box"];1817 -> 3119[label="",style="solid", color="burlywood", weight=9]; 3119 -> 1849[label="",style="solid", color="burlywood", weight=3]; 3120[label="vwx9/GT",fontsize=10,color="white",style="solid",shape="box"];1817 -> 3120[label="",style="solid", color="burlywood", weight=9]; 3120 -> 1850[label="",style="solid", color="burlywood", weight=3]; 1818[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1818 -> 1851[label="",style="solid", color="black", weight=3]; 1819[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1819 -> 1852[label="",style="solid", color="black", weight=3]; 1820[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3121[label="vwx9/(vwx90,vwx91,vwx92)",fontsize=10,color="white",style="solid",shape="box"];1820 -> 3121[label="",style="solid", color="burlywood", weight=9]; 3121 -> 1853[label="",style="solid", color="burlywood", weight=3]; 1821[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1821 -> 1854[label="",style="solid", color="black", weight=3]; 1822[label="vwx9 <= vwx10",fontsize=16,color="burlywood",shape="triangle"];3122[label="vwx9/Nothing",fontsize=10,color="white",style="solid",shape="box"];1822 -> 3122[label="",style="solid", color="burlywood", weight=9]; 3122 -> 1855[label="",style="solid", color="burlywood", weight=3]; 3123[label="vwx9/Just vwx90",fontsize=10,color="white",style="solid",shape="box"];1822 -> 3123[label="",style="solid", color="burlywood", weight=9]; 3123 -> 1856[label="",style="solid", color="burlywood", weight=3]; 1823[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1823 -> 1857[label="",style="solid", color="black", weight=3]; 1824[label="vwx9 <= vwx10",fontsize=16,color="black",shape="triangle"];1824 -> 1858[label="",style="solid", color="black", weight=3]; 1839[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];1839 -> 1887[label="",style="solid", color="black", weight=3]; 1825 -> 1811[label="",style="dashed", color="red", weight=0]; 1825[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1825 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1825 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1812[label="",style="dashed", color="red", weight=0]; 1826[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1826 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1826 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1813[label="",style="dashed", color="red", weight=0]; 1827[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1827 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1827 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1814[label="",style="dashed", color="red", weight=0]; 1828[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1828 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1828 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1815[label="",style="dashed", color="red", weight=0]; 1829[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1829 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1816[label="",style="dashed", color="red", weight=0]; 1830[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1830 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1830 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1817[label="",style="dashed", color="red", weight=0]; 1831[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1831 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1818[label="",style="dashed", color="red", weight=0]; 1832[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1832 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1819[label="",style="dashed", color="red", weight=0]; 1833[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1833 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1820[label="",style="dashed", color="red", weight=0]; 1834[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1834 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1821[label="",style="dashed", color="red", weight=0]; 1835[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1835 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1822[label="",style="dashed", color="red", weight=0]; 1836[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1836 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1837 -> 1823[label="",style="dashed", color="red", weight=0]; 1837[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1837 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1837 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1838 -> 1824[label="",style="dashed", color="red", weight=0]; 1838[label="vwx16 <= vwx17",fontsize=16,color="magenta"];1838 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1838 -> 1886[label="",style="dashed", color="magenta", weight=3]; 507 -> 266[label="",style="dashed", color="red", weight=0]; 507[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];507 -> 729[label="",style="dashed", color="magenta", weight=3]; 507 -> 730[label="",style="dashed", color="magenta", weight=3]; 508[label="False",fontsize=16,color="green",shape="box"];509[label="False",fontsize=16,color="green",shape="box"];510[label="True",fontsize=16,color="green",shape="box"];511[label="False",fontsize=16,color="green",shape="box"];512[label="True",fontsize=16,color="green",shape="box"];513 -> 266[label="",style="dashed", color="red", weight=0]; 513[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];513 -> 731[label="",style="dashed", color="magenta", weight=3]; 513 -> 732[label="",style="dashed", color="magenta", weight=3]; 514[label="False",fontsize=16,color="green",shape="box"];515[label="False",fontsize=16,color="green",shape="box"];516[label="True",fontsize=16,color="green",shape="box"];517[label="False",fontsize=16,color="green",shape="box"];518[label="True",fontsize=16,color="green",shape="box"];519[label="primMulInt vwx300 vwx401",fontsize=16,color="burlywood",shape="triangle"];3124[label="vwx300/Pos vwx3000",fontsize=10,color="white",style="solid",shape="box"];519 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 733[label="",style="solid", color="burlywood", weight=3]; 3125[label="vwx300/Neg vwx3000",fontsize=10,color="white",style="solid",shape="box"];519 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 734[label="",style="solid", color="burlywood", weight=3]; 520[label="vwx301",fontsize=16,color="green",shape="box"];521[label="vwx400",fontsize=16,color="green",shape="box"];522[label="vwx300",fontsize=16,color="green",shape="box"];523[label="vwx400",fontsize=16,color="green",shape="box"];524[label="vwx300",fontsize=16,color="green",shape="box"];525[label="vwx400",fontsize=16,color="green",shape="box"];526[label="vwx300",fontsize=16,color="green",shape="box"];527[label="vwx400",fontsize=16,color="green",shape="box"];528[label="vwx300",fontsize=16,color="green",shape="box"];529[label="vwx400",fontsize=16,color="green",shape="box"];530[label="vwx300",fontsize=16,color="green",shape="box"];531[label="vwx400",fontsize=16,color="green",shape="box"];532[label="vwx300",fontsize=16,color="green",shape="box"];533[label="vwx400",fontsize=16,color="green",shape="box"];534[label="vwx300",fontsize=16,color="green",shape="box"];535[label="vwx400",fontsize=16,color="green",shape="box"];536[label="vwx300",fontsize=16,color="green",shape="box"];537[label="vwx400",fontsize=16,color="green",shape="box"];538[label="vwx300",fontsize=16,color="green",shape="box"];539[label="vwx400",fontsize=16,color="green",shape="box"];540[label="vwx300",fontsize=16,color="green",shape="box"];541[label="vwx400",fontsize=16,color="green",shape="box"];542[label="vwx300",fontsize=16,color="green",shape="box"];543[label="vwx400",fontsize=16,color="green",shape="box"];544[label="vwx300",fontsize=16,color="green",shape="box"];545[label="vwx400",fontsize=16,color="green",shape="box"];546[label="vwx300",fontsize=16,color="green",shape="box"];547[label="vwx400",fontsize=16,color="green",shape="box"];548[label="vwx300",fontsize=16,color="green",shape="box"];549[label="vwx400",fontsize=16,color="green",shape="box"];550[label="False",fontsize=16,color="green",shape="box"];551[label="vwx38",fontsize=16,color="green",shape="box"];552[label="vwx301",fontsize=16,color="green",shape="box"];553[label="vwx401",fontsize=16,color="green",shape="box"];554[label="vwx301",fontsize=16,color="green",shape="box"];555[label="vwx401",fontsize=16,color="green",shape="box"];556[label="vwx300",fontsize=16,color="green",shape="box"];557[label="vwx400",fontsize=16,color="green",shape="box"];558[label="vwx300",fontsize=16,color="green",shape="box"];559[label="vwx400",fontsize=16,color="green",shape="box"];560[label="vwx301",fontsize=16,color="green",shape="box"];561[label="vwx401",fontsize=16,color="green",shape="box"];562[label="vwx301",fontsize=16,color="green",shape="box"];563[label="vwx401",fontsize=16,color="green",shape="box"];564[label="vwx301",fontsize=16,color="green",shape="box"];565[label="vwx401",fontsize=16,color="green",shape="box"];566[label="vwx301",fontsize=16,color="green",shape="box"];567[label="vwx401",fontsize=16,color="green",shape="box"];568[label="vwx301",fontsize=16,color="green",shape="box"];569[label="vwx401",fontsize=16,color="green",shape="box"];570[label="vwx301",fontsize=16,color="green",shape="box"];571[label="vwx401",fontsize=16,color="green",shape="box"];572[label="vwx301",fontsize=16,color="green",shape="box"];573[label="vwx401",fontsize=16,color="green",shape="box"];574[label="vwx301",fontsize=16,color="green",shape="box"];575[label="vwx401",fontsize=16,color="green",shape="box"];576[label="vwx301",fontsize=16,color="green",shape="box"];577[label="vwx401",fontsize=16,color="green",shape="box"];578[label="vwx301",fontsize=16,color="green",shape="box"];579[label="vwx401",fontsize=16,color="green",shape="box"];580[label="vwx301",fontsize=16,color="green",shape="box"];581[label="vwx401",fontsize=16,color="green",shape="box"];582[label="vwx301",fontsize=16,color="green",shape="box"];583[label="vwx401",fontsize=16,color="green",shape="box"];584[label="vwx301",fontsize=16,color="green",shape="box"];585[label="vwx401",fontsize=16,color="green",shape="box"];586[label="vwx301",fontsize=16,color="green",shape="box"];587[label="vwx401",fontsize=16,color="green",shape="box"];588[label="vwx300",fontsize=16,color="green",shape="box"];589[label="vwx400",fontsize=16,color="green",shape="box"];590[label="vwx300",fontsize=16,color="green",shape="box"];591[label="vwx400",fontsize=16,color="green",shape="box"];592[label="vwx300",fontsize=16,color="green",shape="box"];593[label="vwx400",fontsize=16,color="green",shape="box"];594[label="vwx300",fontsize=16,color="green",shape="box"];595[label="vwx400",fontsize=16,color="green",shape="box"];596[label="vwx300",fontsize=16,color="green",shape="box"];597[label="vwx400",fontsize=16,color="green",shape="box"];598[label="vwx300",fontsize=16,color="green",shape="box"];599[label="vwx400",fontsize=16,color="green",shape="box"];600[label="vwx300",fontsize=16,color="green",shape="box"];601[label="vwx400",fontsize=16,color="green",shape="box"];602[label="vwx300",fontsize=16,color="green",shape="box"];603[label="vwx400",fontsize=16,color="green",shape="box"];604[label="vwx300",fontsize=16,color="green",shape="box"];605[label="vwx400",fontsize=16,color="green",shape="box"];606[label="vwx300",fontsize=16,color="green",shape="box"];607[label="vwx400",fontsize=16,color="green",shape="box"];608[label="vwx300",fontsize=16,color="green",shape="box"];609[label="vwx400",fontsize=16,color="green",shape="box"];610[label="vwx300",fontsize=16,color="green",shape="box"];611[label="vwx400",fontsize=16,color="green",shape="box"];612[label="vwx300",fontsize=16,color="green",shape="box"];613[label="vwx400",fontsize=16,color="green",shape="box"];614[label="vwx300",fontsize=16,color="green",shape="box"];615[label="vwx400",fontsize=16,color="green",shape="box"];616[label="vwx300",fontsize=16,color="green",shape="box"];617[label="vwx401",fontsize=16,color="green",shape="box"];618[label="vwx301",fontsize=16,color="green",shape="box"];619[label="vwx400",fontsize=16,color="green",shape="box"];620 -> 28[label="",style="dashed", color="red", weight=0]; 620[label="vwx302 == vwx402",fontsize=16,color="magenta"];620 -> 735[label="",style="dashed", color="magenta", weight=3]; 620 -> 736[label="",style="dashed", color="magenta", weight=3]; 621 -> 29[label="",style="dashed", color="red", weight=0]; 621[label="vwx302 == vwx402",fontsize=16,color="magenta"];621 -> 737[label="",style="dashed", color="magenta", weight=3]; 621 -> 738[label="",style="dashed", color="magenta", weight=3]; 622 -> 30[label="",style="dashed", color="red", weight=0]; 622[label="vwx302 == vwx402",fontsize=16,color="magenta"];622 -> 739[label="",style="dashed", color="magenta", weight=3]; 622 -> 740[label="",style="dashed", color="magenta", weight=3]; 623 -> 31[label="",style="dashed", color="red", weight=0]; 623[label="vwx302 == vwx402",fontsize=16,color="magenta"];623 -> 741[label="",style="dashed", color="magenta", weight=3]; 623 -> 742[label="",style="dashed", color="magenta", weight=3]; 624 -> 32[label="",style="dashed", color="red", weight=0]; 624[label="vwx302 == vwx402",fontsize=16,color="magenta"];624 -> 743[label="",style="dashed", color="magenta", weight=3]; 624 -> 744[label="",style="dashed", color="magenta", weight=3]; 625 -> 33[label="",style="dashed", color="red", weight=0]; 625[label="vwx302 == vwx402",fontsize=16,color="magenta"];625 -> 745[label="",style="dashed", color="magenta", weight=3]; 625 -> 746[label="",style="dashed", color="magenta", weight=3]; 626 -> 34[label="",style="dashed", color="red", weight=0]; 626[label="vwx302 == vwx402",fontsize=16,color="magenta"];626 -> 747[label="",style="dashed", color="magenta", weight=3]; 626 -> 748[label="",style="dashed", color="magenta", weight=3]; 627 -> 35[label="",style="dashed", color="red", weight=0]; 627[label="vwx302 == vwx402",fontsize=16,color="magenta"];627 -> 749[label="",style="dashed", color="magenta", weight=3]; 627 -> 750[label="",style="dashed", color="magenta", weight=3]; 628 -> 36[label="",style="dashed", color="red", weight=0]; 628[label="vwx302 == vwx402",fontsize=16,color="magenta"];628 -> 751[label="",style="dashed", color="magenta", weight=3]; 628 -> 752[label="",style="dashed", color="magenta", weight=3]; 629 -> 37[label="",style="dashed", color="red", weight=0]; 629[label="vwx302 == vwx402",fontsize=16,color="magenta"];629 -> 753[label="",style="dashed", color="magenta", weight=3]; 629 -> 754[label="",style="dashed", color="magenta", weight=3]; 630 -> 38[label="",style="dashed", color="red", weight=0]; 630[label="vwx302 == vwx402",fontsize=16,color="magenta"];630 -> 755[label="",style="dashed", color="magenta", weight=3]; 630 -> 756[label="",style="dashed", color="magenta", weight=3]; 631 -> 39[label="",style="dashed", color="red", weight=0]; 631[label="vwx302 == vwx402",fontsize=16,color="magenta"];631 -> 757[label="",style="dashed", color="magenta", weight=3]; 631 -> 758[label="",style="dashed", color="magenta", weight=3]; 632 -> 40[label="",style="dashed", color="red", weight=0]; 632[label="vwx302 == vwx402",fontsize=16,color="magenta"];632 -> 759[label="",style="dashed", color="magenta", weight=3]; 632 -> 760[label="",style="dashed", color="magenta", weight=3]; 633 -> 41[label="",style="dashed", color="red", weight=0]; 633[label="vwx302 == vwx402",fontsize=16,color="magenta"];633 -> 761[label="",style="dashed", color="magenta", weight=3]; 633 -> 762[label="",style="dashed", color="magenta", weight=3]; 634 -> 28[label="",style="dashed", color="red", weight=0]; 634[label="vwx301 == vwx401",fontsize=16,color="magenta"];634 -> 763[label="",style="dashed", color="magenta", weight=3]; 634 -> 764[label="",style="dashed", color="magenta", weight=3]; 635 -> 29[label="",style="dashed", color="red", weight=0]; 635[label="vwx301 == vwx401",fontsize=16,color="magenta"];635 -> 765[label="",style="dashed", color="magenta", weight=3]; 635 -> 766[label="",style="dashed", color="magenta", weight=3]; 636 -> 30[label="",style="dashed", color="red", weight=0]; 636[label="vwx301 == vwx401",fontsize=16,color="magenta"];636 -> 767[label="",style="dashed", color="magenta", weight=3]; 636 -> 768[label="",style="dashed", color="magenta", weight=3]; 637 -> 31[label="",style="dashed", color="red", weight=0]; 637[label="vwx301 == vwx401",fontsize=16,color="magenta"];637 -> 769[label="",style="dashed", color="magenta", weight=3]; 637 -> 770[label="",style="dashed", color="magenta", weight=3]; 638 -> 32[label="",style="dashed", color="red", weight=0]; 638[label="vwx301 == vwx401",fontsize=16,color="magenta"];638 -> 771[label="",style="dashed", color="magenta", weight=3]; 638 -> 772[label="",style="dashed", color="magenta", weight=3]; 639 -> 33[label="",style="dashed", color="red", weight=0]; 639[label="vwx301 == vwx401",fontsize=16,color="magenta"];639 -> 773[label="",style="dashed", color="magenta", weight=3]; 639 -> 774[label="",style="dashed", color="magenta", weight=3]; 640 -> 34[label="",style="dashed", color="red", weight=0]; 640[label="vwx301 == vwx401",fontsize=16,color="magenta"];640 -> 775[label="",style="dashed", color="magenta", weight=3]; 640 -> 776[label="",style="dashed", color="magenta", weight=3]; 641 -> 35[label="",style="dashed", color="red", weight=0]; 641[label="vwx301 == vwx401",fontsize=16,color="magenta"];641 -> 777[label="",style="dashed", color="magenta", weight=3]; 641 -> 778[label="",style="dashed", color="magenta", weight=3]; 642 -> 36[label="",style="dashed", color="red", weight=0]; 642[label="vwx301 == vwx401",fontsize=16,color="magenta"];642 -> 779[label="",style="dashed", color="magenta", weight=3]; 642 -> 780[label="",style="dashed", color="magenta", weight=3]; 643 -> 37[label="",style="dashed", color="red", weight=0]; 643[label="vwx301 == vwx401",fontsize=16,color="magenta"];643 -> 781[label="",style="dashed", color="magenta", weight=3]; 643 -> 782[label="",style="dashed", color="magenta", weight=3]; 644 -> 38[label="",style="dashed", color="red", weight=0]; 644[label="vwx301 == vwx401",fontsize=16,color="magenta"];644 -> 783[label="",style="dashed", color="magenta", weight=3]; 644 -> 784[label="",style="dashed", color="magenta", weight=3]; 645 -> 39[label="",style="dashed", color="red", weight=0]; 645[label="vwx301 == vwx401",fontsize=16,color="magenta"];645 -> 785[label="",style="dashed", color="magenta", weight=3]; 645 -> 786[label="",style="dashed", color="magenta", weight=3]; 646 -> 40[label="",style="dashed", color="red", weight=0]; 646[label="vwx301 == vwx401",fontsize=16,color="magenta"];646 -> 787[label="",style="dashed", color="magenta", weight=3]; 646 -> 788[label="",style="dashed", color="magenta", weight=3]; 647 -> 41[label="",style="dashed", color="red", weight=0]; 647[label="vwx301 == vwx401",fontsize=16,color="magenta"];647 -> 789[label="",style="dashed", color="magenta", weight=3]; 647 -> 790[label="",style="dashed", color="magenta", weight=3]; 648[label="vwx300",fontsize=16,color="green",shape="box"];649[label="vwx400",fontsize=16,color="green",shape="box"];650[label="vwx300",fontsize=16,color="green",shape="box"];651[label="vwx400",fontsize=16,color="green",shape="box"];652[label="vwx300",fontsize=16,color="green",shape="box"];653[label="vwx400",fontsize=16,color="green",shape="box"];654[label="vwx300",fontsize=16,color="green",shape="box"];655[label="vwx400",fontsize=16,color="green",shape="box"];656[label="vwx300",fontsize=16,color="green",shape="box"];657[label="vwx400",fontsize=16,color="green",shape="box"];658[label="vwx300",fontsize=16,color="green",shape="box"];659[label="vwx400",fontsize=16,color="green",shape="box"];660[label="vwx300",fontsize=16,color="green",shape="box"];661[label="vwx400",fontsize=16,color="green",shape="box"];662[label="vwx300",fontsize=16,color="green",shape="box"];663[label="vwx400",fontsize=16,color="green",shape="box"];664[label="vwx300",fontsize=16,color="green",shape="box"];665[label="vwx400",fontsize=16,color="green",shape="box"];666[label="vwx300",fontsize=16,color="green",shape="box"];667[label="vwx400",fontsize=16,color="green",shape="box"];668[label="vwx300",fontsize=16,color="green",shape="box"];669[label="vwx400",fontsize=16,color="green",shape="box"];670[label="vwx300",fontsize=16,color="green",shape="box"];671[label="vwx400",fontsize=16,color="green",shape="box"];672[label="vwx300",fontsize=16,color="green",shape="box"];673[label="vwx400",fontsize=16,color="green",shape="box"];674[label="vwx300",fontsize=16,color="green",shape="box"];675[label="vwx400",fontsize=16,color="green",shape="box"];676[label="primEqNat (Succ vwx3000) (Succ vwx4000)",fontsize=16,color="black",shape="box"];676 -> 791[label="",style="solid", color="black", weight=3]; 677[label="primEqNat (Succ vwx3000) Zero",fontsize=16,color="black",shape="box"];677 -> 792[label="",style="solid", color="black", weight=3]; 678[label="primEqNat Zero (Succ vwx4000)",fontsize=16,color="black",shape="box"];678 -> 793[label="",style="solid", color="black", weight=3]; 679[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];679 -> 794[label="",style="solid", color="black", weight=3]; 1840[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1840 -> 1888[label="",style="solid", color="black", weight=3]; 1841[label="Left vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];3126[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 1889[label="",style="solid", color="burlywood", weight=3]; 3127[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];1841 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 1890[label="",style="solid", color="burlywood", weight=3]; 1842[label="Right vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];3128[label="vwx10/Left vwx100",fontsize=10,color="white",style="solid",shape="box"];1842 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 1891[label="",style="solid", color="burlywood", weight=3]; 3129[label="vwx10/Right vwx100",fontsize=10,color="white",style="solid",shape="box"];1842 -> 3129[label="",style="solid", color="burlywood", weight=9]; 3129 -> 1892[label="",style="solid", color="burlywood", weight=3]; 1843[label="False <= vwx10",fontsize=16,color="burlywood",shape="box"];3130[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];1843 -> 3130[label="",style="solid", color="burlywood", weight=9]; 3130 -> 1893[label="",style="solid", color="burlywood", weight=3]; 3131[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];1843 -> 3131[label="",style="solid", color="burlywood", weight=9]; 3131 -> 1894[label="",style="solid", color="burlywood", weight=3]; 1844[label="True <= vwx10",fontsize=16,color="burlywood",shape="box"];3132[label="vwx10/False",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3132[label="",style="solid", color="burlywood", weight=9]; 3132 -> 1895[label="",style="solid", color="burlywood", weight=3]; 3133[label="vwx10/True",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3133[label="",style="solid", color="burlywood", weight=9]; 3133 -> 1896[label="",style="solid", color="burlywood", weight=3]; 1845[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1845 -> 1897[label="",style="solid", color="black", weight=3]; 1846[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1846 -> 1898[label="",style="solid", color="black", weight=3]; 1847[label="(vwx90,vwx91) <= vwx10",fontsize=16,color="burlywood",shape="box"];3134[label="vwx10/(vwx100,vwx101)",fontsize=10,color="white",style="solid",shape="box"];1847 -> 3134[label="",style="solid", color="burlywood", weight=9]; 3134 -> 1899[label="",style="solid", color="burlywood", weight=3]; 1848[label="LT <= vwx10",fontsize=16,color="burlywood",shape="box"];3135[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3135[label="",style="solid", color="burlywood", weight=9]; 3135 -> 1900[label="",style="solid", color="burlywood", weight=3]; 3136[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3136[label="",style="solid", color="burlywood", weight=9]; 3136 -> 1901[label="",style="solid", color="burlywood", weight=3]; 3137[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3137[label="",style="solid", color="burlywood", weight=9]; 3137 -> 1902[label="",style="solid", color="burlywood", weight=3]; 1849[label="EQ <= vwx10",fontsize=16,color="burlywood",shape="box"];3138[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1849 -> 3138[label="",style="solid", color="burlywood", weight=9]; 3138 -> 1903[label="",style="solid", color="burlywood", weight=3]; 3139[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1849 -> 3139[label="",style="solid", color="burlywood", weight=9]; 3139 -> 1904[label="",style="solid", color="burlywood", weight=3]; 3140[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1849 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1905[label="",style="solid", color="burlywood", weight=3]; 1850[label="GT <= vwx10",fontsize=16,color="burlywood",shape="box"];3141[label="vwx10/LT",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1906[label="",style="solid", color="burlywood", weight=3]; 3142[label="vwx10/EQ",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3142[label="",style="solid", color="burlywood", weight=9]; 3142 -> 1907[label="",style="solid", color="burlywood", weight=3]; 3143[label="vwx10/GT",fontsize=10,color="white",style="solid",shape="box"];1850 -> 3143[label="",style="solid", color="burlywood", weight=9]; 3143 -> 1908[label="",style="solid", color="burlywood", weight=3]; 1851[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1851 -> 1909[label="",style="solid", color="black", weight=3]; 1852[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1852 -> 1910[label="",style="solid", color="black", weight=3]; 1853[label="(vwx90,vwx91,vwx92) <= vwx10",fontsize=16,color="burlywood",shape="box"];3144[label="vwx10/(vwx100,vwx101,vwx102)",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 1911[label="",style="solid", color="burlywood", weight=3]; 1854[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1854 -> 1912[label="",style="solid", color="black", weight=3]; 1855[label="Nothing <= vwx10",fontsize=16,color="burlywood",shape="box"];3145[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];1855 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 1913[label="",style="solid", color="burlywood", weight=3]; 3146[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];1855 -> 3146[label="",style="solid", color="burlywood", weight=9]; 3146 -> 1914[label="",style="solid", color="burlywood", weight=3]; 1856[label="Just vwx90 <= vwx10",fontsize=16,color="burlywood",shape="box"];3147[label="vwx10/Nothing",fontsize=10,color="white",style="solid",shape="box"];1856 -> 3147[label="",style="solid", color="burlywood", weight=9]; 3147 -> 1915[label="",style="solid", color="burlywood", weight=3]; 3148[label="vwx10/Just vwx100",fontsize=10,color="white",style="solid",shape="box"];1856 -> 3148[label="",style="solid", color="burlywood", weight=9]; 3148 -> 1916[label="",style="solid", color="burlywood", weight=3]; 1857[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1857 -> 1917[label="",style="solid", color="black", weight=3]; 1858[label="compare vwx9 vwx10 /= GT",fontsize=16,color="black",shape="box"];1858 -> 1918[label="",style="solid", color="black", weight=3]; 1887[label="GT",fontsize=16,color="green",shape="box"];1859[label="vwx17",fontsize=16,color="green",shape="box"];1860[label="vwx16",fontsize=16,color="green",shape="box"];1861[label="vwx17",fontsize=16,color="green",shape="box"];1862[label="vwx16",fontsize=16,color="green",shape="box"];1863[label="vwx17",fontsize=16,color="green",shape="box"];1864[label="vwx16",fontsize=16,color="green",shape="box"];1865[label="vwx17",fontsize=16,color="green",shape="box"];1866[label="vwx16",fontsize=16,color="green",shape="box"];1867[label="vwx17",fontsize=16,color="green",shape="box"];1868[label="vwx16",fontsize=16,color="green",shape="box"];1869[label="vwx17",fontsize=16,color="green",shape="box"];1870[label="vwx16",fontsize=16,color="green",shape="box"];1871[label="vwx17",fontsize=16,color="green",shape="box"];1872[label="vwx16",fontsize=16,color="green",shape="box"];1873[label="vwx17",fontsize=16,color="green",shape="box"];1874[label="vwx16",fontsize=16,color="green",shape="box"];1875[label="vwx17",fontsize=16,color="green",shape="box"];1876[label="vwx16",fontsize=16,color="green",shape="box"];1877[label="vwx17",fontsize=16,color="green",shape="box"];1878[label="vwx16",fontsize=16,color="green",shape="box"];1879[label="vwx17",fontsize=16,color="green",shape="box"];1880[label="vwx16",fontsize=16,color="green",shape="box"];1881[label="vwx17",fontsize=16,color="green",shape="box"];1882[label="vwx16",fontsize=16,color="green",shape="box"];1883[label="vwx17",fontsize=16,color="green",shape="box"];1884[label="vwx16",fontsize=16,color="green",shape="box"];1885[label="vwx17",fontsize=16,color="green",shape="box"];1886[label="vwx16",fontsize=16,color="green",shape="box"];729[label="vwx4000",fontsize=16,color="green",shape="box"];730[label="vwx3000",fontsize=16,color="green",shape="box"];731[label="vwx4000",fontsize=16,color="green",shape="box"];732[label="vwx3000",fontsize=16,color="green",shape="box"];733[label="primMulInt (Pos vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];3149[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];733 -> 3149[label="",style="solid", color="burlywood", weight=9]; 3149 -> 828[label="",style="solid", color="burlywood", weight=3]; 3150[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];733 -> 3150[label="",style="solid", color="burlywood", weight=9]; 3150 -> 829[label="",style="solid", color="burlywood", weight=3]; 734[label="primMulInt (Neg vwx3000) vwx401",fontsize=16,color="burlywood",shape="box"];3151[label="vwx401/Pos vwx4010",fontsize=10,color="white",style="solid",shape="box"];734 -> 3151[label="",style="solid", color="burlywood", weight=9]; 3151 -> 830[label="",style="solid", color="burlywood", weight=3]; 3152[label="vwx401/Neg vwx4010",fontsize=10,color="white",style="solid",shape="box"];734 -> 3152[label="",style="solid", color="burlywood", weight=9]; 3152 -> 831[label="",style="solid", color="burlywood", weight=3]; 735[label="vwx302",fontsize=16,color="green",shape="box"];736[label="vwx402",fontsize=16,color="green",shape="box"];737[label="vwx302",fontsize=16,color="green",shape="box"];738[label="vwx402",fontsize=16,color="green",shape="box"];739[label="vwx302",fontsize=16,color="green",shape="box"];740[label="vwx402",fontsize=16,color="green",shape="box"];741[label="vwx302",fontsize=16,color="green",shape="box"];742[label="vwx402",fontsize=16,color="green",shape="box"];743[label="vwx302",fontsize=16,color="green",shape="box"];744[label="vwx402",fontsize=16,color="green",shape="box"];745[label="vwx302",fontsize=16,color="green",shape="box"];746[label="vwx402",fontsize=16,color="green",shape="box"];747[label="vwx302",fontsize=16,color="green",shape="box"];748[label="vwx402",fontsize=16,color="green",shape="box"];749[label="vwx302",fontsize=16,color="green",shape="box"];750[label="vwx402",fontsize=16,color="green",shape="box"];751[label="vwx302",fontsize=16,color="green",shape="box"];752[label="vwx402",fontsize=16,color="green",shape="box"];753[label="vwx302",fontsize=16,color="green",shape="box"];754[label="vwx402",fontsize=16,color="green",shape="box"];755[label="vwx302",fontsize=16,color="green",shape="box"];756[label="vwx402",fontsize=16,color="green",shape="box"];757[label="vwx302",fontsize=16,color="green",shape="box"];758[label="vwx402",fontsize=16,color="green",shape="box"];759[label="vwx302",fontsize=16,color="green",shape="box"];760[label="vwx402",fontsize=16,color="green",shape="box"];761[label="vwx302",fontsize=16,color="green",shape="box"];762[label="vwx402",fontsize=16,color="green",shape="box"];763[label="vwx301",fontsize=16,color="green",shape="box"];764[label="vwx401",fontsize=16,color="green",shape="box"];765[label="vwx301",fontsize=16,color="green",shape="box"];766[label="vwx401",fontsize=16,color="green",shape="box"];767[label="vwx301",fontsize=16,color="green",shape="box"];768[label="vwx401",fontsize=16,color="green",shape="box"];769[label="vwx301",fontsize=16,color="green",shape="box"];770[label="vwx401",fontsize=16,color="green",shape="box"];771[label="vwx301",fontsize=16,color="green",shape="box"];772[label="vwx401",fontsize=16,color="green",shape="box"];773[label="vwx301",fontsize=16,color="green",shape="box"];774[label="vwx401",fontsize=16,color="green",shape="box"];775[label="vwx301",fontsize=16,color="green",shape="box"];776[label="vwx401",fontsize=16,color="green",shape="box"];777[label="vwx301",fontsize=16,color="green",shape="box"];778[label="vwx401",fontsize=16,color="green",shape="box"];779[label="vwx301",fontsize=16,color="green",shape="box"];780[label="vwx401",fontsize=16,color="green",shape="box"];781[label="vwx301",fontsize=16,color="green",shape="box"];782[label="vwx401",fontsize=16,color="green",shape="box"];783[label="vwx301",fontsize=16,color="green",shape="box"];784[label="vwx401",fontsize=16,color="green",shape="box"];785[label="vwx301",fontsize=16,color="green",shape="box"];786[label="vwx401",fontsize=16,color="green",shape="box"];787[label="vwx301",fontsize=16,color="green",shape="box"];788[label="vwx401",fontsize=16,color="green",shape="box"];789[label="vwx301",fontsize=16,color="green",shape="box"];790[label="vwx401",fontsize=16,color="green",shape="box"];791 -> 266[label="",style="dashed", color="red", weight=0]; 791[label="primEqNat vwx3000 vwx4000",fontsize=16,color="magenta"];791 -> 832[label="",style="dashed", color="magenta", weight=3]; 791 -> 833[label="",style="dashed", color="magenta", weight=3]; 792[label="False",fontsize=16,color="green",shape="box"];793[label="False",fontsize=16,color="green",shape="box"];794[label="True",fontsize=16,color="green",shape="box"];1888 -> 1919[label="",style="dashed", color="red", weight=0]; 1888[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1888 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1889[label="Left vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];1889 -> 1928[label="",style="solid", color="black", weight=3]; 1890[label="Left vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];1890 -> 1929[label="",style="solid", color="black", weight=3]; 1891[label="Right vwx90 <= Left vwx100",fontsize=16,color="black",shape="box"];1891 -> 1930[label="",style="solid", color="black", weight=3]; 1892[label="Right vwx90 <= Right vwx100",fontsize=16,color="black",shape="box"];1892 -> 1931[label="",style="solid", color="black", weight=3]; 1893[label="False <= False",fontsize=16,color="black",shape="box"];1893 -> 1932[label="",style="solid", color="black", weight=3]; 1894[label="False <= True",fontsize=16,color="black",shape="box"];1894 -> 1933[label="",style="solid", color="black", weight=3]; 1895[label="True <= False",fontsize=16,color="black",shape="box"];1895 -> 1934[label="",style="solid", color="black", weight=3]; 1896[label="True <= True",fontsize=16,color="black",shape="box"];1896 -> 1935[label="",style="solid", color="black", weight=3]; 1897 -> 1919[label="",style="dashed", color="red", weight=0]; 1897[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1897 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1919[label="",style="dashed", color="red", weight=0]; 1898[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1898 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1899[label="(vwx90,vwx91) <= (vwx100,vwx101)",fontsize=16,color="black",shape="box"];1899 -> 1936[label="",style="solid", color="black", weight=3]; 1900[label="LT <= LT",fontsize=16,color="black",shape="box"];1900 -> 1937[label="",style="solid", color="black", weight=3]; 1901[label="LT <= EQ",fontsize=16,color="black",shape="box"];1901 -> 1938[label="",style="solid", color="black", weight=3]; 1902[label="LT <= GT",fontsize=16,color="black",shape="box"];1902 -> 1939[label="",style="solid", color="black", weight=3]; 1903[label="EQ <= LT",fontsize=16,color="black",shape="box"];1903 -> 1940[label="",style="solid", color="black", weight=3]; 1904[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1904 -> 1941[label="",style="solid", color="black", weight=3]; 1905[label="EQ <= GT",fontsize=16,color="black",shape="box"];1905 -> 1942[label="",style="solid", color="black", weight=3]; 1906[label="GT <= LT",fontsize=16,color="black",shape="box"];1906 -> 1943[label="",style="solid", color="black", weight=3]; 1907[label="GT <= EQ",fontsize=16,color="black",shape="box"];1907 -> 1944[label="",style="solid", color="black", weight=3]; 1908[label="GT <= GT",fontsize=16,color="black",shape="box"];1908 -> 1945[label="",style="solid", color="black", weight=3]; 1909 -> 1919[label="",style="dashed", color="red", weight=0]; 1909[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1909 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1919[label="",style="dashed", color="red", weight=0]; 1910[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1910 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1911[label="(vwx90,vwx91,vwx92) <= (vwx100,vwx101,vwx102)",fontsize=16,color="black",shape="box"];1911 -> 1946[label="",style="solid", color="black", weight=3]; 1912 -> 1919[label="",style="dashed", color="red", weight=0]; 1912[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1912 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1913[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1913 -> 1947[label="",style="solid", color="black", weight=3]; 1914[label="Nothing <= Just vwx100",fontsize=16,color="black",shape="box"];1914 -> 1948[label="",style="solid", color="black", weight=3]; 1915[label="Just vwx90 <= Nothing",fontsize=16,color="black",shape="box"];1915 -> 1949[label="",style="solid", color="black", weight=3]; 1916[label="Just vwx90 <= Just vwx100",fontsize=16,color="black",shape="box"];1916 -> 1950[label="",style="solid", color="black", weight=3]; 1917 -> 1919[label="",style="dashed", color="red", weight=0]; 1917[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1917 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1918 -> 1919[label="",style="dashed", color="red", weight=0]; 1918[label="not (compare vwx9 vwx10 == GT)",fontsize=16,color="magenta"];1918 -> 1927[label="",style="dashed", color="magenta", weight=3]; 828[label="primMulInt (Pos vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];828 -> 866[label="",style="solid", color="black", weight=3]; 829[label="primMulInt (Pos vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];829 -> 867[label="",style="solid", color="black", weight=3]; 830[label="primMulInt (Neg vwx3000) (Pos vwx4010)",fontsize=16,color="black",shape="box"];830 -> 868[label="",style="solid", color="black", weight=3]; 831[label="primMulInt (Neg vwx3000) (Neg vwx4010)",fontsize=16,color="black",shape="box"];831 -> 869[label="",style="solid", color="black", weight=3]; 832[label="vwx4000",fontsize=16,color="green",shape="box"];833[label="vwx3000",fontsize=16,color="green",shape="box"];1920 -> 33[label="",style="dashed", color="red", weight=0]; 1920[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1920 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1920 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1919[label="not vwx65",fontsize=16,color="burlywood",shape="triangle"];3153[label="vwx65/False",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3153[label="",style="solid", color="burlywood", weight=9]; 3153 -> 1953[label="",style="solid", color="burlywood", weight=3]; 3154[label="vwx65/True",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3154[label="",style="solid", color="burlywood", weight=9]; 3154 -> 1954[label="",style="solid", color="burlywood", weight=3]; 1928[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];3155[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1969[label="",style="solid", color="blue", weight=3]; 3156[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1970[label="",style="solid", color="blue", weight=3]; 3157[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1971[label="",style="solid", color="blue", weight=3]; 3158[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1972[label="",style="solid", color="blue", weight=3]; 3159[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1973[label="",style="solid", color="blue", weight=3]; 3160[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3160[label="",style="solid", color="blue", weight=9]; 3160 -> 1974[label="",style="solid", color="blue", weight=3]; 3161[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3161[label="",style="solid", color="blue", weight=9]; 3161 -> 1975[label="",style="solid", color="blue", weight=3]; 3162[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1976[label="",style="solid", color="blue", weight=3]; 3163[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1977[label="",style="solid", color="blue", weight=3]; 3164[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1978[label="",style="solid", color="blue", weight=3]; 3165[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1979[label="",style="solid", color="blue", weight=3]; 3166[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1980[label="",style="solid", color="blue", weight=3]; 3167[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1981[label="",style="solid", color="blue", weight=3]; 3168[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1982[label="",style="solid", color="blue", weight=3]; 1929[label="True",fontsize=16,color="green",shape="box"];1930[label="False",fontsize=16,color="green",shape="box"];1931[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];3169[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1983[label="",style="solid", color="blue", weight=3]; 3170[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1984[label="",style="solid", color="blue", weight=3]; 3171[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1985[label="",style="solid", color="blue", weight=3]; 3172[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1986[label="",style="solid", color="blue", weight=3]; 3173[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1987[label="",style="solid", color="blue", weight=3]; 3174[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1988[label="",style="solid", color="blue", weight=3]; 3175[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1989[label="",style="solid", color="blue", weight=3]; 3176[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1990[label="",style="solid", color="blue", weight=3]; 3177[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1991[label="",style="solid", color="blue", weight=3]; 3178[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1992[label="",style="solid", color="blue", weight=3]; 3179[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1993[label="",style="solid", color="blue", weight=3]; 3180[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1994[label="",style="solid", color="blue", weight=3]; 3181[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1995[label="",style="solid", color="blue", weight=3]; 3182[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1996[label="",style="solid", color="blue", weight=3]; 1932[label="True",fontsize=16,color="green",shape="box"];1933[label="True",fontsize=16,color="green",shape="box"];1934[label="False",fontsize=16,color="green",shape="box"];1935[label="True",fontsize=16,color="green",shape="box"];1921 -> 33[label="",style="dashed", color="red", weight=0]; 1921[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1921 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1921 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1922 -> 33[label="",style="dashed", color="red", weight=0]; 1922[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1922 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1922 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2079[label="",style="dashed", color="red", weight=0]; 1936[label="vwx90 < vwx100 || vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];1936 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1937[label="True",fontsize=16,color="green",shape="box"];1938[label="True",fontsize=16,color="green",shape="box"];1939[label="True",fontsize=16,color="green",shape="box"];1940[label="False",fontsize=16,color="green",shape="box"];1941[label="True",fontsize=16,color="green",shape="box"];1942[label="True",fontsize=16,color="green",shape="box"];1943[label="False",fontsize=16,color="green",shape="box"];1944[label="False",fontsize=16,color="green",shape="box"];1945[label="True",fontsize=16,color="green",shape="box"];1923 -> 33[label="",style="dashed", color="red", weight=0]; 1923[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1923 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1923 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1924 -> 33[label="",style="dashed", color="red", weight=0]; 1924[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1924 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1924 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2079[label="",style="dashed", color="red", weight=0]; 1946[label="vwx90 < vwx100 || vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];1946 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1925 -> 33[label="",style="dashed", color="red", weight=0]; 1925[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1925 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1925 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1947[label="True",fontsize=16,color="green",shape="box"];1948[label="True",fontsize=16,color="green",shape="box"];1949[label="False",fontsize=16,color="green",shape="box"];1950[label="vwx90 <= vwx100",fontsize=16,color="blue",shape="box"];3183[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 2002[label="",style="solid", color="blue", weight=3]; 3184[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 2003[label="",style="solid", color="blue", weight=3]; 3185[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 2004[label="",style="solid", color="blue", weight=3]; 3186[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 2005[label="",style="solid", color="blue", weight=3]; 3187[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 2006[label="",style="solid", color="blue", weight=3]; 3188[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 2007[label="",style="solid", color="blue", weight=3]; 3189[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 2008[label="",style="solid", color="blue", weight=3]; 3190[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3190[label="",style="solid", color="blue", weight=9]; 3190 -> 2009[label="",style="solid", color="blue", weight=3]; 3191[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 2010[label="",style="solid", color="blue", weight=3]; 3192[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 2011[label="",style="solid", color="blue", weight=3]; 3193[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 2012[label="",style="solid", color="blue", weight=3]; 3194[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 2013[label="",style="solid", color="blue", weight=3]; 3195[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 2014[label="",style="solid", color="blue", weight=3]; 3196[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1950 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 2015[label="",style="solid", color="blue", weight=3]; 1926 -> 33[label="",style="dashed", color="red", weight=0]; 1926[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1926 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1926 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1927 -> 33[label="",style="dashed", color="red", weight=0]; 1927[label="compare vwx9 vwx10 == GT",fontsize=16,color="magenta"];1927 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1927 -> 1968[label="",style="dashed", color="magenta", weight=3]; 866[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];866 -> 935[label="",style="dashed", color="green", weight=3]; 867[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];867 -> 936[label="",style="dashed", color="green", weight=3]; 868[label="Neg (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];868 -> 937[label="",style="dashed", color="green", weight=3]; 869[label="Pos (primMulNat vwx3000 vwx4010)",fontsize=16,color="green",shape="box"];869 -> 938[label="",style="dashed", color="green", weight=3]; 1951[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1951 -> 2016[label="",style="solid", color="black", weight=3]; 1952[label="GT",fontsize=16,color="green",shape="box"];1953[label="not False",fontsize=16,color="black",shape="box"];1953 -> 2017[label="",style="solid", color="black", weight=3]; 1954[label="not True",fontsize=16,color="black",shape="box"];1954 -> 2018[label="",style="solid", color="black", weight=3]; 1969 -> 1811[label="",style="dashed", color="red", weight=0]; 1969[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1969 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1812[label="",style="dashed", color="red", weight=0]; 1970[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1970 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1813[label="",style="dashed", color="red", weight=0]; 1971[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1971 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1814[label="",style="dashed", color="red", weight=0]; 1972[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1972 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1815[label="",style="dashed", color="red", weight=0]; 1973[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1973 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1816[label="",style="dashed", color="red", weight=0]; 1974[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1974 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1817[label="",style="dashed", color="red", weight=0]; 1975[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1975 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1818[label="",style="dashed", color="red", weight=0]; 1976[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1976 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1819[label="",style="dashed", color="red", weight=0]; 1977[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1977 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1820[label="",style="dashed", color="red", weight=0]; 1978[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1978 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1821[label="",style="dashed", color="red", weight=0]; 1979[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1979 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1822[label="",style="dashed", color="red", weight=0]; 1980[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1980 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1823[label="",style="dashed", color="red", weight=0]; 1981[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1981 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1824[label="",style="dashed", color="red", weight=0]; 1982[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1982 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1811[label="",style="dashed", color="red", weight=0]; 1983[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1983 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1812[label="",style="dashed", color="red", weight=0]; 1984[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1984 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1813[label="",style="dashed", color="red", weight=0]; 1985[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1985 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1814[label="",style="dashed", color="red", weight=0]; 1986[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1986 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1815[label="",style="dashed", color="red", weight=0]; 1987[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1987 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1816[label="",style="dashed", color="red", weight=0]; 1988[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1988 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1817[label="",style="dashed", color="red", weight=0]; 1989[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1989 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1818[label="",style="dashed", color="red", weight=0]; 1990[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1990 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1991 -> 1819[label="",style="dashed", color="red", weight=0]; 1991[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1991 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1992 -> 1820[label="",style="dashed", color="red", weight=0]; 1992[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1992 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1993 -> 1821[label="",style="dashed", color="red", weight=0]; 1993[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1993 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1994 -> 1822[label="",style="dashed", color="red", weight=0]; 1994[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1994 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1994 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1995 -> 1823[label="",style="dashed", color="red", weight=0]; 1995[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1995 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1996 -> 1824[label="",style="dashed", color="red", weight=0]; 1996[label="vwx90 <= vwx100",fontsize=16,color="magenta"];1996 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1955[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3197[label="vwx9/()",fontsize=10,color="white",style="solid",shape="box"];1955 -> 3197[label="",style="solid", color="burlywood", weight=9]; 3197 -> 2075[label="",style="solid", color="burlywood", weight=3]; 1956[label="GT",fontsize=16,color="green",shape="box"];1957[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3198[label="vwx9/Integer vwx90",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3198[label="",style="solid", color="burlywood", weight=9]; 3198 -> 2076[label="",style="solid", color="burlywood", weight=3]; 1958[label="GT",fontsize=16,color="green",shape="box"];2080[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];3199[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 2086[label="",style="solid", color="blue", weight=3]; 3200[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 2087[label="",style="solid", color="blue", weight=3]; 3201[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 2088[label="",style="solid", color="blue", weight=3]; 3202[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 2089[label="",style="solid", color="blue", weight=3]; 3203[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 2090[label="",style="solid", color="blue", weight=3]; 3204[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 2091[label="",style="solid", color="blue", weight=3]; 3205[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 2092[label="",style="solid", color="blue", weight=3]; 3206[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 2093[label="",style="solid", color="blue", weight=3]; 3207[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 2094[label="",style="solid", color="blue", weight=3]; 3208[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 2095[label="",style="solid", color="blue", weight=3]; 3209[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 2096[label="",style="solid", color="blue", weight=3]; 3210[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 2097[label="",style="solid", color="blue", weight=3]; 3211[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 2098[label="",style="solid", color="blue", weight=3]; 3212[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2080 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 2099[label="",style="solid", color="blue", weight=3]; 2081 -> 364[label="",style="dashed", color="red", weight=0]; 2081[label="vwx90 == vwx100 && vwx91 <= vwx101",fontsize=16,color="magenta"];2081 -> 2100[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2101[label="",style="dashed", color="magenta", weight=3]; 2079[label="vwx70 || vwx71",fontsize=16,color="burlywood",shape="triangle"];3213[label="vwx70/False",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3213[label="",style="solid", color="burlywood", weight=9]; 3213 -> 2102[label="",style="solid", color="burlywood", weight=3]; 3214[label="vwx70/True",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3214[label="",style="solid", color="burlywood", weight=9]; 3214 -> 2103[label="",style="solid", color="burlywood", weight=3]; 1959[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1959 -> 2104[label="",style="solid", color="black", weight=3]; 1960[label="GT",fontsize=16,color="green",shape="box"];1961[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3215[label="vwx9/vwx90 :% vwx91",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3215[label="",style="solid", color="burlywood", weight=9]; 3215 -> 2105[label="",style="solid", color="burlywood", weight=3]; 1962[label="GT",fontsize=16,color="green",shape="box"];2082[label="vwx90 < vwx100",fontsize=16,color="blue",shape="box"];3216[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 2106[label="",style="solid", color="blue", weight=3]; 3217[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 2107[label="",style="solid", color="blue", weight=3]; 3218[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 2108[label="",style="solid", color="blue", weight=3]; 3219[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 2109[label="",style="solid", color="blue", weight=3]; 3220[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 2110[label="",style="solid", color="blue", weight=3]; 3221[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 2111[label="",style="solid", color="blue", weight=3]; 3222[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3222[label="",style="solid", color="blue", weight=9]; 3222 -> 2112[label="",style="solid", color="blue", weight=3]; 3223[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3223[label="",style="solid", color="blue", weight=9]; 3223 -> 2113[label="",style="solid", color="blue", weight=3]; 3224[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3224[label="",style="solid", color="blue", weight=9]; 3224 -> 2114[label="",style="solid", color="blue", weight=3]; 3225[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3225[label="",style="solid", color="blue", weight=9]; 3225 -> 2115[label="",style="solid", color="blue", weight=3]; 3226[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3226[label="",style="solid", color="blue", weight=9]; 3226 -> 2116[label="",style="solid", color="blue", weight=3]; 3227[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3227[label="",style="solid", color="blue", weight=9]; 3227 -> 2117[label="",style="solid", color="blue", weight=3]; 3228[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3228[label="",style="solid", color="blue", weight=9]; 3228 -> 2118[label="",style="solid", color="blue", weight=3]; 3229[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3229[label="",style="solid", color="blue", weight=9]; 3229 -> 2119[label="",style="solid", color="blue", weight=3]; 2083 -> 364[label="",style="dashed", color="red", weight=0]; 2083[label="vwx90 == vwx100 && (vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102)",fontsize=16,color="magenta"];2083 -> 2120[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1963[label="compare vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3230[label="vwx9/vwx90 : vwx91",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 2122[label="",style="solid", color="burlywood", weight=3]; 3231[label="vwx9/[]",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 2123[label="",style="solid", color="burlywood", weight=3]; 1964[label="GT",fontsize=16,color="green",shape="box"];2002 -> 1811[label="",style="dashed", color="red", weight=0]; 2002[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2002 -> 2124[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2125[label="",style="dashed", color="magenta", weight=3]; 2003 -> 1812[label="",style="dashed", color="red", weight=0]; 2003[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2003 -> 2126[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2127[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1813[label="",style="dashed", color="red", weight=0]; 2004[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2004 -> 2128[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2129[label="",style="dashed", color="magenta", weight=3]; 2005 -> 1814[label="",style="dashed", color="red", weight=0]; 2005[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2005 -> 2130[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2131[label="",style="dashed", color="magenta", weight=3]; 2006 -> 1815[label="",style="dashed", color="red", weight=0]; 2006[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2006 -> 2132[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2133[label="",style="dashed", color="magenta", weight=3]; 2007 -> 1816[label="",style="dashed", color="red", weight=0]; 2007[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2007 -> 2134[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2135[label="",style="dashed", color="magenta", weight=3]; 2008 -> 1817[label="",style="dashed", color="red", weight=0]; 2008[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2008 -> 2136[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2137[label="",style="dashed", color="magenta", weight=3]; 2009 -> 1818[label="",style="dashed", color="red", weight=0]; 2009[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2009 -> 2138[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2139[label="",style="dashed", color="magenta", weight=3]; 2010 -> 1819[label="",style="dashed", color="red", weight=0]; 2010[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2010 -> 2140[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2141[label="",style="dashed", color="magenta", weight=3]; 2011 -> 1820[label="",style="dashed", color="red", weight=0]; 2011[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2011 -> 2142[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2143[label="",style="dashed", color="magenta", weight=3]; 2012 -> 1821[label="",style="dashed", color="red", weight=0]; 2012[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2012 -> 2144[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2145[label="",style="dashed", color="magenta", weight=3]; 2013 -> 1822[label="",style="dashed", color="red", weight=0]; 2013[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2013 -> 2146[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2147[label="",style="dashed", color="magenta", weight=3]; 2014 -> 1823[label="",style="dashed", color="red", weight=0]; 2014[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2014 -> 2148[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2149[label="",style="dashed", color="magenta", weight=3]; 2015 -> 1824[label="",style="dashed", color="red", weight=0]; 2015[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2015 -> 2150[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1965[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1965 -> 2152[label="",style="solid", color="black", weight=3]; 1966[label="GT",fontsize=16,color="green",shape="box"];1967[label="compare vwx9 vwx10",fontsize=16,color="black",shape="triangle"];1967 -> 2153[label="",style="solid", color="black", weight=3]; 1968[label="GT",fontsize=16,color="green",shape="box"];935[label="primMulNat vwx3000 vwx4010",fontsize=16,color="burlywood",shape="triangle"];3232[label="vwx3000/Succ vwx30000",fontsize=10,color="white",style="solid",shape="box"];935 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1077[label="",style="solid", color="burlywood", weight=3]; 3233[label="vwx3000/Zero",fontsize=10,color="white",style="solid",shape="box"];935 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1078[label="",style="solid", color="burlywood", weight=3]; 936 -> 935[label="",style="dashed", color="red", weight=0]; 936[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];936 -> 1079[label="",style="dashed", color="magenta", weight=3]; 937 -> 935[label="",style="dashed", color="red", weight=0]; 937[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];937 -> 1080[label="",style="dashed", color="magenta", weight=3]; 938 -> 935[label="",style="dashed", color="red", weight=0]; 938[label="primMulNat vwx3000 vwx4010",fontsize=16,color="magenta"];938 -> 1081[label="",style="dashed", color="magenta", weight=3]; 938 -> 1082[label="",style="dashed", color="magenta", weight=3]; 2016[label="primCmpInt vwx9 vwx10",fontsize=16,color="burlywood",shape="triangle"];3234[label="vwx9/Pos vwx90",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 2154[label="",style="solid", color="burlywood", weight=3]; 3235[label="vwx9/Neg vwx90",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 2155[label="",style="solid", color="burlywood", weight=3]; 2017[label="True",fontsize=16,color="green",shape="box"];2018[label="False",fontsize=16,color="green",shape="box"];2019[label="vwx100",fontsize=16,color="green",shape="box"];2020[label="vwx90",fontsize=16,color="green",shape="box"];2021[label="vwx100",fontsize=16,color="green",shape="box"];2022[label="vwx90",fontsize=16,color="green",shape="box"];2023[label="vwx100",fontsize=16,color="green",shape="box"];2024[label="vwx90",fontsize=16,color="green",shape="box"];2025[label="vwx100",fontsize=16,color="green",shape="box"];2026[label="vwx90",fontsize=16,color="green",shape="box"];2027[label="vwx100",fontsize=16,color="green",shape="box"];2028[label="vwx90",fontsize=16,color="green",shape="box"];2029[label="vwx100",fontsize=16,color="green",shape="box"];2030[label="vwx90",fontsize=16,color="green",shape="box"];2031[label="vwx100",fontsize=16,color="green",shape="box"];2032[label="vwx90",fontsize=16,color="green",shape="box"];2033[label="vwx100",fontsize=16,color="green",shape="box"];2034[label="vwx90",fontsize=16,color="green",shape="box"];2035[label="vwx100",fontsize=16,color="green",shape="box"];2036[label="vwx90",fontsize=16,color="green",shape="box"];2037[label="vwx100",fontsize=16,color="green",shape="box"];2038[label="vwx90",fontsize=16,color="green",shape="box"];2039[label="vwx100",fontsize=16,color="green",shape="box"];2040[label="vwx90",fontsize=16,color="green",shape="box"];2041[label="vwx100",fontsize=16,color="green",shape="box"];2042[label="vwx90",fontsize=16,color="green",shape="box"];2043[label="vwx100",fontsize=16,color="green",shape="box"];2044[label="vwx90",fontsize=16,color="green",shape="box"];2045[label="vwx100",fontsize=16,color="green",shape="box"];2046[label="vwx90",fontsize=16,color="green",shape="box"];2047[label="vwx100",fontsize=16,color="green",shape="box"];2048[label="vwx90",fontsize=16,color="green",shape="box"];2049[label="vwx100",fontsize=16,color="green",shape="box"];2050[label="vwx90",fontsize=16,color="green",shape="box"];2051[label="vwx100",fontsize=16,color="green",shape="box"];2052[label="vwx90",fontsize=16,color="green",shape="box"];2053[label="vwx100",fontsize=16,color="green",shape="box"];2054[label="vwx90",fontsize=16,color="green",shape="box"];2055[label="vwx100",fontsize=16,color="green",shape="box"];2056[label="vwx90",fontsize=16,color="green",shape="box"];2057[label="vwx100",fontsize=16,color="green",shape="box"];2058[label="vwx90",fontsize=16,color="green",shape="box"];2059[label="vwx100",fontsize=16,color="green",shape="box"];2060[label="vwx90",fontsize=16,color="green",shape="box"];2061[label="vwx100",fontsize=16,color="green",shape="box"];2062[label="vwx90",fontsize=16,color="green",shape="box"];2063[label="vwx100",fontsize=16,color="green",shape="box"];2064[label="vwx90",fontsize=16,color="green",shape="box"];2065[label="vwx100",fontsize=16,color="green",shape="box"];2066[label="vwx90",fontsize=16,color="green",shape="box"];2067[label="vwx100",fontsize=16,color="green",shape="box"];2068[label="vwx90",fontsize=16,color="green",shape="box"];2069[label="vwx100",fontsize=16,color="green",shape="box"];2070[label="vwx90",fontsize=16,color="green",shape="box"];2071[label="vwx100",fontsize=16,color="green",shape="box"];2072[label="vwx90",fontsize=16,color="green",shape="box"];2073[label="vwx100",fontsize=16,color="green",shape="box"];2074[label="vwx90",fontsize=16,color="green",shape="box"];2075[label="compare () vwx10",fontsize=16,color="burlywood",shape="box"];3236[label="vwx10/()",fontsize=10,color="white",style="solid",shape="box"];2075 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 2156[label="",style="solid", color="burlywood", weight=3]; 2076[label="compare (Integer vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3237[label="vwx10/Integer vwx100",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 2157[label="",style="solid", color="burlywood", weight=3]; 2086[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2086 -> 2158[label="",style="solid", color="black", weight=3]; 2087 -> 4[label="",style="dashed", color="red", weight=0]; 2087[label="vwx90 < vwx100",fontsize=16,color="magenta"];2087 -> 2159[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2160[label="",style="dashed", color="magenta", weight=3]; 2088[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2088 -> 2161[label="",style="solid", color="black", weight=3]; 2089[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2089 -> 2162[label="",style="solid", color="black", weight=3]; 2090[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2090 -> 2163[label="",style="solid", color="black", weight=3]; 2091[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2091 -> 2164[label="",style="solid", color="black", weight=3]; 2092[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2092 -> 2165[label="",style="solid", color="black", weight=3]; 2093[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2093 -> 2166[label="",style="solid", color="black", weight=3]; 2094[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2094 -> 2167[label="",style="solid", color="black", weight=3]; 2095[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2095 -> 2168[label="",style="solid", color="black", weight=3]; 2096[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2096 -> 2169[label="",style="solid", color="black", weight=3]; 2097[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2097 -> 2170[label="",style="solid", color="black", weight=3]; 2098[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2098 -> 2171[label="",style="solid", color="black", weight=3]; 2099[label="vwx90 < vwx100",fontsize=16,color="black",shape="triangle"];2099 -> 2172[label="",style="solid", color="black", weight=3]; 2100[label="vwx91 <= vwx101",fontsize=16,color="blue",shape="box"];3238[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 2173[label="",style="solid", color="blue", weight=3]; 3239[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 2174[label="",style="solid", color="blue", weight=3]; 3240[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 2175[label="",style="solid", color="blue", weight=3]; 3241[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 2176[label="",style="solid", color="blue", weight=3]; 3242[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 2177[label="",style="solid", color="blue", weight=3]; 3243[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 2178[label="",style="solid", color="blue", weight=3]; 3244[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 2179[label="",style="solid", color="blue", weight=3]; 3245[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 2180[label="",style="solid", color="blue", weight=3]; 3246[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 2181[label="",style="solid", color="blue", weight=3]; 3247[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 2182[label="",style="solid", color="blue", weight=3]; 3248[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 2183[label="",style="solid", color="blue", weight=3]; 3249[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 2184[label="",style="solid", color="blue", weight=3]; 3250[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 2185[label="",style="solid", color="blue", weight=3]; 3251[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2100 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 2186[label="",style="solid", color="blue", weight=3]; 2101[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];3252[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 2187[label="",style="solid", color="blue", weight=3]; 3253[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 2188[label="",style="solid", color="blue", weight=3]; 3254[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 2189[label="",style="solid", color="blue", weight=3]; 3255[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 2190[label="",style="solid", color="blue", weight=3]; 3256[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 2191[label="",style="solid", color="blue", weight=3]; 3257[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 2192[label="",style="solid", color="blue", weight=3]; 3258[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 2193[label="",style="solid", color="blue", weight=3]; 3259[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 2194[label="",style="solid", color="blue", weight=3]; 3260[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 2195[label="",style="solid", color="blue", weight=3]; 3261[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 2196[label="",style="solid", color="blue", weight=3]; 3262[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 2197[label="",style="solid", color="blue", weight=3]; 3263[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 2198[label="",style="solid", color="blue", weight=3]; 3264[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 2199[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2101 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 2200[label="",style="solid", color="blue", weight=3]; 2102[label="False || vwx71",fontsize=16,color="black",shape="box"];2102 -> 2201[label="",style="solid", color="black", weight=3]; 2103[label="True || vwx71",fontsize=16,color="black",shape="box"];2103 -> 2202[label="",style="solid", color="black", weight=3]; 2104[label="primCmpChar vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3266[label="vwx9/Char vwx90",fontsize=10,color="white",style="solid",shape="box"];2104 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 2203[label="",style="solid", color="burlywood", weight=3]; 2105[label="compare (vwx90 :% vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3267[label="vwx10/vwx100 :% vwx101",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 2204[label="",style="solid", color="burlywood", weight=3]; 2106 -> 2086[label="",style="dashed", color="red", weight=0]; 2106[label="vwx90 < vwx100",fontsize=16,color="magenta"];2106 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2107 -> 4[label="",style="dashed", color="red", weight=0]; 2107[label="vwx90 < vwx100",fontsize=16,color="magenta"];2107 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2088[label="",style="dashed", color="red", weight=0]; 2108[label="vwx90 < vwx100",fontsize=16,color="magenta"];2108 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2089[label="",style="dashed", color="red", weight=0]; 2109[label="vwx90 < vwx100",fontsize=16,color="magenta"];2109 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2090[label="",style="dashed", color="red", weight=0]; 2110[label="vwx90 < vwx100",fontsize=16,color="magenta"];2110 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2091[label="",style="dashed", color="red", weight=0]; 2111[label="vwx90 < vwx100",fontsize=16,color="magenta"];2111 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2092[label="",style="dashed", color="red", weight=0]; 2112[label="vwx90 < vwx100",fontsize=16,color="magenta"];2112 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2093[label="",style="dashed", color="red", weight=0]; 2113[label="vwx90 < vwx100",fontsize=16,color="magenta"];2113 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2094[label="",style="dashed", color="red", weight=0]; 2114[label="vwx90 < vwx100",fontsize=16,color="magenta"];2114 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2095[label="",style="dashed", color="red", weight=0]; 2115[label="vwx90 < vwx100",fontsize=16,color="magenta"];2115 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2096[label="",style="dashed", color="red", weight=0]; 2116[label="vwx90 < vwx100",fontsize=16,color="magenta"];2116 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2097[label="",style="dashed", color="red", weight=0]; 2117[label="vwx90 < vwx100",fontsize=16,color="magenta"];2117 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2098[label="",style="dashed", color="red", weight=0]; 2118[label="vwx90 < vwx100",fontsize=16,color="magenta"];2118 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2099[label="",style="dashed", color="red", weight=0]; 2119[label="vwx90 < vwx100",fontsize=16,color="magenta"];2119 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2079[label="",style="dashed", color="red", weight=0]; 2120[label="vwx91 < vwx101 || vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];2120 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2121[label="vwx90 == vwx100",fontsize=16,color="blue",shape="box"];3268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 2235[label="",style="solid", color="blue", weight=3]; 3269[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 2236[label="",style="solid", color="blue", weight=3]; 3270[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 2237[label="",style="solid", color="blue", weight=3]; 3271[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 2238[label="",style="solid", color="blue", weight=3]; 3272[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 2239[label="",style="solid", color="blue", weight=3]; 3273[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 2240[label="",style="solid", color="blue", weight=3]; 3274[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 2241[label="",style="solid", color="blue", weight=3]; 3275[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 2242[label="",style="solid", color="blue", weight=3]; 3276[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3276[label="",style="solid", color="blue", weight=9]; 3276 -> 2243[label="",style="solid", color="blue", weight=3]; 3277[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3277[label="",style="solid", color="blue", weight=9]; 3277 -> 2244[label="",style="solid", color="blue", weight=3]; 3278[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3278[label="",style="solid", color="blue", weight=9]; 3278 -> 2245[label="",style="solid", color="blue", weight=3]; 3279[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 2246[label="",style="solid", color="blue", weight=3]; 3280[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 2247[label="",style="solid", color="blue", weight=3]; 3281[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2121 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 2248[label="",style="solid", color="blue", weight=3]; 2122[label="compare (vwx90 : vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3282[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];2122 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 2249[label="",style="solid", color="burlywood", weight=3]; 3283[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];2122 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 2250[label="",style="solid", color="burlywood", weight=3]; 2123[label="compare [] vwx10",fontsize=16,color="burlywood",shape="box"];3284[label="vwx10/vwx100 : vwx101",fontsize=10,color="white",style="solid",shape="box"];2123 -> 3284[label="",style="solid", color="burlywood", weight=9]; 3284 -> 2251[label="",style="solid", color="burlywood", weight=3]; 3285[label="vwx10/[]",fontsize=10,color="white",style="solid",shape="box"];2123 -> 3285[label="",style="solid", color="burlywood", weight=9]; 3285 -> 2252[label="",style="solid", color="burlywood", weight=3]; 2124[label="vwx100",fontsize=16,color="green",shape="box"];2125[label="vwx90",fontsize=16,color="green",shape="box"];2126[label="vwx100",fontsize=16,color="green",shape="box"];2127[label="vwx90",fontsize=16,color="green",shape="box"];2128[label="vwx100",fontsize=16,color="green",shape="box"];2129[label="vwx90",fontsize=16,color="green",shape="box"];2130[label="vwx100",fontsize=16,color="green",shape="box"];2131[label="vwx90",fontsize=16,color="green",shape="box"];2132[label="vwx100",fontsize=16,color="green",shape="box"];2133[label="vwx90",fontsize=16,color="green",shape="box"];2134[label="vwx100",fontsize=16,color="green",shape="box"];2135[label="vwx90",fontsize=16,color="green",shape="box"];2136[label="vwx100",fontsize=16,color="green",shape="box"];2137[label="vwx90",fontsize=16,color="green",shape="box"];2138[label="vwx100",fontsize=16,color="green",shape="box"];2139[label="vwx90",fontsize=16,color="green",shape="box"];2140[label="vwx100",fontsize=16,color="green",shape="box"];2141[label="vwx90",fontsize=16,color="green",shape="box"];2142[label="vwx100",fontsize=16,color="green",shape="box"];2143[label="vwx90",fontsize=16,color="green",shape="box"];2144[label="vwx100",fontsize=16,color="green",shape="box"];2145[label="vwx90",fontsize=16,color="green",shape="box"];2146[label="vwx100",fontsize=16,color="green",shape="box"];2147[label="vwx90",fontsize=16,color="green",shape="box"];2148[label="vwx100",fontsize=16,color="green",shape="box"];2149[label="vwx90",fontsize=16,color="green",shape="box"];2150[label="vwx100",fontsize=16,color="green",shape="box"];2151[label="vwx90",fontsize=16,color="green",shape="box"];2152[label="primCmpDouble vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3286[label="vwx9/Double vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];2152 -> 3286[label="",style="solid", color="burlywood", weight=9]; 3286 -> 2253[label="",style="solid", color="burlywood", weight=3]; 2153[label="primCmpFloat vwx9 vwx10",fontsize=16,color="burlywood",shape="box"];3287[label="vwx9/Float vwx90 vwx91",fontsize=10,color="white",style="solid",shape="box"];2153 -> 3287[label="",style="solid", color="burlywood", weight=9]; 3287 -> 2254[label="",style="solid", color="burlywood", weight=3]; 1077[label="primMulNat (Succ vwx30000) vwx4010",fontsize=16,color="burlywood",shape="box"];3288[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3288[label="",style="solid", color="burlywood", weight=9]; 3288 -> 1184[label="",style="solid", color="burlywood", weight=3]; 3289[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1077 -> 3289[label="",style="solid", color="burlywood", weight=9]; 3289 -> 1185[label="",style="solid", color="burlywood", weight=3]; 1078[label="primMulNat Zero vwx4010",fontsize=16,color="burlywood",shape="box"];3290[label="vwx4010/Succ vwx40100",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3290[label="",style="solid", color="burlywood", weight=9]; 3290 -> 1186[label="",style="solid", color="burlywood", weight=3]; 3291[label="vwx4010/Zero",fontsize=10,color="white",style="solid",shape="box"];1078 -> 3291[label="",style="solid", color="burlywood", weight=9]; 3291 -> 1187[label="",style="solid", color="burlywood", weight=3]; 1079[label="vwx4010",fontsize=16,color="green",shape="box"];1080[label="vwx3000",fontsize=16,color="green",shape="box"];1081[label="vwx3000",fontsize=16,color="green",shape="box"];1082[label="vwx4010",fontsize=16,color="green",shape="box"];2154[label="primCmpInt (Pos vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3292[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3292[label="",style="solid", color="burlywood", weight=9]; 3292 -> 2255[label="",style="solid", color="burlywood", weight=3]; 3293[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2154 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 2256[label="",style="solid", color="burlywood", weight=3]; 2155[label="primCmpInt (Neg vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3294[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2155 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 2257[label="",style="solid", color="burlywood", weight=3]; 3295[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2155 -> 3295[label="",style="solid", color="burlywood", weight=9]; 3295 -> 2258[label="",style="solid", color="burlywood", weight=3]; 2156[label="compare () ()",fontsize=16,color="black",shape="box"];2156 -> 2259[label="",style="solid", color="black", weight=3]; 2157[label="compare (Integer vwx90) (Integer vwx100)",fontsize=16,color="black",shape="box"];2157 -> 2260[label="",style="solid", color="black", weight=3]; 2158 -> 33[label="",style="dashed", color="red", weight=0]; 2158[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2158 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2159[label="vwx90",fontsize=16,color="green",shape="box"];2160[label="vwx100",fontsize=16,color="green",shape="box"];2161 -> 33[label="",style="dashed", color="red", weight=0]; 2161[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2161 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2162 -> 33[label="",style="dashed", color="red", weight=0]; 2162[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2162 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2163 -> 33[label="",style="dashed", color="red", weight=0]; 2163[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2163 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2164 -> 33[label="",style="dashed", color="red", weight=0]; 2164[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2164 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2165 -> 33[label="",style="dashed", color="red", weight=0]; 2165[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2165 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2166 -> 33[label="",style="dashed", color="red", weight=0]; 2166[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2166 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2167 -> 33[label="",style="dashed", color="red", weight=0]; 2167[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2167 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2168 -> 33[label="",style="dashed", color="red", weight=0]; 2168[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2168 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2169 -> 33[label="",style="dashed", color="red", weight=0]; 2169[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2169 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2170 -> 33[label="",style="dashed", color="red", weight=0]; 2170[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2170 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2171 -> 33[label="",style="dashed", color="red", weight=0]; 2171[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2171 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2172 -> 33[label="",style="dashed", color="red", weight=0]; 2172[label="compare vwx90 vwx100 == LT",fontsize=16,color="magenta"];2172 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2173 -> 1811[label="",style="dashed", color="red", weight=0]; 2173[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2173 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1812[label="",style="dashed", color="red", weight=0]; 2174[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2174 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1813[label="",style="dashed", color="red", weight=0]; 2175[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2175 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2176 -> 1814[label="",style="dashed", color="red", weight=0]; 2176[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2176 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2177 -> 1815[label="",style="dashed", color="red", weight=0]; 2177[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2177 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2178 -> 1816[label="",style="dashed", color="red", weight=0]; 2178[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2178 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2178 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2179 -> 1817[label="",style="dashed", color="red", weight=0]; 2179[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2179 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2180 -> 1818[label="",style="dashed", color="red", weight=0]; 2180[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2180 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2181 -> 1819[label="",style="dashed", color="red", weight=0]; 2181[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2181 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2181 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2182 -> 1820[label="",style="dashed", color="red", weight=0]; 2182[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2182 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2182 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2183 -> 1821[label="",style="dashed", color="red", weight=0]; 2183[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2183 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2183 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2184 -> 1822[label="",style="dashed", color="red", weight=0]; 2184[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2184 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2184 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2185 -> 1823[label="",style="dashed", color="red", weight=0]; 2185[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2185 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2185 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2186 -> 1824[label="",style="dashed", color="red", weight=0]; 2186[label="vwx91 <= vwx101",fontsize=16,color="magenta"];2186 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2187 -> 28[label="",style="dashed", color="red", weight=0]; 2187[label="vwx90 == vwx100",fontsize=16,color="magenta"];2187 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2188 -> 30[label="",style="dashed", color="red", weight=0]; 2188[label="vwx90 == vwx100",fontsize=16,color="magenta"];2188 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2189 -> 35[label="",style="dashed", color="red", weight=0]; 2189[label="vwx90 == vwx100",fontsize=16,color="magenta"];2189 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2190 -> 37[label="",style="dashed", color="red", weight=0]; 2190[label="vwx90 == vwx100",fontsize=16,color="magenta"];2190 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2191 -> 41[label="",style="dashed", color="red", weight=0]; 2191[label="vwx90 == vwx100",fontsize=16,color="magenta"];2191 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2192 -> 36[label="",style="dashed", color="red", weight=0]; 2192[label="vwx90 == vwx100",fontsize=16,color="magenta"];2192 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2193 -> 33[label="",style="dashed", color="red", weight=0]; 2193[label="vwx90 == vwx100",fontsize=16,color="magenta"];2193 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2194 -> 40[label="",style="dashed", color="red", weight=0]; 2194[label="vwx90 == vwx100",fontsize=16,color="magenta"];2194 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2195 -> 34[label="",style="dashed", color="red", weight=0]; 2195[label="vwx90 == vwx100",fontsize=16,color="magenta"];2195 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2196 -> 39[label="",style="dashed", color="red", weight=0]; 2196[label="vwx90 == vwx100",fontsize=16,color="magenta"];2196 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2197 -> 31[label="",style="dashed", color="red", weight=0]; 2197[label="vwx90 == vwx100",fontsize=16,color="magenta"];2197 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2198 -> 32[label="",style="dashed", color="red", weight=0]; 2198[label="vwx90 == vwx100",fontsize=16,color="magenta"];2198 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2199 -> 38[label="",style="dashed", color="red", weight=0]; 2199[label="vwx90 == vwx100",fontsize=16,color="magenta"];2199 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2200 -> 29[label="",style="dashed", color="red", weight=0]; 2200[label="vwx90 == vwx100",fontsize=16,color="magenta"];2200 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2201[label="vwx71",fontsize=16,color="green",shape="box"];2202[label="True",fontsize=16,color="green",shape="box"];2203[label="primCmpChar (Char vwx90) vwx10",fontsize=16,color="burlywood",shape="box"];3296[label="vwx10/Char vwx100",fontsize=10,color="white",style="solid",shape="box"];2203 -> 3296[label="",style="solid", color="burlywood", weight=9]; 3296 -> 2343[label="",style="solid", color="burlywood", weight=3]; 2204[label="compare (vwx90 :% vwx91) (vwx100 :% vwx101)",fontsize=16,color="black",shape="box"];2204 -> 2344[label="",style="solid", color="black", weight=3]; 2205[label="vwx100",fontsize=16,color="green",shape="box"];2206[label="vwx90",fontsize=16,color="green",shape="box"];2207[label="vwx90",fontsize=16,color="green",shape="box"];2208[label="vwx100",fontsize=16,color="green",shape="box"];2209[label="vwx100",fontsize=16,color="green",shape="box"];2210[label="vwx90",fontsize=16,color="green",shape="box"];2211[label="vwx100",fontsize=16,color="green",shape="box"];2212[label="vwx90",fontsize=16,color="green",shape="box"];2213[label="vwx100",fontsize=16,color="green",shape="box"];2214[label="vwx90",fontsize=16,color="green",shape="box"];2215[label="vwx100",fontsize=16,color="green",shape="box"];2216[label="vwx90",fontsize=16,color="green",shape="box"];2217[label="vwx100",fontsize=16,color="green",shape="box"];2218[label="vwx90",fontsize=16,color="green",shape="box"];2219[label="vwx100",fontsize=16,color="green",shape="box"];2220[label="vwx90",fontsize=16,color="green",shape="box"];2221[label="vwx100",fontsize=16,color="green",shape="box"];2222[label="vwx90",fontsize=16,color="green",shape="box"];2223[label="vwx100",fontsize=16,color="green",shape="box"];2224[label="vwx90",fontsize=16,color="green",shape="box"];2225[label="vwx100",fontsize=16,color="green",shape="box"];2226[label="vwx90",fontsize=16,color="green",shape="box"];2227[label="vwx100",fontsize=16,color="green",shape="box"];2228[label="vwx90",fontsize=16,color="green",shape="box"];2229[label="vwx100",fontsize=16,color="green",shape="box"];2230[label="vwx90",fontsize=16,color="green",shape="box"];2231[label="vwx100",fontsize=16,color="green",shape="box"];2232[label="vwx90",fontsize=16,color="green",shape="box"];2233[label="vwx91 < vwx101",fontsize=16,color="blue",shape="box"];3297[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 2345[label="",style="solid", color="blue", weight=3]; 3298[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 2346[label="",style="solid", color="blue", weight=3]; 3299[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 2347[label="",style="solid", color="blue", weight=3]; 3300[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 2348[label="",style="solid", color="blue", weight=3]; 3301[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 2349[label="",style="solid", color="blue", weight=3]; 3302[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 2350[label="",style="solid", color="blue", weight=3]; 3303[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 2351[label="",style="solid", color="blue", weight=3]; 3304[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 2352[label="",style="solid", color="blue", weight=3]; 3305[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 2353[label="",style="solid", color="blue", weight=3]; 3306[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 2354[label="",style="solid", color="blue", weight=3]; 3307[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 2355[label="",style="solid", color="blue", weight=3]; 3308[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 2356[label="",style="solid", color="blue", weight=3]; 3309[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 2357[label="",style="solid", color="blue", weight=3]; 3310[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2233 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 2358[label="",style="solid", color="blue", weight=3]; 2234 -> 364[label="",style="dashed", color="red", weight=0]; 2234[label="vwx91 == vwx101 && vwx92 <= vwx102",fontsize=16,color="magenta"];2234 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2234 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2235 -> 28[label="",style="dashed", color="red", weight=0]; 2235[label="vwx90 == vwx100",fontsize=16,color="magenta"];2235 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2235 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2236 -> 30[label="",style="dashed", color="red", weight=0]; 2236[label="vwx90 == vwx100",fontsize=16,color="magenta"];2236 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2236 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2237 -> 35[label="",style="dashed", color="red", weight=0]; 2237[label="vwx90 == vwx100",fontsize=16,color="magenta"];2237 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2237 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2238 -> 37[label="",style="dashed", color="red", weight=0]; 2238[label="vwx90 == vwx100",fontsize=16,color="magenta"];2238 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2238 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2239 -> 41[label="",style="dashed", color="red", weight=0]; 2239[label="vwx90 == vwx100",fontsize=16,color="magenta"];2239 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2239 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2240 -> 36[label="",style="dashed", color="red", weight=0]; 2240[label="vwx90 == vwx100",fontsize=16,color="magenta"];2240 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2240 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2241 -> 33[label="",style="dashed", color="red", weight=0]; 2241[label="vwx90 == vwx100",fontsize=16,color="magenta"];2241 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2241 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2242 -> 40[label="",style="dashed", color="red", weight=0]; 2242[label="vwx90 == vwx100",fontsize=16,color="magenta"];2242 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2242 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2243 -> 34[label="",style="dashed", color="red", weight=0]; 2243[label="vwx90 == vwx100",fontsize=16,color="magenta"];2243 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2244 -> 39[label="",style="dashed", color="red", weight=0]; 2244[label="vwx90 == vwx100",fontsize=16,color="magenta"];2244 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2244 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2245 -> 31[label="",style="dashed", color="red", weight=0]; 2245[label="vwx90 == vwx100",fontsize=16,color="magenta"];2245 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2246 -> 32[label="",style="dashed", color="red", weight=0]; 2246[label="vwx90 == vwx100",fontsize=16,color="magenta"];2246 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2247 -> 38[label="",style="dashed", color="red", weight=0]; 2247[label="vwx90 == vwx100",fontsize=16,color="magenta"];2247 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2248 -> 29[label="",style="dashed", color="red", weight=0]; 2248[label="vwx90 == vwx100",fontsize=16,color="magenta"];2248 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2249[label="compare (vwx90 : vwx91) (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];2249 -> 2389[label="",style="solid", color="black", weight=3]; 2250[label="compare (vwx90 : vwx91) []",fontsize=16,color="black",shape="box"];2250 -> 2390[label="",style="solid", color="black", weight=3]; 2251[label="compare [] (vwx100 : vwx101)",fontsize=16,color="black",shape="box"];2251 -> 2391[label="",style="solid", color="black", weight=3]; 2252[label="compare [] []",fontsize=16,color="black",shape="box"];2252 -> 2392[label="",style="solid", color="black", weight=3]; 2253[label="primCmpDouble (Double vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3311[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];2253 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 2393[label="",style="solid", color="burlywood", weight=3]; 3312[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];2253 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 2394[label="",style="solid", color="burlywood", weight=3]; 2254[label="primCmpFloat (Float vwx90 vwx91) vwx10",fontsize=16,color="burlywood",shape="box"];3313[label="vwx91/Pos vwx910",fontsize=10,color="white",style="solid",shape="box"];2254 -> 3313[label="",style="solid", color="burlywood", weight=9]; 3313 -> 2395[label="",style="solid", color="burlywood", weight=3]; 3314[label="vwx91/Neg vwx910",fontsize=10,color="white",style="solid",shape="box"];2254 -> 3314[label="",style="solid", color="burlywood", weight=9]; 3314 -> 2396[label="",style="solid", color="burlywood", weight=3]; 1184[label="primMulNat (Succ vwx30000) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1184 -> 1330[label="",style="solid", color="black", weight=3]; 1185[label="primMulNat (Succ vwx30000) Zero",fontsize=16,color="black",shape="box"];1185 -> 1331[label="",style="solid", color="black", weight=3]; 1186[label="primMulNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1186 -> 1332[label="",style="solid", color="black", weight=3]; 1187[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1187 -> 1333[label="",style="solid", color="black", weight=3]; 2255[label="primCmpInt (Pos (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];3315[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3315[label="",style="solid", color="burlywood", weight=9]; 3315 -> 2397[label="",style="solid", color="burlywood", weight=3]; 3316[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 2398[label="",style="solid", color="burlywood", weight=3]; 2256[label="primCmpInt (Pos Zero) vwx10",fontsize=16,color="burlywood",shape="box"];3317[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 2399[label="",style="solid", color="burlywood", weight=3]; 3318[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3318[label="",style="solid", color="burlywood", weight=9]; 3318 -> 2400[label="",style="solid", color="burlywood", weight=3]; 2257[label="primCmpInt (Neg (Succ vwx900)) vwx10",fontsize=16,color="burlywood",shape="box"];3319[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2257 -> 3319[label="",style="solid", color="burlywood", weight=9]; 3319 -> 2401[label="",style="solid", color="burlywood", weight=3]; 3320[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2257 -> 3320[label="",style="solid", color="burlywood", weight=9]; 3320 -> 2402[label="",style="solid", color="burlywood", weight=3]; 2258[label="primCmpInt (Neg Zero) vwx10",fontsize=16,color="burlywood",shape="box"];3321[label="vwx10/Pos vwx100",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3321[label="",style="solid", color="burlywood", weight=9]; 3321 -> 2403[label="",style="solid", color="burlywood", weight=3]; 3322[label="vwx10/Neg vwx100",fontsize=10,color="white",style="solid",shape="box"];2258 -> 3322[label="",style="solid", color="burlywood", weight=9]; 3322 -> 2404[label="",style="solid", color="burlywood", weight=3]; 2259[label="EQ",fontsize=16,color="green",shape="box"];2260 -> 2016[label="",style="dashed", color="red", weight=0]; 2260[label="primCmpInt vwx90 vwx100",fontsize=16,color="magenta"];2260 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1951[label="",style="dashed", color="red", weight=0]; 2261[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2261 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2262[label="LT",fontsize=16,color="green",shape="box"];2263[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2263 -> 2409[label="",style="solid", color="black", weight=3]; 2264[label="LT",fontsize=16,color="green",shape="box"];2265 -> 1955[label="",style="dashed", color="red", weight=0]; 2265[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2265 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2266[label="LT",fontsize=16,color="green",shape="box"];2267 -> 1957[label="",style="dashed", color="red", weight=0]; 2267[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2267 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2268[label="LT",fontsize=16,color="green",shape="box"];2269[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2269 -> 2414[label="",style="solid", color="black", weight=3]; 2270[label="LT",fontsize=16,color="green",shape="box"];2271[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2271 -> 2415[label="",style="solid", color="black", weight=3]; 2272[label="LT",fontsize=16,color="green",shape="box"];2273 -> 1959[label="",style="dashed", color="red", weight=0]; 2273[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2273 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2274[label="LT",fontsize=16,color="green",shape="box"];2275 -> 1961[label="",style="dashed", color="red", weight=0]; 2275[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2275 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2276[label="LT",fontsize=16,color="green",shape="box"];2277[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2277 -> 2420[label="",style="solid", color="black", weight=3]; 2278[label="LT",fontsize=16,color="green",shape="box"];2279 -> 1963[label="",style="dashed", color="red", weight=0]; 2279[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2279 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2280[label="LT",fontsize=16,color="green",shape="box"];2281[label="compare vwx90 vwx100",fontsize=16,color="black",shape="triangle"];2281 -> 2423[label="",style="solid", color="black", weight=3]; 2282[label="LT",fontsize=16,color="green",shape="box"];2283 -> 1965[label="",style="dashed", color="red", weight=0]; 2283[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2283 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2284[label="LT",fontsize=16,color="green",shape="box"];2285 -> 1967[label="",style="dashed", color="red", weight=0]; 2285[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2285 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2286[label="LT",fontsize=16,color="green",shape="box"];2287[label="vwx101",fontsize=16,color="green",shape="box"];2288[label="vwx91",fontsize=16,color="green",shape="box"];2289[label="vwx101",fontsize=16,color="green",shape="box"];2290[label="vwx91",fontsize=16,color="green",shape="box"];2291[label="vwx101",fontsize=16,color="green",shape="box"];2292[label="vwx91",fontsize=16,color="green",shape="box"];2293[label="vwx101",fontsize=16,color="green",shape="box"];2294[label="vwx91",fontsize=16,color="green",shape="box"];2295[label="vwx101",fontsize=16,color="green",shape="box"];2296[label="vwx91",fontsize=16,color="green",shape="box"];2297[label="vwx101",fontsize=16,color="green",shape="box"];2298[label="vwx91",fontsize=16,color="green",shape="box"];2299[label="vwx101",fontsize=16,color="green",shape="box"];2300[label="vwx91",fontsize=16,color="green",shape="box"];2301[label="vwx101",fontsize=16,color="green",shape="box"];2302[label="vwx91",fontsize=16,color="green",shape="box"];2303[label="vwx101",fontsize=16,color="green",shape="box"];2304[label="vwx91",fontsize=16,color="green",shape="box"];2305[label="vwx101",fontsize=16,color="green",shape="box"];2306[label="vwx91",fontsize=16,color="green",shape="box"];2307[label="vwx101",fontsize=16,color="green",shape="box"];2308[label="vwx91",fontsize=16,color="green",shape="box"];2309[label="vwx101",fontsize=16,color="green",shape="box"];2310[label="vwx91",fontsize=16,color="green",shape="box"];2311[label="vwx101",fontsize=16,color="green",shape="box"];2312[label="vwx91",fontsize=16,color="green",shape="box"];2313[label="vwx101",fontsize=16,color="green",shape="box"];2314[label="vwx91",fontsize=16,color="green",shape="box"];2315[label="vwx90",fontsize=16,color="green",shape="box"];2316[label="vwx100",fontsize=16,color="green",shape="box"];2317[label="vwx90",fontsize=16,color="green",shape="box"];2318[label="vwx100",fontsize=16,color="green",shape="box"];2319[label="vwx90",fontsize=16,color="green",shape="box"];2320[label="vwx100",fontsize=16,color="green",shape="box"];2321[label="vwx90",fontsize=16,color="green",shape="box"];2322[label="vwx100",fontsize=16,color="green",shape="box"];2323[label="vwx90",fontsize=16,color="green",shape="box"];2324[label="vwx100",fontsize=16,color="green",shape="box"];2325[label="vwx90",fontsize=16,color="green",shape="box"];2326[label="vwx100",fontsize=16,color="green",shape="box"];2327[label="vwx90",fontsize=16,color="green",shape="box"];2328[label="vwx100",fontsize=16,color="green",shape="box"];2329[label="vwx90",fontsize=16,color="green",shape="box"];2330[label="vwx100",fontsize=16,color="green",shape="box"];2331[label="vwx90",fontsize=16,color="green",shape="box"];2332[label="vwx100",fontsize=16,color="green",shape="box"];2333[label="vwx90",fontsize=16,color="green",shape="box"];2334[label="vwx100",fontsize=16,color="green",shape="box"];2335[label="vwx90",fontsize=16,color="green",shape="box"];2336[label="vwx100",fontsize=16,color="green",shape="box"];2337[label="vwx90",fontsize=16,color="green",shape="box"];2338[label="vwx100",fontsize=16,color="green",shape="box"];2339[label="vwx90",fontsize=16,color="green",shape="box"];2340[label="vwx100",fontsize=16,color="green",shape="box"];2341[label="vwx90",fontsize=16,color="green",shape="box"];2342[label="vwx100",fontsize=16,color="green",shape="box"];2343[label="primCmpChar (Char vwx90) (Char vwx100)",fontsize=16,color="black",shape="box"];2343 -> 2428[label="",style="solid", color="black", weight=3]; 2344[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="blue",shape="box"];3323[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 2429[label="",style="solid", color="blue", weight=3]; 3324[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2344 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 2430[label="",style="solid", color="blue", weight=3]; 2345 -> 2086[label="",style="dashed", color="red", weight=0]; 2345[label="vwx91 < vwx101",fontsize=16,color="magenta"];2345 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2346 -> 4[label="",style="dashed", color="red", weight=0]; 2346[label="vwx91 < vwx101",fontsize=16,color="magenta"];2346 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2088[label="",style="dashed", color="red", weight=0]; 2347[label="vwx91 < vwx101",fontsize=16,color="magenta"];2347 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2089[label="",style="dashed", color="red", weight=0]; 2348[label="vwx91 < vwx101",fontsize=16,color="magenta"];2348 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2090[label="",style="dashed", color="red", weight=0]; 2349[label="vwx91 < vwx101",fontsize=16,color="magenta"];2349 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2091[label="",style="dashed", color="red", weight=0]; 2350[label="vwx91 < vwx101",fontsize=16,color="magenta"];2350 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2092[label="",style="dashed", color="red", weight=0]; 2351[label="vwx91 < vwx101",fontsize=16,color="magenta"];2351 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2093[label="",style="dashed", color="red", weight=0]; 2352[label="vwx91 < vwx101",fontsize=16,color="magenta"];2352 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2094[label="",style="dashed", color="red", weight=0]; 2353[label="vwx91 < vwx101",fontsize=16,color="magenta"];2353 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2095[label="",style="dashed", color="red", weight=0]; 2354[label="vwx91 < vwx101",fontsize=16,color="magenta"];2354 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2096[label="",style="dashed", color="red", weight=0]; 2355[label="vwx91 < vwx101",fontsize=16,color="magenta"];2355 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2097[label="",style="dashed", color="red", weight=0]; 2356[label="vwx91 < vwx101",fontsize=16,color="magenta"];2356 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2098[label="",style="dashed", color="red", weight=0]; 2357[label="vwx91 < vwx101",fontsize=16,color="magenta"];2357 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2099[label="",style="dashed", color="red", weight=0]; 2358[label="vwx91 < vwx101",fontsize=16,color="magenta"];2358 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2359[label="vwx92 <= vwx102",fontsize=16,color="blue",shape="box"];3325[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 2459[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 2460[label="",style="solid", color="blue", weight=3]; 3327[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 2461[label="",style="solid", color="blue", weight=3]; 3328[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 2462[label="",style="solid", color="blue", weight=3]; 3329[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 2463[label="",style="solid", color="blue", weight=3]; 3330[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 2464[label="",style="solid", color="blue", weight=3]; 3331[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 2465[label="",style="solid", color="blue", weight=3]; 3332[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 2466[label="",style="solid", color="blue", weight=3]; 3333[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 2467[label="",style="solid", color="blue", weight=3]; 3334[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 2468[label="",style="solid", color="blue", weight=3]; 3335[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 2469[label="",style="solid", color="blue", weight=3]; 3336[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 2470[label="",style="solid", color="blue", weight=3]; 3337[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 2471[label="",style="solid", color="blue", weight=3]; 3338[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2359 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 2472[label="",style="solid", color="blue", weight=3]; 2360[label="vwx91 == vwx101",fontsize=16,color="blue",shape="box"];3339[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 2473[label="",style="solid", color="blue", weight=3]; 3340[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 2474[label="",style="solid", color="blue", weight=3]; 3341[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 2475[label="",style="solid", color="blue", weight=3]; 3342[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 2476[label="",style="solid", color="blue", weight=3]; 3343[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 2477[label="",style="solid", color="blue", weight=3]; 3344[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 2478[label="",style="solid", color="blue", weight=3]; 3345[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 2479[label="",style="solid", color="blue", weight=3]; 3346[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 2480[label="",style="solid", color="blue", weight=3]; 3347[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 2481[label="",style="solid", color="blue", weight=3]; 3348[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 2482[label="",style="solid", color="blue", weight=3]; 3349[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 2483[label="",style="solid", color="blue", weight=3]; 3350[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 2484[label="",style="solid", color="blue", weight=3]; 3351[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 2485[label="",style="solid", color="blue", weight=3]; 3352[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2360 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 2486[label="",style="solid", color="blue", weight=3]; 2361[label="vwx90",fontsize=16,color="green",shape="box"];2362[label="vwx100",fontsize=16,color="green",shape="box"];2363[label="vwx90",fontsize=16,color="green",shape="box"];2364[label="vwx100",fontsize=16,color="green",shape="box"];2365[label="vwx90",fontsize=16,color="green",shape="box"];2366[label="vwx100",fontsize=16,color="green",shape="box"];2367[label="vwx90",fontsize=16,color="green",shape="box"];2368[label="vwx100",fontsize=16,color="green",shape="box"];2369[label="vwx90",fontsize=16,color="green",shape="box"];2370[label="vwx100",fontsize=16,color="green",shape="box"];2371[label="vwx90",fontsize=16,color="green",shape="box"];2372[label="vwx100",fontsize=16,color="green",shape="box"];2373[label="vwx90",fontsize=16,color="green",shape="box"];2374[label="vwx100",fontsize=16,color="green",shape="box"];2375[label="vwx90",fontsize=16,color="green",shape="box"];2376[label="vwx100",fontsize=16,color="green",shape="box"];2377[label="vwx90",fontsize=16,color="green",shape="box"];2378[label="vwx100",fontsize=16,color="green",shape="box"];2379[label="vwx90",fontsize=16,color="green",shape="box"];2380[label="vwx100",fontsize=16,color="green",shape="box"];2381[label="vwx90",fontsize=16,color="green",shape="box"];2382[label="vwx100",fontsize=16,color="green",shape="box"];2383[label="vwx90",fontsize=16,color="green",shape="box"];2384[label="vwx100",fontsize=16,color="green",shape="box"];2385[label="vwx90",fontsize=16,color="green",shape="box"];2386[label="vwx100",fontsize=16,color="green",shape="box"];2387[label="vwx90",fontsize=16,color="green",shape="box"];2388[label="vwx100",fontsize=16,color="green",shape="box"];2389 -> 2487[label="",style="dashed", color="red", weight=0]; 2389[label="primCompAux vwx90 vwx100 (compare vwx91 vwx101)",fontsize=16,color="magenta"];2389 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2390[label="GT",fontsize=16,color="green",shape="box"];2391[label="LT",fontsize=16,color="green",shape="box"];2392[label="EQ",fontsize=16,color="green",shape="box"];2393[label="primCmpDouble (Double vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3353[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2393 -> 3353[label="",style="solid", color="burlywood", weight=9]; 3353 -> 2489[label="",style="solid", color="burlywood", weight=3]; 2394[label="primCmpDouble (Double vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3354[label="vwx10/Double vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2394 -> 3354[label="",style="solid", color="burlywood", weight=9]; 3354 -> 2490[label="",style="solid", color="burlywood", weight=3]; 2395[label="primCmpFloat (Float vwx90 (Pos vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3355[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2395 -> 3355[label="",style="solid", color="burlywood", weight=9]; 3355 -> 2491[label="",style="solid", color="burlywood", weight=3]; 2396[label="primCmpFloat (Float vwx90 (Neg vwx910)) vwx10",fontsize=16,color="burlywood",shape="box"];3356[label="vwx10/Float vwx100 vwx101",fontsize=10,color="white",style="solid",shape="box"];2396 -> 3356[label="",style="solid", color="burlywood", weight=9]; 3356 -> 2492[label="",style="solid", color="burlywood", weight=3]; 1330 -> 1430[label="",style="dashed", color="red", weight=0]; 1330[label="primPlusNat (primMulNat vwx30000 (Succ vwx40100)) (Succ vwx40100)",fontsize=16,color="magenta"];1330 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1331[label="Zero",fontsize=16,color="green",shape="box"];1332[label="Zero",fontsize=16,color="green",shape="box"];1333[label="Zero",fontsize=16,color="green",shape="box"];2397[label="primCmpInt (Pos (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];2397 -> 2493[label="",style="solid", color="black", weight=3]; 2398[label="primCmpInt (Pos (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];2398 -> 2494[label="",style="solid", color="black", weight=3]; 2399[label="primCmpInt (Pos Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];3357[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3357[label="",style="solid", color="burlywood", weight=9]; 3357 -> 2495[label="",style="solid", color="burlywood", weight=3]; 3358[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2399 -> 3358[label="",style="solid", color="burlywood", weight=9]; 3358 -> 2496[label="",style="solid", color="burlywood", weight=3]; 2400[label="primCmpInt (Pos Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];3359[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3359[label="",style="solid", color="burlywood", weight=9]; 3359 -> 2497[label="",style="solid", color="burlywood", weight=3]; 3360[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2400 -> 3360[label="",style="solid", color="burlywood", weight=9]; 3360 -> 2498[label="",style="solid", color="burlywood", weight=3]; 2401[label="primCmpInt (Neg (Succ vwx900)) (Pos vwx100)",fontsize=16,color="black",shape="box"];2401 -> 2499[label="",style="solid", color="black", weight=3]; 2402[label="primCmpInt (Neg (Succ vwx900)) (Neg vwx100)",fontsize=16,color="black",shape="box"];2402 -> 2500[label="",style="solid", color="black", weight=3]; 2403[label="primCmpInt (Neg Zero) (Pos vwx100)",fontsize=16,color="burlywood",shape="box"];3361[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3361[label="",style="solid", color="burlywood", weight=9]; 3361 -> 2501[label="",style="solid", color="burlywood", weight=3]; 3362[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2403 -> 3362[label="",style="solid", color="burlywood", weight=9]; 3362 -> 2502[label="",style="solid", color="burlywood", weight=3]; 2404[label="primCmpInt (Neg Zero) (Neg vwx100)",fontsize=16,color="burlywood",shape="box"];3363[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2404 -> 3363[label="",style="solid", color="burlywood", weight=9]; 3363 -> 2503[label="",style="solid", color="burlywood", weight=3]; 3364[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2404 -> 3364[label="",style="solid", color="burlywood", weight=9]; 3364 -> 2504[label="",style="solid", color="burlywood", weight=3]; 2405[label="vwx100",fontsize=16,color="green",shape="box"];2406[label="vwx90",fontsize=16,color="green",shape="box"];2407[label="vwx100",fontsize=16,color="green",shape="box"];2408[label="vwx90",fontsize=16,color="green",shape="box"];2409[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2409 -> 2505[label="",style="solid", color="black", weight=3]; 2410[label="vwx100",fontsize=16,color="green",shape="box"];2411[label="vwx90",fontsize=16,color="green",shape="box"];2412[label="vwx100",fontsize=16,color="green",shape="box"];2413[label="vwx90",fontsize=16,color="green",shape="box"];2414[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2414 -> 2506[label="",style="solid", color="black", weight=3]; 2415[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2415 -> 2507[label="",style="solid", color="black", weight=3]; 2416[label="vwx100",fontsize=16,color="green",shape="box"];2417[label="vwx90",fontsize=16,color="green",shape="box"];2418[label="vwx100",fontsize=16,color="green",shape="box"];2419[label="vwx90",fontsize=16,color="green",shape="box"];2420[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2420 -> 2508[label="",style="solid", color="black", weight=3]; 2421[label="vwx100",fontsize=16,color="green",shape="box"];2422[label="vwx90",fontsize=16,color="green",shape="box"];2423[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2423 -> 2509[label="",style="solid", color="black", weight=3]; 2424[label="vwx100",fontsize=16,color="green",shape="box"];2425[label="vwx90",fontsize=16,color="green",shape="box"];2426[label="vwx100",fontsize=16,color="green",shape="box"];2427[label="vwx90",fontsize=16,color="green",shape="box"];2428[label="primCmpNat vwx90 vwx100",fontsize=16,color="burlywood",shape="triangle"];3365[label="vwx90/Succ vwx900",fontsize=10,color="white",style="solid",shape="box"];2428 -> 3365[label="",style="solid", color="burlywood", weight=9]; 3365 -> 2510[label="",style="solid", color="burlywood", weight=3]; 3366[label="vwx90/Zero",fontsize=10,color="white",style="solid",shape="box"];2428 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 2511[label="",style="solid", color="burlywood", weight=3]; 2429 -> 1951[label="",style="dashed", color="red", weight=0]; 2429[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];2429 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1957[label="",style="dashed", color="red", weight=0]; 2430[label="compare (vwx90 * vwx101) (vwx100 * vwx91)",fontsize=16,color="magenta"];2430 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2431[label="vwx101",fontsize=16,color="green",shape="box"];2432[label="vwx91",fontsize=16,color="green",shape="box"];2433[label="vwx91",fontsize=16,color="green",shape="box"];2434[label="vwx101",fontsize=16,color="green",shape="box"];2435[label="vwx101",fontsize=16,color="green",shape="box"];2436[label="vwx91",fontsize=16,color="green",shape="box"];2437[label="vwx101",fontsize=16,color="green",shape="box"];2438[label="vwx91",fontsize=16,color="green",shape="box"];2439[label="vwx101",fontsize=16,color="green",shape="box"];2440[label="vwx91",fontsize=16,color="green",shape="box"];2441[label="vwx101",fontsize=16,color="green",shape="box"];2442[label="vwx91",fontsize=16,color="green",shape="box"];2443[label="vwx101",fontsize=16,color="green",shape="box"];2444[label="vwx91",fontsize=16,color="green",shape="box"];2445[label="vwx101",fontsize=16,color="green",shape="box"];2446[label="vwx91",fontsize=16,color="green",shape="box"];2447[label="vwx101",fontsize=16,color="green",shape="box"];2448[label="vwx91",fontsize=16,color="green",shape="box"];2449[label="vwx101",fontsize=16,color="green",shape="box"];2450[label="vwx91",fontsize=16,color="green",shape="box"];2451[label="vwx101",fontsize=16,color="green",shape="box"];2452[label="vwx91",fontsize=16,color="green",shape="box"];2453[label="vwx101",fontsize=16,color="green",shape="box"];2454[label="vwx91",fontsize=16,color="green",shape="box"];2455[label="vwx101",fontsize=16,color="green",shape="box"];2456[label="vwx91",fontsize=16,color="green",shape="box"];2457[label="vwx101",fontsize=16,color="green",shape="box"];2458[label="vwx91",fontsize=16,color="green",shape="box"];2459 -> 1811[label="",style="dashed", color="red", weight=0]; 2459[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2459 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1812[label="",style="dashed", color="red", weight=0]; 2460[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2460 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1813[label="",style="dashed", color="red", weight=0]; 2461[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2461 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1814[label="",style="dashed", color="red", weight=0]; 2462[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2462 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1815[label="",style="dashed", color="red", weight=0]; 2463[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2463 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1816[label="",style="dashed", color="red", weight=0]; 2464[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2464 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1817[label="",style="dashed", color="red", weight=0]; 2465[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2465 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1818[label="",style="dashed", color="red", weight=0]; 2466[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2466 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1819[label="",style="dashed", color="red", weight=0]; 2467[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2467 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1820[label="",style="dashed", color="red", weight=0]; 2468[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2468 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1821[label="",style="dashed", color="red", weight=0]; 2469[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2469 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1822[label="",style="dashed", color="red", weight=0]; 2470[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2470 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2471 -> 1823[label="",style="dashed", color="red", weight=0]; 2471[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2471 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2472 -> 1824[label="",style="dashed", color="red", weight=0]; 2472[label="vwx92 <= vwx102",fontsize=16,color="magenta"];2472 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2473 -> 28[label="",style="dashed", color="red", weight=0]; 2473[label="vwx91 == vwx101",fontsize=16,color="magenta"];2473 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2474 -> 30[label="",style="dashed", color="red", weight=0]; 2474[label="vwx91 == vwx101",fontsize=16,color="magenta"];2474 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2475 -> 35[label="",style="dashed", color="red", weight=0]; 2475[label="vwx91 == vwx101",fontsize=16,color="magenta"];2475 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2476 -> 37[label="",style="dashed", color="red", weight=0]; 2476[label="vwx91 == vwx101",fontsize=16,color="magenta"];2476 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2477 -> 41[label="",style="dashed", color="red", weight=0]; 2477[label="vwx91 == vwx101",fontsize=16,color="magenta"];2477 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2478 -> 36[label="",style="dashed", color="red", weight=0]; 2478[label="vwx91 == vwx101",fontsize=16,color="magenta"];2478 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2479 -> 33[label="",style="dashed", color="red", weight=0]; 2479[label="vwx91 == vwx101",fontsize=16,color="magenta"];2479 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2480 -> 40[label="",style="dashed", color="red", weight=0]; 2480[label="vwx91 == vwx101",fontsize=16,color="magenta"];2480 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2481 -> 34[label="",style="dashed", color="red", weight=0]; 2481[label="vwx91 == vwx101",fontsize=16,color="magenta"];2481 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2482 -> 39[label="",style="dashed", color="red", weight=0]; 2482[label="vwx91 == vwx101",fontsize=16,color="magenta"];2482 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2483 -> 31[label="",style="dashed", color="red", weight=0]; 2483[label="vwx91 == vwx101",fontsize=16,color="magenta"];2483 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2484 -> 32[label="",style="dashed", color="red", weight=0]; 2484[label="vwx91 == vwx101",fontsize=16,color="magenta"];2484 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2485 -> 38[label="",style="dashed", color="red", weight=0]; 2485[label="vwx91 == vwx101",fontsize=16,color="magenta"];2485 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2486 -> 29[label="",style="dashed", color="red", weight=0]; 2486[label="vwx91 == vwx101",fontsize=16,color="magenta"];2486 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2488 -> 1963[label="",style="dashed", color="red", weight=0]; 2488[label="compare vwx91 vwx101",fontsize=16,color="magenta"];2488 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2487[label="primCompAux vwx90 vwx100 vwx72",fontsize=16,color="black",shape="triangle"];2487 -> 2574[label="",style="solid", color="black", weight=3]; 2489[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3367[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2489 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 2575[label="",style="solid", color="burlywood", weight=3]; 3368[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2489 -> 3368[label="",style="solid", color="burlywood", weight=9]; 3368 -> 2576[label="",style="solid", color="burlywood", weight=3]; 2490[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3369[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3369[label="",style="solid", color="burlywood", weight=9]; 3369 -> 2577[label="",style="solid", color="burlywood", weight=3]; 3370[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2490 -> 3370[label="",style="solid", color="burlywood", weight=9]; 3370 -> 2578[label="",style="solid", color="burlywood", weight=3]; 2491[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3371[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3371[label="",style="solid", color="burlywood", weight=9]; 3371 -> 2579[label="",style="solid", color="burlywood", weight=3]; 3372[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2491 -> 3372[label="",style="solid", color="burlywood", weight=9]; 3372 -> 2580[label="",style="solid", color="burlywood", weight=3]; 2492[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 vwx101)",fontsize=16,color="burlywood",shape="box"];3373[label="vwx101/Pos vwx1010",fontsize=10,color="white",style="solid",shape="box"];2492 -> 3373[label="",style="solid", color="burlywood", weight=9]; 3373 -> 2581[label="",style="solid", color="burlywood", weight=3]; 3374[label="vwx101/Neg vwx1010",fontsize=10,color="white",style="solid",shape="box"];2492 -> 3374[label="",style="solid", color="burlywood", weight=9]; 3374 -> 2582[label="",style="solid", color="burlywood", weight=3]; 1431 -> 935[label="",style="dashed", color="red", weight=0]; 1431[label="primMulNat vwx30000 (Succ vwx40100)",fontsize=16,color="magenta"];1431 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1430[label="primPlusNat vwx47 (Succ vwx40100)",fontsize=16,color="burlywood",shape="triangle"];3375[label="vwx47/Succ vwx470",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3375[label="",style="solid", color="burlywood", weight=9]; 3375 -> 1524[label="",style="solid", color="burlywood", weight=3]; 3376[label="vwx47/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 3376[label="",style="solid", color="burlywood", weight=9]; 3376 -> 1525[label="",style="solid", color="burlywood", weight=3]; 2493 -> 2428[label="",style="dashed", color="red", weight=0]; 2493[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="magenta"];2493 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2494[label="GT",fontsize=16,color="green",shape="box"];2495[label="primCmpInt (Pos Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];2495 -> 2585[label="",style="solid", color="black", weight=3]; 2496[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2496 -> 2586[label="",style="solid", color="black", weight=3]; 2497[label="primCmpInt (Pos Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];2497 -> 2587[label="",style="solid", color="black", weight=3]; 2498[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2498 -> 2588[label="",style="solid", color="black", weight=3]; 2499[label="LT",fontsize=16,color="green",shape="box"];2500 -> 2428[label="",style="dashed", color="red", weight=0]; 2500[label="primCmpNat vwx100 (Succ vwx900)",fontsize=16,color="magenta"];2500 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2501[label="primCmpInt (Neg Zero) (Pos (Succ vwx1000))",fontsize=16,color="black",shape="box"];2501 -> 2591[label="",style="solid", color="black", weight=3]; 2502[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2502 -> 2592[label="",style="solid", color="black", weight=3]; 2503[label="primCmpInt (Neg Zero) (Neg (Succ vwx1000))",fontsize=16,color="black",shape="box"];2503 -> 2593[label="",style="solid", color="black", weight=3]; 2504[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2504 -> 2594[label="",style="solid", color="black", weight=3]; 2505 -> 2595[label="",style="dashed", color="red", weight=0]; 2505[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2505 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2506 -> 2597[label="",style="dashed", color="red", weight=0]; 2506[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2506 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2599[label="",style="dashed", color="red", weight=0]; 2507[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2507 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2601[label="",style="dashed", color="red", weight=0]; 2508[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2508 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2603[label="",style="dashed", color="red", weight=0]; 2509[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2509 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2510[label="primCmpNat (Succ vwx900) vwx100",fontsize=16,color="burlywood",shape="box"];3377[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3377[label="",style="solid", color="burlywood", weight=9]; 3377 -> 2605[label="",style="solid", color="burlywood", weight=3]; 3378[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2510 -> 3378[label="",style="solid", color="burlywood", weight=9]; 3378 -> 2606[label="",style="solid", color="burlywood", weight=3]; 2511[label="primCmpNat Zero vwx100",fontsize=16,color="burlywood",shape="box"];3379[label="vwx100/Succ vwx1000",fontsize=10,color="white",style="solid",shape="box"];2511 -> 3379[label="",style="solid", color="burlywood", weight=9]; 3379 -> 2607[label="",style="solid", color="burlywood", weight=3]; 3380[label="vwx100/Zero",fontsize=10,color="white",style="solid",shape="box"];2511 -> 3380[label="",style="solid", color="burlywood", weight=9]; 3380 -> 2608[label="",style="solid", color="burlywood", weight=3]; 2512 -> 304[label="",style="dashed", color="red", weight=0]; 2512[label="vwx100 * vwx91",fontsize=16,color="magenta"];2512 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2513 -> 304[label="",style="dashed", color="red", weight=0]; 2513[label="vwx90 * vwx101",fontsize=16,color="magenta"];2513 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2514[label="vwx100 * vwx91",fontsize=16,color="burlywood",shape="triangle"];3381[label="vwx100/Integer vwx1000",fontsize=10,color="white",style="solid",shape="box"];2514 -> 3381[label="",style="solid", color="burlywood", weight=9]; 3381 -> 2613[label="",style="solid", color="burlywood", weight=3]; 2515 -> 2514[label="",style="dashed", color="red", weight=0]; 2515[label="vwx90 * vwx101",fontsize=16,color="magenta"];2515 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2516[label="vwx102",fontsize=16,color="green",shape="box"];2517[label="vwx92",fontsize=16,color="green",shape="box"];2518[label="vwx102",fontsize=16,color="green",shape="box"];2519[label="vwx92",fontsize=16,color="green",shape="box"];2520[label="vwx102",fontsize=16,color="green",shape="box"];2521[label="vwx92",fontsize=16,color="green",shape="box"];2522[label="vwx102",fontsize=16,color="green",shape="box"];2523[label="vwx92",fontsize=16,color="green",shape="box"];2524[label="vwx102",fontsize=16,color="green",shape="box"];2525[label="vwx92",fontsize=16,color="green",shape="box"];2526[label="vwx102",fontsize=16,color="green",shape="box"];2527[label="vwx92",fontsize=16,color="green",shape="box"];2528[label="vwx102",fontsize=16,color="green",shape="box"];2529[label="vwx92",fontsize=16,color="green",shape="box"];2530[label="vwx102",fontsize=16,color="green",shape="box"];2531[label="vwx92",fontsize=16,color="green",shape="box"];2532[label="vwx102",fontsize=16,color="green",shape="box"];2533[label="vwx92",fontsize=16,color="green",shape="box"];2534[label="vwx102",fontsize=16,color="green",shape="box"];2535[label="vwx92",fontsize=16,color="green",shape="box"];2536[label="vwx102",fontsize=16,color="green",shape="box"];2537[label="vwx92",fontsize=16,color="green",shape="box"];2538[label="vwx102",fontsize=16,color="green",shape="box"];2539[label="vwx92",fontsize=16,color="green",shape="box"];2540[label="vwx102",fontsize=16,color="green",shape="box"];2541[label="vwx92",fontsize=16,color="green",shape="box"];2542[label="vwx102",fontsize=16,color="green",shape="box"];2543[label="vwx92",fontsize=16,color="green",shape="box"];2544[label="vwx91",fontsize=16,color="green",shape="box"];2545[label="vwx101",fontsize=16,color="green",shape="box"];2546[label="vwx91",fontsize=16,color="green",shape="box"];2547[label="vwx101",fontsize=16,color="green",shape="box"];2548[label="vwx91",fontsize=16,color="green",shape="box"];2549[label="vwx101",fontsize=16,color="green",shape="box"];2550[label="vwx91",fontsize=16,color="green",shape="box"];2551[label="vwx101",fontsize=16,color="green",shape="box"];2552[label="vwx91",fontsize=16,color="green",shape="box"];2553[label="vwx101",fontsize=16,color="green",shape="box"];2554[label="vwx91",fontsize=16,color="green",shape="box"];2555[label="vwx101",fontsize=16,color="green",shape="box"];2556[label="vwx91",fontsize=16,color="green",shape="box"];2557[label="vwx101",fontsize=16,color="green",shape="box"];2558[label="vwx91",fontsize=16,color="green",shape="box"];2559[label="vwx101",fontsize=16,color="green",shape="box"];2560[label="vwx91",fontsize=16,color="green",shape="box"];2561[label="vwx101",fontsize=16,color="green",shape="box"];2562[label="vwx91",fontsize=16,color="green",shape="box"];2563[label="vwx101",fontsize=16,color="green",shape="box"];2564[label="vwx91",fontsize=16,color="green",shape="box"];2565[label="vwx101",fontsize=16,color="green",shape="box"];2566[label="vwx91",fontsize=16,color="green",shape="box"];2567[label="vwx101",fontsize=16,color="green",shape="box"];2568[label="vwx91",fontsize=16,color="green",shape="box"];2569[label="vwx101",fontsize=16,color="green",shape="box"];2570[label="vwx91",fontsize=16,color="green",shape="box"];2571[label="vwx101",fontsize=16,color="green",shape="box"];2572[label="vwx101",fontsize=16,color="green",shape="box"];2573[label="vwx91",fontsize=16,color="green",shape="box"];2574 -> 2616[label="",style="dashed", color="red", weight=0]; 2574[label="primCompAux0 vwx72 (compare vwx90 vwx100)",fontsize=16,color="magenta"];2574 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2575[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2575 -> 2619[label="",style="solid", color="black", weight=3]; 2576[label="primCmpDouble (Double vwx90 (Pos vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2576 -> 2620[label="",style="solid", color="black", weight=3]; 2577[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2577 -> 2621[label="",style="solid", color="black", weight=3]; 2578[label="primCmpDouble (Double vwx90 (Neg vwx910)) (Double vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2578 -> 2622[label="",style="solid", color="black", weight=3]; 2579[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2579 -> 2623[label="",style="solid", color="black", weight=3]; 2580[label="primCmpFloat (Float vwx90 (Pos vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2580 -> 2624[label="",style="solid", color="black", weight=3]; 2581[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Pos vwx1010))",fontsize=16,color="black",shape="box"];2581 -> 2625[label="",style="solid", color="black", weight=3]; 2582[label="primCmpFloat (Float vwx90 (Neg vwx910)) (Float vwx100 (Neg vwx1010))",fontsize=16,color="black",shape="box"];2582 -> 2626[label="",style="solid", color="black", weight=3]; 1522[label="vwx30000",fontsize=16,color="green",shape="box"];1523[label="Succ vwx40100",fontsize=16,color="green",shape="box"];1524[label="primPlusNat (Succ vwx470) (Succ vwx40100)",fontsize=16,color="black",shape="box"];1524 -> 1570[label="",style="solid", color="black", weight=3]; 1525[label="primPlusNat Zero (Succ vwx40100)",fontsize=16,color="black",shape="box"];1525 -> 1571[label="",style="solid", color="black", weight=3]; 2583[label="vwx100",fontsize=16,color="green",shape="box"];2584[label="Succ vwx900",fontsize=16,color="green",shape="box"];2585 -> 2428[label="",style="dashed", color="red", weight=0]; 2585[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="magenta"];2585 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2586[label="EQ",fontsize=16,color="green",shape="box"];2587[label="GT",fontsize=16,color="green",shape="box"];2588[label="EQ",fontsize=16,color="green",shape="box"];2589[label="Succ vwx900",fontsize=16,color="green",shape="box"];2590[label="vwx100",fontsize=16,color="green",shape="box"];2591[label="LT",fontsize=16,color="green",shape="box"];2592[label="EQ",fontsize=16,color="green",shape="box"];2593 -> 2428[label="",style="dashed", color="red", weight=0]; 2593[label="primCmpNat (Succ vwx1000) Zero",fontsize=16,color="magenta"];2593 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2593 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2594[label="EQ",fontsize=16,color="green",shape="box"];2596 -> 35[label="",style="dashed", color="red", weight=0]; 2596[label="vwx90 == vwx100",fontsize=16,color="magenta"];2596 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2596 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2595[label="compare2 vwx90 vwx100 vwx73",fontsize=16,color="burlywood",shape="triangle"];3382[label="vwx73/False",fontsize=10,color="white",style="solid",shape="box"];2595 -> 3382[label="",style="solid", color="burlywood", weight=9]; 3382 -> 2633[label="",style="solid", color="burlywood", weight=3]; 3383[label="vwx73/True",fontsize=10,color="white",style="solid",shape="box"];2595 -> 3383[label="",style="solid", color="burlywood", weight=9]; 3383 -> 2634[label="",style="solid", color="burlywood", weight=3]; 2598 -> 36[label="",style="dashed", color="red", weight=0]; 2598[label="vwx90 == vwx100",fontsize=16,color="magenta"];2598 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2598 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2597[label="compare2 vwx90 vwx100 vwx74",fontsize=16,color="burlywood",shape="triangle"];3384[label="vwx74/False",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3384[label="",style="solid", color="burlywood", weight=9]; 3384 -> 2637[label="",style="solid", color="burlywood", weight=3]; 3385[label="vwx74/True",fontsize=10,color="white",style="solid",shape="box"];2597 -> 3385[label="",style="solid", color="burlywood", weight=9]; 3385 -> 2638[label="",style="solid", color="burlywood", weight=3]; 2600 -> 33[label="",style="dashed", color="red", weight=0]; 2600[label="vwx90 == vwx100",fontsize=16,color="magenta"];2600 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2600 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2599[label="compare2 vwx90 vwx100 vwx75",fontsize=16,color="burlywood",shape="triangle"];3386[label="vwx75/False",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3386[label="",style="solid", color="burlywood", weight=9]; 3386 -> 2641[label="",style="solid", color="burlywood", weight=3]; 3387[label="vwx75/True",fontsize=10,color="white",style="solid",shape="box"];2599 -> 3387[label="",style="solid", color="burlywood", weight=9]; 3387 -> 2642[label="",style="solid", color="burlywood", weight=3]; 2602 -> 39[label="",style="dashed", color="red", weight=0]; 2602[label="vwx90 == vwx100",fontsize=16,color="magenta"];2602 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2602 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2601[label="compare2 vwx90 vwx100 vwx76",fontsize=16,color="burlywood",shape="triangle"];3388[label="vwx76/False",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3388[label="",style="solid", color="burlywood", weight=9]; 3388 -> 2645[label="",style="solid", color="burlywood", weight=3]; 3389[label="vwx76/True",fontsize=10,color="white",style="solid",shape="box"];2601 -> 3389[label="",style="solid", color="burlywood", weight=9]; 3389 -> 2646[label="",style="solid", color="burlywood", weight=3]; 2604 -> 32[label="",style="dashed", color="red", weight=0]; 2604[label="vwx90 == vwx100",fontsize=16,color="magenta"];2604 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2604 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2603[label="compare2 vwx90 vwx100 vwx77",fontsize=16,color="burlywood",shape="triangle"];3390[label="vwx77/False",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3390[label="",style="solid", color="burlywood", weight=9]; 3390 -> 2649[label="",style="solid", color="burlywood", weight=3]; 3391[label="vwx77/True",fontsize=10,color="white",style="solid",shape="box"];2603 -> 3391[label="",style="solid", color="burlywood", weight=9]; 3391 -> 2650[label="",style="solid", color="burlywood", weight=3]; 2605[label="primCmpNat (Succ vwx900) (Succ vwx1000)",fontsize=16,color="black",shape="box"];2605 -> 2651[label="",style="solid", color="black", weight=3]; 2606[label="primCmpNat (Succ vwx900) Zero",fontsize=16,color="black",shape="box"];2606 -> 2652[label="",style="solid", color="black", weight=3]; 2607[label="primCmpNat Zero (Succ vwx1000)",fontsize=16,color="black",shape="box"];2607 -> 2653[label="",style="solid", color="black", weight=3]; 2608[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2608 -> 2654[label="",style="solid", color="black", weight=3]; 2609[label="vwx100",fontsize=16,color="green",shape="box"];2610[label="vwx91",fontsize=16,color="green",shape="box"];2611[label="vwx90",fontsize=16,color="green",shape="box"];2612[label="vwx101",fontsize=16,color="green",shape="box"];2613[label="Integer vwx1000 * vwx91",fontsize=16,color="burlywood",shape="box"];3392[label="vwx91/Integer vwx910",fontsize=10,color="white",style="solid",shape="box"];2613 -> 3392[label="",style="solid", color="burlywood", weight=9]; 3392 -> 2655[label="",style="solid", color="burlywood", weight=3]; 2614[label="vwx101",fontsize=16,color="green",shape="box"];2615[label="vwx90",fontsize=16,color="green",shape="box"];2617[label="vwx72",fontsize=16,color="green",shape="box"];2618[label="compare vwx90 vwx100",fontsize=16,color="blue",shape="box"];3393[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 2656[label="",style="solid", color="blue", weight=3]; 3394[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 2657[label="",style="solid", color="blue", weight=3]; 3395[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 2658[label="",style="solid", color="blue", weight=3]; 3396[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 2659[label="",style="solid", color="blue", weight=3]; 3397[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 2660[label="",style="solid", color="blue", weight=3]; 3398[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 2661[label="",style="solid", color="blue", weight=3]; 3399[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 2662[label="",style="solid", color="blue", weight=3]; 3400[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 2663[label="",style="solid", color="blue", weight=3]; 3401[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 2664[label="",style="solid", color="blue", weight=3]; 3402[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 2665[label="",style="solid", color="blue", weight=3]; 3403[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 2666[label="",style="solid", color="blue", weight=3]; 3404[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 2667[label="",style="solid", color="blue", weight=3]; 3405[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 2668[label="",style="solid", color="blue", weight=3]; 3406[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2618 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 2669[label="",style="solid", color="blue", weight=3]; 2616[label="primCompAux0 vwx81 vwx82",fontsize=16,color="burlywood",shape="triangle"];3407[label="vwx82/LT",fontsize=10,color="white",style="solid",shape="box"];2616 -> 3407[label="",style="solid", color="burlywood", weight=9]; 3407 -> 2670[label="",style="solid", color="burlywood", weight=3]; 3408[label="vwx82/EQ",fontsize=10,color="white",style="solid",shape="box"];2616 -> 3408[label="",style="solid", color="burlywood", weight=9]; 3408 -> 2671[label="",style="solid", color="burlywood", weight=3]; 3409[label="vwx82/GT",fontsize=10,color="white",style="solid",shape="box"];2616 -> 3409[label="",style="solid", color="burlywood", weight=9]; 3409 -> 2672[label="",style="solid", color="burlywood", weight=3]; 2619 -> 1951[label="",style="dashed", color="red", weight=0]; 2619[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2619 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2620 -> 1951[label="",style="dashed", color="red", weight=0]; 2620[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2620 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2621 -> 1951[label="",style="dashed", color="red", weight=0]; 2621[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2621 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2622 -> 1951[label="",style="dashed", color="red", weight=0]; 2622[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2622 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2623 -> 1951[label="",style="dashed", color="red", weight=0]; 2623[label="compare (vwx90 * Pos vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2623 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2624 -> 1951[label="",style="dashed", color="red", weight=0]; 2624[label="compare (vwx90 * Pos vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2624 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2625 -> 1951[label="",style="dashed", color="red", weight=0]; 2625[label="compare (vwx90 * Neg vwx1010) (Pos vwx910 * vwx100)",fontsize=16,color="magenta"];2625 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2626 -> 1951[label="",style="dashed", color="red", weight=0]; 2626[label="compare (vwx90 * Neg vwx1010) (Neg vwx910 * vwx100)",fontsize=16,color="magenta"];2626 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2688[label="",style="dashed", color="magenta", weight=3]; 1570[label="Succ (Succ (primPlusNat vwx470 vwx40100))",fontsize=16,color="green",shape="box"];1570 -> 1634[label="",style="dashed", color="green", weight=3]; 1571[label="Succ vwx40100",fontsize=16,color="green",shape="box"];2627[label="Succ vwx1000",fontsize=16,color="green",shape="box"];2628[label="Zero",fontsize=16,color="green",shape="box"];2629[label="Zero",fontsize=16,color="green",shape="box"];2630[label="Succ vwx1000",fontsize=16,color="green",shape="box"];2631[label="vwx90",fontsize=16,color="green",shape="box"];2632[label="vwx100",fontsize=16,color="green",shape="box"];2633[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2633 -> 2689[label="",style="solid", color="black", weight=3]; 2634[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2634 -> 2690[label="",style="solid", color="black", weight=3]; 2635[label="vwx90",fontsize=16,color="green",shape="box"];2636[label="vwx100",fontsize=16,color="green",shape="box"];2637[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2637 -> 2691[label="",style="solid", color="black", weight=3]; 2638[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2638 -> 2692[label="",style="solid", color="black", weight=3]; 2639[label="vwx90",fontsize=16,color="green",shape="box"];2640[label="vwx100",fontsize=16,color="green",shape="box"];2641[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2641 -> 2693[label="",style="solid", color="black", weight=3]; 2642[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2642 -> 2694[label="",style="solid", color="black", weight=3]; 2643[label="vwx90",fontsize=16,color="green",shape="box"];2644[label="vwx100",fontsize=16,color="green",shape="box"];2645[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2645 -> 2695[label="",style="solid", color="black", weight=3]; 2646[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2646 -> 2696[label="",style="solid", color="black", weight=3]; 2647[label="vwx90",fontsize=16,color="green",shape="box"];2648[label="vwx100",fontsize=16,color="green",shape="box"];2649[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2649 -> 2697[label="",style="solid", color="black", weight=3]; 2650[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2650 -> 2698[label="",style="solid", color="black", weight=3]; 2651 -> 2428[label="",style="dashed", color="red", weight=0]; 2651[label="primCmpNat vwx900 vwx1000",fontsize=16,color="magenta"];2651 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2652[label="GT",fontsize=16,color="green",shape="box"];2653[label="LT",fontsize=16,color="green",shape="box"];2654[label="EQ",fontsize=16,color="green",shape="box"];2655[label="Integer vwx1000 * Integer vwx910",fontsize=16,color="black",shape="box"];2655 -> 2701[label="",style="solid", color="black", weight=3]; 2656 -> 1951[label="",style="dashed", color="red", weight=0]; 2656[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2656 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2656 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2657[label="compare vwx90 vwx100",fontsize=16,color="black",shape="box"];2657 -> 2704[label="",style="solid", color="black", weight=3]; 2658 -> 2263[label="",style="dashed", color="red", weight=0]; 2658[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2658 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2658 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2659 -> 1955[label="",style="dashed", color="red", weight=0]; 2659[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2659 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2659 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2660 -> 1957[label="",style="dashed", color="red", weight=0]; 2660[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2660 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2660 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2269[label="",style="dashed", color="red", weight=0]; 2661[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2661 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2661 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2271[label="",style="dashed", color="red", weight=0]; 2662[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2662 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2662 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2663 -> 1959[label="",style="dashed", color="red", weight=0]; 2663[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2663 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2663 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2664 -> 1961[label="",style="dashed", color="red", weight=0]; 2664[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2664 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2664 -> 2718[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2277[label="",style="dashed", color="red", weight=0]; 2665[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2665 -> 2719[label="",style="dashed", color="magenta", weight=3]; 2665 -> 2720[label="",style="dashed", color="magenta", weight=3]; 2666 -> 1963[label="",style="dashed", color="red", weight=0]; 2666[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2666 -> 2721[label="",style="dashed", color="magenta", weight=3]; 2666 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2281[label="",style="dashed", color="red", weight=0]; 2667[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2667 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2667 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2668 -> 1965[label="",style="dashed", color="red", weight=0]; 2668[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2668 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2668 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2669 -> 1967[label="",style="dashed", color="red", weight=0]; 2669[label="compare vwx90 vwx100",fontsize=16,color="magenta"];2669 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2669 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2670[label="primCompAux0 vwx81 LT",fontsize=16,color="black",shape="box"];2670 -> 2729[label="",style="solid", color="black", weight=3]; 2671[label="primCompAux0 vwx81 EQ",fontsize=16,color="black",shape="box"];2671 -> 2730[label="",style="solid", color="black", weight=3]; 2672[label="primCompAux0 vwx81 GT",fontsize=16,color="black",shape="box"];2672 -> 2731[label="",style="solid", color="black", weight=3]; 2673 -> 304[label="",style="dashed", color="red", weight=0]; 2673[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2673 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2673 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2674 -> 304[label="",style="dashed", color="red", weight=0]; 2674[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2674 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2674 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2675 -> 304[label="",style="dashed", color="red", weight=0]; 2675[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2675 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2675 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2676 -> 304[label="",style="dashed", color="red", weight=0]; 2676[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2676 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2676 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2677 -> 304[label="",style="dashed", color="red", weight=0]; 2677[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2677 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2677 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2678 -> 304[label="",style="dashed", color="red", weight=0]; 2678[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2678 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2678 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2679 -> 304[label="",style="dashed", color="red", weight=0]; 2679[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2679 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2679 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2680 -> 304[label="",style="dashed", color="red", weight=0]; 2680[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2680 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2680 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2681 -> 304[label="",style="dashed", color="red", weight=0]; 2681[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2681 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2681 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2682 -> 304[label="",style="dashed", color="red", weight=0]; 2682[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2682 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2682 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2683 -> 304[label="",style="dashed", color="red", weight=0]; 2683[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2683 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2684 -> 304[label="",style="dashed", color="red", weight=0]; 2684[label="vwx90 * Pos vwx1010",fontsize=16,color="magenta"];2684 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2685 -> 304[label="",style="dashed", color="red", weight=0]; 2685[label="Pos vwx910 * vwx100",fontsize=16,color="magenta"];2685 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2686 -> 304[label="",style="dashed", color="red", weight=0]; 2686[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2686 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2687 -> 304[label="",style="dashed", color="red", weight=0]; 2687[label="Neg vwx910 * vwx100",fontsize=16,color="magenta"];2687 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2688 -> 304[label="",style="dashed", color="red", weight=0]; 2688[label="vwx90 * Neg vwx1010",fontsize=16,color="magenta"];2688 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2763[label="",style="dashed", color="magenta", weight=3]; 1634[label="primPlusNat vwx470 vwx40100",fontsize=16,color="burlywood",shape="triangle"];3410[label="vwx470/Succ vwx4700",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3410[label="",style="solid", color="burlywood", weight=9]; 3410 -> 1710[label="",style="solid", color="burlywood", weight=3]; 3411[label="vwx470/Zero",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3411[label="",style="solid", color="burlywood", weight=9]; 3411 -> 1711[label="",style="solid", color="burlywood", weight=3]; 2689 -> 2764[label="",style="dashed", color="red", weight=0]; 2689[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2689 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2690[label="EQ",fontsize=16,color="green",shape="box"];2691 -> 2766[label="",style="dashed", color="red", weight=0]; 2691[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2691 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2692[label="EQ",fontsize=16,color="green",shape="box"];2693 -> 2768[label="",style="dashed", color="red", weight=0]; 2693[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2693 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2694[label="EQ",fontsize=16,color="green",shape="box"];2695 -> 2770[label="",style="dashed", color="red", weight=0]; 2695[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2695 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2696[label="EQ",fontsize=16,color="green",shape="box"];2697 -> 2772[label="",style="dashed", color="red", weight=0]; 2697[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2697 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2698[label="EQ",fontsize=16,color="green",shape="box"];2699[label="vwx1000",fontsize=16,color="green",shape="box"];2700[label="vwx900",fontsize=16,color="green",shape="box"];2701[label="Integer (primMulInt vwx1000 vwx910)",fontsize=16,color="green",shape="box"];2701 -> 2774[label="",style="dashed", color="green", weight=3]; 2702[label="vwx100",fontsize=16,color="green",shape="box"];2703[label="vwx90",fontsize=16,color="green",shape="box"];2704[label="compare3 vwx90 vwx100",fontsize=16,color="black",shape="box"];2704 -> 2775[label="",style="solid", color="black", weight=3]; 2705[label="vwx100",fontsize=16,color="green",shape="box"];2706[label="vwx90",fontsize=16,color="green",shape="box"];2707[label="vwx100",fontsize=16,color="green",shape="box"];2708[label="vwx90",fontsize=16,color="green",shape="box"];2709[label="vwx100",fontsize=16,color="green",shape="box"];2710[label="vwx90",fontsize=16,color="green",shape="box"];2711[label="vwx100",fontsize=16,color="green",shape="box"];2712[label="vwx90",fontsize=16,color="green",shape="box"];2713[label="vwx100",fontsize=16,color="green",shape="box"];2714[label="vwx90",fontsize=16,color="green",shape="box"];2715[label="vwx100",fontsize=16,color="green",shape="box"];2716[label="vwx90",fontsize=16,color="green",shape="box"];2717[label="vwx100",fontsize=16,color="green",shape="box"];2718[label="vwx90",fontsize=16,color="green",shape="box"];2719[label="vwx100",fontsize=16,color="green",shape="box"];2720[label="vwx90",fontsize=16,color="green",shape="box"];2721[label="vwx100",fontsize=16,color="green",shape="box"];2722[label="vwx90",fontsize=16,color="green",shape="box"];2723[label="vwx100",fontsize=16,color="green",shape="box"];2724[label="vwx90",fontsize=16,color="green",shape="box"];2725[label="vwx100",fontsize=16,color="green",shape="box"];2726[label="vwx90",fontsize=16,color="green",shape="box"];2727[label="vwx100",fontsize=16,color="green",shape="box"];2728[label="vwx90",fontsize=16,color="green",shape="box"];2729[label="LT",fontsize=16,color="green",shape="box"];2730[label="vwx81",fontsize=16,color="green",shape="box"];2731[label="GT",fontsize=16,color="green",shape="box"];2732[label="Pos vwx910",fontsize=16,color="green",shape="box"];2733[label="vwx100",fontsize=16,color="green",shape="box"];2734[label="vwx90",fontsize=16,color="green",shape="box"];2735[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2736[label="Neg vwx910",fontsize=16,color="green",shape="box"];2737[label="vwx100",fontsize=16,color="green",shape="box"];2738[label="vwx90",fontsize=16,color="green",shape="box"];2739[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2740[label="Pos vwx910",fontsize=16,color="green",shape="box"];2741[label="vwx100",fontsize=16,color="green",shape="box"];2742[label="vwx90",fontsize=16,color="green",shape="box"];2743[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2744[label="Neg vwx910",fontsize=16,color="green",shape="box"];2745[label="vwx100",fontsize=16,color="green",shape="box"];2746[label="vwx90",fontsize=16,color="green",shape="box"];2747[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2748[label="Pos vwx910",fontsize=16,color="green",shape="box"];2749[label="vwx100",fontsize=16,color="green",shape="box"];2750[label="vwx90",fontsize=16,color="green",shape="box"];2751[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2752[label="Neg vwx910",fontsize=16,color="green",shape="box"];2753[label="vwx100",fontsize=16,color="green",shape="box"];2754[label="vwx90",fontsize=16,color="green",shape="box"];2755[label="Pos vwx1010",fontsize=16,color="green",shape="box"];2756[label="Pos vwx910",fontsize=16,color="green",shape="box"];2757[label="vwx100",fontsize=16,color="green",shape="box"];2758[label="vwx90",fontsize=16,color="green",shape="box"];2759[label="Neg vwx1010",fontsize=16,color="green",shape="box"];2760[label="Neg vwx910",fontsize=16,color="green",shape="box"];2761[label="vwx100",fontsize=16,color="green",shape="box"];2762[label="vwx90",fontsize=16,color="green",shape="box"];2763[label="Neg vwx1010",fontsize=16,color="green",shape="box"];1710[label="primPlusNat (Succ vwx4700) vwx40100",fontsize=16,color="burlywood",shape="box"];3412[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3412[label="",style="solid", color="burlywood", weight=9]; 3412 -> 1724[label="",style="solid", color="burlywood", weight=3]; 3413[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1710 -> 3413[label="",style="solid", color="burlywood", weight=9]; 3413 -> 1725[label="",style="solid", color="burlywood", weight=3]; 1711[label="primPlusNat Zero vwx40100",fontsize=16,color="burlywood",shape="box"];3414[label="vwx40100/Succ vwx401000",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3414[label="",style="solid", color="burlywood", weight=9]; 3414 -> 1726[label="",style="solid", color="burlywood", weight=3]; 3415[label="vwx40100/Zero",fontsize=10,color="white",style="solid",shape="box"];1711 -> 3415[label="",style="solid", color="burlywood", weight=9]; 3415 -> 1727[label="",style="solid", color="burlywood", weight=3]; 2765 -> 1813[label="",style="dashed", color="red", weight=0]; 2765[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2765 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2764[label="compare1 vwx90 vwx100 vwx83",fontsize=16,color="burlywood",shape="triangle"];3416[label="vwx83/False",fontsize=10,color="white",style="solid",shape="box"];2764 -> 3416[label="",style="solid", color="burlywood", weight=9]; 3416 -> 2778[label="",style="solid", color="burlywood", weight=3]; 3417[label="vwx83/True",fontsize=10,color="white",style="solid",shape="box"];2764 -> 3417[label="",style="solid", color="burlywood", weight=9]; 3417 -> 2779[label="",style="solid", color="burlywood", weight=3]; 2767 -> 1816[label="",style="dashed", color="red", weight=0]; 2767[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2767 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2766[label="compare1 vwx90 vwx100 vwx84",fontsize=16,color="burlywood",shape="triangle"];3418[label="vwx84/False",fontsize=10,color="white",style="solid",shape="box"];2766 -> 3418[label="",style="solid", color="burlywood", weight=9]; 3418 -> 2782[label="",style="solid", color="burlywood", weight=3]; 3419[label="vwx84/True",fontsize=10,color="white",style="solid",shape="box"];2766 -> 3419[label="",style="solid", color="burlywood", weight=9]; 3419 -> 2783[label="",style="solid", color="burlywood", weight=3]; 2769 -> 1817[label="",style="dashed", color="red", weight=0]; 2769[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2769 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2768[label="compare1 vwx90 vwx100 vwx85",fontsize=16,color="burlywood",shape="triangle"];3420[label="vwx85/False",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3420[label="",style="solid", color="burlywood", weight=9]; 3420 -> 2786[label="",style="solid", color="burlywood", weight=3]; 3421[label="vwx85/True",fontsize=10,color="white",style="solid",shape="box"];2768 -> 3421[label="",style="solid", color="burlywood", weight=9]; 3421 -> 2787[label="",style="solid", color="burlywood", weight=3]; 2771 -> 1820[label="",style="dashed", color="red", weight=0]; 2771[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2771 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2770[label="compare1 vwx90 vwx100 vwx86",fontsize=16,color="burlywood",shape="triangle"];3422[label="vwx86/False",fontsize=10,color="white",style="solid",shape="box"];2770 -> 3422[label="",style="solid", color="burlywood", weight=9]; 3422 -> 2790[label="",style="solid", color="burlywood", weight=3]; 3423[label="vwx86/True",fontsize=10,color="white",style="solid",shape="box"];2770 -> 3423[label="",style="solid", color="burlywood", weight=9]; 3423 -> 2791[label="",style="solid", color="burlywood", weight=3]; 2773 -> 1822[label="",style="dashed", color="red", weight=0]; 2773[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2773 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2772[label="compare1 vwx90 vwx100 vwx87",fontsize=16,color="burlywood",shape="triangle"];3424[label="vwx87/False",fontsize=10,color="white",style="solid",shape="box"];2772 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 2794[label="",style="solid", color="burlywood", weight=3]; 3425[label="vwx87/True",fontsize=10,color="white",style="solid",shape="box"];2772 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 2795[label="",style="solid", color="burlywood", weight=3]; 2774 -> 519[label="",style="dashed", color="red", weight=0]; 2774[label="primMulInt vwx1000 vwx910",fontsize=16,color="magenta"];2774 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2798[label="",style="dashed", color="red", weight=0]; 2775[label="compare2 vwx90 vwx100 (vwx90 == vwx100)",fontsize=16,color="magenta"];2775 -> 2799[label="",style="dashed", color="magenta", weight=3]; 1724[label="primPlusNat (Succ vwx4700) (Succ vwx401000)",fontsize=16,color="black",shape="box"];1724 -> 1752[label="",style="solid", color="black", weight=3]; 1725[label="primPlusNat (Succ vwx4700) Zero",fontsize=16,color="black",shape="box"];1725 -> 1753[label="",style="solid", color="black", weight=3]; 1726[label="primPlusNat Zero (Succ vwx401000)",fontsize=16,color="black",shape="box"];1726 -> 1754[label="",style="solid", color="black", weight=3]; 1727[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1727 -> 1755[label="",style="solid", color="black", weight=3]; 2776[label="vwx100",fontsize=16,color="green",shape="box"];2777[label="vwx90",fontsize=16,color="green",shape="box"];2778[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2778 -> 2800[label="",style="solid", color="black", weight=3]; 2779[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2779 -> 2801[label="",style="solid", color="black", weight=3]; 2780[label="vwx100",fontsize=16,color="green",shape="box"];2781[label="vwx90",fontsize=16,color="green",shape="box"];2782[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2782 -> 2802[label="",style="solid", color="black", weight=3]; 2783[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2783 -> 2803[label="",style="solid", color="black", weight=3]; 2784[label="vwx100",fontsize=16,color="green",shape="box"];2785[label="vwx90",fontsize=16,color="green",shape="box"];2786[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2786 -> 2804[label="",style="solid", color="black", weight=3]; 2787[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2787 -> 2805[label="",style="solid", color="black", weight=3]; 2788[label="vwx100",fontsize=16,color="green",shape="box"];2789[label="vwx90",fontsize=16,color="green",shape="box"];2790[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2790 -> 2806[label="",style="solid", color="black", weight=3]; 2791[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2791 -> 2807[label="",style="solid", color="black", weight=3]; 2792[label="vwx100",fontsize=16,color="green",shape="box"];2793[label="vwx90",fontsize=16,color="green",shape="box"];2794[label="compare1 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2794 -> 2808[label="",style="solid", color="black", weight=3]; 2795[label="compare1 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2795 -> 2809[label="",style="solid", color="black", weight=3]; 2796[label="vwx1000",fontsize=16,color="green",shape="box"];2797[label="vwx910",fontsize=16,color="green",shape="box"];2799 -> 30[label="",style="dashed", color="red", weight=0]; 2799[label="vwx90 == vwx100",fontsize=16,color="magenta"];2799 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2799 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2798[label="compare2 vwx90 vwx100 vwx88",fontsize=16,color="burlywood",shape="triangle"];3426[label="vwx88/False",fontsize=10,color="white",style="solid",shape="box"];2798 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 2812[label="",style="solid", color="burlywood", weight=3]; 3427[label="vwx88/True",fontsize=10,color="white",style="solid",shape="box"];2798 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 2813[label="",style="solid", color="burlywood", weight=3]; 1752[label="Succ (Succ (primPlusNat vwx4700 vwx401000))",fontsize=16,color="green",shape="box"];1752 -> 1770[label="",style="dashed", color="green", weight=3]; 1753[label="Succ vwx4700",fontsize=16,color="green",shape="box"];1754[label="Succ vwx401000",fontsize=16,color="green",shape="box"];1755[label="Zero",fontsize=16,color="green",shape="box"];2800[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2800 -> 2814[label="",style="solid", color="black", weight=3]; 2801[label="LT",fontsize=16,color="green",shape="box"];2802[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2802 -> 2815[label="",style="solid", color="black", weight=3]; 2803[label="LT",fontsize=16,color="green",shape="box"];2804[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2804 -> 2816[label="",style="solid", color="black", weight=3]; 2805[label="LT",fontsize=16,color="green",shape="box"];2806[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2806 -> 2817[label="",style="solid", color="black", weight=3]; 2807[label="LT",fontsize=16,color="green",shape="box"];2808[label="compare0 vwx90 vwx100 otherwise",fontsize=16,color="black",shape="box"];2808 -> 2818[label="",style="solid", color="black", weight=3]; 2809[label="LT",fontsize=16,color="green",shape="box"];2810[label="vwx90",fontsize=16,color="green",shape="box"];2811[label="vwx100",fontsize=16,color="green",shape="box"];2812[label="compare2 vwx90 vwx100 False",fontsize=16,color="black",shape="box"];2812 -> 2819[label="",style="solid", color="black", weight=3]; 2813[label="compare2 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2813 -> 2820[label="",style="solid", color="black", weight=3]; 1770 -> 1634[label="",style="dashed", color="red", weight=0]; 1770[label="primPlusNat vwx4700 vwx401000",fontsize=16,color="magenta"];1770 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1770 -> 1779[label="",style="dashed", color="magenta", weight=3]; 2814[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2814 -> 2821[label="",style="solid", color="black", weight=3]; 2815[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2815 -> 2822[label="",style="solid", color="black", weight=3]; 2816[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2816 -> 2823[label="",style="solid", color="black", weight=3]; 2817[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2817 -> 2824[label="",style="solid", color="black", weight=3]; 2818[label="compare0 vwx90 vwx100 True",fontsize=16,color="black",shape="box"];2818 -> 2825[label="",style="solid", color="black", weight=3]; 2819 -> 1785[label="",style="dashed", color="red", weight=0]; 2819[label="compare1 vwx90 vwx100 (vwx90 <= vwx100)",fontsize=16,color="magenta"];2819 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2820[label="EQ",fontsize=16,color="green",shape="box"];1778[label="vwx4700",fontsize=16,color="green",shape="box"];1779[label="vwx401000",fontsize=16,color="green",shape="box"];2821[label="GT",fontsize=16,color="green",shape="box"];2822[label="GT",fontsize=16,color="green",shape="box"];2823[label="GT",fontsize=16,color="green",shape="box"];2824[label="GT",fontsize=16,color="green",shape="box"];2825[label="GT",fontsize=16,color="green",shape="box"];2826 -> 1812[label="",style="dashed", color="red", weight=0]; 2826[label="vwx90 <= vwx100",fontsize=16,color="magenta"];2826 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2827[label="vwx100",fontsize=16,color="green",shape="box"];2828[label="vwx90",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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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(vwx900), Succ(vwx1000)) -> new_primCmpNat(vwx900, vwx1000) 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_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], ca)), bb), bc) -> new_ltEs2(vwx90, vwx100, ca) new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx90, vwx100, de) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), bc) -> new_ltEs3(vwx92, vwx102, bbh) new_primCompAux(vwx90, vwx100, vwx72, app(ty_Maybe, bfg)) -> new_compare4(vwx90, vwx100, bfg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_@2, baa), bab), gf) -> new_lt0(vwx91, vwx101, baa, bab) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_Maybe, gb)) -> new_ltEs3(vwx91, vwx101, gb) new_compare1(vwx90, vwx100, ea, eb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_Maybe, de)), bc) -> new_ltEs3(vwx90, vwx100, de) new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare(vwx91, vwx101, bca) new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_compare(vwx91, vwx101, bca) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], bda)), bc) -> new_ltEs2(vwx90, vwx100, bda) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, bcd), bce)), bc) -> new_ltEs0(vwx90, vwx100, bcd, bce) new_lt(Left(vwx30), Left(vwx40), bdc, bdd) -> new_esEs4(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdc), bdc, bdd) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, ea), eb), dh) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bc) -> new_ltEs0(vwx90, vwx100, bd, be) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, gc), gd), ge, gf) -> new_lt(vwx90, vwx100, gc, gd) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_Either, fa), fb)), bc) -> new_ltEs(vwx91, vwx101, fa, fb) new_primCompAux(vwx90, vwx100, vwx72, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare3(vwx90, vwx100, bfc, bfd, bfe) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), bc) -> new_lt3(vwx90, vwx100, he) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_@2, baa), bab)), gf), bc) -> new_lt0(vwx91, vwx101, baa, bab) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_@2, fc), fd)) -> new_ltEs0(vwx91, vwx101, fc, fd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(vwx91, vwx101, bac, bad, bae) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_Either, fa), fb)) -> new_ltEs(vwx91, vwx101, fa, fb) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), bc) -> new_ltEs2(vwx92, vwx102, bbg) new_ltEs3(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs2(vwx90, vwx100, bda) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), bc) -> new_lt2(vwx90, vwx100, hd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_[], baf), gf) -> new_lt2(vwx91, vwx101, baf) new_compare21(vwx90, vwx100, False, eg) -> new_ltEs3(vwx90, vwx100, eg) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_Either, cd), ce)), bc) -> new_ltEs(vwx90, vwx100, cd, ce) new_ltEs(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs3(vwx90, vwx100, cb) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_Either, hg), hh)), gf), bc) -> new_lt(vwx91, vwx101, hg, hh) new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx90, vwx100, bcb, bcc) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), bc) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx90, vwx100, bcd, bce) new_compare22(vwx90, vwx100, False, beg, beh) -> new_ltEs(vwx90, vwx100, beg, beh) new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs0(vwx90, vwx100, bd, be) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_[], bbg)) -> new_ltEs2(vwx92, vwx102, bbg) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), bc) -> new_lt1(vwx90, vwx100, ha, hb, hc) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, he), ge, gf) -> new_lt3(vwx90, vwx100, he) new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx90, vwx100, h, ba) new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), bc) -> new_lt2(vwx91, vwx101, baf) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, bdb)), bc) -> new_ltEs3(vwx90, vwx100, bdb) new_lt2(vwx90, vwx100, ef) -> new_compare(vwx90, vwx100, ef) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ef)), dh), bc) -> new_compare(vwx90, vwx100, ef) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(vwx90, vwx100, ha, hb, hc) new_esEs9(vwx16, vwx17, False, bde, app(ty_Maybe, bef)) -> new_ltEs3(vwx16, vwx17, bef) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bc) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), ge), gf), bc) -> new_lt(vwx90, vwx100, gc, gd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_@2, bbb), bbc)) -> new_ltEs0(vwx92, vwx102, bbb, bbc) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_[], ga)) -> new_ltEs2(vwx91, vwx101, ga) new_compare20(vwx90, vwx100, False, ec, ed, ee) -> new_ltEs1(vwx90, vwx100, ec, ed, ee) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), bc) -> new_lt1(vwx91, vwx101, bac, bad, bae) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bah), bba)), bc) -> new_ltEs(vwx92, vwx102, bah, bba) new_ltEs(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs2(vwx90, vwx100, ca) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_[], ga)), bc) -> new_ltEs2(vwx91, vwx101, ga) new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs2(vwx90, vwx100, dd) new_ltEs(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) new_primCompAux(vwx90, vwx100, vwx72, app(app(ty_Either, beg), beh)) -> new_compare22(vwx90, vwx100, new_esEs11(vwx90, vwx100, beg, beh), beg, beh) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx90, vwx100, cd, ce) new_compare3(vwx90, vwx100, ec, ed, ee) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_ltEs3(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs3(vwx90, vwx100, bdb) new_esEs9(vwx16, vwx17, False, bde, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx16, vwx17, bdh, bea) new_lt3(vwx90, vwx100, eg) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) new_lt(Right(vwx30), Right(vwx40), bdc, bdd) -> new_esEs9(vwx30, vwx40, new_esEs10(vwx30, vwx40, bdd), bdc, bdd) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, df), dg), dh) -> new_lt(vwx90, vwx100, df, dg) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, eg)), dh), bc) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) new_esEs9(vwx16, vwx17, False, bde, app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx16, vwx17, bdf, bdg) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, eg), dh) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bc) -> new_ltEs(vwx90, vwx100, h, ba) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx90, vwx100, da, db, dc) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_@2, cf), cg)), bc) -> new_ltEs0(vwx90, vwx100, cf, cg) new_esEs9(vwx16, vwx17, False, bde, app(ty_[], bee)) -> new_ltEs2(vwx16, vwx17, bee) new_esEs9(vwx16, vwx17, False, bde, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx16, vwx17, beb, bec, bed) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc)), bc) -> new_ltEs1(vwx90, vwx100, da, db, dc) new_lt1(vwx90, vwx100, ec, ed, ee) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, bcb), bcc)), bc) -> new_ltEs(vwx90, vwx100, bcb, bcc) new_ltEs3(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) new_primCompAux(vwx90, vwx100, vwx72, app(ty_[], bff)) -> new_compare(vwx90, vwx100, bff) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, df), dg)), dh), bc) -> new_lt(vwx90, vwx100, df, dg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, gg), gh), ge, gf) -> new_lt0(vwx90, vwx100, gg, gh) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_Either, bah), bba)) -> new_ltEs(vwx92, vwx102, bah, bba) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, ea), eb)), dh), bc) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_Maybe, bag), gf) -> new_lt3(vwx91, vwx101, bag) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bc) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) new_lt0(vwx90, vwx100, ea, eb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) new_compare4(vwx90, vwx100, eg) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_Either, hg), hh), gf) -> new_lt(vwx91, vwx101, hg, hh) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_Maybe, gb)), bc) -> new_ltEs3(vwx91, vwx101, gb) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(vwx92, vwx102, bbh) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_@2, fc), fd)), bc) -> new_ltEs0(vwx91, vwx101, fc, fd) new_compare(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare(vwx91, vwx101, bca) new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_[], dd)), bc) -> new_ltEs2(vwx90, vwx100, dd) new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hd), ge, gf) -> new_lt2(vwx90, vwx100, hd) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), bc) -> new_lt3(vwx91, vwx101, bag) new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), bc) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(app(ty_@3, ff), fg), fh)), bc) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, cb)), bb), bc) -> new_ltEs3(vwx90, vwx100, cb) new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx90, vwx100, cf, cg) new_primCompAux(vwx90, vwx100, vwx72, app(app(ty_@2, bfa), bfb)) -> new_compare1(vwx90, vwx100, bfa, bfb) new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ef), dh) -> new_compare(vwx90, vwx100, ef) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), ge), gf), bc) -> new_lt0(vwx90, vwx100, gg, gh) new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bbb), bbc)), bc) -> new_ltEs0(vwx92, vwx102, bbb, bbc) new_compare2(vwx90, vwx100, False, ea, eb) -> new_ltEs0(vwx90, vwx100, ea, eb) The TRS R consists of the following rules: new_lt4(vwx90, vwx100, app(ty_[], ef)) -> new_lt15(vwx90, vwx100, ef) new_esEs10(vwx30, vwx40, ty_Double) -> new_esEs21(vwx30, vwx40) new_esEs28(vwx90, vwx100, app(ty_[], hd)) -> new_esEs20(vwx90, vwx100, hd) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs4(vwx90, vwx100, de) new_ltEs19(vwx16, vwx17, ty_Integer) -> new_ltEs11(vwx16, vwx17) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vwx900)), Pos(vwx100)) -> LT new_ltEs4(Just(vwx90), Just(vwx100), ty_Bool) -> new_ltEs9(vwx90, vwx100) new_esEs8(vwx30, vwx40, app(app(ty_@2, bhb), bhc)) -> new_esEs5(vwx30, vwx40, bhb, bhc) new_pePe(True, vwx71) -> True new_esEs31(vwx300, vwx400, ty_Ordering) -> new_esEs17(vwx300, vwx400) new_esEs10(vwx30, vwx40, ty_Bool) -> new_esEs14(vwx30, vwx40) new_esEs34(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_compare23(vwx90, vwx100, True, eg) -> EQ new_esEs28(vwx90, vwx100, ty_Float) -> new_esEs22(vwx90, vwx100) new_esEs10(vwx30, vwx40, app(app(ty_@2, cad), cae)) -> new_esEs5(vwx30, vwx40, cad, cae) new_ltEs12(LT, LT) -> True new_esEs10(vwx30, vwx40, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(vwx30, vwx40, caf, cag, cah) new_lt8(vwx90, vwx100) -> new_esEs17(new_compare27(vwx90, vwx100), LT) new_esEs34(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_ltEs18(vwx9, vwx10) -> new_not(new_esEs17(new_compare17(vwx9, vwx10), GT)) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs8(vwx30, vwx40, ty_Double) -> new_esEs21(vwx30, vwx40) new_esEs32(vwx302, vwx402, app(ty_Ratio, dbh)) -> new_esEs19(vwx302, vwx402, dbh) new_primCmpInt(Pos(Zero), Neg(Succ(vwx1000))) -> GT new_esEs7(Just(vwx300), Just(vwx400), ty_Char) -> new_esEs18(vwx300, vwx400) new_esEs33(vwx301, vwx401, ty_Integer) -> new_esEs16(vwx301, vwx401) new_ltEs8(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs4(vwx90, vwx100, cb) new_ltEs19(vwx16, vwx17, app(app(ty_@2, bdh), bea)) -> new_ltEs5(vwx16, vwx17, bdh, bea) new_esEs28(vwx90, vwx100, ty_Char) -> new_esEs18(vwx90, vwx100) new_ltEs8(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs5(vwx90, vwx100, bd, be) new_esEs26(vwx16, vwx17, True, bde, cba) -> new_esEs17(EQ, LT) new_esEs7(Just(vwx300), Just(vwx400), app(ty_Maybe, cca)) -> new_esEs7(vwx300, vwx400, cca) new_esEs11(Left(vwx300), Left(vwx400), ty_Float, bgg) -> new_esEs22(vwx300, vwx400) new_lt4(vwx90, vwx100, ty_Int) -> new_lt5(vwx90, vwx100) new_primCmpInt(Neg(Succ(vwx900)), Neg(vwx100)) -> new_primCmpNat0(vwx100, Succ(vwx900)) new_compare210(vwx90, vwx100, True, ec, ed, ee) -> EQ new_compare0(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux1(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) new_esEs34(vwx300, vwx400, app(ty_Maybe, dec)) -> new_esEs7(vwx300, vwx400, dec) new_esEs27(vwx91, vwx101, ty_Integer) -> new_esEs16(vwx91, vwx101) new_ltEs4(Nothing, Nothing, bgc) -> True new_esEs23(vwx301, vwx401, ty_Integer) -> new_esEs16(vwx301, vwx401) new_ltEs4(Just(vwx90), Nothing, bgc) -> False new_compare15(Double(vwx90, Pos(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare7(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare15(Double(vwx90, Neg(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare7(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_esEs28(vwx90, vwx100, app(ty_Maybe, he)) -> new_esEs7(vwx90, vwx100, he) new_esEs19(:%(vwx300, vwx301), :%(vwx400, vwx401), bgb) -> new_asAs(new_esEs24(vwx300, vwx400, bgb), new_esEs23(vwx301, vwx401, bgb)) new_esEs10(vwx30, vwx40, ty_Int) -> new_esEs13(vwx30, vwx40) new_ltEs4(Just(vwx90), Just(vwx100), ty_Int) -> new_ltEs7(vwx90, vwx100) new_esEs29(vwx301, vwx401, ty_Double) -> new_esEs21(vwx301, vwx401) new_esEs32(vwx302, vwx402, app(app(ty_Either, dbd), dbe)) -> new_esEs11(vwx302, vwx402, dbd, dbe) new_esEs8(vwx30, vwx40, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(vwx30, vwx40, bhd, bhe, bhf) new_primCompAux0(vwx81, GT) -> GT new_ltEs15(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, gf) -> new_pePe(new_lt19(vwx90, vwx100, hf), new_asAs(new_esEs28(vwx90, vwx100, hf), new_pePe(new_lt20(vwx91, vwx101, ge), new_asAs(new_esEs27(vwx91, vwx101, ge), new_ltEs20(vwx92, vwx102, gf))))) new_ltEs4(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs4(vwx90, vwx100, bdb) new_primEqInt(Pos(Succ(vwx3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vwx4000))) -> False new_esEs10(vwx30, vwx40, ty_Ordering) -> new_esEs17(vwx30, vwx40) new_ltEs4(Just(vwx90), Just(vwx100), ty_Char) -> new_ltEs13(vwx90, vwx100) new_esEs17(LT, LT) -> True new_ltEs9(False, True) -> True new_esEs11(Left(vwx300), Left(vwx400), ty_Char, bgg) -> new_esEs18(vwx300, vwx400) new_esEs7(Just(vwx300), Just(vwx400), ty_Float) -> new_esEs22(vwx300, vwx400) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs15(vwx90, vwx100, da, db, dc) new_esEs29(vwx301, vwx401, app(app(app(ty_@3, cdh), cea), ceb)) -> new_esEs6(vwx301, vwx401, cdh, cea, ceb) new_compare17(Float(vwx90, Neg(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare7(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_esEs34(vwx300, vwx400, app(ty_[], deb)) -> new_esEs20(vwx300, vwx400, deb) new_ltEs6(vwx91, vwx101, app(ty_Ratio, bga)) -> new_ltEs14(vwx91, vwx101, bga) new_compare25(vwx90, vwx100, False) -> new_compare13(vwx90, vwx100, new_ltEs9(vwx90, vwx100)) new_esEs11(Left(vwx300), Left(vwx400), app(app(ty_@2, che), chf), bgg) -> new_esEs5(vwx300, vwx400, che, chf) new_esEs8(vwx30, vwx40, ty_Int) -> new_esEs13(vwx30, vwx40) new_lt20(vwx91, vwx101, app(app(ty_Either, hg), hh)) -> new_lt6(vwx91, vwx101, hg, hh) new_primEqNat0(Succ(vwx3000), Succ(vwx4000)) -> new_primEqNat0(vwx3000, vwx4000) new_esEs31(vwx300, vwx400, app(app(ty_@2, cgb), cgc)) -> new_esEs5(vwx300, vwx400, cgb, cgc) new_esEs31(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_primCompAux0(vwx81, LT) -> LT new_ltEs20(vwx92, vwx102, app(app(ty_Either, bah), bba)) -> new_ltEs8(vwx92, vwx102, bah, bba) new_not(True) -> False new_ltEs12(LT, GT) -> True new_primCmpNat0(Zero, Zero) -> EQ new_ltEs10(vwx9, vwx10) -> new_not(new_esEs17(new_compare27(vwx9, vwx10), GT)) new_esEs29(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_lt19(vwx90, vwx100, app(app(ty_Either, gc), gd)) -> new_lt6(vwx90, vwx100, gc, gd) new_esEs11(Left(vwx300), Right(vwx400), bgf, bgg) -> False new_esEs11(Right(vwx300), Left(vwx400), bgf, bgg) -> False new_esEs11(Right(vwx300), Right(vwx400), bgf, app(ty_Ratio, daf)) -> new_esEs19(vwx300, vwx400, daf) new_esEs30(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_lt19(vwx90, vwx100, app(ty_[], hd)) -> new_lt15(vwx90, vwx100, hd) new_lt4(vwx90, vwx100, ty_Bool) -> new_lt7(vwx90, vwx100) new_lt20(vwx91, vwx101, ty_Integer) -> new_lt9(vwx91, vwx101) new_esEs12(vwx90, vwx100, app(app(ty_Either, df), dg)) -> new_esEs11(vwx90, vwx100, df, dg) new_esEs27(vwx91, vwx101, ty_@0) -> new_esEs15(vwx91, vwx101) new_esEs30(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_compare16(vwx90, vwx100, False, beg, beh) -> GT new_esEs33(vwx301, vwx401, ty_@0) -> new_esEs15(vwx301, vwx401) new_ltEs19(vwx16, vwx17, ty_Double) -> new_ltEs17(vwx16, vwx17) new_ltEs8(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs8(vwx90, vwx100, h, ba) new_compare30(vwx90, vwx100) -> new_compare25(vwx90, vwx100, new_esEs14(vwx90, vwx100)) new_lt6(Left(vwx30), Right(vwx40), bdc, bdd) -> new_esEs17(new_compare16(Left(vwx30), Right(vwx40), True, bdc, bdd), LT) new_ltEs8(Left(vwx90), Left(vwx100), ty_Float, bb) -> new_ltEs18(vwx90, vwx100) new_primEqNat0(Succ(vwx3000), Zero) -> False new_primEqNat0(Zero, Succ(vwx4000)) -> False new_esEs18(Char(vwx300), Char(vwx400)) -> new_primEqNat0(vwx300, vwx400) new_esEs8(vwx30, vwx40, ty_Ordering) -> new_esEs17(vwx30, vwx40) new_ltEs6(vwx91, vwx101, ty_@0) -> new_ltEs10(vwx91, vwx101) new_ltEs21(vwx9, vwx10, app(app(ty_@2, eh), dh)) -> new_ltEs5(vwx9, vwx10, eh, dh) new_lt17(vwx90, vwx100) -> new_esEs17(new_compare15(vwx90, vwx100), LT) new_esEs27(vwx91, vwx101, app(app(ty_Either, hg), hh)) -> new_esEs11(vwx91, vwx101, hg, hh) new_ltEs20(vwx92, vwx102, ty_Integer) -> new_ltEs11(vwx92, vwx102) new_compare31(vwx90, vwx100, app(app(ty_@2, bfa), bfb)) -> new_compare5(vwx90, vwx100, bfa, bfb) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs32(vwx302, vwx402, ty_@0) -> new_esEs15(vwx302, vwx402) new_esEs17(EQ, GT) -> False new_esEs17(GT, EQ) -> False new_ltEs21(vwx9, vwx10, ty_Char) -> new_ltEs13(vwx9, vwx10) new_esEs12(vwx90, vwx100, app(ty_Ratio, bfh)) -> new_esEs19(vwx90, vwx100, bfh) new_lt19(vwx90, vwx100, app(app(app(ty_@3, ha), hb), hc)) -> new_lt14(vwx90, vwx100, ha, hb, hc) new_primCmpInt(Pos(Succ(vwx900)), Neg(vwx100)) -> GT new_ltEs20(vwx92, vwx102, ty_@0) -> new_ltEs10(vwx92, vwx102) new_ltEs20(vwx92, vwx102, app(app(ty_@2, bbb), bbc)) -> new_ltEs5(vwx92, vwx102, bbb, bbc) new_ltEs21(vwx9, vwx10, ty_Int) -> new_ltEs7(vwx9, vwx10) new_lt4(vwx90, vwx100, app(ty_Ratio, bfh)) -> new_lt13(vwx90, vwx100, bfh) new_esEs11(Left(vwx300), Left(vwx400), app(ty_Ratio, chd), bgg) -> new_esEs19(vwx300, vwx400, chd) new_ltEs4(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs15(vwx90, vwx100, bcf, bcg, bch) new_esEs29(vwx301, vwx401, app(ty_[], cdc)) -> new_esEs20(vwx301, vwx401, cdc) new_ltEs6(vwx91, vwx101, ty_Double) -> new_ltEs17(vwx91, vwx101) new_primPlusNat1(Succ(vwx4700), Succ(vwx401000)) -> Succ(Succ(new_primPlusNat1(vwx4700, vwx401000))) new_compare19(vwx90, vwx100, True) -> LT new_lt6(Left(vwx30), Left(vwx40), bdc, bdd) -> new_esEs25(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdc), bdc, bdd) new_esEs7(Just(vwx300), Just(vwx400), ty_Bool) -> new_esEs14(vwx300, vwx400) new_esEs31(vwx300, vwx400, app(app(app(ty_@3, cgd), cge), cgf)) -> new_esEs6(vwx300, vwx400, cgd, cge, cgf) new_esEs32(vwx302, vwx402, ty_Ordering) -> new_esEs17(vwx302, vwx402) new_primCmpNat0(Zero, Succ(vwx1000)) -> LT new_lt20(vwx91, vwx101, app(app(app(ty_@3, bac), bad), bae)) -> new_lt14(vwx91, vwx101, bac, bad, bae) new_esEs31(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_ltEs19(vwx16, vwx17, ty_@0) -> new_ltEs10(vwx16, vwx17) new_esEs30(vwx300, vwx400, app(ty_[], cee)) -> new_esEs20(vwx300, vwx400, cee) new_lt20(vwx91, vwx101, app(ty_[], baf)) -> new_lt15(vwx91, vwx101, baf) new_lt15(vwx90, vwx100, ef) -> new_esEs17(new_compare0(vwx90, vwx100, ef), LT) new_esEs20([], [], bgh) -> True new_ltEs21(vwx9, vwx10, ty_Bool) -> new_ltEs9(vwx9, vwx10) new_esEs7(Just(vwx300), Just(vwx400), app(ty_[], cbh)) -> new_esEs20(vwx300, vwx400, cbh) new_ltEs20(vwx92, vwx102, ty_Double) -> new_ltEs17(vwx92, vwx102) new_esEs29(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Bool) -> new_esEs14(vwx300, vwx400) new_primCompAux1(vwx90, vwx100, vwx72, bca) -> new_primCompAux0(vwx72, new_compare31(vwx90, vwx100, bca)) new_lt12(vwx90, vwx100) -> new_esEs17(new_compare14(vwx90, vwx100), LT) new_esEs8(vwx30, vwx40, app(ty_Maybe, bha)) -> new_esEs7(vwx30, vwx40, bha) new_primCmpNat0(Succ(vwx900), Zero) -> GT new_esEs32(vwx302, vwx402, ty_Integer) -> new_esEs16(vwx302, vwx402) new_ltEs21(vwx9, vwx10, app(app(ty_Either, cc), bb)) -> new_ltEs8(vwx9, vwx10, cc, bb) new_pePe(False, vwx71) -> vwx71 new_esEs32(vwx302, vwx402, ty_Int) -> new_esEs13(vwx302, vwx402) new_esEs7(Nothing, Just(vwx400), bha) -> False new_esEs7(Just(vwx300), Nothing, bha) -> False new_esEs34(vwx300, vwx400, app(app(ty_@2, dee), def)) -> new_esEs5(vwx300, vwx400, dee, def) new_ltEs12(GT, GT) -> True new_esEs8(vwx30, vwx40, ty_Char) -> new_esEs18(vwx30, vwx40) new_ltEs11(vwx9, vwx10) -> new_not(new_esEs17(new_compare8(vwx9, vwx10), GT)) new_lt20(vwx91, vwx101, ty_@0) -> new_lt8(vwx91, vwx101) new_ltEs9(True, True) -> True new_compare31(vwx90, vwx100, ty_@0) -> new_compare27(vwx90, vwx100) new_ltEs12(GT, EQ) -> False new_ltEs6(vwx91, vwx101, app(app(ty_@2, fc), fd)) -> new_ltEs5(vwx91, vwx101, fc, fd) new_ltEs21(vwx9, vwx10, ty_Double) -> new_ltEs17(vwx9, vwx10) new_lt16(vwx90, vwx100, eg) -> new_esEs17(new_compare26(vwx90, vwx100, eg), LT) new_esEs10(vwx30, vwx40, app(ty_Maybe, cab)) -> new_esEs7(vwx30, vwx40, cab) new_ltEs20(vwx92, vwx102, ty_Char) -> new_ltEs13(vwx92, vwx102) new_esEs33(vwx301, vwx401, ty_Char) -> new_esEs18(vwx301, vwx401) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Double) -> new_ltEs17(vwx90, vwx100) new_esEs27(vwx91, vwx101, app(ty_[], baf)) -> new_esEs20(vwx91, vwx101, baf) new_esEs11(Left(vwx300), Left(vwx400), ty_Bool, bgg) -> new_esEs14(vwx300, vwx400) new_esEs30(vwx300, vwx400, ty_Ordering) -> new_esEs17(vwx300, vwx400) new_esEs28(vwx90, vwx100, ty_Double) -> new_esEs21(vwx90, vwx100) new_compare10(vwx90, vwx100, False, eg) -> GT new_compare11(vwx90, vwx100, False, ea, eb) -> GT new_esEs24(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) 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_esEs32(vwx302, vwx402, app(app(app(ty_@3, dcc), dcd), dce)) -> new_esEs6(vwx302, vwx402, dcc, dcd, dce) new_esEs7(Nothing, Nothing, bha) -> True new_esEs10(vwx30, vwx40, ty_Float) -> new_esEs22(vwx30, vwx40) new_compare17(Float(vwx90, Pos(vwx910)), Float(vwx100, Neg(vwx1010))) -> new_compare7(new_sr(vwx90, Pos(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare17(Float(vwx90, Neg(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare7(new_sr(vwx90, Neg(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_lt9(vwx90, vwx100) -> new_esEs17(new_compare8(vwx90, vwx100), LT) new_esEs11(Left(vwx300), Left(vwx400), ty_Integer, bgg) -> new_esEs16(vwx300, vwx400) new_esEs33(vwx301, vwx401, ty_Float) -> new_esEs22(vwx301, vwx401) new_ltEs8(Left(vwx90), Left(vwx100), ty_Integer, bb) -> new_ltEs11(vwx90, vwx100) new_esEs11(Right(vwx300), Right(vwx400), bgf, app(ty_[], dad)) -> new_esEs20(vwx300, vwx400, dad) new_lt19(vwx90, vwx100, ty_Int) -> new_lt5(vwx90, vwx100) new_esEs17(EQ, EQ) -> True new_ltEs19(vwx16, vwx17, ty_Char) -> new_ltEs13(vwx16, vwx17) new_ltEs6(vwx91, vwx101, app(app(ty_Either, fa), fb)) -> new_ltEs8(vwx91, vwx101, fa, fb) new_lt19(vwx90, vwx100, ty_Integer) -> new_lt9(vwx90, vwx100) new_esEs29(vwx301, vwx401, ty_Char) -> new_esEs18(vwx301, vwx401) new_primEqInt(Neg(Succ(vwx3000)), Neg(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_compare24(vwx90, vwx100, False, ea, eb) -> new_compare11(vwx90, vwx100, new_ltEs5(vwx90, vwx100, ea, eb), ea, eb) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Int) -> new_esEs13(vwx300, vwx400) new_esEs25(vwx9, vwx10, True, cch, bc) -> new_esEs17(EQ, LT) new_esEs17(LT, EQ) -> False new_esEs17(EQ, LT) -> False new_primCmpInt(Neg(Zero), Pos(Succ(vwx1000))) -> LT new_esEs28(vwx90, vwx100, ty_Integer) -> new_esEs16(vwx90, vwx100) new_ltEs13(vwx9, vwx10) -> new_not(new_esEs17(new_compare14(vwx9, vwx10), GT)) new_primMulInt(Pos(vwx3000), Pos(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_esEs33(vwx301, vwx401, app(ty_Maybe, dda)) -> new_esEs7(vwx301, vwx401, dda) new_lt4(vwx90, vwx100, ty_Integer) -> new_lt9(vwx90, vwx100) new_esEs31(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs7(Just(vwx300), Just(vwx400), ty_Int) -> new_esEs13(vwx300, vwx400) new_ltEs8(Left(vwx90), Left(vwx100), ty_Ordering, bb) -> new_ltEs12(vwx90, vwx100) new_ltEs21(vwx9, vwx10, app(app(app(ty_@3, hf), ge), gf)) -> new_ltEs15(vwx9, vwx10, hf, ge, gf) new_esEs12(vwx90, vwx100, ty_Float) -> new_esEs22(vwx90, vwx100) new_esEs28(vwx90, vwx100, ty_Bool) -> new_esEs14(vwx90, vwx100) new_esEs27(vwx91, vwx101, app(ty_Ratio, cbd)) -> new_esEs19(vwx91, vwx101, cbd) new_ltEs8(Right(vwx90), Left(vwx100), cc, bb) -> False new_compare10(vwx90, vwx100, True, eg) -> LT new_primMulNat0(Succ(vwx30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vwx40100)) -> Zero new_esEs32(vwx302, vwx402, ty_Double) -> new_esEs21(vwx302, vwx402) new_lt20(vwx91, vwx101, ty_Int) -> new_lt5(vwx91, vwx101) new_primPlusNat0(Zero, vwx40100) -> Succ(vwx40100) new_lt19(vwx90, vwx100, ty_@0) -> new_lt8(vwx90, vwx100) new_esEs7(Just(vwx300), Just(vwx400), app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs6(vwx300, vwx400, cce, ccf, ccg) new_esEs8(vwx30, vwx40, ty_Float) -> new_esEs22(vwx30, vwx40) new_lt19(vwx90, vwx100, ty_Char) -> new_lt12(vwx90, vwx100) new_ltEs19(vwx16, vwx17, ty_Bool) -> new_ltEs9(vwx16, vwx17) new_esEs28(vwx90, vwx100, ty_@0) -> new_esEs15(vwx90, vwx100) new_esEs17(LT, GT) -> False new_esEs17(GT, LT) -> False new_esEs11(Left(vwx300), Left(vwx400), ty_Double, bgg) -> new_esEs21(vwx300, vwx400) new_ltEs6(vwx91, vwx101, app(ty_[], ga)) -> new_ltEs16(vwx91, vwx101, ga) new_ltEs17(vwx9, vwx10) -> new_not(new_esEs17(new_compare15(vwx9, vwx10), GT)) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs8(vwx90, vwx100, cd, ce) new_esEs26(vwx16, vwx17, False, bde, cba) -> new_esEs17(new_compare16(Right(vwx16), Right(vwx17), new_ltEs19(vwx16, vwx17, cba), bde, cba), LT) new_esEs28(vwx90, vwx100, ty_Ordering) -> new_esEs17(vwx90, vwx100) new_esEs29(vwx301, vwx401, ty_Ordering) -> new_esEs17(vwx301, vwx401) new_ltEs19(vwx16, vwx17, app(app(ty_Either, bdf), bdg)) -> new_ltEs8(vwx16, vwx17, bdf, bdg) new_compare7(vwx9, vwx10) -> new_primCmpInt(vwx9, vwx10) new_lt20(vwx91, vwx101, ty_Char) -> new_lt12(vwx91, vwx101) new_compare19(vwx90, vwx100, False) -> GT new_esEs30(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_ltEs4(Just(vwx90), Just(vwx100), ty_Double) -> new_ltEs17(vwx90, vwx100) new_primPlusNat1(Succ(vwx4700), Zero) -> Succ(vwx4700) new_primPlusNat1(Zero, Succ(vwx401000)) -> Succ(vwx401000) new_ltEs20(vwx92, vwx102, app(ty_[], bbg)) -> new_ltEs16(vwx92, vwx102, bbg) new_ltEs8(Left(vwx90), Left(vwx100), ty_Bool, bb) -> new_ltEs9(vwx90, vwx100) new_ltEs8(Left(vwx90), Left(vwx100), ty_@0, bb) -> new_ltEs10(vwx90, vwx100) new_esEs11(Left(vwx300), Left(vwx400), ty_@0, bgg) -> new_esEs15(vwx300, vwx400) new_esEs30(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_lt20(vwx91, vwx101, ty_Float) -> new_lt18(vwx91, vwx101) new_compare31(vwx90, vwx100, ty_Char) -> new_compare14(vwx90, vwx100) new_ltEs6(vwx91, vwx101, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs15(vwx91, vwx101, ff, fg, fh) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Int) -> new_ltEs7(vwx90, vwx100) new_esEs34(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_compare12(vwx90, vwx100, False, ec, ed, ee) -> GT new_esEs11(Left(vwx300), Left(vwx400), app(app(app(ty_@3, chg), chh), daa), bgg) -> new_esEs6(vwx300, vwx400, chg, chh, daa) new_ltEs19(vwx16, vwx17, app(ty_[], bee)) -> new_ltEs16(vwx16, vwx17, bee) new_ltEs20(vwx92, vwx102, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs15(vwx92, vwx102, bbd, bbe, bbf) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs5(vwx90, vwx100, cf, cg) new_esEs30(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_ltEs16(vwx9, vwx10, bca) -> new_not(new_esEs17(new_compare0(vwx9, vwx10, bca), GT)) new_lt20(vwx91, vwx101, ty_Ordering) -> new_lt11(vwx91, vwx101) new_esEs31(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_lt14(vwx90, vwx100, ec, ed, ee) -> new_esEs17(new_compare9(vwx90, vwx100, ec, ed, ee), LT) new_esEs11(Left(vwx300), Left(vwx400), app(ty_Maybe, chc), bgg) -> new_esEs7(vwx300, vwx400, chc) new_primMulInt(Neg(vwx3000), Neg(vwx4010)) -> Pos(new_primMulNat0(vwx3000, vwx4010)) new_primCmpInt(Pos(Zero), Pos(Succ(vwx1000))) -> new_primCmpNat0(Zero, Succ(vwx1000)) new_esEs14(True, True) -> True new_esEs29(vwx301, vwx401, ty_@0) -> new_esEs15(vwx301, vwx401) new_lt19(vwx90, vwx100, ty_Float) -> new_lt18(vwx90, vwx100) new_esEs12(vwx90, vwx100, app(app(ty_@2, ea), eb)) -> new_esEs5(vwx90, vwx100, ea, eb) new_esEs30(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs7(Just(vwx300), Just(vwx400), app(app(ty_@2, ccc), ccd)) -> new_esEs5(vwx300, vwx400, ccc, ccd) new_esEs34(vwx300, vwx400, app(app(app(ty_@3, deg), deh), dfa)) -> new_esEs6(vwx300, vwx400, deg, deh, dfa) new_esEs12(vwx90, vwx100, app(ty_Maybe, eg)) -> new_esEs7(vwx90, vwx100, eg) new_ltEs19(vwx16, vwx17, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs15(vwx16, vwx17, beb, bec, bed) new_esEs31(vwx300, vwx400, ty_Char) -> new_esEs18(vwx300, vwx400) new_lt19(vwx90, vwx100, ty_Ordering) -> new_lt11(vwx90, vwx100) new_lt4(vwx90, vwx100, ty_Ordering) -> new_lt11(vwx90, vwx100) new_esEs29(vwx301, vwx401, ty_Integer) -> new_esEs16(vwx301, vwx401) new_lt18(vwx90, vwx100) -> new_esEs17(new_compare17(vwx90, vwx100), LT) new_lt4(vwx90, vwx100, ty_Float) -> new_lt18(vwx90, vwx100) new_esEs11(Left(vwx300), Left(vwx400), ty_Ordering, bgg) -> new_esEs17(vwx300, vwx400) new_ltEs6(vwx91, vwx101, ty_Char) -> new_ltEs13(vwx91, vwx101) new_esEs27(vwx91, vwx101, ty_Bool) -> new_esEs14(vwx91, vwx101) new_esEs25(vwx9, vwx10, False, cch, bc) -> new_esEs17(new_compare16(Left(vwx9), Left(vwx10), new_ltEs21(vwx9, vwx10, cch), cch, bc), LT) new_esEs7(Just(vwx300), Just(vwx400), app(ty_Ratio, ccb)) -> new_esEs19(vwx300, vwx400, ccb) new_lt4(vwx90, vwx100, ty_@0) -> new_lt8(vwx90, vwx100) new_esEs30(vwx300, vwx400, app(app(ty_Either, cec), ced)) -> new_esEs11(vwx300, vwx400, cec, ced) new_esEs6(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bhd, bhe, bhf) -> new_asAs(new_esEs34(vwx300, vwx400, bhd), new_asAs(new_esEs33(vwx301, vwx401, bhe), new_esEs32(vwx302, vwx402, bhf))) new_esEs27(vwx91, vwx101, app(app(ty_@2, baa), bab)) -> new_esEs5(vwx91, vwx101, baa, bab) new_compare8(Integer(vwx90), Integer(vwx100)) -> new_primCmpInt(vwx90, vwx100) new_primMulInt(Pos(vwx3000), Neg(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_primMulInt(Neg(vwx3000), Pos(vwx4010)) -> Neg(new_primMulNat0(vwx3000, vwx4010)) new_esEs33(vwx301, vwx401, ty_Double) -> new_esEs21(vwx301, vwx401) new_ltEs6(vwx91, vwx101, ty_Int) -> new_ltEs7(vwx91, vwx101) new_lt11(vwx90, vwx100) -> new_esEs17(new_compare18(vwx90, vwx100), LT) new_esEs11(Right(vwx300), Right(vwx400), bgf, app(app(ty_Either, dab), dac)) -> new_esEs11(vwx300, vwx400, dab, dac) new_esEs33(vwx301, vwx401, app(app(app(ty_@3, dde), ddf), ddg)) -> new_esEs6(vwx301, vwx401, dde, ddf, ddg) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Char) -> new_esEs18(vwx300, vwx400) new_compare28(vwx90, vwx100, True) -> EQ new_esEs34(vwx300, vwx400, app(ty_Ratio, ded)) -> new_esEs19(vwx300, vwx400, ded) new_ltEs8(Left(vwx90), Left(vwx100), ty_Char, bb) -> new_ltEs13(vwx90, vwx100) new_compare31(vwx90, vwx100, app(ty_[], bff)) -> new_compare0(vwx90, vwx100, bff) new_compare27(@0, @0) -> EQ new_compare6(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Integer) -> new_compare8(new_sr0(vwx90, vwx101), new_sr0(vwx100, vwx91)) new_ltEs19(vwx16, vwx17, ty_Ordering) -> new_ltEs12(vwx16, vwx17) new_esEs33(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_esEs33(vwx301, vwx401, ty_Bool) -> new_esEs14(vwx301, vwx401) new_ltEs14(vwx9, vwx10, bge) -> new_not(new_esEs17(new_compare6(vwx9, vwx10, bge), GT)) new_esEs10(vwx30, vwx40, ty_Integer) -> new_esEs16(vwx30, vwx40) new_sr0(Integer(vwx1000), Integer(vwx910)) -> Integer(new_primMulInt(vwx1000, vwx910)) new_esEs33(vwx301, vwx401, app(app(ty_@2, ddc), ddd)) -> new_esEs5(vwx301, vwx401, ddc, ddd) new_esEs23(vwx301, vwx401, ty_Int) -> new_esEs13(vwx301, vwx401) new_esEs27(vwx91, vwx101, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(vwx91, vwx101, bac, bad, bae) new_lt7(vwx90, vwx100) -> new_esEs17(new_compare30(vwx90, vwx100), LT) new_compare31(vwx90, vwx100, ty_Float) -> new_compare17(vwx90, vwx100) new_ltEs21(vwx9, vwx10, ty_Float) -> new_ltEs18(vwx9, vwx10) new_ltEs4(Just(vwx90), Just(vwx100), app(ty_Ratio, bgd)) -> new_ltEs14(vwx90, vwx100, bgd) new_esEs13(vwx30, vwx40) -> new_primEqInt(vwx30, vwx40) new_lt19(vwx90, vwx100, app(app(ty_@2, gg), gh)) -> new_lt10(vwx90, vwx100, gg, gh) new_lt6(Right(vwx30), Left(vwx40), bdc, bdd) -> new_esEs17(new_compare16(Right(vwx30), Left(vwx40), False, bdc, bdd), LT) new_esEs11(Right(vwx300), Right(vwx400), bgf, app(app(app(ty_@3, dba), dbb), dbc)) -> new_esEs6(vwx300, vwx400, dba, dbb, dbc) new_ltEs21(vwx9, vwx10, app(ty_[], bca)) -> new_ltEs16(vwx9, vwx10, bca) new_esEs33(vwx301, vwx401, ty_Ordering) -> new_esEs17(vwx301, vwx401) new_compare0([], :(vwx100, vwx101), bca) -> LT new_asAs(True, vwx38) -> vwx38 new_esEs32(vwx302, vwx402, ty_Char) -> new_esEs18(vwx302, vwx402) new_lt19(vwx90, vwx100, ty_Double) -> new_lt17(vwx90, vwx100) new_compare12(vwx90, vwx100, True, ec, ed, ee) -> LT new_lt20(vwx91, vwx101, app(app(ty_@2, baa), bab)) -> new_lt10(vwx91, vwx101, baa, bab) new_lt6(Right(vwx30), Right(vwx40), bdc, bdd) -> new_esEs26(vwx30, vwx40, new_esEs10(vwx30, vwx40, bdd), bdc, bdd) new_esEs30(vwx300, vwx400, app(ty_Ratio, ceg)) -> new_esEs19(vwx300, vwx400, ceg) new_esEs12(vwx90, vwx100, ty_Double) -> new_esEs21(vwx90, vwx100) new_esEs32(vwx302, vwx402, ty_Float) -> new_esEs22(vwx302, vwx402) new_esEs12(vwx90, vwx100, app(app(app(ty_@3, ec), ed), ee)) -> new_esEs6(vwx90, vwx100, ec, ed, ee) new_ltEs4(Nothing, Just(vwx100), bgc) -> True new_esEs31(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_compare31(vwx90, vwx100, ty_Int) -> new_compare7(vwx90, vwx100) new_compare16(vwx90, vwx100, True, beg, beh) -> LT new_esEs27(vwx91, vwx101, ty_Ordering) -> new_esEs17(vwx91, vwx101) new_ltEs8(Left(vwx90), Left(vwx100), ty_Int, bb) -> new_ltEs7(vwx90, vwx100) new_esEs29(vwx301, vwx401, app(app(ty_Either, cda), cdb)) -> new_esEs11(vwx301, vwx401, cda, cdb) new_compare9(vwx90, vwx100, ec, ed, ee) -> new_compare210(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_compare24(vwx90, vwx100, True, ea, eb) -> EQ new_esEs7(Just(vwx300), Just(vwx400), app(app(ty_Either, cbf), cbg)) -> new_esEs11(vwx300, vwx400, cbf, cbg) new_primCmpInt(Pos(Succ(vwx900)), Pos(vwx100)) -> new_primCmpNat0(Succ(vwx900), vwx100) new_ltEs8(Left(vwx90), Left(vwx100), app(ty_Ratio, dfb), bb) -> new_ltEs14(vwx90, vwx100, dfb) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Float) -> new_esEs22(vwx300, vwx400) new_esEs12(vwx90, vwx100, ty_Int) -> new_esEs13(vwx90, vwx100) new_compare0([], [], bca) -> EQ new_sr(vwx300, vwx401) -> new_primMulInt(vwx300, vwx401) new_lt13(vwx90, vwx100, bfh) -> new_esEs17(new_compare6(vwx90, vwx100, bfh), LT) new_ltEs4(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs8(vwx90, vwx100, bcb, bcc) new_esEs10(vwx30, vwx40, ty_@0) -> new_esEs15(vwx30, vwx40) new_primMulNat0(Zero, Zero) -> Zero new_ltEs20(vwx92, vwx102, ty_Ordering) -> new_ltEs12(vwx92, vwx102) new_ltEs9(False, False) -> True new_esEs28(vwx90, vwx100, app(app(ty_Either, gc), gd)) -> new_esEs11(vwx90, vwx100, gc, gd) new_lt4(vwx90, vwx100, ty_Char) -> new_lt12(vwx90, vwx100) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Ordering) -> new_ltEs12(vwx90, vwx100) new_esEs31(vwx300, vwx400, app(ty_[], cfg)) -> new_esEs20(vwx300, vwx400, cfg) new_lt5(vwx90, vwx100) -> new_esEs17(new_compare7(vwx90, vwx100), LT) new_compare28(vwx90, vwx100, False) -> new_compare19(vwx90, vwx100, new_ltEs12(vwx90, vwx100)) new_ltEs20(vwx92, vwx102, ty_Bool) -> new_ltEs9(vwx92, vwx102) new_esEs31(vwx300, vwx400, app(ty_Maybe, cfh)) -> new_esEs7(vwx300, vwx400, cfh) new_compare31(vwx90, vwx100, ty_Double) -> new_compare15(vwx90, vwx100) new_esEs20(:(vwx300, vwx301), :(vwx400, vwx401), bgh) -> new_asAs(new_esEs31(vwx300, vwx400, bgh), new_esEs20(vwx301, vwx401, bgh)) new_esEs10(vwx30, vwx40, app(app(ty_Either, bhg), bhh)) -> new_esEs11(vwx30, vwx40, bhg, bhh) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(ty_Ratio, dfc)) -> new_ltEs14(vwx90, vwx100, dfc) new_compare5(vwx90, vwx100, ea, eb) -> new_compare24(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) new_ltEs6(vwx91, vwx101, ty_Bool) -> new_ltEs9(vwx91, vwx101) new_esEs29(vwx301, vwx401, app(ty_Ratio, cde)) -> new_esEs19(vwx301, vwx401, cde) new_compare14(Char(vwx90), Char(vwx100)) -> new_primCmpNat0(vwx90, vwx100) new_compare18(vwx90, vwx100) -> new_compare28(vwx90, vwx100, new_esEs17(vwx90, vwx100)) new_lt20(vwx91, vwx101, app(ty_Ratio, cbd)) -> new_lt13(vwx91, vwx101, cbd) new_ltEs12(GT, LT) -> False new_esEs5(@2(vwx300, vwx301), @2(vwx400, vwx401), bhb, bhc) -> new_asAs(new_esEs30(vwx300, vwx400, bhb), new_esEs29(vwx301, vwx401, bhc)) new_esEs32(vwx302, vwx402, app(app(ty_@2, dca), dcb)) -> new_esEs5(vwx302, vwx402, dca, dcb) new_compare15(Double(vwx90, Pos(vwx910)), Double(vwx100, Pos(vwx1010))) -> new_compare7(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_ltEs9(True, False) -> False new_primCompAux0(vwx81, EQ) -> vwx81 new_compare210(vwx90, vwx100, False, ec, ed, ee) -> new_compare12(vwx90, vwx100, new_ltEs15(vwx90, vwx100, ec, ed, ee), ec, ed, ee) new_esEs8(vwx30, vwx40, ty_Integer) -> new_esEs16(vwx30, vwx40) new_esEs15(@0, @0) -> True new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Float) -> new_ltEs18(vwx90, vwx100) new_lt19(vwx90, vwx100, app(ty_Ratio, cbc)) -> new_lt13(vwx90, vwx100, cbc) new_lt4(vwx90, vwx100, ty_Double) -> new_lt17(vwx90, vwx100) new_esEs17(GT, GT) -> True new_primEqInt(Neg(Succ(vwx3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vwx4000))) -> False new_compare17(Float(vwx90, Pos(vwx910)), Float(vwx100, Pos(vwx1010))) -> new_compare7(new_sr(vwx90, Pos(vwx1010)), new_sr(Pos(vwx910), vwx100)) new_primEqInt(Pos(Succ(vwx3000)), Pos(Succ(vwx4000))) -> new_primEqNat0(vwx3000, vwx4000) new_compare31(vwx90, vwx100, ty_Ordering) -> new_compare18(vwx90, vwx100) new_esEs28(vwx90, vwx100, app(ty_Ratio, cbc)) -> new_esEs19(vwx90, vwx100, cbc) new_compare6(:%(vwx90, vwx91), :%(vwx100, vwx101), ty_Int) -> new_compare7(new_sr(vwx90, vwx101), new_sr(vwx100, vwx91)) new_lt10(vwx90, vwx100, ea, eb) -> new_esEs17(new_compare5(vwx90, vwx100, ea, eb), LT) new_esEs8(vwx30, vwx40, ty_@0) -> new_esEs15(vwx30, vwx40) new_ltEs8(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs15(vwx90, vwx100, bf, bg, bh) new_lt4(vwx90, vwx100, app(app(ty_@2, ea), eb)) -> new_lt10(vwx90, vwx100, ea, eb) new_esEs12(vwx90, vwx100, ty_Bool) -> new_esEs14(vwx90, vwx100) new_ltEs21(vwx9, vwx10, app(ty_Ratio, bge)) -> new_ltEs14(vwx9, vwx10, bge) new_esEs11(Left(vwx300), Left(vwx400), app(app(ty_Either, cgh), cha), bgg) -> new_esEs11(vwx300, vwx400, cgh, cha) new_primEqInt(Pos(Succ(vwx3000)), Neg(vwx400)) -> False new_primEqInt(Neg(Succ(vwx3000)), Pos(vwx400)) -> False new_esEs14(False, False) -> True new_esEs34(vwx300, vwx400, app(app(ty_Either, ddh), dea)) -> new_esEs11(vwx300, vwx400, ddh, dea) new_ltEs4(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs16(vwx90, vwx100, bda) new_primCmpInt(Neg(Zero), Neg(Succ(vwx1000))) -> new_primCmpNat0(Succ(vwx1000), Zero) new_esEs27(vwx91, vwx101, ty_Double) -> new_esEs21(vwx91, vwx101) new_esEs32(vwx302, vwx402, app(ty_Maybe, dbg)) -> new_esEs7(vwx302, vwx402, dbg) new_esEs31(vwx300, vwx400, ty_Float) -> new_esEs22(vwx300, vwx400) new_esEs20(:(vwx300, vwx301), [], bgh) -> False new_esEs20([], :(vwx400, vwx401), bgh) -> False new_ltEs12(EQ, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs27(vwx91, vwx101, ty_Char) -> new_esEs18(vwx91, vwx101) new_ltEs7(vwx9, vwx10) -> new_not(new_esEs17(new_compare7(vwx9, vwx10), GT)) new_ltEs8(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs16(vwx90, vwx100, dd) new_esEs27(vwx91, vwx101, ty_Float) -> new_esEs22(vwx91, vwx101) new_esEs34(vwx300, vwx400, ty_Bool) -> new_esEs14(vwx300, vwx400) new_ltEs12(EQ, EQ) -> True new_esEs8(vwx30, vwx40, app(ty_[], bgh)) -> new_esEs20(vwx30, vwx40, bgh) new_lt19(vwx90, vwx100, ty_Bool) -> new_lt7(vwx90, vwx100) new_esEs34(vwx300, vwx400, ty_Double) -> new_esEs21(vwx300, vwx400) new_lt19(vwx90, vwx100, app(ty_Maybe, he)) -> new_lt16(vwx90, vwx100, he) new_esEs27(vwx91, vwx101, app(ty_Maybe, bag)) -> new_esEs7(vwx91, vwx101, bag) new_esEs12(vwx90, vwx100, app(ty_[], ef)) -> new_esEs20(vwx90, vwx100, ef) new_ltEs8(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs16(vwx90, vwx100, ca) new_esEs11(Left(vwx300), Left(vwx400), ty_Int, bgg) -> new_esEs13(vwx300, vwx400) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Double) -> new_esEs21(vwx300, vwx400) new_not(False) -> True new_ltEs8(Left(vwx90), Right(vwx100), cc, bb) -> True new_lt4(vwx90, vwx100, app(app(ty_Either, df), dg)) -> new_lt6(vwx90, vwx100, df, dg) new_ltEs5(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, dh) -> new_pePe(new_lt4(vwx90, vwx100, eh), new_asAs(new_esEs12(vwx90, vwx100, eh), new_ltEs6(vwx91, vwx101, dh))) new_compare31(vwx90, vwx100, app(ty_Ratio, cgg)) -> new_compare6(vwx90, vwx100, cgg) new_lt4(vwx90, vwx100, app(app(app(ty_@3, ec), ed), ee)) -> new_lt14(vwx90, vwx100, ec, ed, ee) new_compare29(vwx90, vwx100, False, beg, beh) -> new_compare16(vwx90, vwx100, new_ltEs8(vwx90, vwx100, beg, beh), beg, beh) new_compare26(vwx90, vwx100, eg) -> new_compare23(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) new_ltEs4(Just(vwx90), Just(vwx100), ty_Ordering) -> new_ltEs12(vwx90, vwx100) new_esEs8(vwx30, vwx40, app(ty_Ratio, bgb)) -> new_esEs19(vwx30, vwx40, bgb) new_esEs7(Just(vwx300), Just(vwx400), ty_Double) -> new_esEs21(vwx300, vwx400) new_compare0(:(vwx90, vwx91), [], bca) -> GT new_ltEs6(vwx91, vwx101, ty_Integer) -> new_ltEs11(vwx91, vwx101) new_esEs16(Integer(vwx300), Integer(vwx400)) -> new_primEqInt(vwx300, vwx400) new_esEs31(vwx300, vwx400, app(ty_Ratio, cga)) -> new_esEs19(vwx300, vwx400, cga) new_compare25(vwx90, vwx100, True) -> EQ new_esEs7(Just(vwx300), Just(vwx400), ty_Ordering) -> new_esEs17(vwx300, vwx400) new_ltEs4(Just(vwx90), Just(vwx100), ty_Float) -> new_ltEs18(vwx90, vwx100) new_compare13(vwx90, vwx100, True) -> LT new_ltEs20(vwx92, vwx102, app(ty_Ratio, cbe)) -> new_ltEs14(vwx92, vwx102, cbe) new_esEs34(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_esEs33(vwx301, vwx401, app(app(ty_Either, dcf), dcg)) -> new_esEs11(vwx301, vwx401, dcf, dcg) new_esEs30(vwx300, vwx400, app(app(app(ty_@3, cfb), cfc), cfd)) -> new_esEs6(vwx300, vwx400, cfb, cfc, cfd) new_esEs30(vwx300, vwx400, ty_Int) -> new_esEs13(vwx300, vwx400) new_primPlusNat0(Succ(vwx470), vwx40100) -> Succ(Succ(new_primPlusNat1(vwx470, vwx40100))) new_esEs11(Right(vwx300), Right(vwx400), bgf, app(ty_Maybe, dae)) -> new_esEs7(vwx300, vwx400, dae) new_ltEs4(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs5(vwx90, vwx100, bcd, bce) new_compare11(vwx90, vwx100, True, ea, eb) -> LT new_ltEs19(vwx16, vwx17, ty_Int) -> new_ltEs7(vwx16, vwx17) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_@0) -> new_ltEs10(vwx90, vwx100) new_esEs11(Left(vwx300), Left(vwx400), app(ty_[], chb), bgg) -> new_esEs20(vwx300, vwx400, chb) new_esEs22(Float(vwx300, vwx301), Float(vwx400, vwx401)) -> new_esEs13(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_ltEs19(vwx16, vwx17, app(ty_Ratio, cbb)) -> new_ltEs14(vwx16, vwx17, cbb) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt20(vwx91, vwx101, ty_Double) -> new_lt17(vwx91, vwx101) new_primPlusNat1(Zero, Zero) -> Zero new_esEs28(vwx90, vwx100, app(app(ty_@2, gg), gh)) -> new_esEs5(vwx90, vwx100, gg, gh) new_compare15(Double(vwx90, Neg(vwx910)), Double(vwx100, Neg(vwx1010))) -> new_compare7(new_sr(vwx90, Neg(vwx1010)), new_sr(Neg(vwx910), vwx100)) new_compare31(vwx90, vwx100, app(app(ty_Either, beg), beh)) -> new_compare29(vwx90, vwx100, new_esEs11(vwx90, vwx100, beg, beh), beg, beh) new_esEs10(vwx30, vwx40, app(ty_Ratio, cac)) -> new_esEs19(vwx30, vwx40, cac) new_compare31(vwx90, vwx100, ty_Integer) -> new_compare8(vwx90, vwx100) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Integer) -> new_ltEs11(vwx90, vwx100) new_ltEs20(vwx92, vwx102, ty_Int) -> new_ltEs7(vwx92, vwx102) new_ltEs21(vwx9, vwx10, ty_@0) -> new_ltEs10(vwx9, vwx10) new_ltEs6(vwx91, vwx101, ty_Ordering) -> new_ltEs12(vwx91, vwx101) new_esEs12(vwx90, vwx100, ty_Char) -> new_esEs18(vwx90, vwx100) new_esEs33(vwx301, vwx401, app(ty_Ratio, ddb)) -> new_esEs19(vwx301, vwx401, ddb) new_esEs29(vwx301, vwx401, ty_Float) -> new_esEs22(vwx301, vwx401) new_esEs34(vwx300, vwx400, ty_@0) -> new_esEs15(vwx300, vwx400) new_esEs12(vwx90, vwx100, ty_Ordering) -> new_esEs17(vwx90, vwx100) new_esEs8(vwx30, vwx40, app(app(ty_Either, bgf), bgg)) -> new_esEs11(vwx30, vwx40, bgf, bgg) new_esEs30(vwx300, vwx400, app(ty_Maybe, cef)) -> new_esEs7(vwx300, vwx400, cef) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vwx300, vwx400, app(app(ty_@2, ceh), cfa)) -> new_esEs5(vwx300, vwx400, ceh, cfa) new_ltEs6(vwx91, vwx101, app(ty_Maybe, gb)) -> new_ltEs4(vwx91, vwx101, gb) new_compare31(vwx90, vwx100, ty_Bool) -> new_compare30(vwx90, vwx100) new_primMulNat0(Succ(vwx30000), Succ(vwx40100)) -> new_primPlusNat0(new_primMulNat0(vwx30000, Succ(vwx40100)), vwx40100) new_ltEs12(EQ, LT) -> False new_ltEs21(vwx9, vwx10, ty_Integer) -> new_ltEs11(vwx9, vwx10) new_ltEs21(vwx9, vwx10, ty_Ordering) -> new_ltEs12(vwx9, vwx10) new_compare29(vwx90, vwx100, True, beg, beh) -> EQ new_compare31(vwx90, vwx100, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare9(vwx90, vwx100, bfc, bfd, bfe) new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Bool) -> new_ltEs9(vwx90, vwx100) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_@0) -> new_esEs15(vwx300, vwx400) new_primCmpNat0(Succ(vwx900), Succ(vwx1000)) -> new_primCmpNat0(vwx900, vwx1000) new_ltEs6(vwx91, vwx101, ty_Float) -> new_ltEs18(vwx91, vwx101) new_esEs11(Right(vwx300), Right(vwx400), bgf, app(app(ty_@2, dag), dah)) -> new_esEs5(vwx300, vwx400, dag, dah) new_esEs28(vwx90, vwx100, ty_Int) -> new_esEs13(vwx90, vwx100) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Ordering) -> new_esEs17(vwx300, vwx400) new_esEs34(vwx300, vwx400, ty_Ordering) -> new_esEs17(vwx300, vwx400) new_lt20(vwx91, vwx101, app(ty_Maybe, bag)) -> new_lt16(vwx91, vwx101, bag) new_lt20(vwx91, vwx101, ty_Bool) -> new_lt7(vwx91, vwx101) new_ltEs19(vwx16, vwx17, ty_Float) -> new_ltEs18(vwx16, vwx17) new_ltEs21(vwx9, vwx10, app(ty_Maybe, bgc)) -> new_ltEs4(vwx9, vwx10, bgc) new_compare31(vwx90, vwx100, app(ty_Maybe, bfg)) -> new_compare26(vwx90, vwx100, bfg) new_esEs32(vwx302, vwx402, app(ty_[], dbf)) -> new_esEs20(vwx302, vwx402, dbf) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs12(LT, EQ) -> True new_ltEs19(vwx16, vwx17, app(ty_Maybe, bef)) -> new_ltEs4(vwx16, vwx17, bef) new_esEs27(vwx91, vwx101, ty_Int) -> new_esEs13(vwx91, vwx101) new_ltEs4(Just(vwx90), Just(vwx100), ty_@0) -> new_ltEs10(vwx90, vwx100) new_esEs11(Right(vwx300), Right(vwx400), bgf, ty_Integer) -> new_esEs16(vwx300, vwx400) new_primEqNat0(Zero, Zero) -> True new_esEs33(vwx301, vwx401, app(ty_[], dch)) -> new_esEs20(vwx301, vwx401, dch) new_compare13(vwx90, vwx100, False) -> GT new_ltEs8(Right(vwx90), Right(vwx100), cc, ty_Char) -> new_ltEs13(vwx90, vwx100) new_ltEs20(vwx92, vwx102, ty_Float) -> new_ltEs18(vwx92, vwx102) new_esEs28(vwx90, vwx100, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs6(vwx90, vwx100, ha, hb, hc) new_esEs29(vwx301, vwx401, app(app(ty_@2, cdf), cdg)) -> new_esEs5(vwx301, vwx401, cdf, cdg) new_esEs12(vwx90, vwx100, ty_@0) -> new_esEs15(vwx90, vwx100) new_esEs32(vwx302, vwx402, ty_Bool) -> new_esEs14(vwx302, vwx402) new_esEs10(vwx30, vwx40, app(ty_[], caa)) -> new_esEs20(vwx30, vwx40, caa) new_asAs(False, vwx38) -> False new_esEs24(vwx300, vwx400, ty_Integer) -> new_esEs16(vwx300, vwx400) new_esEs29(vwx301, vwx401, app(ty_Maybe, cdd)) -> new_esEs7(vwx301, vwx401, cdd) new_esEs12(vwx90, vwx100, ty_Integer) -> new_esEs16(vwx90, vwx100) new_ltEs20(vwx92, vwx102, app(ty_Maybe, bbh)) -> new_ltEs4(vwx92, vwx102, bbh) new_esEs21(Double(vwx300, vwx301), Double(vwx400, vwx401)) -> new_esEs13(new_sr(vwx300, vwx401), new_sr(vwx301, vwx400)) new_esEs7(Just(vwx300), Just(vwx400), ty_Integer) -> new_esEs16(vwx300, vwx400) new_esEs31(vwx300, vwx400, app(app(ty_Either, cfe), cff)) -> new_esEs11(vwx300, vwx400, cfe, cff) new_compare23(vwx90, vwx100, False, eg) -> new_compare10(vwx90, vwx100, new_ltEs4(vwx90, vwx100, eg), eg) new_lt4(vwx90, vwx100, app(ty_Maybe, eg)) -> new_lt16(vwx90, vwx100, eg) new_esEs7(Just(vwx300), Just(vwx400), ty_@0) -> new_esEs15(vwx300, vwx400) new_ltEs8(Left(vwx90), Left(vwx100), ty_Double, bb) -> new_ltEs17(vwx90, vwx100) new_esEs8(vwx30, vwx40, ty_Bool) -> new_esEs14(vwx30, vwx40) new_ltEs4(Just(vwx90), Just(vwx100), ty_Integer) -> new_ltEs11(vwx90, vwx100) The set Q consists of the following terms: new_esEs28(x0, x1, ty_Int) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Double) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_@0) new_lt20(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare0([], [], x0) new_lt13(x0, x1, x2) new_compare210(x0, x1, True, x2, x3, x4) new_compare31(x0, x1, ty_Float) new_esEs33(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_esEs12(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Int) new_esEs34(x0, x1, ty_@0) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, False, x2, x3) new_esEs34(x0, x1, ty_Char) new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Char) new_ltEs8(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, ty_Double) new_esEs33(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Char) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(Just(x0), Just(x1), ty_Char) new_compare12(x0, x1, True, x2, x3, x4) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs14(True, True) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs4(Just(x0), Just(x1), ty_Ordering) new_esEs34(x0, x1, ty_Int) new_esEs11(Left(x0), Left(x1), ty_Integer, x2) new_esEs8(x0, x1, ty_Float) new_compare25(x0, x1, True) new_asAs(False, x0) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs6(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Char) new_primEqNat0(Zero, Succ(x0)) new_ltEs9(True, True) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, True, x2, x3) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs11(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs21(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Char) new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_lt20(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Double) new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) new_esEs32(x0, x1, ty_Bool) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Int) new_lt20(x0, x1, ty_Double) new_ltEs4(Just(x0), Just(x1), ty_Int) new_esEs20(:(x0, x1), [], x2) new_esEs14(False, True) new_esEs14(True, False) new_compare0([], :(x0, x1), x2) new_lt4(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_ltEs8(Left(x0), Left(x1), ty_Double, x2) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs12(GT, EQ) new_ltEs12(EQ, GT) new_lt4(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_pePe(False, x0) new_compare18(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs4(Just(x0), Just(x1), ty_Double) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs6(x0, x1, ty_Ordering) new_ltEs4(Just(x0), Just(x1), ty_Char) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs17(EQ, GT) new_esEs17(GT, EQ) new_ltEs21(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_compare10(x0, x1, True, x2) new_primMulInt(Pos(x0), Pos(x1)) new_esEs12(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs29(x0, x1, ty_@0) new_primCompAux0(x0, GT) new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, True, x2, x3) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_@0) new_ltEs8(Left(x0), Left(x1), ty_Char, x2) new_lt4(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Ordering) new_compare12(x0, x1, False, x2, x3, x4) new_esEs32(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs11(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs8(Left(x0), Left(x1), ty_@0, x2) new_ltEs8(Left(x0), Left(x1), ty_Int, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt16(x0, x1, x2) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs30(x0, x1, ty_Integer) new_ltEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Char) new_esEs17(LT, GT) new_esEs17(GT, LT) new_esEs12(x0, x1, app(ty_[], x2)) new_ltEs7(x0, x1) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs20([], [], x0) new_esEs33(x0, x1, ty_Float) new_esEs11(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs15(@0, @0) new_ltEs4(Nothing, Nothing, x0) new_compare11(x0, x1, False, x2, x3) new_lt19(x0, x1, ty_Int) new_lt14(x0, x1, x2, x3, x4) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1, x2) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(x0, x1) new_lt4(x0, x1, ty_@0) new_esEs24(x0, x1, ty_Integer) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_compare0(:(x0, x1), [], x2) new_lt19(x0, x1, ty_Char) new_esEs11(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs11(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs25(x0, x1, True, x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Double) new_primCompAux0(x0, LT) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) new_primPlusNat0(Zero, x0) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), ty_Double) new_ltEs6(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Nothing, Nothing, x0) new_lt7(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs12(EQ, LT) new_ltEs12(LT, EQ) new_esEs31(x0, x1, ty_Int) new_ltEs12(GT, GT) new_lt20(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare24(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Integer) new_ltEs6(x0, x1, ty_Float) new_ltEs9(False, True) new_esEs11(Left(x0), Left(x1), ty_@0, x2) new_compare31(x0, x1, app(ty_[], x2)) new_ltEs9(True, False) new_esEs22(Float(x0, x1), Float(x2, x3)) new_esEs32(x0, x1, ty_@0) new_sr(x0, x1) new_lt8(x0, x1) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_compare8(Integer(x0), Integer(x1)) new_esEs32(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(Left(x0), Left(x1), ty_Double, x2) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, ty_Bool) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1, ty_Bool) new_ltEs8(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_Int) new_esEs11(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_compare9(x0, x1, x2, x3, x4) new_esEs10(x0, x1, ty_Ordering) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare7(x0, x1) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_Double) new_lt6(Left(x0), Right(x1), x2, x3) new_lt6(Right(x0), Left(x1), x2, x3) new_compare14(Char(x0), Char(x1)) new_sr0(Integer(x0), Integer(x1)) new_ltEs12(LT, LT) new_lt10(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Bool) new_compare28(x0, x1, False) new_compare23(x0, x1, False, x2) new_ltEs8(Right(x0), Left(x1), x2, x3) new_ltEs6(x0, x1, ty_Int) new_ltEs8(Left(x0), Right(x1), x2, x3) new_esEs28(x0, x1, ty_Ordering) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Int) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, ty_Ordering) new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primPlusNat1(Zero, Succ(x0)) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Float) new_asAs(True, x0) new_esEs10(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Float) new_lt6(Left(x0), Left(x1), x2, x3) new_primEqNat0(Succ(x0), Succ(x1)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs28(x0, x1, ty_Integer) new_compare27(@0, @0) new_ltEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs8(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Int) new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs10(x0, x1, ty_Char) new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare15(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare15(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare11(x0, x1, True, x2, x3) new_primMulNat0(Zero, Succ(x0)) new_primMulNat0(Zero, Zero) new_esEs8(x0, x1, ty_Char) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare31(x0, x1, ty_Ordering) new_lt4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Integer) new_esEs11(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare15(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Ordering) new_esEs11(Right(x0), Right(x1), x2, ty_Char) new_esEs20([], :(x0, x1), x2) new_ltEs19(x0, x1, ty_Float) new_esEs11(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare10(x0, x1, False, x2) new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs4(Just(x0), Just(x1), ty_Float) new_compare23(x0, x1, True, x2) new_esEs11(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(Just(x0), Just(x1), ty_Integer) new_lt6(Right(x0), Right(x1), x2, x3) new_compare31(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, ty_@0) new_compare28(x0, x1, True) new_esEs7(Just(x0), Nothing, x1) new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare15(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_compare26(x0, x1, x2) new_lt4(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs26(x0, x1, True, x2, x3) new_lt4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt4(x0, x1, app(ty_Ratio, x2)) new_not(True) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_compare31(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_compare5(x0, x1, x2, x3) new_lt12(x0, x1) new_ltEs20(x0, x1, ty_@0) new_lt4(x0, x1, ty_Ordering) new_esEs17(LT, EQ) new_esEs17(EQ, LT) new_esEs11(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs32(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_Bool) new_esEs11(Right(x0), Right(x1), x2, ty_Ordering) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Double) new_esEs11(Right(x0), Right(x1), x2, ty_Integer) new_esEs10(x0, x1, ty_@0) new_compare16(x0, x1, False, x2, x3) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs17(GT, GT) new_compare16(x0, x1, True, x2, x3) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs8(Left(x0), Left(x1), ty_Float, x2) new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(Nothing, Just(x0), x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Float) new_esEs11(Right(x0), Right(x1), x2, ty_Bool) new_ltEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs11(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Float) new_lt18(x0, x1) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs12(EQ, EQ) new_esEs17(EQ, EQ) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Float) new_compare13(x0, x1, False) new_primCompAux0(x0, EQ) new_lt19(x0, x1, ty_Integer) new_compare19(x0, x1, False) new_ltEs4(Just(x0), Just(x1), ty_Bool) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs16(Integer(x0), Integer(x1)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare31(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Bool) new_compare31(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_ltEs4(Just(x0), Nothing, x1) new_ltEs11(x0, x1) new_esEs32(x0, x1, ty_Char) new_esEs27(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(Left(x0), Left(x1), ty_Char, x2) new_ltEs16(x0, x1, x2) new_esEs8(x0, x1, ty_Integer) new_esEs12(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Zero) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare19(x0, x1, True) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, False, x2, x3) new_ltEs13(x0, x1) new_esEs30(x0, x1, ty_Double) new_primCmpNat0(Succ(x0), Zero) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare210(x0, x1, False, x2, x3, x4) new_esEs31(x0, x1, ty_Double) new_esEs10(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False) new_esEs11(Left(x0), Right(x1), x2, x3) new_esEs11(Right(x0), Left(x1), x2, x3) new_lt19(x0, x1, ty_Ordering) new_esEs11(Left(x0), Left(x1), ty_Int, x2) new_ltEs14(x0, x1, x2) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare31(x0, x1, ty_Bool) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare31(x0, x1, app(ty_Maybe, x2)) new_compare30(x0, x1) new_compare31(x0, x1, ty_@0) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(Double(x0, x1), Double(x2, x3)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(x0, x1, app(ty_Maybe, x2)) new_esEs11(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, ty_Bool) new_primCompAux1(x0, x1, x2, x3) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_lt4(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs4(Just(x0), Just(x1), ty_@0) new_lt19(x0, x1, ty_Double) new_esEs29(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs17(x0, x1) new_esEs27(x0, x1, ty_Integer) new_esEs11(Left(x0), Left(x1), ty_Ordering, x2) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare31(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_ltEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(x0, x1) new_esEs27(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs8(x0, x1, ty_@0) new_esEs11(Left(x0), Left(x1), ty_Float, x2) new_esEs27(x0, x1, ty_Ordering) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs21(x0, x1, ty_Integer) new_esEs11(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs8(Right(x0), Right(x1), x2, ty_Double) new_compare31(x0, x1, app(ty_Ratio, x2)) new_lt4(x0, x1, ty_Char) new_compare13(x0, x1, True) new_esEs18(Char(x0), Char(x1)) new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) new_primEqNat0(Zero, Zero) new_esEs34(x0, x1, app(ty_[], x2)) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_Double) new_ltEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs11(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Float) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs7(Nothing, Just(x0), x1) new_ltEs9(False, False) new_not(False) new_ltEs21(x0, x1, ty_Ordering) new_lt4(x0, x1, ty_Int) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs17(LT, LT) new_esEs27(x0, x1, ty_Int) new_ltEs8(Right(x0), Right(x1), x2, ty_@0) new_ltEs12(LT, GT) new_ltEs12(GT, LT) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Ordering) new_ltEs18(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs34(x0, x1, ty_Integer) new_esEs12(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1, ty_@0) new_esEs14(False, False) new_primMulNat0(Succ(x0), Zero) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) new_lt19(x0, x1, ty_@0) new_ltEs6(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, False, x2, x3) new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(Right(x0), Right(x1), x2, ty_Float) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_primCmpNat0(Zero, Succ(x0)) new_lt17(x0, x1) new_esEs29(x0, x1, ty_Ordering) new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_lt4(x0, x1, ty_Float) new_lt5(x0, x1) new_esEs27(x0, x1, ty_Bool) new_esEs20(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt11(x0, x1) new_primCmpNat0(Zero, Zero) new_esEs33(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Integer) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Integer) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs11(Left(x0), Left(x1), ty_Bool, x2) new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) 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_lt(Left(vwx30), Left(vwx40), bdc, bdd) -> new_esEs4(vwx30, vwx40, new_esEs8(vwx30, vwx40, bdc), bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_Either, bcb), bcc)) -> new_ltEs(vwx90, vwx100, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare4(vwx90, vwx100, eg) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(Just(vwx90), Just(vwx100), app(app(app(ty_@3, bcf), bcg), bch)) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_lt0(vwx90, vwx100, ea, eb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vwx90), Just(vwx100), app(app(ty_@2, bcd), bce)) -> new_ltEs0(vwx90, vwx100, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(vwx90, vwx100, False, ea, eb) -> new_ltEs0(vwx90, vwx100, ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_primCompAux(vwx90, vwx100, vwx72, app(app(ty_@2, bfa), bfb)) -> new_compare1(vwx90, vwx100, bfa, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vwx90), Just(vwx100), app(ty_[], bda)) -> new_ltEs2(vwx90, vwx100, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vwx90), Just(vwx100), app(ty_Maybe, bdb)) -> new_ltEs3(vwx90, vwx100, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_primCompAux(vwx90, vwx100, new_compare0(vwx91, vwx101, bca), bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare(:(vwx90, vwx91), :(vwx100, vwx101), bca) -> new_compare(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_Either, fa), fb)) -> new_ltEs(vwx91, vwx101, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(app(ty_@2, fc), fd)) -> new_ltEs0(vwx91, vwx101, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_[], ga)) -> new_ltEs2(vwx91, vwx101, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_Either, df), dg), dh) -> new_lt(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_lt(Right(vwx30), Right(vwx40), bdc, bdd) -> new_esEs9(vwx30, vwx40, new_esEs10(vwx30, vwx40, bdd), bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare3(vwx90, vwx100, ec, ed, ee) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt3(vwx90, vwx100, eg) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_lt1(vwx90, vwx100, ec, ed, ee) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), eh, app(ty_Maybe, gb)) -> new_ltEs3(vwx91, vwx101, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_Either, bah), bba)) -> new_ltEs(vwx92, vwx102, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(app(ty_@2, bbb), bbc)) -> new_ltEs0(vwx92, vwx102, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs9(vwx16, vwx17, False, bde, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vwx16, vwx17, bdh, bea) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_[], bbg)) -> new_ltEs2(vwx92, vwx102, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs9(vwx16, vwx17, False, bde, app(ty_[], bee)) -> new_ltEs2(vwx16, vwx17, bee) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, ge, app(ty_Maybe, bbh)) -> new_ltEs3(vwx92, vwx102, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt2(vwx90, vwx100, ef) -> new_compare(vwx90, vwx100, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_Maybe, eg), dh) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_Maybe, eg)), dh), bc) -> new_compare21(vwx90, vwx100, new_esEs7(vwx90, vwx100, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_primCompAux(vwx90, vwx100, vwx72, app(app(ty_Either, beg), beh)) -> new_compare22(vwx90, vwx100, new_esEs11(vwx90, vwx100, beg, beh), beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 4, 4 > 5 *new_compare20(vwx90, vwx100, False, ec, ed, ee) -> new_ltEs1(vwx90, vwx100, ec, ed, ee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_esEs9(vwx16, vwx17, False, bde, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs1(vwx16, vwx17, beb, bec, bed) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare1(vwx90, vwx100, ea, eb) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(app(ty_@3, ec), ed), ee), dh) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(app(ty_@3, ec), ed), ee)), dh), bc) -> new_compare20(vwx90, vwx100, new_esEs6(vwx90, vwx100, ec, ed, ee), ec, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_compare22(vwx90, vwx100, False, beg, beh) -> new_ltEs(vwx90, vwx100, beg, beh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_esEs9(vwx16, vwx17, False, bde, app(app(ty_Either, bdf), bdg)) -> new_ltEs(vwx16, vwx17, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_primCompAux(vwx90, vwx100, vwx72, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_compare3(vwx90, vwx100, bfc, bfd, bfe) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vwx90, vwx100, False, eg) -> new_ltEs3(vwx90, vwx100, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_esEs9(vwx16, vwx17, False, bde, app(ty_Maybe, bef)) -> new_ltEs3(vwx16, vwx17, bef) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(ty_[], ef), dh) -> new_compare(vwx90, vwx100, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vwx90, vwx91), @2(vwx100, vwx101), app(app(ty_@2, ea), eb), dh) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_primCompAux(vwx90, vwx100, vwx72, app(ty_[], bff)) -> new_compare(vwx90, vwx100, bff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vwx90, vwx100, vwx72, app(ty_Maybe, bfg)) -> new_compare4(vwx90, vwx100, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_@2, ea), eb)), dh), bc) -> new_compare2(vwx90, vwx100, new_esEs5(vwx90, vwx100, ea, eb), ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_Either, fa), fb)), bc) -> new_ltEs(vwx91, vwx101, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_Either, cd), ce)), bc) -> new_ltEs(vwx90, vwx100, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_Either, bah), bba)), bc) -> new_ltEs(vwx92, vwx102, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bc) -> new_ltEs(vwx90, vwx100, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_Either, bcb), bcc)), bc) -> new_ltEs(vwx90, vwx100, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_Either, h), ba), bb) -> new_ltEs(vwx90, vwx100, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_Either, cd), ce)) -> new_ltEs(vwx90, vwx100, cd, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(app(ty_@3, bbd), bbe), bbf)), bc) -> new_ltEs1(vwx92, vwx102, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bc) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(app(ty_@3, da), db), dc)), bc) -> new_ltEs1(vwx90, vwx100, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(app(ty_@3, bcf), bcg), bch)), bc) -> new_ltEs1(vwx90, vwx100, bcf, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(app(ty_@3, ff), fg), fh)), bc) -> new_ltEs1(vwx91, vwx101, ff, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vwx90), Left(vwx100), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs1(vwx90, vwx100, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(app(ty_@3, da), db), dc)) -> new_ltEs1(vwx90, vwx100, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(app(ty_@2, bcd), bce)), bc) -> new_ltEs0(vwx90, vwx100, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bc) -> new_ltEs0(vwx90, vwx100, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(app(ty_@2, cf), cg)), bc) -> new_ltEs0(vwx90, vwx100, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(app(ty_@2, fc), fd)), bc) -> new_ltEs0(vwx91, vwx101, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(app(ty_@2, bbb), bbc)), bc) -> new_ltEs0(vwx92, vwx102, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vwx90), Left(vwx100), app(app(ty_@2, bd), be), bb) -> new_ltEs0(vwx90, vwx100, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(app(ty_@2, cf), cg)) -> new_ltEs0(vwx90, vwx100, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_[], ca)), bb), bc) -> new_ltEs2(vwx90, vwx100, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_[], bda)), bc) -> new_ltEs2(vwx90, vwx100, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_[], bbg)), bc) -> new_ltEs2(vwx92, vwx102, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_[], ga)), bc) -> new_ltEs2(vwx91, vwx101, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_[], dd)), bc) -> new_ltEs2(vwx90, vwx100, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx90), Left(vwx100), app(ty_[], ca), bb) -> new_ltEs2(vwx90, vwx100, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_[], dd)) -> new_ltEs2(vwx90, vwx100, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_Either, hg), hh)), gf), bc) -> new_lt(vwx91, vwx101, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_Either, gc), gd)), ge), gf), bc) -> new_lt(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(app(ty_Either, df), dg)), dh), bc) -> new_lt(vwx90, vwx100, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), ge), app(ty_Maybe, bbh)), bc) -> new_ltEs3(vwx92, vwx102, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Right(vwx90), Right(vwx100), False, app(app(ty_Either, cc), app(ty_Maybe, de)), bc) -> new_ltEs3(vwx90, vwx100, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Just(vwx90), Just(vwx100), False, app(ty_Maybe, app(ty_Maybe, bdb)), bc) -> new_ltEs3(vwx90, vwx100, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, eh), app(ty_Maybe, gb)), bc) -> new_ltEs3(vwx91, vwx101, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(Left(vwx90), Left(vwx100), False, app(app(ty_Either, app(ty_Maybe, cb)), bb), bc) -> new_ltEs3(vwx90, vwx100, cb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_[], hd)), ge), gf), bc) -> new_lt2(vwx90, vwx100, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_[], baf)), gf), bc) -> new_lt2(vwx91, vwx101, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(ty_Maybe, he)), ge), gf), bc) -> new_lt3(vwx90, vwx100, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(ty_Maybe, bag)), gf), bc) -> new_lt3(vwx91, vwx101, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(:(vwx90, vwx91), :(vwx100, vwx101), False, app(ty_[], bca), bc) -> new_compare(vwx91, vwx101, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@2(vwx90, vwx91), @2(vwx100, vwx101), False, app(app(ty_@2, app(ty_[], ef)), dh), bc) -> new_compare(vwx90, vwx100, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(app(ty_@3, ha), hb), hc)), ge), gf), bc) -> new_lt1(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(app(ty_@3, bac), bad), bae)), gf), bc) -> new_lt1(vwx91, vwx101, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, hf), app(app(ty_@2, baa), bab)), gf), bc) -> new_lt0(vwx91, vwx101, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs4(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), False, app(app(app(ty_@3, app(app(ty_@2, gg), gh)), ge), gf), bc) -> new_lt0(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_Either, gc), gd), ge, gf) -> new_lt(vwx90, vwx100, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_Either, hg), hh), gf) -> new_lt(vwx91, vwx101, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Right(vwx90), Right(vwx100), cc, app(ty_Maybe, de)) -> new_ltEs3(vwx90, vwx100, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vwx90), Left(vwx100), app(ty_Maybe, cb), bb) -> new_ltEs3(vwx90, vwx100, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_[], baf), gf) -> new_lt2(vwx91, vwx101, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_[], hd), ge, gf) -> new_lt2(vwx90, vwx100, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(ty_Maybe, he), ge, gf) -> new_lt3(vwx90, vwx100, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(ty_Maybe, bag), gf) -> new_lt3(vwx91, vwx101, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(app(ty_@3, bac), bad), bae), gf) -> new_lt1(vwx91, vwx101, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(app(ty_@3, ha), hb), hc), ge, gf) -> new_lt1(vwx90, vwx100, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), hf, app(app(ty_@2, baa), bab), gf) -> new_lt0(vwx91, vwx101, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vwx90, vwx91, vwx92), @3(vwx100, vwx101, vwx102), app(app(ty_@2, gg), gh), ge, gf) -> new_lt0(vwx90, vwx100, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (20) YES ---------------------------------------- (21) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_[], gd)) -> new_esEs0(vwx301, vwx401, gd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(app(ty_@3, bab), bac), bad), he) -> new_esEs3(vwx300, vwx400, bab, bac, bad) 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, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx301, vwx401, gf, gg) 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, eb), ec)) -> new_esEs2(vwx300, vwx400, eb, ec) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], hf), he) -> new_esEs0(vwx300, vwx400, hf) 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, hc), hd), he) -> new_esEs(vwx300, vwx400, hc, hd) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, df), dg)) -> new_esEs(vwx300, vwx400, df, dg) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_[], dh)) -> new_esEs0(vwx300, vwx400, dh) 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), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) 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, hh), baa), he) -> new_esEs2(vwx300, vwx400, hh, baa) 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), de) -> new_esEs0(vwx301, vwx401, de) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bce), bcf), bcb) -> new_esEs2(vwx301, vwx401, bce, bcf) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(ty_Maybe, ea)) -> new_esEs1(vwx300, vwx400, ea) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_[], bdd), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd) new_esEs1(Just(vwx300), Just(vwx400), app(ty_[], fa)) -> new_esEs0(vwx300, vwx400, fa) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbc, bbd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx301, vwx401, gh, ha, hb) new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) 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), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> 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), bae, baf, app(ty_[], bba)) -> new_esEs0(vwx302, vwx402, bba) 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, bdf), bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdf, bdg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcc), bcb) -> new_esEs0(vwx301, vwx401, bcc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(ty_Maybe, bde), baf, bcb) -> new_esEs1(vwx300, vwx400, bde) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx301, vwx401, ge) 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), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vwx301, vwx401, gb, gc) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcd), bcb) -> new_esEs1(vwx301, vwx401, bcd) new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, hg), he) -> new_esEs1(vwx300, vwx400, hg) new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) 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), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx302, vwx402, bbb) 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), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) 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_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_@2, eb), ec)) -> new_esEs2(vwx300, vwx400, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), app(app(ty_Either, df), dg)) -> new_esEs(vwx300, vwx400, df, dg) 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, ed), ee), ef)) -> new_esEs3(vwx300, vwx400, ed, ee, ef) 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, ea)) -> new_esEs1(vwx300, vwx400, ea) 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_[], dh)) -> new_esEs0(vwx300, vwx400, dh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vwx300, vwx301), :(vwx400, vwx401), de) -> new_esEs0(vwx301, vwx401, de) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_@2, bce), bcf), bcb) -> 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), bae, baf, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vwx302, vwx402, bbc, bbd) 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, bdf), bdg), baf, bcb) -> new_esEs2(vwx300, vwx400, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_@2, gf), gg)) -> new_esEs2(vwx301, vwx401, gf, gg) 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, hh), baa), he) -> new_esEs2(vwx300, vwx400, hh, baa) 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), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vwx302, vwx402, bag, bah) 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, bdb), bdc), baf, bcb) -> new_esEs(vwx300, vwx400, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vwx301, vwx401, bbh, bca) 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, bdh), bea), beb), baf, bcb) -> new_esEs3(vwx300, vwx400, bdh, bea, beb) 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), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vwx302, vwx402, bbe, bbf, bbg) 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), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> 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_[], bdd), baf, bcb) -> new_esEs0(vwx300, vwx400, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, baf, app(ty_[], bba)) -> new_esEs0(vwx302, vwx402, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_[], bcc), bcb) -> 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, bde), baf, bcb) -> new_esEs1(vwx300, vwx400, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vwx300, vwx301, vwx302), @3(vwx400, vwx401, vwx402), bae, app(ty_Maybe, bcd), bcb) -> 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), bae, baf, app(ty_Maybe, bbb)) -> new_esEs1(vwx302, vwx402, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(app(ty_Either, hc), hd), he) -> new_esEs(vwx300, vwx400, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(ty_Either, gb), gc)) -> new_esEs(vwx301, vwx401, gb, gc) 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, bab), bac), bad), he) -> new_esEs3(vwx300, vwx400, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vwx301, vwx401, gh, ha, hb) 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), ga, app(ty_[], gd)) -> new_esEs0(vwx301, vwx401, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_[], hf), he) -> new_esEs0(vwx300, vwx400, hf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), ga, app(ty_Maybe, ge)) -> new_esEs1(vwx301, vwx401, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vwx300, vwx301), @2(vwx400, vwx401), app(ty_Maybe, hg), he) -> new_esEs1(vwx300, vwx400, hg) 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 ---------------------------------------- (23) YES ---------------------------------------- (24) 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. ---------------------------------------- (25) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vwx30000), Succ(vwx40100)) -> new_primMulNat(vwx30000, Succ(vwx40100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (26) YES ---------------------------------------- (27) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vwx4700), Succ(vwx401000)) -> new_primPlusNat(vwx4700, 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(vwx4700), Succ(vwx401000)) -> new_primPlusNat(vwx4700, 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