/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) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 13 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 126 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 17 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) 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; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) 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; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) 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 vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " 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 vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare0 x y True = GT; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];2937[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 5[label="",style="solid", color="burlywood", weight=3]; 2938[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="Nothing",fontsize=16,color="green",shape="box"];10 -> 11[label="",style="dashed", color="red", weight=0]; 10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="magenta"];10 -> 12[label="",style="dashed", color="magenta", weight=3]; 10 -> 13[label="",style="dashed", color="magenta", weight=3]; 10 -> 14[label="",style="dashed", color="magenta", weight=3]; 10 -> 15[label="",style="dashed", color="magenta", weight=3]; 10 -> 16[label="",style="dashed", color="magenta", weight=3]; 10 -> 17[label="",style="dashed", color="magenta", weight=3]; 10 -> 18[label="",style="dashed", color="magenta", weight=3]; 12[label="vyw34",fontsize=16,color="green",shape="box"];13[label="vyw33",fontsize=16,color="green",shape="box"];14[label="vyw30",fontsize=16,color="green",shape="box"];15[label="vyw31",fontsize=16,color="green",shape="box"];16[label="vyw4 < vyw30",fontsize=16,color="blue",shape="box"];2939[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 19[label="",style="solid", color="blue", weight=3]; 2940[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 20[label="",style="solid", color="blue", weight=3]; 2941[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 21[label="",style="solid", color="blue", weight=3]; 2942[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 22[label="",style="solid", color="blue", weight=3]; 2943[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 23[label="",style="solid", color="blue", weight=3]; 2944[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 24[label="",style="solid", color="blue", weight=3]; 2945[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 25[label="",style="solid", color="blue", weight=3]; 2946[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 26[label="",style="solid", color="blue", weight=3]; 2947[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 27[label="",style="solid", color="blue", weight=3]; 2948[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 28[label="",style="solid", color="blue", weight=3]; 2949[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 29[label="",style="solid", color="blue", weight=3]; 2950[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 30[label="",style="solid", color="blue", weight=3]; 2951[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 31[label="",style="solid", color="blue", weight=3]; 2952[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 32[label="",style="solid", color="blue", weight=3]; 17[label="vyw32",fontsize=16,color="green",shape="box"];18[label="vyw4",fontsize=16,color="green",shape="box"];11[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 vyw19",fontsize=16,color="burlywood",shape="triangle"];2953[label="vyw19/False",fontsize=10,color="white",style="solid",shape="box"];11 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 33[label="",style="solid", color="burlywood", weight=3]; 2954[label="vyw19/True",fontsize=10,color="white",style="solid",shape="box"];11 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 34[label="",style="solid", color="burlywood", weight=3]; 19[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];19 -> 35[label="",style="solid", color="black", weight=3]; 20[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];20 -> 36[label="",style="solid", color="black", weight=3]; 21[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];21 -> 37[label="",style="solid", color="black", weight=3]; 22[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 23[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="vyw4 < vyw30",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 False",fontsize=16,color="black",shape="box"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 True",fontsize=16,color="black",shape="box"];34 -> 50[label="",style="solid", color="black", weight=3]; 35 -> 191[label="",style="dashed", color="red", weight=0]; 35[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];35 -> 192[label="",style="dashed", color="magenta", weight=3]; 36 -> 191[label="",style="dashed", color="red", weight=0]; 36[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];36 -> 193[label="",style="dashed", color="magenta", weight=3]; 37 -> 191[label="",style="dashed", color="red", weight=0]; 37[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];37 -> 194[label="",style="dashed", color="magenta", weight=3]; 38 -> 191[label="",style="dashed", color="red", weight=0]; 38[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];38 -> 195[label="",style="dashed", color="magenta", weight=3]; 39 -> 191[label="",style="dashed", color="red", weight=0]; 39[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];39 -> 196[label="",style="dashed", color="magenta", weight=3]; 40 -> 191[label="",style="dashed", color="red", weight=0]; 40[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];40 -> 197[label="",style="dashed", color="magenta", weight=3]; 41 -> 191[label="",style="dashed", color="red", weight=0]; 41[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];41 -> 198[label="",style="dashed", color="magenta", weight=3]; 42 -> 191[label="",style="dashed", color="red", weight=0]; 42[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];42 -> 199[label="",style="dashed", color="magenta", weight=3]; 43 -> 191[label="",style="dashed", color="red", weight=0]; 43[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];43 -> 200[label="",style="dashed", color="magenta", weight=3]; 44 -> 191[label="",style="dashed", color="red", weight=0]; 44[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];44 -> 201[label="",style="dashed", color="magenta", weight=3]; 45 -> 191[label="",style="dashed", color="red", weight=0]; 45[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];45 -> 202[label="",style="dashed", color="magenta", weight=3]; 46 -> 191[label="",style="dashed", color="red", weight=0]; 46[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];46 -> 203[label="",style="dashed", color="magenta", weight=3]; 47 -> 191[label="",style="dashed", color="red", weight=0]; 47[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];47 -> 204[label="",style="dashed", color="magenta", weight=3]; 48 -> 191[label="",style="dashed", color="red", weight=0]; 48[label="compare vyw4 vyw30 == LT",fontsize=16,color="magenta"];48 -> 205[label="",style="dashed", color="magenta", weight=3]; 49 -> 66[label="",style="dashed", color="red", weight=0]; 49[label="FiniteMap.lookupFM1 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 (vyw18 > vyw13)",fontsize=16,color="magenta"];49 -> 67[label="",style="dashed", color="magenta", weight=3]; 49 -> 68[label="",style="dashed", color="magenta", weight=3]; 49 -> 69[label="",style="dashed", color="magenta", weight=3]; 49 -> 70[label="",style="dashed", color="magenta", weight=3]; 49 -> 71[label="",style="dashed", color="magenta", weight=3]; 49 -> 72[label="",style="dashed", color="magenta", weight=3]; 49 -> 73[label="",style="dashed", color="magenta", weight=3]; 50 -> 4[label="",style="dashed", color="red", weight=0]; 50[label="FiniteMap.lookupFM vyw16 vyw18",fontsize=16,color="magenta"];50 -> 74[label="",style="dashed", color="magenta", weight=3]; 50 -> 75[label="",style="dashed", color="magenta", weight=3]; 192[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2955[label="vyw4/()",fontsize=10,color="white",style="solid",shape="box"];192 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 231[label="",style="solid", color="burlywood", weight=3]; 191[label="vyw37 == LT",fontsize=16,color="burlywood",shape="triangle"];2956[label="vyw37/LT",fontsize=10,color="white",style="solid",shape="box"];191 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 232[label="",style="solid", color="burlywood", weight=3]; 2957[label="vyw37/EQ",fontsize=10,color="white",style="solid",shape="box"];191 -> 2957[label="",style="solid", color="burlywood", weight=9]; 2957 -> 233[label="",style="solid", color="burlywood", weight=3]; 2958[label="vyw37/GT",fontsize=10,color="white",style="solid",shape="box"];191 -> 2958[label="",style="solid", color="burlywood", weight=9]; 2958 -> 234[label="",style="solid", color="burlywood", weight=3]; 193[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2959[label="vyw4/Integer vyw40",fontsize=10,color="white",style="solid",shape="box"];193 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 235[label="",style="solid", color="burlywood", weight=3]; 194[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];194 -> 236[label="",style="solid", color="black", weight=3]; 195[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];195 -> 237[label="",style="solid", color="black", weight=3]; 196[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];196 -> 238[label="",style="solid", color="black", weight=3]; 197[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];197 -> 239[label="",style="solid", color="black", weight=3]; 198[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];198 -> 240[label="",style="solid", color="black", weight=3]; 199[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];199 -> 241[label="",style="solid", color="black", weight=3]; 200[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];200 -> 242[label="",style="solid", color="black", weight=3]; 201[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];201 -> 243[label="",style="solid", color="black", weight=3]; 202[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2960[label="vyw4/vyw40 : vyw41",fontsize=10,color="white",style="solid",shape="box"];202 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 244[label="",style="solid", color="burlywood", weight=3]; 2961[label="vyw4/[]",fontsize=10,color="white",style="solid",shape="box"];202 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 245[label="",style="solid", color="burlywood", weight=3]; 203[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];203 -> 246[label="",style="solid", color="black", weight=3]; 204[label="compare vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2962[label="vyw4/vyw40 :% vyw41",fontsize=10,color="white",style="solid",shape="box"];204 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 247[label="",style="solid", color="burlywood", weight=3]; 205[label="compare vyw4 vyw30",fontsize=16,color="black",shape="triangle"];205 -> 248[label="",style="solid", color="black", weight=3]; 67[label="vyw14",fontsize=16,color="green",shape="box"];68[label="vyw15",fontsize=16,color="green",shape="box"];69[label="vyw17",fontsize=16,color="green",shape="box"];70[label="vyw13",fontsize=16,color="green",shape="box"];71[label="vyw18 > vyw13",fontsize=16,color="blue",shape="box"];2963[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 94[label="",style="solid", color="blue", weight=3]; 2964[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 95[label="",style="solid", color="blue", weight=3]; 2965[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 96[label="",style="solid", color="blue", weight=3]; 2966[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2966[label="",style="solid", color="blue", weight=9]; 2966 -> 97[label="",style="solid", color="blue", weight=3]; 2967[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2967[label="",style="solid", color="blue", weight=9]; 2967 -> 98[label="",style="solid", color="blue", weight=3]; 2968[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2968[label="",style="solid", color="blue", weight=9]; 2968 -> 99[label="",style="solid", color="blue", weight=3]; 2969[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2969[label="",style="solid", color="blue", weight=9]; 2969 -> 100[label="",style="solid", color="blue", weight=3]; 2970[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2970[label="",style="solid", color="blue", weight=9]; 2970 -> 101[label="",style="solid", color="blue", weight=3]; 2971[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2971[label="",style="solid", color="blue", weight=9]; 2971 -> 102[label="",style="solid", color="blue", weight=3]; 2972[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2972[label="",style="solid", color="blue", weight=9]; 2972 -> 103[label="",style="solid", color="blue", weight=3]; 2973[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 104[label="",style="solid", color="blue", weight=3]; 2974[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 105[label="",style="solid", color="blue", weight=3]; 2975[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 106[label="",style="solid", color="blue", weight=3]; 2976[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];71 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 107[label="",style="solid", color="blue", weight=3]; 72[label="vyw16",fontsize=16,color="green",shape="box"];73[label="vyw18",fontsize=16,color="green",shape="box"];66[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=16,color="burlywood",shape="triangle"];2977[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];66 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 108[label="",style="solid", color="burlywood", weight=3]; 2978[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];66 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 109[label="",style="solid", color="burlywood", weight=3]; 74[label="vyw18",fontsize=16,color="green",shape="box"];75[label="vyw16",fontsize=16,color="green",shape="box"];231[label="compare () vyw30",fontsize=16,color="burlywood",shape="box"];2979[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];231 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 264[label="",style="solid", color="burlywood", weight=3]; 232[label="LT == LT",fontsize=16,color="black",shape="box"];232 -> 265[label="",style="solid", color="black", weight=3]; 233[label="EQ == LT",fontsize=16,color="black",shape="box"];233 -> 266[label="",style="solid", color="black", weight=3]; 234[label="GT == LT",fontsize=16,color="black",shape="box"];234 -> 267[label="",style="solid", color="black", weight=3]; 235[label="compare (Integer vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];2980[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];235 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 268[label="",style="solid", color="burlywood", weight=3]; 236[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];236 -> 269[label="",style="solid", color="black", weight=3]; 237[label="primCmpDouble vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];2981[label="vyw4/Double vyw40 vyw41",fontsize=10,color="white",style="solid",shape="box"];237 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 270[label="",style="solid", color="burlywood", weight=3]; 238[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];238 -> 271[label="",style="solid", color="black", weight=3]; 239[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];239 -> 272[label="",style="solid", color="black", weight=3]; 240[label="primCmpInt vyw4 vyw30",fontsize=16,color="burlywood",shape="triangle"];2982[label="vyw4/Pos vyw40",fontsize=10,color="white",style="solid",shape="box"];240 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 273[label="",style="solid", color="burlywood", weight=3]; 2983[label="vyw4/Neg vyw40",fontsize=10,color="white",style="solid",shape="box"];240 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 274[label="",style="solid", color="burlywood", weight=3]; 241[label="primCmpFloat vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];2984[label="vyw4/Float vyw40 vyw41",fontsize=10,color="white",style="solid",shape="box"];241 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 275[label="",style="solid", color="burlywood", weight=3]; 242[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];242 -> 276[label="",style="solid", color="black", weight=3]; 243[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];243 -> 277[label="",style="solid", color="black", weight=3]; 244[label="compare (vyw40 : vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];2985[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];244 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 278[label="",style="solid", color="burlywood", weight=3]; 2986[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];244 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 279[label="",style="solid", color="burlywood", weight=3]; 245[label="compare [] vyw30",fontsize=16,color="burlywood",shape="box"];2987[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];245 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 280[label="",style="solid", color="burlywood", weight=3]; 2988[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];245 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 281[label="",style="solid", color="burlywood", weight=3]; 246[label="primCmpChar vyw4 vyw30",fontsize=16,color="burlywood",shape="box"];2989[label="vyw4/Char vyw40",fontsize=10,color="white",style="solid",shape="box"];246 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 282[label="",style="solid", color="burlywood", weight=3]; 247[label="compare (vyw40 :% vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];2990[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];247 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 283[label="",style="solid", color="burlywood", weight=3]; 248[label="compare3 vyw4 vyw30",fontsize=16,color="black",shape="box"];248 -> 284[label="",style="solid", color="black", weight=3]; 94[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];94 -> 137[label="",style="solid", color="black", weight=3]; 95[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];95 -> 138[label="",style="solid", color="black", weight=3]; 96[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];96 -> 139[label="",style="solid", color="black", weight=3]; 97[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];97 -> 140[label="",style="solid", color="black", weight=3]; 98[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];98 -> 141[label="",style="solid", color="black", weight=3]; 99[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];99 -> 142[label="",style="solid", color="black", weight=3]; 100[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];100 -> 143[label="",style="solid", color="black", weight=3]; 101[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];101 -> 144[label="",style="solid", color="black", weight=3]; 102[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];102 -> 145[label="",style="solid", color="black", weight=3]; 103[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];103 -> 146[label="",style="solid", color="black", weight=3]; 104[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];104 -> 147[label="",style="solid", color="black", weight=3]; 105[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];105 -> 148[label="",style="solid", color="black", weight=3]; 106[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];106 -> 149[label="",style="solid", color="black", weight=3]; 107[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];107 -> 150[label="",style="solid", color="black", weight=3]; 108[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 False",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 109[label="FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 264[label="compare () ()",fontsize=16,color="black",shape="box"];264 -> 319[label="",style="solid", color="black", weight=3]; 265[label="True",fontsize=16,color="green",shape="box"];266[label="False",fontsize=16,color="green",shape="box"];267[label="False",fontsize=16,color="green",shape="box"];268[label="compare (Integer vyw40) (Integer vyw300)",fontsize=16,color="black",shape="box"];268 -> 320[label="",style="solid", color="black", weight=3]; 269[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];2991[label="vyw4/False",fontsize=10,color="white",style="solid",shape="box"];269 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 321[label="",style="solid", color="burlywood", weight=3]; 2992[label="vyw4/True",fontsize=10,color="white",style="solid",shape="box"];269 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 322[label="",style="solid", color="burlywood", weight=3]; 270[label="primCmpDouble (Double vyw40 vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];2993[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];270 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 323[label="",style="solid", color="burlywood", weight=3]; 2994[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];270 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 324[label="",style="solid", color="burlywood", weight=3]; 271[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];2995[label="vyw4/(vyw40,vyw41,vyw42)",fontsize=10,color="white",style="solid",shape="box"];271 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 325[label="",style="solid", color="burlywood", weight=3]; 272[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];2996[label="vyw4/(vyw40,vyw41)",fontsize=10,color="white",style="solid",shape="box"];272 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 326[label="",style="solid", color="burlywood", weight=3]; 273[label="primCmpInt (Pos vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];2997[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];273 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 327[label="",style="solid", color="burlywood", weight=3]; 2998[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];273 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 328[label="",style="solid", color="burlywood", weight=3]; 274[label="primCmpInt (Neg vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];2999[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];274 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 329[label="",style="solid", color="burlywood", weight=3]; 3000[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];274 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 330[label="",style="solid", color="burlywood", weight=3]; 275[label="primCmpFloat (Float vyw40 vyw41) vyw30",fontsize=16,color="burlywood",shape="box"];3001[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];275 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 331[label="",style="solid", color="burlywood", weight=3]; 3002[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];275 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 332[label="",style="solid", color="burlywood", weight=3]; 276[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3003[label="vyw4/Left vyw40",fontsize=10,color="white",style="solid",shape="box"];276 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 333[label="",style="solid", color="burlywood", weight=3]; 3004[label="vyw4/Right vyw40",fontsize=10,color="white",style="solid",shape="box"];276 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 334[label="",style="solid", color="burlywood", weight=3]; 277[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3005[label="vyw4/LT",fontsize=10,color="white",style="solid",shape="box"];277 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 335[label="",style="solid", color="burlywood", weight=3]; 3006[label="vyw4/EQ",fontsize=10,color="white",style="solid",shape="box"];277 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 336[label="",style="solid", color="burlywood", weight=3]; 3007[label="vyw4/GT",fontsize=10,color="white",style="solid",shape="box"];277 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 337[label="",style="solid", color="burlywood", weight=3]; 278[label="compare (vyw40 : vyw41) (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];278 -> 338[label="",style="solid", color="black", weight=3]; 279[label="compare (vyw40 : vyw41) []",fontsize=16,color="black",shape="box"];279 -> 339[label="",style="solid", color="black", weight=3]; 280[label="compare [] (vyw300 : vyw301)",fontsize=16,color="black",shape="box"];280 -> 340[label="",style="solid", color="black", weight=3]; 281[label="compare [] []",fontsize=16,color="black",shape="box"];281 -> 341[label="",style="solid", color="black", weight=3]; 282[label="primCmpChar (Char vyw40) vyw30",fontsize=16,color="burlywood",shape="box"];3008[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];282 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 342[label="",style="solid", color="burlywood", weight=3]; 283[label="compare (vyw40 :% vyw41) (vyw300 :% vyw301)",fontsize=16,color="black",shape="box"];283 -> 343[label="",style="solid", color="black", weight=3]; 284[label="compare2 vyw4 vyw30 (vyw4 == vyw30)",fontsize=16,color="burlywood",shape="box"];3009[label="vyw4/Nothing",fontsize=10,color="white",style="solid",shape="box"];284 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 344[label="",style="solid", color="burlywood", weight=3]; 3010[label="vyw4/Just vyw40",fontsize=10,color="white",style="solid",shape="box"];284 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 345[label="",style="solid", color="burlywood", weight=3]; 137 -> 249[label="",style="dashed", color="red", weight=0]; 137[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];137 -> 250[label="",style="dashed", color="magenta", weight=3]; 138 -> 249[label="",style="dashed", color="red", weight=0]; 138[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];138 -> 251[label="",style="dashed", color="magenta", weight=3]; 139 -> 249[label="",style="dashed", color="red", weight=0]; 139[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];139 -> 252[label="",style="dashed", color="magenta", weight=3]; 140 -> 249[label="",style="dashed", color="red", weight=0]; 140[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];140 -> 253[label="",style="dashed", color="magenta", weight=3]; 141 -> 249[label="",style="dashed", color="red", weight=0]; 141[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];141 -> 254[label="",style="dashed", color="magenta", weight=3]; 142 -> 249[label="",style="dashed", color="red", weight=0]; 142[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];142 -> 255[label="",style="dashed", color="magenta", weight=3]; 143 -> 249[label="",style="dashed", color="red", weight=0]; 143[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];143 -> 256[label="",style="dashed", color="magenta", weight=3]; 144 -> 249[label="",style="dashed", color="red", weight=0]; 144[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];144 -> 257[label="",style="dashed", color="magenta", weight=3]; 145 -> 249[label="",style="dashed", color="red", weight=0]; 145[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];145 -> 258[label="",style="dashed", color="magenta", weight=3]; 146 -> 249[label="",style="dashed", color="red", weight=0]; 146[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];146 -> 259[label="",style="dashed", color="magenta", weight=3]; 147 -> 249[label="",style="dashed", color="red", weight=0]; 147[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];147 -> 260[label="",style="dashed", color="magenta", weight=3]; 148 -> 249[label="",style="dashed", color="red", weight=0]; 148[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];148 -> 261[label="",style="dashed", color="magenta", weight=3]; 149 -> 249[label="",style="dashed", color="red", weight=0]; 149[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];149 -> 262[label="",style="dashed", color="magenta", weight=3]; 150 -> 249[label="",style="dashed", color="red", weight=0]; 150[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];150 -> 263[label="",style="dashed", color="magenta", weight=3]; 151[label="FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 otherwise",fontsize=16,color="black",shape="box"];151 -> 285[label="",style="solid", color="black", weight=3]; 152 -> 4[label="",style="dashed", color="red", weight=0]; 152[label="FiniteMap.lookupFM vyw32 vyw33",fontsize=16,color="magenta"];152 -> 286[label="",style="dashed", color="magenta", weight=3]; 152 -> 287[label="",style="dashed", color="magenta", weight=3]; 319[label="EQ",fontsize=16,color="green",shape="box"];320 -> 240[label="",style="dashed", color="red", weight=0]; 320[label="primCmpInt vyw40 vyw300",fontsize=16,color="magenta"];320 -> 350[label="",style="dashed", color="magenta", weight=3]; 320 -> 351[label="",style="dashed", color="magenta", weight=3]; 321[label="compare2 False vyw30 (False == vyw30)",fontsize=16,color="burlywood",shape="box"];3011[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];321 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 352[label="",style="solid", color="burlywood", weight=3]; 3012[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];321 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 353[label="",style="solid", color="burlywood", weight=3]; 322[label="compare2 True vyw30 (True == vyw30)",fontsize=16,color="burlywood",shape="box"];3013[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];322 -> 3013[label="",style="solid", color="burlywood", weight=9]; 3013 -> 354[label="",style="solid", color="burlywood", weight=3]; 3014[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];322 -> 3014[label="",style="solid", color="burlywood", weight=9]; 3014 -> 355[label="",style="solid", color="burlywood", weight=3]; 323[label="primCmpDouble (Double vyw40 (Pos vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3015[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];323 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 356[label="",style="solid", color="burlywood", weight=3]; 324[label="primCmpDouble (Double vyw40 (Neg vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3016[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];324 -> 3016[label="",style="solid", color="burlywood", weight=9]; 3016 -> 357[label="",style="solid", color="burlywood", weight=3]; 325[label="compare2 (vyw40,vyw41,vyw42) vyw30 ((vyw40,vyw41,vyw42) == vyw30)",fontsize=16,color="burlywood",shape="box"];3017[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];325 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 358[label="",style="solid", color="burlywood", weight=3]; 326[label="compare2 (vyw40,vyw41) vyw30 ((vyw40,vyw41) == vyw30)",fontsize=16,color="burlywood",shape="box"];3018[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];326 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 359[label="",style="solid", color="burlywood", weight=3]; 327[label="primCmpInt (Pos (Succ vyw400)) vyw30",fontsize=16,color="burlywood",shape="box"];3019[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];327 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 360[label="",style="solid", color="burlywood", weight=3]; 3020[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];327 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 361[label="",style="solid", color="burlywood", weight=3]; 328[label="primCmpInt (Pos Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3021[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];328 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 362[label="",style="solid", color="burlywood", weight=3]; 3022[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];328 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 363[label="",style="solid", color="burlywood", weight=3]; 329[label="primCmpInt (Neg (Succ vyw400)) vyw30",fontsize=16,color="burlywood",shape="box"];3023[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];329 -> 3023[label="",style="solid", color="burlywood", weight=9]; 3023 -> 364[label="",style="solid", color="burlywood", weight=3]; 3024[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];329 -> 3024[label="",style="solid", color="burlywood", weight=9]; 3024 -> 365[label="",style="solid", color="burlywood", weight=3]; 330[label="primCmpInt (Neg Zero) vyw30",fontsize=16,color="burlywood",shape="box"];3025[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];330 -> 3025[label="",style="solid", color="burlywood", weight=9]; 3025 -> 366[label="",style="solid", color="burlywood", weight=3]; 3026[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];330 -> 3026[label="",style="solid", color="burlywood", weight=9]; 3026 -> 367[label="",style="solid", color="burlywood", weight=3]; 331[label="primCmpFloat (Float vyw40 (Pos vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3027[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];331 -> 3027[label="",style="solid", color="burlywood", weight=9]; 3027 -> 368[label="",style="solid", color="burlywood", weight=3]; 332[label="primCmpFloat (Float vyw40 (Neg vyw410)) vyw30",fontsize=16,color="burlywood",shape="box"];3028[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];332 -> 3028[label="",style="solid", color="burlywood", weight=9]; 3028 -> 369[label="",style="solid", color="burlywood", weight=3]; 333[label="compare2 (Left vyw40) vyw30 (Left vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3029[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];333 -> 3029[label="",style="solid", color="burlywood", weight=9]; 3029 -> 370[label="",style="solid", color="burlywood", weight=3]; 3030[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];333 -> 3030[label="",style="solid", color="burlywood", weight=9]; 3030 -> 371[label="",style="solid", color="burlywood", weight=3]; 334[label="compare2 (Right vyw40) vyw30 (Right vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3031[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];334 -> 3031[label="",style="solid", color="burlywood", weight=9]; 3031 -> 372[label="",style="solid", color="burlywood", weight=3]; 3032[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];334 -> 3032[label="",style="solid", color="burlywood", weight=9]; 3032 -> 373[label="",style="solid", color="burlywood", weight=3]; 335[label="compare2 LT vyw30 (LT == vyw30)",fontsize=16,color="burlywood",shape="box"];3033[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];335 -> 3033[label="",style="solid", color="burlywood", weight=9]; 3033 -> 374[label="",style="solid", color="burlywood", weight=3]; 3034[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];335 -> 3034[label="",style="solid", color="burlywood", weight=9]; 3034 -> 375[label="",style="solid", color="burlywood", weight=3]; 3035[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];335 -> 3035[label="",style="solid", color="burlywood", weight=9]; 3035 -> 376[label="",style="solid", color="burlywood", weight=3]; 336[label="compare2 EQ vyw30 (EQ == vyw30)",fontsize=16,color="burlywood",shape="box"];3036[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];336 -> 3036[label="",style="solid", color="burlywood", weight=9]; 3036 -> 377[label="",style="solid", color="burlywood", weight=3]; 3037[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];336 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 378[label="",style="solid", color="burlywood", weight=3]; 3038[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];336 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 379[label="",style="solid", color="burlywood", weight=3]; 337[label="compare2 GT vyw30 (GT == vyw30)",fontsize=16,color="burlywood",shape="box"];3039[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];337 -> 3039[label="",style="solid", color="burlywood", weight=9]; 3039 -> 380[label="",style="solid", color="burlywood", weight=3]; 3040[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];337 -> 3040[label="",style="solid", color="burlywood", weight=9]; 3040 -> 381[label="",style="solid", color="burlywood", weight=3]; 3041[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];337 -> 3041[label="",style="solid", color="burlywood", weight=9]; 3041 -> 382[label="",style="solid", color="burlywood", weight=3]; 338 -> 383[label="",style="dashed", color="red", weight=0]; 338[label="primCompAux vyw40 vyw300 (compare vyw41 vyw301)",fontsize=16,color="magenta"];338 -> 384[label="",style="dashed", color="magenta", weight=3]; 339[label="GT",fontsize=16,color="green",shape="box"];340[label="LT",fontsize=16,color="green",shape="box"];341[label="EQ",fontsize=16,color="green",shape="box"];342[label="primCmpChar (Char vyw40) (Char vyw300)",fontsize=16,color="black",shape="box"];342 -> 385[label="",style="solid", color="black", weight=3]; 343[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="blue",shape="box"];3042[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];343 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 386[label="",style="solid", color="blue", weight=3]; 3043[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];343 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 387[label="",style="solid", color="blue", weight=3]; 344[label="compare2 Nothing vyw30 (Nothing == vyw30)",fontsize=16,color="burlywood",shape="box"];3044[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];344 -> 3044[label="",style="solid", color="burlywood", weight=9]; 3044 -> 388[label="",style="solid", color="burlywood", weight=3]; 3045[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];344 -> 3045[label="",style="solid", color="burlywood", weight=9]; 3045 -> 389[label="",style="solid", color="burlywood", weight=3]; 345[label="compare2 (Just vyw40) vyw30 (Just vyw40 == vyw30)",fontsize=16,color="burlywood",shape="box"];3046[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];345 -> 3046[label="",style="solid", color="burlywood", weight=9]; 3046 -> 390[label="",style="solid", color="burlywood", weight=3]; 3047[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];345 -> 3047[label="",style="solid", color="burlywood", weight=9]; 3047 -> 391[label="",style="solid", color="burlywood", weight=3]; 250 -> 192[label="",style="dashed", color="red", weight=0]; 250[label="compare vyw18 vyw13",fontsize=16,color="magenta"];250 -> 288[label="",style="dashed", color="magenta", weight=3]; 250 -> 289[label="",style="dashed", color="magenta", weight=3]; 249[label="vyw38 == GT",fontsize=16,color="burlywood",shape="triangle"];3048[label="vyw38/LT",fontsize=10,color="white",style="solid",shape="box"];249 -> 3048[label="",style="solid", color="burlywood", weight=9]; 3048 -> 290[label="",style="solid", color="burlywood", weight=3]; 3049[label="vyw38/EQ",fontsize=10,color="white",style="solid",shape="box"];249 -> 3049[label="",style="solid", color="burlywood", weight=9]; 3049 -> 291[label="",style="solid", color="burlywood", weight=3]; 3050[label="vyw38/GT",fontsize=10,color="white",style="solid",shape="box"];249 -> 3050[label="",style="solid", color="burlywood", weight=9]; 3050 -> 292[label="",style="solid", color="burlywood", weight=3]; 251 -> 193[label="",style="dashed", color="red", weight=0]; 251[label="compare vyw18 vyw13",fontsize=16,color="magenta"];251 -> 293[label="",style="dashed", color="magenta", weight=3]; 251 -> 294[label="",style="dashed", color="magenta", weight=3]; 252 -> 194[label="",style="dashed", color="red", weight=0]; 252[label="compare vyw18 vyw13",fontsize=16,color="magenta"];252 -> 295[label="",style="dashed", color="magenta", weight=3]; 252 -> 296[label="",style="dashed", color="magenta", weight=3]; 253 -> 195[label="",style="dashed", color="red", weight=0]; 253[label="compare vyw18 vyw13",fontsize=16,color="magenta"];253 -> 297[label="",style="dashed", color="magenta", weight=3]; 253 -> 298[label="",style="dashed", color="magenta", weight=3]; 254 -> 196[label="",style="dashed", color="red", weight=0]; 254[label="compare vyw18 vyw13",fontsize=16,color="magenta"];254 -> 299[label="",style="dashed", color="magenta", weight=3]; 254 -> 300[label="",style="dashed", color="magenta", weight=3]; 255 -> 197[label="",style="dashed", color="red", weight=0]; 255[label="compare vyw18 vyw13",fontsize=16,color="magenta"];255 -> 301[label="",style="dashed", color="magenta", weight=3]; 255 -> 302[label="",style="dashed", color="magenta", weight=3]; 256 -> 198[label="",style="dashed", color="red", weight=0]; 256[label="compare vyw18 vyw13",fontsize=16,color="magenta"];256 -> 303[label="",style="dashed", color="magenta", weight=3]; 256 -> 304[label="",style="dashed", color="magenta", weight=3]; 257 -> 199[label="",style="dashed", color="red", weight=0]; 257[label="compare vyw18 vyw13",fontsize=16,color="magenta"];257 -> 305[label="",style="dashed", color="magenta", weight=3]; 257 -> 306[label="",style="dashed", color="magenta", weight=3]; 258 -> 200[label="",style="dashed", color="red", weight=0]; 258[label="compare vyw18 vyw13",fontsize=16,color="magenta"];258 -> 307[label="",style="dashed", color="magenta", weight=3]; 258 -> 308[label="",style="dashed", color="magenta", weight=3]; 259 -> 201[label="",style="dashed", color="red", weight=0]; 259[label="compare vyw18 vyw13",fontsize=16,color="magenta"];259 -> 309[label="",style="dashed", color="magenta", weight=3]; 259 -> 310[label="",style="dashed", color="magenta", weight=3]; 260 -> 202[label="",style="dashed", color="red", weight=0]; 260[label="compare vyw18 vyw13",fontsize=16,color="magenta"];260 -> 311[label="",style="dashed", color="magenta", weight=3]; 260 -> 312[label="",style="dashed", color="magenta", weight=3]; 261 -> 203[label="",style="dashed", color="red", weight=0]; 261[label="compare vyw18 vyw13",fontsize=16,color="magenta"];261 -> 313[label="",style="dashed", color="magenta", weight=3]; 261 -> 314[label="",style="dashed", color="magenta", weight=3]; 262 -> 204[label="",style="dashed", color="red", weight=0]; 262[label="compare vyw18 vyw13",fontsize=16,color="magenta"];262 -> 315[label="",style="dashed", color="magenta", weight=3]; 262 -> 316[label="",style="dashed", color="magenta", weight=3]; 263 -> 205[label="",style="dashed", color="red", weight=0]; 263[label="compare vyw18 vyw13",fontsize=16,color="magenta"];263 -> 317[label="",style="dashed", color="magenta", weight=3]; 263 -> 318[label="",style="dashed", color="magenta", weight=3]; 285[label="FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True",fontsize=16,color="black",shape="box"];285 -> 346[label="",style="solid", color="black", weight=3]; 286[label="vyw33",fontsize=16,color="green",shape="box"];287[label="vyw32",fontsize=16,color="green",shape="box"];350[label="vyw300",fontsize=16,color="green",shape="box"];351[label="vyw40",fontsize=16,color="green",shape="box"];352[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];352 -> 392[label="",style="solid", color="black", weight=3]; 353[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];353 -> 393[label="",style="solid", color="black", weight=3]; 354[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];354 -> 394[label="",style="solid", color="black", weight=3]; 355[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];355 -> 395[label="",style="solid", color="black", weight=3]; 356[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3051[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3051[label="",style="solid", color="burlywood", weight=9]; 3051 -> 396[label="",style="solid", color="burlywood", weight=3]; 3052[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];356 -> 3052[label="",style="solid", color="burlywood", weight=9]; 3052 -> 397[label="",style="solid", color="burlywood", weight=3]; 357[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3053[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];357 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 398[label="",style="solid", color="burlywood", weight=3]; 3054[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];357 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 399[label="",style="solid", color="burlywood", weight=3]; 358[label="compare2 (vyw40,vyw41,vyw42) (vyw300,vyw301,vyw302) ((vyw40,vyw41,vyw42) == (vyw300,vyw301,vyw302))",fontsize=16,color="black",shape="box"];358 -> 400[label="",style="solid", color="black", weight=3]; 359[label="compare2 (vyw40,vyw41) (vyw300,vyw301) ((vyw40,vyw41) == (vyw300,vyw301))",fontsize=16,color="black",shape="box"];359 -> 401[label="",style="solid", color="black", weight=3]; 360[label="primCmpInt (Pos (Succ vyw400)) (Pos vyw300)",fontsize=16,color="black",shape="box"];360 -> 402[label="",style="solid", color="black", weight=3]; 361[label="primCmpInt (Pos (Succ vyw400)) (Neg vyw300)",fontsize=16,color="black",shape="box"];361 -> 403[label="",style="solid", color="black", weight=3]; 362[label="primCmpInt (Pos Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3055[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];362 -> 3055[label="",style="solid", color="burlywood", weight=9]; 3055 -> 404[label="",style="solid", color="burlywood", weight=3]; 3056[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];362 -> 3056[label="",style="solid", color="burlywood", weight=9]; 3056 -> 405[label="",style="solid", color="burlywood", weight=3]; 363[label="primCmpInt (Pos Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3057[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];363 -> 3057[label="",style="solid", color="burlywood", weight=9]; 3057 -> 406[label="",style="solid", color="burlywood", weight=3]; 3058[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];363 -> 3058[label="",style="solid", color="burlywood", weight=9]; 3058 -> 407[label="",style="solid", color="burlywood", weight=3]; 364[label="primCmpInt (Neg (Succ vyw400)) (Pos vyw300)",fontsize=16,color="black",shape="box"];364 -> 408[label="",style="solid", color="black", weight=3]; 365[label="primCmpInt (Neg (Succ vyw400)) (Neg vyw300)",fontsize=16,color="black",shape="box"];365 -> 409[label="",style="solid", color="black", weight=3]; 366[label="primCmpInt (Neg Zero) (Pos vyw300)",fontsize=16,color="burlywood",shape="box"];3059[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];366 -> 3059[label="",style="solid", color="burlywood", weight=9]; 3059 -> 410[label="",style="solid", color="burlywood", weight=3]; 3060[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];366 -> 3060[label="",style="solid", color="burlywood", weight=9]; 3060 -> 411[label="",style="solid", color="burlywood", weight=3]; 367[label="primCmpInt (Neg Zero) (Neg vyw300)",fontsize=16,color="burlywood",shape="box"];3061[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];367 -> 3061[label="",style="solid", color="burlywood", weight=9]; 3061 -> 412[label="",style="solid", color="burlywood", weight=3]; 3062[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];367 -> 3062[label="",style="solid", color="burlywood", weight=9]; 3062 -> 413[label="",style="solid", color="burlywood", weight=3]; 368[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3063[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];368 -> 3063[label="",style="solid", color="burlywood", weight=9]; 3063 -> 414[label="",style="solid", color="burlywood", weight=3]; 3064[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];368 -> 3064[label="",style="solid", color="burlywood", weight=9]; 3064 -> 415[label="",style="solid", color="burlywood", weight=3]; 369[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 vyw301)",fontsize=16,color="burlywood",shape="box"];3065[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];369 -> 3065[label="",style="solid", color="burlywood", weight=9]; 3065 -> 416[label="",style="solid", color="burlywood", weight=3]; 3066[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];369 -> 3066[label="",style="solid", color="burlywood", weight=9]; 3066 -> 417[label="",style="solid", color="burlywood", weight=3]; 370[label="compare2 (Left vyw40) (Left vyw300) (Left vyw40 == Left vyw300)",fontsize=16,color="black",shape="box"];370 -> 418[label="",style="solid", color="black", weight=3]; 371[label="compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300)",fontsize=16,color="black",shape="box"];371 -> 419[label="",style="solid", color="black", weight=3]; 372[label="compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300)",fontsize=16,color="black",shape="box"];372 -> 420[label="",style="solid", color="black", weight=3]; 373[label="compare2 (Right vyw40) (Right vyw300) (Right vyw40 == Right vyw300)",fontsize=16,color="black",shape="box"];373 -> 421[label="",style="solid", color="black", weight=3]; 374[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];374 -> 422[label="",style="solid", color="black", weight=3]; 375[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];375 -> 423[label="",style="solid", color="black", weight=3]; 376[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];376 -> 424[label="",style="solid", color="black", weight=3]; 377[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];377 -> 425[label="",style="solid", color="black", weight=3]; 378[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];378 -> 426[label="",style="solid", color="black", weight=3]; 379[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];379 -> 427[label="",style="solid", color="black", weight=3]; 380[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];380 -> 428[label="",style="solid", color="black", weight=3]; 381[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];381 -> 429[label="",style="solid", color="black", weight=3]; 382[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];382 -> 430[label="",style="solid", color="black", weight=3]; 384 -> 202[label="",style="dashed", color="red", weight=0]; 384[label="compare vyw41 vyw301",fontsize=16,color="magenta"];384 -> 431[label="",style="dashed", color="magenta", weight=3]; 384 -> 432[label="",style="dashed", color="magenta", weight=3]; 383[label="primCompAux vyw40 vyw300 vyw39",fontsize=16,color="black",shape="triangle"];383 -> 433[label="",style="solid", color="black", weight=3]; 385[label="primCmpNat vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3067[label="vyw40/Succ vyw400",fontsize=10,color="white",style="solid",shape="box"];385 -> 3067[label="",style="solid", color="burlywood", weight=9]; 3067 -> 434[label="",style="solid", color="burlywood", weight=3]; 3068[label="vyw40/Zero",fontsize=10,color="white",style="solid",shape="box"];385 -> 3068[label="",style="solid", color="burlywood", weight=9]; 3068 -> 435[label="",style="solid", color="burlywood", weight=3]; 386 -> 193[label="",style="dashed", color="red", weight=0]; 386[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="magenta"];386 -> 436[label="",style="dashed", color="magenta", weight=3]; 386 -> 437[label="",style="dashed", color="magenta", weight=3]; 387 -> 198[label="",style="dashed", color="red", weight=0]; 387[label="compare (vyw40 * vyw301) (vyw300 * vyw41)",fontsize=16,color="magenta"];387 -> 438[label="",style="dashed", color="magenta", weight=3]; 387 -> 439[label="",style="dashed", color="magenta", weight=3]; 388[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];388 -> 440[label="",style="solid", color="black", weight=3]; 389[label="compare2 Nothing (Just vyw300) (Nothing == Just vyw300)",fontsize=16,color="black",shape="box"];389 -> 441[label="",style="solid", color="black", weight=3]; 390[label="compare2 (Just vyw40) Nothing (Just vyw40 == Nothing)",fontsize=16,color="black",shape="box"];390 -> 442[label="",style="solid", color="black", weight=3]; 391[label="compare2 (Just vyw40) (Just vyw300) (Just vyw40 == Just vyw300)",fontsize=16,color="black",shape="box"];391 -> 443[label="",style="solid", color="black", weight=3]; 288[label="vyw13",fontsize=16,color="green",shape="box"];289[label="vyw18",fontsize=16,color="green",shape="box"];290[label="LT == GT",fontsize=16,color="black",shape="box"];290 -> 347[label="",style="solid", color="black", weight=3]; 291[label="EQ == GT",fontsize=16,color="black",shape="box"];291 -> 348[label="",style="solid", color="black", weight=3]; 292[label="GT == GT",fontsize=16,color="black",shape="box"];292 -> 349[label="",style="solid", color="black", weight=3]; 293[label="vyw13",fontsize=16,color="green",shape="box"];294[label="vyw18",fontsize=16,color="green",shape="box"];295[label="vyw13",fontsize=16,color="green",shape="box"];296[label="vyw18",fontsize=16,color="green",shape="box"];297[label="vyw13",fontsize=16,color="green",shape="box"];298[label="vyw18",fontsize=16,color="green",shape="box"];299[label="vyw13",fontsize=16,color="green",shape="box"];300[label="vyw18",fontsize=16,color="green",shape="box"];301[label="vyw13",fontsize=16,color="green",shape="box"];302[label="vyw18",fontsize=16,color="green",shape="box"];303[label="vyw13",fontsize=16,color="green",shape="box"];304[label="vyw18",fontsize=16,color="green",shape="box"];305[label="vyw13",fontsize=16,color="green",shape="box"];306[label="vyw18",fontsize=16,color="green",shape="box"];307[label="vyw13",fontsize=16,color="green",shape="box"];308[label="vyw18",fontsize=16,color="green",shape="box"];309[label="vyw13",fontsize=16,color="green",shape="box"];310[label="vyw18",fontsize=16,color="green",shape="box"];311[label="vyw13",fontsize=16,color="green",shape="box"];312[label="vyw18",fontsize=16,color="green",shape="box"];313[label="vyw13",fontsize=16,color="green",shape="box"];314[label="vyw18",fontsize=16,color="green",shape="box"];315[label="vyw13",fontsize=16,color="green",shape="box"];316[label="vyw18",fontsize=16,color="green",shape="box"];317[label="vyw13",fontsize=16,color="green",shape="box"];318[label="vyw18",fontsize=16,color="green",shape="box"];346[label="Just vyw29",fontsize=16,color="green",shape="box"];392[label="compare2 False False True",fontsize=16,color="black",shape="box"];392 -> 444[label="",style="solid", color="black", weight=3]; 393[label="compare2 False True False",fontsize=16,color="black",shape="box"];393 -> 445[label="",style="solid", color="black", weight=3]; 394[label="compare2 True False False",fontsize=16,color="black",shape="box"];394 -> 446[label="",style="solid", color="black", weight=3]; 395[label="compare2 True True True",fontsize=16,color="black",shape="box"];395 -> 447[label="",style="solid", color="black", weight=3]; 396[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];396 -> 448[label="",style="solid", color="black", weight=3]; 397[label="primCmpDouble (Double vyw40 (Pos vyw410)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];397 -> 449[label="",style="solid", color="black", weight=3]; 398[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];398 -> 450[label="",style="solid", color="black", weight=3]; 399[label="primCmpDouble (Double vyw40 (Neg vyw410)) (Double vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];399 -> 451[label="",style="solid", color="black", weight=3]; 400 -> 1036[label="",style="dashed", color="red", weight=0]; 400[label="compare2 (vyw40,vyw41,vyw42) (vyw300,vyw301,vyw302) (vyw40 == vyw300 && vyw41 == vyw301 && vyw42 == vyw302)",fontsize=16,color="magenta"];400 -> 1037[label="",style="dashed", color="magenta", weight=3]; 400 -> 1038[label="",style="dashed", color="magenta", weight=3]; 400 -> 1039[label="",style="dashed", color="magenta", weight=3]; 400 -> 1040[label="",style="dashed", color="magenta", weight=3]; 400 -> 1041[label="",style="dashed", color="magenta", weight=3]; 400 -> 1042[label="",style="dashed", color="magenta", weight=3]; 400 -> 1043[label="",style="dashed", color="magenta", weight=3]; 401 -> 927[label="",style="dashed", color="red", weight=0]; 401[label="compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301)",fontsize=16,color="magenta"];401 -> 928[label="",style="dashed", color="magenta", weight=3]; 401 -> 929[label="",style="dashed", color="magenta", weight=3]; 401 -> 930[label="",style="dashed", color="magenta", weight=3]; 401 -> 931[label="",style="dashed", color="magenta", weight=3]; 401 -> 932[label="",style="dashed", color="magenta", weight=3]; 402 -> 385[label="",style="dashed", color="red", weight=0]; 402[label="primCmpNat (Succ vyw400) vyw300",fontsize=16,color="magenta"];402 -> 466[label="",style="dashed", color="magenta", weight=3]; 402 -> 467[label="",style="dashed", color="magenta", weight=3]; 403[label="GT",fontsize=16,color="green",shape="box"];404[label="primCmpInt (Pos Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];404 -> 468[label="",style="solid", color="black", weight=3]; 405[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];405 -> 469[label="",style="solid", color="black", weight=3]; 406[label="primCmpInt (Pos Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];406 -> 470[label="",style="solid", color="black", weight=3]; 407[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];407 -> 471[label="",style="solid", color="black", weight=3]; 408[label="LT",fontsize=16,color="green",shape="box"];409 -> 385[label="",style="dashed", color="red", weight=0]; 409[label="primCmpNat vyw300 (Succ vyw400)",fontsize=16,color="magenta"];409 -> 472[label="",style="dashed", color="magenta", weight=3]; 409 -> 473[label="",style="dashed", color="magenta", weight=3]; 410[label="primCmpInt (Neg Zero) (Pos (Succ vyw3000))",fontsize=16,color="black",shape="box"];410 -> 474[label="",style="solid", color="black", weight=3]; 411[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];411 -> 475[label="",style="solid", color="black", weight=3]; 412[label="primCmpInt (Neg Zero) (Neg (Succ vyw3000))",fontsize=16,color="black",shape="box"];412 -> 476[label="",style="solid", color="black", weight=3]; 413[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];413 -> 477[label="",style="solid", color="black", weight=3]; 414[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];414 -> 478[label="",style="solid", color="black", weight=3]; 415[label="primCmpFloat (Float vyw40 (Pos vyw410)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];415 -> 479[label="",style="solid", color="black", weight=3]; 416[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 (Pos vyw3010))",fontsize=16,color="black",shape="box"];416 -> 480[label="",style="solid", color="black", weight=3]; 417[label="primCmpFloat (Float vyw40 (Neg vyw410)) (Float vyw300 (Neg vyw3010))",fontsize=16,color="black",shape="box"];417 -> 481[label="",style="solid", color="black", weight=3]; 418 -> 482[label="",style="dashed", color="red", weight=0]; 418[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];418 -> 483[label="",style="dashed", color="magenta", weight=3]; 418 -> 484[label="",style="dashed", color="magenta", weight=3]; 418 -> 485[label="",style="dashed", color="magenta", weight=3]; 419[label="compare2 (Left vyw40) (Right vyw300) False",fontsize=16,color="black",shape="box"];419 -> 486[label="",style="solid", color="black", weight=3]; 420[label="compare2 (Right vyw40) (Left vyw300) False",fontsize=16,color="black",shape="box"];420 -> 487[label="",style="solid", color="black", weight=3]; 421 -> 488[label="",style="dashed", color="red", weight=0]; 421[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];421 -> 489[label="",style="dashed", color="magenta", weight=3]; 421 -> 490[label="",style="dashed", color="magenta", weight=3]; 421 -> 491[label="",style="dashed", color="magenta", weight=3]; 422[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];422 -> 492[label="",style="solid", color="black", weight=3]; 423[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];423 -> 493[label="",style="solid", color="black", weight=3]; 424[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];424 -> 494[label="",style="solid", color="black", weight=3]; 425[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];425 -> 495[label="",style="solid", color="black", weight=3]; 426[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];426 -> 496[label="",style="solid", color="black", weight=3]; 427[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];427 -> 497[label="",style="solid", color="black", weight=3]; 428[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];428 -> 498[label="",style="solid", color="black", weight=3]; 429[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];429 -> 499[label="",style="solid", color="black", weight=3]; 430[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];430 -> 500[label="",style="solid", color="black", weight=3]; 431[label="vyw301",fontsize=16,color="green",shape="box"];432[label="vyw41",fontsize=16,color="green",shape="box"];433 -> 501[label="",style="dashed", color="red", weight=0]; 433[label="primCompAux0 vyw39 (compare vyw40 vyw300)",fontsize=16,color="magenta"];433 -> 502[label="",style="dashed", color="magenta", weight=3]; 433 -> 503[label="",style="dashed", color="magenta", weight=3]; 434[label="primCmpNat (Succ vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3069[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];434 -> 3069[label="",style="solid", color="burlywood", weight=9]; 3069 -> 504[label="",style="solid", color="burlywood", weight=3]; 3070[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];434 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 505[label="",style="solid", color="burlywood", weight=3]; 435[label="primCmpNat Zero vyw300",fontsize=16,color="burlywood",shape="box"];3071[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];435 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 506[label="",style="solid", color="burlywood", weight=3]; 3072[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];435 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 507[label="",style="solid", color="burlywood", weight=3]; 436[label="vyw300 * vyw41",fontsize=16,color="burlywood",shape="triangle"];3073[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];436 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 508[label="",style="solid", color="burlywood", weight=3]; 437 -> 436[label="",style="dashed", color="red", weight=0]; 437[label="vyw40 * vyw301",fontsize=16,color="magenta"];437 -> 509[label="",style="dashed", color="magenta", weight=3]; 437 -> 510[label="",style="dashed", color="magenta", weight=3]; 438[label="vyw300 * vyw41",fontsize=16,color="black",shape="triangle"];438 -> 511[label="",style="solid", color="black", weight=3]; 439 -> 438[label="",style="dashed", color="red", weight=0]; 439[label="vyw40 * vyw301",fontsize=16,color="magenta"];439 -> 512[label="",style="dashed", color="magenta", weight=3]; 439 -> 513[label="",style="dashed", color="magenta", weight=3]; 440[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];440 -> 514[label="",style="solid", color="black", weight=3]; 441[label="compare2 Nothing (Just vyw300) False",fontsize=16,color="black",shape="box"];441 -> 515[label="",style="solid", color="black", weight=3]; 442[label="compare2 (Just vyw40) Nothing False",fontsize=16,color="black",shape="box"];442 -> 516[label="",style="solid", color="black", weight=3]; 443 -> 517[label="",style="dashed", color="red", weight=0]; 443[label="compare2 (Just vyw40) (Just vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];443 -> 518[label="",style="dashed", color="magenta", weight=3]; 443 -> 519[label="",style="dashed", color="magenta", weight=3]; 443 -> 520[label="",style="dashed", color="magenta", weight=3]; 347[label="False",fontsize=16,color="green",shape="box"];348[label="False",fontsize=16,color="green",shape="box"];349[label="True",fontsize=16,color="green",shape="box"];444[label="EQ",fontsize=16,color="green",shape="box"];445[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];445 -> 521[label="",style="solid", color="black", weight=3]; 446[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];446 -> 522[label="",style="solid", color="black", weight=3]; 447[label="EQ",fontsize=16,color="green",shape="box"];448 -> 198[label="",style="dashed", color="red", weight=0]; 448[label="compare (vyw40 * Pos vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];448 -> 523[label="",style="dashed", color="magenta", weight=3]; 448 -> 524[label="",style="dashed", color="magenta", weight=3]; 449 -> 198[label="",style="dashed", color="red", weight=0]; 449[label="compare (vyw40 * Pos vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];449 -> 525[label="",style="dashed", color="magenta", weight=3]; 449 -> 526[label="",style="dashed", color="magenta", weight=3]; 450 -> 198[label="",style="dashed", color="red", weight=0]; 450[label="compare (vyw40 * Neg vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];450 -> 527[label="",style="dashed", color="magenta", weight=3]; 450 -> 528[label="",style="dashed", color="magenta", weight=3]; 451 -> 198[label="",style="dashed", color="red", weight=0]; 451[label="compare (vyw40 * Neg vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];451 -> 529[label="",style="dashed", color="magenta", weight=3]; 451 -> 530[label="",style="dashed", color="magenta", weight=3]; 1037[label="vyw42",fontsize=16,color="green",shape="box"];1038[label="vyw300",fontsize=16,color="green",shape="box"];1039[label="vyw301",fontsize=16,color="green",shape="box"];1040 -> 1088[label="",style="dashed", color="red", weight=0]; 1040[label="vyw40 == vyw300 && vyw41 == vyw301 && vyw42 == vyw302",fontsize=16,color="magenta"];1040 -> 1089[label="",style="dashed", color="magenta", weight=3]; 1040 -> 1090[label="",style="dashed", color="magenta", weight=3]; 1041[label="vyw41",fontsize=16,color="green",shape="box"];1042[label="vyw302",fontsize=16,color="green",shape="box"];1043[label="vyw40",fontsize=16,color="green",shape="box"];1036[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) vyw125",fontsize=16,color="burlywood",shape="triangle"];3074[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 1083[label="",style="solid", color="burlywood", weight=3]; 3075[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3075[label="",style="solid", color="burlywood", weight=9]; 3075 -> 1084[label="",style="solid", color="burlywood", weight=3]; 928[label="vyw40",fontsize=16,color="green",shape="box"];929[label="vyw41",fontsize=16,color="green",shape="box"];930[label="vyw301",fontsize=16,color="green",shape="box"];931[label="vyw300",fontsize=16,color="green",shape="box"];932 -> 1088[label="",style="dashed", color="red", weight=0]; 932[label="vyw40 == vyw300 && vyw41 == vyw301",fontsize=16,color="magenta"];932 -> 1091[label="",style="dashed", color="magenta", weight=3]; 932 -> 1092[label="",style="dashed", color="magenta", weight=3]; 927[label="compare2 (vyw113,vyw114) (vyw115,vyw116) vyw117",fontsize=16,color="burlywood",shape="triangle"];3076[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];927 -> 3076[label="",style="solid", color="burlywood", weight=9]; 3076 -> 952[label="",style="solid", color="burlywood", weight=3]; 3077[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];927 -> 3077[label="",style="solid", color="burlywood", weight=9]; 3077 -> 953[label="",style="solid", color="burlywood", weight=3]; 466[label="Succ vyw400",fontsize=16,color="green",shape="box"];467[label="vyw300",fontsize=16,color="green",shape="box"];468 -> 385[label="",style="dashed", color="red", weight=0]; 468[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="magenta"];468 -> 563[label="",style="dashed", color="magenta", weight=3]; 468 -> 564[label="",style="dashed", color="magenta", weight=3]; 469[label="EQ",fontsize=16,color="green",shape="box"];470[label="GT",fontsize=16,color="green",shape="box"];471[label="EQ",fontsize=16,color="green",shape="box"];472[label="vyw300",fontsize=16,color="green",shape="box"];473[label="Succ vyw400",fontsize=16,color="green",shape="box"];474[label="LT",fontsize=16,color="green",shape="box"];475[label="EQ",fontsize=16,color="green",shape="box"];476 -> 385[label="",style="dashed", color="red", weight=0]; 476[label="primCmpNat (Succ vyw3000) Zero",fontsize=16,color="magenta"];476 -> 565[label="",style="dashed", color="magenta", weight=3]; 476 -> 566[label="",style="dashed", color="magenta", weight=3]; 477[label="EQ",fontsize=16,color="green",shape="box"];478 -> 198[label="",style="dashed", color="red", weight=0]; 478[label="compare (vyw40 * Pos vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];478 -> 567[label="",style="dashed", color="magenta", weight=3]; 478 -> 568[label="",style="dashed", color="magenta", weight=3]; 479 -> 198[label="",style="dashed", color="red", weight=0]; 479[label="compare (vyw40 * Pos vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];479 -> 569[label="",style="dashed", color="magenta", weight=3]; 479 -> 570[label="",style="dashed", color="magenta", weight=3]; 480 -> 198[label="",style="dashed", color="red", weight=0]; 480[label="compare (vyw40 * Neg vyw3010) (Pos vyw410 * vyw300)",fontsize=16,color="magenta"];480 -> 571[label="",style="dashed", color="magenta", weight=3]; 480 -> 572[label="",style="dashed", color="magenta", weight=3]; 481 -> 198[label="",style="dashed", color="red", weight=0]; 481[label="compare (vyw40 * Neg vyw3010) (Neg vyw410 * vyw300)",fontsize=16,color="magenta"];481 -> 573[label="",style="dashed", color="magenta", weight=3]; 481 -> 574[label="",style="dashed", color="magenta", weight=3]; 483[label="vyw300",fontsize=16,color="green",shape="box"];484[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3078[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 575[label="",style="solid", color="blue", weight=3]; 3079[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 576[label="",style="solid", color="blue", weight=3]; 3080[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 577[label="",style="solid", color="blue", weight=3]; 3081[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 578[label="",style="solid", color="blue", weight=3]; 3082[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 579[label="",style="solid", color="blue", weight=3]; 3083[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 580[label="",style="solid", color="blue", weight=3]; 3084[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 581[label="",style="solid", color="blue", weight=3]; 3085[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 582[label="",style="solid", color="blue", weight=3]; 3086[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 583[label="",style="solid", color="blue", weight=3]; 3087[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 584[label="",style="solid", color="blue", weight=3]; 3088[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 585[label="",style="solid", color="blue", weight=3]; 3089[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3089[label="",style="solid", color="blue", weight=9]; 3089 -> 586[label="",style="solid", color="blue", weight=3]; 3090[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3090[label="",style="solid", color="blue", weight=9]; 3090 -> 587[label="",style="solid", color="blue", weight=3]; 3091[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];484 -> 3091[label="",style="solid", color="blue", weight=9]; 3091 -> 588[label="",style="solid", color="blue", weight=3]; 485[label="vyw40",fontsize=16,color="green",shape="box"];482[label="compare2 (Left vyw70) (Left vyw71) vyw72",fontsize=16,color="burlywood",shape="triangle"];3092[label="vyw72/False",fontsize=10,color="white",style="solid",shape="box"];482 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 589[label="",style="solid", color="burlywood", weight=3]; 3093[label="vyw72/True",fontsize=10,color="white",style="solid",shape="box"];482 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 590[label="",style="solid", color="burlywood", weight=3]; 486[label="compare1 (Left vyw40) (Right vyw300) (Left vyw40 <= Right vyw300)",fontsize=16,color="black",shape="box"];486 -> 591[label="",style="solid", color="black", weight=3]; 487[label="compare1 (Right vyw40) (Left vyw300) (Right vyw40 <= Left vyw300)",fontsize=16,color="black",shape="box"];487 -> 592[label="",style="solid", color="black", weight=3]; 489[label="vyw40",fontsize=16,color="green",shape="box"];490[label="vyw300",fontsize=16,color="green",shape="box"];491[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3094[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3094[label="",style="solid", color="blue", weight=9]; 3094 -> 593[label="",style="solid", color="blue", weight=3]; 3095[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3095[label="",style="solid", color="blue", weight=9]; 3095 -> 594[label="",style="solid", color="blue", weight=3]; 3096[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3096[label="",style="solid", color="blue", weight=9]; 3096 -> 595[label="",style="solid", color="blue", weight=3]; 3097[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3097[label="",style="solid", color="blue", weight=9]; 3097 -> 596[label="",style="solid", color="blue", weight=3]; 3098[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3098[label="",style="solid", color="blue", weight=9]; 3098 -> 597[label="",style="solid", color="blue", weight=3]; 3099[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3099[label="",style="solid", color="blue", weight=9]; 3099 -> 598[label="",style="solid", color="blue", weight=3]; 3100[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3100[label="",style="solid", color="blue", weight=9]; 3100 -> 599[label="",style="solid", color="blue", weight=3]; 3101[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3101[label="",style="solid", color="blue", weight=9]; 3101 -> 600[label="",style="solid", color="blue", weight=3]; 3102[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3102[label="",style="solid", color="blue", weight=9]; 3102 -> 601[label="",style="solid", color="blue", weight=3]; 3103[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3103[label="",style="solid", color="blue", weight=9]; 3103 -> 602[label="",style="solid", color="blue", weight=3]; 3104[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3104[label="",style="solid", color="blue", weight=9]; 3104 -> 603[label="",style="solid", color="blue", weight=3]; 3105[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3105[label="",style="solid", color="blue", weight=9]; 3105 -> 604[label="",style="solid", color="blue", weight=3]; 3106[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3106[label="",style="solid", color="blue", weight=9]; 3106 -> 605[label="",style="solid", color="blue", weight=3]; 3107[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];491 -> 3107[label="",style="solid", color="blue", weight=9]; 3107 -> 606[label="",style="solid", color="blue", weight=3]; 488[label="compare2 (Right vyw77) (Right vyw78) vyw79",fontsize=16,color="burlywood",shape="triangle"];3108[label="vyw79/False",fontsize=10,color="white",style="solid",shape="box"];488 -> 3108[label="",style="solid", color="burlywood", weight=9]; 3108 -> 607[label="",style="solid", color="burlywood", weight=3]; 3109[label="vyw79/True",fontsize=10,color="white",style="solid",shape="box"];488 -> 3109[label="",style="solid", color="burlywood", weight=9]; 3109 -> 608[label="",style="solid", color="burlywood", weight=3]; 492[label="EQ",fontsize=16,color="green",shape="box"];493[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];493 -> 609[label="",style="solid", color="black", weight=3]; 494[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];494 -> 610[label="",style="solid", color="black", weight=3]; 495[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];495 -> 611[label="",style="solid", color="black", weight=3]; 496[label="EQ",fontsize=16,color="green",shape="box"];497[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];497 -> 612[label="",style="solid", color="black", weight=3]; 498[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];498 -> 613[label="",style="solid", color="black", weight=3]; 499[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];499 -> 614[label="",style="solid", color="black", weight=3]; 500[label="EQ",fontsize=16,color="green",shape="box"];502[label="compare vyw40 vyw300",fontsize=16,color="blue",shape="box"];3110[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3110[label="",style="solid", color="blue", weight=9]; 3110 -> 615[label="",style="solid", color="blue", weight=3]; 3111[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3111[label="",style="solid", color="blue", weight=9]; 3111 -> 616[label="",style="solid", color="blue", weight=3]; 3112[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 617[label="",style="solid", color="blue", weight=3]; 3113[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 618[label="",style="solid", color="blue", weight=3]; 3114[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 619[label="",style="solid", color="blue", weight=3]; 3115[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 620[label="",style="solid", color="blue", weight=3]; 3116[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 621[label="",style="solid", color="blue", weight=3]; 3117[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 622[label="",style="solid", color="blue", weight=3]; 3118[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 623[label="",style="solid", color="blue", weight=3]; 3119[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 624[label="",style="solid", color="blue", weight=3]; 3120[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 625[label="",style="solid", color="blue", weight=3]; 3121[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 626[label="",style="solid", color="blue", weight=3]; 3122[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 627[label="",style="solid", color="blue", weight=3]; 3123[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];502 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 628[label="",style="solid", color="blue", weight=3]; 503[label="vyw39",fontsize=16,color="green",shape="box"];501[label="primCompAux0 vyw83 vyw84",fontsize=16,color="burlywood",shape="triangle"];3124[label="vyw84/LT",fontsize=10,color="white",style="solid",shape="box"];501 -> 3124[label="",style="solid", color="burlywood", weight=9]; 3124 -> 629[label="",style="solid", color="burlywood", weight=3]; 3125[label="vyw84/EQ",fontsize=10,color="white",style="solid",shape="box"];501 -> 3125[label="",style="solid", color="burlywood", weight=9]; 3125 -> 630[label="",style="solid", color="burlywood", weight=3]; 3126[label="vyw84/GT",fontsize=10,color="white",style="solid",shape="box"];501 -> 3126[label="",style="solid", color="burlywood", weight=9]; 3126 -> 631[label="",style="solid", color="burlywood", weight=3]; 504[label="primCmpNat (Succ vyw400) (Succ vyw3000)",fontsize=16,color="black",shape="box"];504 -> 632[label="",style="solid", color="black", weight=3]; 505[label="primCmpNat (Succ vyw400) Zero",fontsize=16,color="black",shape="box"];505 -> 633[label="",style="solid", color="black", weight=3]; 506[label="primCmpNat Zero (Succ vyw3000)",fontsize=16,color="black",shape="box"];506 -> 634[label="",style="solid", color="black", weight=3]; 507[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];507 -> 635[label="",style="solid", color="black", weight=3]; 508[label="Integer vyw3000 * vyw41",fontsize=16,color="burlywood",shape="box"];3127[label="vyw41/Integer vyw410",fontsize=10,color="white",style="solid",shape="box"];508 -> 3127[label="",style="solid", color="burlywood", weight=9]; 3127 -> 636[label="",style="solid", color="burlywood", weight=3]; 509[label="vyw40",fontsize=16,color="green",shape="box"];510[label="vyw301",fontsize=16,color="green",shape="box"];511[label="primMulInt vyw300 vyw41",fontsize=16,color="burlywood",shape="triangle"];3128[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];511 -> 3128[label="",style="solid", color="burlywood", weight=9]; 3128 -> 637[label="",style="solid", color="burlywood", weight=3]; 3129[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];511 -> 3129[label="",style="solid", color="burlywood", weight=9]; 3129 -> 638[label="",style="solid", color="burlywood", weight=3]; 512[label="vyw40",fontsize=16,color="green",shape="box"];513[label="vyw301",fontsize=16,color="green",shape="box"];514[label="EQ",fontsize=16,color="green",shape="box"];515[label="compare1 Nothing (Just vyw300) (Nothing <= Just vyw300)",fontsize=16,color="black",shape="box"];515 -> 639[label="",style="solid", color="black", weight=3]; 516[label="compare1 (Just vyw40) Nothing (Just vyw40 <= Nothing)",fontsize=16,color="black",shape="box"];516 -> 640[label="",style="solid", color="black", weight=3]; 518[label="vyw40",fontsize=16,color="green",shape="box"];519[label="vyw300",fontsize=16,color="green",shape="box"];520[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3130[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 641[label="",style="solid", color="blue", weight=3]; 3131[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 642[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 643[label="",style="solid", color="blue", weight=3]; 3133[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 644[label="",style="solid", color="blue", weight=3]; 3134[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 645[label="",style="solid", color="blue", weight=3]; 3135[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 646[label="",style="solid", color="blue", weight=3]; 3136[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 647[label="",style="solid", color="blue", weight=3]; 3137[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 648[label="",style="solid", color="blue", weight=3]; 3138[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 649[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 650[label="",style="solid", color="blue", weight=3]; 3140[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3140[label="",style="solid", color="blue", weight=9]; 3140 -> 651[label="",style="solid", color="blue", weight=3]; 3141[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3141[label="",style="solid", color="blue", weight=9]; 3141 -> 652[label="",style="solid", color="blue", weight=3]; 3142[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 653[label="",style="solid", color="blue", weight=3]; 3143[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];520 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 654[label="",style="solid", color="blue", weight=3]; 517[label="compare2 (Just vyw89) (Just vyw90) vyw91",fontsize=16,color="burlywood",shape="triangle"];3144[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];517 -> 3144[label="",style="solid", color="burlywood", weight=9]; 3144 -> 655[label="",style="solid", color="burlywood", weight=3]; 3145[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];517 -> 3145[label="",style="solid", color="burlywood", weight=9]; 3145 -> 656[label="",style="solid", color="burlywood", weight=3]; 521[label="compare1 False True True",fontsize=16,color="black",shape="box"];521 -> 657[label="",style="solid", color="black", weight=3]; 522[label="compare1 True False False",fontsize=16,color="black",shape="box"];522 -> 658[label="",style="solid", color="black", weight=3]; 523 -> 438[label="",style="dashed", color="red", weight=0]; 523[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];523 -> 659[label="",style="dashed", color="magenta", weight=3]; 523 -> 660[label="",style="dashed", color="magenta", weight=3]; 524 -> 438[label="",style="dashed", color="red", weight=0]; 524[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];524 -> 661[label="",style="dashed", color="magenta", weight=3]; 524 -> 662[label="",style="dashed", color="magenta", weight=3]; 525 -> 438[label="",style="dashed", color="red", weight=0]; 525[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];525 -> 663[label="",style="dashed", color="magenta", weight=3]; 525 -> 664[label="",style="dashed", color="magenta", weight=3]; 526 -> 438[label="",style="dashed", color="red", weight=0]; 526[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];526 -> 665[label="",style="dashed", color="magenta", weight=3]; 526 -> 666[label="",style="dashed", color="magenta", weight=3]; 527 -> 438[label="",style="dashed", color="red", weight=0]; 527[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];527 -> 667[label="",style="dashed", color="magenta", weight=3]; 527 -> 668[label="",style="dashed", color="magenta", weight=3]; 528 -> 438[label="",style="dashed", color="red", weight=0]; 528[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];528 -> 669[label="",style="dashed", color="magenta", weight=3]; 528 -> 670[label="",style="dashed", color="magenta", weight=3]; 529 -> 438[label="",style="dashed", color="red", weight=0]; 529[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];529 -> 671[label="",style="dashed", color="magenta", weight=3]; 529 -> 672[label="",style="dashed", color="magenta", weight=3]; 530 -> 438[label="",style="dashed", color="red", weight=0]; 530[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];530 -> 673[label="",style="dashed", color="magenta", weight=3]; 530 -> 674[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1088[label="",style="dashed", color="red", weight=0]; 1089[label="vyw41 == vyw301 && vyw42 == vyw302",fontsize=16,color="magenta"];1089 -> 1107[label="",style="dashed", color="magenta", weight=3]; 1089 -> 1108[label="",style="dashed", color="magenta", weight=3]; 1090[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3146[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1109[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1110[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1111[label="",style="solid", color="blue", weight=3]; 3149[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1112[label="",style="solid", color="blue", weight=3]; 3150[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1113[label="",style="solid", color="blue", weight=3]; 3151[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1114[label="",style="solid", color="blue", weight=3]; 3152[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1115[label="",style="solid", color="blue", weight=3]; 3153[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1116[label="",style="solid", color="blue", weight=3]; 3154[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1117[label="",style="solid", color="blue", weight=3]; 3155[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1118[label="",style="solid", color="blue", weight=3]; 3156[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3156[label="",style="solid", color="blue", weight=9]; 3156 -> 1119[label="",style="solid", color="blue", weight=3]; 3157[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3157[label="",style="solid", color="blue", weight=9]; 3157 -> 1120[label="",style="solid", color="blue", weight=3]; 3158[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3158[label="",style="solid", color="blue", weight=9]; 3158 -> 1121[label="",style="solid", color="blue", weight=3]; 3159[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1090 -> 3159[label="",style="solid", color="blue", weight=9]; 3159 -> 1122[label="",style="solid", color="blue", weight=3]; 1088[label="vyw130 && vyw131",fontsize=16,color="burlywood",shape="triangle"];3160[label="vyw130/False",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 1123[label="",style="solid", color="burlywood", weight=3]; 3161[label="vyw130/True",fontsize=10,color="white",style="solid",shape="box"];1088 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 1124[label="",style="solid", color="burlywood", weight=3]; 1083[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) False",fontsize=16,color="black",shape="box"];1083 -> 1125[label="",style="solid", color="black", weight=3]; 1084[label="compare2 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) True",fontsize=16,color="black",shape="box"];1084 -> 1126[label="",style="solid", color="black", weight=3]; 1091[label="vyw41 == vyw301",fontsize=16,color="blue",shape="box"];3162[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3162[label="",style="solid", color="blue", weight=9]; 3162 -> 1127[label="",style="solid", color="blue", weight=3]; 3163[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3163[label="",style="solid", color="blue", weight=9]; 3163 -> 1128[label="",style="solid", color="blue", weight=3]; 3164[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3164[label="",style="solid", color="blue", weight=9]; 3164 -> 1129[label="",style="solid", color="blue", weight=3]; 3165[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3165[label="",style="solid", color="blue", weight=9]; 3165 -> 1130[label="",style="solid", color="blue", weight=3]; 3166[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3166[label="",style="solid", color="blue", weight=9]; 3166 -> 1131[label="",style="solid", color="blue", weight=3]; 3167[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3167[label="",style="solid", color="blue", weight=9]; 3167 -> 1132[label="",style="solid", color="blue", weight=3]; 3168[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3168[label="",style="solid", color="blue", weight=9]; 3168 -> 1133[label="",style="solid", color="blue", weight=3]; 3169[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3169[label="",style="solid", color="blue", weight=9]; 3169 -> 1134[label="",style="solid", color="blue", weight=3]; 3170[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3170[label="",style="solid", color="blue", weight=9]; 3170 -> 1135[label="",style="solid", color="blue", weight=3]; 3171[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3171[label="",style="solid", color="blue", weight=9]; 3171 -> 1136[label="",style="solid", color="blue", weight=3]; 3172[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3172[label="",style="solid", color="blue", weight=9]; 3172 -> 1137[label="",style="solid", color="blue", weight=3]; 3173[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3173[label="",style="solid", color="blue", weight=9]; 3173 -> 1138[label="",style="solid", color="blue", weight=3]; 3174[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3174[label="",style="solid", color="blue", weight=9]; 3174 -> 1139[label="",style="solid", color="blue", weight=3]; 3175[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1091 -> 3175[label="",style="solid", color="blue", weight=9]; 3175 -> 1140[label="",style="solid", color="blue", weight=3]; 1092[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3176[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3176[label="",style="solid", color="blue", weight=9]; 3176 -> 1141[label="",style="solid", color="blue", weight=3]; 3177[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3177[label="",style="solid", color="blue", weight=9]; 3177 -> 1142[label="",style="solid", color="blue", weight=3]; 3178[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3178[label="",style="solid", color="blue", weight=9]; 3178 -> 1143[label="",style="solid", color="blue", weight=3]; 3179[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3179[label="",style="solid", color="blue", weight=9]; 3179 -> 1144[label="",style="solid", color="blue", weight=3]; 3180[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3180[label="",style="solid", color="blue", weight=9]; 3180 -> 1145[label="",style="solid", color="blue", weight=3]; 3181[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3181[label="",style="solid", color="blue", weight=9]; 3181 -> 1146[label="",style="solid", color="blue", weight=3]; 3182[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3182[label="",style="solid", color="blue", weight=9]; 3182 -> 1147[label="",style="solid", color="blue", weight=3]; 3183[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3183[label="",style="solid", color="blue", weight=9]; 3183 -> 1148[label="",style="solid", color="blue", weight=3]; 3184[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3184[label="",style="solid", color="blue", weight=9]; 3184 -> 1149[label="",style="solid", color="blue", weight=3]; 3185[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3185[label="",style="solid", color="blue", weight=9]; 3185 -> 1150[label="",style="solid", color="blue", weight=3]; 3186[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3186[label="",style="solid", color="blue", weight=9]; 3186 -> 1151[label="",style="solid", color="blue", weight=3]; 3187[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3187[label="",style="solid", color="blue", weight=9]; 3187 -> 1152[label="",style="solid", color="blue", weight=3]; 3188[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3188[label="",style="solid", color="blue", weight=9]; 3188 -> 1153[label="",style="solid", color="blue", weight=3]; 3189[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 3189[label="",style="solid", color="blue", weight=9]; 3189 -> 1154[label="",style="solid", color="blue", weight=3]; 952[label="compare2 (vyw113,vyw114) (vyw115,vyw116) False",fontsize=16,color="black",shape="box"];952 -> 1155[label="",style="solid", color="black", weight=3]; 953[label="compare2 (vyw113,vyw114) (vyw115,vyw116) True",fontsize=16,color="black",shape="box"];953 -> 1156[label="",style="solid", color="black", weight=3]; 563[label="Zero",fontsize=16,color="green",shape="box"];564[label="Succ vyw3000",fontsize=16,color="green",shape="box"];565[label="Succ vyw3000",fontsize=16,color="green",shape="box"];566[label="Zero",fontsize=16,color="green",shape="box"];567 -> 438[label="",style="dashed", color="red", weight=0]; 567[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];567 -> 727[label="",style="dashed", color="magenta", weight=3]; 567 -> 728[label="",style="dashed", color="magenta", weight=3]; 568 -> 438[label="",style="dashed", color="red", weight=0]; 568[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];568 -> 729[label="",style="dashed", color="magenta", weight=3]; 568 -> 730[label="",style="dashed", color="magenta", weight=3]; 569 -> 438[label="",style="dashed", color="red", weight=0]; 569[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];569 -> 731[label="",style="dashed", color="magenta", weight=3]; 569 -> 732[label="",style="dashed", color="magenta", weight=3]; 570 -> 438[label="",style="dashed", color="red", weight=0]; 570[label="vyw40 * Pos vyw3010",fontsize=16,color="magenta"];570 -> 733[label="",style="dashed", color="magenta", weight=3]; 570 -> 734[label="",style="dashed", color="magenta", weight=3]; 571 -> 438[label="",style="dashed", color="red", weight=0]; 571[label="Pos vyw410 * vyw300",fontsize=16,color="magenta"];571 -> 735[label="",style="dashed", color="magenta", weight=3]; 571 -> 736[label="",style="dashed", color="magenta", weight=3]; 572 -> 438[label="",style="dashed", color="red", weight=0]; 572[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];572 -> 737[label="",style="dashed", color="magenta", weight=3]; 572 -> 738[label="",style="dashed", color="magenta", weight=3]; 573 -> 438[label="",style="dashed", color="red", weight=0]; 573[label="Neg vyw410 * vyw300",fontsize=16,color="magenta"];573 -> 739[label="",style="dashed", color="magenta", weight=3]; 573 -> 740[label="",style="dashed", color="magenta", weight=3]; 574 -> 438[label="",style="dashed", color="red", weight=0]; 574[label="vyw40 * Neg vyw3010",fontsize=16,color="magenta"];574 -> 741[label="",style="dashed", color="magenta", weight=3]; 574 -> 742[label="",style="dashed", color="magenta", weight=3]; 575 -> 531[label="",style="dashed", color="red", weight=0]; 575[label="vyw40 == vyw300",fontsize=16,color="magenta"];575 -> 743[label="",style="dashed", color="magenta", weight=3]; 575 -> 744[label="",style="dashed", color="magenta", weight=3]; 576 -> 532[label="",style="dashed", color="red", weight=0]; 576[label="vyw40 == vyw300",fontsize=16,color="magenta"];576 -> 745[label="",style="dashed", color="magenta", weight=3]; 576 -> 746[label="",style="dashed", color="magenta", weight=3]; 577 -> 533[label="",style="dashed", color="red", weight=0]; 577[label="vyw40 == vyw300",fontsize=16,color="magenta"];577 -> 747[label="",style="dashed", color="magenta", weight=3]; 577 -> 748[label="",style="dashed", color="magenta", weight=3]; 578 -> 534[label="",style="dashed", color="red", weight=0]; 578[label="vyw40 == vyw300",fontsize=16,color="magenta"];578 -> 749[label="",style="dashed", color="magenta", weight=3]; 578 -> 750[label="",style="dashed", color="magenta", weight=3]; 579 -> 535[label="",style="dashed", color="red", weight=0]; 579[label="vyw40 == vyw300",fontsize=16,color="magenta"];579 -> 751[label="",style="dashed", color="magenta", weight=3]; 579 -> 752[label="",style="dashed", color="magenta", weight=3]; 580 -> 536[label="",style="dashed", color="red", weight=0]; 580[label="vyw40 == vyw300",fontsize=16,color="magenta"];580 -> 753[label="",style="dashed", color="magenta", weight=3]; 580 -> 754[label="",style="dashed", color="magenta", weight=3]; 581 -> 537[label="",style="dashed", color="red", weight=0]; 581[label="vyw40 == vyw300",fontsize=16,color="magenta"];581 -> 755[label="",style="dashed", color="magenta", weight=3]; 581 -> 756[label="",style="dashed", color="magenta", weight=3]; 582 -> 538[label="",style="dashed", color="red", weight=0]; 582[label="vyw40 == vyw300",fontsize=16,color="magenta"];582 -> 757[label="",style="dashed", color="magenta", weight=3]; 582 -> 758[label="",style="dashed", color="magenta", weight=3]; 583 -> 539[label="",style="dashed", color="red", weight=0]; 583[label="vyw40 == vyw300",fontsize=16,color="magenta"];583 -> 759[label="",style="dashed", color="magenta", weight=3]; 583 -> 760[label="",style="dashed", color="magenta", weight=3]; 584 -> 540[label="",style="dashed", color="red", weight=0]; 584[label="vyw40 == vyw300",fontsize=16,color="magenta"];584 -> 761[label="",style="dashed", color="magenta", weight=3]; 584 -> 762[label="",style="dashed", color="magenta", weight=3]; 585 -> 541[label="",style="dashed", color="red", weight=0]; 585[label="vyw40 == vyw300",fontsize=16,color="magenta"];585 -> 763[label="",style="dashed", color="magenta", weight=3]; 585 -> 764[label="",style="dashed", color="magenta", weight=3]; 586 -> 542[label="",style="dashed", color="red", weight=0]; 586[label="vyw40 == vyw300",fontsize=16,color="magenta"];586 -> 765[label="",style="dashed", color="magenta", weight=3]; 586 -> 766[label="",style="dashed", color="magenta", weight=3]; 587 -> 543[label="",style="dashed", color="red", weight=0]; 587[label="vyw40 == vyw300",fontsize=16,color="magenta"];587 -> 767[label="",style="dashed", color="magenta", weight=3]; 587 -> 768[label="",style="dashed", color="magenta", weight=3]; 588 -> 544[label="",style="dashed", color="red", weight=0]; 588[label="vyw40 == vyw300",fontsize=16,color="magenta"];588 -> 769[label="",style="dashed", color="magenta", weight=3]; 588 -> 770[label="",style="dashed", color="magenta", weight=3]; 589[label="compare2 (Left vyw70) (Left vyw71) False",fontsize=16,color="black",shape="box"];589 -> 771[label="",style="solid", color="black", weight=3]; 590[label="compare2 (Left vyw70) (Left vyw71) True",fontsize=16,color="black",shape="box"];590 -> 772[label="",style="solid", color="black", weight=3]; 591[label="compare1 (Left vyw40) (Right vyw300) True",fontsize=16,color="black",shape="box"];591 -> 773[label="",style="solid", color="black", weight=3]; 592[label="compare1 (Right vyw40) (Left vyw300) False",fontsize=16,color="black",shape="box"];592 -> 774[label="",style="solid", color="black", weight=3]; 593 -> 531[label="",style="dashed", color="red", weight=0]; 593[label="vyw40 == vyw300",fontsize=16,color="magenta"];593 -> 775[label="",style="dashed", color="magenta", weight=3]; 593 -> 776[label="",style="dashed", color="magenta", weight=3]; 594 -> 532[label="",style="dashed", color="red", weight=0]; 594[label="vyw40 == vyw300",fontsize=16,color="magenta"];594 -> 777[label="",style="dashed", color="magenta", weight=3]; 594 -> 778[label="",style="dashed", color="magenta", weight=3]; 595 -> 533[label="",style="dashed", color="red", weight=0]; 595[label="vyw40 == vyw300",fontsize=16,color="magenta"];595 -> 779[label="",style="dashed", color="magenta", weight=3]; 595 -> 780[label="",style="dashed", color="magenta", weight=3]; 596 -> 534[label="",style="dashed", color="red", weight=0]; 596[label="vyw40 == vyw300",fontsize=16,color="magenta"];596 -> 781[label="",style="dashed", color="magenta", weight=3]; 596 -> 782[label="",style="dashed", color="magenta", weight=3]; 597 -> 535[label="",style="dashed", color="red", weight=0]; 597[label="vyw40 == vyw300",fontsize=16,color="magenta"];597 -> 783[label="",style="dashed", color="magenta", weight=3]; 597 -> 784[label="",style="dashed", color="magenta", weight=3]; 598 -> 536[label="",style="dashed", color="red", weight=0]; 598[label="vyw40 == vyw300",fontsize=16,color="magenta"];598 -> 785[label="",style="dashed", color="magenta", weight=3]; 598 -> 786[label="",style="dashed", color="magenta", weight=3]; 599 -> 537[label="",style="dashed", color="red", weight=0]; 599[label="vyw40 == vyw300",fontsize=16,color="magenta"];599 -> 787[label="",style="dashed", color="magenta", weight=3]; 599 -> 788[label="",style="dashed", color="magenta", weight=3]; 600 -> 538[label="",style="dashed", color="red", weight=0]; 600[label="vyw40 == vyw300",fontsize=16,color="magenta"];600 -> 789[label="",style="dashed", color="magenta", weight=3]; 600 -> 790[label="",style="dashed", color="magenta", weight=3]; 601 -> 539[label="",style="dashed", color="red", weight=0]; 601[label="vyw40 == vyw300",fontsize=16,color="magenta"];601 -> 791[label="",style="dashed", color="magenta", weight=3]; 601 -> 792[label="",style="dashed", color="magenta", weight=3]; 602 -> 540[label="",style="dashed", color="red", weight=0]; 602[label="vyw40 == vyw300",fontsize=16,color="magenta"];602 -> 793[label="",style="dashed", color="magenta", weight=3]; 602 -> 794[label="",style="dashed", color="magenta", weight=3]; 603 -> 541[label="",style="dashed", color="red", weight=0]; 603[label="vyw40 == vyw300",fontsize=16,color="magenta"];603 -> 795[label="",style="dashed", color="magenta", weight=3]; 603 -> 796[label="",style="dashed", color="magenta", weight=3]; 604 -> 542[label="",style="dashed", color="red", weight=0]; 604[label="vyw40 == vyw300",fontsize=16,color="magenta"];604 -> 797[label="",style="dashed", color="magenta", weight=3]; 604 -> 798[label="",style="dashed", color="magenta", weight=3]; 605 -> 543[label="",style="dashed", color="red", weight=0]; 605[label="vyw40 == vyw300",fontsize=16,color="magenta"];605 -> 799[label="",style="dashed", color="magenta", weight=3]; 605 -> 800[label="",style="dashed", color="magenta", weight=3]; 606 -> 544[label="",style="dashed", color="red", weight=0]; 606[label="vyw40 == vyw300",fontsize=16,color="magenta"];606 -> 801[label="",style="dashed", color="magenta", weight=3]; 606 -> 802[label="",style="dashed", color="magenta", weight=3]; 607[label="compare2 (Right vyw77) (Right vyw78) False",fontsize=16,color="black",shape="box"];607 -> 803[label="",style="solid", color="black", weight=3]; 608[label="compare2 (Right vyw77) (Right vyw78) True",fontsize=16,color="black",shape="box"];608 -> 804[label="",style="solid", color="black", weight=3]; 609[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];609 -> 805[label="",style="solid", color="black", weight=3]; 610[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];610 -> 806[label="",style="solid", color="black", weight=3]; 611[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];611 -> 807[label="",style="solid", color="black", weight=3]; 612[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];612 -> 808[label="",style="solid", color="black", weight=3]; 613[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];613 -> 809[label="",style="solid", color="black", weight=3]; 614[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];614 -> 810[label="",style="solid", color="black", weight=3]; 615 -> 192[label="",style="dashed", color="red", weight=0]; 615[label="compare vyw40 vyw300",fontsize=16,color="magenta"];615 -> 811[label="",style="dashed", color="magenta", weight=3]; 615 -> 812[label="",style="dashed", color="magenta", weight=3]; 616 -> 193[label="",style="dashed", color="red", weight=0]; 616[label="compare vyw40 vyw300",fontsize=16,color="magenta"];616 -> 813[label="",style="dashed", color="magenta", weight=3]; 616 -> 814[label="",style="dashed", color="magenta", weight=3]; 617 -> 194[label="",style="dashed", color="red", weight=0]; 617[label="compare vyw40 vyw300",fontsize=16,color="magenta"];617 -> 815[label="",style="dashed", color="magenta", weight=3]; 617 -> 816[label="",style="dashed", color="magenta", weight=3]; 618 -> 195[label="",style="dashed", color="red", weight=0]; 618[label="compare vyw40 vyw300",fontsize=16,color="magenta"];618 -> 817[label="",style="dashed", color="magenta", weight=3]; 618 -> 818[label="",style="dashed", color="magenta", weight=3]; 619 -> 196[label="",style="dashed", color="red", weight=0]; 619[label="compare vyw40 vyw300",fontsize=16,color="magenta"];619 -> 819[label="",style="dashed", color="magenta", weight=3]; 619 -> 820[label="",style="dashed", color="magenta", weight=3]; 620 -> 197[label="",style="dashed", color="red", weight=0]; 620[label="compare vyw40 vyw300",fontsize=16,color="magenta"];620 -> 821[label="",style="dashed", color="magenta", weight=3]; 620 -> 822[label="",style="dashed", color="magenta", weight=3]; 621 -> 198[label="",style="dashed", color="red", weight=0]; 621[label="compare vyw40 vyw300",fontsize=16,color="magenta"];621 -> 823[label="",style="dashed", color="magenta", weight=3]; 621 -> 824[label="",style="dashed", color="magenta", weight=3]; 622 -> 199[label="",style="dashed", color="red", weight=0]; 622[label="compare vyw40 vyw300",fontsize=16,color="magenta"];622 -> 825[label="",style="dashed", color="magenta", weight=3]; 622 -> 826[label="",style="dashed", color="magenta", weight=3]; 623 -> 200[label="",style="dashed", color="red", weight=0]; 623[label="compare vyw40 vyw300",fontsize=16,color="magenta"];623 -> 827[label="",style="dashed", color="magenta", weight=3]; 623 -> 828[label="",style="dashed", color="magenta", weight=3]; 624 -> 201[label="",style="dashed", color="red", weight=0]; 624[label="compare vyw40 vyw300",fontsize=16,color="magenta"];624 -> 829[label="",style="dashed", color="magenta", weight=3]; 624 -> 830[label="",style="dashed", color="magenta", weight=3]; 625 -> 202[label="",style="dashed", color="red", weight=0]; 625[label="compare vyw40 vyw300",fontsize=16,color="magenta"];625 -> 831[label="",style="dashed", color="magenta", weight=3]; 625 -> 832[label="",style="dashed", color="magenta", weight=3]; 626 -> 203[label="",style="dashed", color="red", weight=0]; 626[label="compare vyw40 vyw300",fontsize=16,color="magenta"];626 -> 833[label="",style="dashed", color="magenta", weight=3]; 626 -> 834[label="",style="dashed", color="magenta", weight=3]; 627 -> 204[label="",style="dashed", color="red", weight=0]; 627[label="compare vyw40 vyw300",fontsize=16,color="magenta"];627 -> 835[label="",style="dashed", color="magenta", weight=3]; 627 -> 836[label="",style="dashed", color="magenta", weight=3]; 628 -> 205[label="",style="dashed", color="red", weight=0]; 628[label="compare vyw40 vyw300",fontsize=16,color="magenta"];628 -> 837[label="",style="dashed", color="magenta", weight=3]; 628 -> 838[label="",style="dashed", color="magenta", weight=3]; 629[label="primCompAux0 vyw83 LT",fontsize=16,color="black",shape="box"];629 -> 839[label="",style="solid", color="black", weight=3]; 630[label="primCompAux0 vyw83 EQ",fontsize=16,color="black",shape="box"];630 -> 840[label="",style="solid", color="black", weight=3]; 631[label="primCompAux0 vyw83 GT",fontsize=16,color="black",shape="box"];631 -> 841[label="",style="solid", color="black", weight=3]; 632 -> 385[label="",style="dashed", color="red", weight=0]; 632[label="primCmpNat vyw400 vyw3000",fontsize=16,color="magenta"];632 -> 842[label="",style="dashed", color="magenta", weight=3]; 632 -> 843[label="",style="dashed", color="magenta", weight=3]; 633[label="GT",fontsize=16,color="green",shape="box"];634[label="LT",fontsize=16,color="green",shape="box"];635[label="EQ",fontsize=16,color="green",shape="box"];636[label="Integer vyw3000 * Integer vyw410",fontsize=16,color="black",shape="box"];636 -> 844[label="",style="solid", color="black", weight=3]; 637[label="primMulInt (Pos vyw3000) vyw41",fontsize=16,color="burlywood",shape="box"];3190[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];637 -> 3190[label="",style="solid", color="burlywood", weight=9]; 3190 -> 845[label="",style="solid", color="burlywood", weight=3]; 3191[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];637 -> 3191[label="",style="solid", color="burlywood", weight=9]; 3191 -> 846[label="",style="solid", color="burlywood", weight=3]; 638[label="primMulInt (Neg vyw3000) vyw41",fontsize=16,color="burlywood",shape="box"];3192[label="vyw41/Pos vyw410",fontsize=10,color="white",style="solid",shape="box"];638 -> 3192[label="",style="solid", color="burlywood", weight=9]; 3192 -> 847[label="",style="solid", color="burlywood", weight=3]; 3193[label="vyw41/Neg vyw410",fontsize=10,color="white",style="solid",shape="box"];638 -> 3193[label="",style="solid", color="burlywood", weight=9]; 3193 -> 848[label="",style="solid", color="burlywood", weight=3]; 639[label="compare1 Nothing (Just vyw300) True",fontsize=16,color="black",shape="box"];639 -> 849[label="",style="solid", color="black", weight=3]; 640[label="compare1 (Just vyw40) Nothing False",fontsize=16,color="black",shape="box"];640 -> 850[label="",style="solid", color="black", weight=3]; 641 -> 531[label="",style="dashed", color="red", weight=0]; 641[label="vyw40 == vyw300",fontsize=16,color="magenta"];641 -> 851[label="",style="dashed", color="magenta", weight=3]; 641 -> 852[label="",style="dashed", color="magenta", weight=3]; 642 -> 532[label="",style="dashed", color="red", weight=0]; 642[label="vyw40 == vyw300",fontsize=16,color="magenta"];642 -> 853[label="",style="dashed", color="magenta", weight=3]; 642 -> 854[label="",style="dashed", color="magenta", weight=3]; 643 -> 533[label="",style="dashed", color="red", weight=0]; 643[label="vyw40 == vyw300",fontsize=16,color="magenta"];643 -> 855[label="",style="dashed", color="magenta", weight=3]; 643 -> 856[label="",style="dashed", color="magenta", weight=3]; 644 -> 534[label="",style="dashed", color="red", weight=0]; 644[label="vyw40 == vyw300",fontsize=16,color="magenta"];644 -> 857[label="",style="dashed", color="magenta", weight=3]; 644 -> 858[label="",style="dashed", color="magenta", weight=3]; 645 -> 535[label="",style="dashed", color="red", weight=0]; 645[label="vyw40 == vyw300",fontsize=16,color="magenta"];645 -> 859[label="",style="dashed", color="magenta", weight=3]; 645 -> 860[label="",style="dashed", color="magenta", weight=3]; 646 -> 536[label="",style="dashed", color="red", weight=0]; 646[label="vyw40 == vyw300",fontsize=16,color="magenta"];646 -> 861[label="",style="dashed", color="magenta", weight=3]; 646 -> 862[label="",style="dashed", color="magenta", weight=3]; 647 -> 537[label="",style="dashed", color="red", weight=0]; 647[label="vyw40 == vyw300",fontsize=16,color="magenta"];647 -> 863[label="",style="dashed", color="magenta", weight=3]; 647 -> 864[label="",style="dashed", color="magenta", weight=3]; 648 -> 538[label="",style="dashed", color="red", weight=0]; 648[label="vyw40 == vyw300",fontsize=16,color="magenta"];648 -> 865[label="",style="dashed", color="magenta", weight=3]; 648 -> 866[label="",style="dashed", color="magenta", weight=3]; 649 -> 539[label="",style="dashed", color="red", weight=0]; 649[label="vyw40 == vyw300",fontsize=16,color="magenta"];649 -> 867[label="",style="dashed", color="magenta", weight=3]; 649 -> 868[label="",style="dashed", color="magenta", weight=3]; 650 -> 540[label="",style="dashed", color="red", weight=0]; 650[label="vyw40 == vyw300",fontsize=16,color="magenta"];650 -> 869[label="",style="dashed", color="magenta", weight=3]; 650 -> 870[label="",style="dashed", color="magenta", weight=3]; 651 -> 541[label="",style="dashed", color="red", weight=0]; 651[label="vyw40 == vyw300",fontsize=16,color="magenta"];651 -> 871[label="",style="dashed", color="magenta", weight=3]; 651 -> 872[label="",style="dashed", color="magenta", weight=3]; 652 -> 542[label="",style="dashed", color="red", weight=0]; 652[label="vyw40 == vyw300",fontsize=16,color="magenta"];652 -> 873[label="",style="dashed", color="magenta", weight=3]; 652 -> 874[label="",style="dashed", color="magenta", weight=3]; 653 -> 543[label="",style="dashed", color="red", weight=0]; 653[label="vyw40 == vyw300",fontsize=16,color="magenta"];653 -> 875[label="",style="dashed", color="magenta", weight=3]; 653 -> 876[label="",style="dashed", color="magenta", weight=3]; 654 -> 544[label="",style="dashed", color="red", weight=0]; 654[label="vyw40 == vyw300",fontsize=16,color="magenta"];654 -> 877[label="",style="dashed", color="magenta", weight=3]; 654 -> 878[label="",style="dashed", color="magenta", weight=3]; 655[label="compare2 (Just vyw89) (Just vyw90) False",fontsize=16,color="black",shape="box"];655 -> 879[label="",style="solid", color="black", weight=3]; 656[label="compare2 (Just vyw89) (Just vyw90) True",fontsize=16,color="black",shape="box"];656 -> 880[label="",style="solid", color="black", weight=3]; 657[label="LT",fontsize=16,color="green",shape="box"];658[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];658 -> 881[label="",style="solid", color="black", weight=3]; 659[label="Pos vyw410",fontsize=16,color="green",shape="box"];660[label="vyw300",fontsize=16,color="green",shape="box"];661[label="vyw40",fontsize=16,color="green",shape="box"];662[label="Pos vyw3010",fontsize=16,color="green",shape="box"];663[label="Neg vyw410",fontsize=16,color="green",shape="box"];664[label="vyw300",fontsize=16,color="green",shape="box"];665[label="vyw40",fontsize=16,color="green",shape="box"];666[label="Pos vyw3010",fontsize=16,color="green",shape="box"];667[label="Pos vyw410",fontsize=16,color="green",shape="box"];668[label="vyw300",fontsize=16,color="green",shape="box"];669[label="vyw40",fontsize=16,color="green",shape="box"];670[label="Neg vyw3010",fontsize=16,color="green",shape="box"];671[label="Neg vyw410",fontsize=16,color="green",shape="box"];672[label="vyw300",fontsize=16,color="green",shape="box"];673[label="vyw40",fontsize=16,color="green",shape="box"];674[label="Neg vyw3010",fontsize=16,color="green",shape="box"];1107[label="vyw42 == vyw302",fontsize=16,color="blue",shape="box"];3194[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1164[label="",style="solid", color="blue", weight=3]; 3195[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1165[label="",style="solid", color="blue", weight=3]; 3196[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1166[label="",style="solid", color="blue", weight=3]; 3197[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1167[label="",style="solid", color="blue", weight=3]; 3198[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1168[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1169[label="",style="solid", color="blue", weight=3]; 3200[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1170[label="",style="solid", color="blue", weight=3]; 3201[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1171[label="",style="solid", color="blue", weight=3]; 3202[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1172[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1173[label="",style="solid", color="blue", weight=3]; 3204[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1174[label="",style="solid", color="blue", weight=3]; 3205[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1175[label="",style="solid", color="blue", weight=3]; 3206[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1176[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1107 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1177[label="",style="solid", color="blue", weight=3]; 1108[label="vyw41 == vyw301",fontsize=16,color="blue",shape="box"];3208[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1178[label="",style="solid", color="blue", weight=3]; 3209[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1179[label="",style="solid", color="blue", weight=3]; 3210[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1180[label="",style="solid", color="blue", weight=3]; 3211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1181[label="",style="solid", color="blue", weight=3]; 3212[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1182[label="",style="solid", color="blue", weight=3]; 3213[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1183[label="",style="solid", color="blue", weight=3]; 3214[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1184[label="",style="solid", color="blue", weight=3]; 3215[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1185[label="",style="solid", color="blue", weight=3]; 3216[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1186[label="",style="solid", color="blue", weight=3]; 3217[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1187[label="",style="solid", color="blue", weight=3]; 3218[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1188[label="",style="solid", color="blue", weight=3]; 3219[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3219[label="",style="solid", color="blue", weight=9]; 3219 -> 1189[label="",style="solid", color="blue", weight=3]; 3220[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3220[label="",style="solid", color="blue", weight=9]; 3220 -> 1190[label="",style="solid", color="blue", weight=3]; 3221[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1108 -> 3221[label="",style="solid", color="blue", weight=9]; 3221 -> 1191[label="",style="solid", color="blue", weight=3]; 1109 -> 531[label="",style="dashed", color="red", weight=0]; 1109[label="vyw40 == vyw300",fontsize=16,color="magenta"];1110 -> 532[label="",style="dashed", color="red", weight=0]; 1110[label="vyw40 == vyw300",fontsize=16,color="magenta"];1111 -> 533[label="",style="dashed", color="red", weight=0]; 1111[label="vyw40 == vyw300",fontsize=16,color="magenta"];1112 -> 534[label="",style="dashed", color="red", weight=0]; 1112[label="vyw40 == vyw300",fontsize=16,color="magenta"];1113 -> 535[label="",style="dashed", color="red", weight=0]; 1113[label="vyw40 == vyw300",fontsize=16,color="magenta"];1114 -> 536[label="",style="dashed", color="red", weight=0]; 1114[label="vyw40 == vyw300",fontsize=16,color="magenta"];1115 -> 537[label="",style="dashed", color="red", weight=0]; 1115[label="vyw40 == vyw300",fontsize=16,color="magenta"];1116 -> 538[label="",style="dashed", color="red", weight=0]; 1116[label="vyw40 == vyw300",fontsize=16,color="magenta"];1117 -> 539[label="",style="dashed", color="red", weight=0]; 1117[label="vyw40 == vyw300",fontsize=16,color="magenta"];1118 -> 540[label="",style="dashed", color="red", weight=0]; 1118[label="vyw40 == vyw300",fontsize=16,color="magenta"];1119 -> 541[label="",style="dashed", color="red", weight=0]; 1119[label="vyw40 == vyw300",fontsize=16,color="magenta"];1120 -> 542[label="",style="dashed", color="red", weight=0]; 1120[label="vyw40 == vyw300",fontsize=16,color="magenta"];1121 -> 543[label="",style="dashed", color="red", weight=0]; 1121[label="vyw40 == vyw300",fontsize=16,color="magenta"];1122 -> 544[label="",style="dashed", color="red", weight=0]; 1122[label="vyw40 == vyw300",fontsize=16,color="magenta"];1123[label="False && vyw131",fontsize=16,color="black",shape="box"];1123 -> 1192[label="",style="solid", color="black", weight=3]; 1124[label="True && vyw131",fontsize=16,color="black",shape="box"];1124 -> 1193[label="",style="solid", color="black", weight=3]; 1125[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) ((vyw100,vyw101,vyw102) <= (vyw103,vyw104,vyw105))",fontsize=16,color="black",shape="box"];1125 -> 1194[label="",style="solid", color="black", weight=3]; 1126[label="EQ",fontsize=16,color="green",shape="box"];1127 -> 531[label="",style="dashed", color="red", weight=0]; 1127[label="vyw41 == vyw301",fontsize=16,color="magenta"];1127 -> 1195[label="",style="dashed", color="magenta", weight=3]; 1127 -> 1196[label="",style="dashed", color="magenta", weight=3]; 1128 -> 532[label="",style="dashed", color="red", weight=0]; 1128[label="vyw41 == vyw301",fontsize=16,color="magenta"];1128 -> 1197[label="",style="dashed", color="magenta", weight=3]; 1128 -> 1198[label="",style="dashed", color="magenta", weight=3]; 1129 -> 533[label="",style="dashed", color="red", weight=0]; 1129[label="vyw41 == vyw301",fontsize=16,color="magenta"];1129 -> 1199[label="",style="dashed", color="magenta", weight=3]; 1129 -> 1200[label="",style="dashed", color="magenta", weight=3]; 1130 -> 534[label="",style="dashed", color="red", weight=0]; 1130[label="vyw41 == vyw301",fontsize=16,color="magenta"];1130 -> 1201[label="",style="dashed", color="magenta", weight=3]; 1130 -> 1202[label="",style="dashed", color="magenta", weight=3]; 1131 -> 535[label="",style="dashed", color="red", weight=0]; 1131[label="vyw41 == vyw301",fontsize=16,color="magenta"];1131 -> 1203[label="",style="dashed", color="magenta", weight=3]; 1131 -> 1204[label="",style="dashed", color="magenta", weight=3]; 1132 -> 536[label="",style="dashed", color="red", weight=0]; 1132[label="vyw41 == vyw301",fontsize=16,color="magenta"];1132 -> 1205[label="",style="dashed", color="magenta", weight=3]; 1132 -> 1206[label="",style="dashed", color="magenta", weight=3]; 1133 -> 537[label="",style="dashed", color="red", weight=0]; 1133[label="vyw41 == vyw301",fontsize=16,color="magenta"];1133 -> 1207[label="",style="dashed", color="magenta", weight=3]; 1133 -> 1208[label="",style="dashed", color="magenta", weight=3]; 1134 -> 538[label="",style="dashed", color="red", weight=0]; 1134[label="vyw41 == vyw301",fontsize=16,color="magenta"];1134 -> 1209[label="",style="dashed", color="magenta", weight=3]; 1134 -> 1210[label="",style="dashed", color="magenta", weight=3]; 1135 -> 539[label="",style="dashed", color="red", weight=0]; 1135[label="vyw41 == vyw301",fontsize=16,color="magenta"];1135 -> 1211[label="",style="dashed", color="magenta", weight=3]; 1135 -> 1212[label="",style="dashed", color="magenta", weight=3]; 1136 -> 540[label="",style="dashed", color="red", weight=0]; 1136[label="vyw41 == vyw301",fontsize=16,color="magenta"];1136 -> 1213[label="",style="dashed", color="magenta", weight=3]; 1136 -> 1214[label="",style="dashed", color="magenta", weight=3]; 1137 -> 541[label="",style="dashed", color="red", weight=0]; 1137[label="vyw41 == vyw301",fontsize=16,color="magenta"];1137 -> 1215[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1216[label="",style="dashed", color="magenta", weight=3]; 1138 -> 542[label="",style="dashed", color="red", weight=0]; 1138[label="vyw41 == vyw301",fontsize=16,color="magenta"];1138 -> 1217[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1218[label="",style="dashed", color="magenta", weight=3]; 1139 -> 543[label="",style="dashed", color="red", weight=0]; 1139[label="vyw41 == vyw301",fontsize=16,color="magenta"];1139 -> 1219[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1220[label="",style="dashed", color="magenta", weight=3]; 1140 -> 544[label="",style="dashed", color="red", weight=0]; 1140[label="vyw41 == vyw301",fontsize=16,color="magenta"];1140 -> 1221[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1222[label="",style="dashed", color="magenta", weight=3]; 1141 -> 531[label="",style="dashed", color="red", weight=0]; 1141[label="vyw40 == vyw300",fontsize=16,color="magenta"];1141 -> 1223[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1224[label="",style="dashed", color="magenta", weight=3]; 1142 -> 532[label="",style="dashed", color="red", weight=0]; 1142[label="vyw40 == vyw300",fontsize=16,color="magenta"];1142 -> 1225[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1143 -> 533[label="",style="dashed", color="red", weight=0]; 1143[label="vyw40 == vyw300",fontsize=16,color="magenta"];1143 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1144 -> 534[label="",style="dashed", color="red", weight=0]; 1144[label="vyw40 == vyw300",fontsize=16,color="magenta"];1144 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1145 -> 535[label="",style="dashed", color="red", weight=0]; 1145[label="vyw40 == vyw300",fontsize=16,color="magenta"];1145 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1146 -> 536[label="",style="dashed", color="red", weight=0]; 1146[label="vyw40 == vyw300",fontsize=16,color="magenta"];1146 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1147 -> 537[label="",style="dashed", color="red", weight=0]; 1147[label="vyw40 == vyw300",fontsize=16,color="magenta"];1147 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1148 -> 538[label="",style="dashed", color="red", weight=0]; 1148[label="vyw40 == vyw300",fontsize=16,color="magenta"];1148 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1149 -> 539[label="",style="dashed", color="red", weight=0]; 1149[label="vyw40 == vyw300",fontsize=16,color="magenta"];1149 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1150 -> 540[label="",style="dashed", color="red", weight=0]; 1150[label="vyw40 == vyw300",fontsize=16,color="magenta"];1150 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1151 -> 541[label="",style="dashed", color="red", weight=0]; 1151[label="vyw40 == vyw300",fontsize=16,color="magenta"];1151 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1152 -> 542[label="",style="dashed", color="red", weight=0]; 1152[label="vyw40 == vyw300",fontsize=16,color="magenta"];1152 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1153 -> 543[label="",style="dashed", color="red", weight=0]; 1153[label="vyw40 == vyw300",fontsize=16,color="magenta"];1153 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1154 -> 544[label="",style="dashed", color="red", weight=0]; 1154[label="vyw40 == vyw300",fontsize=16,color="magenta"];1154 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1155[label="compare1 (vyw113,vyw114) (vyw115,vyw116) ((vyw113,vyw114) <= (vyw115,vyw116))",fontsize=16,color="black",shape="box"];1155 -> 1251[label="",style="solid", color="black", weight=3]; 1156[label="EQ",fontsize=16,color="green",shape="box"];727[label="Pos vyw410",fontsize=16,color="green",shape="box"];728[label="vyw300",fontsize=16,color="green",shape="box"];729[label="vyw40",fontsize=16,color="green",shape="box"];730[label="Pos vyw3010",fontsize=16,color="green",shape="box"];731[label="Neg vyw410",fontsize=16,color="green",shape="box"];732[label="vyw300",fontsize=16,color="green",shape="box"];733[label="vyw40",fontsize=16,color="green",shape="box"];734[label="Pos vyw3010",fontsize=16,color="green",shape="box"];735[label="Pos vyw410",fontsize=16,color="green",shape="box"];736[label="vyw300",fontsize=16,color="green",shape="box"];737[label="vyw40",fontsize=16,color="green",shape="box"];738[label="Neg vyw3010",fontsize=16,color="green",shape="box"];739[label="Neg vyw410",fontsize=16,color="green",shape="box"];740[label="vyw300",fontsize=16,color="green",shape="box"];741[label="vyw40",fontsize=16,color="green",shape="box"];742[label="Neg vyw3010",fontsize=16,color="green",shape="box"];743[label="vyw40",fontsize=16,color="green",shape="box"];744[label="vyw300",fontsize=16,color="green",shape="box"];531[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];531 -> 675[label="",style="solid", color="black", weight=3]; 745[label="vyw40",fontsize=16,color="green",shape="box"];746[label="vyw300",fontsize=16,color="green",shape="box"];532[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3222[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];532 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 676[label="",style="solid", color="burlywood", weight=3]; 747[label="vyw40",fontsize=16,color="green",shape="box"];748[label="vyw300",fontsize=16,color="green",shape="box"];533[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3223[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];533 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 677[label="",style="solid", color="burlywood", weight=3]; 3224[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];533 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 678[label="",style="solid", color="burlywood", weight=3]; 749[label="vyw40",fontsize=16,color="green",shape="box"];750[label="vyw300",fontsize=16,color="green",shape="box"];534[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3225[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];534 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 679[label="",style="solid", color="burlywood", weight=3]; 3226[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];534 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 680[label="",style="solid", color="burlywood", weight=3]; 3227[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];534 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 681[label="",style="solid", color="burlywood", weight=3]; 751[label="vyw40",fontsize=16,color="green",shape="box"];752[label="vyw300",fontsize=16,color="green",shape="box"];535[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3228[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];535 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 682[label="",style="solid", color="burlywood", weight=3]; 3229[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];535 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 683[label="",style="solid", color="burlywood", weight=3]; 753[label="vyw40",fontsize=16,color="green",shape="box"];754[label="vyw300",fontsize=16,color="green",shape="box"];536[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3230[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];536 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 684[label="",style="solid", color="burlywood", weight=3]; 755[label="vyw40",fontsize=16,color="green",shape="box"];756[label="vyw300",fontsize=16,color="green",shape="box"];537[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3231[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];537 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 685[label="",style="solid", color="burlywood", weight=3]; 3232[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];537 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 686[label="",style="solid", color="burlywood", weight=3]; 757[label="vyw40",fontsize=16,color="green",shape="box"];758[label="vyw300",fontsize=16,color="green",shape="box"];538[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3233[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];538 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 687[label="",style="solid", color="burlywood", weight=3]; 759[label="vyw40",fontsize=16,color="green",shape="box"];760[label="vyw300",fontsize=16,color="green",shape="box"];539[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3234[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];539 -> 3234[label="",style="solid", color="burlywood", weight=9]; 3234 -> 688[label="",style="solid", color="burlywood", weight=3]; 761[label="vyw40",fontsize=16,color="green",shape="box"];762[label="vyw300",fontsize=16,color="green",shape="box"];540[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];540 -> 689[label="",style="solid", color="black", weight=3]; 763[label="vyw40",fontsize=16,color="green",shape="box"];764[label="vyw300",fontsize=16,color="green",shape="box"];541[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3235[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];541 -> 3235[label="",style="solid", color="burlywood", weight=9]; 3235 -> 690[label="",style="solid", color="burlywood", weight=3]; 3236[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];541 -> 3236[label="",style="solid", color="burlywood", weight=9]; 3236 -> 691[label="",style="solid", color="burlywood", weight=3]; 765[label="vyw40",fontsize=16,color="green",shape="box"];766[label="vyw300",fontsize=16,color="green",shape="box"];542[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3237[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];542 -> 3237[label="",style="solid", color="burlywood", weight=9]; 3237 -> 692[label="",style="solid", color="burlywood", weight=3]; 767[label="vyw40",fontsize=16,color="green",shape="box"];768[label="vyw300",fontsize=16,color="green",shape="box"];543[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];543 -> 693[label="",style="solid", color="black", weight=3]; 769[label="vyw40",fontsize=16,color="green",shape="box"];770[label="vyw300",fontsize=16,color="green",shape="box"];544[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];544 -> 694[label="",style="solid", color="black", weight=3]; 771 -> 1157[label="",style="dashed", color="red", weight=0]; 771[label="compare1 (Left vyw70) (Left vyw71) (Left vyw70 <= Left vyw71)",fontsize=16,color="magenta"];771 -> 1158[label="",style="dashed", color="magenta", weight=3]; 771 -> 1159[label="",style="dashed", color="magenta", weight=3]; 771 -> 1160[label="",style="dashed", color="magenta", weight=3]; 772[label="EQ",fontsize=16,color="green",shape="box"];773[label="LT",fontsize=16,color="green",shape="box"];774[label="compare0 (Right vyw40) (Left vyw300) otherwise",fontsize=16,color="black",shape="box"];774 -> 971[label="",style="solid", color="black", weight=3]; 775[label="vyw40",fontsize=16,color="green",shape="box"];776[label="vyw300",fontsize=16,color="green",shape="box"];777[label="vyw40",fontsize=16,color="green",shape="box"];778[label="vyw300",fontsize=16,color="green",shape="box"];779[label="vyw40",fontsize=16,color="green",shape="box"];780[label="vyw300",fontsize=16,color="green",shape="box"];781[label="vyw40",fontsize=16,color="green",shape="box"];782[label="vyw300",fontsize=16,color="green",shape="box"];783[label="vyw40",fontsize=16,color="green",shape="box"];784[label="vyw300",fontsize=16,color="green",shape="box"];785[label="vyw40",fontsize=16,color="green",shape="box"];786[label="vyw300",fontsize=16,color="green",shape="box"];787[label="vyw40",fontsize=16,color="green",shape="box"];788[label="vyw300",fontsize=16,color="green",shape="box"];789[label="vyw40",fontsize=16,color="green",shape="box"];790[label="vyw300",fontsize=16,color="green",shape="box"];791[label="vyw40",fontsize=16,color="green",shape="box"];792[label="vyw300",fontsize=16,color="green",shape="box"];793[label="vyw40",fontsize=16,color="green",shape="box"];794[label="vyw300",fontsize=16,color="green",shape="box"];795[label="vyw40",fontsize=16,color="green",shape="box"];796[label="vyw300",fontsize=16,color="green",shape="box"];797[label="vyw40",fontsize=16,color="green",shape="box"];798[label="vyw300",fontsize=16,color="green",shape="box"];799[label="vyw40",fontsize=16,color="green",shape="box"];800[label="vyw300",fontsize=16,color="green",shape="box"];801[label="vyw40",fontsize=16,color="green",shape="box"];802[label="vyw300",fontsize=16,color="green",shape="box"];803 -> 1256[label="",style="dashed", color="red", weight=0]; 803[label="compare1 (Right vyw77) (Right vyw78) (Right vyw77 <= Right vyw78)",fontsize=16,color="magenta"];803 -> 1257[label="",style="dashed", color="magenta", weight=3]; 803 -> 1258[label="",style="dashed", color="magenta", weight=3]; 803 -> 1259[label="",style="dashed", color="magenta", weight=3]; 804[label="EQ",fontsize=16,color="green",shape="box"];805[label="LT",fontsize=16,color="green",shape="box"];806[label="LT",fontsize=16,color="green",shape="box"];807[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];807 -> 973[label="",style="solid", color="black", weight=3]; 808[label="LT",fontsize=16,color="green",shape="box"];809[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];809 -> 974[label="",style="solid", color="black", weight=3]; 810[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];810 -> 975[label="",style="solid", color="black", weight=3]; 811[label="vyw300",fontsize=16,color="green",shape="box"];812[label="vyw40",fontsize=16,color="green",shape="box"];813[label="vyw300",fontsize=16,color="green",shape="box"];814[label="vyw40",fontsize=16,color="green",shape="box"];815[label="vyw300",fontsize=16,color="green",shape="box"];816[label="vyw40",fontsize=16,color="green",shape="box"];817[label="vyw300",fontsize=16,color="green",shape="box"];818[label="vyw40",fontsize=16,color="green",shape="box"];819[label="vyw300",fontsize=16,color="green",shape="box"];820[label="vyw40",fontsize=16,color="green",shape="box"];821[label="vyw300",fontsize=16,color="green",shape="box"];822[label="vyw40",fontsize=16,color="green",shape="box"];823[label="vyw300",fontsize=16,color="green",shape="box"];824[label="vyw40",fontsize=16,color="green",shape="box"];825[label="vyw300",fontsize=16,color="green",shape="box"];826[label="vyw40",fontsize=16,color="green",shape="box"];827[label="vyw300",fontsize=16,color="green",shape="box"];828[label="vyw40",fontsize=16,color="green",shape="box"];829[label="vyw300",fontsize=16,color="green",shape="box"];830[label="vyw40",fontsize=16,color="green",shape="box"];831[label="vyw300",fontsize=16,color="green",shape="box"];832[label="vyw40",fontsize=16,color="green",shape="box"];833[label="vyw300",fontsize=16,color="green",shape="box"];834[label="vyw40",fontsize=16,color="green",shape="box"];835[label="vyw300",fontsize=16,color="green",shape="box"];836[label="vyw40",fontsize=16,color="green",shape="box"];837[label="vyw300",fontsize=16,color="green",shape="box"];838[label="vyw40",fontsize=16,color="green",shape="box"];839[label="LT",fontsize=16,color="green",shape="box"];840[label="vyw83",fontsize=16,color="green",shape="box"];841[label="GT",fontsize=16,color="green",shape="box"];842[label="vyw400",fontsize=16,color="green",shape="box"];843[label="vyw3000",fontsize=16,color="green",shape="box"];844[label="Integer (primMulInt vyw3000 vyw410)",fontsize=16,color="green",shape="box"];844 -> 976[label="",style="dashed", color="green", weight=3]; 845[label="primMulInt (Pos vyw3000) (Pos vyw410)",fontsize=16,color="black",shape="box"];845 -> 977[label="",style="solid", color="black", weight=3]; 846[label="primMulInt (Pos vyw3000) (Neg vyw410)",fontsize=16,color="black",shape="box"];846 -> 978[label="",style="solid", color="black", weight=3]; 847[label="primMulInt (Neg vyw3000) (Pos vyw410)",fontsize=16,color="black",shape="box"];847 -> 979[label="",style="solid", color="black", weight=3]; 848[label="primMulInt (Neg vyw3000) (Neg vyw410)",fontsize=16,color="black",shape="box"];848 -> 980[label="",style="solid", color="black", weight=3]; 849[label="LT",fontsize=16,color="green",shape="box"];850[label="compare0 (Just vyw40) Nothing otherwise",fontsize=16,color="black",shape="box"];850 -> 981[label="",style="solid", color="black", weight=3]; 851[label="vyw40",fontsize=16,color="green",shape="box"];852[label="vyw300",fontsize=16,color="green",shape="box"];853[label="vyw40",fontsize=16,color="green",shape="box"];854[label="vyw300",fontsize=16,color="green",shape="box"];855[label="vyw40",fontsize=16,color="green",shape="box"];856[label="vyw300",fontsize=16,color="green",shape="box"];857[label="vyw40",fontsize=16,color="green",shape="box"];858[label="vyw300",fontsize=16,color="green",shape="box"];859[label="vyw40",fontsize=16,color="green",shape="box"];860[label="vyw300",fontsize=16,color="green",shape="box"];861[label="vyw40",fontsize=16,color="green",shape="box"];862[label="vyw300",fontsize=16,color="green",shape="box"];863[label="vyw40",fontsize=16,color="green",shape="box"];864[label="vyw300",fontsize=16,color="green",shape="box"];865[label="vyw40",fontsize=16,color="green",shape="box"];866[label="vyw300",fontsize=16,color="green",shape="box"];867[label="vyw40",fontsize=16,color="green",shape="box"];868[label="vyw300",fontsize=16,color="green",shape="box"];869[label="vyw40",fontsize=16,color="green",shape="box"];870[label="vyw300",fontsize=16,color="green",shape="box"];871[label="vyw40",fontsize=16,color="green",shape="box"];872[label="vyw300",fontsize=16,color="green",shape="box"];873[label="vyw40",fontsize=16,color="green",shape="box"];874[label="vyw300",fontsize=16,color="green",shape="box"];875[label="vyw40",fontsize=16,color="green",shape="box"];876[label="vyw300",fontsize=16,color="green",shape="box"];877[label="vyw40",fontsize=16,color="green",shape="box"];878[label="vyw300",fontsize=16,color="green",shape="box"];879 -> 1336[label="",style="dashed", color="red", weight=0]; 879[label="compare1 (Just vyw89) (Just vyw90) (Just vyw89 <= Just vyw90)",fontsize=16,color="magenta"];879 -> 1337[label="",style="dashed", color="magenta", weight=3]; 879 -> 1338[label="",style="dashed", color="magenta", weight=3]; 879 -> 1339[label="",style="dashed", color="magenta", weight=3]; 880[label="EQ",fontsize=16,color="green",shape="box"];881[label="compare0 True False True",fontsize=16,color="black",shape="box"];881 -> 983[label="",style="solid", color="black", weight=3]; 1164 -> 531[label="",style="dashed", color="red", weight=0]; 1164[label="vyw42 == vyw302",fontsize=16,color="magenta"];1164 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1165 -> 532[label="",style="dashed", color="red", weight=0]; 1165[label="vyw42 == vyw302",fontsize=16,color="magenta"];1165 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1166 -> 533[label="",style="dashed", color="red", weight=0]; 1166[label="vyw42 == vyw302",fontsize=16,color="magenta"];1166 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1166 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1167 -> 534[label="",style="dashed", color="red", weight=0]; 1167[label="vyw42 == vyw302",fontsize=16,color="magenta"];1167 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1167 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1168 -> 535[label="",style="dashed", color="red", weight=0]; 1168[label="vyw42 == vyw302",fontsize=16,color="magenta"];1168 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1168 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1169 -> 536[label="",style="dashed", color="red", weight=0]; 1169[label="vyw42 == vyw302",fontsize=16,color="magenta"];1169 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1169 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1170 -> 537[label="",style="dashed", color="red", weight=0]; 1170[label="vyw42 == vyw302",fontsize=16,color="magenta"];1170 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1170 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1171 -> 538[label="",style="dashed", color="red", weight=0]; 1171[label="vyw42 == vyw302",fontsize=16,color="magenta"];1171 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1171 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1172 -> 539[label="",style="dashed", color="red", weight=0]; 1172[label="vyw42 == vyw302",fontsize=16,color="magenta"];1172 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1172 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1173 -> 540[label="",style="dashed", color="red", weight=0]; 1173[label="vyw42 == vyw302",fontsize=16,color="magenta"];1173 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1173 -> 1282[label="",style="dashed", color="magenta", weight=3]; 1174 -> 541[label="",style="dashed", color="red", weight=0]; 1174[label="vyw42 == vyw302",fontsize=16,color="magenta"];1174 -> 1283[label="",style="dashed", color="magenta", weight=3]; 1174 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1175 -> 542[label="",style="dashed", color="red", weight=0]; 1175[label="vyw42 == vyw302",fontsize=16,color="magenta"];1175 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1175 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1176 -> 543[label="",style="dashed", color="red", weight=0]; 1176[label="vyw42 == vyw302",fontsize=16,color="magenta"];1176 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1176 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1177 -> 544[label="",style="dashed", color="red", weight=0]; 1177[label="vyw42 == vyw302",fontsize=16,color="magenta"];1177 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1177 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1178 -> 531[label="",style="dashed", color="red", weight=0]; 1178[label="vyw41 == vyw301",fontsize=16,color="magenta"];1178 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1178 -> 1292[label="",style="dashed", color="magenta", weight=3]; 1179 -> 532[label="",style="dashed", color="red", weight=0]; 1179[label="vyw41 == vyw301",fontsize=16,color="magenta"];1179 -> 1293[label="",style="dashed", color="magenta", weight=3]; 1179 -> 1294[label="",style="dashed", color="magenta", weight=3]; 1180 -> 533[label="",style="dashed", color="red", weight=0]; 1180[label="vyw41 == vyw301",fontsize=16,color="magenta"];1180 -> 1295[label="",style="dashed", color="magenta", weight=3]; 1180 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1181 -> 534[label="",style="dashed", color="red", weight=0]; 1181[label="vyw41 == vyw301",fontsize=16,color="magenta"];1181 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1181 -> 1298[label="",style="dashed", color="magenta", weight=3]; 1182 -> 535[label="",style="dashed", color="red", weight=0]; 1182[label="vyw41 == vyw301",fontsize=16,color="magenta"];1182 -> 1299[label="",style="dashed", color="magenta", weight=3]; 1182 -> 1300[label="",style="dashed", color="magenta", weight=3]; 1183 -> 536[label="",style="dashed", color="red", weight=0]; 1183[label="vyw41 == vyw301",fontsize=16,color="magenta"];1183 -> 1301[label="",style="dashed", color="magenta", weight=3]; 1183 -> 1302[label="",style="dashed", color="magenta", weight=3]; 1184 -> 537[label="",style="dashed", color="red", weight=0]; 1184[label="vyw41 == vyw301",fontsize=16,color="magenta"];1184 -> 1303[label="",style="dashed", color="magenta", weight=3]; 1184 -> 1304[label="",style="dashed", color="magenta", weight=3]; 1185 -> 538[label="",style="dashed", color="red", weight=0]; 1185[label="vyw41 == vyw301",fontsize=16,color="magenta"];1185 -> 1305[label="",style="dashed", color="magenta", weight=3]; 1185 -> 1306[label="",style="dashed", color="magenta", weight=3]; 1186 -> 539[label="",style="dashed", color="red", weight=0]; 1186[label="vyw41 == vyw301",fontsize=16,color="magenta"];1186 -> 1307[label="",style="dashed", color="magenta", weight=3]; 1186 -> 1308[label="",style="dashed", color="magenta", weight=3]; 1187 -> 540[label="",style="dashed", color="red", weight=0]; 1187[label="vyw41 == vyw301",fontsize=16,color="magenta"];1187 -> 1309[label="",style="dashed", color="magenta", weight=3]; 1187 -> 1310[label="",style="dashed", color="magenta", weight=3]; 1188 -> 541[label="",style="dashed", color="red", weight=0]; 1188[label="vyw41 == vyw301",fontsize=16,color="magenta"];1188 -> 1311[label="",style="dashed", color="magenta", weight=3]; 1188 -> 1312[label="",style="dashed", color="magenta", weight=3]; 1189 -> 542[label="",style="dashed", color="red", weight=0]; 1189[label="vyw41 == vyw301",fontsize=16,color="magenta"];1189 -> 1313[label="",style="dashed", color="magenta", weight=3]; 1189 -> 1314[label="",style="dashed", color="magenta", weight=3]; 1190 -> 543[label="",style="dashed", color="red", weight=0]; 1190[label="vyw41 == vyw301",fontsize=16,color="magenta"];1190 -> 1315[label="",style="dashed", color="magenta", weight=3]; 1190 -> 1316[label="",style="dashed", color="magenta", weight=3]; 1191 -> 544[label="",style="dashed", color="red", weight=0]; 1191[label="vyw41 == vyw301",fontsize=16,color="magenta"];1191 -> 1317[label="",style="dashed", color="magenta", weight=3]; 1191 -> 1318[label="",style="dashed", color="magenta", weight=3]; 1192[label="False",fontsize=16,color="green",shape="box"];1193[label="vyw131",fontsize=16,color="green",shape="box"];1194 -> 1348[label="",style="dashed", color="red", weight=0]; 1194[label="compare1 (vyw100,vyw101,vyw102) (vyw103,vyw104,vyw105) (vyw100 < vyw103 || vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105))",fontsize=16,color="magenta"];1194 -> 1349[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1350[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1351[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1352[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1353[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1354[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1355[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1356[label="",style="dashed", color="magenta", weight=3]; 1195[label="vyw41",fontsize=16,color="green",shape="box"];1196[label="vyw301",fontsize=16,color="green",shape="box"];1197[label="vyw41",fontsize=16,color="green",shape="box"];1198[label="vyw301",fontsize=16,color="green",shape="box"];1199[label="vyw41",fontsize=16,color="green",shape="box"];1200[label="vyw301",fontsize=16,color="green",shape="box"];1201[label="vyw41",fontsize=16,color="green",shape="box"];1202[label="vyw301",fontsize=16,color="green",shape="box"];1203[label="vyw41",fontsize=16,color="green",shape="box"];1204[label="vyw301",fontsize=16,color="green",shape="box"];1205[label="vyw41",fontsize=16,color="green",shape="box"];1206[label="vyw301",fontsize=16,color="green",shape="box"];1207[label="vyw41",fontsize=16,color="green",shape="box"];1208[label="vyw301",fontsize=16,color="green",shape="box"];1209[label="vyw41",fontsize=16,color="green",shape="box"];1210[label="vyw301",fontsize=16,color="green",shape="box"];1211[label="vyw41",fontsize=16,color="green",shape="box"];1212[label="vyw301",fontsize=16,color="green",shape="box"];1213[label="vyw41",fontsize=16,color="green",shape="box"];1214[label="vyw301",fontsize=16,color="green",shape="box"];1215[label="vyw41",fontsize=16,color="green",shape="box"];1216[label="vyw301",fontsize=16,color="green",shape="box"];1217[label="vyw41",fontsize=16,color="green",shape="box"];1218[label="vyw301",fontsize=16,color="green",shape="box"];1219[label="vyw41",fontsize=16,color="green",shape="box"];1220[label="vyw301",fontsize=16,color="green",shape="box"];1221[label="vyw41",fontsize=16,color="green",shape="box"];1222[label="vyw301",fontsize=16,color="green",shape="box"];1223[label="vyw40",fontsize=16,color="green",shape="box"];1224[label="vyw300",fontsize=16,color="green",shape="box"];1225[label="vyw40",fontsize=16,color="green",shape="box"];1226[label="vyw300",fontsize=16,color="green",shape="box"];1227[label="vyw40",fontsize=16,color="green",shape="box"];1228[label="vyw300",fontsize=16,color="green",shape="box"];1229[label="vyw40",fontsize=16,color="green",shape="box"];1230[label="vyw300",fontsize=16,color="green",shape="box"];1231[label="vyw40",fontsize=16,color="green",shape="box"];1232[label="vyw300",fontsize=16,color="green",shape="box"];1233[label="vyw40",fontsize=16,color="green",shape="box"];1234[label="vyw300",fontsize=16,color="green",shape="box"];1235[label="vyw40",fontsize=16,color="green",shape="box"];1236[label="vyw300",fontsize=16,color="green",shape="box"];1237[label="vyw40",fontsize=16,color="green",shape="box"];1238[label="vyw300",fontsize=16,color="green",shape="box"];1239[label="vyw40",fontsize=16,color="green",shape="box"];1240[label="vyw300",fontsize=16,color="green",shape="box"];1241[label="vyw40",fontsize=16,color="green",shape="box"];1242[label="vyw300",fontsize=16,color="green",shape="box"];1243[label="vyw40",fontsize=16,color="green",shape="box"];1244[label="vyw300",fontsize=16,color="green",shape="box"];1245[label="vyw40",fontsize=16,color="green",shape="box"];1246[label="vyw300",fontsize=16,color="green",shape="box"];1247[label="vyw40",fontsize=16,color="green",shape="box"];1248[label="vyw300",fontsize=16,color="green",shape="box"];1249[label="vyw40",fontsize=16,color="green",shape="box"];1250[label="vyw300",fontsize=16,color="green",shape="box"];1251 -> 1385[label="",style="dashed", color="red", weight=0]; 1251[label="compare1 (vyw113,vyw114) (vyw115,vyw116) (vyw113 < vyw115 || vyw113 == vyw115 && vyw114 <= vyw116)",fontsize=16,color="magenta"];1251 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1251 -> 1391[label="",style="dashed", color="magenta", weight=3]; 675[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3238[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];675 -> 3238[label="",style="solid", color="burlywood", weight=9]; 3238 -> 882[label="",style="solid", color="burlywood", weight=3]; 676[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3239[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];676 -> 3239[label="",style="solid", color="burlywood", weight=9]; 3239 -> 883[label="",style="solid", color="burlywood", weight=3]; 677[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3240[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];677 -> 3240[label="",style="solid", color="burlywood", weight=9]; 3240 -> 884[label="",style="solid", color="burlywood", weight=3]; 3241[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];677 -> 3241[label="",style="solid", color="burlywood", weight=9]; 3241 -> 885[label="",style="solid", color="burlywood", weight=3]; 678[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3242[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];678 -> 3242[label="",style="solid", color="burlywood", weight=9]; 3242 -> 886[label="",style="solid", color="burlywood", weight=3]; 3243[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];678 -> 3243[label="",style="solid", color="burlywood", weight=9]; 3243 -> 887[label="",style="solid", color="burlywood", weight=3]; 679[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3244[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];679 -> 3244[label="",style="solid", color="burlywood", weight=9]; 3244 -> 888[label="",style="solid", color="burlywood", weight=3]; 3245[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];679 -> 3245[label="",style="solid", color="burlywood", weight=9]; 3245 -> 889[label="",style="solid", color="burlywood", weight=3]; 3246[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];679 -> 3246[label="",style="solid", color="burlywood", weight=9]; 3246 -> 890[label="",style="solid", color="burlywood", weight=3]; 680[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3247[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];680 -> 3247[label="",style="solid", color="burlywood", weight=9]; 3247 -> 891[label="",style="solid", color="burlywood", weight=3]; 3248[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];680 -> 3248[label="",style="solid", color="burlywood", weight=9]; 3248 -> 892[label="",style="solid", color="burlywood", weight=3]; 3249[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];680 -> 3249[label="",style="solid", color="burlywood", weight=9]; 3249 -> 893[label="",style="solid", color="burlywood", weight=3]; 681[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3250[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];681 -> 3250[label="",style="solid", color="burlywood", weight=9]; 3250 -> 894[label="",style="solid", color="burlywood", weight=3]; 3251[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];681 -> 3251[label="",style="solid", color="burlywood", weight=9]; 3251 -> 895[label="",style="solid", color="burlywood", weight=3]; 3252[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];681 -> 3252[label="",style="solid", color="burlywood", weight=9]; 3252 -> 896[label="",style="solid", color="burlywood", weight=3]; 682[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3253[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];682 -> 3253[label="",style="solid", color="burlywood", weight=9]; 3253 -> 897[label="",style="solid", color="burlywood", weight=3]; 3254[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];682 -> 3254[label="",style="solid", color="burlywood", weight=9]; 3254 -> 898[label="",style="solid", color="burlywood", weight=3]; 683[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3255[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];683 -> 3255[label="",style="solid", color="burlywood", weight=9]; 3255 -> 899[label="",style="solid", color="burlywood", weight=3]; 3256[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];683 -> 3256[label="",style="solid", color="burlywood", weight=9]; 3256 -> 900[label="",style="solid", color="burlywood", weight=3]; 684[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];3257[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];684 -> 3257[label="",style="solid", color="burlywood", weight=9]; 3257 -> 901[label="",style="solid", color="burlywood", weight=3]; 685[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3258[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];685 -> 3258[label="",style="solid", color="burlywood", weight=9]; 3258 -> 902[label="",style="solid", color="burlywood", weight=3]; 3259[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];685 -> 3259[label="",style="solid", color="burlywood", weight=9]; 3259 -> 903[label="",style="solid", color="burlywood", weight=3]; 686[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3260[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];686 -> 3260[label="",style="solid", color="burlywood", weight=9]; 3260 -> 904[label="",style="solid", color="burlywood", weight=3]; 3261[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];686 -> 3261[label="",style="solid", color="burlywood", weight=9]; 3261 -> 905[label="",style="solid", color="burlywood", weight=3]; 687[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3262[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];687 -> 3262[label="",style="solid", color="burlywood", weight=9]; 3262 -> 906[label="",style="solid", color="burlywood", weight=3]; 688[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3263[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];688 -> 3263[label="",style="solid", color="burlywood", weight=9]; 3263 -> 907[label="",style="solid", color="burlywood", weight=3]; 689[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3264[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];689 -> 3264[label="",style="solid", color="burlywood", weight=9]; 3264 -> 908[label="",style="solid", color="burlywood", weight=3]; 690[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3265[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];690 -> 3265[label="",style="solid", color="burlywood", weight=9]; 3265 -> 909[label="",style="solid", color="burlywood", weight=3]; 3266[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];690 -> 3266[label="",style="solid", color="burlywood", weight=9]; 3266 -> 910[label="",style="solid", color="burlywood", weight=3]; 691[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3267[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];691 -> 3267[label="",style="solid", color="burlywood", weight=9]; 3267 -> 911[label="",style="solid", color="burlywood", weight=3]; 3268[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];691 -> 3268[label="",style="solid", color="burlywood", weight=9]; 3268 -> 912[label="",style="solid", color="burlywood", weight=3]; 692[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];3269[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];692 -> 3269[label="",style="solid", color="burlywood", weight=9]; 3269 -> 913[label="",style="solid", color="burlywood", weight=3]; 693[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3270[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];693 -> 3270[label="",style="solid", color="burlywood", weight=9]; 3270 -> 914[label="",style="solid", color="burlywood", weight=3]; 3271[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];693 -> 3271[label="",style="solid", color="burlywood", weight=9]; 3271 -> 915[label="",style="solid", color="burlywood", weight=3]; 694[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3272[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];694 -> 3272[label="",style="solid", color="burlywood", weight=9]; 3272 -> 916[label="",style="solid", color="burlywood", weight=3]; 1158[label="vyw70",fontsize=16,color="green",shape="box"];1159[label="vyw71",fontsize=16,color="green",shape="box"];1160[label="Left vyw70 <= Left vyw71",fontsize=16,color="black",shape="box"];1160 -> 1252[label="",style="solid", color="black", weight=3]; 1157[label="compare1 (Left vyw136) (Left vyw137) vyw138",fontsize=16,color="burlywood",shape="triangle"];3273[label="vyw138/False",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3273[label="",style="solid", color="burlywood", weight=9]; 3273 -> 1253[label="",style="solid", color="burlywood", weight=3]; 3274[label="vyw138/True",fontsize=10,color="white",style="solid",shape="box"];1157 -> 3274[label="",style="solid", color="burlywood", weight=9]; 3274 -> 1254[label="",style="solid", color="burlywood", weight=3]; 971[label="compare0 (Right vyw40) (Left vyw300) True",fontsize=16,color="black",shape="box"];971 -> 1255[label="",style="solid", color="black", weight=3]; 1257[label="vyw78",fontsize=16,color="green",shape="box"];1258[label="vyw77",fontsize=16,color="green",shape="box"];1259[label="Right vyw77 <= Right vyw78",fontsize=16,color="black",shape="box"];1259 -> 1323[label="",style="solid", color="black", weight=3]; 1256[label="compare1 (Right vyw143) (Right vyw144) vyw145",fontsize=16,color="burlywood",shape="triangle"];3275[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3275[label="",style="solid", color="burlywood", weight=9]; 3275 -> 1324[label="",style="solid", color="burlywood", weight=3]; 3276[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];1256 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 1325[label="",style="solid", color="burlywood", weight=3]; 973[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];973 -> 1326[label="",style="solid", color="black", weight=3]; 974[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];974 -> 1327[label="",style="solid", color="black", weight=3]; 975[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];975 -> 1328[label="",style="solid", color="black", weight=3]; 976 -> 511[label="",style="dashed", color="red", weight=0]; 976[label="primMulInt vyw3000 vyw410",fontsize=16,color="magenta"];976 -> 1329[label="",style="dashed", color="magenta", weight=3]; 976 -> 1330[label="",style="dashed", color="magenta", weight=3]; 977[label="Pos (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];977 -> 1331[label="",style="dashed", color="green", weight=3]; 978[label="Neg (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];978 -> 1332[label="",style="dashed", color="green", weight=3]; 979[label="Neg (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];979 -> 1333[label="",style="dashed", color="green", weight=3]; 980[label="Pos (primMulNat vyw3000 vyw410)",fontsize=16,color="green",shape="box"];980 -> 1334[label="",style="dashed", color="green", weight=3]; 981[label="compare0 (Just vyw40) Nothing True",fontsize=16,color="black",shape="box"];981 -> 1335[label="",style="solid", color="black", weight=3]; 1337[label="vyw90",fontsize=16,color="green",shape="box"];1338[label="vyw89",fontsize=16,color="green",shape="box"];1339[label="Just vyw89 <= Just vyw90",fontsize=16,color="black",shape="box"];1339 -> 1343[label="",style="solid", color="black", weight=3]; 1336[label="compare1 (Just vyw153) (Just vyw154) vyw155",fontsize=16,color="burlywood",shape="triangle"];3277[label="vyw155/False",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 1344[label="",style="solid", color="burlywood", weight=3]; 3278[label="vyw155/True",fontsize=10,color="white",style="solid",shape="box"];1336 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 1345[label="",style="solid", color="burlywood", weight=3]; 983[label="GT",fontsize=16,color="green",shape="box"];1263[label="vyw42",fontsize=16,color="green",shape="box"];1264[label="vyw302",fontsize=16,color="green",shape="box"];1265[label="vyw42",fontsize=16,color="green",shape="box"];1266[label="vyw302",fontsize=16,color="green",shape="box"];1267[label="vyw42",fontsize=16,color="green",shape="box"];1268[label="vyw302",fontsize=16,color="green",shape="box"];1269[label="vyw42",fontsize=16,color="green",shape="box"];1270[label="vyw302",fontsize=16,color="green",shape="box"];1271[label="vyw42",fontsize=16,color="green",shape="box"];1272[label="vyw302",fontsize=16,color="green",shape="box"];1273[label="vyw42",fontsize=16,color="green",shape="box"];1274[label="vyw302",fontsize=16,color="green",shape="box"];1275[label="vyw42",fontsize=16,color="green",shape="box"];1276[label="vyw302",fontsize=16,color="green",shape="box"];1277[label="vyw42",fontsize=16,color="green",shape="box"];1278[label="vyw302",fontsize=16,color="green",shape="box"];1279[label="vyw42",fontsize=16,color="green",shape="box"];1280[label="vyw302",fontsize=16,color="green",shape="box"];1281[label="vyw42",fontsize=16,color="green",shape="box"];1282[label="vyw302",fontsize=16,color="green",shape="box"];1283[label="vyw42",fontsize=16,color="green",shape="box"];1284[label="vyw302",fontsize=16,color="green",shape="box"];1285[label="vyw42",fontsize=16,color="green",shape="box"];1286[label="vyw302",fontsize=16,color="green",shape="box"];1287[label="vyw42",fontsize=16,color="green",shape="box"];1288[label="vyw302",fontsize=16,color="green",shape="box"];1289[label="vyw42",fontsize=16,color="green",shape="box"];1290[label="vyw302",fontsize=16,color="green",shape="box"];1291[label="vyw41",fontsize=16,color="green",shape="box"];1292[label="vyw301",fontsize=16,color="green",shape="box"];1293[label="vyw41",fontsize=16,color="green",shape="box"];1294[label="vyw301",fontsize=16,color="green",shape="box"];1295[label="vyw41",fontsize=16,color="green",shape="box"];1296[label="vyw301",fontsize=16,color="green",shape="box"];1297[label="vyw41",fontsize=16,color="green",shape="box"];1298[label="vyw301",fontsize=16,color="green",shape="box"];1299[label="vyw41",fontsize=16,color="green",shape="box"];1300[label="vyw301",fontsize=16,color="green",shape="box"];1301[label="vyw41",fontsize=16,color="green",shape="box"];1302[label="vyw301",fontsize=16,color="green",shape="box"];1303[label="vyw41",fontsize=16,color="green",shape="box"];1304[label="vyw301",fontsize=16,color="green",shape="box"];1305[label="vyw41",fontsize=16,color="green",shape="box"];1306[label="vyw301",fontsize=16,color="green",shape="box"];1307[label="vyw41",fontsize=16,color="green",shape="box"];1308[label="vyw301",fontsize=16,color="green",shape="box"];1309[label="vyw41",fontsize=16,color="green",shape="box"];1310[label="vyw301",fontsize=16,color="green",shape="box"];1311[label="vyw41",fontsize=16,color="green",shape="box"];1312[label="vyw301",fontsize=16,color="green",shape="box"];1313[label="vyw41",fontsize=16,color="green",shape="box"];1314[label="vyw301",fontsize=16,color="green",shape="box"];1315[label="vyw41",fontsize=16,color="green",shape="box"];1316[label="vyw301",fontsize=16,color="green",shape="box"];1317[label="vyw41",fontsize=16,color="green",shape="box"];1318[label="vyw301",fontsize=16,color="green",shape="box"];1349[label="vyw103",fontsize=16,color="green",shape="box"];1350[label="vyw100",fontsize=16,color="green",shape="box"];1351[label="vyw101",fontsize=16,color="green",shape="box"];1352 -> 1088[label="",style="dashed", color="red", weight=0]; 1352[label="vyw100 == vyw103 && (vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105)",fontsize=16,color="magenta"];1352 -> 1365[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1366[label="",style="dashed", color="magenta", weight=3]; 1353[label="vyw104",fontsize=16,color="green",shape="box"];1354[label="vyw105",fontsize=16,color="green",shape="box"];1355[label="vyw102",fontsize=16,color="green",shape="box"];1356[label="vyw100 < vyw103",fontsize=16,color="blue",shape="box"];3279[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3279[label="",style="solid", color="blue", weight=9]; 3279 -> 1367[label="",style="solid", color="blue", weight=3]; 3280[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3280[label="",style="solid", color="blue", weight=9]; 3280 -> 1368[label="",style="solid", color="blue", weight=3]; 3281[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3281[label="",style="solid", color="blue", weight=9]; 3281 -> 1369[label="",style="solid", color="blue", weight=3]; 3282[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3282[label="",style="solid", color="blue", weight=9]; 3282 -> 1370[label="",style="solid", color="blue", weight=3]; 3283[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3283[label="",style="solid", color="blue", weight=9]; 3283 -> 1371[label="",style="solid", color="blue", weight=3]; 3284[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1372[label="",style="solid", color="blue", weight=3]; 3285[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1373[label="",style="solid", color="blue", weight=3]; 3286[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1374[label="",style="solid", color="blue", weight=3]; 3287[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1375[label="",style="solid", color="blue", weight=3]; 3288[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1376[label="",style="solid", color="blue", weight=3]; 3289[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1377[label="",style="solid", color="blue", weight=3]; 3290[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1378[label="",style="solid", color="blue", weight=3]; 3291[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1379[label="",style="solid", color="blue", weight=3]; 3292[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1380[label="",style="solid", color="blue", weight=3]; 1348[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (vyw171 || vyw172)",fontsize=16,color="burlywood",shape="triangle"];3293[label="vyw171/False",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3293[label="",style="solid", color="burlywood", weight=9]; 3293 -> 1381[label="",style="solid", color="burlywood", weight=3]; 3294[label="vyw171/True",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3294[label="",style="solid", color="burlywood", weight=9]; 3294 -> 1382[label="",style="solid", color="burlywood", weight=3]; 1386[label="vyw116",fontsize=16,color="green",shape="box"];1387[label="vyw113",fontsize=16,color="green",shape="box"];1388[label="vyw113 < vyw115",fontsize=16,color="blue",shape="box"];3295[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1398[label="",style="solid", color="blue", weight=3]; 3296[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1399[label="",style="solid", color="blue", weight=3]; 3297[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1400[label="",style="solid", color="blue", weight=3]; 3298[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1401[label="",style="solid", color="blue", weight=3]; 3299[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1402[label="",style="solid", color="blue", weight=3]; 3300[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1403[label="",style="solid", color="blue", weight=3]; 3301[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1404[label="",style="solid", color="blue", weight=3]; 3302[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1405[label="",style="solid", color="blue", weight=3]; 3303[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1406[label="",style="solid", color="blue", weight=3]; 3304[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1407[label="",style="solid", color="blue", weight=3]; 3305[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1408[label="",style="solid", color="blue", weight=3]; 3306[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1409[label="",style="solid", color="blue", weight=3]; 3307[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1410[label="",style="solid", color="blue", weight=3]; 3308[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1388 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1411[label="",style="solid", color="blue", weight=3]; 1389[label="vyw115",fontsize=16,color="green",shape="box"];1390[label="vyw114",fontsize=16,color="green",shape="box"];1391 -> 1088[label="",style="dashed", color="red", weight=0]; 1391[label="vyw113 == vyw115 && vyw114 <= vyw116",fontsize=16,color="magenta"];1391 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1385[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (vyw184 || vyw185)",fontsize=16,color="burlywood",shape="triangle"];3309[label="vyw184/False",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3309[label="",style="solid", color="burlywood", weight=9]; 3309 -> 1414[label="",style="solid", color="burlywood", weight=3]; 3310[label="vyw184/True",fontsize=10,color="white",style="solid",shape="box"];1385 -> 3310[label="",style="solid", color="burlywood", weight=9]; 3310 -> 1415[label="",style="solid", color="burlywood", weight=3]; 882[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3311[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];882 -> 3311[label="",style="solid", color="burlywood", weight=9]; 3311 -> 984[label="",style="solid", color="burlywood", weight=3]; 883[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];883 -> 985[label="",style="solid", color="black", weight=3]; 884[label="False == False",fontsize=16,color="black",shape="box"];884 -> 986[label="",style="solid", color="black", weight=3]; 885[label="False == True",fontsize=16,color="black",shape="box"];885 -> 987[label="",style="solid", color="black", weight=3]; 886[label="True == False",fontsize=16,color="black",shape="box"];886 -> 988[label="",style="solid", color="black", weight=3]; 887[label="True == True",fontsize=16,color="black",shape="box"];887 -> 989[label="",style="solid", color="black", weight=3]; 888[label="LT == LT",fontsize=16,color="black",shape="box"];888 -> 990[label="",style="solid", color="black", weight=3]; 889[label="LT == EQ",fontsize=16,color="black",shape="box"];889 -> 991[label="",style="solid", color="black", weight=3]; 890[label="LT == GT",fontsize=16,color="black",shape="box"];890 -> 992[label="",style="solid", color="black", weight=3]; 891[label="EQ == LT",fontsize=16,color="black",shape="box"];891 -> 993[label="",style="solid", color="black", weight=3]; 892[label="EQ == EQ",fontsize=16,color="black",shape="box"];892 -> 994[label="",style="solid", color="black", weight=3]; 893[label="EQ == GT",fontsize=16,color="black",shape="box"];893 -> 995[label="",style="solid", color="black", weight=3]; 894[label="GT == LT",fontsize=16,color="black",shape="box"];894 -> 996[label="",style="solid", color="black", weight=3]; 895[label="GT == EQ",fontsize=16,color="black",shape="box"];895 -> 997[label="",style="solid", color="black", weight=3]; 896[label="GT == GT",fontsize=16,color="black",shape="box"];896 -> 998[label="",style="solid", color="black", weight=3]; 897[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];897 -> 999[label="",style="solid", color="black", weight=3]; 898[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];898 -> 1000[label="",style="solid", color="black", weight=3]; 899[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];899 -> 1001[label="",style="solid", color="black", weight=3]; 900[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];900 -> 1002[label="",style="solid", color="black", weight=3]; 901[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];901 -> 1003[label="",style="solid", color="black", weight=3]; 902[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];902 -> 1004[label="",style="solid", color="black", weight=3]; 903[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];903 -> 1005[label="",style="solid", color="black", weight=3]; 904[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];904 -> 1006[label="",style="solid", color="black", weight=3]; 905[label="[] == []",fontsize=16,color="black",shape="box"];905 -> 1007[label="",style="solid", color="black", weight=3]; 906[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];906 -> 1008[label="",style="solid", color="black", weight=3]; 907[label="() == ()",fontsize=16,color="black",shape="box"];907 -> 1009[label="",style="solid", color="black", weight=3]; 908[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3312[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];908 -> 3312[label="",style="solid", color="burlywood", weight=9]; 3312 -> 1010[label="",style="solid", color="burlywood", weight=3]; 909[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];909 -> 1011[label="",style="solid", color="black", weight=3]; 910[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];910 -> 1012[label="",style="solid", color="black", weight=3]; 911[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];911 -> 1013[label="",style="solid", color="black", weight=3]; 912[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];912 -> 1014[label="",style="solid", color="black", weight=3]; 913[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];913 -> 1015[label="",style="solid", color="black", weight=3]; 914[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3313[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];914 -> 3313[label="",style="solid", color="burlywood", weight=9]; 3313 -> 1016[label="",style="solid", color="burlywood", weight=3]; 3314[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];914 -> 3314[label="",style="solid", color="burlywood", weight=9]; 3314 -> 1017[label="",style="solid", color="burlywood", weight=3]; 915[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3315[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];915 -> 3315[label="",style="solid", color="burlywood", weight=9]; 3315 -> 1018[label="",style="solid", color="burlywood", weight=3]; 3316[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];915 -> 3316[label="",style="solid", color="burlywood", weight=9]; 3316 -> 1019[label="",style="solid", color="burlywood", weight=3]; 916[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3317[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];916 -> 3317[label="",style="solid", color="burlywood", weight=9]; 3317 -> 1020[label="",style="solid", color="burlywood", weight=3]; 1252[label="vyw70 <= vyw71",fontsize=16,color="blue",shape="box"];3318[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1416[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1417[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1418[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1419[label="",style="solid", color="blue", weight=3]; 3322[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1420[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1421[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1422[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1423[label="",style="solid", color="blue", weight=3]; 3326[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1424[label="",style="solid", color="blue", weight=3]; 3327[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1425[label="",style="solid", color="blue", weight=3]; 3328[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1426[label="",style="solid", color="blue", weight=3]; 3329[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1427[label="",style="solid", color="blue", weight=3]; 3330[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1428[label="",style="solid", color="blue", weight=3]; 3331[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1252 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1429[label="",style="solid", color="blue", weight=3]; 1253[label="compare1 (Left vyw136) (Left vyw137) False",fontsize=16,color="black",shape="box"];1253 -> 1430[label="",style="solid", color="black", weight=3]; 1254[label="compare1 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1254 -> 1431[label="",style="solid", color="black", weight=3]; 1255[label="GT",fontsize=16,color="green",shape="box"];1323[label="vyw77 <= vyw78",fontsize=16,color="blue",shape="box"];3332[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1432[label="",style="solid", color="blue", weight=3]; 3333[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1433[label="",style="solid", color="blue", weight=3]; 3334[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1434[label="",style="solid", color="blue", weight=3]; 3335[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 1435[label="",style="solid", color="blue", weight=3]; 3336[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1436[label="",style="solid", color="blue", weight=3]; 3337[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 1437[label="",style="solid", color="blue", weight=3]; 3338[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 1438[label="",style="solid", color="blue", weight=3]; 3339[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1439[label="",style="solid", color="blue", weight=3]; 3340[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3340[label="",style="solid", color="blue", weight=9]; 3340 -> 1440[label="",style="solid", color="blue", weight=3]; 3341[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3341[label="",style="solid", color="blue", weight=9]; 3341 -> 1441[label="",style="solid", color="blue", weight=3]; 3342[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1442[label="",style="solid", color="blue", weight=3]; 3343[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1443[label="",style="solid", color="blue", weight=3]; 3344[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1444[label="",style="solid", color="blue", weight=3]; 3345[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1323 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1445[label="",style="solid", color="blue", weight=3]; 1324[label="compare1 (Right vyw143) (Right vyw144) False",fontsize=16,color="black",shape="box"];1324 -> 1446[label="",style="solid", color="black", weight=3]; 1325[label="compare1 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1325 -> 1447[label="",style="solid", color="black", weight=3]; 1326[label="GT",fontsize=16,color="green",shape="box"];1327[label="GT",fontsize=16,color="green",shape="box"];1328[label="GT",fontsize=16,color="green",shape="box"];1329[label="vyw3000",fontsize=16,color="green",shape="box"];1330[label="vyw410",fontsize=16,color="green",shape="box"];1331[label="primMulNat vyw3000 vyw410",fontsize=16,color="burlywood",shape="triangle"];3346[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1331 -> 3346[label="",style="solid", color="burlywood", weight=9]; 3346 -> 1448[label="",style="solid", color="burlywood", weight=3]; 3347[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1331 -> 3347[label="",style="solid", color="burlywood", weight=9]; 3347 -> 1449[label="",style="solid", color="burlywood", weight=3]; 1332 -> 1331[label="",style="dashed", color="red", weight=0]; 1332[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];1332 -> 1450[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1331[label="",style="dashed", color="red", weight=0]; 1333[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];1333 -> 1451[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1331[label="",style="dashed", color="red", weight=0]; 1334[label="primMulNat vyw3000 vyw410",fontsize=16,color="magenta"];1334 -> 1452[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1453[label="",style="dashed", color="magenta", weight=3]; 1335[label="GT",fontsize=16,color="green",shape="box"];1343[label="vyw89 <= vyw90",fontsize=16,color="blue",shape="box"];3348[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1454[label="",style="solid", color="blue", weight=3]; 3349[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1455[label="",style="solid", color="blue", weight=3]; 3350[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1456[label="",style="solid", color="blue", weight=3]; 3351[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1457[label="",style="solid", color="blue", weight=3]; 3352[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1458[label="",style="solid", color="blue", weight=3]; 3353[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1459[label="",style="solid", color="blue", weight=3]; 3354[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1460[label="",style="solid", color="blue", weight=3]; 3355[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1461[label="",style="solid", color="blue", weight=3]; 3356[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3356[label="",style="solid", color="blue", weight=9]; 3356 -> 1462[label="",style="solid", color="blue", weight=3]; 3357[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3357[label="",style="solid", color="blue", weight=9]; 3357 -> 1463[label="",style="solid", color="blue", weight=3]; 3358[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3358[label="",style="solid", color="blue", weight=9]; 3358 -> 1464[label="",style="solid", color="blue", weight=3]; 3359[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3359[label="",style="solid", color="blue", weight=9]; 3359 -> 1465[label="",style="solid", color="blue", weight=3]; 3360[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3360[label="",style="solid", color="blue", weight=9]; 3360 -> 1466[label="",style="solid", color="blue", weight=3]; 3361[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3361[label="",style="solid", color="blue", weight=9]; 3361 -> 1467[label="",style="solid", color="blue", weight=3]; 1344[label="compare1 (Just vyw153) (Just vyw154) False",fontsize=16,color="black",shape="box"];1344 -> 1468[label="",style="solid", color="black", weight=3]; 1345[label="compare1 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1345 -> 1469[label="",style="solid", color="black", weight=3]; 1365 -> 1713[label="",style="dashed", color="red", weight=0]; 1365[label="vyw101 < vyw104 || vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1365 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1365 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1366[label="vyw100 == vyw103",fontsize=16,color="blue",shape="box"];3362[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1472[label="",style="solid", color="blue", weight=3]; 3363[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1473[label="",style="solid", color="blue", weight=3]; 3364[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1474[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1475[label="",style="solid", color="blue", weight=3]; 3366[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3366[label="",style="solid", color="blue", weight=9]; 3366 -> 1476[label="",style="solid", color="blue", weight=3]; 3367[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3367[label="",style="solid", color="blue", weight=9]; 3367 -> 1477[label="",style="solid", color="blue", weight=3]; 3368[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1478[label="",style="solid", color="blue", weight=3]; 3369[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1479[label="",style="solid", color="blue", weight=3]; 3370[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1480[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1481[label="",style="solid", color="blue", weight=3]; 3372[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1482[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1483[label="",style="solid", color="blue", weight=3]; 3374[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1484[label="",style="solid", color="blue", weight=3]; 3375[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1366 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1485[label="",style="solid", color="blue", weight=3]; 1367 -> 19[label="",style="dashed", color="red", weight=0]; 1367[label="vyw100 < vyw103",fontsize=16,color="magenta"];1367 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1367 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1368 -> 20[label="",style="dashed", color="red", weight=0]; 1368[label="vyw100 < vyw103",fontsize=16,color="magenta"];1368 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1368 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1369 -> 21[label="",style="dashed", color="red", weight=0]; 1369[label="vyw100 < vyw103",fontsize=16,color="magenta"];1369 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1370 -> 22[label="",style="dashed", color="red", weight=0]; 1370[label="vyw100 < vyw103",fontsize=16,color="magenta"];1370 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1371 -> 23[label="",style="dashed", color="red", weight=0]; 1371[label="vyw100 < vyw103",fontsize=16,color="magenta"];1371 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1372 -> 24[label="",style="dashed", color="red", weight=0]; 1372[label="vyw100 < vyw103",fontsize=16,color="magenta"];1372 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1373 -> 25[label="",style="dashed", color="red", weight=0]; 1373[label="vyw100 < vyw103",fontsize=16,color="magenta"];1373 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1374 -> 26[label="",style="dashed", color="red", weight=0]; 1374[label="vyw100 < vyw103",fontsize=16,color="magenta"];1374 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1375 -> 27[label="",style="dashed", color="red", weight=0]; 1375[label="vyw100 < vyw103",fontsize=16,color="magenta"];1375 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1376 -> 28[label="",style="dashed", color="red", weight=0]; 1376[label="vyw100 < vyw103",fontsize=16,color="magenta"];1376 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1377 -> 29[label="",style="dashed", color="red", weight=0]; 1377[label="vyw100 < vyw103",fontsize=16,color="magenta"];1377 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1378 -> 30[label="",style="dashed", color="red", weight=0]; 1378[label="vyw100 < vyw103",fontsize=16,color="magenta"];1378 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1379 -> 31[label="",style="dashed", color="red", weight=0]; 1379[label="vyw100 < vyw103",fontsize=16,color="magenta"];1379 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1380 -> 32[label="",style="dashed", color="red", weight=0]; 1380[label="vyw100 < vyw103",fontsize=16,color="magenta"];1380 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1381[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (False || vyw172)",fontsize=16,color="black",shape="box"];1381 -> 1514[label="",style="solid", color="black", weight=3]; 1382[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) (True || vyw172)",fontsize=16,color="black",shape="box"];1382 -> 1515[label="",style="solid", color="black", weight=3]; 1398 -> 19[label="",style="dashed", color="red", weight=0]; 1398[label="vyw113 < vyw115",fontsize=16,color="magenta"];1398 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1399 -> 20[label="",style="dashed", color="red", weight=0]; 1399[label="vyw113 < vyw115",fontsize=16,color="magenta"];1399 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1399 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1400 -> 21[label="",style="dashed", color="red", weight=0]; 1400[label="vyw113 < vyw115",fontsize=16,color="magenta"];1400 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1400 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1401 -> 22[label="",style="dashed", color="red", weight=0]; 1401[label="vyw113 < vyw115",fontsize=16,color="magenta"];1401 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1401 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1402 -> 23[label="",style="dashed", color="red", weight=0]; 1402[label="vyw113 < vyw115",fontsize=16,color="magenta"];1402 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1402 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1403 -> 24[label="",style="dashed", color="red", weight=0]; 1403[label="vyw113 < vyw115",fontsize=16,color="magenta"];1403 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1403 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1404 -> 25[label="",style="dashed", color="red", weight=0]; 1404[label="vyw113 < vyw115",fontsize=16,color="magenta"];1404 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1405 -> 26[label="",style="dashed", color="red", weight=0]; 1405[label="vyw113 < vyw115",fontsize=16,color="magenta"];1405 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1405 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1406 -> 27[label="",style="dashed", color="red", weight=0]; 1406[label="vyw113 < vyw115",fontsize=16,color="magenta"];1406 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1406 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1407 -> 28[label="",style="dashed", color="red", weight=0]; 1407[label="vyw113 < vyw115",fontsize=16,color="magenta"];1407 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1407 -> 1535[label="",style="dashed", color="magenta", weight=3]; 1408 -> 29[label="",style="dashed", color="red", weight=0]; 1408[label="vyw113 < vyw115",fontsize=16,color="magenta"];1408 -> 1536[label="",style="dashed", color="magenta", weight=3]; 1408 -> 1537[label="",style="dashed", color="magenta", weight=3]; 1409 -> 30[label="",style="dashed", color="red", weight=0]; 1409[label="vyw113 < vyw115",fontsize=16,color="magenta"];1409 -> 1538[label="",style="dashed", color="magenta", weight=3]; 1409 -> 1539[label="",style="dashed", color="magenta", weight=3]; 1410 -> 31[label="",style="dashed", color="red", weight=0]; 1410[label="vyw113 < vyw115",fontsize=16,color="magenta"];1410 -> 1540[label="",style="dashed", color="magenta", weight=3]; 1410 -> 1541[label="",style="dashed", color="magenta", weight=3]; 1411 -> 32[label="",style="dashed", color="red", weight=0]; 1411[label="vyw113 < vyw115",fontsize=16,color="magenta"];1411 -> 1542[label="",style="dashed", color="magenta", weight=3]; 1411 -> 1543[label="",style="dashed", color="magenta", weight=3]; 1412[label="vyw114 <= vyw116",fontsize=16,color="blue",shape="box"];3376[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1544[label="",style="solid", color="blue", weight=3]; 3377[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1545[label="",style="solid", color="blue", weight=3]; 3378[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1546[label="",style="solid", color="blue", weight=3]; 3379[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1547[label="",style="solid", color="blue", weight=3]; 3380[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1548[label="",style="solid", color="blue", weight=3]; 3381[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1549[label="",style="solid", color="blue", weight=3]; 3382[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1550[label="",style="solid", color="blue", weight=3]; 3383[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1551[label="",style="solid", color="blue", weight=3]; 3384[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1552[label="",style="solid", color="blue", weight=3]; 3385[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1553[label="",style="solid", color="blue", weight=3]; 3386[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1554[label="",style="solid", color="blue", weight=3]; 3387[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1555[label="",style="solid", color="blue", weight=3]; 3388[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1556[label="",style="solid", color="blue", weight=3]; 3389[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1412 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1557[label="",style="solid", color="blue", weight=3]; 1413[label="vyw113 == vyw115",fontsize=16,color="blue",shape="box"];3390[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1558[label="",style="solid", color="blue", weight=3]; 3391[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1559[label="",style="solid", color="blue", weight=3]; 3392[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1560[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1561[label="",style="solid", color="blue", weight=3]; 3394[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1562[label="",style="solid", color="blue", weight=3]; 3395[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1563[label="",style="solid", color="blue", weight=3]; 3396[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1564[label="",style="solid", color="blue", weight=3]; 3397[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1565[label="",style="solid", color="blue", weight=3]; 3398[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1566[label="",style="solid", color="blue", weight=3]; 3399[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1567[label="",style="solid", color="blue", weight=3]; 3400[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1568[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1569[label="",style="solid", color="blue", weight=3]; 3402[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1570[label="",style="solid", color="blue", weight=3]; 3403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1413 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1571[label="",style="solid", color="blue", weight=3]; 1414[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (False || vyw185)",fontsize=16,color="black",shape="box"];1414 -> 1572[label="",style="solid", color="black", weight=3]; 1415[label="compare1 (vyw180,vyw181) (vyw182,vyw183) (True || vyw185)",fontsize=16,color="black",shape="box"];1415 -> 1573[label="",style="solid", color="black", weight=3]; 984[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];984 -> 1574[label="",style="solid", color="black", weight=3]; 985 -> 693[label="",style="dashed", color="red", weight=0]; 985[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];985 -> 1575[label="",style="dashed", color="magenta", weight=3]; 985 -> 1576[label="",style="dashed", color="magenta", weight=3]; 986[label="True",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="False",fontsize=16,color="green",shape="box"];989[label="True",fontsize=16,color="green",shape="box"];990[label="True",fontsize=16,color="green",shape="box"];991[label="False",fontsize=16,color="green",shape="box"];992[label="False",fontsize=16,color="green",shape="box"];993[label="False",fontsize=16,color="green",shape="box"];994[label="True",fontsize=16,color="green",shape="box"];995[label="False",fontsize=16,color="green",shape="box"];996[label="False",fontsize=16,color="green",shape="box"];997[label="False",fontsize=16,color="green",shape="box"];998[label="True",fontsize=16,color="green",shape="box"];999[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3404[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1577[label="",style="solid", color="blue", weight=3]; 3405[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1578[label="",style="solid", color="blue", weight=3]; 3406[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1579[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1580[label="",style="solid", color="blue", weight=3]; 3408[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1581[label="",style="solid", color="blue", weight=3]; 3409[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1582[label="",style="solid", color="blue", weight=3]; 3410[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1583[label="",style="solid", color="blue", weight=3]; 3411[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1584[label="",style="solid", color="blue", weight=3]; 3412[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1585[label="",style="solid", color="blue", weight=3]; 3413[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1586[label="",style="solid", color="blue", weight=3]; 3414[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1587[label="",style="solid", color="blue", weight=3]; 3415[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1588[label="",style="solid", color="blue", weight=3]; 3416[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1589[label="",style="solid", color="blue", weight=3]; 3417[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];999 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1590[label="",style="solid", color="blue", weight=3]; 1000[label="False",fontsize=16,color="green",shape="box"];1001[label="False",fontsize=16,color="green",shape="box"];1002[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3418[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1591[label="",style="solid", color="blue", weight=3]; 3419[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1592[label="",style="solid", color="blue", weight=3]; 3420[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1593[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1594[label="",style="solid", color="blue", weight=3]; 3422[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1595[label="",style="solid", color="blue", weight=3]; 3423[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1596[label="",style="solid", color="blue", weight=3]; 3424[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3424[label="",style="solid", color="blue", weight=9]; 3424 -> 1597[label="",style="solid", color="blue", weight=3]; 3425[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3425[label="",style="solid", color="blue", weight=9]; 3425 -> 1598[label="",style="solid", color="blue", weight=3]; 3426[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3426[label="",style="solid", color="blue", weight=9]; 3426 -> 1599[label="",style="solid", color="blue", weight=3]; 3427[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3427[label="",style="solid", color="blue", weight=9]; 3427 -> 1600[label="",style="solid", color="blue", weight=3]; 3428[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3428[label="",style="solid", color="blue", weight=9]; 3428 -> 1601[label="",style="solid", color="blue", weight=3]; 3429[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3429[label="",style="solid", color="blue", weight=9]; 3429 -> 1602[label="",style="solid", color="blue", weight=3]; 3430[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3430[label="",style="solid", color="blue", weight=9]; 3430 -> 1603[label="",style="solid", color="blue", weight=3]; 3431[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1002 -> 3431[label="",style="solid", color="blue", weight=9]; 3431 -> 1604[label="",style="solid", color="blue", weight=3]; 1003 -> 1088[label="",style="dashed", color="red", weight=0]; 1003[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1003 -> 1097[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1098[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1088[label="",style="dashed", color="red", weight=0]; 1004[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1004 -> 1099[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1100[label="",style="dashed", color="magenta", weight=3]; 1005[label="False",fontsize=16,color="green",shape="box"];1006[label="False",fontsize=16,color="green",shape="box"];1007[label="True",fontsize=16,color="green",shape="box"];1008 -> 1088[label="",style="dashed", color="red", weight=0]; 1008[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];1008 -> 1101[label="",style="dashed", color="magenta", weight=3]; 1008 -> 1102[label="",style="dashed", color="magenta", weight=3]; 1009[label="True",fontsize=16,color="green",shape="box"];1010[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];1010 -> 1605[label="",style="solid", color="black", weight=3]; 1011[label="True",fontsize=16,color="green",shape="box"];1012[label="False",fontsize=16,color="green",shape="box"];1013[label="False",fontsize=16,color="green",shape="box"];1014[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3432[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3432[label="",style="solid", color="blue", weight=9]; 3432 -> 1606[label="",style="solid", color="blue", weight=3]; 3433[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3433[label="",style="solid", color="blue", weight=9]; 3433 -> 1607[label="",style="solid", color="blue", weight=3]; 3434[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3434[label="",style="solid", color="blue", weight=9]; 3434 -> 1608[label="",style="solid", color="blue", weight=3]; 3435[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3435[label="",style="solid", color="blue", weight=9]; 3435 -> 1609[label="",style="solid", color="blue", weight=3]; 3436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3436[label="",style="solid", color="blue", weight=9]; 3436 -> 1610[label="",style="solid", color="blue", weight=3]; 3437[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3437[label="",style="solid", color="blue", weight=9]; 3437 -> 1611[label="",style="solid", color="blue", weight=3]; 3438[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3438[label="",style="solid", color="blue", weight=9]; 3438 -> 1612[label="",style="solid", color="blue", weight=3]; 3439[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3439[label="",style="solid", color="blue", weight=9]; 3439 -> 1613[label="",style="solid", color="blue", weight=3]; 3440[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3440[label="",style="solid", color="blue", weight=9]; 3440 -> 1614[label="",style="solid", color="blue", weight=3]; 3441[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3441[label="",style="solid", color="blue", weight=9]; 3441 -> 1615[label="",style="solid", color="blue", weight=3]; 3442[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3442[label="",style="solid", color="blue", weight=9]; 3442 -> 1616[label="",style="solid", color="blue", weight=3]; 3443[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3443[label="",style="solid", color="blue", weight=9]; 3443 -> 1617[label="",style="solid", color="blue", weight=3]; 3444[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3444[label="",style="solid", color="blue", weight=9]; 3444 -> 1618[label="",style="solid", color="blue", weight=3]; 3445[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1014 -> 3445[label="",style="solid", color="blue", weight=9]; 3445 -> 1619[label="",style="solid", color="blue", weight=3]; 1015 -> 1088[label="",style="dashed", color="red", weight=0]; 1015[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];1015 -> 1103[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1104[label="",style="dashed", color="magenta", weight=3]; 1016[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3446[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 1620[label="",style="solid", color="burlywood", weight=3]; 3447[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1016 -> 3447[label="",style="solid", color="burlywood", weight=9]; 3447 -> 1621[label="",style="solid", color="burlywood", weight=3]; 1017[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3448[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3448[label="",style="solid", color="burlywood", weight=9]; 3448 -> 1622[label="",style="solid", color="burlywood", weight=3]; 3449[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1017 -> 3449[label="",style="solid", color="burlywood", weight=9]; 3449 -> 1623[label="",style="solid", color="burlywood", weight=3]; 1018[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3450[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3450[label="",style="solid", color="burlywood", weight=9]; 3450 -> 1624[label="",style="solid", color="burlywood", weight=3]; 3451[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1018 -> 3451[label="",style="solid", color="burlywood", weight=9]; 3451 -> 1625[label="",style="solid", color="burlywood", weight=3]; 1019[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3452[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3452[label="",style="solid", color="burlywood", weight=9]; 3452 -> 1626[label="",style="solid", color="burlywood", weight=3]; 3453[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];1019 -> 3453[label="",style="solid", color="burlywood", weight=9]; 3453 -> 1627[label="",style="solid", color="burlywood", weight=3]; 1020[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];1020 -> 1628[label="",style="solid", color="black", weight=3]; 1416[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1416 -> 1629[label="",style="solid", color="black", weight=3]; 1417[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1417 -> 1630[label="",style="solid", color="black", weight=3]; 1418[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3454[label="vyw70/False",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3454[label="",style="solid", color="burlywood", weight=9]; 3454 -> 1631[label="",style="solid", color="burlywood", weight=3]; 3455[label="vyw70/True",fontsize=10,color="white",style="solid",shape="box"];1418 -> 3455[label="",style="solid", color="burlywood", weight=9]; 3455 -> 1632[label="",style="solid", color="burlywood", weight=3]; 1419[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1419 -> 1633[label="",style="solid", color="black", weight=3]; 1420[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3456[label="vyw70/(vyw700,vyw701,vyw702)",fontsize=10,color="white",style="solid",shape="box"];1420 -> 3456[label="",style="solid", color="burlywood", weight=9]; 3456 -> 1634[label="",style="solid", color="burlywood", weight=3]; 1421[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3457[label="vyw70/(vyw700,vyw701)",fontsize=10,color="white",style="solid",shape="box"];1421 -> 3457[label="",style="solid", color="burlywood", weight=9]; 3457 -> 1635[label="",style="solid", color="burlywood", weight=3]; 1422[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1422 -> 1636[label="",style="solid", color="black", weight=3]; 1423[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1423 -> 1637[label="",style="solid", color="black", weight=3]; 1424[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3458[label="vyw70/Left vyw700",fontsize=10,color="white",style="solid",shape="box"];1424 -> 3458[label="",style="solid", color="burlywood", weight=9]; 3458 -> 1638[label="",style="solid", color="burlywood", weight=3]; 3459[label="vyw70/Right vyw700",fontsize=10,color="white",style="solid",shape="box"];1424 -> 3459[label="",style="solid", color="burlywood", weight=9]; 3459 -> 1639[label="",style="solid", color="burlywood", weight=3]; 1425[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3460[label="vyw70/LT",fontsize=10,color="white",style="solid",shape="box"];1425 -> 3460[label="",style="solid", color="burlywood", weight=9]; 3460 -> 1640[label="",style="solid", color="burlywood", weight=3]; 3461[label="vyw70/EQ",fontsize=10,color="white",style="solid",shape="box"];1425 -> 3461[label="",style="solid", color="burlywood", weight=9]; 3461 -> 1641[label="",style="solid", color="burlywood", weight=3]; 3462[label="vyw70/GT",fontsize=10,color="white",style="solid",shape="box"];1425 -> 3462[label="",style="solid", color="burlywood", weight=9]; 3462 -> 1642[label="",style="solid", color="burlywood", weight=3]; 1426[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1426 -> 1643[label="",style="solid", color="black", weight=3]; 1427[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1427 -> 1644[label="",style="solid", color="black", weight=3]; 1428[label="vyw70 <= vyw71",fontsize=16,color="black",shape="triangle"];1428 -> 1645[label="",style="solid", color="black", weight=3]; 1429[label="vyw70 <= vyw71",fontsize=16,color="burlywood",shape="triangle"];3463[label="vyw70/Nothing",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3463[label="",style="solid", color="burlywood", weight=9]; 3463 -> 1646[label="",style="solid", color="burlywood", weight=3]; 3464[label="vyw70/Just vyw700",fontsize=10,color="white",style="solid",shape="box"];1429 -> 3464[label="",style="solid", color="burlywood", weight=9]; 3464 -> 1647[label="",style="solid", color="burlywood", weight=3]; 1430[label="compare0 (Left vyw136) (Left vyw137) otherwise",fontsize=16,color="black",shape="box"];1430 -> 1648[label="",style="solid", color="black", weight=3]; 1431[label="LT",fontsize=16,color="green",shape="box"];1432 -> 1416[label="",style="dashed", color="red", weight=0]; 1432[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1432 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1432 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1417[label="",style="dashed", color="red", weight=0]; 1433[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1433 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1433 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1418[label="",style="dashed", color="red", weight=0]; 1434[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1434 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1434 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1419[label="",style="dashed", color="red", weight=0]; 1435[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1435 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1435 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1420[label="",style="dashed", color="red", weight=0]; 1436[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1436 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1436 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1421[label="",style="dashed", color="red", weight=0]; 1437[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1437 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1437 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1422[label="",style="dashed", color="red", weight=0]; 1438[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1438 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1438 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1423[label="",style="dashed", color="red", weight=0]; 1439[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1439 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1439 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1424[label="",style="dashed", color="red", weight=0]; 1440[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1440 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1425[label="",style="dashed", color="red", weight=0]; 1441[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1441 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1441 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1426[label="",style="dashed", color="red", weight=0]; 1442[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1442 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1442 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1427[label="",style="dashed", color="red", weight=0]; 1443[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1443 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1443 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1428[label="",style="dashed", color="red", weight=0]; 1444[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1444 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1429[label="",style="dashed", color="red", weight=0]; 1445[label="vyw77 <= vyw78",fontsize=16,color="magenta"];1445 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1445 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1446[label="compare0 (Right vyw143) (Right vyw144) otherwise",fontsize=16,color="black",shape="box"];1446 -> 1677[label="",style="solid", color="black", weight=3]; 1447[label="LT",fontsize=16,color="green",shape="box"];1448[label="primMulNat (Succ vyw30000) vyw410",fontsize=16,color="burlywood",shape="box"];3465[label="vyw410/Succ vyw4100",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3465[label="",style="solid", color="burlywood", weight=9]; 3465 -> 1678[label="",style="solid", color="burlywood", weight=3]; 3466[label="vyw410/Zero",fontsize=10,color="white",style="solid",shape="box"];1448 -> 3466[label="",style="solid", color="burlywood", weight=9]; 3466 -> 1679[label="",style="solid", color="burlywood", weight=3]; 1449[label="primMulNat Zero vyw410",fontsize=16,color="burlywood",shape="box"];3467[label="vyw410/Succ vyw4100",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3467[label="",style="solid", color="burlywood", weight=9]; 3467 -> 1680[label="",style="solid", color="burlywood", weight=3]; 3468[label="vyw410/Zero",fontsize=10,color="white",style="solid",shape="box"];1449 -> 3468[label="",style="solid", color="burlywood", weight=9]; 3468 -> 1681[label="",style="solid", color="burlywood", weight=3]; 1450[label="vyw410",fontsize=16,color="green",shape="box"];1451[label="vyw3000",fontsize=16,color="green",shape="box"];1452[label="vyw410",fontsize=16,color="green",shape="box"];1453[label="vyw3000",fontsize=16,color="green",shape="box"];1454 -> 1416[label="",style="dashed", color="red", weight=0]; 1454[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1454 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1417[label="",style="dashed", color="red", weight=0]; 1455[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1455 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1418[label="",style="dashed", color="red", weight=0]; 1456[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1456 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1419[label="",style="dashed", color="red", weight=0]; 1457[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1457 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1420[label="",style="dashed", color="red", weight=0]; 1458[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1458 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1421[label="",style="dashed", color="red", weight=0]; 1459[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1459 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1422[label="",style="dashed", color="red", weight=0]; 1460[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1460 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1423[label="",style="dashed", color="red", weight=0]; 1461[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1461 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1424[label="",style="dashed", color="red", weight=0]; 1462[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1462 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1425[label="",style="dashed", color="red", weight=0]; 1463[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1463 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1426[label="",style="dashed", color="red", weight=0]; 1464[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1464 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1427[label="",style="dashed", color="red", weight=0]; 1465[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1465 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1428[label="",style="dashed", color="red", weight=0]; 1466[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1466 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1429[label="",style="dashed", color="red", weight=0]; 1467[label="vyw89 <= vyw90",fontsize=16,color="magenta"];1467 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1467 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1468[label="compare0 (Just vyw153) (Just vyw154) otherwise",fontsize=16,color="black",shape="box"];1468 -> 1710[label="",style="solid", color="black", weight=3]; 1469[label="LT",fontsize=16,color="green",shape="box"];1714[label="vyw101 < vyw104",fontsize=16,color="blue",shape="box"];3469[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1718[label="",style="solid", color="blue", weight=3]; 3470[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1719[label="",style="solid", color="blue", weight=3]; 3471[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1720[label="",style="solid", color="blue", weight=3]; 3472[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1721[label="",style="solid", color="blue", weight=3]; 3473[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1722[label="",style="solid", color="blue", weight=3]; 3474[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1723[label="",style="solid", color="blue", weight=3]; 3475[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1724[label="",style="solid", color="blue", weight=3]; 3476[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 1725[label="",style="solid", color="blue", weight=3]; 3477[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 1726[label="",style="solid", color="blue", weight=3]; 3478[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1727[label="",style="solid", color="blue", weight=3]; 3479[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1728[label="",style="solid", color="blue", weight=3]; 3480[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1729[label="",style="solid", color="blue", weight=3]; 3481[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1730[label="",style="solid", color="blue", weight=3]; 3482[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1714 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1731[label="",style="solid", color="blue", weight=3]; 1715 -> 1088[label="",style="dashed", color="red", weight=0]; 1715[label="vyw101 == vyw104 && vyw102 <= vyw105",fontsize=16,color="magenta"];1715 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1715 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1713[label="vyw190 || vyw191",fontsize=16,color="burlywood",shape="triangle"];3483[label="vyw190/False",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3483[label="",style="solid", color="burlywood", weight=9]; 3483 -> 1734[label="",style="solid", color="burlywood", weight=3]; 3484[label="vyw190/True",fontsize=10,color="white",style="solid",shape="box"];1713 -> 3484[label="",style="solid", color="burlywood", weight=9]; 3484 -> 1735[label="",style="solid", color="burlywood", weight=3]; 1472 -> 539[label="",style="dashed", color="red", weight=0]; 1472[label="vyw100 == vyw103",fontsize=16,color="magenta"];1472 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1472 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1473 -> 532[label="",style="dashed", color="red", weight=0]; 1473[label="vyw100 == vyw103",fontsize=16,color="magenta"];1473 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1473 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1474 -> 533[label="",style="dashed", color="red", weight=0]; 1474[label="vyw100 == vyw103",fontsize=16,color="magenta"];1474 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1474 -> 1741[label="",style="dashed", color="magenta", weight=3]; 1475 -> 531[label="",style="dashed", color="red", weight=0]; 1475[label="vyw100 == vyw103",fontsize=16,color="magenta"];1475 -> 1742[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1743[label="",style="dashed", color="magenta", weight=3]; 1476 -> 542[label="",style="dashed", color="red", weight=0]; 1476[label="vyw100 == vyw103",fontsize=16,color="magenta"];1476 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1477 -> 536[label="",style="dashed", color="red", weight=0]; 1477[label="vyw100 == vyw103",fontsize=16,color="magenta"];1477 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1478 -> 543[label="",style="dashed", color="red", weight=0]; 1478[label="vyw100 == vyw103",fontsize=16,color="magenta"];1478 -> 1748[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1479 -> 544[label="",style="dashed", color="red", weight=0]; 1479[label="vyw100 == vyw103",fontsize=16,color="magenta"];1479 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1479 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1480 -> 535[label="",style="dashed", color="red", weight=0]; 1480[label="vyw100 == vyw103",fontsize=16,color="magenta"];1480 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1480 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1481 -> 534[label="",style="dashed", color="red", weight=0]; 1481[label="vyw100 == vyw103",fontsize=16,color="magenta"];1481 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1481 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1482 -> 537[label="",style="dashed", color="red", weight=0]; 1482[label="vyw100 == vyw103",fontsize=16,color="magenta"];1482 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1482 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1483 -> 540[label="",style="dashed", color="red", weight=0]; 1483[label="vyw100 == vyw103",fontsize=16,color="magenta"];1483 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1483 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1484 -> 538[label="",style="dashed", color="red", weight=0]; 1484[label="vyw100 == vyw103",fontsize=16,color="magenta"];1484 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1484 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1485 -> 541[label="",style="dashed", color="red", weight=0]; 1485[label="vyw100 == vyw103",fontsize=16,color="magenta"];1485 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1485 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1486[label="vyw103",fontsize=16,color="green",shape="box"];1487[label="vyw100",fontsize=16,color="green",shape="box"];1488[label="vyw103",fontsize=16,color="green",shape="box"];1489[label="vyw100",fontsize=16,color="green",shape="box"];1490[label="vyw103",fontsize=16,color="green",shape="box"];1491[label="vyw100",fontsize=16,color="green",shape="box"];1492[label="vyw103",fontsize=16,color="green",shape="box"];1493[label="vyw100",fontsize=16,color="green",shape="box"];1494[label="vyw103",fontsize=16,color="green",shape="box"];1495[label="vyw100",fontsize=16,color="green",shape="box"];1496[label="vyw103",fontsize=16,color="green",shape="box"];1497[label="vyw100",fontsize=16,color="green",shape="box"];1498[label="vyw103",fontsize=16,color="green",shape="box"];1499[label="vyw100",fontsize=16,color="green",shape="box"];1500[label="vyw103",fontsize=16,color="green",shape="box"];1501[label="vyw100",fontsize=16,color="green",shape="box"];1502[label="vyw103",fontsize=16,color="green",shape="box"];1503[label="vyw100",fontsize=16,color="green",shape="box"];1504[label="vyw103",fontsize=16,color="green",shape="box"];1505[label="vyw100",fontsize=16,color="green",shape="box"];1506[label="vyw103",fontsize=16,color="green",shape="box"];1507[label="vyw100",fontsize=16,color="green",shape="box"];1508[label="vyw103",fontsize=16,color="green",shape="box"];1509[label="vyw100",fontsize=16,color="green",shape="box"];1510[label="vyw103",fontsize=16,color="green",shape="box"];1511[label="vyw100",fontsize=16,color="green",shape="box"];1512[label="vyw103",fontsize=16,color="green",shape="box"];1513[label="vyw100",fontsize=16,color="green",shape="box"];1514[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) vyw172",fontsize=16,color="burlywood",shape="triangle"];3485[label="vyw172/False",fontsize=10,color="white",style="solid",shape="box"];1514 -> 3485[label="",style="solid", color="burlywood", weight=9]; 3485 -> 1764[label="",style="solid", color="burlywood", weight=3]; 3486[label="vyw172/True",fontsize=10,color="white",style="solid",shape="box"];1514 -> 3486[label="",style="solid", color="burlywood", weight=9]; 3486 -> 1765[label="",style="solid", color="burlywood", weight=3]; 1515 -> 1514[label="",style="dashed", color="red", weight=0]; 1515[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="magenta"];1515 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1516[label="vyw115",fontsize=16,color="green",shape="box"];1517[label="vyw113",fontsize=16,color="green",shape="box"];1518[label="vyw115",fontsize=16,color="green",shape="box"];1519[label="vyw113",fontsize=16,color="green",shape="box"];1520[label="vyw115",fontsize=16,color="green",shape="box"];1521[label="vyw113",fontsize=16,color="green",shape="box"];1522[label="vyw115",fontsize=16,color="green",shape="box"];1523[label="vyw113",fontsize=16,color="green",shape="box"];1524[label="vyw115",fontsize=16,color="green",shape="box"];1525[label="vyw113",fontsize=16,color="green",shape="box"];1526[label="vyw115",fontsize=16,color="green",shape="box"];1527[label="vyw113",fontsize=16,color="green",shape="box"];1528[label="vyw115",fontsize=16,color="green",shape="box"];1529[label="vyw113",fontsize=16,color="green",shape="box"];1530[label="vyw115",fontsize=16,color="green",shape="box"];1531[label="vyw113",fontsize=16,color="green",shape="box"];1532[label="vyw115",fontsize=16,color="green",shape="box"];1533[label="vyw113",fontsize=16,color="green",shape="box"];1534[label="vyw115",fontsize=16,color="green",shape="box"];1535[label="vyw113",fontsize=16,color="green",shape="box"];1536[label="vyw115",fontsize=16,color="green",shape="box"];1537[label="vyw113",fontsize=16,color="green",shape="box"];1538[label="vyw115",fontsize=16,color="green",shape="box"];1539[label="vyw113",fontsize=16,color="green",shape="box"];1540[label="vyw115",fontsize=16,color="green",shape="box"];1541[label="vyw113",fontsize=16,color="green",shape="box"];1542[label="vyw115",fontsize=16,color="green",shape="box"];1543[label="vyw113",fontsize=16,color="green",shape="box"];1544 -> 1416[label="",style="dashed", color="red", weight=0]; 1544[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1544 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1417[label="",style="dashed", color="red", weight=0]; 1545[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1545 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1418[label="",style="dashed", color="red", weight=0]; 1546[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1546 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1419[label="",style="dashed", color="red", weight=0]; 1547[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1547 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1420[label="",style="dashed", color="red", weight=0]; 1548[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1548 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1421[label="",style="dashed", color="red", weight=0]; 1549[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1549 -> 1777[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1778[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1422[label="",style="dashed", color="red", weight=0]; 1550[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1550 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1423[label="",style="dashed", color="red", weight=0]; 1551[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1551 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1424[label="",style="dashed", color="red", weight=0]; 1552[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1552 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1425[label="",style="dashed", color="red", weight=0]; 1553[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1553 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1426[label="",style="dashed", color="red", weight=0]; 1554[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1554 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1427[label="",style="dashed", color="red", weight=0]; 1555[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1555 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1428[label="",style="dashed", color="red", weight=0]; 1556[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1556 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1429[label="",style="dashed", color="red", weight=0]; 1557[label="vyw114 <= vyw116",fontsize=16,color="magenta"];1557 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1558 -> 539[label="",style="dashed", color="red", weight=0]; 1558[label="vyw113 == vyw115",fontsize=16,color="magenta"];1558 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1559 -> 532[label="",style="dashed", color="red", weight=0]; 1559[label="vyw113 == vyw115",fontsize=16,color="magenta"];1559 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1560 -> 533[label="",style="dashed", color="red", weight=0]; 1560[label="vyw113 == vyw115",fontsize=16,color="magenta"];1560 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1561 -> 531[label="",style="dashed", color="red", weight=0]; 1561[label="vyw113 == vyw115",fontsize=16,color="magenta"];1561 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1562 -> 542[label="",style="dashed", color="red", weight=0]; 1562[label="vyw113 == vyw115",fontsize=16,color="magenta"];1562 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1563 -> 536[label="",style="dashed", color="red", weight=0]; 1563[label="vyw113 == vyw115",fontsize=16,color="magenta"];1563 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1564 -> 543[label="",style="dashed", color="red", weight=0]; 1564[label="vyw113 == vyw115",fontsize=16,color="magenta"];1564 -> 1807[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1808[label="",style="dashed", color="magenta", weight=3]; 1565 -> 544[label="",style="dashed", color="red", weight=0]; 1565[label="vyw113 == vyw115",fontsize=16,color="magenta"];1565 -> 1809[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1810[label="",style="dashed", color="magenta", weight=3]; 1566 -> 535[label="",style="dashed", color="red", weight=0]; 1566[label="vyw113 == vyw115",fontsize=16,color="magenta"];1566 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1566 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1567 -> 534[label="",style="dashed", color="red", weight=0]; 1567[label="vyw113 == vyw115",fontsize=16,color="magenta"];1567 -> 1813[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1814[label="",style="dashed", color="magenta", weight=3]; 1568 -> 537[label="",style="dashed", color="red", weight=0]; 1568[label="vyw113 == vyw115",fontsize=16,color="magenta"];1568 -> 1815[label="",style="dashed", color="magenta", weight=3]; 1568 -> 1816[label="",style="dashed", color="magenta", weight=3]; 1569 -> 540[label="",style="dashed", color="red", weight=0]; 1569[label="vyw113 == vyw115",fontsize=16,color="magenta"];1569 -> 1817[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1570 -> 538[label="",style="dashed", color="red", weight=0]; 1570[label="vyw113 == vyw115",fontsize=16,color="magenta"];1570 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1570 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1571 -> 541[label="",style="dashed", color="red", weight=0]; 1571[label="vyw113 == vyw115",fontsize=16,color="magenta"];1571 -> 1821[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1822[label="",style="dashed", color="magenta", weight=3]; 1572[label="compare1 (vyw180,vyw181) (vyw182,vyw183) vyw185",fontsize=16,color="burlywood",shape="triangle"];3487[label="vyw185/False",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3487[label="",style="solid", color="burlywood", weight=9]; 3487 -> 1823[label="",style="solid", color="burlywood", weight=3]; 3488[label="vyw185/True",fontsize=10,color="white",style="solid",shape="box"];1572 -> 3488[label="",style="solid", color="burlywood", weight=9]; 3488 -> 1824[label="",style="solid", color="burlywood", weight=3]; 1573 -> 1572[label="",style="dashed", color="red", weight=0]; 1573[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="magenta"];1573 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1574 -> 543[label="",style="dashed", color="red", weight=0]; 1574[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1574 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1574 -> 1827[label="",style="dashed", color="magenta", weight=3]; 1575[label="vyw400",fontsize=16,color="green",shape="box"];1576[label="vyw3000",fontsize=16,color="green",shape="box"];1577 -> 531[label="",style="dashed", color="red", weight=0]; 1577[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1577 -> 1828[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1578 -> 532[label="",style="dashed", color="red", weight=0]; 1578[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1578 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1579 -> 533[label="",style="dashed", color="red", weight=0]; 1579[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1579 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1580 -> 534[label="",style="dashed", color="red", weight=0]; 1580[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1580 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1581 -> 535[label="",style="dashed", color="red", weight=0]; 1581[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1581 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1837[label="",style="dashed", color="magenta", weight=3]; 1582 -> 536[label="",style="dashed", color="red", weight=0]; 1582[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1582 -> 1838[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1839[label="",style="dashed", color="magenta", weight=3]; 1583 -> 537[label="",style="dashed", color="red", weight=0]; 1583[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1583 -> 1840[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1584 -> 538[label="",style="dashed", color="red", weight=0]; 1584[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1584 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1585 -> 539[label="",style="dashed", color="red", weight=0]; 1585[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1585 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1586 -> 540[label="",style="dashed", color="red", weight=0]; 1586[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1586 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1587 -> 541[label="",style="dashed", color="red", weight=0]; 1587[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1587 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1588 -> 542[label="",style="dashed", color="red", weight=0]; 1588[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1588 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1589 -> 543[label="",style="dashed", color="red", weight=0]; 1589[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1589 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1590 -> 544[label="",style="dashed", color="red", weight=0]; 1590[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1590 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1591 -> 531[label="",style="dashed", color="red", weight=0]; 1591[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1591 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1592 -> 532[label="",style="dashed", color="red", weight=0]; 1592[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1592 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1593 -> 533[label="",style="dashed", color="red", weight=0]; 1593[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1593 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1594 -> 534[label="",style="dashed", color="red", weight=0]; 1594[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1594 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1595 -> 535[label="",style="dashed", color="red", weight=0]; 1595[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1595 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1596 -> 536[label="",style="dashed", color="red", weight=0]; 1596[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1596 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1597 -> 537[label="",style="dashed", color="red", weight=0]; 1597[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1597 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1598 -> 538[label="",style="dashed", color="red", weight=0]; 1598[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1598 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1599 -> 539[label="",style="dashed", color="red", weight=0]; 1599[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1599 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1600 -> 540[label="",style="dashed", color="red", weight=0]; 1600[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1600 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1601 -> 541[label="",style="dashed", color="red", weight=0]; 1601[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1601 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1602 -> 542[label="",style="dashed", color="red", weight=0]; 1602[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1602 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1603 -> 543[label="",style="dashed", color="red", weight=0]; 1603[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1603 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1604 -> 544[label="",style="dashed", color="red", weight=0]; 1604[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1604 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1097[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3489[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3489[label="",style="solid", color="blue", weight=9]; 3489 -> 1884[label="",style="solid", color="blue", weight=3]; 3490[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3490[label="",style="solid", color="blue", weight=9]; 3490 -> 1885[label="",style="solid", color="blue", weight=3]; 3491[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3491[label="",style="solid", color="blue", weight=9]; 3491 -> 1886[label="",style="solid", color="blue", weight=3]; 3492[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3492[label="",style="solid", color="blue", weight=9]; 3492 -> 1887[label="",style="solid", color="blue", weight=3]; 3493[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1888[label="",style="solid", color="blue", weight=3]; 3494[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1889[label="",style="solid", color="blue", weight=3]; 3495[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1890[label="",style="solid", color="blue", weight=3]; 3496[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1891[label="",style="solid", color="blue", weight=3]; 3497[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1892[label="",style="solid", color="blue", weight=3]; 3498[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1893[label="",style="solid", color="blue", weight=3]; 3499[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1894[label="",style="solid", color="blue", weight=3]; 3500[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1895[label="",style="solid", color="blue", weight=3]; 3501[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1896[label="",style="solid", color="blue", weight=3]; 3502[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1097 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1897[label="",style="solid", color="blue", weight=3]; 1098[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3503[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1898[label="",style="solid", color="blue", weight=3]; 3504[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1899[label="",style="solid", color="blue", weight=3]; 3505[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1900[label="",style="solid", color="blue", weight=3]; 3506[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1901[label="",style="solid", color="blue", weight=3]; 3507[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1902[label="",style="solid", color="blue", weight=3]; 3508[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1903[label="",style="solid", color="blue", weight=3]; 3509[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1904[label="",style="solid", color="blue", weight=3]; 3510[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 1905[label="",style="solid", color="blue", weight=3]; 3511[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 1906[label="",style="solid", color="blue", weight=3]; 3512[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 1907[label="",style="solid", color="blue", weight=3]; 3513[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 1908[label="",style="solid", color="blue", weight=3]; 3514[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 1909[label="",style="solid", color="blue", weight=3]; 3515[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 1910[label="",style="solid", color="blue", weight=3]; 3516[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1098 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 1911[label="",style="solid", color="blue", weight=3]; 1099 -> 537[label="",style="dashed", color="red", weight=0]; 1099[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1099 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1099 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1100[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3517[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 1914[label="",style="solid", color="blue", weight=3]; 3518[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 1915[label="",style="solid", color="blue", weight=3]; 3519[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 1916[label="",style="solid", color="blue", weight=3]; 3520[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1917[label="",style="solid", color="blue", weight=3]; 3521[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3521[label="",style="solid", color="blue", weight=9]; 3521 -> 1918[label="",style="solid", color="blue", weight=3]; 3522[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3522[label="",style="solid", color="blue", weight=9]; 3522 -> 1919[label="",style="solid", color="blue", weight=3]; 3523[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3523[label="",style="solid", color="blue", weight=9]; 3523 -> 1920[label="",style="solid", color="blue", weight=3]; 3524[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3524[label="",style="solid", color="blue", weight=9]; 3524 -> 1921[label="",style="solid", color="blue", weight=3]; 3525[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3525[label="",style="solid", color="blue", weight=9]; 3525 -> 1922[label="",style="solid", color="blue", weight=3]; 3526[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3526[label="",style="solid", color="blue", weight=9]; 3526 -> 1923[label="",style="solid", color="blue", weight=3]; 3527[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3527[label="",style="solid", color="blue", weight=9]; 3527 -> 1924[label="",style="solid", color="blue", weight=3]; 3528[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3528[label="",style="solid", color="blue", weight=9]; 3528 -> 1925[label="",style="solid", color="blue", weight=3]; 3529[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3529[label="",style="solid", color="blue", weight=9]; 3529 -> 1926[label="",style="solid", color="blue", weight=3]; 3530[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1100 -> 3530[label="",style="solid", color="blue", weight=9]; 3530 -> 1927[label="",style="solid", color="blue", weight=3]; 1101[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3531[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1101 -> 3531[label="",style="solid", color="blue", weight=9]; 3531 -> 1928[label="",style="solid", color="blue", weight=3]; 3532[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1101 -> 3532[label="",style="solid", color="blue", weight=9]; 3532 -> 1929[label="",style="solid", color="blue", weight=3]; 1102[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3533[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3533[label="",style="solid", color="blue", weight=9]; 3533 -> 1930[label="",style="solid", color="blue", weight=3]; 3534[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1102 -> 3534[label="",style="solid", color="blue", weight=9]; 3534 -> 1931[label="",style="solid", color="blue", weight=3]; 1605[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3535[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];1605 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 1932[label="",style="solid", color="burlywood", weight=3]; 3536[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];1605 -> 3536[label="",style="solid", color="burlywood", weight=9]; 3536 -> 1933[label="",style="solid", color="burlywood", weight=3]; 1606 -> 531[label="",style="dashed", color="red", weight=0]; 1606[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1606 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1607 -> 532[label="",style="dashed", color="red", weight=0]; 1607[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1607 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1608 -> 533[label="",style="dashed", color="red", weight=0]; 1608[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1608 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1609 -> 534[label="",style="dashed", color="red", weight=0]; 1609[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1609 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1609 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1610 -> 535[label="",style="dashed", color="red", weight=0]; 1610[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1610 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1610 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1611 -> 536[label="",style="dashed", color="red", weight=0]; 1611[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1611 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1612 -> 537[label="",style="dashed", color="red", weight=0]; 1612[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1612 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1613 -> 538[label="",style="dashed", color="red", weight=0]; 1613[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1613 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1614 -> 539[label="",style="dashed", color="red", weight=0]; 1614[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1614 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1615 -> 540[label="",style="dashed", color="red", weight=0]; 1615[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1615 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1616 -> 541[label="",style="dashed", color="red", weight=0]; 1616[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1616 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1617 -> 542[label="",style="dashed", color="red", weight=0]; 1617[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1617 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1618 -> 543[label="",style="dashed", color="red", weight=0]; 1618[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1618 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1619 -> 544[label="",style="dashed", color="red", weight=0]; 1619[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1619 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1088[label="",style="dashed", color="red", weight=0]; 1103[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];1103 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1103 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1104[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3537[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3537[label="",style="solid", color="blue", weight=9]; 3537 -> 1964[label="",style="solid", color="blue", weight=3]; 3538[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3538[label="",style="solid", color="blue", weight=9]; 3538 -> 1965[label="",style="solid", color="blue", weight=3]; 3539[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3539[label="",style="solid", color="blue", weight=9]; 3539 -> 1966[label="",style="solid", color="blue", weight=3]; 3540[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3540[label="",style="solid", color="blue", weight=9]; 3540 -> 1967[label="",style="solid", color="blue", weight=3]; 3541[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3541[label="",style="solid", color="blue", weight=9]; 3541 -> 1968[label="",style="solid", color="blue", weight=3]; 3542[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3542[label="",style="solid", color="blue", weight=9]; 3542 -> 1969[label="",style="solid", color="blue", weight=3]; 3543[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3543[label="",style="solid", color="blue", weight=9]; 3543 -> 1970[label="",style="solid", color="blue", weight=3]; 3544[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3544[label="",style="solid", color="blue", weight=9]; 3544 -> 1971[label="",style="solid", color="blue", weight=3]; 3545[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3545[label="",style="solid", color="blue", weight=9]; 3545 -> 1972[label="",style="solid", color="blue", weight=3]; 3546[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 1973[label="",style="solid", color="blue", weight=3]; 3547[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 1974[label="",style="solid", color="blue", weight=3]; 3548[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 1975[label="",style="solid", color="blue", weight=3]; 3549[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 1976[label="",style="solid", color="blue", weight=3]; 3550[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1104 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 1977[label="",style="solid", color="blue", weight=3]; 1620[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3551[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3551[label="",style="solid", color="burlywood", weight=9]; 3551 -> 1978[label="",style="solid", color="burlywood", weight=3]; 3552[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1620 -> 3552[label="",style="solid", color="burlywood", weight=9]; 3552 -> 1979[label="",style="solid", color="burlywood", weight=3]; 1621[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];1621 -> 1980[label="",style="solid", color="black", weight=3]; 1622[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3553[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3553[label="",style="solid", color="burlywood", weight=9]; 3553 -> 1981[label="",style="solid", color="burlywood", weight=3]; 3554[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1622 -> 3554[label="",style="solid", color="burlywood", weight=9]; 3554 -> 1982[label="",style="solid", color="burlywood", weight=3]; 1623[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3555[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3555[label="",style="solid", color="burlywood", weight=9]; 3555 -> 1983[label="",style="solid", color="burlywood", weight=3]; 3556[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1623 -> 3556[label="",style="solid", color="burlywood", weight=9]; 3556 -> 1984[label="",style="solid", color="burlywood", weight=3]; 1624[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];1624 -> 1985[label="",style="solid", color="black", weight=3]; 1625[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3557[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3557[label="",style="solid", color="burlywood", weight=9]; 3557 -> 1986[label="",style="solid", color="burlywood", weight=3]; 3558[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1625 -> 3558[label="",style="solid", color="burlywood", weight=9]; 3558 -> 1987[label="",style="solid", color="burlywood", weight=3]; 1626[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3559[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3559[label="",style="solid", color="burlywood", weight=9]; 3559 -> 1988[label="",style="solid", color="burlywood", weight=3]; 3560[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1626 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 1989[label="",style="solid", color="burlywood", weight=3]; 1627[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3561[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 1990[label="",style="solid", color="burlywood", weight=3]; 3562[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1627 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 1991[label="",style="solid", color="burlywood", weight=3]; 1628 -> 543[label="",style="dashed", color="red", weight=0]; 1628[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];1628 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1628 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1629 -> 1994[label="",style="dashed", color="red", weight=0]; 1629[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1629 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1630 -> 1994[label="",style="dashed", color="red", weight=0]; 1630[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1630 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1631[label="False <= vyw71",fontsize=16,color="burlywood",shape="box"];3563[label="vyw71/False",fontsize=10,color="white",style="solid",shape="box"];1631 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 2003[label="",style="solid", color="burlywood", weight=3]; 3564[label="vyw71/True",fontsize=10,color="white",style="solid",shape="box"];1631 -> 3564[label="",style="solid", color="burlywood", weight=9]; 3564 -> 2004[label="",style="solid", color="burlywood", weight=3]; 1632[label="True <= vyw71",fontsize=16,color="burlywood",shape="box"];3565[label="vyw71/False",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3565[label="",style="solid", color="burlywood", weight=9]; 3565 -> 2005[label="",style="solid", color="burlywood", weight=3]; 3566[label="vyw71/True",fontsize=10,color="white",style="solid",shape="box"];1632 -> 3566[label="",style="solid", color="burlywood", weight=9]; 3566 -> 2006[label="",style="solid", color="burlywood", weight=3]; 1633 -> 1994[label="",style="dashed", color="red", weight=0]; 1633[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1633 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1634[label="(vyw700,vyw701,vyw702) <= vyw71",fontsize=16,color="burlywood",shape="box"];3567[label="vyw71/(vyw710,vyw711,vyw712)",fontsize=10,color="white",style="solid",shape="box"];1634 -> 3567[label="",style="solid", color="burlywood", weight=9]; 3567 -> 2007[label="",style="solid", color="burlywood", weight=3]; 1635[label="(vyw700,vyw701) <= vyw71",fontsize=16,color="burlywood",shape="box"];3568[label="vyw71/(vyw710,vyw711)",fontsize=10,color="white",style="solid",shape="box"];1635 -> 3568[label="",style="solid", color="burlywood", weight=9]; 3568 -> 2008[label="",style="solid", color="burlywood", weight=3]; 1636 -> 1994[label="",style="dashed", color="red", weight=0]; 1636[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1636 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1637 -> 1994[label="",style="dashed", color="red", weight=0]; 1637[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1637 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1638[label="Left vyw700 <= vyw71",fontsize=16,color="burlywood",shape="box"];3569[label="vyw71/Left vyw710",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3569[label="",style="solid", color="burlywood", weight=9]; 3569 -> 2009[label="",style="solid", color="burlywood", weight=3]; 3570[label="vyw71/Right vyw710",fontsize=10,color="white",style="solid",shape="box"];1638 -> 3570[label="",style="solid", color="burlywood", weight=9]; 3570 -> 2010[label="",style="solid", color="burlywood", weight=3]; 1639[label="Right vyw700 <= vyw71",fontsize=16,color="burlywood",shape="box"];3571[label="vyw71/Left vyw710",fontsize=10,color="white",style="solid",shape="box"];1639 -> 3571[label="",style="solid", color="burlywood", weight=9]; 3571 -> 2011[label="",style="solid", color="burlywood", weight=3]; 3572[label="vyw71/Right vyw710",fontsize=10,color="white",style="solid",shape="box"];1639 -> 3572[label="",style="solid", color="burlywood", weight=9]; 3572 -> 2012[label="",style="solid", color="burlywood", weight=3]; 1640[label="LT <= vyw71",fontsize=16,color="burlywood",shape="box"];3573[label="vyw71/LT",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3573[label="",style="solid", color="burlywood", weight=9]; 3573 -> 2013[label="",style="solid", color="burlywood", weight=3]; 3574[label="vyw71/EQ",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3574[label="",style="solid", color="burlywood", weight=9]; 3574 -> 2014[label="",style="solid", color="burlywood", weight=3]; 3575[label="vyw71/GT",fontsize=10,color="white",style="solid",shape="box"];1640 -> 3575[label="",style="solid", color="burlywood", weight=9]; 3575 -> 2015[label="",style="solid", color="burlywood", weight=3]; 1641[label="EQ <= vyw71",fontsize=16,color="burlywood",shape="box"];3576[label="vyw71/LT",fontsize=10,color="white",style="solid",shape="box"];1641 -> 3576[label="",style="solid", color="burlywood", weight=9]; 3576 -> 2016[label="",style="solid", color="burlywood", weight=3]; 3577[label="vyw71/EQ",fontsize=10,color="white",style="solid",shape="box"];1641 -> 3577[label="",style="solid", color="burlywood", weight=9]; 3577 -> 2017[label="",style="solid", color="burlywood", weight=3]; 3578[label="vyw71/GT",fontsize=10,color="white",style="solid",shape="box"];1641 -> 3578[label="",style="solid", color="burlywood", weight=9]; 3578 -> 2018[label="",style="solid", color="burlywood", weight=3]; 1642[label="GT <= vyw71",fontsize=16,color="burlywood",shape="box"];3579[label="vyw71/LT",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3579[label="",style="solid", color="burlywood", weight=9]; 3579 -> 2019[label="",style="solid", color="burlywood", weight=3]; 3580[label="vyw71/EQ",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3580[label="",style="solid", color="burlywood", weight=9]; 3580 -> 2020[label="",style="solid", color="burlywood", weight=3]; 3581[label="vyw71/GT",fontsize=10,color="white",style="solid",shape="box"];1642 -> 3581[label="",style="solid", color="burlywood", weight=9]; 3581 -> 2021[label="",style="solid", color="burlywood", weight=3]; 1643 -> 1994[label="",style="dashed", color="red", weight=0]; 1643[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1643 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1644 -> 1994[label="",style="dashed", color="red", weight=0]; 1644[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1644 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1645 -> 1994[label="",style="dashed", color="red", weight=0]; 1645[label="compare vyw70 vyw71 /= GT",fontsize=16,color="magenta"];1645 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1646[label="Nothing <= vyw71",fontsize=16,color="burlywood",shape="box"];3582[label="vyw71/Nothing",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3582[label="",style="solid", color="burlywood", weight=9]; 3582 -> 2022[label="",style="solid", color="burlywood", weight=3]; 3583[label="vyw71/Just vyw710",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3583[label="",style="solid", color="burlywood", weight=9]; 3583 -> 2023[label="",style="solid", color="burlywood", weight=3]; 1647[label="Just vyw700 <= vyw71",fontsize=16,color="burlywood",shape="box"];3584[label="vyw71/Nothing",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3584[label="",style="solid", color="burlywood", weight=9]; 3584 -> 2024[label="",style="solid", color="burlywood", weight=3]; 3585[label="vyw71/Just vyw710",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3585[label="",style="solid", color="burlywood", weight=9]; 3585 -> 2025[label="",style="solid", color="burlywood", weight=3]; 1648[label="compare0 (Left vyw136) (Left vyw137) True",fontsize=16,color="black",shape="box"];1648 -> 2026[label="",style="solid", color="black", weight=3]; 1649[label="vyw78",fontsize=16,color="green",shape="box"];1650[label="vyw77",fontsize=16,color="green",shape="box"];1651[label="vyw78",fontsize=16,color="green",shape="box"];1652[label="vyw77",fontsize=16,color="green",shape="box"];1653[label="vyw78",fontsize=16,color="green",shape="box"];1654[label="vyw77",fontsize=16,color="green",shape="box"];1655[label="vyw78",fontsize=16,color="green",shape="box"];1656[label="vyw77",fontsize=16,color="green",shape="box"];1657[label="vyw78",fontsize=16,color="green",shape="box"];1658[label="vyw77",fontsize=16,color="green",shape="box"];1659[label="vyw78",fontsize=16,color="green",shape="box"];1660[label="vyw77",fontsize=16,color="green",shape="box"];1661[label="vyw78",fontsize=16,color="green",shape="box"];1662[label="vyw77",fontsize=16,color="green",shape="box"];1663[label="vyw78",fontsize=16,color="green",shape="box"];1664[label="vyw77",fontsize=16,color="green",shape="box"];1665[label="vyw78",fontsize=16,color="green",shape="box"];1666[label="vyw77",fontsize=16,color="green",shape="box"];1667[label="vyw78",fontsize=16,color="green",shape="box"];1668[label="vyw77",fontsize=16,color="green",shape="box"];1669[label="vyw78",fontsize=16,color="green",shape="box"];1670[label="vyw77",fontsize=16,color="green",shape="box"];1671[label="vyw78",fontsize=16,color="green",shape="box"];1672[label="vyw77",fontsize=16,color="green",shape="box"];1673[label="vyw78",fontsize=16,color="green",shape="box"];1674[label="vyw77",fontsize=16,color="green",shape="box"];1675[label="vyw78",fontsize=16,color="green",shape="box"];1676[label="vyw77",fontsize=16,color="green",shape="box"];1677[label="compare0 (Right vyw143) (Right vyw144) True",fontsize=16,color="black",shape="box"];1677 -> 2027[label="",style="solid", color="black", weight=3]; 1678[label="primMulNat (Succ vyw30000) (Succ vyw4100)",fontsize=16,color="black",shape="box"];1678 -> 2028[label="",style="solid", color="black", weight=3]; 1679[label="primMulNat (Succ vyw30000) Zero",fontsize=16,color="black",shape="box"];1679 -> 2029[label="",style="solid", color="black", weight=3]; 1680[label="primMulNat Zero (Succ vyw4100)",fontsize=16,color="black",shape="box"];1680 -> 2030[label="",style="solid", color="black", weight=3]; 1681[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1681 -> 2031[label="",style="solid", color="black", weight=3]; 1682[label="vyw90",fontsize=16,color="green",shape="box"];1683[label="vyw89",fontsize=16,color="green",shape="box"];1684[label="vyw90",fontsize=16,color="green",shape="box"];1685[label="vyw89",fontsize=16,color="green",shape="box"];1686[label="vyw90",fontsize=16,color="green",shape="box"];1687[label="vyw89",fontsize=16,color="green",shape="box"];1688[label="vyw90",fontsize=16,color="green",shape="box"];1689[label="vyw89",fontsize=16,color="green",shape="box"];1690[label="vyw90",fontsize=16,color="green",shape="box"];1691[label="vyw89",fontsize=16,color="green",shape="box"];1692[label="vyw90",fontsize=16,color="green",shape="box"];1693[label="vyw89",fontsize=16,color="green",shape="box"];1694[label="vyw90",fontsize=16,color="green",shape="box"];1695[label="vyw89",fontsize=16,color="green",shape="box"];1696[label="vyw90",fontsize=16,color="green",shape="box"];1697[label="vyw89",fontsize=16,color="green",shape="box"];1698[label="vyw90",fontsize=16,color="green",shape="box"];1699[label="vyw89",fontsize=16,color="green",shape="box"];1700[label="vyw90",fontsize=16,color="green",shape="box"];1701[label="vyw89",fontsize=16,color="green",shape="box"];1702[label="vyw90",fontsize=16,color="green",shape="box"];1703[label="vyw89",fontsize=16,color="green",shape="box"];1704[label="vyw90",fontsize=16,color="green",shape="box"];1705[label="vyw89",fontsize=16,color="green",shape="box"];1706[label="vyw90",fontsize=16,color="green",shape="box"];1707[label="vyw89",fontsize=16,color="green",shape="box"];1708[label="vyw90",fontsize=16,color="green",shape="box"];1709[label="vyw89",fontsize=16,color="green",shape="box"];1710[label="compare0 (Just vyw153) (Just vyw154) True",fontsize=16,color="black",shape="box"];1710 -> 2032[label="",style="solid", color="black", weight=3]; 1718 -> 19[label="",style="dashed", color="red", weight=0]; 1718[label="vyw101 < vyw104",fontsize=16,color="magenta"];1718 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1718 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1719 -> 20[label="",style="dashed", color="red", weight=0]; 1719[label="vyw101 < vyw104",fontsize=16,color="magenta"];1719 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1719 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1720 -> 21[label="",style="dashed", color="red", weight=0]; 1720[label="vyw101 < vyw104",fontsize=16,color="magenta"];1720 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1720 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1721 -> 22[label="",style="dashed", color="red", weight=0]; 1721[label="vyw101 < vyw104",fontsize=16,color="magenta"];1721 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1722 -> 23[label="",style="dashed", color="red", weight=0]; 1722[label="vyw101 < vyw104",fontsize=16,color="magenta"];1722 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1723 -> 24[label="",style="dashed", color="red", weight=0]; 1723[label="vyw101 < vyw104",fontsize=16,color="magenta"];1723 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1724 -> 25[label="",style="dashed", color="red", weight=0]; 1724[label="vyw101 < vyw104",fontsize=16,color="magenta"];1724 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1725 -> 26[label="",style="dashed", color="red", weight=0]; 1725[label="vyw101 < vyw104",fontsize=16,color="magenta"];1725 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1725 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1726 -> 27[label="",style="dashed", color="red", weight=0]; 1726[label="vyw101 < vyw104",fontsize=16,color="magenta"];1726 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1726 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1727 -> 28[label="",style="dashed", color="red", weight=0]; 1727[label="vyw101 < vyw104",fontsize=16,color="magenta"];1727 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1727 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1728 -> 29[label="",style="dashed", color="red", weight=0]; 1728[label="vyw101 < vyw104",fontsize=16,color="magenta"];1728 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1728 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1729 -> 30[label="",style="dashed", color="red", weight=0]; 1729[label="vyw101 < vyw104",fontsize=16,color="magenta"];1729 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1729 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1730 -> 31[label="",style="dashed", color="red", weight=0]; 1730[label="vyw101 < vyw104",fontsize=16,color="magenta"];1730 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1731 -> 32[label="",style="dashed", color="red", weight=0]; 1731[label="vyw101 < vyw104",fontsize=16,color="magenta"];1731 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1731 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1732[label="vyw102 <= vyw105",fontsize=16,color="blue",shape="box"];3586[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2061[label="",style="solid", color="blue", weight=3]; 3587[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2062[label="",style="solid", color="blue", weight=3]; 3588[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2063[label="",style="solid", color="blue", weight=3]; 3589[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2064[label="",style="solid", color="blue", weight=3]; 3590[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2065[label="",style="solid", color="blue", weight=3]; 3591[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2066[label="",style="solid", color="blue", weight=3]; 3592[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3592[label="",style="solid", color="blue", weight=9]; 3592 -> 2067[label="",style="solid", color="blue", weight=3]; 3593[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3593[label="",style="solid", color="blue", weight=9]; 3593 -> 2068[label="",style="solid", color="blue", weight=3]; 3594[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2069[label="",style="solid", color="blue", weight=3]; 3595[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2070[label="",style="solid", color="blue", weight=3]; 3596[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2071[label="",style="solid", color="blue", weight=3]; 3597[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2072[label="",style="solid", color="blue", weight=3]; 3598[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2073[label="",style="solid", color="blue", weight=3]; 3599[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1732 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2074[label="",style="solid", color="blue", weight=3]; 1733[label="vyw101 == vyw104",fontsize=16,color="blue",shape="box"];3600[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2075[label="",style="solid", color="blue", weight=3]; 3601[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2076[label="",style="solid", color="blue", weight=3]; 3602[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2077[label="",style="solid", color="blue", weight=3]; 3603[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2078[label="",style="solid", color="blue", weight=3]; 3604[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2079[label="",style="solid", color="blue", weight=3]; 3605[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2080[label="",style="solid", color="blue", weight=3]; 3606[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2081[label="",style="solid", color="blue", weight=3]; 3607[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2082[label="",style="solid", color="blue", weight=3]; 3608[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2083[label="",style="solid", color="blue", weight=3]; 3609[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2084[label="",style="solid", color="blue", weight=3]; 3610[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2085[label="",style="solid", color="blue", weight=3]; 3611[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2086[label="",style="solid", color="blue", weight=3]; 3612[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2087[label="",style="solid", color="blue", weight=3]; 3613[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1733 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2088[label="",style="solid", color="blue", weight=3]; 1734[label="False || vyw191",fontsize=16,color="black",shape="box"];1734 -> 2089[label="",style="solid", color="black", weight=3]; 1735[label="True || vyw191",fontsize=16,color="black",shape="box"];1735 -> 2090[label="",style="solid", color="black", weight=3]; 1736[label="vyw100",fontsize=16,color="green",shape="box"];1737[label="vyw103",fontsize=16,color="green",shape="box"];1738[label="vyw100",fontsize=16,color="green",shape="box"];1739[label="vyw103",fontsize=16,color="green",shape="box"];1740[label="vyw100",fontsize=16,color="green",shape="box"];1741[label="vyw103",fontsize=16,color="green",shape="box"];1742[label="vyw100",fontsize=16,color="green",shape="box"];1743[label="vyw103",fontsize=16,color="green",shape="box"];1744[label="vyw100",fontsize=16,color="green",shape="box"];1745[label="vyw103",fontsize=16,color="green",shape="box"];1746[label="vyw100",fontsize=16,color="green",shape="box"];1747[label="vyw103",fontsize=16,color="green",shape="box"];1748[label="vyw100",fontsize=16,color="green",shape="box"];1749[label="vyw103",fontsize=16,color="green",shape="box"];1750[label="vyw100",fontsize=16,color="green",shape="box"];1751[label="vyw103",fontsize=16,color="green",shape="box"];1752[label="vyw100",fontsize=16,color="green",shape="box"];1753[label="vyw103",fontsize=16,color="green",shape="box"];1754[label="vyw100",fontsize=16,color="green",shape="box"];1755[label="vyw103",fontsize=16,color="green",shape="box"];1756[label="vyw100",fontsize=16,color="green",shape="box"];1757[label="vyw103",fontsize=16,color="green",shape="box"];1758[label="vyw100",fontsize=16,color="green",shape="box"];1759[label="vyw103",fontsize=16,color="green",shape="box"];1760[label="vyw100",fontsize=16,color="green",shape="box"];1761[label="vyw103",fontsize=16,color="green",shape="box"];1762[label="vyw100",fontsize=16,color="green",shape="box"];1763[label="vyw103",fontsize=16,color="green",shape="box"];1764[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) False",fontsize=16,color="black",shape="box"];1764 -> 2091[label="",style="solid", color="black", weight=3]; 1765[label="compare1 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];1765 -> 2092[label="",style="solid", color="black", weight=3]; 1766[label="True",fontsize=16,color="green",shape="box"];1767[label="vyw116",fontsize=16,color="green",shape="box"];1768[label="vyw114",fontsize=16,color="green",shape="box"];1769[label="vyw116",fontsize=16,color="green",shape="box"];1770[label="vyw114",fontsize=16,color="green",shape="box"];1771[label="vyw116",fontsize=16,color="green",shape="box"];1772[label="vyw114",fontsize=16,color="green",shape="box"];1773[label="vyw116",fontsize=16,color="green",shape="box"];1774[label="vyw114",fontsize=16,color="green",shape="box"];1775[label="vyw116",fontsize=16,color="green",shape="box"];1776[label="vyw114",fontsize=16,color="green",shape="box"];1777[label="vyw116",fontsize=16,color="green",shape="box"];1778[label="vyw114",fontsize=16,color="green",shape="box"];1779[label="vyw116",fontsize=16,color="green",shape="box"];1780[label="vyw114",fontsize=16,color="green",shape="box"];1781[label="vyw116",fontsize=16,color="green",shape="box"];1782[label="vyw114",fontsize=16,color="green",shape="box"];1783[label="vyw116",fontsize=16,color="green",shape="box"];1784[label="vyw114",fontsize=16,color="green",shape="box"];1785[label="vyw116",fontsize=16,color="green",shape="box"];1786[label="vyw114",fontsize=16,color="green",shape="box"];1787[label="vyw116",fontsize=16,color="green",shape="box"];1788[label="vyw114",fontsize=16,color="green",shape="box"];1789[label="vyw116",fontsize=16,color="green",shape="box"];1790[label="vyw114",fontsize=16,color="green",shape="box"];1791[label="vyw116",fontsize=16,color="green",shape="box"];1792[label="vyw114",fontsize=16,color="green",shape="box"];1793[label="vyw116",fontsize=16,color="green",shape="box"];1794[label="vyw114",fontsize=16,color="green",shape="box"];1795[label="vyw113",fontsize=16,color="green",shape="box"];1796[label="vyw115",fontsize=16,color="green",shape="box"];1797[label="vyw113",fontsize=16,color="green",shape="box"];1798[label="vyw115",fontsize=16,color="green",shape="box"];1799[label="vyw113",fontsize=16,color="green",shape="box"];1800[label="vyw115",fontsize=16,color="green",shape="box"];1801[label="vyw113",fontsize=16,color="green",shape="box"];1802[label="vyw115",fontsize=16,color="green",shape="box"];1803[label="vyw113",fontsize=16,color="green",shape="box"];1804[label="vyw115",fontsize=16,color="green",shape="box"];1805[label="vyw113",fontsize=16,color="green",shape="box"];1806[label="vyw115",fontsize=16,color="green",shape="box"];1807[label="vyw113",fontsize=16,color="green",shape="box"];1808[label="vyw115",fontsize=16,color="green",shape="box"];1809[label="vyw113",fontsize=16,color="green",shape="box"];1810[label="vyw115",fontsize=16,color="green",shape="box"];1811[label="vyw113",fontsize=16,color="green",shape="box"];1812[label="vyw115",fontsize=16,color="green",shape="box"];1813[label="vyw113",fontsize=16,color="green",shape="box"];1814[label="vyw115",fontsize=16,color="green",shape="box"];1815[label="vyw113",fontsize=16,color="green",shape="box"];1816[label="vyw115",fontsize=16,color="green",shape="box"];1817[label="vyw113",fontsize=16,color="green",shape="box"];1818[label="vyw115",fontsize=16,color="green",shape="box"];1819[label="vyw113",fontsize=16,color="green",shape="box"];1820[label="vyw115",fontsize=16,color="green",shape="box"];1821[label="vyw113",fontsize=16,color="green",shape="box"];1822[label="vyw115",fontsize=16,color="green",shape="box"];1823[label="compare1 (vyw180,vyw181) (vyw182,vyw183) False",fontsize=16,color="black",shape="box"];1823 -> 2093[label="",style="solid", color="black", weight=3]; 1824[label="compare1 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];1824 -> 2094[label="",style="solid", color="black", weight=3]; 1825[label="True",fontsize=16,color="green",shape="box"];1826 -> 438[label="",style="dashed", color="red", weight=0]; 1826[label="vyw400 * vyw3001",fontsize=16,color="magenta"];1826 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1826 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1827 -> 438[label="",style="dashed", color="red", weight=0]; 1827[label="vyw401 * vyw3000",fontsize=16,color="magenta"];1827 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1827 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1828[label="vyw400",fontsize=16,color="green",shape="box"];1829[label="vyw3000",fontsize=16,color="green",shape="box"];1830[label="vyw400",fontsize=16,color="green",shape="box"];1831[label="vyw3000",fontsize=16,color="green",shape="box"];1832[label="vyw400",fontsize=16,color="green",shape="box"];1833[label="vyw3000",fontsize=16,color="green",shape="box"];1834[label="vyw400",fontsize=16,color="green",shape="box"];1835[label="vyw3000",fontsize=16,color="green",shape="box"];1836[label="vyw400",fontsize=16,color="green",shape="box"];1837[label="vyw3000",fontsize=16,color="green",shape="box"];1838[label="vyw400",fontsize=16,color="green",shape="box"];1839[label="vyw3000",fontsize=16,color="green",shape="box"];1840[label="vyw400",fontsize=16,color="green",shape="box"];1841[label="vyw3000",fontsize=16,color="green",shape="box"];1842[label="vyw400",fontsize=16,color="green",shape="box"];1843[label="vyw3000",fontsize=16,color="green",shape="box"];1844[label="vyw400",fontsize=16,color="green",shape="box"];1845[label="vyw3000",fontsize=16,color="green",shape="box"];1846[label="vyw400",fontsize=16,color="green",shape="box"];1847[label="vyw3000",fontsize=16,color="green",shape="box"];1848[label="vyw400",fontsize=16,color="green",shape="box"];1849[label="vyw3000",fontsize=16,color="green",shape="box"];1850[label="vyw400",fontsize=16,color="green",shape="box"];1851[label="vyw3000",fontsize=16,color="green",shape="box"];1852[label="vyw400",fontsize=16,color="green",shape="box"];1853[label="vyw3000",fontsize=16,color="green",shape="box"];1854[label="vyw400",fontsize=16,color="green",shape="box"];1855[label="vyw3000",fontsize=16,color="green",shape="box"];1856[label="vyw400",fontsize=16,color="green",shape="box"];1857[label="vyw3000",fontsize=16,color="green",shape="box"];1858[label="vyw400",fontsize=16,color="green",shape="box"];1859[label="vyw3000",fontsize=16,color="green",shape="box"];1860[label="vyw400",fontsize=16,color="green",shape="box"];1861[label="vyw3000",fontsize=16,color="green",shape="box"];1862[label="vyw400",fontsize=16,color="green",shape="box"];1863[label="vyw3000",fontsize=16,color="green",shape="box"];1864[label="vyw400",fontsize=16,color="green",shape="box"];1865[label="vyw3000",fontsize=16,color="green",shape="box"];1866[label="vyw400",fontsize=16,color="green",shape="box"];1867[label="vyw3000",fontsize=16,color="green",shape="box"];1868[label="vyw400",fontsize=16,color="green",shape="box"];1869[label="vyw3000",fontsize=16,color="green",shape="box"];1870[label="vyw400",fontsize=16,color="green",shape="box"];1871[label="vyw3000",fontsize=16,color="green",shape="box"];1872[label="vyw400",fontsize=16,color="green",shape="box"];1873[label="vyw3000",fontsize=16,color="green",shape="box"];1874[label="vyw400",fontsize=16,color="green",shape="box"];1875[label="vyw3000",fontsize=16,color="green",shape="box"];1876[label="vyw400",fontsize=16,color="green",shape="box"];1877[label="vyw3000",fontsize=16,color="green",shape="box"];1878[label="vyw400",fontsize=16,color="green",shape="box"];1879[label="vyw3000",fontsize=16,color="green",shape="box"];1880[label="vyw400",fontsize=16,color="green",shape="box"];1881[label="vyw3000",fontsize=16,color="green",shape="box"];1882[label="vyw400",fontsize=16,color="green",shape="box"];1883[label="vyw3000",fontsize=16,color="green",shape="box"];1884 -> 531[label="",style="dashed", color="red", weight=0]; 1884[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1884 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1885 -> 532[label="",style="dashed", color="red", weight=0]; 1885[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1885 -> 2101[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1886 -> 533[label="",style="dashed", color="red", weight=0]; 1886[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1886 -> 2103[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2104[label="",style="dashed", color="magenta", weight=3]; 1887 -> 534[label="",style="dashed", color="red", weight=0]; 1887[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1887 -> 2105[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2106[label="",style="dashed", color="magenta", weight=3]; 1888 -> 535[label="",style="dashed", color="red", weight=0]; 1888[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1888 -> 2107[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1889 -> 536[label="",style="dashed", color="red", weight=0]; 1889[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1889 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2110[label="",style="dashed", color="magenta", weight=3]; 1890 -> 537[label="",style="dashed", color="red", weight=0]; 1890[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1890 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2112[label="",style="dashed", color="magenta", weight=3]; 1891 -> 538[label="",style="dashed", color="red", weight=0]; 1891[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1891 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2114[label="",style="dashed", color="magenta", weight=3]; 1892 -> 539[label="",style="dashed", color="red", weight=0]; 1892[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1892 -> 2115[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2116[label="",style="dashed", color="magenta", weight=3]; 1893 -> 540[label="",style="dashed", color="red", weight=0]; 1893[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1893 -> 2117[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2118[label="",style="dashed", color="magenta", weight=3]; 1894 -> 541[label="",style="dashed", color="red", weight=0]; 1894[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1894 -> 2119[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1895 -> 542[label="",style="dashed", color="red", weight=0]; 1895[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1895 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1896 -> 543[label="",style="dashed", color="red", weight=0]; 1896[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1896 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1897 -> 544[label="",style="dashed", color="red", weight=0]; 1897[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1897 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1898 -> 531[label="",style="dashed", color="red", weight=0]; 1898[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1898 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1899 -> 532[label="",style="dashed", color="red", weight=0]; 1899[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1899 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1900 -> 533[label="",style="dashed", color="red", weight=0]; 1900[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1900 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1901 -> 534[label="",style="dashed", color="red", weight=0]; 1901[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1901 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1902 -> 535[label="",style="dashed", color="red", weight=0]; 1902[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1902 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1903 -> 536[label="",style="dashed", color="red", weight=0]; 1903[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1903 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1903 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1904 -> 537[label="",style="dashed", color="red", weight=0]; 1904[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1904 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1904 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1905 -> 538[label="",style="dashed", color="red", weight=0]; 1905[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1905 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1905 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1906 -> 539[label="",style="dashed", color="red", weight=0]; 1906[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1906 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1906 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1907 -> 540[label="",style="dashed", color="red", weight=0]; 1907[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1907 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1907 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1908 -> 541[label="",style="dashed", color="red", weight=0]; 1908[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1908 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1908 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1909 -> 542[label="",style="dashed", color="red", weight=0]; 1909[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1909 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1909 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1910 -> 543[label="",style="dashed", color="red", weight=0]; 1910[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1910 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1910 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1911 -> 544[label="",style="dashed", color="red", weight=0]; 1911[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1911 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1911 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1912[label="vyw401",fontsize=16,color="green",shape="box"];1913[label="vyw3001",fontsize=16,color="green",shape="box"];1914 -> 531[label="",style="dashed", color="red", weight=0]; 1914[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1914 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1914 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1915 -> 532[label="",style="dashed", color="red", weight=0]; 1915[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1915 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1915 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1916 -> 533[label="",style="dashed", color="red", weight=0]; 1916[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1916 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1916 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1917 -> 534[label="",style="dashed", color="red", weight=0]; 1917[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1917 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1917 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1918 -> 535[label="",style="dashed", color="red", weight=0]; 1918[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1918 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1918 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1919 -> 536[label="",style="dashed", color="red", weight=0]; 1919[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1919 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1919 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1920 -> 537[label="",style="dashed", color="red", weight=0]; 1920[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1920 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1920 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1921 -> 538[label="",style="dashed", color="red", weight=0]; 1921[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1921 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1921 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1922 -> 539[label="",style="dashed", color="red", weight=0]; 1922[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1922 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1922 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1923 -> 540[label="",style="dashed", color="red", weight=0]; 1923[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1923 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1923 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1924 -> 541[label="",style="dashed", color="red", weight=0]; 1924[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1924 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1924 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1925 -> 542[label="",style="dashed", color="red", weight=0]; 1925[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1925 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1926 -> 543[label="",style="dashed", color="red", weight=0]; 1926[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1926 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1927 -> 544[label="",style="dashed", color="red", weight=0]; 1927[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1927 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1928 -> 532[label="",style="dashed", color="red", weight=0]; 1928[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1928 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1929 -> 543[label="",style="dashed", color="red", weight=0]; 1929[label="vyw401 == vyw3001",fontsize=16,color="magenta"];1929 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1930 -> 532[label="",style="dashed", color="red", weight=0]; 1930[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1930 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1931 -> 543[label="",style="dashed", color="red", weight=0]; 1931[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1931 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1932[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];3614[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3614[label="",style="solid", color="burlywood", weight=9]; 3614 -> 2191[label="",style="solid", color="burlywood", weight=3]; 3615[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3615[label="",style="solid", color="burlywood", weight=9]; 3615 -> 2192[label="",style="solid", color="burlywood", weight=3]; 1933[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3616[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3616[label="",style="solid", color="burlywood", weight=9]; 3616 -> 2193[label="",style="solid", color="burlywood", weight=3]; 3617[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3617[label="",style="solid", color="burlywood", weight=9]; 3617 -> 2194[label="",style="solid", color="burlywood", weight=3]; 1934[label="vyw400",fontsize=16,color="green",shape="box"];1935[label="vyw3000",fontsize=16,color="green",shape="box"];1936[label="vyw400",fontsize=16,color="green",shape="box"];1937[label="vyw3000",fontsize=16,color="green",shape="box"];1938[label="vyw400",fontsize=16,color="green",shape="box"];1939[label="vyw3000",fontsize=16,color="green",shape="box"];1940[label="vyw400",fontsize=16,color="green",shape="box"];1941[label="vyw3000",fontsize=16,color="green",shape="box"];1942[label="vyw400",fontsize=16,color="green",shape="box"];1943[label="vyw3000",fontsize=16,color="green",shape="box"];1944[label="vyw400",fontsize=16,color="green",shape="box"];1945[label="vyw3000",fontsize=16,color="green",shape="box"];1946[label="vyw400",fontsize=16,color="green",shape="box"];1947[label="vyw3000",fontsize=16,color="green",shape="box"];1948[label="vyw400",fontsize=16,color="green",shape="box"];1949[label="vyw3000",fontsize=16,color="green",shape="box"];1950[label="vyw400",fontsize=16,color="green",shape="box"];1951[label="vyw3000",fontsize=16,color="green",shape="box"];1952[label="vyw400",fontsize=16,color="green",shape="box"];1953[label="vyw3000",fontsize=16,color="green",shape="box"];1954[label="vyw400",fontsize=16,color="green",shape="box"];1955[label="vyw3000",fontsize=16,color="green",shape="box"];1956[label="vyw400",fontsize=16,color="green",shape="box"];1957[label="vyw3000",fontsize=16,color="green",shape="box"];1958[label="vyw400",fontsize=16,color="green",shape="box"];1959[label="vyw3000",fontsize=16,color="green",shape="box"];1960[label="vyw400",fontsize=16,color="green",shape="box"];1961[label="vyw3000",fontsize=16,color="green",shape="box"];1962[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];3618[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2195[label="",style="solid", color="blue", weight=3]; 3619[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2196[label="",style="solid", color="blue", weight=3]; 3620[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2197[label="",style="solid", color="blue", weight=3]; 3621[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2198[label="",style="solid", color="blue", weight=3]; 3622[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2199[label="",style="solid", color="blue", weight=3]; 3623[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2200[label="",style="solid", color="blue", weight=3]; 3624[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2201[label="",style="solid", color="blue", weight=3]; 3625[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2202[label="",style="solid", color="blue", weight=3]; 3626[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 2203[label="",style="solid", color="blue", weight=3]; 3627[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2204[label="",style="solid", color="blue", weight=3]; 3628[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2205[label="",style="solid", color="blue", weight=3]; 3629[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2206[label="",style="solid", color="blue", weight=3]; 3630[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2207[label="",style="solid", color="blue", weight=3]; 3631[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2208[label="",style="solid", color="blue", weight=3]; 1963[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3632[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2209[label="",style="solid", color="blue", weight=3]; 3633[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2210[label="",style="solid", color="blue", weight=3]; 3634[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2211[label="",style="solid", color="blue", weight=3]; 3635[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2212[label="",style="solid", color="blue", weight=3]; 3636[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3636[label="",style="solid", color="blue", weight=9]; 3636 -> 2213[label="",style="solid", color="blue", weight=3]; 3637[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3637[label="",style="solid", color="blue", weight=9]; 3637 -> 2214[label="",style="solid", color="blue", weight=3]; 3638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2215[label="",style="solid", color="blue", weight=3]; 3639[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2216[label="",style="solid", color="blue", weight=3]; 3640[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2217[label="",style="solid", color="blue", weight=3]; 3641[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2218[label="",style="solid", color="blue", weight=3]; 3642[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2219[label="",style="solid", color="blue", weight=3]; 3643[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2220[label="",style="solid", color="blue", weight=3]; 3644[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2221[label="",style="solid", color="blue", weight=3]; 3645[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2222[label="",style="solid", color="blue", weight=3]; 1964 -> 531[label="",style="dashed", color="red", weight=0]; 1964[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1964 -> 2223[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2224[label="",style="dashed", color="magenta", weight=3]; 1965 -> 532[label="",style="dashed", color="red", weight=0]; 1965[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1965 -> 2225[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2226[label="",style="dashed", color="magenta", weight=3]; 1966 -> 533[label="",style="dashed", color="red", weight=0]; 1966[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1966 -> 2227[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2228[label="",style="dashed", color="magenta", weight=3]; 1967 -> 534[label="",style="dashed", color="red", weight=0]; 1967[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1967 -> 2229[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2230[label="",style="dashed", color="magenta", weight=3]; 1968 -> 535[label="",style="dashed", color="red", weight=0]; 1968[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1968 -> 2231[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2232[label="",style="dashed", color="magenta", weight=3]; 1969 -> 536[label="",style="dashed", color="red", weight=0]; 1969[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1969 -> 2233[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2234[label="",style="dashed", color="magenta", weight=3]; 1970 -> 537[label="",style="dashed", color="red", weight=0]; 1970[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1970 -> 2235[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2236[label="",style="dashed", color="magenta", weight=3]; 1971 -> 538[label="",style="dashed", color="red", weight=0]; 1971[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1971 -> 2237[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2238[label="",style="dashed", color="magenta", weight=3]; 1972 -> 539[label="",style="dashed", color="red", weight=0]; 1972[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1972 -> 2239[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2240[label="",style="dashed", color="magenta", weight=3]; 1973 -> 540[label="",style="dashed", color="red", weight=0]; 1973[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1973 -> 2241[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2242[label="",style="dashed", color="magenta", weight=3]; 1974 -> 541[label="",style="dashed", color="red", weight=0]; 1974[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1974 -> 2243[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2244[label="",style="dashed", color="magenta", weight=3]; 1975 -> 542[label="",style="dashed", color="red", weight=0]; 1975[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1975 -> 2245[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2246[label="",style="dashed", color="magenta", weight=3]; 1976 -> 543[label="",style="dashed", color="red", weight=0]; 1976[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1976 -> 2247[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2248[label="",style="dashed", color="magenta", weight=3]; 1977 -> 544[label="",style="dashed", color="red", weight=0]; 1977[label="vyw400 == vyw3000",fontsize=16,color="magenta"];1977 -> 2249[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2250[label="",style="dashed", color="magenta", weight=3]; 1978[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1978 -> 2251[label="",style="solid", color="black", weight=3]; 1979[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1979 -> 2252[label="",style="solid", color="black", weight=3]; 1980[label="False",fontsize=16,color="green",shape="box"];1981[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1981 -> 2253[label="",style="solid", color="black", weight=3]; 1982[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1982 -> 2254[label="",style="solid", color="black", weight=3]; 1983[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1983 -> 2255[label="",style="solid", color="black", weight=3]; 1984[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1984 -> 2256[label="",style="solid", color="black", weight=3]; 1985[label="False",fontsize=16,color="green",shape="box"];1986[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1986 -> 2257[label="",style="solid", color="black", weight=3]; 1987[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1987 -> 2258[label="",style="solid", color="black", weight=3]; 1988[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];1988 -> 2259[label="",style="solid", color="black", weight=3]; 1989[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1989 -> 2260[label="",style="solid", color="black", weight=3]; 1990[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];1990 -> 2261[label="",style="solid", color="black", weight=3]; 1991[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1991 -> 2262[label="",style="solid", color="black", weight=3]; 1992 -> 438[label="",style="dashed", color="red", weight=0]; 1992[label="vyw400 * vyw3001",fontsize=16,color="magenta"];1992 -> 2263[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2264[label="",style="dashed", color="magenta", weight=3]; 1993 -> 438[label="",style="dashed", color="red", weight=0]; 1993[label="vyw401 * vyw3000",fontsize=16,color="magenta"];1993 -> 2265[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2266[label="",style="dashed", color="magenta", weight=3]; 1995 -> 192[label="",style="dashed", color="red", weight=0]; 1995[label="compare vyw70 vyw71",fontsize=16,color="magenta"];1995 -> 2267[label="",style="dashed", color="magenta", weight=3]; 1995 -> 2268[label="",style="dashed", color="magenta", weight=3]; 1994[label="vyw192 /= GT",fontsize=16,color="black",shape="triangle"];1994 -> 2269[label="",style="solid", color="black", weight=3]; 1996 -> 193[label="",style="dashed", color="red", weight=0]; 1996[label="compare vyw70 vyw71",fontsize=16,color="magenta"];1996 -> 2270[label="",style="dashed", color="magenta", weight=3]; 1996 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2003[label="False <= False",fontsize=16,color="black",shape="box"];2003 -> 2284[label="",style="solid", color="black", weight=3]; 2004[label="False <= True",fontsize=16,color="black",shape="box"];2004 -> 2285[label="",style="solid", color="black", weight=3]; 2005[label="True <= False",fontsize=16,color="black",shape="box"];2005 -> 2286[label="",style="solid", color="black", weight=3]; 2006[label="True <= True",fontsize=16,color="black",shape="box"];2006 -> 2287[label="",style="solid", color="black", weight=3]; 1997 -> 195[label="",style="dashed", color="red", weight=0]; 1997[label="compare vyw70 vyw71",fontsize=16,color="magenta"];1997 -> 2272[label="",style="dashed", color="magenta", weight=3]; 1997 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2007[label="(vyw700,vyw701,vyw702) <= (vyw710,vyw711,vyw712)",fontsize=16,color="black",shape="box"];2007 -> 2288[label="",style="solid", color="black", weight=3]; 2008[label="(vyw700,vyw701) <= (vyw710,vyw711)",fontsize=16,color="black",shape="box"];2008 -> 2289[label="",style="solid", color="black", weight=3]; 1998 -> 198[label="",style="dashed", color="red", weight=0]; 1998[label="compare vyw70 vyw71",fontsize=16,color="magenta"];1998 -> 2274[label="",style="dashed", color="magenta", weight=3]; 1998 -> 2275[label="",style="dashed", color="magenta", weight=3]; 1999 -> 199[label="",style="dashed", color="red", weight=0]; 1999[label="compare vyw70 vyw71",fontsize=16,color="magenta"];1999 -> 2276[label="",style="dashed", color="magenta", weight=3]; 1999 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2009[label="Left vyw700 <= Left vyw710",fontsize=16,color="black",shape="box"];2009 -> 2290[label="",style="solid", color="black", weight=3]; 2010[label="Left vyw700 <= Right vyw710",fontsize=16,color="black",shape="box"];2010 -> 2291[label="",style="solid", color="black", weight=3]; 2011[label="Right vyw700 <= Left vyw710",fontsize=16,color="black",shape="box"];2011 -> 2292[label="",style="solid", color="black", weight=3]; 2012[label="Right vyw700 <= Right vyw710",fontsize=16,color="black",shape="box"];2012 -> 2293[label="",style="solid", color="black", weight=3]; 2013[label="LT <= LT",fontsize=16,color="black",shape="box"];2013 -> 2294[label="",style="solid", color="black", weight=3]; 2014[label="LT <= EQ",fontsize=16,color="black",shape="box"];2014 -> 2295[label="",style="solid", color="black", weight=3]; 2015[label="LT <= GT",fontsize=16,color="black",shape="box"];2015 -> 2296[label="",style="solid", color="black", weight=3]; 2016[label="EQ <= LT",fontsize=16,color="black",shape="box"];2016 -> 2297[label="",style="solid", color="black", weight=3]; 2017[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2017 -> 2298[label="",style="solid", color="black", weight=3]; 2018[label="EQ <= GT",fontsize=16,color="black",shape="box"];2018 -> 2299[label="",style="solid", color="black", weight=3]; 2019[label="GT <= LT",fontsize=16,color="black",shape="box"];2019 -> 2300[label="",style="solid", color="black", weight=3]; 2020[label="GT <= EQ",fontsize=16,color="black",shape="box"];2020 -> 2301[label="",style="solid", color="black", weight=3]; 2021[label="GT <= GT",fontsize=16,color="black",shape="box"];2021 -> 2302[label="",style="solid", color="black", weight=3]; 2000 -> 202[label="",style="dashed", color="red", weight=0]; 2000[label="compare vyw70 vyw71",fontsize=16,color="magenta"];2000 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2000 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2001 -> 203[label="",style="dashed", color="red", weight=0]; 2001[label="compare vyw70 vyw71",fontsize=16,color="magenta"];2001 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2001 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2002 -> 204[label="",style="dashed", color="red", weight=0]; 2002[label="compare vyw70 vyw71",fontsize=16,color="magenta"];2002 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2022[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2022 -> 2303[label="",style="solid", color="black", weight=3]; 2023[label="Nothing <= Just vyw710",fontsize=16,color="black",shape="box"];2023 -> 2304[label="",style="solid", color="black", weight=3]; 2024[label="Just vyw700 <= Nothing",fontsize=16,color="black",shape="box"];2024 -> 2305[label="",style="solid", color="black", weight=3]; 2025[label="Just vyw700 <= Just vyw710",fontsize=16,color="black",shape="box"];2025 -> 2306[label="",style="solid", color="black", weight=3]; 2026[label="GT",fontsize=16,color="green",shape="box"];2027[label="GT",fontsize=16,color="green",shape="box"];2028 -> 2307[label="",style="dashed", color="red", weight=0]; 2028[label="primPlusNat (primMulNat vyw30000 (Succ vyw4100)) (Succ vyw4100)",fontsize=16,color="magenta"];2028 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2029[label="Zero",fontsize=16,color="green",shape="box"];2030[label="Zero",fontsize=16,color="green",shape="box"];2031[label="Zero",fontsize=16,color="green",shape="box"];2032[label="GT",fontsize=16,color="green",shape="box"];2033[label="vyw104",fontsize=16,color="green",shape="box"];2034[label="vyw101",fontsize=16,color="green",shape="box"];2035[label="vyw104",fontsize=16,color="green",shape="box"];2036[label="vyw101",fontsize=16,color="green",shape="box"];2037[label="vyw104",fontsize=16,color="green",shape="box"];2038[label="vyw101",fontsize=16,color="green",shape="box"];2039[label="vyw104",fontsize=16,color="green",shape="box"];2040[label="vyw101",fontsize=16,color="green",shape="box"];2041[label="vyw104",fontsize=16,color="green",shape="box"];2042[label="vyw101",fontsize=16,color="green",shape="box"];2043[label="vyw104",fontsize=16,color="green",shape="box"];2044[label="vyw101",fontsize=16,color="green",shape="box"];2045[label="vyw104",fontsize=16,color="green",shape="box"];2046[label="vyw101",fontsize=16,color="green",shape="box"];2047[label="vyw104",fontsize=16,color="green",shape="box"];2048[label="vyw101",fontsize=16,color="green",shape="box"];2049[label="vyw104",fontsize=16,color="green",shape="box"];2050[label="vyw101",fontsize=16,color="green",shape="box"];2051[label="vyw104",fontsize=16,color="green",shape="box"];2052[label="vyw101",fontsize=16,color="green",shape="box"];2053[label="vyw104",fontsize=16,color="green",shape="box"];2054[label="vyw101",fontsize=16,color="green",shape="box"];2055[label="vyw104",fontsize=16,color="green",shape="box"];2056[label="vyw101",fontsize=16,color="green",shape="box"];2057[label="vyw104",fontsize=16,color="green",shape="box"];2058[label="vyw101",fontsize=16,color="green",shape="box"];2059[label="vyw104",fontsize=16,color="green",shape="box"];2060[label="vyw101",fontsize=16,color="green",shape="box"];2061 -> 1416[label="",style="dashed", color="red", weight=0]; 2061[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2061 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2061 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2062 -> 1417[label="",style="dashed", color="red", weight=0]; 2062[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2062 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2062 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2063 -> 1418[label="",style="dashed", color="red", weight=0]; 2063[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2063 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2063 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2064 -> 1419[label="",style="dashed", color="red", weight=0]; 2064[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2064 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2064 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2065 -> 1420[label="",style="dashed", color="red", weight=0]; 2065[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2065 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2065 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2066 -> 1421[label="",style="dashed", color="red", weight=0]; 2066[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2066 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2066 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2067 -> 1422[label="",style="dashed", color="red", weight=0]; 2067[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2067 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2067 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2068 -> 1423[label="",style="dashed", color="red", weight=0]; 2068[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2068 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2068 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2069 -> 1424[label="",style="dashed", color="red", weight=0]; 2069[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2069 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2069 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2070 -> 1425[label="",style="dashed", color="red", weight=0]; 2070[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2070 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2070 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2071 -> 1426[label="",style="dashed", color="red", weight=0]; 2071[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2071 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2072 -> 1427[label="",style="dashed", color="red", weight=0]; 2072[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2072 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2072 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2073 -> 1428[label="",style="dashed", color="red", weight=0]; 2073[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2073 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2074 -> 1429[label="",style="dashed", color="red", weight=0]; 2074[label="vyw102 <= vyw105",fontsize=16,color="magenta"];2074 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2074 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2075 -> 539[label="",style="dashed", color="red", weight=0]; 2075[label="vyw101 == vyw104",fontsize=16,color="magenta"];2075 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2075 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2076 -> 532[label="",style="dashed", color="red", weight=0]; 2076[label="vyw101 == vyw104",fontsize=16,color="magenta"];2076 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2076 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2077 -> 533[label="",style="dashed", color="red", weight=0]; 2077[label="vyw101 == vyw104",fontsize=16,color="magenta"];2077 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2077 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2078 -> 531[label="",style="dashed", color="red", weight=0]; 2078[label="vyw101 == vyw104",fontsize=16,color="magenta"];2078 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2079 -> 542[label="",style="dashed", color="red", weight=0]; 2079[label="vyw101 == vyw104",fontsize=16,color="magenta"];2079 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2079 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2080 -> 536[label="",style="dashed", color="red", weight=0]; 2080[label="vyw101 == vyw104",fontsize=16,color="magenta"];2080 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2081 -> 543[label="",style="dashed", color="red", weight=0]; 2081[label="vyw101 == vyw104",fontsize=16,color="magenta"];2081 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2081 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2082 -> 544[label="",style="dashed", color="red", weight=0]; 2082[label="vyw101 == vyw104",fontsize=16,color="magenta"];2082 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2082 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2083 -> 535[label="",style="dashed", color="red", weight=0]; 2083[label="vyw101 == vyw104",fontsize=16,color="magenta"];2083 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2083 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2084 -> 534[label="",style="dashed", color="red", weight=0]; 2084[label="vyw101 == vyw104",fontsize=16,color="magenta"];2084 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2084 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2085 -> 537[label="",style="dashed", color="red", weight=0]; 2085[label="vyw101 == vyw104",fontsize=16,color="magenta"];2085 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2086 -> 540[label="",style="dashed", color="red", weight=0]; 2086[label="vyw101 == vyw104",fontsize=16,color="magenta"];2086 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2087 -> 538[label="",style="dashed", color="red", weight=0]; 2087[label="vyw101 == vyw104",fontsize=16,color="magenta"];2087 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2087 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2088 -> 541[label="",style="dashed", color="red", weight=0]; 2088[label="vyw101 == vyw104",fontsize=16,color="magenta"];2088 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2088 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2089[label="vyw191",fontsize=16,color="green",shape="box"];2090[label="True",fontsize=16,color="green",shape="box"];2091[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) otherwise",fontsize=16,color="black",shape="box"];2091 -> 2365[label="",style="solid", color="black", weight=3]; 2092[label="LT",fontsize=16,color="green",shape="box"];2093[label="compare0 (vyw180,vyw181) (vyw182,vyw183) otherwise",fontsize=16,color="black",shape="box"];2093 -> 2366[label="",style="solid", color="black", weight=3]; 2094[label="LT",fontsize=16,color="green",shape="box"];2095[label="vyw400",fontsize=16,color="green",shape="box"];2096[label="vyw3001",fontsize=16,color="green",shape="box"];2097[label="vyw401",fontsize=16,color="green",shape="box"];2098[label="vyw3000",fontsize=16,color="green",shape="box"];2099[label="vyw401",fontsize=16,color="green",shape="box"];2100[label="vyw3001",fontsize=16,color="green",shape="box"];2101[label="vyw401",fontsize=16,color="green",shape="box"];2102[label="vyw3001",fontsize=16,color="green",shape="box"];2103[label="vyw401",fontsize=16,color="green",shape="box"];2104[label="vyw3001",fontsize=16,color="green",shape="box"];2105[label="vyw401",fontsize=16,color="green",shape="box"];2106[label="vyw3001",fontsize=16,color="green",shape="box"];2107[label="vyw401",fontsize=16,color="green",shape="box"];2108[label="vyw3001",fontsize=16,color="green",shape="box"];2109[label="vyw401",fontsize=16,color="green",shape="box"];2110[label="vyw3001",fontsize=16,color="green",shape="box"];2111[label="vyw401",fontsize=16,color="green",shape="box"];2112[label="vyw3001",fontsize=16,color="green",shape="box"];2113[label="vyw401",fontsize=16,color="green",shape="box"];2114[label="vyw3001",fontsize=16,color="green",shape="box"];2115[label="vyw401",fontsize=16,color="green",shape="box"];2116[label="vyw3001",fontsize=16,color="green",shape="box"];2117[label="vyw401",fontsize=16,color="green",shape="box"];2118[label="vyw3001",fontsize=16,color="green",shape="box"];2119[label="vyw401",fontsize=16,color="green",shape="box"];2120[label="vyw3001",fontsize=16,color="green",shape="box"];2121[label="vyw401",fontsize=16,color="green",shape="box"];2122[label="vyw3001",fontsize=16,color="green",shape="box"];2123[label="vyw401",fontsize=16,color="green",shape="box"];2124[label="vyw3001",fontsize=16,color="green",shape="box"];2125[label="vyw401",fontsize=16,color="green",shape="box"];2126[label="vyw3001",fontsize=16,color="green",shape="box"];2127[label="vyw400",fontsize=16,color="green",shape="box"];2128[label="vyw3000",fontsize=16,color="green",shape="box"];2129[label="vyw400",fontsize=16,color="green",shape="box"];2130[label="vyw3000",fontsize=16,color="green",shape="box"];2131[label="vyw400",fontsize=16,color="green",shape="box"];2132[label="vyw3000",fontsize=16,color="green",shape="box"];2133[label="vyw400",fontsize=16,color="green",shape="box"];2134[label="vyw3000",fontsize=16,color="green",shape="box"];2135[label="vyw400",fontsize=16,color="green",shape="box"];2136[label="vyw3000",fontsize=16,color="green",shape="box"];2137[label="vyw400",fontsize=16,color="green",shape="box"];2138[label="vyw3000",fontsize=16,color="green",shape="box"];2139[label="vyw400",fontsize=16,color="green",shape="box"];2140[label="vyw3000",fontsize=16,color="green",shape="box"];2141[label="vyw400",fontsize=16,color="green",shape="box"];2142[label="vyw3000",fontsize=16,color="green",shape="box"];2143[label="vyw400",fontsize=16,color="green",shape="box"];2144[label="vyw3000",fontsize=16,color="green",shape="box"];2145[label="vyw400",fontsize=16,color="green",shape="box"];2146[label="vyw3000",fontsize=16,color="green",shape="box"];2147[label="vyw400",fontsize=16,color="green",shape="box"];2148[label="vyw3000",fontsize=16,color="green",shape="box"];2149[label="vyw400",fontsize=16,color="green",shape="box"];2150[label="vyw3000",fontsize=16,color="green",shape="box"];2151[label="vyw400",fontsize=16,color="green",shape="box"];2152[label="vyw3000",fontsize=16,color="green",shape="box"];2153[label="vyw400",fontsize=16,color="green",shape="box"];2154[label="vyw3000",fontsize=16,color="green",shape="box"];2155[label="vyw400",fontsize=16,color="green",shape="box"];2156[label="vyw3000",fontsize=16,color="green",shape="box"];2157[label="vyw400",fontsize=16,color="green",shape="box"];2158[label="vyw3000",fontsize=16,color="green",shape="box"];2159[label="vyw400",fontsize=16,color="green",shape="box"];2160[label="vyw3000",fontsize=16,color="green",shape="box"];2161[label="vyw400",fontsize=16,color="green",shape="box"];2162[label="vyw3000",fontsize=16,color="green",shape="box"];2163[label="vyw400",fontsize=16,color="green",shape="box"];2164[label="vyw3000",fontsize=16,color="green",shape="box"];2165[label="vyw400",fontsize=16,color="green",shape="box"];2166[label="vyw3000",fontsize=16,color="green",shape="box"];2167[label="vyw400",fontsize=16,color="green",shape="box"];2168[label="vyw3000",fontsize=16,color="green",shape="box"];2169[label="vyw400",fontsize=16,color="green",shape="box"];2170[label="vyw3000",fontsize=16,color="green",shape="box"];2171[label="vyw400",fontsize=16,color="green",shape="box"];2172[label="vyw3000",fontsize=16,color="green",shape="box"];2173[label="vyw400",fontsize=16,color="green",shape="box"];2174[label="vyw3000",fontsize=16,color="green",shape="box"];2175[label="vyw400",fontsize=16,color="green",shape="box"];2176[label="vyw3000",fontsize=16,color="green",shape="box"];2177[label="vyw400",fontsize=16,color="green",shape="box"];2178[label="vyw3000",fontsize=16,color="green",shape="box"];2179[label="vyw400",fontsize=16,color="green",shape="box"];2180[label="vyw3000",fontsize=16,color="green",shape="box"];2181[label="vyw400",fontsize=16,color="green",shape="box"];2182[label="vyw3000",fontsize=16,color="green",shape="box"];2183[label="vyw401",fontsize=16,color="green",shape="box"];2184[label="vyw3001",fontsize=16,color="green",shape="box"];2185[label="vyw401",fontsize=16,color="green",shape="box"];2186[label="vyw3001",fontsize=16,color="green",shape="box"];2187[label="vyw400",fontsize=16,color="green",shape="box"];2188[label="vyw3000",fontsize=16,color="green",shape="box"];2189[label="vyw400",fontsize=16,color="green",shape="box"];2190[label="vyw3000",fontsize=16,color="green",shape="box"];2191[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2191 -> 2367[label="",style="solid", color="black", weight=3]; 2192[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];2192 -> 2368[label="",style="solid", color="black", weight=3]; 2193[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2193 -> 2369[label="",style="solid", color="black", weight=3]; 2194[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2194 -> 2370[label="",style="solid", color="black", weight=3]; 2195 -> 531[label="",style="dashed", color="red", weight=0]; 2195[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2195 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2196 -> 532[label="",style="dashed", color="red", weight=0]; 2196[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2196 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2197 -> 533[label="",style="dashed", color="red", weight=0]; 2197[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2197 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2198 -> 534[label="",style="dashed", color="red", weight=0]; 2198[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2198 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2199 -> 535[label="",style="dashed", color="red", weight=0]; 2199[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2199 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2200 -> 536[label="",style="dashed", color="red", weight=0]; 2200[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2200 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2201 -> 537[label="",style="dashed", color="red", weight=0]; 2201[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2201 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2202 -> 538[label="",style="dashed", color="red", weight=0]; 2202[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2202 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2203 -> 539[label="",style="dashed", color="red", weight=0]; 2203[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2203 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2204 -> 540[label="",style="dashed", color="red", weight=0]; 2204[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2204 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2205 -> 541[label="",style="dashed", color="red", weight=0]; 2205[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2205 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2206 -> 542[label="",style="dashed", color="red", weight=0]; 2206[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2206 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2207 -> 543[label="",style="dashed", color="red", weight=0]; 2207[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2207 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2208 -> 544[label="",style="dashed", color="red", weight=0]; 2208[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2208 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2209 -> 531[label="",style="dashed", color="red", weight=0]; 2209[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2209 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2210 -> 532[label="",style="dashed", color="red", weight=0]; 2210[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2210 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2211 -> 533[label="",style="dashed", color="red", weight=0]; 2211[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2211 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2212 -> 534[label="",style="dashed", color="red", weight=0]; 2212[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2212 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2213 -> 535[label="",style="dashed", color="red", weight=0]; 2213[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2213 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2214 -> 536[label="",style="dashed", color="red", weight=0]; 2214[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2214 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2215 -> 537[label="",style="dashed", color="red", weight=0]; 2215[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2215 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2216 -> 538[label="",style="dashed", color="red", weight=0]; 2216[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2216 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2217 -> 539[label="",style="dashed", color="red", weight=0]; 2217[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2217 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2218 -> 540[label="",style="dashed", color="red", weight=0]; 2218[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2218 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2219 -> 541[label="",style="dashed", color="red", weight=0]; 2219[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2219 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2220 -> 542[label="",style="dashed", color="red", weight=0]; 2220[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2220 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2221 -> 543[label="",style="dashed", color="red", weight=0]; 2221[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2221 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2222 -> 544[label="",style="dashed", color="red", weight=0]; 2222[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2222 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2222 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2223[label="vyw400",fontsize=16,color="green",shape="box"];2224[label="vyw3000",fontsize=16,color="green",shape="box"];2225[label="vyw400",fontsize=16,color="green",shape="box"];2226[label="vyw3000",fontsize=16,color="green",shape="box"];2227[label="vyw400",fontsize=16,color="green",shape="box"];2228[label="vyw3000",fontsize=16,color="green",shape="box"];2229[label="vyw400",fontsize=16,color="green",shape="box"];2230[label="vyw3000",fontsize=16,color="green",shape="box"];2231[label="vyw400",fontsize=16,color="green",shape="box"];2232[label="vyw3000",fontsize=16,color="green",shape="box"];2233[label="vyw400",fontsize=16,color="green",shape="box"];2234[label="vyw3000",fontsize=16,color="green",shape="box"];2235[label="vyw400",fontsize=16,color="green",shape="box"];2236[label="vyw3000",fontsize=16,color="green",shape="box"];2237[label="vyw400",fontsize=16,color="green",shape="box"];2238[label="vyw3000",fontsize=16,color="green",shape="box"];2239[label="vyw400",fontsize=16,color="green",shape="box"];2240[label="vyw3000",fontsize=16,color="green",shape="box"];2241[label="vyw400",fontsize=16,color="green",shape="box"];2242[label="vyw3000",fontsize=16,color="green",shape="box"];2243[label="vyw400",fontsize=16,color="green",shape="box"];2244[label="vyw3000",fontsize=16,color="green",shape="box"];2245[label="vyw400",fontsize=16,color="green",shape="box"];2246[label="vyw3000",fontsize=16,color="green",shape="box"];2247[label="vyw400",fontsize=16,color="green",shape="box"];2248[label="vyw3000",fontsize=16,color="green",shape="box"];2249[label="vyw400",fontsize=16,color="green",shape="box"];2250[label="vyw3000",fontsize=16,color="green",shape="box"];2251 -> 1605[label="",style="dashed", color="red", weight=0]; 2251[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2251 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2252[label="False",fontsize=16,color="green",shape="box"];2253[label="False",fontsize=16,color="green",shape="box"];2254[label="True",fontsize=16,color="green",shape="box"];2255[label="False",fontsize=16,color="green",shape="box"];2256[label="True",fontsize=16,color="green",shape="box"];2257 -> 1605[label="",style="dashed", color="red", weight=0]; 2257[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2257 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2258[label="False",fontsize=16,color="green",shape="box"];2259[label="False",fontsize=16,color="green",shape="box"];2260[label="True",fontsize=16,color="green",shape="box"];2261[label="False",fontsize=16,color="green",shape="box"];2262[label="True",fontsize=16,color="green",shape="box"];2263[label="vyw400",fontsize=16,color="green",shape="box"];2264[label="vyw3001",fontsize=16,color="green",shape="box"];2265[label="vyw401",fontsize=16,color="green",shape="box"];2266[label="vyw3000",fontsize=16,color="green",shape="box"];2267[label="vyw71",fontsize=16,color="green",shape="box"];2268[label="vyw70",fontsize=16,color="green",shape="box"];2269 -> 2431[label="",style="dashed", color="red", weight=0]; 2269[label="not (vyw192 == GT)",fontsize=16,color="magenta"];2269 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2270[label="vyw71",fontsize=16,color="green",shape="box"];2271[label="vyw70",fontsize=16,color="green",shape="box"];2284[label="True",fontsize=16,color="green",shape="box"];2285[label="True",fontsize=16,color="green",shape="box"];2286[label="False",fontsize=16,color="green",shape="box"];2287[label="True",fontsize=16,color="green",shape="box"];2272[label="vyw71",fontsize=16,color="green",shape="box"];2273[label="vyw70",fontsize=16,color="green",shape="box"];2288 -> 1713[label="",style="dashed", color="red", weight=0]; 2288[label="vyw700 < vyw710 || vyw700 == vyw710 && (vyw701 < vyw711 || vyw701 == vyw711 && vyw702 <= vyw712)",fontsize=16,color="magenta"];2288 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2289 -> 1713[label="",style="dashed", color="red", weight=0]; 2289[label="vyw700 < vyw710 || vyw700 == vyw710 && vyw701 <= vyw711",fontsize=16,color="magenta"];2289 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2274[label="vyw71",fontsize=16,color="green",shape="box"];2275[label="vyw70",fontsize=16,color="green",shape="box"];2276[label="vyw71",fontsize=16,color="green",shape="box"];2277[label="vyw70",fontsize=16,color="green",shape="box"];2290[label="vyw700 <= vyw710",fontsize=16,color="blue",shape="box"];3646[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2437[label="",style="solid", color="blue", weight=3]; 3647[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2438[label="",style="solid", color="blue", weight=3]; 3648[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2439[label="",style="solid", color="blue", weight=3]; 3649[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2440[label="",style="solid", color="blue", weight=3]; 3650[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2441[label="",style="solid", color="blue", weight=3]; 3651[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2442[label="",style="solid", color="blue", weight=3]; 3652[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2443[label="",style="solid", color="blue", weight=3]; 3653[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2444[label="",style="solid", color="blue", weight=3]; 3654[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2445[label="",style="solid", color="blue", weight=3]; 3655[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2446[label="",style="solid", color="blue", weight=3]; 3656[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2447[label="",style="solid", color="blue", weight=3]; 3657[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2448[label="",style="solid", color="blue", weight=3]; 3658[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2449[label="",style="solid", color="blue", weight=3]; 3659[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2290 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2450[label="",style="solid", color="blue", weight=3]; 2291[label="True",fontsize=16,color="green",shape="box"];2292[label="False",fontsize=16,color="green",shape="box"];2293[label="vyw700 <= vyw710",fontsize=16,color="blue",shape="box"];3660[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 2451[label="",style="solid", color="blue", weight=3]; 3661[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 2452[label="",style="solid", color="blue", weight=3]; 3662[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 2453[label="",style="solid", color="blue", weight=3]; 3663[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 2454[label="",style="solid", color="blue", weight=3]; 3664[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 2455[label="",style="solid", color="blue", weight=3]; 3665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 2456[label="",style="solid", color="blue", weight=3]; 3666[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2457[label="",style="solid", color="blue", weight=3]; 3667[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2458[label="",style="solid", color="blue", weight=3]; 3668[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2459[label="",style="solid", color="blue", weight=3]; 3669[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2460[label="",style="solid", color="blue", weight=3]; 3670[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2461[label="",style="solid", color="blue", weight=3]; 3671[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2462[label="",style="solid", color="blue", weight=3]; 3672[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2463[label="",style="solid", color="blue", weight=3]; 3673[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2293 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2464[label="",style="solid", color="blue", weight=3]; 2294[label="True",fontsize=16,color="green",shape="box"];2295[label="True",fontsize=16,color="green",shape="box"];2296[label="True",fontsize=16,color="green",shape="box"];2297[label="False",fontsize=16,color="green",shape="box"];2298[label="True",fontsize=16,color="green",shape="box"];2299[label="True",fontsize=16,color="green",shape="box"];2300[label="False",fontsize=16,color="green",shape="box"];2301[label="False",fontsize=16,color="green",shape="box"];2302[label="True",fontsize=16,color="green",shape="box"];2278[label="vyw71",fontsize=16,color="green",shape="box"];2279[label="vyw70",fontsize=16,color="green",shape="box"];2280[label="vyw71",fontsize=16,color="green",shape="box"];2281[label="vyw70",fontsize=16,color="green",shape="box"];2282[label="vyw71",fontsize=16,color="green",shape="box"];2283[label="vyw70",fontsize=16,color="green",shape="box"];2303[label="True",fontsize=16,color="green",shape="box"];2304[label="True",fontsize=16,color="green",shape="box"];2305[label="False",fontsize=16,color="green",shape="box"];2306[label="vyw700 <= vyw710",fontsize=16,color="blue",shape="box"];3674[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2465[label="",style="solid", color="blue", weight=3]; 3675[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2466[label="",style="solid", color="blue", weight=3]; 3676[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2467[label="",style="solid", color="blue", weight=3]; 3677[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2468[label="",style="solid", color="blue", weight=3]; 3678[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2469[label="",style="solid", color="blue", weight=3]; 3679[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 2470[label="",style="solid", color="blue", weight=3]; 3680[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 2471[label="",style="solid", color="blue", weight=3]; 3681[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 2472[label="",style="solid", color="blue", weight=3]; 3682[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 2473[label="",style="solid", color="blue", weight=3]; 3683[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 2474[label="",style="solid", color="blue", weight=3]; 3684[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 2475[label="",style="solid", color="blue", weight=3]; 3685[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 2476[label="",style="solid", color="blue", weight=3]; 3686[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 2477[label="",style="solid", color="blue", weight=3]; 3687[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2306 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 2478[label="",style="solid", color="blue", weight=3]; 2308 -> 1331[label="",style="dashed", color="red", weight=0]; 2308[label="primMulNat vyw30000 (Succ vyw4100)",fontsize=16,color="magenta"];2308 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2307[label="primPlusNat vyw193 (Succ vyw4100)",fontsize=16,color="burlywood",shape="triangle"];3688[label="vyw193/Succ vyw1930",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3688[label="",style="solid", color="burlywood", weight=9]; 3688 -> 2481[label="",style="solid", color="burlywood", weight=3]; 3689[label="vyw193/Zero",fontsize=10,color="white",style="solid",shape="box"];2307 -> 3689[label="",style="solid", color="burlywood", weight=9]; 3689 -> 2482[label="",style="solid", color="burlywood", weight=3]; 2309[label="vyw105",fontsize=16,color="green",shape="box"];2310[label="vyw102",fontsize=16,color="green",shape="box"];2311[label="vyw105",fontsize=16,color="green",shape="box"];2312[label="vyw102",fontsize=16,color="green",shape="box"];2313[label="vyw105",fontsize=16,color="green",shape="box"];2314[label="vyw102",fontsize=16,color="green",shape="box"];2315[label="vyw105",fontsize=16,color="green",shape="box"];2316[label="vyw102",fontsize=16,color="green",shape="box"];2317[label="vyw105",fontsize=16,color="green",shape="box"];2318[label="vyw102",fontsize=16,color="green",shape="box"];2319[label="vyw105",fontsize=16,color="green",shape="box"];2320[label="vyw102",fontsize=16,color="green",shape="box"];2321[label="vyw105",fontsize=16,color="green",shape="box"];2322[label="vyw102",fontsize=16,color="green",shape="box"];2323[label="vyw105",fontsize=16,color="green",shape="box"];2324[label="vyw102",fontsize=16,color="green",shape="box"];2325[label="vyw105",fontsize=16,color="green",shape="box"];2326[label="vyw102",fontsize=16,color="green",shape="box"];2327[label="vyw105",fontsize=16,color="green",shape="box"];2328[label="vyw102",fontsize=16,color="green",shape="box"];2329[label="vyw105",fontsize=16,color="green",shape="box"];2330[label="vyw102",fontsize=16,color="green",shape="box"];2331[label="vyw105",fontsize=16,color="green",shape="box"];2332[label="vyw102",fontsize=16,color="green",shape="box"];2333[label="vyw105",fontsize=16,color="green",shape="box"];2334[label="vyw102",fontsize=16,color="green",shape="box"];2335[label="vyw105",fontsize=16,color="green",shape="box"];2336[label="vyw102",fontsize=16,color="green",shape="box"];2337[label="vyw101",fontsize=16,color="green",shape="box"];2338[label="vyw104",fontsize=16,color="green",shape="box"];2339[label="vyw101",fontsize=16,color="green",shape="box"];2340[label="vyw104",fontsize=16,color="green",shape="box"];2341[label="vyw101",fontsize=16,color="green",shape="box"];2342[label="vyw104",fontsize=16,color="green",shape="box"];2343[label="vyw101",fontsize=16,color="green",shape="box"];2344[label="vyw104",fontsize=16,color="green",shape="box"];2345[label="vyw101",fontsize=16,color="green",shape="box"];2346[label="vyw104",fontsize=16,color="green",shape="box"];2347[label="vyw101",fontsize=16,color="green",shape="box"];2348[label="vyw104",fontsize=16,color="green",shape="box"];2349[label="vyw101",fontsize=16,color="green",shape="box"];2350[label="vyw104",fontsize=16,color="green",shape="box"];2351[label="vyw101",fontsize=16,color="green",shape="box"];2352[label="vyw104",fontsize=16,color="green",shape="box"];2353[label="vyw101",fontsize=16,color="green",shape="box"];2354[label="vyw104",fontsize=16,color="green",shape="box"];2355[label="vyw101",fontsize=16,color="green",shape="box"];2356[label="vyw104",fontsize=16,color="green",shape="box"];2357[label="vyw101",fontsize=16,color="green",shape="box"];2358[label="vyw104",fontsize=16,color="green",shape="box"];2359[label="vyw101",fontsize=16,color="green",shape="box"];2360[label="vyw104",fontsize=16,color="green",shape="box"];2361[label="vyw101",fontsize=16,color="green",shape="box"];2362[label="vyw104",fontsize=16,color="green",shape="box"];2363[label="vyw101",fontsize=16,color="green",shape="box"];2364[label="vyw104",fontsize=16,color="green",shape="box"];2365[label="compare0 (vyw165,vyw166,vyw167) (vyw168,vyw169,vyw170) True",fontsize=16,color="black",shape="box"];2365 -> 2483[label="",style="solid", color="black", weight=3]; 2366[label="compare0 (vyw180,vyw181) (vyw182,vyw183) True",fontsize=16,color="black",shape="box"];2366 -> 2484[label="",style="solid", color="black", weight=3]; 2367 -> 1605[label="",style="dashed", color="red", weight=0]; 2367[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2367 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2368[label="False",fontsize=16,color="green",shape="box"];2369[label="False",fontsize=16,color="green",shape="box"];2370[label="True",fontsize=16,color="green",shape="box"];2371[label="vyw402",fontsize=16,color="green",shape="box"];2372[label="vyw3002",fontsize=16,color="green",shape="box"];2373[label="vyw402",fontsize=16,color="green",shape="box"];2374[label="vyw3002",fontsize=16,color="green",shape="box"];2375[label="vyw402",fontsize=16,color="green",shape="box"];2376[label="vyw3002",fontsize=16,color="green",shape="box"];2377[label="vyw402",fontsize=16,color="green",shape="box"];2378[label="vyw3002",fontsize=16,color="green",shape="box"];2379[label="vyw402",fontsize=16,color="green",shape="box"];2380[label="vyw3002",fontsize=16,color="green",shape="box"];2381[label="vyw402",fontsize=16,color="green",shape="box"];2382[label="vyw3002",fontsize=16,color="green",shape="box"];2383[label="vyw402",fontsize=16,color="green",shape="box"];2384[label="vyw3002",fontsize=16,color="green",shape="box"];2385[label="vyw402",fontsize=16,color="green",shape="box"];2386[label="vyw3002",fontsize=16,color="green",shape="box"];2387[label="vyw402",fontsize=16,color="green",shape="box"];2388[label="vyw3002",fontsize=16,color="green",shape="box"];2389[label="vyw402",fontsize=16,color="green",shape="box"];2390[label="vyw3002",fontsize=16,color="green",shape="box"];2391[label="vyw402",fontsize=16,color="green",shape="box"];2392[label="vyw3002",fontsize=16,color="green",shape="box"];2393[label="vyw402",fontsize=16,color="green",shape="box"];2394[label="vyw3002",fontsize=16,color="green",shape="box"];2395[label="vyw402",fontsize=16,color="green",shape="box"];2396[label="vyw3002",fontsize=16,color="green",shape="box"];2397[label="vyw402",fontsize=16,color="green",shape="box"];2398[label="vyw3002",fontsize=16,color="green",shape="box"];2399[label="vyw401",fontsize=16,color="green",shape="box"];2400[label="vyw3001",fontsize=16,color="green",shape="box"];2401[label="vyw401",fontsize=16,color="green",shape="box"];2402[label="vyw3001",fontsize=16,color="green",shape="box"];2403[label="vyw401",fontsize=16,color="green",shape="box"];2404[label="vyw3001",fontsize=16,color="green",shape="box"];2405[label="vyw401",fontsize=16,color="green",shape="box"];2406[label="vyw3001",fontsize=16,color="green",shape="box"];2407[label="vyw401",fontsize=16,color="green",shape="box"];2408[label="vyw3001",fontsize=16,color="green",shape="box"];2409[label="vyw401",fontsize=16,color="green",shape="box"];2410[label="vyw3001",fontsize=16,color="green",shape="box"];2411[label="vyw401",fontsize=16,color="green",shape="box"];2412[label="vyw3001",fontsize=16,color="green",shape="box"];2413[label="vyw401",fontsize=16,color="green",shape="box"];2414[label="vyw3001",fontsize=16,color="green",shape="box"];2415[label="vyw401",fontsize=16,color="green",shape="box"];2416[label="vyw3001",fontsize=16,color="green",shape="box"];2417[label="vyw401",fontsize=16,color="green",shape="box"];2418[label="vyw3001",fontsize=16,color="green",shape="box"];2419[label="vyw401",fontsize=16,color="green",shape="box"];2420[label="vyw3001",fontsize=16,color="green",shape="box"];2421[label="vyw401",fontsize=16,color="green",shape="box"];2422[label="vyw3001",fontsize=16,color="green",shape="box"];2423[label="vyw401",fontsize=16,color="green",shape="box"];2424[label="vyw3001",fontsize=16,color="green",shape="box"];2425[label="vyw401",fontsize=16,color="green",shape="box"];2426[label="vyw3001",fontsize=16,color="green",shape="box"];2427[label="vyw4000",fontsize=16,color="green",shape="box"];2428[label="vyw30000",fontsize=16,color="green",shape="box"];2429[label="vyw4000",fontsize=16,color="green",shape="box"];2430[label="vyw30000",fontsize=16,color="green",shape="box"];2432 -> 534[label="",style="dashed", color="red", weight=0]; 2432[label="vyw192 == GT",fontsize=16,color="magenta"];2432 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2431[label="not vyw194",fontsize=16,color="burlywood",shape="triangle"];3690[label="vyw194/False",fontsize=10,color="white",style="solid",shape="box"];2431 -> 3690[label="",style="solid", color="burlywood", weight=9]; 3690 -> 2489[label="",style="solid", color="burlywood", weight=3]; 3691[label="vyw194/True",fontsize=10,color="white",style="solid",shape="box"];2431 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 2490[label="",style="solid", color="burlywood", weight=3]; 2433[label="vyw700 < vyw710",fontsize=16,color="blue",shape="box"];3692[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 2491[label="",style="solid", color="blue", weight=3]; 3693[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 2492[label="",style="solid", color="blue", weight=3]; 3694[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 2493[label="",style="solid", color="blue", weight=3]; 3695[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 2494[label="",style="solid", color="blue", weight=3]; 3696[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 2495[label="",style="solid", color="blue", weight=3]; 3697[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 2496[label="",style="solid", color="blue", weight=3]; 3698[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 2497[label="",style="solid", color="blue", weight=3]; 3699[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 2498[label="",style="solid", color="blue", weight=3]; 3700[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 2499[label="",style="solid", color="blue", weight=3]; 3701[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 2500[label="",style="solid", color="blue", weight=3]; 3702[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 2501[label="",style="solid", color="blue", weight=3]; 3703[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 2502[label="",style="solid", color="blue", weight=3]; 3704[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 2503[label="",style="solid", color="blue", weight=3]; 3705[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2433 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 2504[label="",style="solid", color="blue", weight=3]; 2434 -> 1088[label="",style="dashed", color="red", weight=0]; 2434[label="vyw700 == vyw710 && (vyw701 < vyw711 || vyw701 == vyw711 && vyw702 <= vyw712)",fontsize=16,color="magenta"];2434 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2435[label="vyw700 < vyw710",fontsize=16,color="blue",shape="box"];3706[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 2507[label="",style="solid", color="blue", weight=3]; 3707[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 2508[label="",style="solid", color="blue", weight=3]; 3708[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3708[label="",style="solid", color="blue", weight=9]; 3708 -> 2509[label="",style="solid", color="blue", weight=3]; 3709[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3709[label="",style="solid", color="blue", weight=9]; 3709 -> 2510[label="",style="solid", color="blue", weight=3]; 3710[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 2511[label="",style="solid", color="blue", weight=3]; 3711[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 2512[label="",style="solid", color="blue", weight=3]; 3712[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2513[label="",style="solid", color="blue", weight=3]; 3713[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2514[label="",style="solid", color="blue", weight=3]; 3714[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 2515[label="",style="solid", color="blue", weight=3]; 3715[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 2516[label="",style="solid", color="blue", weight=3]; 3716[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2517[label="",style="solid", color="blue", weight=3]; 3717[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2518[label="",style="solid", color="blue", weight=3]; 3718[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2519[label="",style="solid", color="blue", weight=3]; 3719[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2435 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2520[label="",style="solid", color="blue", weight=3]; 2436 -> 1088[label="",style="dashed", color="red", weight=0]; 2436[label="vyw700 == vyw710 && vyw701 <= vyw711",fontsize=16,color="magenta"];2436 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1416[label="",style="dashed", color="red", weight=0]; 2437[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2437 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1417[label="",style="dashed", color="red", weight=0]; 2438[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2438 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1418[label="",style="dashed", color="red", weight=0]; 2439[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2439 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1419[label="",style="dashed", color="red", weight=0]; 2440[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2440 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1420[label="",style="dashed", color="red", weight=0]; 2441[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2441 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1421[label="",style="dashed", color="red", weight=0]; 2442[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2442 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1422[label="",style="dashed", color="red", weight=0]; 2443[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2443 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1423[label="",style="dashed", color="red", weight=0]; 2444[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2444 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2445 -> 1424[label="",style="dashed", color="red", weight=0]; 2445[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2445 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2446 -> 1425[label="",style="dashed", color="red", weight=0]; 2446[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2446 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2447 -> 1426[label="",style="dashed", color="red", weight=0]; 2447[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2447 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2448 -> 1427[label="",style="dashed", color="red", weight=0]; 2448[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2448 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2449 -> 1428[label="",style="dashed", color="red", weight=0]; 2449[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2449 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2450 -> 1429[label="",style="dashed", color="red", weight=0]; 2450[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2450 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2451 -> 1416[label="",style="dashed", color="red", weight=0]; 2451[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2451 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2452 -> 1417[label="",style="dashed", color="red", weight=0]; 2452[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2452 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2453 -> 1418[label="",style="dashed", color="red", weight=0]; 2453[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2453 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2454 -> 1419[label="",style="dashed", color="red", weight=0]; 2454[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2454 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2455 -> 1420[label="",style="dashed", color="red", weight=0]; 2455[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2455 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2456 -> 1421[label="",style="dashed", color="red", weight=0]; 2456[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2456 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2456 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2457 -> 1422[label="",style="dashed", color="red", weight=0]; 2457[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2457 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2457 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2458 -> 1423[label="",style="dashed", color="red", weight=0]; 2458[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2458 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2458 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2459 -> 1424[label="",style="dashed", color="red", weight=0]; 2459[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2459 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2459 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2460 -> 1425[label="",style="dashed", color="red", weight=0]; 2460[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2460 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2460 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2461 -> 1426[label="",style="dashed", color="red", weight=0]; 2461[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2461 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2461 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2462 -> 1427[label="",style="dashed", color="red", weight=0]; 2462[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2462 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2462 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2463 -> 1428[label="",style="dashed", color="red", weight=0]; 2463[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2463 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1429[label="",style="dashed", color="red", weight=0]; 2464[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2464 -> 2577[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2578[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1416[label="",style="dashed", color="red", weight=0]; 2465[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2465 -> 2579[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2580[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1417[label="",style="dashed", color="red", weight=0]; 2466[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2466 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1418[label="",style="dashed", color="red", weight=0]; 2467[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2467 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1419[label="",style="dashed", color="red", weight=0]; 2468[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2468 -> 2585[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1420[label="",style="dashed", color="red", weight=0]; 2469[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2469 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1421[label="",style="dashed", color="red", weight=0]; 2470[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2470 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2471 -> 1422[label="",style="dashed", color="red", weight=0]; 2471[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2471 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2472 -> 1423[label="",style="dashed", color="red", weight=0]; 2472[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2472 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2473 -> 1424[label="",style="dashed", color="red", weight=0]; 2473[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2473 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2474 -> 1425[label="",style="dashed", color="red", weight=0]; 2474[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2474 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2475 -> 1426[label="",style="dashed", color="red", weight=0]; 2475[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2475 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2476 -> 1427[label="",style="dashed", color="red", weight=0]; 2476[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2476 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1428[label="",style="dashed", color="red", weight=0]; 2477[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2477 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2478 -> 1429[label="",style="dashed", color="red", weight=0]; 2478[label="vyw700 <= vyw710",fontsize=16,color="magenta"];2478 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2479[label="Succ vyw4100",fontsize=16,color="green",shape="box"];2480[label="vyw30000",fontsize=16,color="green",shape="box"];2481[label="primPlusNat (Succ vyw1930) (Succ vyw4100)",fontsize=16,color="black",shape="box"];2481 -> 2607[label="",style="solid", color="black", weight=3]; 2482[label="primPlusNat Zero (Succ vyw4100)",fontsize=16,color="black",shape="box"];2482 -> 2608[label="",style="solid", color="black", weight=3]; 2483[label="GT",fontsize=16,color="green",shape="box"];2484[label="GT",fontsize=16,color="green",shape="box"];2485[label="vyw4000",fontsize=16,color="green",shape="box"];2486[label="vyw30000",fontsize=16,color="green",shape="box"];2487[label="vyw192",fontsize=16,color="green",shape="box"];2488[label="GT",fontsize=16,color="green",shape="box"];2489[label="not False",fontsize=16,color="black",shape="box"];2489 -> 2609[label="",style="solid", color="black", weight=3]; 2490[label="not True",fontsize=16,color="black",shape="box"];2490 -> 2610[label="",style="solid", color="black", weight=3]; 2491 -> 19[label="",style="dashed", color="red", weight=0]; 2491[label="vyw700 < vyw710",fontsize=16,color="magenta"];2491 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2491 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2492 -> 20[label="",style="dashed", color="red", weight=0]; 2492[label="vyw700 < vyw710",fontsize=16,color="magenta"];2492 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2492 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2493 -> 21[label="",style="dashed", color="red", weight=0]; 2493[label="vyw700 < vyw710",fontsize=16,color="magenta"];2493 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2493 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2494 -> 22[label="",style="dashed", color="red", weight=0]; 2494[label="vyw700 < vyw710",fontsize=16,color="magenta"];2494 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2494 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2495 -> 23[label="",style="dashed", color="red", weight=0]; 2495[label="vyw700 < vyw710",fontsize=16,color="magenta"];2495 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2495 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2496 -> 24[label="",style="dashed", color="red", weight=0]; 2496[label="vyw700 < vyw710",fontsize=16,color="magenta"];2496 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2496 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2497 -> 25[label="",style="dashed", color="red", weight=0]; 2497[label="vyw700 < vyw710",fontsize=16,color="magenta"];2497 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2497 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2498 -> 26[label="",style="dashed", color="red", weight=0]; 2498[label="vyw700 < vyw710",fontsize=16,color="magenta"];2498 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2498 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2499 -> 27[label="",style="dashed", color="red", weight=0]; 2499[label="vyw700 < vyw710",fontsize=16,color="magenta"];2499 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2499 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2500 -> 28[label="",style="dashed", color="red", weight=0]; 2500[label="vyw700 < vyw710",fontsize=16,color="magenta"];2500 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2500 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2501 -> 29[label="",style="dashed", color="red", weight=0]; 2501[label="vyw700 < vyw710",fontsize=16,color="magenta"];2501 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2501 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2502 -> 30[label="",style="dashed", color="red", weight=0]; 2502[label="vyw700 < vyw710",fontsize=16,color="magenta"];2502 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2502 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2503 -> 31[label="",style="dashed", color="red", weight=0]; 2503[label="vyw700 < vyw710",fontsize=16,color="magenta"];2503 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2503 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2504 -> 32[label="",style="dashed", color="red", weight=0]; 2504[label="vyw700 < vyw710",fontsize=16,color="magenta"];2504 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2504 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2505 -> 1713[label="",style="dashed", color="red", weight=0]; 2505[label="vyw701 < vyw711 || vyw701 == vyw711 && vyw702 <= vyw712",fontsize=16,color="magenta"];2505 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2505 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2506[label="vyw700 == vyw710",fontsize=16,color="blue",shape="box"];3720[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2641[label="",style="solid", color="blue", weight=3]; 3721[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2642[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2643[label="",style="solid", color="blue", weight=3]; 3723[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2644[label="",style="solid", color="blue", weight=3]; 3724[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 2645[label="",style="solid", color="blue", weight=3]; 3725[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 2646[label="",style="solid", color="blue", weight=3]; 3726[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3726[label="",style="solid", color="blue", weight=9]; 3726 -> 2647[label="",style="solid", color="blue", weight=3]; 3727[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3727[label="",style="solid", color="blue", weight=9]; 3727 -> 2648[label="",style="solid", color="blue", weight=3]; 3728[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2649[label="",style="solid", color="blue", weight=3]; 3729[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2650[label="",style="solid", color="blue", weight=3]; 3730[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2651[label="",style="solid", color="blue", weight=3]; 3731[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2652[label="",style="solid", color="blue", weight=3]; 3732[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2653[label="",style="solid", color="blue", weight=3]; 3733[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2506 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2654[label="",style="solid", color="blue", weight=3]; 2507 -> 19[label="",style="dashed", color="red", weight=0]; 2507[label="vyw700 < vyw710",fontsize=16,color="magenta"];2507 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2507 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2508 -> 20[label="",style="dashed", color="red", weight=0]; 2508[label="vyw700 < vyw710",fontsize=16,color="magenta"];2508 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2508 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2509 -> 21[label="",style="dashed", color="red", weight=0]; 2509[label="vyw700 < vyw710",fontsize=16,color="magenta"];2509 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2509 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2510 -> 22[label="",style="dashed", color="red", weight=0]; 2510[label="vyw700 < vyw710",fontsize=16,color="magenta"];2510 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2510 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2511 -> 23[label="",style="dashed", color="red", weight=0]; 2511[label="vyw700 < vyw710",fontsize=16,color="magenta"];2511 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2511 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2512 -> 24[label="",style="dashed", color="red", weight=0]; 2512[label="vyw700 < vyw710",fontsize=16,color="magenta"];2512 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2512 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2513 -> 25[label="",style="dashed", color="red", weight=0]; 2513[label="vyw700 < vyw710",fontsize=16,color="magenta"];2513 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2513 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2514 -> 26[label="",style="dashed", color="red", weight=0]; 2514[label="vyw700 < vyw710",fontsize=16,color="magenta"];2514 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2514 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2515 -> 27[label="",style="dashed", color="red", weight=0]; 2515[label="vyw700 < vyw710",fontsize=16,color="magenta"];2515 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2515 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2516 -> 28[label="",style="dashed", color="red", weight=0]; 2516[label="vyw700 < vyw710",fontsize=16,color="magenta"];2516 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2516 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2517 -> 29[label="",style="dashed", color="red", weight=0]; 2517[label="vyw700 < vyw710",fontsize=16,color="magenta"];2517 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2517 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2518 -> 30[label="",style="dashed", color="red", weight=0]; 2518[label="vyw700 < vyw710",fontsize=16,color="magenta"];2518 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2518 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2519 -> 31[label="",style="dashed", color="red", weight=0]; 2519[label="vyw700 < vyw710",fontsize=16,color="magenta"];2519 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2519 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2520 -> 32[label="",style="dashed", color="red", weight=0]; 2520[label="vyw700 < vyw710",fontsize=16,color="magenta"];2520 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2520 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2521[label="vyw701 <= vyw711",fontsize=16,color="blue",shape="box"];3734[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2683[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2684[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2685[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2686[label="",style="solid", color="blue", weight=3]; 3738[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2687[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2688[label="",style="solid", color="blue", weight=3]; 3740[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2689[label="",style="solid", color="blue", weight=3]; 3741[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2690[label="",style="solid", color="blue", weight=3]; 3742[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2691[label="",style="solid", color="blue", weight=3]; 3743[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2692[label="",style="solid", color="blue", weight=3]; 3744[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2693[label="",style="solid", color="blue", weight=3]; 3745[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2694[label="",style="solid", color="blue", weight=3]; 3746[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2695[label="",style="solid", color="blue", weight=3]; 3747[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2696[label="",style="solid", color="blue", weight=3]; 2522[label="vyw700 == vyw710",fontsize=16,color="blue",shape="box"];3748[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2697[label="",style="solid", color="blue", weight=3]; 3749[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2698[label="",style="solid", color="blue", weight=3]; 3750[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2699[label="",style="solid", color="blue", weight=3]; 3751[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2700[label="",style="solid", color="blue", weight=3]; 3752[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2701[label="",style="solid", color="blue", weight=3]; 3753[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2702[label="",style="solid", color="blue", weight=3]; 3754[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2703[label="",style="solid", color="blue", weight=3]; 3755[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2704[label="",style="solid", color="blue", weight=3]; 3756[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3756[label="",style="solid", color="blue", weight=9]; 3756 -> 2705[label="",style="solid", color="blue", weight=3]; 3757[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3757[label="",style="solid", color="blue", weight=9]; 3757 -> 2706[label="",style="solid", color="blue", weight=3]; 3758[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3758[label="",style="solid", color="blue", weight=9]; 3758 -> 2707[label="",style="solid", color="blue", weight=3]; 3759[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3759[label="",style="solid", color="blue", weight=9]; 3759 -> 2708[label="",style="solid", color="blue", weight=3]; 3760[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3760[label="",style="solid", color="blue", weight=9]; 3760 -> 2709[label="",style="solid", color="blue", weight=3]; 3761[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3761[label="",style="solid", color="blue", weight=9]; 3761 -> 2710[label="",style="solid", color="blue", weight=3]; 2523[label="vyw710",fontsize=16,color="green",shape="box"];2524[label="vyw700",fontsize=16,color="green",shape="box"];2525[label="vyw710",fontsize=16,color="green",shape="box"];2526[label="vyw700",fontsize=16,color="green",shape="box"];2527[label="vyw710",fontsize=16,color="green",shape="box"];2528[label="vyw700",fontsize=16,color="green",shape="box"];2529[label="vyw710",fontsize=16,color="green",shape="box"];2530[label="vyw700",fontsize=16,color="green",shape="box"];2531[label="vyw710",fontsize=16,color="green",shape="box"];2532[label="vyw700",fontsize=16,color="green",shape="box"];2533[label="vyw710",fontsize=16,color="green",shape="box"];2534[label="vyw700",fontsize=16,color="green",shape="box"];2535[label="vyw710",fontsize=16,color="green",shape="box"];2536[label="vyw700",fontsize=16,color="green",shape="box"];2537[label="vyw710",fontsize=16,color="green",shape="box"];2538[label="vyw700",fontsize=16,color="green",shape="box"];2539[label="vyw710",fontsize=16,color="green",shape="box"];2540[label="vyw700",fontsize=16,color="green",shape="box"];2541[label="vyw710",fontsize=16,color="green",shape="box"];2542[label="vyw700",fontsize=16,color="green",shape="box"];2543[label="vyw710",fontsize=16,color="green",shape="box"];2544[label="vyw700",fontsize=16,color="green",shape="box"];2545[label="vyw710",fontsize=16,color="green",shape="box"];2546[label="vyw700",fontsize=16,color="green",shape="box"];2547[label="vyw710",fontsize=16,color="green",shape="box"];2548[label="vyw700",fontsize=16,color="green",shape="box"];2549[label="vyw710",fontsize=16,color="green",shape="box"];2550[label="vyw700",fontsize=16,color="green",shape="box"];2551[label="vyw710",fontsize=16,color="green",shape="box"];2552[label="vyw700",fontsize=16,color="green",shape="box"];2553[label="vyw710",fontsize=16,color="green",shape="box"];2554[label="vyw700",fontsize=16,color="green",shape="box"];2555[label="vyw710",fontsize=16,color="green",shape="box"];2556[label="vyw700",fontsize=16,color="green",shape="box"];2557[label="vyw710",fontsize=16,color="green",shape="box"];2558[label="vyw700",fontsize=16,color="green",shape="box"];2559[label="vyw710",fontsize=16,color="green",shape="box"];2560[label="vyw700",fontsize=16,color="green",shape="box"];2561[label="vyw710",fontsize=16,color="green",shape="box"];2562[label="vyw700",fontsize=16,color="green",shape="box"];2563[label="vyw710",fontsize=16,color="green",shape="box"];2564[label="vyw700",fontsize=16,color="green",shape="box"];2565[label="vyw710",fontsize=16,color="green",shape="box"];2566[label="vyw700",fontsize=16,color="green",shape="box"];2567[label="vyw710",fontsize=16,color="green",shape="box"];2568[label="vyw700",fontsize=16,color="green",shape="box"];2569[label="vyw710",fontsize=16,color="green",shape="box"];2570[label="vyw700",fontsize=16,color="green",shape="box"];2571[label="vyw710",fontsize=16,color="green",shape="box"];2572[label="vyw700",fontsize=16,color="green",shape="box"];2573[label="vyw710",fontsize=16,color="green",shape="box"];2574[label="vyw700",fontsize=16,color="green",shape="box"];2575[label="vyw710",fontsize=16,color="green",shape="box"];2576[label="vyw700",fontsize=16,color="green",shape="box"];2577[label="vyw710",fontsize=16,color="green",shape="box"];2578[label="vyw700",fontsize=16,color="green",shape="box"];2579[label="vyw710",fontsize=16,color="green",shape="box"];2580[label="vyw700",fontsize=16,color="green",shape="box"];2581[label="vyw710",fontsize=16,color="green",shape="box"];2582[label="vyw700",fontsize=16,color="green",shape="box"];2583[label="vyw710",fontsize=16,color="green",shape="box"];2584[label="vyw700",fontsize=16,color="green",shape="box"];2585[label="vyw710",fontsize=16,color="green",shape="box"];2586[label="vyw700",fontsize=16,color="green",shape="box"];2587[label="vyw710",fontsize=16,color="green",shape="box"];2588[label="vyw700",fontsize=16,color="green",shape="box"];2589[label="vyw710",fontsize=16,color="green",shape="box"];2590[label="vyw700",fontsize=16,color="green",shape="box"];2591[label="vyw710",fontsize=16,color="green",shape="box"];2592[label="vyw700",fontsize=16,color="green",shape="box"];2593[label="vyw710",fontsize=16,color="green",shape="box"];2594[label="vyw700",fontsize=16,color="green",shape="box"];2595[label="vyw710",fontsize=16,color="green",shape="box"];2596[label="vyw700",fontsize=16,color="green",shape="box"];2597[label="vyw710",fontsize=16,color="green",shape="box"];2598[label="vyw700",fontsize=16,color="green",shape="box"];2599[label="vyw710",fontsize=16,color="green",shape="box"];2600[label="vyw700",fontsize=16,color="green",shape="box"];2601[label="vyw710",fontsize=16,color="green",shape="box"];2602[label="vyw700",fontsize=16,color="green",shape="box"];2603[label="vyw710",fontsize=16,color="green",shape="box"];2604[label="vyw700",fontsize=16,color="green",shape="box"];2605[label="vyw710",fontsize=16,color="green",shape="box"];2606[label="vyw700",fontsize=16,color="green",shape="box"];2607[label="Succ (Succ (primPlusNat vyw1930 vyw4100))",fontsize=16,color="green",shape="box"];2607 -> 2711[label="",style="dashed", color="green", weight=3]; 2608[label="Succ vyw4100",fontsize=16,color="green",shape="box"];2609[label="True",fontsize=16,color="green",shape="box"];2610[label="False",fontsize=16,color="green",shape="box"];2611[label="vyw710",fontsize=16,color="green",shape="box"];2612[label="vyw700",fontsize=16,color="green",shape="box"];2613[label="vyw710",fontsize=16,color="green",shape="box"];2614[label="vyw700",fontsize=16,color="green",shape="box"];2615[label="vyw710",fontsize=16,color="green",shape="box"];2616[label="vyw700",fontsize=16,color="green",shape="box"];2617[label="vyw710",fontsize=16,color="green",shape="box"];2618[label="vyw700",fontsize=16,color="green",shape="box"];2619[label="vyw710",fontsize=16,color="green",shape="box"];2620[label="vyw700",fontsize=16,color="green",shape="box"];2621[label="vyw710",fontsize=16,color="green",shape="box"];2622[label="vyw700",fontsize=16,color="green",shape="box"];2623[label="vyw710",fontsize=16,color="green",shape="box"];2624[label="vyw700",fontsize=16,color="green",shape="box"];2625[label="vyw710",fontsize=16,color="green",shape="box"];2626[label="vyw700",fontsize=16,color="green",shape="box"];2627[label="vyw710",fontsize=16,color="green",shape="box"];2628[label="vyw700",fontsize=16,color="green",shape="box"];2629[label="vyw710",fontsize=16,color="green",shape="box"];2630[label="vyw700",fontsize=16,color="green",shape="box"];2631[label="vyw710",fontsize=16,color="green",shape="box"];2632[label="vyw700",fontsize=16,color="green",shape="box"];2633[label="vyw710",fontsize=16,color="green",shape="box"];2634[label="vyw700",fontsize=16,color="green",shape="box"];2635[label="vyw710",fontsize=16,color="green",shape="box"];2636[label="vyw700",fontsize=16,color="green",shape="box"];2637[label="vyw710",fontsize=16,color="green",shape="box"];2638[label="vyw700",fontsize=16,color="green",shape="box"];2639[label="vyw701 < vyw711",fontsize=16,color="blue",shape="box"];3762[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3762[label="",style="solid", color="blue", weight=9]; 3762 -> 2712[label="",style="solid", color="blue", weight=3]; 3763[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3763[label="",style="solid", color="blue", weight=9]; 3763 -> 2713[label="",style="solid", color="blue", weight=3]; 3764[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3764[label="",style="solid", color="blue", weight=9]; 3764 -> 2714[label="",style="solid", color="blue", weight=3]; 3765[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 2715[label="",style="solid", color="blue", weight=3]; 3766[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 2716[label="",style="solid", color="blue", weight=3]; 3767[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 2717[label="",style="solid", color="blue", weight=3]; 3768[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3768[label="",style="solid", color="blue", weight=9]; 3768 -> 2718[label="",style="solid", color="blue", weight=3]; 3769[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3769[label="",style="solid", color="blue", weight=9]; 3769 -> 2719[label="",style="solid", color="blue", weight=3]; 3770[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 2720[label="",style="solid", color="blue", weight=3]; 3771[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 2721[label="",style="solid", color="blue", weight=3]; 3772[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 2722[label="",style="solid", color="blue", weight=3]; 3773[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 2723[label="",style="solid", color="blue", weight=3]; 3774[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 2724[label="",style="solid", color="blue", weight=3]; 3775[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2639 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 2725[label="",style="solid", color="blue", weight=3]; 2640 -> 1088[label="",style="dashed", color="red", weight=0]; 2640[label="vyw701 == vyw711 && vyw702 <= vyw712",fontsize=16,color="magenta"];2640 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2640 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2641 -> 539[label="",style="dashed", color="red", weight=0]; 2641[label="vyw700 == vyw710",fontsize=16,color="magenta"];2641 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2641 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2642 -> 532[label="",style="dashed", color="red", weight=0]; 2642[label="vyw700 == vyw710",fontsize=16,color="magenta"];2642 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2642 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2643 -> 533[label="",style="dashed", color="red", weight=0]; 2643[label="vyw700 == vyw710",fontsize=16,color="magenta"];2643 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2643 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2644 -> 531[label="",style="dashed", color="red", weight=0]; 2644[label="vyw700 == vyw710",fontsize=16,color="magenta"];2644 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2644 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2645 -> 542[label="",style="dashed", color="red", weight=0]; 2645[label="vyw700 == vyw710",fontsize=16,color="magenta"];2645 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2645 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2646 -> 536[label="",style="dashed", color="red", weight=0]; 2646[label="vyw700 == vyw710",fontsize=16,color="magenta"];2646 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2646 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2647 -> 543[label="",style="dashed", color="red", weight=0]; 2647[label="vyw700 == vyw710",fontsize=16,color="magenta"];2647 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2647 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2648 -> 544[label="",style="dashed", color="red", weight=0]; 2648[label="vyw700 == vyw710",fontsize=16,color="magenta"];2648 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2648 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2649 -> 535[label="",style="dashed", color="red", weight=0]; 2649[label="vyw700 == vyw710",fontsize=16,color="magenta"];2649 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2649 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2650 -> 534[label="",style="dashed", color="red", weight=0]; 2650[label="vyw700 == vyw710",fontsize=16,color="magenta"];2650 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2650 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2651 -> 537[label="",style="dashed", color="red", weight=0]; 2651[label="vyw700 == vyw710",fontsize=16,color="magenta"];2651 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2651 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2652 -> 540[label="",style="dashed", color="red", weight=0]; 2652[label="vyw700 == vyw710",fontsize=16,color="magenta"];2652 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2652 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2653 -> 538[label="",style="dashed", color="red", weight=0]; 2653[label="vyw700 == vyw710",fontsize=16,color="magenta"];2653 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2653 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2654 -> 541[label="",style="dashed", color="red", weight=0]; 2654[label="vyw700 == vyw710",fontsize=16,color="magenta"];2654 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2654 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2655[label="vyw710",fontsize=16,color="green",shape="box"];2656[label="vyw700",fontsize=16,color="green",shape="box"];2657[label="vyw710",fontsize=16,color="green",shape="box"];2658[label="vyw700",fontsize=16,color="green",shape="box"];2659[label="vyw710",fontsize=16,color="green",shape="box"];2660[label="vyw700",fontsize=16,color="green",shape="box"];2661[label="vyw710",fontsize=16,color="green",shape="box"];2662[label="vyw700",fontsize=16,color="green",shape="box"];2663[label="vyw710",fontsize=16,color="green",shape="box"];2664[label="vyw700",fontsize=16,color="green",shape="box"];2665[label="vyw710",fontsize=16,color="green",shape="box"];2666[label="vyw700",fontsize=16,color="green",shape="box"];2667[label="vyw710",fontsize=16,color="green",shape="box"];2668[label="vyw700",fontsize=16,color="green",shape="box"];2669[label="vyw710",fontsize=16,color="green",shape="box"];2670[label="vyw700",fontsize=16,color="green",shape="box"];2671[label="vyw710",fontsize=16,color="green",shape="box"];2672[label="vyw700",fontsize=16,color="green",shape="box"];2673[label="vyw710",fontsize=16,color="green",shape="box"];2674[label="vyw700",fontsize=16,color="green",shape="box"];2675[label="vyw710",fontsize=16,color="green",shape="box"];2676[label="vyw700",fontsize=16,color="green",shape="box"];2677[label="vyw710",fontsize=16,color="green",shape="box"];2678[label="vyw700",fontsize=16,color="green",shape="box"];2679[label="vyw710",fontsize=16,color="green",shape="box"];2680[label="vyw700",fontsize=16,color="green",shape="box"];2681[label="vyw710",fontsize=16,color="green",shape="box"];2682[label="vyw700",fontsize=16,color="green",shape="box"];2683 -> 1416[label="",style="dashed", color="red", weight=0]; 2683[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2683 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2683 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2684 -> 1417[label="",style="dashed", color="red", weight=0]; 2684[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2684 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2684 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2685 -> 1418[label="",style="dashed", color="red", weight=0]; 2685[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2685 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2685 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2686 -> 1419[label="",style="dashed", color="red", weight=0]; 2686[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2686 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2686 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2687 -> 1420[label="",style="dashed", color="red", weight=0]; 2687[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2687 -> 2764[label="",style="dashed", color="magenta", weight=3]; 2687 -> 2765[label="",style="dashed", color="magenta", weight=3]; 2688 -> 1421[label="",style="dashed", color="red", weight=0]; 2688[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2688 -> 2766[label="",style="dashed", color="magenta", weight=3]; 2688 -> 2767[label="",style="dashed", color="magenta", weight=3]; 2689 -> 1422[label="",style="dashed", color="red", weight=0]; 2689[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2689 -> 2768[label="",style="dashed", color="magenta", weight=3]; 2689 -> 2769[label="",style="dashed", color="magenta", weight=3]; 2690 -> 1423[label="",style="dashed", color="red", weight=0]; 2690[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2690 -> 2770[label="",style="dashed", color="magenta", weight=3]; 2690 -> 2771[label="",style="dashed", color="magenta", weight=3]; 2691 -> 1424[label="",style="dashed", color="red", weight=0]; 2691[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2691 -> 2772[label="",style="dashed", color="magenta", weight=3]; 2691 -> 2773[label="",style="dashed", color="magenta", weight=3]; 2692 -> 1425[label="",style="dashed", color="red", weight=0]; 2692[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2692 -> 2774[label="",style="dashed", color="magenta", weight=3]; 2692 -> 2775[label="",style="dashed", color="magenta", weight=3]; 2693 -> 1426[label="",style="dashed", color="red", weight=0]; 2693[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2693 -> 2776[label="",style="dashed", color="magenta", weight=3]; 2693 -> 2777[label="",style="dashed", color="magenta", weight=3]; 2694 -> 1427[label="",style="dashed", color="red", weight=0]; 2694[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2694 -> 2778[label="",style="dashed", color="magenta", weight=3]; 2694 -> 2779[label="",style="dashed", color="magenta", weight=3]; 2695 -> 1428[label="",style="dashed", color="red", weight=0]; 2695[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2695 -> 2780[label="",style="dashed", color="magenta", weight=3]; 2695 -> 2781[label="",style="dashed", color="magenta", weight=3]; 2696 -> 1429[label="",style="dashed", color="red", weight=0]; 2696[label="vyw701 <= vyw711",fontsize=16,color="magenta"];2696 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2696 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2697 -> 539[label="",style="dashed", color="red", weight=0]; 2697[label="vyw700 == vyw710",fontsize=16,color="magenta"];2697 -> 2784[label="",style="dashed", color="magenta", weight=3]; 2697 -> 2785[label="",style="dashed", color="magenta", weight=3]; 2698 -> 532[label="",style="dashed", color="red", weight=0]; 2698[label="vyw700 == vyw710",fontsize=16,color="magenta"];2698 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2698 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2699 -> 533[label="",style="dashed", color="red", weight=0]; 2699[label="vyw700 == vyw710",fontsize=16,color="magenta"];2699 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2699 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2700 -> 531[label="",style="dashed", color="red", weight=0]; 2700[label="vyw700 == vyw710",fontsize=16,color="magenta"];2700 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2700 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2701 -> 542[label="",style="dashed", color="red", weight=0]; 2701[label="vyw700 == vyw710",fontsize=16,color="magenta"];2701 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2701 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2702 -> 536[label="",style="dashed", color="red", weight=0]; 2702[label="vyw700 == vyw710",fontsize=16,color="magenta"];2702 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2702 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2703 -> 543[label="",style="dashed", color="red", weight=0]; 2703[label="vyw700 == vyw710",fontsize=16,color="magenta"];2703 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2703 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2704 -> 544[label="",style="dashed", color="red", weight=0]; 2704[label="vyw700 == vyw710",fontsize=16,color="magenta"];2704 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2704 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2705 -> 535[label="",style="dashed", color="red", weight=0]; 2705[label="vyw700 == vyw710",fontsize=16,color="magenta"];2705 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2705 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2706 -> 534[label="",style="dashed", color="red", weight=0]; 2706[label="vyw700 == vyw710",fontsize=16,color="magenta"];2706 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2706 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2707 -> 537[label="",style="dashed", color="red", weight=0]; 2707[label="vyw700 == vyw710",fontsize=16,color="magenta"];2707 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2707 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2708 -> 540[label="",style="dashed", color="red", weight=0]; 2708[label="vyw700 == vyw710",fontsize=16,color="magenta"];2708 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2708 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2709 -> 538[label="",style="dashed", color="red", weight=0]; 2709[label="vyw700 == vyw710",fontsize=16,color="magenta"];2709 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2709 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2710 -> 541[label="",style="dashed", color="red", weight=0]; 2710[label="vyw700 == vyw710",fontsize=16,color="magenta"];2710 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2710 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2711[label="primPlusNat vyw1930 vyw4100",fontsize=16,color="burlywood",shape="triangle"];3776[label="vyw1930/Succ vyw19300",fontsize=10,color="white",style="solid",shape="box"];2711 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 2812[label="",style="solid", color="burlywood", weight=3]; 3777[label="vyw1930/Zero",fontsize=10,color="white",style="solid",shape="box"];2711 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 2813[label="",style="solid", color="burlywood", weight=3]; 2712 -> 19[label="",style="dashed", color="red", weight=0]; 2712[label="vyw701 < vyw711",fontsize=16,color="magenta"];2712 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2712 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2713 -> 20[label="",style="dashed", color="red", weight=0]; 2713[label="vyw701 < vyw711",fontsize=16,color="magenta"];2713 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2713 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2714 -> 21[label="",style="dashed", color="red", weight=0]; 2714[label="vyw701 < vyw711",fontsize=16,color="magenta"];2714 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2714 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2715 -> 22[label="",style="dashed", color="red", weight=0]; 2715[label="vyw701 < vyw711",fontsize=16,color="magenta"];2715 -> 2820[label="",style="dashed", color="magenta", weight=3]; 2715 -> 2821[label="",style="dashed", color="magenta", weight=3]; 2716 -> 23[label="",style="dashed", color="red", weight=0]; 2716[label="vyw701 < vyw711",fontsize=16,color="magenta"];2716 -> 2822[label="",style="dashed", color="magenta", weight=3]; 2716 -> 2823[label="",style="dashed", color="magenta", weight=3]; 2717 -> 24[label="",style="dashed", color="red", weight=0]; 2717[label="vyw701 < vyw711",fontsize=16,color="magenta"];2717 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2717 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2718 -> 25[label="",style="dashed", color="red", weight=0]; 2718[label="vyw701 < vyw711",fontsize=16,color="magenta"];2718 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2719 -> 26[label="",style="dashed", color="red", weight=0]; 2719[label="vyw701 < vyw711",fontsize=16,color="magenta"];2719 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2720 -> 27[label="",style="dashed", color="red", weight=0]; 2720[label="vyw701 < vyw711",fontsize=16,color="magenta"];2720 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2721 -> 28[label="",style="dashed", color="red", weight=0]; 2721[label="vyw701 < vyw711",fontsize=16,color="magenta"];2721 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2722 -> 29[label="",style="dashed", color="red", weight=0]; 2722[label="vyw701 < vyw711",fontsize=16,color="magenta"];2722 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2723 -> 30[label="",style="dashed", color="red", weight=0]; 2723[label="vyw701 < vyw711",fontsize=16,color="magenta"];2723 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2724 -> 31[label="",style="dashed", color="red", weight=0]; 2724[label="vyw701 < vyw711",fontsize=16,color="magenta"];2724 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2725 -> 32[label="",style="dashed", color="red", weight=0]; 2725[label="vyw701 < vyw711",fontsize=16,color="magenta"];2725 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2726[label="vyw702 <= vyw712",fontsize=16,color="blue",shape="box"];3778[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 2842[label="",style="solid", color="blue", weight=3]; 3779[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3779[label="",style="solid", color="blue", weight=9]; 3779 -> 2843[label="",style="solid", color="blue", weight=3]; 3780[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3780[label="",style="solid", color="blue", weight=9]; 3780 -> 2844[label="",style="solid", color="blue", weight=3]; 3781[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3781[label="",style="solid", color="blue", weight=9]; 3781 -> 2845[label="",style="solid", color="blue", weight=3]; 3782[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3782[label="",style="solid", color="blue", weight=9]; 3782 -> 2846[label="",style="solid", color="blue", weight=3]; 3783[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3783[label="",style="solid", color="blue", weight=9]; 3783 -> 2847[label="",style="solid", color="blue", weight=3]; 3784[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3784[label="",style="solid", color="blue", weight=9]; 3784 -> 2848[label="",style="solid", color="blue", weight=3]; 3785[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3785[label="",style="solid", color="blue", weight=9]; 3785 -> 2849[label="",style="solid", color="blue", weight=3]; 3786[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3786[label="",style="solid", color="blue", weight=9]; 3786 -> 2850[label="",style="solid", color="blue", weight=3]; 3787[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3787[label="",style="solid", color="blue", weight=9]; 3787 -> 2851[label="",style="solid", color="blue", weight=3]; 3788[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3788[label="",style="solid", color="blue", weight=9]; 3788 -> 2852[label="",style="solid", color="blue", weight=3]; 3789[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3789[label="",style="solid", color="blue", weight=9]; 3789 -> 2853[label="",style="solid", color="blue", weight=3]; 3790[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 2854[label="",style="solid", color="blue", weight=3]; 3791[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2726 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 2855[label="",style="solid", color="blue", weight=3]; 2727[label="vyw701 == vyw711",fontsize=16,color="blue",shape="box"];3792[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 2856[label="",style="solid", color="blue", weight=3]; 3793[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 2857[label="",style="solid", color="blue", weight=3]; 3794[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 2858[label="",style="solid", color="blue", weight=3]; 3795[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 2859[label="",style="solid", color="blue", weight=3]; 3796[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 2860[label="",style="solid", color="blue", weight=3]; 3797[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 2861[label="",style="solid", color="blue", weight=3]; 3798[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 2862[label="",style="solid", color="blue", weight=3]; 3799[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 2863[label="",style="solid", color="blue", weight=3]; 3800[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 2864[label="",style="solid", color="blue", weight=3]; 3801[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 2865[label="",style="solid", color="blue", weight=3]; 3802[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 2866[label="",style="solid", color="blue", weight=3]; 3803[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 2867[label="",style="solid", color="blue", weight=3]; 3804[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3804[label="",style="solid", color="blue", weight=9]; 3804 -> 2868[label="",style="solid", color="blue", weight=3]; 3805[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2727 -> 3805[label="",style="solid", color="blue", weight=9]; 3805 -> 2869[label="",style="solid", color="blue", weight=3]; 2728[label="vyw700",fontsize=16,color="green",shape="box"];2729[label="vyw710",fontsize=16,color="green",shape="box"];2730[label="vyw700",fontsize=16,color="green",shape="box"];2731[label="vyw710",fontsize=16,color="green",shape="box"];2732[label="vyw700",fontsize=16,color="green",shape="box"];2733[label="vyw710",fontsize=16,color="green",shape="box"];2734[label="vyw700",fontsize=16,color="green",shape="box"];2735[label="vyw710",fontsize=16,color="green",shape="box"];2736[label="vyw700",fontsize=16,color="green",shape="box"];2737[label="vyw710",fontsize=16,color="green",shape="box"];2738[label="vyw700",fontsize=16,color="green",shape="box"];2739[label="vyw710",fontsize=16,color="green",shape="box"];2740[label="vyw700",fontsize=16,color="green",shape="box"];2741[label="vyw710",fontsize=16,color="green",shape="box"];2742[label="vyw700",fontsize=16,color="green",shape="box"];2743[label="vyw710",fontsize=16,color="green",shape="box"];2744[label="vyw700",fontsize=16,color="green",shape="box"];2745[label="vyw710",fontsize=16,color="green",shape="box"];2746[label="vyw700",fontsize=16,color="green",shape="box"];2747[label="vyw710",fontsize=16,color="green",shape="box"];2748[label="vyw700",fontsize=16,color="green",shape="box"];2749[label="vyw710",fontsize=16,color="green",shape="box"];2750[label="vyw700",fontsize=16,color="green",shape="box"];2751[label="vyw710",fontsize=16,color="green",shape="box"];2752[label="vyw700",fontsize=16,color="green",shape="box"];2753[label="vyw710",fontsize=16,color="green",shape="box"];2754[label="vyw700",fontsize=16,color="green",shape="box"];2755[label="vyw710",fontsize=16,color="green",shape="box"];2756[label="vyw711",fontsize=16,color="green",shape="box"];2757[label="vyw701",fontsize=16,color="green",shape="box"];2758[label="vyw711",fontsize=16,color="green",shape="box"];2759[label="vyw701",fontsize=16,color="green",shape="box"];2760[label="vyw711",fontsize=16,color="green",shape="box"];2761[label="vyw701",fontsize=16,color="green",shape="box"];2762[label="vyw711",fontsize=16,color="green",shape="box"];2763[label="vyw701",fontsize=16,color="green",shape="box"];2764[label="vyw711",fontsize=16,color="green",shape="box"];2765[label="vyw701",fontsize=16,color="green",shape="box"];2766[label="vyw711",fontsize=16,color="green",shape="box"];2767[label="vyw701",fontsize=16,color="green",shape="box"];2768[label="vyw711",fontsize=16,color="green",shape="box"];2769[label="vyw701",fontsize=16,color="green",shape="box"];2770[label="vyw711",fontsize=16,color="green",shape="box"];2771[label="vyw701",fontsize=16,color="green",shape="box"];2772[label="vyw711",fontsize=16,color="green",shape="box"];2773[label="vyw701",fontsize=16,color="green",shape="box"];2774[label="vyw711",fontsize=16,color="green",shape="box"];2775[label="vyw701",fontsize=16,color="green",shape="box"];2776[label="vyw711",fontsize=16,color="green",shape="box"];2777[label="vyw701",fontsize=16,color="green",shape="box"];2778[label="vyw711",fontsize=16,color="green",shape="box"];2779[label="vyw701",fontsize=16,color="green",shape="box"];2780[label="vyw711",fontsize=16,color="green",shape="box"];2781[label="vyw701",fontsize=16,color="green",shape="box"];2782[label="vyw711",fontsize=16,color="green",shape="box"];2783[label="vyw701",fontsize=16,color="green",shape="box"];2784[label="vyw700",fontsize=16,color="green",shape="box"];2785[label="vyw710",fontsize=16,color="green",shape="box"];2786[label="vyw700",fontsize=16,color="green",shape="box"];2787[label="vyw710",fontsize=16,color="green",shape="box"];2788[label="vyw700",fontsize=16,color="green",shape="box"];2789[label="vyw710",fontsize=16,color="green",shape="box"];2790[label="vyw700",fontsize=16,color="green",shape="box"];2791[label="vyw710",fontsize=16,color="green",shape="box"];2792[label="vyw700",fontsize=16,color="green",shape="box"];2793[label="vyw710",fontsize=16,color="green",shape="box"];2794[label="vyw700",fontsize=16,color="green",shape="box"];2795[label="vyw710",fontsize=16,color="green",shape="box"];2796[label="vyw700",fontsize=16,color="green",shape="box"];2797[label="vyw710",fontsize=16,color="green",shape="box"];2798[label="vyw700",fontsize=16,color="green",shape="box"];2799[label="vyw710",fontsize=16,color="green",shape="box"];2800[label="vyw700",fontsize=16,color="green",shape="box"];2801[label="vyw710",fontsize=16,color="green",shape="box"];2802[label="vyw700",fontsize=16,color="green",shape="box"];2803[label="vyw710",fontsize=16,color="green",shape="box"];2804[label="vyw700",fontsize=16,color="green",shape="box"];2805[label="vyw710",fontsize=16,color="green",shape="box"];2806[label="vyw700",fontsize=16,color="green",shape="box"];2807[label="vyw710",fontsize=16,color="green",shape="box"];2808[label="vyw700",fontsize=16,color="green",shape="box"];2809[label="vyw710",fontsize=16,color="green",shape="box"];2810[label="vyw700",fontsize=16,color="green",shape="box"];2811[label="vyw710",fontsize=16,color="green",shape="box"];2812[label="primPlusNat (Succ vyw19300) vyw4100",fontsize=16,color="burlywood",shape="box"];3806[label="vyw4100/Succ vyw41000",fontsize=10,color="white",style="solid",shape="box"];2812 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 2870[label="",style="solid", color="burlywood", weight=3]; 3807[label="vyw4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2812 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 2871[label="",style="solid", color="burlywood", weight=3]; 2813[label="primPlusNat Zero vyw4100",fontsize=16,color="burlywood",shape="box"];3808[label="vyw4100/Succ vyw41000",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 2872[label="",style="solid", color="burlywood", weight=3]; 3809[label="vyw4100/Zero",fontsize=10,color="white",style="solid",shape="box"];2813 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 2873[label="",style="solid", color="burlywood", weight=3]; 2814[label="vyw711",fontsize=16,color="green",shape="box"];2815[label="vyw701",fontsize=16,color="green",shape="box"];2816[label="vyw711",fontsize=16,color="green",shape="box"];2817[label="vyw701",fontsize=16,color="green",shape="box"];2818[label="vyw711",fontsize=16,color="green",shape="box"];2819[label="vyw701",fontsize=16,color="green",shape="box"];2820[label="vyw711",fontsize=16,color="green",shape="box"];2821[label="vyw701",fontsize=16,color="green",shape="box"];2822[label="vyw711",fontsize=16,color="green",shape="box"];2823[label="vyw701",fontsize=16,color="green",shape="box"];2824[label="vyw711",fontsize=16,color="green",shape="box"];2825[label="vyw701",fontsize=16,color="green",shape="box"];2826[label="vyw711",fontsize=16,color="green",shape="box"];2827[label="vyw701",fontsize=16,color="green",shape="box"];2828[label="vyw711",fontsize=16,color="green",shape="box"];2829[label="vyw701",fontsize=16,color="green",shape="box"];2830[label="vyw711",fontsize=16,color="green",shape="box"];2831[label="vyw701",fontsize=16,color="green",shape="box"];2832[label="vyw711",fontsize=16,color="green",shape="box"];2833[label="vyw701",fontsize=16,color="green",shape="box"];2834[label="vyw711",fontsize=16,color="green",shape="box"];2835[label="vyw701",fontsize=16,color="green",shape="box"];2836[label="vyw711",fontsize=16,color="green",shape="box"];2837[label="vyw701",fontsize=16,color="green",shape="box"];2838[label="vyw711",fontsize=16,color="green",shape="box"];2839[label="vyw701",fontsize=16,color="green",shape="box"];2840[label="vyw711",fontsize=16,color="green",shape="box"];2841[label="vyw701",fontsize=16,color="green",shape="box"];2842 -> 1416[label="",style="dashed", color="red", weight=0]; 2842[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2842 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2843 -> 1417[label="",style="dashed", color="red", weight=0]; 2843[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2843 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2844 -> 1418[label="",style="dashed", color="red", weight=0]; 2844[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2844 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2845 -> 1419[label="",style="dashed", color="red", weight=0]; 2845[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2845 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2846 -> 1420[label="",style="dashed", color="red", weight=0]; 2846[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2846 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2847 -> 1421[label="",style="dashed", color="red", weight=0]; 2847[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2847 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2847 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2848 -> 1422[label="",style="dashed", color="red", weight=0]; 2848[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2848 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2848 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2849 -> 1423[label="",style="dashed", color="red", weight=0]; 2849[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2849 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2849 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2850 -> 1424[label="",style="dashed", color="red", weight=0]; 2850[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2850 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2850 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2851 -> 1425[label="",style="dashed", color="red", weight=0]; 2851[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2851 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2851 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2852 -> 1426[label="",style="dashed", color="red", weight=0]; 2852[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2852 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2852 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2853 -> 1427[label="",style="dashed", color="red", weight=0]; 2853[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2853 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2853 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2854 -> 1428[label="",style="dashed", color="red", weight=0]; 2854[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2854 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2854 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2855 -> 1429[label="",style="dashed", color="red", weight=0]; 2855[label="vyw702 <= vyw712",fontsize=16,color="magenta"];2855 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2855 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2856 -> 539[label="",style="dashed", color="red", weight=0]; 2856[label="vyw701 == vyw711",fontsize=16,color="magenta"];2856 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2856 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2857 -> 532[label="",style="dashed", color="red", weight=0]; 2857[label="vyw701 == vyw711",fontsize=16,color="magenta"];2857 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2857 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2858 -> 533[label="",style="dashed", color="red", weight=0]; 2858[label="vyw701 == vyw711",fontsize=16,color="magenta"];2858 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2858 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2859 -> 531[label="",style="dashed", color="red", weight=0]; 2859[label="vyw701 == vyw711",fontsize=16,color="magenta"];2859 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2859 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2860 -> 542[label="",style="dashed", color="red", weight=0]; 2860[label="vyw701 == vyw711",fontsize=16,color="magenta"];2860 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2860 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2861 -> 536[label="",style="dashed", color="red", weight=0]; 2861[label="vyw701 == vyw711",fontsize=16,color="magenta"];2861 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2861 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2862 -> 543[label="",style="dashed", color="red", weight=0]; 2862[label="vyw701 == vyw711",fontsize=16,color="magenta"];2862 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2862 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2863 -> 544[label="",style="dashed", color="red", weight=0]; 2863[label="vyw701 == vyw711",fontsize=16,color="magenta"];2863 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2863 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2864 -> 535[label="",style="dashed", color="red", weight=0]; 2864[label="vyw701 == vyw711",fontsize=16,color="magenta"];2864 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2864 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2865 -> 534[label="",style="dashed", color="red", weight=0]; 2865[label="vyw701 == vyw711",fontsize=16,color="magenta"];2865 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2866 -> 537[label="",style="dashed", color="red", weight=0]; 2866[label="vyw701 == vyw711",fontsize=16,color="magenta"];2866 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2867 -> 540[label="",style="dashed", color="red", weight=0]; 2867[label="vyw701 == vyw711",fontsize=16,color="magenta"];2867 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2868 -> 538[label="",style="dashed", color="red", weight=0]; 2868[label="vyw701 == vyw711",fontsize=16,color="magenta"];2868 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2869 -> 541[label="",style="dashed", color="red", weight=0]; 2869[label="vyw701 == vyw711",fontsize=16,color="magenta"];2869 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2870[label="primPlusNat (Succ vyw19300) (Succ vyw41000)",fontsize=16,color="black",shape="box"];2870 -> 2930[label="",style="solid", color="black", weight=3]; 2871[label="primPlusNat (Succ vyw19300) Zero",fontsize=16,color="black",shape="box"];2871 -> 2931[label="",style="solid", color="black", weight=3]; 2872[label="primPlusNat Zero (Succ vyw41000)",fontsize=16,color="black",shape="box"];2872 -> 2932[label="",style="solid", color="black", weight=3]; 2873[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2873 -> 2933[label="",style="solid", color="black", weight=3]; 2874[label="vyw712",fontsize=16,color="green",shape="box"];2875[label="vyw702",fontsize=16,color="green",shape="box"];2876[label="vyw712",fontsize=16,color="green",shape="box"];2877[label="vyw702",fontsize=16,color="green",shape="box"];2878[label="vyw712",fontsize=16,color="green",shape="box"];2879[label="vyw702",fontsize=16,color="green",shape="box"];2880[label="vyw712",fontsize=16,color="green",shape="box"];2881[label="vyw702",fontsize=16,color="green",shape="box"];2882[label="vyw712",fontsize=16,color="green",shape="box"];2883[label="vyw702",fontsize=16,color="green",shape="box"];2884[label="vyw712",fontsize=16,color="green",shape="box"];2885[label="vyw702",fontsize=16,color="green",shape="box"];2886[label="vyw712",fontsize=16,color="green",shape="box"];2887[label="vyw702",fontsize=16,color="green",shape="box"];2888[label="vyw712",fontsize=16,color="green",shape="box"];2889[label="vyw702",fontsize=16,color="green",shape="box"];2890[label="vyw712",fontsize=16,color="green",shape="box"];2891[label="vyw702",fontsize=16,color="green",shape="box"];2892[label="vyw712",fontsize=16,color="green",shape="box"];2893[label="vyw702",fontsize=16,color="green",shape="box"];2894[label="vyw712",fontsize=16,color="green",shape="box"];2895[label="vyw702",fontsize=16,color="green",shape="box"];2896[label="vyw712",fontsize=16,color="green",shape="box"];2897[label="vyw702",fontsize=16,color="green",shape="box"];2898[label="vyw712",fontsize=16,color="green",shape="box"];2899[label="vyw702",fontsize=16,color="green",shape="box"];2900[label="vyw712",fontsize=16,color="green",shape="box"];2901[label="vyw702",fontsize=16,color="green",shape="box"];2902[label="vyw701",fontsize=16,color="green",shape="box"];2903[label="vyw711",fontsize=16,color="green",shape="box"];2904[label="vyw701",fontsize=16,color="green",shape="box"];2905[label="vyw711",fontsize=16,color="green",shape="box"];2906[label="vyw701",fontsize=16,color="green",shape="box"];2907[label="vyw711",fontsize=16,color="green",shape="box"];2908[label="vyw701",fontsize=16,color="green",shape="box"];2909[label="vyw711",fontsize=16,color="green",shape="box"];2910[label="vyw701",fontsize=16,color="green",shape="box"];2911[label="vyw711",fontsize=16,color="green",shape="box"];2912[label="vyw701",fontsize=16,color="green",shape="box"];2913[label="vyw711",fontsize=16,color="green",shape="box"];2914[label="vyw701",fontsize=16,color="green",shape="box"];2915[label="vyw711",fontsize=16,color="green",shape="box"];2916[label="vyw701",fontsize=16,color="green",shape="box"];2917[label="vyw711",fontsize=16,color="green",shape="box"];2918[label="vyw701",fontsize=16,color="green",shape="box"];2919[label="vyw711",fontsize=16,color="green",shape="box"];2920[label="vyw701",fontsize=16,color="green",shape="box"];2921[label="vyw711",fontsize=16,color="green",shape="box"];2922[label="vyw701",fontsize=16,color="green",shape="box"];2923[label="vyw711",fontsize=16,color="green",shape="box"];2924[label="vyw701",fontsize=16,color="green",shape="box"];2925[label="vyw711",fontsize=16,color="green",shape="box"];2926[label="vyw701",fontsize=16,color="green",shape="box"];2927[label="vyw711",fontsize=16,color="green",shape="box"];2928[label="vyw701",fontsize=16,color="green",shape="box"];2929[label="vyw711",fontsize=16,color="green",shape="box"];2930[label="Succ (Succ (primPlusNat vyw19300 vyw41000))",fontsize=16,color="green",shape="box"];2930 -> 2934[label="",style="dashed", color="green", weight=3]; 2931[label="Succ vyw19300",fontsize=16,color="green",shape="box"];2932[label="Succ vyw41000",fontsize=16,color="green",shape="box"];2933[label="Zero",fontsize=16,color="green",shape="box"];2934 -> 2711[label="",style="dashed", color="red", weight=0]; 2934[label="primPlusNat vyw19300 vyw41000",fontsize=16,color="magenta"];2934 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2934 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2935[label="vyw41000",fontsize=16,color="green",shape="box"];2936[label="vyw19300",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat(vyw400, vyw3000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) 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(vyw400), Succ(vyw3000)) -> new_primCmpNat(vyw400, vyw3000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, ef), eg), cf, bg) -> new_lt1(vyw100, vyw103, ef, eg) new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(ty_Either, cbh), cca)), bah) -> new_ltEs1(vyw700, vyw710, cbh, cca) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(ty_Maybe, bge)) -> new_ltEs3(vyw701, vyw711, bge) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(app(ty_@3, bfe), bff), bfg)), bah) -> new_ltEs(vyw701, vyw711, bfe, bff, bfg) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(ty_@2, bba), bbb), baf, bag) -> new_lt0(vyw700, vyw710, bba, bbb) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs(vyw701, vyw711, bfe, bff, bfg) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(ty_Either, bce), bcf), bag) -> new_lt1(vyw701, vyw711, bce, bcf) new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(ty_Either, he), hf)) -> new_ltEs1(vyw114, vyw116, he, hf) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(ty_Maybe, dh)) -> new_ltEs3(vyw102, vyw105, dh) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(ty_[], bgd)), bah) -> new_ltEs2(vyw701, vyw711, bgd) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(ty_@2, bfh), bga)) -> new_ltEs0(vyw701, vyw711, bfh, bga) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(ty_@2, bdd), bde)) -> new_ltEs0(vyw702, vyw712, bdd, bde) new_compare0(@2(vyw40, vyw41), @2(vyw300, vyw301), fb, fc) -> new_compare20(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, fb), new_esEs7(vyw41, vyw301, fc)), fb, fc) new_compare1(Left(vyw40), Left(vyw300), baa, bab) -> new_compare21(vyw40, vyw300, new_esEs9(vyw40, vyw300, baa), baa, bab) new_ltEs3(Just(vyw700), Just(vyw710), app(ty_[], ccb)) -> new_ltEs2(vyw700, vyw710, ccb) new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(ty_[], hg)) -> new_ltEs2(vyw114, vyw116, hg) new_compare1(Right(vyw40), Right(vyw300), baa, bab) -> new_compare22(vyw40, vyw300, new_esEs10(vyw40, vyw300, bab), baa, bab) new_ltEs2(vyw70, vyw71, cbb) -> new_compare3(vyw70, vyw71, cbb) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], eh), cf, bg) -> new_lt2(vyw100, vyw103, eh) new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_@2, cch), cda)) -> new_compare0(vyw40, vyw300, cch, cda) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(ty_Maybe, bfc), bee) -> new_lt3(vyw700, vyw710, bfc) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(ty_[], bcg), bag) -> new_lt2(vyw701, vyw711, bcg) new_compare3(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ccd), ccd) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(ty_Maybe, ce), bg) -> new_lt3(vyw101, vyw104, ce) new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(ty_Either, caf), cag)) -> new_ltEs1(vyw700, vyw710, caf, cag) new_ltEs3(Just(vyw700), Just(vyw710), app(app(ty_@2, cbf), cbg)) -> new_ltEs0(vyw700, vyw710, cbf, cbg) new_compare23(vyw89, vyw90, False, app(ty_[], cef)) -> new_ltEs2(vyw89, vyw90, cef) new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(ty_@2, cad), cae)), bah) -> new_ltEs0(vyw700, vyw710, cad, cae) new_compare3(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_compare3(vyw41, vyw301, ccd) new_compare23(vyw89, vyw90, False, app(app(ty_@2, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(ty_Either, bce), bcf)), bag), bah) -> new_lt1(vyw701, vyw711, bce, bcf) new_compare22(vyw77, vyw78, False, ceh, app(app(ty_Either, cff), cfg)) -> new_ltEs1(vyw77, vyw78, cff, cfg) new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(app(ty_@3, cbc), cbd), cbe)), bah) -> new_ltEs(vyw700, vyw710, cbc, cbd, cbe) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(ty_Either, cb), cc), bg) -> new_lt1(vyw101, vyw104, cb, cc) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(ty_[], bfb)), bee), bah) -> new_lt2(vyw700, vyw710, bfb) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), baf), bag), bah) -> new_lt(vyw700, vyw710, bac, bad, bae) new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(ty_Maybe, hh)) -> new_ltEs3(vyw114, vyw116, hh) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(ty_Either, bgb), bgc)), bah) -> new_ltEs1(vyw701, vyw711, bgb, bgc) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(ty_Either, bgb), bgc)) -> new_ltEs1(vyw701, vyw711, bgb, bgc) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(ty_Maybe, bge)), bah) -> new_ltEs3(vyw701, vyw711, bge) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(ty_@2, bef), beg), bee) -> new_lt0(vyw700, vyw710, bef, beg) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(ty_[], bbe)), baf), bag), bah) -> new_lt2(vyw700, vyw710, bbe) new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(ty_Maybe, cba)) -> new_ltEs3(vyw700, vyw710, cba) new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_Either, cdb), cdc)) -> new_compare1(vyw40, vyw300, cdb, cdc) new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, gc), gd), fh) -> new_lt1(vyw113, vyw115, gc, gd) new_lt(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), h, ba, bb) -> new_compare2(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, h), new_asAs(new_esEs5(vyw41, vyw301, ba), new_esEs4(vyw42, vyw302, bb))), h, ba, bb) new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(ty_Either, bhd), bhe)), bha), bah) -> new_ltEs1(vyw700, vyw710, bhd, bhe) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs(vyw702, vyw712, bda, bdb, bdc) new_compare22(vyw77, vyw78, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw77, vyw78, cga) new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(ty_Either, caf), cag)), bah) -> new_ltEs1(vyw700, vyw710, caf, cag) new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, fa), cf, bg) -> new_lt3(vyw100, vyw103, fa) new_ltEs1(Left(vyw700), Left(vyw710), app(ty_Maybe, bhg), bha) -> new_ltEs3(vyw700, vyw710, bhg) new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(ty_Maybe, bhg)), bha), bah) -> new_ltEs3(vyw700, vyw710, bhg) new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(ty_[], cah)), bah) -> new_ltEs2(vyw700, vyw710, cah) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, ea), eb), ec), cf, bg) -> new_lt(vyw100, vyw103, ea, eb, ec) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), baf), bag), bah) -> new_lt0(vyw700, vyw710, bba, bbb) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bch)), bag), bah) -> new_lt3(vyw701, vyw711, bch) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(ty_Maybe, bbf), baf, bag) -> new_lt3(vyw700, vyw710, bbf) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(ty_Either, beh), bfa)), bee), bah) -> new_lt1(vyw700, vyw710, beh, bfa) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(app(ty_@3, bda), bdb), bdc)), bah) -> new_ltEs(vyw702, vyw712, bda, bdb, bdc) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(ty_@2, bdd), bde)), bah) -> new_ltEs0(vyw702, vyw712, bdd, bde) new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, gf), fh) -> new_lt3(vyw113, vyw115, gf) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(ty_[], bgd)) -> new_ltEs2(vyw701, vyw711, bgd) new_ltEs3(Just(vyw700), Just(vyw710), app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs(vyw700, vyw710, cbc, cbd, cbe) new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(ty_[], ccb)), bah) -> new_ltEs2(vyw700, vyw710, ccb) new_primCompAux(vyw40, vyw300, vyw39, app(ty_Maybe, cde)) -> new_compare5(vyw40, vyw300, cde) new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, ga), gb), fh) -> new_lt0(vyw113, vyw115, ga, gb) new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(ty_[], bhf)), bha), bah) -> new_ltEs2(vyw700, vyw710, bhf) new_compare22(vyw77, vyw78, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw77, vyw78, cfa, cfb, cfc) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(ty_[], bfb), bee) -> new_lt2(vyw700, vyw710, bfb) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(ty_Maybe, bch), bag) -> new_lt3(vyw701, vyw711, bch) new_primCompAux(vyw40, vyw300, vyw39, app(ty_[], cdd)) -> new_compare3(vyw40, vyw300, cdd) new_compare5(Just(vyw40), Just(vyw300), cdf) -> new_compare23(vyw40, vyw300, new_esEs11(vyw40, vyw300, cdf), cdf) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(app(ty_@3, cg), da), db)) -> new_ltEs(vyw102, vyw105, cg, da, db) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(ty_Either, bbc), bbd)), baf), bag), bah) -> new_lt1(vyw700, vyw710, bbc, bbd) new_ltEs1(Left(vyw700), Left(vyw710), app(app(ty_@2, bhb), bhc), bha) -> new_ltEs0(vyw700, vyw710, bhb, bhc) new_ltEs3(Just(vyw700), Just(vyw710), app(ty_Maybe, ccc)) -> new_ltEs3(vyw700, vyw710, ccc) new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(ty_@2, bhb), bhc)), bha), bah) -> new_ltEs0(vyw700, vyw710, bhb, bhc) new_compare21(vyw70, vyw71, False, app(ty_[], cbb), bah) -> new_compare3(vyw70, vyw71, cbb) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(ty_Maybe, bea)), bah) -> new_ltEs3(vyw702, vyw712, bea) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(ty_@2, bfh), bga)), bah) -> new_ltEs0(vyw701, vyw711, bfh, bga) new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(ty_Maybe, cba)), bah) -> new_ltEs3(vyw700, vyw710, cba) new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(ty_@2, cad), cae)) -> new_ltEs0(vyw700, vyw710, cad, cae) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bbh), bca), bcb)), bag), bah) -> new_lt(vyw701, vyw711, bbh, bca, bcb) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(ty_Maybe, bbf)), baf), bag), bah) -> new_lt3(vyw700, vyw710, bbf) new_compare22(vyw77, vyw78, False, ceh, app(app(ty_@2, cfd), cfe)) -> new_ltEs0(vyw77, vyw78, cfd, cfe) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bcc), bcd)), bag), bah) -> new_lt0(vyw701, vyw711, bcc, bcd) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(app(ty_@3, bac), bad), bae), baf, bag) -> new_lt(vyw700, vyw710, bac, bad, bae) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(ty_Maybe, bea)) -> new_ltEs3(vyw702, vyw712, bea) new_primCompAux(vyw40, vyw300, vyw39, app(app(app(ty_@3, cce), ccf), ccg)) -> new_compare(vyw40, vyw300, cce, ccf, ccg) new_lt3(Just(vyw40), Just(vyw300), cdf) -> new_compare23(vyw40, vyw300, new_esEs11(vyw40, vyw300, cdf), cdf) new_ltEs1(Left(vyw700), Left(vyw710), app(app(app(ty_@3, bgf), bgg), bgh), bha) -> new_ltEs(vyw700, vyw710, bgf, bgg, bgh) new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs(vyw700, vyw710, caa, cab, cac) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(ty_@2, bef), beg)), bee), bah) -> new_lt0(vyw700, vyw710, bef, beg) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(ty_Maybe, bfc)), bee), bah) -> new_lt3(vyw700, vyw710, bfc) new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(app(ty_@3, bgf), bgg), bgh)), bha), bah) -> new_ltEs(vyw700, vyw710, bgf, bgg, bgh) new_lt2(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_compare3(vyw41, vyw301, ccd) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(app(ty_@3, beb), bec), bed), bee) -> new_lt(vyw700, vyw710, beb, bec, bed) new_lt2(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ccd), ccd) new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(ty_@2, cbf), cbg)), bah) -> new_ltEs0(vyw700, vyw710, cbf, cbg) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(ty_@2, bh), ca), bg) -> new_lt0(vyw101, vyw104, bh, ca) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(ty_Either, bbc), bbd), baf, bag) -> new_lt1(vyw700, vyw710, bbc, bbd) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(ty_@2, dc), dd)) -> new_ltEs0(vyw102, vyw105, dc, dd) new_lt1(Right(vyw40), Right(vyw300), baa, bab) -> new_compare22(vyw40, vyw300, new_esEs10(vyw40, vyw300, bab), baa, bab) new_compare22(vyw77, vyw78, False, ceh, app(ty_[], cfh)) -> new_ltEs2(vyw77, vyw78, cfh) new_lt1(Left(vyw40), Left(vyw300), baa, bab) -> new_compare21(vyw40, vyw300, new_esEs9(vyw40, vyw300, baa), baa, bab) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(ty_Either, bdf), bdg)), bah) -> new_ltEs1(vyw702, vyw712, bdf, bdg) new_ltEs1(Left(vyw700), Left(vyw710), app(app(ty_Either, bhd), bhe), bha) -> new_ltEs1(vyw700, vyw710, bhd, bhe) new_ltEs3(Just(vyw700), Just(vyw710), app(app(ty_Either, cbh), cca)) -> new_ltEs1(vyw700, vyw710, cbh, cca) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(app(ty_@3, bbh), bca), bcb), bag) -> new_lt(vyw701, vyw711, bbh, bca, bcb) new_lt0(@2(vyw40, vyw41), @2(vyw300, vyw301), fb, fc) -> new_compare20(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, fb), new_esEs7(vyw41, vyw301, fc)), fb, fc) new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(app(ty_@3, beb), bec), bed)), bee), bah) -> new_lt(vyw700, vyw710, beb, bec, bed) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(ty_Either, bdf), bdg)) -> new_ltEs1(vyw702, vyw712, bdf, bdg) new_compare(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), h, ba, bb) -> new_compare2(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, h), new_asAs(new_esEs5(vyw41, vyw301, ba), new_esEs4(vyw42, vyw302, bb))), h, ba, bb) new_ltEs1(Left(vyw700), Left(vyw710), app(ty_[], bhf), bha) -> new_ltEs2(vyw700, vyw710, bhf) new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(ty_@2, hc), hd)) -> new_ltEs0(vyw114, vyw116, hc, hd) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(ty_[], bdh)) -> new_ltEs2(vyw702, vyw712, bdh) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(ty_@2, bcc), bcd), bag) -> new_lt0(vyw701, vyw711, bcc, bcd) new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(ty_Maybe, ccc)), bah) -> new_ltEs3(vyw700, vyw710, ccc) new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], ge), fh) -> new_lt2(vyw113, vyw115, ge) new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(ty_Either, beh), bfa), bee) -> new_lt1(vyw700, vyw710, beh, bfa) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(ty_[], bdh)), bah) -> new_ltEs2(vyw702, vyw712, bdh) new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs(vyw114, vyw116, gh, ha, hb) new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, fd), ff), fg), fh) -> new_lt(vyw113, vyw115, fd, ff, fg) new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(ty_[], bcg)), bag), bah) -> new_lt2(vyw701, vyw711, bcg) new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(app(ty_@3, caa), cab), cac)), bah) -> new_ltEs(vyw700, vyw710, caa, cab, cac) new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(ty_[], bbe), baf, bag) -> new_lt2(vyw700, vyw710, bbe) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(ty_[], cd), bg) -> new_lt2(vyw101, vyw104, cd) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(ty_Either, de), df)) -> new_ltEs1(vyw102, vyw105, de, df) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(app(ty_@3, bd), be), bf), bg) -> new_lt(vyw101, vyw104, bd, be, bf) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, ed), ee), cf, bg) -> new_lt0(vyw100, vyw103, ed, ee) new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(ty_[], cah)) -> new_ltEs2(vyw700, vyw710, cah) new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(ty_[], dg)) -> new_ltEs2(vyw102, vyw105, dg) new_compare23(vyw89, vyw90, False, app(app(ty_Either, ced), cee)) -> new_ltEs1(vyw89, vyw90, ced, cee) The TRS R consists of the following rules: new_esEs28(vyw700, vyw710, app(app(ty_@2, bef), beg)) -> new_esEs20(vyw700, vyw710, bef, beg) new_esEs28(vyw700, vyw710, app(ty_Maybe, bfc)) -> new_esEs24(vyw700, vyw710, bfc) new_esEs31(vyw402, vyw3002, app(ty_[], eda)) -> new_esEs13(vyw402, vyw3002, eda) new_ltEs7(vyw701, vyw711, ty_Ordering) -> new_ltEs15(vyw701, vyw711) new_primCmpInt(Neg(Succ(vyw400)), Pos(vyw300)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt19(vyw700, vyw710, ty_Bool) -> new_lt5(vyw700, vyw710) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_@0) -> new_esEs22(vyw400, vyw3000) new_primPlusNat0(Zero, Zero) -> Zero new_lt21(vyw113, vyw115, app(ty_[], ge)) -> new_lt15(vyw113, vyw115, ge) new_pePe(True, vyw191) -> True new_ltEs10(False, False) -> True new_ltEs23(vyw102, vyw105, ty_Char) -> new_ltEs16(vyw102, vyw105) new_ltEs20(vyw70, vyw71, ty_Ordering) -> new_ltEs15(vyw70, vyw71) new_ltEs23(vyw102, vyw105, ty_Bool) -> new_ltEs10(vyw102, vyw105) new_esEs10(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_lt21(vyw113, vyw115, ty_@0) -> new_lt4(vyw113, vyw115) new_ltEs23(vyw102, vyw105, ty_Integer) -> new_ltEs9(vyw102, vyw105) new_lt6(vyw700, vyw710, ty_Int) -> new_lt11(vyw700, vyw710) new_lt19(vyw700, vyw710, app(ty_Maybe, bbf)) -> new_lt18(vyw700, vyw710, bbf) new_compare13(EQ, GT) -> LT new_esEs19(Right(vyw400), Right(vyw3000), dag, app(app(app(ty_@3, feb), fec), fed)) -> new_esEs25(vyw400, vyw3000, feb, fec, fed) new_esEs4(vyw42, vyw302, app(ty_[], daa)) -> new_esEs13(vyw42, vyw302, daa) new_ltEs18(Nothing, Just(vyw710), fbc) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs14(Right(vyw700), Left(vyw710), bhh, bha) -> False new_esEs37(vyw700, vyw710, ty_Bool) -> new_esEs17(vyw700, vyw710) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_Ratio, feg), bha) -> new_ltEs17(vyw700, vyw710, feg) new_compare24(vyw113, vyw114, vyw115, vyw116, True, gg, fh) -> EQ new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT new_ltEs24(vyw89, vyw90, app(app(ty_Either, ced), cee)) -> new_ltEs14(vyw89, vyw90, ced, cee) new_ltEs24(vyw89, vyw90, app(ty_[], cef)) -> new_ltEs4(vyw89, vyw90, cef) new_compare26(vyw77, vyw78, True, ceh, ecc) -> EQ new_esEs37(vyw700, vyw710, ty_Float) -> new_esEs27(vyw700, vyw710) new_esEs33(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_esEs32(vyw401, vyw3001, app(ty_Ratio, eed)) -> new_esEs21(vyw401, vyw3001, eed) new_ltEs20(vyw70, vyw71, ty_Float) -> new_ltEs13(vyw70, vyw71) new_compare16(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Integer) -> new_compare10(new_sr0(vyw40, vyw301), new_sr0(vyw300, vyw41)) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_[], ccb)) -> new_ltEs4(vyw700, vyw710, ccb) new_esEs36(vyw701, vyw711, ty_Ordering) -> new_esEs18(vyw701, vyw711) new_ltEs4(vyw70, vyw71, cbb) -> new_fsEs(new_compare4(vyw70, vyw71, cbb)) new_esEs26(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_primCmpInt(Neg(Succ(vyw400)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw400)) new_ltEs18(Just(vyw700), Just(vyw710), app(app(ty_Either, cbh), cca)) -> new_ltEs14(vyw700, vyw710, cbh, cca) new_compare210(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, bg) -> new_compare110(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt23(vyw100, vyw103, bc), new_asAs(new_esEs40(vyw100, vyw103, bc), new_pePe(new_lt22(vyw101, vyw104, cf), new_asAs(new_esEs39(vyw101, vyw104, cf), new_ltEs23(vyw102, vyw105, bg)))), bc, cf, bg) new_esEs31(vyw402, vyw3002, ty_Char) -> new_esEs23(vyw402, vyw3002) new_esEs5(vyw41, vyw301, app(ty_Ratio, ffg)) -> new_esEs21(vyw41, vyw301, ffg) new_esEs6(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_esEs19(Left(vyw400), Left(vyw3000), ty_Integer, dah) -> new_esEs16(vyw400, vyw3000) new_lt4(vyw4, vyw30) -> new_esEs12(new_compare6(vyw4, vyw30)) new_compare111(vyw136, vyw137, True, fee, fef) -> LT new_esEs9(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_ltEs8(vyw70, vyw71) -> new_fsEs(new_compare6(vyw70, vyw71)) new_primMulNat0(Succ(vyw30000), Succ(vyw4100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw4100)), vyw4100) new_lt6(vyw700, vyw710, ty_Integer) -> new_lt7(vyw700, vyw710) new_esEs4(vyw42, vyw302, ty_Char) -> new_esEs23(vyw42, vyw302) new_esEs37(vyw700, vyw710, app(app(ty_Either, bbc), bbd)) -> new_esEs19(vyw700, vyw710, bbc, bbd) new_ltEs7(vyw701, vyw711, ty_Float) -> new_ltEs13(vyw701, vyw711) new_compare30(vyw40, vyw300, ty_Float) -> new_compare19(vyw40, vyw300) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Int) -> new_ltEs5(vyw700, vyw710) new_esEs9(vyw40, vyw300, app(ty_Ratio, dce)) -> new_esEs21(vyw40, vyw300, dce) new_ltEs15(EQ, LT) -> False new_esEs40(vyw100, vyw103, app(app(ty_@2, ed), ee)) -> new_esEs20(vyw100, vyw103, ed, ee) new_esEs35(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_esEs11(vyw40, vyw300, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs25(vyw40, vyw300, dec, ded, dee) new_esEs36(vyw701, vyw711, app(ty_Ratio, fbe)) -> new_esEs21(vyw701, vyw711, fbe) new_lt6(vyw700, vyw710, app(app(app(ty_@3, beb), bec), bed)) -> new_lt9(vyw700, vyw710, beb, bec, bed) new_esEs19(Right(vyw400), Right(vyw3000), dag, app(app(ty_@2, fde), fdf)) -> new_esEs20(vyw400, vyw3000, fde, fdf) new_esEs8(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_primCompAux0(vyw83, GT) -> GT new_ltEs19(vyw77, vyw78, ty_Double) -> new_ltEs11(vyw77, vyw78) new_esEs10(vyw40, vyw300, app(ty_[], dhf)) -> new_esEs13(vyw40, vyw300, dhf) new_ltEs20(vyw70, vyw71, app(app(ty_Either, bhh), bha)) -> new_ltEs14(vyw70, vyw71, bhh, bha) new_esEs37(vyw700, vyw710, ty_Double) -> new_esEs15(vyw700, vyw710) new_ltEs19(vyw77, vyw78, ty_Ordering) -> new_ltEs15(vyw77, vyw78) new_ltEs7(vyw701, vyw711, app(ty_[], bgd)) -> new_ltEs4(vyw701, vyw711, bgd) new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_ltEs15(GT, LT) -> False new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(ty_Ratio, feh)) -> new_ltEs17(vyw700, vyw710, feh) new_esEs19(Left(vyw400), Left(vyw3000), ty_Double, dah) -> new_esEs15(vyw400, vyw3000) new_lt23(vyw100, vyw103, ty_Integer) -> new_lt7(vyw100, vyw103) new_compare30(vyw40, vyw300, ty_Integer) -> new_compare10(vyw40, vyw300) new_ltEs19(vyw77, vyw78, app(app(ty_@2, cfd), cfe)) -> new_ltEs6(vyw77, vyw78, cfd, cfe) new_ltEs7(vyw701, vyw711, ty_Int) -> new_ltEs5(vyw701, vyw711) new_lt14(vyw4, vyw30) -> new_esEs12(new_compare13(vyw4, vyw30)) new_ltEs14(Left(vyw700), Left(vyw710), ty_@0, bha) -> new_ltEs8(vyw700, vyw710) new_esEs34(vyw401, vyw3001, app(app(ty_@2, egg), egh)) -> new_esEs20(vyw401, vyw3001, egg, egh) new_lt23(vyw100, vyw103, app(app(ty_@2, ed), ee)) -> new_lt10(vyw100, vyw103, ed, ee) new_esEs11(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_lt23(vyw100, vyw103, ty_Ordering) -> new_lt14(vyw100, vyw103) new_esEs9(vyw40, vyw300, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs25(vyw40, vyw300, dcg, dch, dda) new_lt23(vyw100, vyw103, ty_Int) -> new_lt11(vyw100, vyw103) new_esEs7(vyw41, vyw301, app(app(ty_@2, deh), dfa)) -> new_esEs20(vyw41, vyw301, deh, dfa) new_lt15(vyw4, vyw30, ccd) -> new_esEs12(new_compare4(vyw4, vyw30, ccd)) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs36(vyw701, vyw711, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs25(vyw701, vyw711, bbh, bca, bcb) new_esEs6(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_esEs38(vyw113, vyw115, app(ty_Maybe, gf)) -> new_esEs24(vyw113, vyw115, gf) new_compare30(vyw40, vyw300, ty_Int) -> new_compare9(vyw40, vyw300) new_lt6(vyw700, vyw710, ty_Float) -> new_lt12(vyw700, vyw710) new_primCompAux0(vyw83, LT) -> LT new_compare28(vyw70, vyw71, False, fba, bah) -> new_compare111(vyw70, vyw71, new_ltEs20(vyw70, vyw71, fba), fba, bah) new_esEs33(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_ltEs7(vyw701, vyw711, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs12(vyw701, vyw711, bfe, bff, bfg) new_not(True) -> False new_esEs18(GT, GT) -> True new_ltEs19(vyw77, vyw78, app(ty_Ratio, ecd)) -> new_ltEs17(vyw77, vyw78, ecd) new_esEs9(vyw40, vyw300, app(ty_[], dcd)) -> new_esEs13(vyw40, vyw300, dcd) new_esEs4(vyw42, vyw302, ty_Ordering) -> new_esEs18(vyw42, vyw302) new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), cgb) -> new_asAs(new_esEs14(vyw400, vyw3000, cgb), new_esEs13(vyw401, vyw3001, cgb)) new_esEs24(Just(vyw400), Just(vyw3000), app(app(ty_@2, ebb), ebc)) -> new_esEs20(vyw400, vyw3000, ebb, ebc) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_Maybe, ebf)) -> new_esEs24(vyw400, vyw3000, ebf) new_compare17(vyw143, vyw144, False, egc, egd) -> GT new_primCmpNat0(Zero, Zero) -> EQ new_compare30(vyw40, vyw300, app(app(ty_@2, cch), cda)) -> new_compare11(vyw40, vyw300, cch, cda) new_ltEs24(vyw89, vyw90, ty_Float) -> new_ltEs13(vyw89, vyw90) new_esEs37(vyw700, vyw710, ty_Integer) -> new_esEs16(vyw700, vyw710) new_esEs33(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs16(vyw70, vyw71) -> new_fsEs(new_compare8(vyw70, vyw71)) new_esEs10(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_lt19(vyw700, vyw710, app(ty_[], bbe)) -> new_lt15(vyw700, vyw710, bbe) new_lt21(vyw113, vyw115, ty_Bool) -> new_lt5(vyw113, vyw115) new_compare25(vyw89, vyw90, False, fhb) -> new_compare14(vyw89, vyw90, new_ltEs24(vyw89, vyw90, fhb), fhb) new_ltEs24(vyw89, vyw90, ty_Int) -> new_ltEs5(vyw89, vyw90) new_esEs35(vyw400, vyw3000, app(ty_[], fac)) -> new_esEs13(vyw400, vyw3000, fac) new_compare19(Float(vyw40, Pos(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_compare19(Float(vyw40, Neg(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_compare13(LT, EQ) -> LT new_compare18(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), h, ba, bb) -> new_compare210(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, h), new_asAs(new_esEs5(vyw41, vyw301, ba), new_esEs4(vyw42, vyw302, bb))), h, ba, bb) new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) new_ltEs7(vyw701, vyw711, ty_Double) -> new_ltEs11(vyw701, vyw711) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_ltEs20(vyw70, vyw71, ty_Double) -> new_ltEs11(vyw70, vyw71) new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs12(vyw700, vyw710, caa, cab, cac) new_compare27(Left(vyw40), Right(vyw300), baa, bab) -> LT new_esEs39(vyw101, vyw104, app(ty_Maybe, ce)) -> new_esEs24(vyw101, vyw104, ce) new_esEs13([], [], cgb) -> True new_ltEs6(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, bee) -> new_pePe(new_lt6(vyw700, vyw710, bfd), new_asAs(new_esEs28(vyw700, vyw710, bfd), new_ltEs7(vyw701, vyw711, bee))) new_esEs11(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_lt22(vyw101, vyw104, ty_Float) -> new_lt12(vyw101, vyw104) new_esEs6(vyw40, vyw300, app(app(ty_Either, dag), dah)) -> new_esEs19(vyw40, vyw300, dag, dah) new_ltEs7(vyw701, vyw711, app(app(ty_Either, bgb), bgc)) -> new_ltEs14(vyw701, vyw711, bgb, bgc) new_esEs6(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Char) -> new_esEs23(vyw400, vyw3000) new_ltEs15(GT, EQ) -> False new_esEs8(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_esEs39(vyw101, vyw104, app(app(ty_@2, bh), ca)) -> new_esEs20(vyw101, vyw104, bh, ca) new_compare29(Double(vyw40, Pos(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_esEs32(vyw401, vyw3001, ty_Ordering) -> new_esEs18(vyw401, vyw3001) new_compare7(True, True) -> EQ new_ltEs19(vyw77, vyw78, ty_Float) -> new_ltEs13(vyw77, vyw78) new_esEs31(vyw402, vyw3002, app(ty_Ratio, edb)) -> new_esEs21(vyw402, vyw3002, edb) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_esEs4(vyw42, vyw302, ty_@0) -> new_esEs22(vyw42, vyw302) new_esEs40(vyw100, vyw103, app(ty_Maybe, fa)) -> new_esEs24(vyw100, vyw103, fa) new_esEs32(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_esEs24(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs22(vyw400, vyw3000) new_esEs19(Left(vyw400), Left(vyw3000), ty_Bool, dah) -> new_esEs17(vyw400, vyw3000) new_esEs33(vyw400, vyw3000, app(app(ty_@2, efc), efd)) -> new_esEs20(vyw400, vyw3000, efc, efd) new_ltEs7(vyw701, vyw711, app(app(ty_@2, bfh), bga)) -> new_ltEs6(vyw701, vyw711, bfh, bga) new_compare210(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, bc, cf, bg) -> EQ new_lt23(vyw100, vyw103, ty_Float) -> new_lt12(vyw100, vyw103) new_lt11(vyw4, vyw30) -> new_esEs12(new_compare9(vyw4, vyw30)) new_esEs9(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_ltEs21(vyw702, vyw712, ty_Double) -> new_ltEs11(vyw702, vyw712) new_compare13(LT, LT) -> EQ new_primCmpInt(Pos(Succ(vyw400)), Neg(vyw300)) -> GT new_esEs38(vyw113, vyw115, app(app(ty_@2, ga), gb)) -> new_esEs20(vyw113, vyw115, ga, gb) new_ltEs21(vyw702, vyw712, app(app(ty_@2, bdd), bde)) -> new_ltEs6(vyw702, vyw712, bdd, bde) new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs8(vyw114, vyw116) new_compare9(vyw4, vyw30) -> new_primCmpInt(vyw4, vyw30) new_esEs10(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_compare112(vyw180, vyw181, vyw182, vyw183, True, fbg, fbh) -> LT new_esEs19(Right(vyw400), Right(vyw3000), dag, app(ty_Ratio, fdh)) -> new_esEs21(vyw400, vyw3000, fdh) new_compare29(Double(vyw40, Neg(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_compare14(vyw153, vyw154, False, eag) -> GT new_ltEs18(Just(vyw700), Just(vyw710), ty_Char) -> new_ltEs16(vyw700, vyw710) new_esEs5(vyw41, vyw301, ty_Float) -> new_esEs27(vyw41, vyw301) new_esEs9(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_ltEs20(vyw70, vyw71, ty_Int) -> new_ltEs5(vyw70, vyw71) new_ltEs20(vyw70, vyw71, app(app(app(ty_@3, bbg), baf), bag)) -> new_ltEs12(vyw70, vyw71, bbg, baf, bag) new_compare13(GT, EQ) -> GT new_lt22(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) new_esEs38(vyw113, vyw115, ty_Integer) -> new_esEs16(vyw113, vyw115) new_esEs34(vyw401, vyw3001, app(ty_Maybe, ehc)) -> new_esEs24(vyw401, vyw3001, ehc) new_esEs37(vyw700, vyw710, app(ty_Ratio, fbd)) -> new_esEs21(vyw700, vyw710, fbd) new_esEs33(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs39(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) new_ltEs18(Just(vyw700), Just(vyw710), ty_Bool) -> new_ltEs10(vyw700, vyw710) new_esEs32(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_esEs5(vyw41, vyw301, app(app(ty_Either, ffb), ffc)) -> new_esEs19(vyw41, vyw301, ffb, ffc) new_esEs38(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) new_ltEs21(vyw702, vyw712, ty_Ordering) -> new_ltEs15(vyw702, vyw712) new_esEs11(vyw40, vyw300, app(ty_[], ddh)) -> new_esEs13(vyw40, vyw300, ddh) new_primCmpNat0(Zero, Succ(vyw3000)) -> LT new_esEs19(Left(vyw400), Left(vyw3000), ty_Int, dah) -> new_esEs26(vyw400, vyw3000) new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs9(vyw114, vyw116) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_[], ebd)) -> new_esEs13(vyw400, vyw3000, ebd) new_lt20(vyw701, vyw711, app(ty_[], bcg)) -> new_lt15(vyw701, vyw711, bcg) new_lt6(vyw700, vyw710, ty_Double) -> new_lt8(vyw700, vyw710) new_compare30(vyw40, vyw300, app(ty_Maybe, cde)) -> new_compare15(vyw40, vyw300, cde) new_ltEs19(vyw77, vyw78, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs12(vyw77, vyw78, cfa, cfb, cfc) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Ordering) -> new_ltEs15(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(app(app(ty_@3, fga), fgb), fgc)) -> new_esEs25(vyw41, vyw301, fga, fgb, fgc) new_esEs11(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_esEs37(vyw700, vyw710, ty_Int) -> new_esEs26(vyw700, vyw710) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_Ratio, fcf), dah) -> new_esEs21(vyw400, vyw3000, fcf) new_esEs18(LT, LT) -> True new_ltEs19(vyw77, vyw78, ty_Int) -> new_ltEs5(vyw77, vyw78) new_compare24(vyw113, vyw114, vyw115, vyw116, False, gg, fh) -> new_compare113(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, gg), new_asAs(new_esEs38(vyw113, vyw115, gg), new_ltEs22(vyw114, vyw116, fh)), gg, fh) new_ltEs23(vyw102, vyw105, app(ty_[], dg)) -> new_ltEs4(vyw102, vyw105, dg) new_esEs10(vyw40, vyw300, app(ty_Ratio, dhg)) -> new_esEs21(vyw40, vyw300, dhg) new_esEs32(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_primCmpNat0(Succ(vyw400), Zero) -> GT new_esEs38(vyw113, vyw115, ty_Bool) -> new_esEs17(vyw113, vyw115) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_[], bhf), bha) -> new_ltEs4(vyw700, vyw710, bhf) new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(ty_Maybe, cba)) -> new_ltEs18(vyw700, vyw710, cba) new_compare113(vyw180, vyw181, vyw182, vyw183, True, vyw185, fbg, fbh) -> new_compare112(vyw180, vyw181, vyw182, vyw183, True, fbg, fbh) new_esEs38(vyw113, vyw115, ty_Float) -> new_esEs27(vyw113, vyw115) new_esEs40(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) new_esEs8(vyw40, vyw300, app(app(ty_@2, dgb), dgc)) -> new_esEs20(vyw40, vyw300, dgb, dgc) new_compare30(vyw40, vyw300, app(ty_[], cdd)) -> new_compare4(vyw40, vyw300, cdd) new_pePe(False, vyw191) -> vyw191 new_lt19(vyw700, vyw710, ty_Double) -> new_lt8(vyw700, vyw710) new_esEs33(vyw400, vyw3000, app(ty_Ratio, eff)) -> new_esEs21(vyw400, vyw3000, eff) new_esEs39(vyw101, vyw104, ty_Char) -> new_esEs23(vyw101, vyw104) new_esEs28(vyw700, vyw710, ty_Int) -> new_esEs26(vyw700, vyw710) new_esEs8(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_esEs7(vyw41, vyw301, ty_Int) -> new_esEs26(vyw41, vyw301) new_esEs33(vyw400, vyw3000, app(app(app(ty_@3, efh), ega), egb)) -> new_esEs25(vyw400, vyw3000, efh, ega, egb) new_esEs6(vyw40, vyw300, app(app(app(ty_@3, dbe), dbf), dbg)) -> new_esEs25(vyw40, vyw300, dbe, dbf, dbg) new_esEs8(vyw40, vyw300, app(ty_Maybe, dgf)) -> new_esEs24(vyw40, vyw300, dgf) new_esEs5(vyw41, vyw301, ty_Integer) -> new_esEs16(vyw41, vyw301) new_lt20(vyw701, vyw711, app(app(app(ty_@3, bbh), bca), bcb)) -> new_lt9(vyw701, vyw711, bbh, bca, bcb) new_ltEs23(vyw102, vyw105, app(ty_Maybe, dh)) -> new_ltEs18(vyw102, vyw105, dh) new_fsEs(vyw192) -> new_not(new_esEs18(vyw192, GT)) new_esEs5(vyw41, vyw301, ty_@0) -> new_esEs22(vyw41, vyw301) new_esEs24(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs23(vyw400, vyw3000) new_lt22(vyw101, vyw104, app(ty_[], cd)) -> new_lt15(vyw101, vyw104, cd) new_esEs10(vyw40, vyw300, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs25(vyw40, vyw300, eaa, eab, eac) new_esEs39(vyw101, vyw104, app(ty_[], cd)) -> new_esEs13(vyw101, vyw104, cd) new_esEs8(vyw40, vyw300, app(ty_Ratio, dge)) -> new_esEs21(vyw40, vyw300, dge) new_esEs35(vyw400, vyw3000, app(ty_Ratio, fad)) -> new_esEs21(vyw400, vyw3000, fad) new_esEs32(vyw401, vyw3001, ty_@0) -> new_esEs22(vyw401, vyw3001) new_ltEs21(vyw702, vyw712, app(app(ty_Either, bdf), bdg)) -> new_ltEs14(vyw702, vyw712, bdf, bdg) new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs16(vyw114, vyw116) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_compare30(vyw40, vyw300, app(ty_Ratio, fha)) -> new_compare16(vyw40, vyw300, fha) new_esEs21(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dbc) -> new_asAs(new_esEs30(vyw400, vyw3000, dbc), new_esEs29(vyw401, vyw3001, dbc)) new_esEs6(vyw40, vyw300, app(ty_Maybe, dbd)) -> new_esEs24(vyw40, vyw300, dbd) new_ltEs10(True, False) -> False new_esEs31(vyw402, vyw3002, app(app(ty_Either, ece), ecf)) -> new_esEs19(vyw402, vyw3002, ece, ecf) new_esEs5(vyw41, vyw301, ty_Double) -> new_esEs15(vyw41, vyw301) new_esEs4(vyw42, vyw302, ty_Float) -> new_esEs27(vyw42, vyw302) new_esEs9(vyw40, vyw300, app(app(ty_Either, dbh), dca)) -> new_esEs19(vyw40, vyw300, dbh, dca) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Bool) -> new_ltEs10(vyw700, vyw710) new_esEs39(vyw101, vyw104, ty_Integer) -> new_esEs16(vyw101, vyw104) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Double) -> new_ltEs11(vyw700, vyw710) new_ltEs20(vyw70, vyw71, app(app(ty_@2, bfd), bee)) -> new_ltEs6(vyw70, vyw71, bfd, bee) new_esEs32(vyw401, vyw3001, ty_Double) -> new_esEs15(vyw401, vyw3001) new_ltEs21(vyw702, vyw712, ty_Float) -> new_ltEs13(vyw702, vyw712) new_lt21(vyw113, vyw115, app(ty_Ratio, fgd)) -> new_lt17(vyw113, vyw115, fgd) new_esEs31(vyw402, vyw3002, ty_Bool) -> new_esEs17(vyw402, vyw3002) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(app(ty_Either, caf), cag)) -> new_ltEs14(vyw700, vyw710, caf, cag) new_esEs28(vyw700, vyw710, ty_Integer) -> new_esEs16(vyw700, vyw710) new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT new_lt16(vyw4, vyw30) -> new_esEs12(new_compare8(vyw4, vyw30)) new_esEs32(vyw401, vyw3001, ty_Char) -> new_esEs23(vyw401, vyw3001) new_ltEs21(vyw702, vyw712, app(ty_Maybe, bea)) -> new_ltEs18(vyw702, vyw712, bea) new_esEs36(vyw701, vyw711, ty_Float) -> new_esEs27(vyw701, vyw711) new_esEs4(vyw42, vyw302, ty_Bool) -> new_esEs17(vyw42, vyw302) new_esEs31(vyw402, vyw3002, app(app(app(ty_@3, edd), ede), edf)) -> new_esEs25(vyw402, vyw3002, edd, ede, edf) new_esEs7(vyw41, vyw301, ty_Integer) -> new_esEs16(vyw41, vyw301) new_primMulInt(Pos(vyw3000), Pos(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) new_esEs5(vyw41, vyw301, ty_Char) -> new_esEs23(vyw41, vyw301) new_esEs33(vyw400, vyw3000, app(ty_Maybe, efg)) -> new_esEs24(vyw400, vyw3000, efg) new_ltEs7(vyw701, vyw711, ty_Char) -> new_ltEs16(vyw701, vyw711) new_compare13(EQ, LT) -> GT new_esEs13(:(vyw400, vyw401), [], cgb) -> False new_esEs13([], :(vyw3000, vyw3001), cgb) -> False new_esEs28(vyw700, vyw710, ty_Float) -> new_esEs27(vyw700, vyw710) new_esEs38(vyw113, vyw115, ty_Int) -> new_esEs26(vyw113, vyw115) new_esEs11(vyw40, vyw300, app(app(ty_Either, ddd), dde)) -> new_esEs19(vyw40, vyw300, ddd, dde) new_lt21(vyw113, vyw115, app(app(ty_Either, gc), gd)) -> new_lt13(vyw113, vyw115, gc, gd) new_primCompAux1(vyw40, vyw300, vyw39, ccd) -> new_primCompAux0(vyw39, new_compare30(vyw40, vyw300, ccd)) new_esEs28(vyw700, vyw710, ty_Double) -> new_esEs15(vyw700, vyw710) new_esEs19(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, fch), fda), fdb), dah) -> new_esEs25(vyw400, vyw3000, fch, fda, fdb) new_lt6(vyw700, vyw710, app(ty_Ratio, ddb)) -> new_lt17(vyw700, vyw710, ddb) new_ltEs23(vyw102, vyw105, ty_Float) -> new_ltEs13(vyw102, vyw105) new_ltEs24(vyw89, vyw90, ty_Bool) -> new_ltEs10(vyw89, vyw90) new_esEs10(vyw40, vyw300, app(ty_Maybe, dhh)) -> new_esEs24(vyw40, vyw300, dhh) new_esEs24(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs40(vyw100, vyw103, ty_Integer) -> new_esEs16(vyw100, vyw103) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw4100)) -> Zero new_lt20(vyw701, vyw711, ty_Double) -> new_lt8(vyw701, vyw711) new_esEs40(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) new_esEs24(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs16(vyw400, vyw3000) new_lt6(vyw700, vyw710, app(app(ty_Either, beh), bfa)) -> new_lt13(vyw700, vyw710, beh, bfa) new_ltEs21(vyw702, vyw712, ty_@0) -> new_ltEs8(vyw702, vyw712) new_compare13(GT, LT) -> GT new_esEs7(vyw41, vyw301, ty_Double) -> new_esEs15(vyw41, vyw301) new_esEs24(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_primPlusNat1(Succ(vyw1930), vyw4100) -> Succ(Succ(new_primPlusNat0(vyw1930, vyw4100))) new_ltEs14(Left(vyw700), Left(vyw710), ty_Integer, bha) -> new_ltEs9(vyw700, vyw710) new_lt23(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) new_ltEs21(vyw702, vyw712, ty_Int) -> new_ltEs5(vyw702, vyw712) new_esEs7(vyw41, vyw301, ty_Char) -> new_esEs23(vyw41, vyw301) new_lt13(vyw4, vyw30, baa, bab) -> new_esEs12(new_compare27(vyw4, vyw30, baa, bab)) new_compare30(vyw40, vyw300, ty_Ordering) -> new_compare13(vyw40, vyw300) new_esEs30(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_lt10(vyw4, vyw30, fb, fc) -> new_esEs12(new_compare11(vyw4, vyw30, fb, fc)) new_primPlusNat0(Succ(vyw19300), Zero) -> Succ(vyw19300) new_primPlusNat0(Zero, Succ(vyw41000)) -> Succ(vyw41000) new_esEs36(vyw701, vyw711, app(ty_[], bcg)) -> new_esEs13(vyw701, vyw711, bcg) new_compare4(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_primCompAux1(vyw40, vyw300, new_compare4(vyw41, vyw301, ccd), ccd) new_ltEs7(vyw701, vyw711, app(ty_Maybe, bge)) -> new_ltEs18(vyw701, vyw711, bge) new_primPlusNat1(Zero, vyw4100) -> Succ(vyw4100) new_compare17(vyw143, vyw144, True, egc, egd) -> LT new_esEs40(vyw100, vyw103, ty_Bool) -> new_esEs17(vyw100, vyw103) new_esEs31(vyw402, vyw3002, app(ty_Maybe, edc)) -> new_esEs24(vyw402, vyw3002, edc) new_esEs7(vyw41, vyw301, app(app(ty_Either, def), deg)) -> new_esEs19(vyw41, vyw301, def, deg) new_esEs24(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs26(vyw400, vyw3000) new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt14(vyw113, vyw115) new_esEs6(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_compare13(EQ, EQ) -> EQ new_esEs19(Right(vyw400), Right(vyw3000), dag, app(ty_[], fdg)) -> new_esEs13(vyw400, vyw3000, fdg) new_ltEs14(Left(vyw700), Left(vyw710), app(app(ty_Either, bhd), bhe), bha) -> new_ltEs14(vyw700, vyw710, bhd, bhe) new_lt22(vyw101, vyw104, app(app(ty_@2, bh), ca)) -> new_lt10(vyw101, vyw104, bh, ca) new_esEs31(vyw402, vyw3002, ty_Ordering) -> new_esEs18(vyw402, vyw3002) new_compare30(vyw40, vyw300, ty_Double) -> new_compare29(vyw40, vyw300) new_ltEs14(Left(vyw700), Left(vyw710), ty_Char, bha) -> new_ltEs16(vyw700, vyw710) new_lt6(vyw700, vyw710, ty_Ordering) -> new_lt14(vyw700, vyw710) new_esEs18(EQ, EQ) -> True new_ltEs19(vyw77, vyw78, app(app(ty_Either, cff), cfg)) -> new_ltEs14(vyw77, vyw78, cff, cfg) new_lt6(vyw700, vyw710, app(app(ty_@2, bef), beg)) -> new_lt10(vyw700, vyw710, bef, beg) new_compare11(@2(vyw40, vyw41), @2(vyw300, vyw301), fb, fc) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, fb), new_esEs7(vyw41, vyw301, fc)), fb, fc) new_esEs5(vyw41, vyw301, ty_Ordering) -> new_esEs18(vyw41, vyw301) new_lt23(vyw100, vyw103, app(app(ty_Either, ef), eg)) -> new_lt13(vyw100, vyw103, ef, eg) new_esEs28(vyw700, vyw710, ty_Bool) -> new_esEs17(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(app(ty_@2, ffd), ffe)) -> new_esEs20(vyw41, vyw301, ffd, ffe) new_esEs4(vyw42, vyw302, ty_Int) -> new_esEs26(vyw42, vyw302) new_esEs12(LT) -> True new_ltEs19(vyw77, vyw78, ty_Char) -> new_ltEs16(vyw77, vyw78) new_esEs31(vyw402, vyw3002, app(app(ty_@2, ecg), ech)) -> new_esEs20(vyw402, vyw3002, ecg, ech) new_esEs19(Left(vyw400), Left(vyw3000), ty_Float, dah) -> new_esEs27(vyw400, vyw3000) new_lt21(vyw113, vyw115, app(app(ty_@2, ga), gb)) -> new_lt10(vyw113, vyw115, ga, gb) new_ltEs18(Just(vyw700), Just(vyw710), ty_Float) -> new_ltEs13(vyw700, vyw710) new_esEs33(vyw400, vyw3000, app(app(ty_Either, efa), efb)) -> new_esEs19(vyw400, vyw3000, efa, efb) new_ltEs10(False, True) -> True new_esEs10(vyw40, vyw300, app(app(ty_Either, dhb), dhc)) -> new_esEs19(vyw40, vyw300, dhb, dhc) new_ltEs23(vyw102, vyw105, ty_Int) -> new_ltEs5(vyw102, vyw105) new_esEs32(vyw401, vyw3001, app(ty_Maybe, eee)) -> new_esEs24(vyw401, vyw3001, eee) new_ltEs17(vyw70, vyw71, fbb) -> new_fsEs(new_compare16(vyw70, vyw71, fbb)) new_ltEs20(vyw70, vyw71, ty_Integer) -> new_ltEs9(vyw70, vyw71) new_esEs39(vyw101, vyw104, ty_Int) -> new_esEs26(vyw101, vyw104) new_esEs6(vyw40, vyw300, app(app(ty_@2, dba), dbb)) -> new_esEs20(vyw40, vyw300, dba, dbb) new_compare7(False, False) -> EQ new_ltEs19(vyw77, vyw78, ty_Integer) -> new_ltEs9(vyw77, vyw78) new_lt7(vyw4, vyw30) -> new_esEs12(new_compare10(vyw4, vyw30)) new_lt22(vyw101, vyw104, app(app(ty_Either, cb), cc)) -> new_lt13(vyw101, vyw104, cb, cc) new_esEs30(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_esEs8(vyw40, vyw300, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs25(vyw40, vyw300, dgg, dgh, dha) new_lt19(vyw700, vyw710, app(ty_Ratio, fbd)) -> new_lt17(vyw700, vyw710, fbd) new_esEs5(vyw41, vyw301, ty_Int) -> new_esEs26(vyw41, vyw301) new_ltEs11(vyw70, vyw71) -> new_fsEs(new_compare29(vyw70, vyw71)) new_lt23(vyw100, vyw103, app(ty_[], eh)) -> new_lt15(vyw100, vyw103, eh) new_esEs31(vyw402, vyw3002, ty_@0) -> new_esEs22(vyw402, vyw3002) new_primMulInt(Neg(vyw3000), Neg(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs13(vyw114, vyw116) new_compare25(vyw89, vyw90, True, fhb) -> EQ new_esEs6(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_esEs40(vyw100, vyw103, ty_Int) -> new_esEs26(vyw100, vyw103) new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs5(vyw114, vyw116) new_esEs6(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_lt20(vyw701, vyw711, app(ty_Ratio, fbe)) -> new_lt17(vyw701, vyw711, fbe) new_esEs37(vyw700, vyw710, app(ty_[], bbe)) -> new_esEs13(vyw700, vyw710, bbe) new_ltEs15(EQ, GT) -> True new_ltEs19(vyw77, vyw78, ty_@0) -> new_ltEs8(vyw77, vyw78) new_esEs11(vyw40, vyw300, app(ty_Ratio, dea)) -> new_esEs21(vyw40, vyw300, dea) new_esEs32(vyw401, vyw3001, app(app(ty_Either, edg), edh)) -> new_esEs19(vyw401, vyw3001, edg, edh) new_esEs7(vyw41, vyw301, ty_@0) -> new_esEs22(vyw41, vyw301) new_esEs8(vyw40, vyw300, app(app(ty_Either, dfh), dga)) -> new_esEs19(vyw40, vyw300, dfh, dga) new_ltEs18(Just(vyw700), Just(vyw710), ty_Int) -> new_ltEs5(vyw700, vyw710) new_compare4([], :(vyw300, vyw301), ccd) -> LT new_esEs14(vyw400, vyw3000, app(ty_[], cgg)) -> new_esEs13(vyw400, vyw3000, cgg) new_esEs34(vyw401, vyw3001, app(ty_Ratio, ehb)) -> new_esEs21(vyw401, vyw3001, ehb) new_ltEs20(vyw70, vyw71, ty_Char) -> new_ltEs16(vyw70, vyw71) new_esEs32(vyw401, vyw3001, app(app(app(ty_@3, eef), eeg), eeh)) -> new_esEs25(vyw401, vyw3001, eef, eeg, eeh) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_esEs29(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_compare7(True, False) -> GT new_lt22(vyw101, vyw104, ty_Ordering) -> new_lt14(vyw101, vyw104) new_esEs5(vyw41, vyw301, ty_Bool) -> new_esEs17(vyw41, vyw301) new_ltEs22(vyw114, vyw116, app(ty_Maybe, hh)) -> new_ltEs18(vyw114, vyw116, hh) new_ltEs14(Left(vyw700), Right(vyw710), bhh, bha) -> True new_esEs6(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_esEs7(vyw41, vyw301, app(ty_Maybe, dfd)) -> new_esEs24(vyw41, vyw301, dfd) new_esEs33(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_ltEs24(vyw89, vyw90, app(ty_Maybe, ceg)) -> new_ltEs18(vyw89, vyw90, ceg) new_lt19(vyw700, vyw710, ty_Ordering) -> new_lt14(vyw700, vyw710) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_Maybe, fcg), dah) -> new_esEs24(vyw400, vyw3000, fcg) new_lt21(vyw113, vyw115, app(app(app(ty_@3, fd), ff), fg)) -> new_lt9(vyw113, vyw115, fd, ff, fg) new_esEs8(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_compare26(vyw77, vyw78, False, ceh, ecc) -> new_compare17(vyw77, vyw78, new_ltEs19(vyw77, vyw78, ecc), ceh, ecc) new_ltEs14(Left(vyw700), Left(vyw710), ty_Ordering, bha) -> new_ltEs15(vyw700, vyw710) new_ltEs23(vyw102, vyw105, ty_Double) -> new_ltEs11(vyw102, vyw105) new_lt9(vyw4, vyw30, h, ba, bb) -> new_esEs12(new_compare18(vyw4, vyw30, h, ba, bb)) new_ltEs14(Left(vyw700), Left(vyw710), ty_Float, bha) -> new_ltEs13(vyw700, vyw710) new_esEs6(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_compare15(Nothing, Nothing, cdf) -> EQ new_primMulInt(Pos(vyw3000), Neg(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) new_primMulInt(Neg(vyw3000), Pos(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) new_lt20(vyw701, vyw711, app(app(ty_Either, bce), bcf)) -> new_lt13(vyw701, vyw711, bce, bcf) new_esEs40(vyw100, vyw103, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs25(vyw100, vyw103, ea, eb, ec) new_esEs14(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_esEs12(GT) -> False new_lt19(vyw700, vyw710, ty_Float) -> new_lt12(vyw700, vyw710) new_ltEs7(vyw701, vyw711, ty_@0) -> new_ltEs8(vyw701, vyw711) new_esEs12(EQ) -> False new_esEs38(vyw113, vyw115, ty_Char) -> new_esEs23(vyw113, vyw115) new_esEs40(vyw100, vyw103, app(ty_Ratio, fgh)) -> new_esEs21(vyw100, vyw103, fgh) new_esEs9(vyw40, vyw300, app(app(ty_@2, dcb), dcc)) -> new_esEs20(vyw40, vyw300, dcb, dcc) new_ltEs20(vyw70, vyw71, ty_@0) -> new_ltEs8(vyw70, vyw71) new_compare29(Double(vyw40, Pos(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_compare29(Double(vyw40, Neg(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_esEs8(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_ltEs18(Nothing, Nothing, fbc) -> True new_esEs36(vyw701, vyw711, app(app(ty_@2, bcc), bcd)) -> new_esEs20(vyw701, vyw711, bcc, bcd) new_ltEs23(vyw102, vyw105, app(app(ty_@2, dc), dd)) -> new_ltEs6(vyw102, vyw105, dc, dd) new_esEs19(Right(vyw400), Right(vyw3000), dag, app(ty_Maybe, fea)) -> new_esEs24(vyw400, vyw3000, fea) new_esEs11(vyw40, vyw300, app(app(ty_@2, ddf), ddg)) -> new_esEs20(vyw40, vyw300, ddf, ddg) new_esEs19(Left(vyw400), Left(vyw3000), app(app(ty_Either, fca), fcb), dah) -> new_esEs19(vyw400, vyw3000, fca, fcb) new_ltEs14(Left(vyw700), Left(vyw710), ty_Int, bha) -> new_ltEs5(vyw700, vyw710) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_@0) -> new_ltEs8(vyw700, vyw710) new_compare30(vyw40, vyw300, app(app(ty_Either, cdb), cdc)) -> new_compare27(vyw40, vyw300, cdb, cdc) new_lt6(vyw700, vyw710, ty_@0) -> new_lt4(vyw700, vyw710) new_esEs7(vyw41, vyw301, app(app(app(ty_@3, dfe), dff), dfg)) -> new_esEs25(vyw41, vyw301, dfe, dff, dfg) new_lt21(vyw113, vyw115, ty_Int) -> new_lt11(vyw113, vyw115) new_esEs34(vyw401, vyw3001, app(app(app(ty_@3, ehd), ehe), ehf)) -> new_esEs25(vyw401, vyw3001, ehd, ehe, ehf) new_esEs36(vyw701, vyw711, app(ty_Maybe, bch)) -> new_esEs24(vyw701, vyw711, bch) new_esEs19(Left(vyw400), Left(vyw3000), ty_@0, dah) -> new_esEs22(vyw400, vyw3000) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs10(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_sr0(Integer(vyw3000), Integer(vyw410)) -> Integer(new_primMulInt(vyw3000, vyw410)) new_esEs24(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs35(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_ltEs12(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, bag) -> new_pePe(new_lt19(vyw700, vyw710, bbg), new_asAs(new_esEs37(vyw700, vyw710, bbg), new_pePe(new_lt20(vyw701, vyw711, baf), new_asAs(new_esEs36(vyw701, vyw711, baf), new_ltEs21(vyw702, vyw712, bag))))) new_lt22(vyw101, vyw104, app(ty_Ratio, fgf)) -> new_lt17(vyw101, vyw104, fgf) new_ltEs15(LT, GT) -> True new_esEs14(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs9(vyw40, vyw300, app(ty_Maybe, dcf)) -> new_esEs24(vyw40, vyw300, dcf) new_esEs35(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_esEs14(vyw400, vyw3000, app(app(ty_Either, cgc), cgd)) -> new_esEs19(vyw400, vyw3000, cgc, cgd) new_compare15(Just(vyw40), Nothing, cdf) -> GT new_compare15(Just(vyw40), Just(vyw300), cdf) -> new_compare25(vyw40, vyw300, new_esEs11(vyw40, vyw300, cdf), cdf) new_esEs29(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_lt19(vyw700, vyw710, app(app(ty_@2, bba), bbb)) -> new_lt10(vyw700, vyw710, bba, bbb) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_Maybe, ccc)) -> new_ltEs18(vyw700, vyw710, ccc) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Int) -> new_esEs26(vyw400, vyw3000) new_ltEs23(vyw102, vyw105, app(ty_Ratio, fgg)) -> new_ltEs17(vyw102, vyw105, fgg) new_esEs19(Left(vyw400), Left(vyw3000), ty_Char, dah) -> new_esEs23(vyw400, vyw3000) new_compare30(vyw40, vyw300, ty_@0) -> new_compare6(vyw40, vyw300) new_ltEs21(vyw702, vyw712, ty_Bool) -> new_ltEs10(vyw702, vyw712) new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs15(vyw114, vyw116) new_esEs28(vyw700, vyw710, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs25(vyw700, vyw710, beb, bec, bed) new_lt6(vyw700, vyw710, app(ty_[], bfb)) -> new_lt15(vyw700, vyw710, bfb) new_asAs(True, vyw131) -> vyw131 new_esEs24(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, ebg), ebh), eca)) -> new_esEs25(vyw400, vyw3000, ebg, ebh, eca) new_esEs38(vyw113, vyw115, app(ty_[], ge)) -> new_esEs13(vyw113, vyw115, ge) new_ltEs21(vyw702, vyw712, ty_Char) -> new_ltEs16(vyw702, vyw712) new_esEs22(@0, @0) -> True new_esEs24(Just(vyw400), Just(vyw3000), app(app(ty_Either, eah), eba)) -> new_esEs19(vyw400, vyw3000, eah, eba) new_esEs24(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs27(vyw400, vyw3000) new_lt20(vyw701, vyw711, app(app(ty_@2, bcc), bcd)) -> new_lt10(vyw701, vyw711, bcc, bcd) new_esEs31(vyw402, vyw3002, ty_Double) -> new_esEs15(vyw402, vyw3002) new_esEs33(vyw400, vyw3000, app(ty_[], efe)) -> new_esEs13(vyw400, vyw3000, efe) new_lt12(vyw4, vyw30) -> new_esEs12(new_compare19(vyw4, vyw30)) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs21(vyw702, vyw712, ty_Integer) -> new_ltEs9(vyw702, vyw712) new_esEs4(vyw42, vyw302, ty_Double) -> new_esEs15(vyw42, vyw302) new_ltEs9(vyw70, vyw71) -> new_fsEs(new_compare10(vyw70, vyw71)) new_esEs6(vyw40, vyw300, app(ty_[], cgb)) -> new_esEs13(vyw40, vyw300, cgb) new_esEs14(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs31(vyw402, vyw3002, ty_Integer) -> new_esEs16(vyw402, vyw3002) new_compare113(vyw180, vyw181, vyw182, vyw183, False, vyw185, fbg, fbh) -> new_compare112(vyw180, vyw181, vyw182, vyw183, vyw185, fbg, fbh) new_esEs39(vyw101, vyw104, ty_Float) -> new_esEs27(vyw101, vyw104) new_compare111(vyw136, vyw137, False, fee, fef) -> GT new_lt23(vyw100, vyw103, ty_Bool) -> new_lt5(vyw100, vyw103) new_ltEs18(Just(vyw700), Nothing, fbc) -> False new_esEs39(vyw101, vyw104, app(app(app(ty_@3, bd), be), bf)) -> new_esEs25(vyw101, vyw104, bd, be, bf) new_primCmpInt(Pos(Succ(vyw400)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw400), vyw300) new_esEs7(vyw41, vyw301, ty_Ordering) -> new_esEs18(vyw41, vyw301) new_esEs38(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) new_esEs39(vyw101, vyw104, ty_Bool) -> new_esEs17(vyw101, vyw104) new_compare8(Char(vyw40), Char(vyw300)) -> new_primCmpNat0(vyw40, vyw300) new_esEs10(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_esEs4(vyw42, vyw302, ty_Integer) -> new_esEs16(vyw42, vyw302) new_esEs28(vyw700, vyw710, ty_Ordering) -> new_esEs18(vyw700, vyw710) new_esEs40(vyw100, vyw103, ty_Ordering) -> new_esEs18(vyw100, vyw103) new_compare10(Integer(vyw40), Integer(vyw300)) -> new_primCmpInt(vyw40, vyw300) new_esEs39(vyw101, vyw104, app(app(ty_Either, cb), cc)) -> new_esEs19(vyw101, vyw104, cb, cc) new_esEs34(vyw401, vyw3001, ty_Ordering) -> new_esEs18(vyw401, vyw3001) new_sr(vyw300, vyw41) -> new_primMulInt(vyw300, vyw41) new_compare7(False, True) -> LT new_esEs38(vyw113, vyw115, app(ty_Ratio, fgd)) -> new_esEs21(vyw113, vyw115, fgd) new_esEs10(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs34(vyw401, vyw3001, ty_Char) -> new_esEs23(vyw401, vyw3001) new_esEs7(vyw41, vyw301, ty_Bool) -> new_esEs17(vyw41, vyw301) new_compare4(:(vyw40, vyw41), [], ccd) -> GT new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs39(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) new_esEs4(vyw42, vyw302, app(app(ty_@2, chg), chh)) -> new_esEs20(vyw42, vyw302, chg, chh) new_lt21(vyw113, vyw115, ty_Double) -> new_lt8(vyw113, vyw115) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs14(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_esEs34(vyw401, vyw3001, app(app(ty_Either, ege), egf)) -> new_esEs19(vyw401, vyw3001, ege, egf) new_esEs19(Left(vyw400), Left(vyw3000), ty_Ordering, dah) -> new_esEs18(vyw400, vyw3000) new_esEs40(vyw100, vyw103, ty_Float) -> new_esEs27(vyw100, vyw103) new_ltEs14(Left(vyw700), Left(vyw710), app(app(ty_@2, bhb), bhc), bha) -> new_ltEs6(vyw700, vyw710, bhb, bhc) new_esEs4(vyw42, vyw302, app(ty_Maybe, dac)) -> new_esEs24(vyw42, vyw302, dac) new_esEs34(vyw401, vyw3001, ty_Float) -> new_esEs27(vyw401, vyw3001) new_ltEs18(Just(vyw700), Just(vyw710), ty_@0) -> new_ltEs8(vyw700, vyw710) new_esEs40(vyw100, vyw103, app(app(ty_Either, ef), eg)) -> new_esEs19(vyw100, vyw103, ef, eg) new_compare13(GT, GT) -> EQ new_esEs31(vyw402, vyw3002, ty_Int) -> new_esEs26(vyw402, vyw3002) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_lt6(vyw700, vyw710, ty_Bool) -> new_lt5(vyw700, vyw710) new_esEs28(vyw700, vyw710, ty_Char) -> new_esEs23(vyw700, vyw710) new_esEs9(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_esEs39(vyw101, vyw104, ty_Ordering) -> new_esEs18(vyw101, vyw104) new_ltEs7(vyw701, vyw711, ty_Integer) -> new_ltEs9(vyw701, vyw711) new_lt20(vyw701, vyw711, ty_Ordering) -> new_lt14(vyw701, vyw711) new_esEs27(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs26(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs15(EQ, EQ) -> True new_esEs32(vyw401, vyw3001, app(app(ty_@2, eea), eeb)) -> new_esEs20(vyw401, vyw3001, eea, eeb) new_lt22(vyw101, vyw104, ty_Double) -> new_lt8(vyw101, vyw104) new_esEs40(vyw100, vyw103, ty_Char) -> new_esEs23(vyw100, vyw103) new_compare110(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, ead, eae, eaf) -> new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, ead, eae, eaf) new_ltEs20(vyw70, vyw71, app(ty_Maybe, fbc)) -> new_ltEs18(vyw70, vyw71, fbc) new_lt19(vyw700, vyw710, app(app(app(ty_@3, bac), bad), bae)) -> new_lt9(vyw700, vyw710, bac, bad, bae) new_lt19(vyw700, vyw710, ty_Int) -> new_lt11(vyw700, vyw710) new_lt20(vyw701, vyw711, ty_Integer) -> new_lt7(vyw701, vyw711) new_esEs5(vyw41, vyw301, app(ty_Maybe, ffh)) -> new_esEs24(vyw41, vyw301, ffh) new_compare30(vyw40, vyw300, ty_Bool) -> new_compare7(vyw40, vyw300) new_lt17(vyw4, vyw30, ecb) -> new_esEs12(new_compare16(vyw4, vyw30, ecb)) new_primCompAux0(vyw83, EQ) -> vyw83 new_esEs8(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_lt23(vyw100, vyw103, app(ty_Maybe, fa)) -> new_lt18(vyw100, vyw103, fa) new_esEs35(vyw400, vyw3000, app(app(app(ty_@3, faf), fag), fah)) -> new_esEs25(vyw400, vyw3000, faf, fag, fah) new_esEs28(vyw700, vyw710, ty_@0) -> new_esEs22(vyw700, vyw710) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_lt6(vyw700, vyw710, ty_Char) -> new_lt16(vyw700, vyw710) new_lt19(vyw700, vyw710, ty_Integer) -> new_lt7(vyw700, vyw710) new_lt19(vyw700, vyw710, app(app(ty_Either, bbc), bbd)) -> new_lt13(vyw700, vyw710, bbc, bbd) new_ltEs15(LT, EQ) -> True new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(app(ty_@2, cad), cae)) -> new_ltEs6(vyw700, vyw710, cad, cae) new_ltEs19(vyw77, vyw78, app(ty_Maybe, cga)) -> new_ltEs18(vyw77, vyw78, cga) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs24(vyw89, vyw90, app(ty_Ratio, fhc)) -> new_ltEs17(vyw89, vyw90, fhc) new_esEs33(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_esEs8(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs34(vyw401, vyw3001, ty_@0) -> new_esEs22(vyw401, vyw3001) new_ltEs14(Left(vyw700), Left(vyw710), app(app(app(ty_@3, bgf), bgg), bgh), bha) -> new_ltEs12(vyw700, vyw710, bgf, bgg, bgh) new_esEs23(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_lt23(vyw100, vyw103, ty_@0) -> new_lt4(vyw100, vyw103) new_compare19(Float(vyw40, Pos(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_ltEs14(Left(vyw700), Left(vyw710), ty_Double, bha) -> new_ltEs11(vyw700, vyw710) new_esEs11(vyw40, vyw300, app(ty_Maybe, deb)) -> new_esEs24(vyw40, vyw300, deb) new_esEs10(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_ltEs22(vyw114, vyw116, app(app(ty_Either, he), hf)) -> new_ltEs14(vyw114, vyw116, he, hf) new_esEs14(vyw400, vyw3000, app(ty_Ratio, cgh)) -> new_esEs21(vyw400, vyw3000, cgh) new_esEs28(vyw700, vyw710, app(ty_[], bfb)) -> new_esEs13(vyw700, vyw710, bfb) new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) new_esEs35(vyw400, vyw3000, app(app(ty_Either, ehg), ehh)) -> new_esEs19(vyw400, vyw3000, ehg, ehh) new_esEs35(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_esEs40(vyw100, vyw103, app(ty_[], eh)) -> new_esEs13(vyw100, vyw103, eh) new_esEs7(vyw41, vyw301, app(ty_Ratio, dfc)) -> new_esEs21(vyw41, vyw301, dfc) new_compare4([], [], ccd) -> EQ new_esEs33(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_lt22(vyw101, vyw104, ty_Bool) -> new_lt5(vyw101, vyw104) new_esEs14(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_esEs34(vyw401, vyw3001, app(ty_[], eha)) -> new_esEs13(vyw401, vyw3001, eha) new_esEs38(vyw113, vyw115, ty_Ordering) -> new_esEs18(vyw113, vyw115) new_ltEs22(vyw114, vyw116, app(ty_[], hg)) -> new_ltEs4(vyw114, vyw116, hg) new_esEs10(vyw40, vyw300, app(app(ty_@2, dhd), dhe)) -> new_esEs20(vyw40, vyw300, dhd, dhe) new_ltEs15(GT, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt5(vyw4, vyw30) -> new_esEs12(new_compare7(vyw4, vyw30)) new_esEs34(vyw401, vyw3001, ty_Double) -> new_esEs15(vyw401, vyw3001) new_esEs11(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_esEs17(True, True) -> True new_esEs15(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs26(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_esEs35(vyw400, vyw3000, app(app(ty_@2, faa), fab)) -> new_esEs20(vyw400, vyw3000, faa, fab) new_esEs35(vyw400, vyw3000, app(ty_Maybe, fae)) -> new_esEs24(vyw400, vyw3000, fae) new_lt22(vyw101, vyw104, ty_Int) -> new_lt11(vyw101, vyw104) new_esEs19(Right(vyw400), Right(vyw3000), dag, app(app(ty_Either, fdc), fdd)) -> new_esEs19(vyw400, vyw3000, fdc, fdd) new_lt22(vyw101, vyw104, ty_@0) -> new_lt4(vyw101, vyw104) new_ltEs23(vyw102, vyw105, app(app(ty_Either, de), df)) -> new_ltEs14(vyw102, vyw105, de, df) new_lt23(vyw100, vyw103, app(ty_Ratio, fgh)) -> new_lt17(vyw100, vyw103, fgh) new_esEs11(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_esEs34(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_ltEs5(vyw70, vyw71) -> new_fsEs(new_compare9(vyw70, vyw71)) new_compare27(Right(vyw40), Left(vyw300), baa, bab) -> GT new_ltEs13(vyw70, vyw71) -> new_fsEs(new_compare19(vyw70, vyw71)) new_esEs6(vyw40, vyw300, app(ty_Ratio, dbc)) -> new_esEs21(vyw40, vyw300, dbc) new_esEs35(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_ltEs22(vyw114, vyw116, app(ty_Ratio, fge)) -> new_ltEs17(vyw114, vyw116, fge) new_compare112(vyw180, vyw181, vyw182, vyw183, False, fbg, fbh) -> GT new_esEs38(vyw113, vyw115, app(app(ty_Either, gc), gd)) -> new_esEs19(vyw113, vyw115, gc, gd) new_ltEs18(Just(vyw700), Just(vyw710), ty_Double) -> new_ltEs11(vyw700, vyw710) new_not(False) -> True new_esEs9(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_ltEs24(vyw89, vyw90, ty_Double) -> new_ltEs11(vyw89, vyw90) new_ltEs18(Just(vyw700), Just(vyw710), ty_Integer) -> new_ltEs9(vyw700, vyw710) new_lt20(vyw701, vyw711, ty_@0) -> new_lt4(vyw701, vyw711) new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs10(vyw114, vyw116) new_compare19(Float(vyw40, Neg(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_ltEs22(vyw114, vyw116, app(app(ty_@2, hc), hd)) -> new_ltEs6(vyw114, vyw116, hc, hd) new_ltEs24(vyw89, vyw90, ty_Integer) -> new_ltEs9(vyw89, vyw90) new_esEs9(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_esEs32(vyw401, vyw3001, app(ty_[], eec)) -> new_esEs13(vyw401, vyw3001, eec) new_primPlusNat0(Succ(vyw19300), Succ(vyw41000)) -> Succ(Succ(new_primPlusNat0(vyw19300, vyw41000))) new_esEs16(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_ltEs14(Right(vyw700), Right(vyw710), bhh, app(ty_[], cah)) -> new_ltEs4(vyw700, vyw710, cah) new_lt19(vyw700, vyw710, ty_Char) -> new_lt16(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(ty_[], fff)) -> new_esEs13(vyw41, vyw301, fff) new_esEs9(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs14(vyw400, vyw3000, app(app(ty_@2, cge), cgf)) -> new_esEs20(vyw400, vyw3000, cge, cgf) new_compare16(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Int) -> new_compare9(new_sr(vyw40, vyw301), new_sr(vyw300, vyw41)) new_esEs11(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_compare110(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, ead, eae, eaf) -> new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, ead, eae, eaf) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_Ratio, ffa)) -> new_ltEs17(vyw700, vyw710, ffa) new_ltEs23(vyw102, vyw105, ty_@0) -> new_ltEs8(vyw102, vyw105) new_esEs14(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Integer) -> new_ltEs9(vyw700, vyw710) new_esEs4(vyw42, vyw302, app(app(ty_Either, che), chf)) -> new_esEs19(vyw42, vyw302, che, chf) new_esEs36(vyw701, vyw711, ty_Bool) -> new_esEs17(vyw701, vyw711) new_esEs34(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_esEs4(vyw42, vyw302, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs25(vyw42, vyw302, dad, dae, daf) new_lt23(vyw100, vyw103, ty_Double) -> new_lt8(vyw100, vyw103) new_esEs28(vyw700, vyw710, app(app(ty_Either, beh), bfa)) -> new_esEs19(vyw700, vyw710, beh, bfa) new_compare30(vyw40, vyw300, ty_Char) -> new_compare8(vyw40, vyw300) new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Char) -> new_ltEs16(vyw700, vyw710) new_compare27(Left(vyw40), Left(vyw300), baa, bab) -> new_compare28(vyw40, vyw300, new_esEs9(vyw40, vyw300, baa), baa, bab) new_esEs36(vyw701, vyw711, ty_Int) -> new_esEs26(vyw701, vyw711) new_lt20(vyw701, vyw711, ty_Int) -> new_lt11(vyw701, vyw711) new_ltEs21(vyw702, vyw712, app(ty_[], bdh)) -> new_ltEs4(vyw702, vyw712, bdh) new_esEs36(vyw701, vyw711, app(app(ty_Either, bce), bcf)) -> new_esEs19(vyw701, vyw711, bce, bcf) new_ltEs20(vyw70, vyw71, app(ty_Ratio, fbb)) -> new_ltEs17(vyw70, vyw71, fbb) new_esEs37(vyw700, vyw710, ty_Ordering) -> new_esEs18(vyw700, vyw710) new_ltEs7(vyw701, vyw711, ty_Bool) -> new_ltEs10(vyw701, vyw711) new_esEs9(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_esEs11(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_lt22(vyw101, vyw104, app(ty_Maybe, ce)) -> new_lt18(vyw101, vyw104, ce) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_lt22(vyw101, vyw104, app(app(app(ty_@3, bd), be), bf)) -> new_lt9(vyw101, vyw104, bd, be, bf) new_ltEs24(vyw89, vyw90, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs12(vyw89, vyw90, cdg, cdh, cea) new_lt8(vyw4, vyw30) -> new_esEs12(new_compare29(vyw4, vyw30)) new_compare15(Nothing, Just(vyw300), cdf) -> LT new_esEs14(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_esEs37(vyw700, vyw710, ty_Char) -> new_esEs23(vyw700, vyw710) new_ltEs24(vyw89, vyw90, ty_Char) -> new_ltEs16(vyw89, vyw90) new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs11(vyw114, vyw116) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_Maybe, bhg), bha) -> new_ltEs18(vyw700, vyw710, bhg) new_ltEs18(Just(vyw700), Just(vyw710), app(app(ty_@2, cbf), cbg)) -> new_ltEs6(vyw700, vyw710, cbf, cbg) new_ltEs21(vyw702, vyw712, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs12(vyw702, vyw712, bda, bdb, bdc) new_esEs37(vyw700, vyw710, app(app(ty_@2, bba), bbb)) -> new_esEs20(vyw700, vyw710, bba, bbb) new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, ead, eae, eaf) -> LT new_esEs25(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), dbe, dbf, dbg) -> new_asAs(new_esEs33(vyw400, vyw3000, dbe), new_asAs(new_esEs32(vyw401, vyw3001, dbf), new_esEs31(vyw402, vyw3002, dbg))) new_esEs31(vyw402, vyw3002, ty_Float) -> new_esEs27(vyw402, vyw3002) new_ltEs15(LT, LT) -> True new_compare6(@0, @0) -> EQ new_ltEs18(Just(vyw700), Just(vyw710), ty_Ordering) -> new_ltEs15(vyw700, vyw710) new_lt21(vyw113, vyw115, app(ty_Maybe, gf)) -> new_lt18(vyw113, vyw115, gf) new_esEs19(Right(vyw400), Right(vyw3000), dag, ty_Float) -> new_esEs27(vyw400, vyw3000) new_ltEs23(vyw102, vyw105, app(app(app(ty_@3, cg), da), db)) -> new_ltEs12(vyw102, vyw105, cg, da, db) new_esEs10(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt19(vyw700, vyw710, ty_@0) -> new_lt4(vyw700, vyw710) new_esEs17(False, False) -> True new_lt21(vyw113, vyw115, ty_Float) -> new_lt12(vyw113, vyw115) new_esEs37(vyw700, vyw710, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs25(vyw700, vyw710, bac, bad, bae) new_esEs34(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_esEs7(vyw41, vyw301, ty_Float) -> new_esEs27(vyw41, vyw301) new_esEs19(Left(vyw400), Left(vyw3000), app(app(ty_@2, fcc), fcd), dah) -> new_esEs20(vyw400, vyw3000, fcc, fcd) new_esEs37(vyw700, vyw710, ty_@0) -> new_esEs22(vyw700, vyw710) new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs12(vyw114, vyw116, gh, ha, hb) new_primCmpNat0(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat0(vyw400, vyw3000) new_esEs8(vyw40, vyw300, app(ty_[], dgd)) -> new_esEs13(vyw40, vyw300, dgd) new_lt20(vyw701, vyw711, ty_Char) -> new_lt16(vyw701, vyw711) new_esEs14(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_compare27(Right(vyw40), Right(vyw300), baa, bab) -> new_compare26(vyw40, vyw300, new_esEs10(vyw40, vyw300, bab), baa, bab) new_esEs35(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_ltEs24(vyw89, vyw90, ty_@0) -> new_ltEs8(vyw89, vyw90) new_lt21(vyw113, vyw115, ty_Integer) -> new_lt7(vyw113, vyw115) new_esEs11(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_lt20(vyw701, vyw711, app(ty_Maybe, bch)) -> new_lt18(vyw701, vyw711, bch) new_esEs39(vyw101, vyw104, app(ty_Ratio, fgf)) -> new_esEs21(vyw101, vyw104, fgf) new_esEs24(Nothing, Nothing, dbd) -> True new_ltEs14(Left(vyw700), Left(vyw710), ty_Bool, bha) -> new_ltEs10(vyw700, vyw710) new_ltEs23(vyw102, vyw105, ty_Ordering) -> new_ltEs15(vyw102, vyw105) new_esEs38(vyw113, vyw115, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs25(vyw113, vyw115, fd, ff, fg) new_esEs36(vyw701, vyw711, ty_Integer) -> new_esEs16(vyw701, vyw711) new_lt20(vyw701, vyw711, ty_Bool) -> new_lt5(vyw701, vyw711) new_esEs36(vyw701, vyw711, ty_@0) -> new_esEs22(vyw701, vyw711) new_esEs33(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs14(vyw400, vyw3000, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs25(vyw400, vyw3000, chb, chc, chd) new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, ead, eae, eaf) -> GT new_ltEs20(vyw70, vyw71, app(ty_[], cbb)) -> new_ltEs4(vyw70, vyw71, cbb) new_compare13(LT, GT) -> LT new_lt18(vyw4, vyw30, cdf) -> new_esEs12(new_compare15(vyw4, vyw30, cdf)) new_esEs14(vyw400, vyw3000, app(ty_Maybe, cha)) -> new_esEs24(vyw400, vyw3000, cha) new_lt22(vyw101, vyw104, ty_Integer) -> new_lt7(vyw101, vyw104) new_esEs36(vyw701, vyw711, ty_Char) -> new_esEs23(vyw701, vyw711) new_lt23(vyw100, vyw103, app(app(app(ty_@3, ea), eb), ec)) -> new_lt9(vyw100, vyw103, ea, eb, ec) new_primEqNat0(Zero, Zero) -> True new_ltEs14(Right(vyw700), Right(vyw710), bhh, ty_Float) -> new_ltEs13(vyw700, vyw710) new_ltEs7(vyw701, vyw711, app(ty_Ratio, ddc)) -> new_ltEs17(vyw701, vyw711, ddc) new_compare14(vyw153, vyw154, True, eag) -> LT new_ltEs19(vyw77, vyw78, ty_Bool) -> new_ltEs10(vyw77, vyw78) new_esEs36(vyw701, vyw711, ty_Double) -> new_esEs15(vyw701, vyw711) new_esEs35(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_lt6(vyw700, vyw710, app(ty_Maybe, bfc)) -> new_lt18(vyw700, vyw710, bfc) new_esEs24(Nothing, Just(vyw3000), dbd) -> False new_esEs24(Just(vyw400), Nothing, dbd) -> False new_esEs37(vyw700, vyw710, app(ty_Maybe, bbf)) -> new_esEs24(vyw700, vyw710, bbf) new_esEs4(vyw42, vyw302, app(ty_Ratio, dab)) -> new_esEs21(vyw42, vyw302, dab) new_ltEs19(vyw77, vyw78, app(ty_[], cfh)) -> new_ltEs4(vyw77, vyw78, cfh) new_asAs(False, vyw131) -> False new_esEs32(vyw401, vyw3001, ty_Float) -> new_esEs27(vyw401, vyw3001) new_compare30(vyw40, vyw300, app(app(app(ty_@3, cce), ccf), ccg)) -> new_compare18(vyw40, vyw300, cce, ccf, ccg) new_esEs19(Left(vyw400), Right(vyw3000), dag, dah) -> False new_esEs19(Right(vyw400), Left(vyw3000), dag, dah) -> False new_compare28(vyw70, vyw71, True, fba, bah) -> EQ new_esEs35(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_lt20(vyw701, vyw711, ty_Float) -> new_lt12(vyw701, vyw711) new_ltEs20(vyw70, vyw71, ty_Bool) -> new_ltEs10(vyw70, vyw71) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_Ratio, ebe)) -> new_esEs21(vyw400, vyw3000, ebe) new_esEs20(@2(vyw400, vyw401), @2(vyw3000, vyw3001), dba, dbb) -> new_asAs(new_esEs35(vyw400, vyw3000, dba), new_esEs34(vyw401, vyw3001, dbb)) new_ltEs18(Just(vyw700), Just(vyw710), app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs12(vyw700, vyw710, cbc, cbd, cbe) new_esEs28(vyw700, vyw710, app(ty_Ratio, ddb)) -> new_esEs21(vyw700, vyw710, ddb) new_ltEs24(vyw89, vyw90, ty_Ordering) -> new_ltEs15(vyw89, vyw90) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_[], fce), dah) -> new_esEs13(vyw400, vyw3000, fce) new_esEs7(vyw41, vyw301, app(ty_[], dfb)) -> new_esEs13(vyw41, vyw301, dfb) new_esEs8(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_ltEs21(vyw702, vyw712, app(ty_Ratio, fbf)) -> new_ltEs17(vyw702, vyw712, fbf) new_ltEs24(vyw89, vyw90, app(app(ty_@2, ceb), cec)) -> new_ltEs6(vyw89, vyw90, ceb, cec) The set Q consists of the following terms: new_ltEs19(x0, x1, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs13(:(x0, x1), :(x2, x3), x4) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt5(x0, x1) new_compare112(x0, x1, x2, x3, False, x4, x5) new_compare14(x0, x1, True, x2) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, ty_Float) new_ltEs24(x0, x1, ty_Bool) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs18(Just(x0), Just(x1), ty_@0) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_[], x2)) new_primMulInt(Pos(x0), Pos(x1)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_compare111(x0, x1, True, x2, x3) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt7(x0, x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs11(x0, x1, ty_@0) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare15(Nothing, Just(x0), x1) new_ltEs24(x0, x1, ty_@0) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_@0) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs30(x0, x1, ty_Int) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt22(x0, x1, ty_@0) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_ltEs17(x0, x1, x2) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Ordering) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), ty_Int) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare13(GT, LT) new_compare13(LT, GT) new_compare28(x0, x1, False, x2, x3) new_lt13(x0, x1, x2, x3) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(False, False) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Double) new_lt23(x0, x1, ty_Int) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, ty_Double) new_esEs26(x0, x1) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs16(Integer(x0), Integer(x1)) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Char) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs24(Just(x0), Just(x1), ty_Char) new_esEs39(x0, x1, ty_Bool) new_compare6(@0, @0) new_asAs(False, x0) new_lt6(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), ty_Double) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_esEs28(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(Just(x0), Just(x1), ty_Char) new_lt22(x0, x1, ty_Int) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primCmpNat0(Zero, Succ(x0)) new_primPlusNat1(Zero, x0) new_esEs32(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Integer) new_lt23(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), ty_Bool) new_esEs9(x0, x1, ty_Double) new_lt23(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, True, x2, x3) new_esEs38(x0, x1, ty_Int) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) new_ltEs10(False, False) new_esEs11(x0, x1, ty_Int) new_lt19(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_compare26(x0, x1, False, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_primCompAux0(x0, GT) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs19(x0, x1, ty_Double) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs22(@0, @0) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Integer) new_lt11(x0, x1) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_esEs40(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_esEs39(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_lt22(x0, x1, ty_Char) new_esEs33(x0, x1, ty_Float) new_lt18(x0, x1, x2) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare30(x0, x1, ty_Float) new_ltEs8(x0, x1) new_compare7(True, True) new_lt22(x0, x1, ty_Double) new_ltEs15(EQ, EQ) new_compare8(Char(x0), Char(x1)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Double) new_ltEs16(x0, x1) new_ltEs18(Just(x0), Just(x1), ty_Double) new_esEs36(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_esEs14(x0, x1, app(ty_[], x2)) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs14(x0, x1, ty_Float) new_asAs(True, x0) new_compare30(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Float) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs5(x0, x1, ty_Int) new_lt23(x0, x1, app(ty_Maybe, x2)) new_compare111(x0, x1, False, x2, x3) new_ltEs7(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Char) new_esEs24(Nothing, Nothing, x0) new_esEs12(GT) new_ltEs18(Nothing, Nothing, x0) new_ltEs23(x0, x1, ty_@0) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Integer) new_compare30(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_ltEs24(x0, x1, ty_Int) new_lt19(x0, x1, ty_Ordering) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs15(Double(x0, x1), Double(x2, x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, ty_Int) new_compare15(Just(x0), Nothing, x1) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_esEs18(GT, GT) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs14(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs35(x0, x1, ty_Integer) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs24(x0, x1, ty_Char) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Double) new_esEs4(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Ordering) new_ltEs14(Right(x0), Left(x1), x2, x3) new_ltEs14(Left(x0), Right(x1), x2, x3) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs39(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Char) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_esEs32(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Int) new_esEs35(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Float) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_lt22(x0, x1, ty_Integer) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Double) new_esEs8(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Float) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Integer) new_lt19(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_compare13(EQ, GT) new_compare13(GT, EQ) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_Bool) new_fsEs(x0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, False, x2, x3) new_esEs28(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Zero) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_lt22(x0, x1, ty_Ordering) new_esEs36(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Char) new_lt19(x0, x1, ty_Bool) new_lt10(x0, x1, x2, x3) new_esEs4(x0, x1, ty_Double) new_lt20(x0, x1, ty_Double) new_compare7(False, False) new_ltEs7(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Int) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Int) new_esEs18(EQ, EQ) new_compare4([], [], x0) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs10(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Integer) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_pePe(False, x0) new_esEs7(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Integer) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, ty_@0) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Ordering) new_compare4([], :(x0, x1), x2) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs40(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_lt21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, ty_Bool) new_esEs27(Float(x0, x1), Float(x2, x3)) new_compare24(x0, x1, x2, x3, False, x4, x5) new_compare30(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Double) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_esEs40(x0, x1, ty_Int) new_primMulNat0(Zero, Zero) new_esEs6(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs40(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Integer) new_ltEs22(x0, x1, ty_Float) new_esEs7(x0, x1, ty_@0) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_lt19(x0, x1, ty_Integer) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_@0) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_@0) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_lt6(x0, x1, ty_Double) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, False, x2) new_esEs32(x0, x1, ty_Char) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare27(Right(x0), Right(x1), x2, x3) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_esEs8(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Integer) new_compare4(:(x0, x1), :(x2, x3), x4) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_esEs17(True, True) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare10(Integer(x0), Integer(x1)) new_lt8(x0, x1) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_lt21(x0, x1, app(ty_Maybe, x2)) new_compare13(GT, GT) new_esEs37(x0, x1, ty_@0) new_compare13(LT, EQ) new_compare13(EQ, LT) new_primCmpNat0(Succ(x0), Zero) new_esEs32(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Char) new_lt21(x0, x1, ty_Integer) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_esEs31(x0, x1, ty_Bool) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs13([], :(x0, x1), x2) new_esEs4(x0, x1, ty_Integer) new_compare7(True, False) new_compare7(False, True) new_compare26(x0, x1, True, x2, x3) new_ltEs7(x0, x1, ty_Bool) new_esEs24(Nothing, Just(x0), x1) new_esEs34(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Succ(x0)) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Double) new_esEs32(x0, x1, ty_@0) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs23(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_sr(x0, x1) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Ordering) new_esEs5(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_primPlusNat0(Zero, Zero) new_lt6(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare30(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_not(True) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Integer) new_pePe(True, x0) new_esEs4(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, ty_Int) new_esEs39(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_[], x2)) new_lt16(x0, x1) new_primCompAux0(x0, EQ) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Float) new_esEs33(x0, x1, ty_Char) new_esEs40(x0, x1, ty_Char) new_ltEs15(GT, EQ) new_ltEs15(EQ, GT) new_compare30(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Ordering) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_Integer) new_lt14(x0, x1) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Int) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(LT, LT) new_esEs5(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Float) new_lt6(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_esEs31(x0, x1, ty_Ordering) new_esEs17(False, True) new_esEs17(True, False) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_esEs40(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Integer) new_esEs6(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Double) new_compare15(Nothing, Nothing, x0) new_esEs33(x0, x1, ty_@0) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primCompAux0(x0, LT) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_esEs6(x0, x1, ty_Char) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(x0, x1, ty_Float) new_esEs18(LT, LT) new_ltEs5(x0, x1) new_esEs11(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(x0, x1, ty_Integer) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare28(x0, x1, True, x2, x3) new_esEs38(x0, x1, ty_Float) new_compare13(EQ, EQ) new_compare25(x0, x1, True, x2) new_compare24(x0, x1, x2, x3, True, x4, x5) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs37(x0, x1, ty_Ordering) new_compare27(Left(x0), Right(x1), x2, x3) new_compare27(Right(x0), Left(x1), x2, x3) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare14(x0, x1, False, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, x2, x3, True, x4, x5) new_ltEs18(Just(x0), Just(x1), ty_Float) new_esEs7(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_lt23(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare9(x0, x1) new_lt21(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare4(:(x0, x1), [], x2) new_esEs24(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_esEs4(x0, x1, ty_Char) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs10(x0, x1, ty_Float) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Nothing, x1) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_Ordering) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs31(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_lt9(x0, x1, x2, x3, x4) new_esEs35(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Integer) new_esEs14(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Bool) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_ltEs13(x0, x1) new_compare15(Just(x0), Just(x1), x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Float) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs24(x0, x1, ty_Ordering) new_ltEs11(x0, x1) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Float) new_compare30(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_compare11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs13([], [], x0) new_ltEs19(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Double) new_ltEs18(Just(x0), Nothing, x1) new_ltEs15(EQ, LT) new_ltEs18(Just(x0), Just(x1), ty_Int) new_ltEs15(LT, EQ) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Char) new_lt20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt15(x0, x1, x2) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs15(GT, GT) new_esEs12(EQ) new_ltEs21(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_esEs9(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Float) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_ltEs23(x0, x1, ty_Char) new_esEs6(x0, x1, ty_Integer) new_esEs37(x0, x1, ty_Int) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Double) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_ltEs24(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_primEqNat0(Zero, Zero) new_esEs36(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Integer) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs24(Just(x0), Just(x1), ty_@0) new_lt23(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Bool) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Double) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_esEs36(x0, x1, ty_@0) new_lt19(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_@0) new_ltEs4(x0, x1, x2) new_esEs13(:(x0, x1), [], x2) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_esEs12(LT) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, ty_Char) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Bool) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs7(x0, x1, ty_Int) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_ltEs15(LT, LT) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_esEs33(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Ordering) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_ltEs20(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare27(Left(x0), Left(x1), x2, x3) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Float) new_compare30(x0, x1, ty_Ordering) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Integer) new_esEs7(x0, x1, ty_Char) new_esEs31(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs10(x0, x1, ty_Int) new_ltEs10(True, True) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_sr0(Integer(x0), Integer(x1)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs23(Char(x0), Char(x1)) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_ltEs18(Nothing, Just(x0), x1) new_lt20(x0, x1, ty_Char) new_lt6(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) 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_lt1(Left(vyw40), Left(vyw300), baa, bab) -> new_compare21(vyw40, vyw300, new_esEs9(vyw40, vyw300, baa), baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt1(Right(vyw40), Right(vyw300), baa, bab) -> new_compare22(vyw40, vyw300, new_esEs10(vyw40, vyw300, bab), baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare1(Left(vyw40), Left(vyw300), baa, bab) -> new_compare21(vyw40, vyw300, new_esEs9(vyw40, vyw300, baa), baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vyw700), Just(vyw710), app(app(ty_@2, cbf), cbg)) -> new_ltEs0(vyw700, vyw710, cbf, cbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(ty_@2, bdd), bde)) -> new_ltEs0(vyw702, vyw712, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(Just(vyw700), Just(vyw710), app(app(app(ty_@3, cbc), cbd), cbe)) -> new_ltEs(vyw700, vyw710, cbc, cbd, cbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs(vyw702, vyw712, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt0(@2(vyw40, vyw41), @2(vyw300, vyw301), fb, fc) -> new_compare20(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, fb), new_esEs7(vyw41, vyw301, fc)), fb, fc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare0(@2(vyw40, vyw41), @2(vyw300, vyw301), fb, fc) -> new_compare20(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, fb), new_esEs7(vyw41, vyw301, fc)), fb, fc) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_ltEs2(vyw70, vyw71, cbb) -> new_compare3(vyw70, vyw71, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(ty_@2, bfh), bga)) -> new_ltEs0(vyw701, vyw711, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs(vyw701, vyw711, bfe, bff, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(ty_@2, hc), hd)) -> new_ltEs0(vyw114, vyw116, hc, hd) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs(vyw114, vyw116, gh, ha, hb) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_@2, cch), cda)) -> new_compare0(vyw40, vyw300, cch, cda) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw40, vyw300, vyw39, app(app(ty_Either, cdb), cdc)) -> new_compare1(vyw40, vyw300, cdb, cdc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vyw700), Just(vyw710), app(ty_Maybe, ccc)) -> new_ltEs3(vyw700, vyw710, ccc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(ty_Maybe, bea)) -> new_ltEs3(vyw702, vyw712, bea) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(ty_Maybe, bge)) -> new_ltEs3(vyw701, vyw711, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(ty_Maybe, hh)) -> new_ltEs3(vyw114, vyw116, hh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vyw77, vyw78, False, ceh, app(app(ty_@2, cfd), cfe)) -> new_ltEs0(vyw77, vyw78, cfd, cfe) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare22(vyw77, vyw78, False, ceh, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_ltEs(vyw77, vyw78, cfa, cfb, cfc) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare22(vyw77, vyw78, False, ceh, app(ty_Maybe, cga)) -> new_ltEs3(vyw77, vyw78, cga) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs3(Just(vyw700), Just(vyw710), app(ty_[], ccb)) -> new_ltEs2(vyw700, vyw710, ccb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyw700), Just(vyw710), app(app(ty_Either, cbh), cca)) -> new_ltEs1(vyw700, vyw710, cbh, cca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(ty_[], bdh)) -> new_ltEs2(vyw702, vyw712, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(ty_[], bgd)) -> new_ltEs2(vyw701, vyw711, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(ty_[], hg)) -> new_ltEs2(vyw114, vyw116, hg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_compare22(vyw77, vyw78, False, ceh, app(ty_[], cfh)) -> new_ltEs2(vyw77, vyw78, cfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare22(vyw77, vyw78, False, ceh, app(app(ty_Either, cff), cfg)) -> new_ltEs1(vyw77, vyw78, cff, cfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare3(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ccd), ccd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare3(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_compare3(vyw41, vyw301, ccd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt2(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_primCompAux(vyw40, vyw300, new_compare4(vyw41, vyw301, ccd), ccd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt2(:(vyw40, vyw41), :(vyw300, vyw301), ccd) -> new_compare3(vyw41, vyw301, ccd) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_lt3(Just(vyw40), Just(vyw300), cdf) -> new_compare23(vyw40, vyw300, new_esEs11(vyw40, vyw300, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare21(vyw70, vyw71, False, app(ty_[], cbb), bah) -> new_compare3(vyw70, vyw71, cbb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw40, vyw300, vyw39, app(ty_[], cdd)) -> new_compare3(vyw40, vyw300, cdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, baf, app(app(ty_Either, bdf), bdg)) -> new_ltEs1(vyw702, vyw712, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), bfd, app(app(ty_Either, bgb), bgc)) -> new_ltEs1(vyw701, vyw711, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, gg, app(app(ty_Either, he), hf)) -> new_ltEs1(vyw114, vyw116, he, hf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare5(Just(vyw40), Just(vyw300), cdf) -> new_compare23(vyw40, vyw300, new_esEs11(vyw40, vyw300, cdf), cdf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare1(Right(vyw40), Right(vyw300), baa, bab) -> new_compare22(vyw40, vyw300, new_esEs10(vyw40, vyw300, bab), baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), h, ba, bb) -> new_compare2(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, h), new_asAs(new_esEs5(vyw41, vyw301, ba), new_esEs4(vyw42, vyw302, bb))), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), h, ba, bb) -> new_compare2(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, h), new_asAs(new_esEs5(vyw41, vyw301, ba), new_esEs4(vyw42, vyw302, bb))), h, ba, bb) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 2 > 4, 2 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(ty_@2, dc), dd)) -> new_ltEs0(vyw102, vyw105, dc, dd) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vyw89, vyw90, False, app(app(ty_@2, ceb), cec)) -> new_ltEs0(vyw89, vyw90, ceb, cec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(app(ty_@3, cg), da), db)) -> new_ltEs(vyw102, vyw105, cg, da, db) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare23(vyw89, vyw90, False, app(app(app(ty_@3, cdg), cdh), cea)) -> new_ltEs(vyw89, vyw90, cdg, cdh, cea) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(app(ty_@3, beb), bec), bed), bee) -> new_lt(vyw700, vyw710, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(app(ty_@3, fd), ff), fg), fh) -> new_lt(vyw113, vyw115, fd, ff, fg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(ty_Maybe, dh)) -> new_ltEs3(vyw102, vyw105, dh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vyw89, vyw90, False, app(ty_Maybe, ceg)) -> new_ltEs3(vyw89, vyw90, ceg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(ty_[], dg)) -> new_ltEs2(vyw102, vyw105, dg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare23(vyw89, vyw90, False, app(ty_[], cef)) -> new_ltEs2(vyw89, vyw90, cef) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, cf, app(app(ty_Either, de), df)) -> new_ltEs1(vyw102, vyw105, de, df) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare23(vyw89, vyw90, False, app(app(ty_Either, ced), cee)) -> new_ltEs1(vyw89, vyw90, ced, cee) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw40, vyw300, vyw39, app(ty_Maybe, cde)) -> new_compare5(vyw40, vyw300, cde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw40, vyw300, vyw39, app(app(app(ty_@3, cce), ccf), ccg)) -> new_compare(vyw40, vyw300, cce, ccf, ccg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(ty_Maybe, bfc), bee) -> new_lt3(vyw700, vyw710, bfc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(ty_Maybe, gf), fh) -> new_lt3(vyw113, vyw115, gf) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(ty_[], bfb), bee) -> new_lt2(vyw700, vyw710, bfb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(ty_[], ge), fh) -> new_lt2(vyw113, vyw115, ge) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(ty_Either, beh), bfa), bee) -> new_lt1(vyw700, vyw710, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw700, vyw701), @2(vyw710, vyw711), app(app(ty_@2, bef), beg), bee) -> new_lt0(vyw700, vyw710, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_Either, gc), gd), fh) -> new_lt1(vyw113, vyw115, gc, gd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare20(vyw113, vyw114, vyw115, vyw116, False, app(app(ty_@2, ga), gb), fh) -> new_lt0(vyw113, vyw115, ga, gb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_ltEs1(Left(vyw700), Left(vyw710), app(app(ty_@2, bhb), bhc), bha) -> new_ltEs0(vyw700, vyw710, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(ty_@2, cad), cae)) -> new_ltEs0(vyw700, vyw710, cad, cae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vyw700), Left(vyw710), app(app(app(ty_@3, bgf), bgg), bgh), bha) -> new_ltEs(vyw700, vyw710, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(app(ty_@3, caa), cab), cac)) -> new_ltEs(vyw700, vyw710, caa, cab, cac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(ty_Maybe, cba)) -> new_ltEs3(vyw700, vyw710, cba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Left(vyw700), Left(vyw710), app(ty_Maybe, bhg), bha) -> new_ltEs3(vyw700, vyw710, bhg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Left(vyw700), Left(vyw710), app(ty_[], bhf), bha) -> new_ltEs2(vyw700, vyw710, bhf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(ty_[], cah)) -> new_ltEs2(vyw700, vyw710, cah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(Right(vyw700), Right(vyw710), bhh, app(app(ty_Either, caf), cag)) -> new_ltEs1(vyw700, vyw710, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(Left(vyw700), Left(vyw710), app(app(ty_Either, bhd), bhe), bha) -> new_ltEs1(vyw700, vyw710, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(ty_@2, cad), cae)), bah) -> new_ltEs0(vyw700, vyw710, cad, cae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(ty_@2, bdd), bde)), bah) -> new_ltEs0(vyw702, vyw712, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(ty_@2, bhb), bhc)), bha), bah) -> new_ltEs0(vyw700, vyw710, bhb, bhc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(ty_@2, bfh), bga)), bah) -> new_ltEs0(vyw701, vyw711, bfh, bga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(ty_@2, cbf), cbg)), bah) -> new_ltEs0(vyw700, vyw710, cbf, cbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(app(ty_@3, bac), bad), bae), baf, bag) -> new_lt(vyw700, vyw710, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(app(ty_@3, bbh), bca), bcb), bag) -> new_lt(vyw701, vyw711, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(ty_Maybe, bbf), baf, bag) -> new_lt3(vyw700, vyw710, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(ty_Maybe, bch), bag) -> new_lt3(vyw701, vyw711, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(ty_[], bcg), bag) -> new_lt2(vyw701, vyw711, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(ty_[], bbe), baf, bag) -> new_lt2(vyw700, vyw710, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(ty_Either, bce), bcf), bag) -> new_lt1(vyw701, vyw711, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(ty_Either, bbc), bbd), baf, bag) -> new_lt1(vyw700, vyw710, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), app(app(ty_@2, bba), bbb), baf, bag) -> new_lt0(vyw700, vyw710, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), bbg, app(app(ty_@2, bcc), bcd), bag) -> new_lt0(vyw701, vyw711, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(app(ty_@3, bfe), bff), bfg)), bah) -> new_ltEs(vyw701, vyw711, bfe, bff, bfg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(app(ty_@3, cbc), cbd), cbe)), bah) -> new_ltEs(vyw700, vyw710, cbc, cbd, cbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(app(ty_@3, bda), bdb), bdc)), bah) -> new_ltEs(vyw702, vyw712, bda, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(app(ty_@3, bgf), bgg), bgh)), bha), bah) -> new_ltEs(vyw700, vyw710, bgf, bgg, bgh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(app(ty_@3, caa), cab), cac)), bah) -> new_ltEs(vyw700, vyw710, caa, cab, cac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(ty_Maybe, bge)), bah) -> new_ltEs3(vyw701, vyw711, bge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(ty_Maybe, bhg)), bha), bah) -> new_ltEs3(vyw700, vyw710, bhg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(ty_Maybe, bea)), bah) -> new_ltEs3(vyw702, vyw712, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(ty_Maybe, cba)), bah) -> new_ltEs3(vyw700, vyw710, cba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(ty_Maybe, ccc)), bah) -> new_ltEs3(vyw700, vyw710, ccc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(ty_[], bgd)), bah) -> new_ltEs2(vyw701, vyw711, bgd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(ty_[], cah)), bah) -> new_ltEs2(vyw700, vyw710, cah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(ty_[], ccb)), bah) -> new_ltEs2(vyw700, vyw710, ccb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(ty_[], bhf)), bha), bah) -> new_ltEs2(vyw700, vyw710, bhf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(ty_[], bdh)), bah) -> new_ltEs2(vyw702, vyw712, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Just(vyw700), Just(vyw710), False, app(ty_Maybe, app(app(ty_Either, cbh), cca)), bah) -> new_ltEs1(vyw700, vyw710, cbh, cca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, bfd), app(app(ty_Either, bgb), bgc)), bah) -> new_ltEs1(vyw701, vyw711, bgb, bgc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(vyw700), Left(vyw710), False, app(app(ty_Either, app(app(ty_Either, bhd), bhe)), bha), bah) -> new_ltEs1(vyw700, vyw710, bhd, bhe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(vyw700), Right(vyw710), False, app(app(ty_Either, bhh), app(app(ty_Either, caf), cag)), bah) -> new_ltEs1(vyw700, vyw710, caf, cag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), baf), app(app(ty_Either, bdf), bdg)), bah) -> new_ltEs1(vyw702, vyw712, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(app(ty_@3, bac), bad), bae)), baf), bag), bah) -> new_lt(vyw700, vyw710, bac, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(app(ty_@3, bbh), bca), bcb)), bag), bah) -> new_lt(vyw701, vyw711, bbh, bca, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(app(ty_@3, beb), bec), bed)), bee), bah) -> new_lt(vyw700, vyw710, beb, bec, bed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(ty_Maybe, bch)), bag), bah) -> new_lt3(vyw701, vyw711, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(ty_Maybe, bbf)), baf), bag), bah) -> new_lt3(vyw700, vyw710, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(ty_Maybe, bfc)), bee), bah) -> new_lt3(vyw700, vyw710, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(ty_[], bfb)), bee), bah) -> new_lt2(vyw700, vyw710, bfb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(ty_[], bbe)), baf), bag), bah) -> new_lt2(vyw700, vyw710, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(ty_[], bcg)), bag), bah) -> new_lt2(vyw701, vyw711, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(ty_Either, bce), bcf)), bag), bah) -> new_lt1(vyw701, vyw711, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(ty_Either, beh), bfa)), bee), bah) -> new_lt1(vyw700, vyw710, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(ty_Either, bbc), bbd)), baf), bag), bah) -> new_lt1(vyw700, vyw710, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), baf), bag), bah) -> new_lt0(vyw700, vyw710, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), False, app(app(app(ty_@3, bbg), app(app(ty_@2, bcc), bcd)), bag), bah) -> new_lt0(vyw701, vyw711, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(@2(vyw700, vyw701), @2(vyw710, vyw711), False, app(app(ty_@2, app(app(ty_@2, bef), beg)), bee), bah) -> new_lt0(vyw700, vyw710, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(app(ty_@3, ea), eb), ec), cf, bg) -> new_lt(vyw100, vyw103, ea, eb, ec) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(app(ty_@3, bd), be), bf), bg) -> new_lt(vyw101, vyw104, bd, be, bf) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(ty_Maybe, ce), bg) -> new_lt3(vyw101, vyw104, ce) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_Maybe, fa), cf, bg) -> new_lt3(vyw100, vyw103, fa) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(ty_[], eh), cf, bg) -> new_lt2(vyw100, vyw103, eh) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(ty_[], cd), bg) -> new_lt2(vyw101, vyw104, cd) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_Either, ef), eg), cf, bg) -> new_lt1(vyw100, vyw103, ef, eg) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(ty_Either, cb), cc), bg) -> new_lt1(vyw101, vyw104, cb, cc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, bc, app(app(ty_@2, bh), ca), bg) -> new_lt0(vyw101, vyw104, bh, ca) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare2(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, app(app(ty_@2, ed), ee), cf, bg) -> new_lt0(vyw100, vyw103, ed, ee) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], hh)) -> new_esEs1(vyw400, vyw3000, hh) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, gh)) -> new_esEs2(vyw400, vyw3000, gh) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw400, vyw3000, ce, cf) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(ty_Maybe, ec)) -> new_esEs2(vyw401, vyw3001, ec) new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs2(vyw400, vyw3000, bf) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw401, vyw3001, df, dg) new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw400, vyw3000, bab, bac, bad) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw400, vyw3000, bdh, bea, beb) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw400, vyw3000, db, dc, dd) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw402, vyw3002, bag, bah) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw401, vyw3001, dh, ea) new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw400, vyw3000, hf, hg) new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs2(vyw400, vyw3000, baa) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], fd), fa) -> new_esEs1(vyw400, vyw3000, fd) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vyw400, vyw3000, ha, hb, hc) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw402, vyw3002, bbe, bbf, bbg) new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], be), bb) -> new_esEs1(vyw400, vyw3000, be) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw400, vyw3000, fg, fh, ga) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bdf), baf, bcb) -> new_esEs1(vyw400, vyw3000, bdf) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw401, vyw3001, ed, ee, ef) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw400, vyw3000, eg, eh) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_[], bce), bcb) -> new_esEs1(vyw401, vyw3001, bce) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(ty_[], eb)) -> new_esEs1(vyw401, vyw3001, eb) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw401, vyw3001, bcc, bcd) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_[], bbc)) -> new_esEs1(vyw402, vyw3002, bbc) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, ge), gf)) -> new_esEs0(vyw400, vyw3000, ge, gf) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw400, vyw3000, bdd, bde) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw401, vyw3001, bcg, bch, bda) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), gb) -> new_esEs1(vyw401, vyw3001, gb) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw402, vyw3002, bba, bbb) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], cg)) -> new_esEs1(vyw400, vyw3000, cg) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], gg)) -> new_esEs1(vyw400, vyw3000, gg) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs2(vyw400, vyw3000, da) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vyw402, vyw3002, bbd) new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bg, bh, ca) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw400, vyw3000, bc, bd) new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, gc), gd)) -> new_esEs(vyw400, vyw3000, gc, gd) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw400, vyw3000, bdb, bdc) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw400, vyw3000, fb, fc) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bdg), baf, bcb) -> new_esEs2(vyw400, vyw3000, bdg) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw401, vyw3001, bbh, bca) new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw401, vyw3001, bcf) new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ff), fa) -> new_esEs2(vyw400, vyw3000, ff) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) 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_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, gh)) -> new_esEs2(vyw400, vyw3000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs2(vyw400, vyw3000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], hh)) -> new_esEs1(vyw400, vyw3000, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, gc), gd)) -> new_esEs(vyw400, vyw3000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, ge), gf)) -> new_esEs0(vyw400, vyw3000, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vyw400, vyw3000, ha, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw400, vyw3000, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw400, vyw3000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), gb) -> new_esEs1(vyw401, vyw3001, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], gg)) -> new_esEs1(vyw400, vyw3000, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(ty_Maybe, ec)) -> new_esEs2(vyw401, vyw3001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, ff), fa) -> new_esEs2(vyw400, vyw3000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs2(vyw400, vyw3000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs2(vyw400, vyw3000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_Maybe, bbd)) -> new_esEs2(vyw402, vyw3002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, bdg), baf, bcb) -> new_esEs2(vyw400, vyw3000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_Maybe, bcf), bcb) -> new_esEs2(vyw401, vyw3001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], fd), fa) -> new_esEs1(vyw400, vyw3000, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(ty_[], eb)) -> new_esEs1(vyw401, vyw3001, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], be), bb) -> new_esEs1(vyw400, vyw3000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], cg)) -> new_esEs1(vyw400, vyw3000, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], bdf), baf, bcb) -> new_esEs1(vyw400, vyw3000, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(ty_[], bce), bcb) -> new_esEs1(vyw401, vyw3001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(ty_[], bbc)) -> new_esEs1(vyw402, vyw3002, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw401, vyw3001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw400, vyw3000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw401, vyw3001, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw400, vyw3000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw400, vyw3000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vyw400, vyw401), @2(vyw3000, vyw3001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw401, vyw3001, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw402, vyw3002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw400, vyw3000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw401, vyw3001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw400, vyw3000, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw400, vyw3000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw401, vyw3001, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw400, vyw3000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw402, vyw3002, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw400, vyw3000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw400, vyw3000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw402, vyw3002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw401, vyw3001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw30000), Succ(vyw4100)) -> new_primMulNat(vyw30000, Succ(vyw4100)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) 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(vyw30000), Succ(vyw4100)) -> new_primMulNat(vyw30000, Succ(vyw4100)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM(Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw4, bd, be) -> new_lookupFM2(vyw30, vyw31, vyw32, vyw33, vyw34, vyw4, new_lt24(vyw4, vyw30, be), bd, be) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) new_lookupFM1(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_lookupFM(vyw32, vyw33, bb, bc) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_lookupFM(vyw16, vyw18, h, ba) The TRS R consists of the following rules: new_esEs31(vyw402, vyw3002, app(ty_[], cdc)) -> new_esEs13(vyw402, vyw3002, cdc) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw191) -> True new_ltEs10(False, False) -> True new_ltEs20(vyw70, vyw71, ty_Ordering) -> new_ltEs15(vyw70, vyw71) new_esEs10(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_ltEs23(vyw102, vyw105, ty_Integer) -> new_ltEs9(vyw102, vyw105) new_lt6(vyw700, vyw710, ty_Int) -> new_lt11(vyw700, vyw710) new_lt19(vyw700, vyw710, app(ty_Maybe, ddg)) -> new_lt18(vyw700, vyw710, ddg) new_ltEs18(Nothing, Just(vyw710), dce) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare24(vyw113, vyw114, vyw115, vyw116, True, ehh, faa) -> EQ new_ltEs24(vyw89, vyw90, app(app(ty_Either, gag), gah)) -> new_ltEs14(vyw89, vyw90, gag, gah) new_ltEs24(vyw89, vyw90, app(ty_[], gba)) -> new_ltEs4(vyw89, vyw90, gba) new_compare26(vyw77, vyw78, True, bfg, bfh) -> EQ new_esEs37(vyw700, vyw710, ty_Float) -> new_esEs27(vyw700, vyw710) new_esEs33(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_ltEs20(vyw70, vyw71, ty_Float) -> new_ltEs13(vyw70, vyw71) new_compare16(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Integer) -> new_compare10(new_sr0(vyw40, vyw301), new_sr0(vyw300, vyw41)) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_[], efa)) -> new_ltEs4(vyw700, vyw710, efa) new_ltEs4(vyw70, vyw71, bf) -> new_fsEs(new_compare4(vyw70, vyw71, bf)) new_ltEs18(Just(vyw700), Just(vyw710), app(app(ty_Either, eeg), eeh)) -> new_ltEs14(vyw700, vyw710, eeg, eeh) new_esEs31(vyw402, vyw3002, ty_Char) -> new_esEs23(vyw402, vyw3002) new_esEs5(vyw41, vyw301, app(ty_Ratio, ehc)) -> new_esEs21(vyw41, vyw301, ehc) new_lt4(vyw4, vyw30) -> new_esEs12(new_compare6(vyw4, vyw30)) new_compare111(vyw136, vyw137, True, ebd, ebe) -> LT new_esEs9(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_primMulNat0(Succ(vyw30000), Succ(vyw4100)) -> new_primPlusNat1(new_primMulNat0(vyw30000, Succ(vyw4100)), vyw4100) new_compare30(vyw40, vyw300, ty_Float) -> new_compare19(vyw40, vyw300) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Int) -> new_ltEs5(vyw700, vyw710) new_ltEs15(EQ, LT) -> False new_esEs35(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_esEs36(vyw701, vyw711, app(ty_Ratio, deh)) -> new_esEs21(vyw701, vyw711, deh) new_lt6(vyw700, vyw710, app(app(app(ty_@3, de), df), dg)) -> new_lt9(vyw700, vyw710, de, df, dg) new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(app(ty_@2, ead), eae)) -> new_esEs20(vyw400, vyw3000, ead, eae) new_ltEs19(vyw77, vyw78, ty_Double) -> new_ltEs11(vyw77, vyw78) new_esEs37(vyw700, vyw710, ty_Double) -> new_esEs15(vyw700, vyw710) new_ltEs7(vyw701, vyw711, app(ty_[], fg)) -> new_ltEs4(vyw701, vyw711, fg) new_ltEs15(GT, LT) -> False new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(ty_Ratio, edh)) -> new_ltEs17(vyw700, vyw710, edh) new_esEs19(Left(vyw400), Left(vyw3000), ty_Double, dgf) -> new_esEs15(vyw400, vyw3000) new_lt23(vyw100, vyw103, ty_Integer) -> new_lt7(vyw100, vyw103) new_ltEs19(vyw77, vyw78, app(app(ty_@2, bgd), bge)) -> new_ltEs6(vyw77, vyw78, bgd, bge) new_ltEs7(vyw701, vyw711, ty_Int) -> new_ltEs5(vyw701, vyw711) new_lt14(vyw4, vyw30) -> new_esEs12(new_compare13(vyw4, vyw30)) new_ltEs14(Left(vyw700), Left(vyw710), ty_@0, dcc) -> new_ltEs8(vyw700, vyw710) new_esEs34(vyw401, vyw3001, app(app(ty_@2, chc), chd)) -> new_esEs20(vyw401, vyw3001, chc, chd) new_esEs9(vyw40, vyw300, app(app(app(ty_@3, cag), cah), cba)) -> new_esEs25(vyw40, vyw300, cag, cah, cba) new_lt15(vyw4, vyw30, bff) -> new_esEs12(new_compare4(vyw4, vyw30, bff)) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs6(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_lt6(vyw700, vyw710, ty_Float) -> new_lt12(vyw700, vyw710) new_primCompAux0(vyw83, LT) -> LT new_compare28(vyw70, vyw71, False, dbe, dbf) -> new_compare111(vyw70, vyw71, new_ltEs20(vyw70, vyw71, dbe), dbe, dbf) new_ltEs7(vyw701, vyw711, app(app(app(ty_@3, eg), eh), fa)) -> new_ltEs12(vyw701, vyw711, eg, eh, fa) new_not(True) -> False new_esEs18(GT, GT) -> True new_esEs4(vyw42, vyw302, ty_Ordering) -> new_esEs18(vyw42, vyw302) new_esEs13(:(vyw400, vyw401), :(vyw3000, vyw3001), bg) -> new_asAs(new_esEs14(vyw400, vyw3000, bg), new_esEs13(vyw401, vyw3001, bg)) new_compare17(vyw143, vyw144, False, cge, cgf) -> GT new_esEs33(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs16(vyw70, vyw71) -> new_fsEs(new_compare8(vyw70, vyw71)) new_compare25(vyw89, vyw90, False, gaa) -> new_compare14(vyw89, vyw90, new_ltEs24(vyw89, vyw90, gaa), gaa) new_ltEs24(vyw89, vyw90, ty_Int) -> new_ltEs5(vyw89, vyw90) new_ltEs7(vyw701, vyw711, ty_Double) -> new_ltEs11(vyw701, vyw711) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(app(app(ty_@3, ech), eda), edb)) -> new_ltEs12(vyw700, vyw710, ech, eda, edb) new_compare27(Left(vyw40), Right(vyw300), bhf, bhg) -> LT new_esEs39(vyw101, vyw104, app(ty_Maybe, feb)) -> new_esEs24(vyw101, vyw104, feb) new_esEs11(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_lt22(vyw101, vyw104, ty_Float) -> new_lt12(vyw101, vyw104) new_ltEs7(vyw701, vyw711, app(app(ty_Either, fd), ff)) -> new_ltEs14(vyw701, vyw711, fd, ff) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Char) -> new_esEs23(vyw400, vyw3000) new_esEs6(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_ltEs15(GT, EQ) -> False new_esEs8(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_esEs39(vyw101, vyw104, app(app(ty_@2, fdd), fde)) -> new_esEs20(vyw101, vyw104, fdd, fde) new_compare29(Double(vyw40, Pos(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_esEs32(vyw401, vyw3001, ty_Ordering) -> new_esEs18(vyw401, vyw3001) new_compare7(True, True) -> EQ new_esEs31(vyw402, vyw3002, app(ty_Ratio, cdd)) -> new_esEs21(vyw402, vyw3002, cdd) new_esEs4(vyw42, vyw302, ty_@0) -> new_esEs22(vyw42, vyw302) new_esEs32(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_esEs24(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs22(vyw400, vyw3000) new_ltEs7(vyw701, vyw711, app(app(ty_@2, fb), fc)) -> new_ltEs6(vyw701, vyw711, fb, fc) new_compare210(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, True, fcf, fcg, fch) -> EQ new_lt11(vyw4, vyw30) -> new_esEs12(new_compare9(vyw4, vyw30)) new_esEs9(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_ltEs21(vyw702, vyw712, ty_Double) -> new_ltEs11(vyw702, vyw712) new_compare13(LT, LT) -> EQ new_primCmpInt(Pos(Succ(vyw400)), Neg(vyw300)) -> GT new_lt24(vyw4, vyw30, ty_Int) -> new_lt11(vyw4, vyw30) new_ltEs21(vyw702, vyw712, app(app(ty_@2, dfe), dff)) -> new_ltEs6(vyw702, vyw712, dfe, dff) new_ltEs22(vyw114, vyw116, ty_@0) -> new_ltEs8(vyw114, vyw116) new_compare9(vyw4, vyw30) -> new_primCmpInt(vyw4, vyw30) new_esEs10(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_compare112(vyw180, vyw181, vyw182, vyw183, True, dgd, dge) -> LT new_compare14(vyw153, vyw154, False, bbd) -> GT new_ltEs18(Just(vyw700), Just(vyw710), ty_Char) -> new_ltEs16(vyw700, vyw710) new_compare13(GT, EQ) -> GT new_lt22(vyw101, vyw104, ty_Char) -> new_lt16(vyw101, vyw104) new_esEs38(vyw113, vyw115, ty_Integer) -> new_esEs16(vyw113, vyw115) new_esEs34(vyw401, vyw3001, app(ty_Maybe, chg)) -> new_esEs24(vyw401, vyw3001, chg) new_ltEs18(Just(vyw700), Just(vyw710), ty_Bool) -> new_ltEs10(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(app(ty_Either, egf), egg)) -> new_esEs19(vyw41, vyw301, egf, egg) new_esEs11(vyw40, vyw300, app(ty_[], bdd)) -> new_esEs13(vyw40, vyw300, bdd) new_primCmpNat0(Zero, Succ(vyw3000)) -> LT new_esEs19(Left(vyw400), Left(vyw3000), ty_Int, dgf) -> new_esEs26(vyw400, vyw3000) new_lt20(vyw701, vyw711, app(ty_[], deg)) -> new_lt15(vyw701, vyw711, deg) new_lt6(vyw700, vyw710, ty_Double) -> new_lt8(vyw700, vyw710) new_ltEs19(vyw77, vyw78, app(app(app(ty_@3, bga), bgb), bgc)) -> new_ltEs12(vyw77, vyw78, bga, bgb, bgc) new_esEs37(vyw700, vyw710, ty_Int) -> new_esEs26(vyw700, vyw710) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_Ratio, dhd), dgf) -> new_esEs21(vyw400, vyw3000, dhd) new_esEs18(LT, LT) -> True new_ltEs19(vyw77, vyw78, ty_Int) -> new_ltEs5(vyw77, vyw78) new_esEs38(vyw113, vyw115, ty_Bool) -> new_esEs17(vyw113, vyw115) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_[], ece), dcc) -> new_ltEs4(vyw700, vyw710, ece) new_compare113(vyw180, vyw181, vyw182, vyw183, True, vyw185, dgd, dge) -> new_compare112(vyw180, vyw181, vyw182, vyw183, True, dgd, dge) new_esEs40(vyw100, vyw103, ty_@0) -> new_esEs22(vyw100, vyw103) new_esEs8(vyw40, vyw300, app(app(ty_@2, baa), bab)) -> new_esEs20(vyw40, vyw300, baa, bab) new_compare30(vyw40, vyw300, app(ty_[], fhf)) -> new_compare4(vyw40, vyw300, fhf) new_lt19(vyw700, vyw710, ty_Double) -> new_lt8(vyw700, vyw710) new_esEs33(vyw400, vyw3000, app(ty_Ratio, cfh)) -> new_esEs21(vyw400, vyw3000, cfh) new_esEs39(vyw101, vyw104, ty_Char) -> new_esEs23(vyw101, vyw104) new_esEs8(vyw40, vyw300, app(ty_Maybe, bae)) -> new_esEs24(vyw40, vyw300, bae) new_esEs5(vyw41, vyw301, ty_Integer) -> new_esEs16(vyw41, vyw301) new_esEs6(vyw40, vyw300, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs25(vyw40, vyw300, ccd, cce, ccf) new_ltEs23(vyw102, vyw105, app(ty_Maybe, ffd)) -> new_ltEs18(vyw102, vyw105, ffd) new_fsEs(vyw192) -> new_not(new_esEs18(vyw192, GT)) new_lt22(vyw101, vyw104, app(ty_[], fdh)) -> new_lt15(vyw101, vyw104, fdh) new_esEs10(vyw40, vyw300, app(app(app(ty_@3, cca), ccb), ccc)) -> new_esEs25(vyw40, vyw300, cca, ccb, ccc) new_esEs39(vyw101, vyw104, app(ty_[], fdh)) -> new_esEs13(vyw101, vyw104, fdh) new_esEs8(vyw40, vyw300, app(ty_Ratio, bad)) -> new_esEs21(vyw40, vyw300, bad) new_lt24(vyw4, vyw30, app(ty_Maybe, bcg)) -> new_lt18(vyw4, vyw30, bcg) new_esEs32(vyw401, vyw3001, ty_@0) -> new_esEs22(vyw401, vyw3001) new_ltEs21(vyw702, vyw712, app(app(ty_Either, dfg), dfh)) -> new_ltEs14(vyw702, vyw712, dfg, dfh) new_ltEs22(vyw114, vyw116, ty_Char) -> new_ltEs16(vyw114, vyw116) new_compare30(vyw40, vyw300, app(ty_Ratio, fhg)) -> new_compare16(vyw40, vyw300, fhg) new_esEs21(:%(vyw400, vyw401), :%(vyw3000, vyw3001), gb) -> new_asAs(new_esEs30(vyw400, vyw3000, gb), new_esEs29(vyw401, vyw3001, gb)) new_ltEs10(True, False) -> False new_esEs6(vyw40, vyw300, app(ty_Maybe, beb)) -> new_esEs24(vyw40, vyw300, beb) new_esEs31(vyw402, vyw3002, app(app(ty_Either, ccg), cch)) -> new_esEs19(vyw402, vyw3002, ccg, cch) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Bool) -> new_ltEs10(vyw700, vyw710) new_esEs4(vyw42, vyw302, ty_Float) -> new_esEs27(vyw42, vyw302) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Double) -> new_ltEs11(vyw700, vyw710) new_esEs32(vyw401, vyw3001, ty_Double) -> new_esEs15(vyw401, vyw3001) new_esEs31(vyw402, vyw3002, ty_Bool) -> new_esEs17(vyw402, vyw3002) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(app(ty_Either, ede), edf)) -> new_ltEs14(vyw700, vyw710, ede, edf) new_esEs28(vyw700, vyw710, ty_Integer) -> new_esEs16(vyw700, vyw710) new_primCmpInt(Neg(Zero), Pos(Succ(vyw3000))) -> LT new_ltEs21(vyw702, vyw712, app(ty_Maybe, dgc)) -> new_ltEs18(vyw702, vyw712, dgc) new_esEs7(vyw41, vyw301, ty_Integer) -> new_esEs16(vyw41, vyw301) new_primMulInt(Pos(vyw3000), Pos(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) new_esEs5(vyw41, vyw301, ty_Char) -> new_esEs23(vyw41, vyw301) new_ltEs7(vyw701, vyw711, ty_Char) -> new_ltEs16(vyw701, vyw711) new_compare13(EQ, LT) -> GT new_esEs13(:(vyw400, vyw401), [], bg) -> False new_esEs13([], :(vyw3000, vyw3001), bg) -> False new_esEs11(vyw40, vyw300, app(app(ty_Either, bch), bda)) -> new_esEs19(vyw40, vyw300, bch, bda) new_lt21(vyw113, vyw115, app(app(ty_Either, fag), fah)) -> new_lt13(vyw113, vyw115, fag, fah) new_esEs19(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, dhf), dhg), dhh), dgf) -> new_esEs25(vyw400, vyw3000, dhf, dhg, dhh) new_lt24(vyw4, vyw30, ty_Float) -> new_lt12(vyw4, vyw30) new_ltEs23(vyw102, vyw105, ty_Float) -> new_ltEs13(vyw102, vyw105) new_ltEs24(vyw89, vyw90, ty_Bool) -> new_ltEs10(vyw89, vyw90) new_esEs40(vyw100, vyw103, ty_Integer) -> new_esEs16(vyw100, vyw103) new_primMulNat0(Succ(vyw30000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw4100)) -> Zero new_esEs24(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs16(vyw400, vyw3000) new_compare13(GT, LT) -> GT new_esEs24(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_primPlusNat1(Succ(vyw1930), vyw4100) -> Succ(Succ(new_primPlusNat0(vyw1930, vyw4100))) new_gt(vyw18, vyw13, ty_Double) -> new_esEs41(new_compare29(vyw18, vyw13)) new_ltEs21(vyw702, vyw712, ty_Int) -> new_ltEs5(vyw702, vyw712) new_primPlusNat0(Succ(vyw19300), Zero) -> Succ(vyw19300) new_primPlusNat0(Zero, Succ(vyw41000)) -> Succ(vyw41000) new_esEs36(vyw701, vyw711, app(ty_[], deg)) -> new_esEs13(vyw701, vyw711, deg) new_compare4(:(vyw40, vyw41), :(vyw300, vyw301), bff) -> new_primCompAux1(vyw40, vyw300, new_compare4(vyw41, vyw301, bff), bff) new_ltEs7(vyw701, vyw711, app(ty_Maybe, ga)) -> new_ltEs18(vyw701, vyw711, ga) new_primPlusNat1(Zero, vyw4100) -> Succ(vyw4100) new_esEs40(vyw100, vyw103, ty_Bool) -> new_esEs17(vyw100, vyw103) new_esEs31(vyw402, vyw3002, app(ty_Maybe, cde)) -> new_esEs24(vyw402, vyw3002, cde) new_esEs7(vyw41, vyw301, app(app(ty_Either, ge), gf)) -> new_esEs19(vyw41, vyw301, ge, gf) new_compare13(EQ, EQ) -> EQ new_lt22(vyw101, vyw104, app(app(ty_@2, fdd), fde)) -> new_lt10(vyw101, vyw104, fdd, fde) new_compare30(vyw40, vyw300, ty_Double) -> new_compare29(vyw40, vyw300) new_ltEs14(Left(vyw700), Left(vyw710), ty_Char, dcc) -> new_ltEs16(vyw700, vyw710) new_lt6(vyw700, vyw710, ty_Ordering) -> new_lt14(vyw700, vyw710) new_esEs18(EQ, EQ) -> True new_ltEs19(vyw77, vyw78, app(app(ty_Either, bgf), bgg)) -> new_ltEs14(vyw77, vyw78, bgf, bgg) new_lt6(vyw700, vyw710, app(app(ty_@2, dh), ea)) -> new_lt10(vyw700, vyw710, dh, ea) new_lt23(vyw100, vyw103, app(app(ty_Either, fgb), fgc)) -> new_lt13(vyw100, vyw103, fgb, fgc) new_esEs28(vyw700, vyw710, ty_Bool) -> new_esEs17(vyw700, vyw710) new_esEs12(LT) -> True new_esEs4(vyw42, vyw302, ty_Int) -> new_esEs26(vyw42, vyw302) new_ltEs19(vyw77, vyw78, ty_Char) -> new_ltEs16(vyw77, vyw78) new_esEs31(vyw402, vyw3002, app(app(ty_@2, cda), cdb)) -> new_esEs20(vyw402, vyw3002, cda, cdb) new_esEs19(Left(vyw400), Left(vyw3000), ty_Float, dgf) -> new_esEs27(vyw400, vyw3000) new_ltEs10(False, True) -> True new_esEs33(vyw400, vyw3000, app(app(ty_Either, cfc), cfd)) -> new_esEs19(vyw400, vyw3000, cfc, cfd) new_esEs32(vyw401, vyw3001, app(ty_Maybe, ceg)) -> new_esEs24(vyw401, vyw3001, ceg) new_ltEs17(vyw70, vyw71, dcd) -> new_fsEs(new_compare16(vyw70, vyw71, dcd)) new_ltEs20(vyw70, vyw71, ty_Integer) -> new_ltEs9(vyw70, vyw71) new_esEs39(vyw101, vyw104, ty_Int) -> new_esEs26(vyw101, vyw104) new_esEs6(vyw40, vyw300, app(app(ty_@2, cgg), cgh)) -> new_esEs20(vyw40, vyw300, cgg, cgh) new_lt7(vyw4, vyw30) -> new_esEs12(new_compare10(vyw4, vyw30)) new_esEs30(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_ltEs11(vyw70, vyw71) -> new_fsEs(new_compare29(vyw70, vyw71)) new_ltEs22(vyw114, vyw116, ty_Float) -> new_ltEs13(vyw114, vyw116) new_compare25(vyw89, vyw90, True, gaa) -> EQ new_esEs6(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_lt20(vyw701, vyw711, app(ty_Ratio, deh)) -> new_lt17(vyw701, vyw711, deh) new_esEs6(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_esEs11(vyw40, vyw300, app(ty_Ratio, bde)) -> new_esEs21(vyw40, vyw300, bde) new_esEs7(vyw41, vyw301, ty_@0) -> new_esEs22(vyw41, vyw301) new_esEs8(vyw40, vyw300, app(app(ty_Either, hg), hh)) -> new_esEs19(vyw40, vyw300, hg, hh) new_ltEs18(Just(vyw700), Just(vyw710), ty_Int) -> new_ltEs5(vyw700, vyw710) new_esEs14(vyw400, vyw3000, app(ty_[], cd)) -> new_esEs13(vyw400, vyw3000, cd) new_esEs32(vyw401, vyw3001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs25(vyw401, vyw3001, ceh, cfa, cfb) new_lt22(vyw101, vyw104, ty_Ordering) -> new_lt14(vyw101, vyw104) new_esEs5(vyw41, vyw301, ty_Bool) -> new_esEs17(vyw41, vyw301) new_ltEs14(Left(vyw700), Right(vyw710), dcb, dcc) -> True new_esEs33(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_lt19(vyw700, vyw710, ty_Ordering) -> new_lt14(vyw700, vyw710) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_Maybe, dhe), dgf) -> new_esEs24(vyw400, vyw3000, dhe) new_lt21(vyw113, vyw115, app(app(app(ty_@3, fab), fac), fad)) -> new_lt9(vyw113, vyw115, fab, fac, fad) new_compare26(vyw77, vyw78, False, bfg, bfh) -> new_compare17(vyw77, vyw78, new_ltEs19(vyw77, vyw78, bfh), bfg, bfh) new_ltEs14(Left(vyw700), Left(vyw710), ty_Ordering, dcc) -> new_ltEs15(vyw700, vyw710) new_ltEs23(vyw102, vyw105, ty_Double) -> new_ltEs11(vyw102, vyw105) new_lt9(vyw4, vyw30, bhc, bhd, bhe) -> new_esEs12(new_compare18(vyw4, vyw30, bhc, bhd, bhe)) new_compare15(Nothing, Nothing, bcg) -> EQ new_esEs6(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_lt20(vyw701, vyw711, app(app(ty_Either, dee), def)) -> new_lt13(vyw701, vyw711, dee, def) new_esEs40(vyw100, vyw103, app(app(app(ty_@3, ffe), fff), ffg)) -> new_esEs25(vyw100, vyw103, ffe, fff, ffg) new_esEs12(GT) -> False new_lt19(vyw700, vyw710, ty_Float) -> new_lt12(vyw700, vyw710) new_esEs12(EQ) -> False new_lt24(vyw4, vyw30, ty_Char) -> new_lt16(vyw4, vyw30) new_esEs38(vyw113, vyw115, ty_Char) -> new_esEs23(vyw113, vyw115) new_esEs9(vyw40, vyw300, app(app(ty_@2, cab), cac)) -> new_esEs20(vyw40, vyw300, cab, cac) new_esEs8(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_ltEs23(vyw102, vyw105, app(app(ty_@2, fef), feg)) -> new_ltEs6(vyw102, vyw105, fef, feg) new_ltEs14(Left(vyw700), Left(vyw710), ty_Int, dcc) -> new_ltEs5(vyw700, vyw710) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_@0) -> new_ltEs8(vyw700, vyw710) new_compare30(vyw40, vyw300, app(app(ty_Either, fhd), fhe)) -> new_compare27(vyw40, vyw300, fhd, fhe) new_lt6(vyw700, vyw710, ty_@0) -> new_lt4(vyw700, vyw710) new_esEs7(vyw41, vyw301, app(app(app(ty_@3, hd), he), hf)) -> new_esEs25(vyw41, vyw301, hd, he, hf) new_esEs34(vyw401, vyw3001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs25(vyw401, vyw3001, chh, daa, dab) new_esEs36(vyw701, vyw711, app(ty_Maybe, dfa)) -> new_esEs24(vyw701, vyw711, dfa) new_esEs19(Left(vyw400), Left(vyw3000), ty_@0, dgf) -> new_esEs22(vyw400, vyw3000) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs10(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_esEs24(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs17(vyw400, vyw3000) new_ltEs12(@3(vyw700, vyw701, vyw702), @3(vyw710, vyw711, vyw712), dbg, dbh, dca) -> new_pePe(new_lt19(vyw700, vyw710, dbg), new_asAs(new_esEs37(vyw700, vyw710, dbg), new_pePe(new_lt20(vyw701, vyw711, dbh), new_asAs(new_esEs36(vyw701, vyw711, dbh), new_ltEs21(vyw702, vyw712, dca))))) new_esEs14(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_esEs35(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_esEs14(vyw400, vyw3000, app(app(ty_Either, bh), ca)) -> new_esEs19(vyw400, vyw3000, bh, ca) new_esEs29(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_Maybe, efc)) -> new_ltEs18(vyw700, vyw710, efc) new_esEs19(Left(vyw400), Left(vyw3000), ty_Char, dgf) -> new_esEs23(vyw400, vyw3000) new_compare30(vyw40, vyw300, ty_@0) -> new_compare6(vyw40, vyw300) new_esEs24(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs25(vyw400, vyw3000, bfb, bfc, bfd) new_esEs38(vyw113, vyw115, app(ty_[], fba)) -> new_esEs13(vyw113, vyw115, fba) new_esEs24(Just(vyw400), Just(vyw3000), app(app(ty_Either, bec), bed)) -> new_esEs19(vyw400, vyw3000, bec, bed) new_esEs24(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs27(vyw400, vyw3000) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_esEs6(vyw40, vyw300, app(ty_[], bg)) -> new_esEs13(vyw40, vyw300, bg) new_esEs31(vyw402, vyw3002, ty_Integer) -> new_esEs16(vyw402, vyw3002) new_esEs39(vyw101, vyw104, ty_Float) -> new_esEs27(vyw101, vyw104) new_lt23(vyw100, vyw103, ty_Bool) -> new_lt5(vyw100, vyw103) new_esEs39(vyw101, vyw104, app(app(app(ty_@3, fda), fdb), fdc)) -> new_esEs25(vyw101, vyw104, fda, fdb, fdc) new_primCmpInt(Pos(Succ(vyw400)), Pos(vyw300)) -> new_primCmpNat0(Succ(vyw400), vyw300) new_esEs38(vyw113, vyw115, ty_@0) -> new_esEs22(vyw113, vyw115) new_esEs39(vyw101, vyw104, ty_Bool) -> new_esEs17(vyw101, vyw104) new_esEs10(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_esEs4(vyw42, vyw302, ty_Integer) -> new_esEs16(vyw42, vyw302) new_esEs40(vyw100, vyw103, ty_Ordering) -> new_esEs18(vyw100, vyw103) new_compare10(Integer(vyw40), Integer(vyw300)) -> new_primCmpInt(vyw40, vyw300) new_esEs39(vyw101, vyw104, app(app(ty_Either, fdf), fdg)) -> new_esEs19(vyw101, vyw104, fdf, fdg) new_esEs34(vyw401, vyw3001, ty_Ordering) -> new_esEs18(vyw401, vyw3001) new_compare7(False, True) -> LT new_esEs10(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs34(vyw401, vyw3001, ty_Char) -> new_esEs23(vyw401, vyw3001) new_compare4(:(vyw40, vyw41), [], bff) -> GT new_esEs14(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_esEs34(vyw401, vyw3001, app(app(ty_Either, cha), chb)) -> new_esEs19(vyw401, vyw3001, cha, chb) new_esEs19(Left(vyw400), Left(vyw3000), ty_Ordering, dgf) -> new_esEs18(vyw400, vyw3000) new_esEs40(vyw100, vyw103, ty_Float) -> new_esEs27(vyw100, vyw103) new_ltEs14(Left(vyw700), Left(vyw710), app(app(ty_@2, eca), ecb), dcc) -> new_ltEs6(vyw700, vyw710, eca, ecb) new_esEs4(vyw42, vyw302, app(ty_Maybe, egb)) -> new_esEs24(vyw42, vyw302, egb) new_ltEs18(Just(vyw700), Just(vyw710), ty_@0) -> new_ltEs8(vyw700, vyw710) new_esEs40(vyw100, vyw103, app(app(ty_Either, fgb), fgc)) -> new_esEs19(vyw100, vyw103, fgb, fgc) new_compare13(GT, GT) -> EQ new_esEs31(vyw402, vyw3002, ty_Int) -> new_esEs26(vyw402, vyw3002) new_lt6(vyw700, vyw710, ty_Bool) -> new_lt5(vyw700, vyw710) new_esEs39(vyw101, vyw104, ty_Ordering) -> new_esEs18(vyw101, vyw104) new_lt20(vyw701, vyw711, ty_Ordering) -> new_lt14(vyw701, vyw711) new_ltEs15(EQ, EQ) -> True new_esEs40(vyw100, vyw103, ty_Char) -> new_esEs23(vyw100, vyw103) new_compare110(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, vyw172, bba, bbb, bbc) -> new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, vyw172, bba, bbb, bbc) new_ltEs20(vyw70, vyw71, app(ty_Maybe, dce)) -> new_ltEs18(vyw70, vyw71, dce) new_lt19(vyw700, vyw710, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt9(vyw700, vyw710, dcf, dcg, dch) new_lt20(vyw701, vyw711, ty_Integer) -> new_lt7(vyw701, vyw711) new_gt(vyw18, vyw13, app(ty_Ratio, bce)) -> new_esEs41(new_compare16(vyw18, vyw13, bce)) new_esEs5(vyw41, vyw301, app(ty_Maybe, ehd)) -> new_esEs24(vyw41, vyw301, ehd) new_compare30(vyw40, vyw300, ty_Bool) -> new_compare7(vyw40, vyw300) new_lt24(vyw4, vyw30, app(app(ty_@2, gc), gd)) -> new_lt10(vyw4, vyw30, gc, gd) new_lt23(vyw100, vyw103, app(ty_Maybe, fgf)) -> new_lt18(vyw100, vyw103, fgf) new_esEs35(vyw400, vyw3000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs25(vyw400, vyw3000, dbb, dbc, dbd) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_lt6(vyw700, vyw710, ty_Char) -> new_lt16(vyw700, vyw710) new_lt19(vyw700, vyw710, ty_Integer) -> new_lt7(vyw700, vyw710) new_lt19(vyw700, vyw710, app(app(ty_Either, ddc), ddd)) -> new_lt13(vyw700, vyw710, ddc, ddd) new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(app(ty_@2, edc), edd)) -> new_ltEs6(vyw700, vyw710, edc, edd) new_ltEs19(vyw77, vyw78, app(ty_Maybe, bhb)) -> new_ltEs18(vyw77, vyw78, bhb) new_esEs33(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_esEs34(vyw401, vyw3001, ty_@0) -> new_esEs22(vyw401, vyw3001) new_ltEs14(Left(vyw700), Left(vyw710), app(app(app(ty_@3, ebf), ebg), ebh), dcc) -> new_ltEs12(vyw700, vyw710, ebf, ebg, ebh) new_lt23(vyw100, vyw103, ty_@0) -> new_lt4(vyw100, vyw103) new_compare19(Float(vyw40, Pos(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_esEs11(vyw40, vyw300, app(ty_Maybe, bdf)) -> new_esEs24(vyw40, vyw300, bdf) new_esEs41(GT) -> True new_gt(vyw18, vyw13, app(app(ty_Either, bcb), bcc)) -> new_esEs41(new_compare27(vyw18, vyw13, bcb, bcc)) new_esEs35(vyw400, vyw3000, app(app(ty_Either, dac), dad)) -> new_esEs19(vyw400, vyw3000, dac, dad) new_esEs40(vyw100, vyw103, app(ty_[], fgd)) -> new_esEs13(vyw100, vyw103, fgd) new_compare4([], [], bff) -> EQ new_esEs33(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_lt22(vyw101, vyw104, ty_Bool) -> new_lt5(vyw101, vyw104) new_esEs14(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_esEs38(vyw113, vyw115, ty_Ordering) -> new_esEs18(vyw113, vyw115) new_ltEs22(vyw114, vyw116, app(ty_[], fcc)) -> new_ltEs4(vyw114, vyw116, fcc) new_esEs11(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_esEs17(True, True) -> True new_esEs35(vyw400, vyw3000, app(ty_Maybe, dba)) -> new_esEs24(vyw400, vyw3000, dba) new_lt22(vyw101, vyw104, ty_@0) -> new_lt4(vyw101, vyw104) new_esEs34(vyw401, vyw3001, ty_Int) -> new_esEs26(vyw401, vyw3001) new_ltEs5(vyw70, vyw71) -> new_fsEs(new_compare9(vyw70, vyw71)) new_esEs35(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_compare112(vyw180, vyw181, vyw182, vyw183, False, dgd, dge) -> GT new_esEs38(vyw113, vyw115, app(app(ty_Either, fag), fah)) -> new_esEs19(vyw113, vyw115, fag, fah) new_ltEs24(vyw89, vyw90, ty_Double) -> new_ltEs11(vyw89, vyw90) new_ltEs18(Just(vyw700), Just(vyw710), ty_Integer) -> new_ltEs9(vyw700, vyw710) new_lt20(vyw701, vyw711, ty_@0) -> new_lt4(vyw701, vyw711) new_ltEs22(vyw114, vyw116, app(app(ty_@2, fbg), fbh)) -> new_ltEs6(vyw114, vyw116, fbg, fbh) new_esEs9(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_primPlusNat0(Succ(vyw19300), Succ(vyw41000)) -> Succ(Succ(new_primPlusNat0(vyw19300, vyw41000))) new_esEs16(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(ty_[], edg)) -> new_ltEs4(vyw700, vyw710, edg) new_lt24(vyw4, vyw30, ty_Integer) -> new_lt7(vyw4, vyw30) new_lt19(vyw700, vyw710, ty_Char) -> new_lt16(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(ty_[], ehb)) -> new_esEs13(vyw41, vyw301, ehb) new_compare16(:%(vyw40, vyw41), :%(vyw300, vyw301), ty_Int) -> new_compare9(new_sr(vyw40, vyw301), new_sr(vyw300, vyw41)) new_esEs11(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_compare110(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, vyw172, bba, bbb, bbc) -> new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, bba, bbb, bbc) new_ltEs18(Just(vyw700), Just(vyw710), app(ty_Ratio, efb)) -> new_ltEs17(vyw700, vyw710, efb) new_esEs14(vyw400, vyw3000, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Integer) -> new_ltEs9(vyw700, vyw710) new_esEs36(vyw701, vyw711, ty_Bool) -> new_esEs17(vyw701, vyw711) new_esEs4(vyw42, vyw302, app(app(ty_Either, efd), efe)) -> new_esEs19(vyw42, vyw302, efd, efe) new_esEs34(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_esEs4(vyw42, vyw302, app(app(app(ty_@3, egc), egd), ege)) -> new_esEs25(vyw42, vyw302, egc, egd, ege) new_compare30(vyw40, vyw300, ty_Char) -> new_compare8(vyw40, vyw300) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Char) -> new_ltEs16(vyw700, vyw710) new_compare27(Left(vyw40), Left(vyw300), bhf, bhg) -> new_compare28(vyw40, vyw300, new_esEs9(vyw40, vyw300, bhf), bhf, bhg) new_esEs36(vyw701, vyw711, ty_Int) -> new_esEs26(vyw701, vyw711) new_ltEs21(vyw702, vyw712, app(ty_[], dga)) -> new_ltEs4(vyw702, vyw712, dga) new_esEs36(vyw701, vyw711, app(app(ty_Either, dee), def)) -> new_esEs19(vyw701, vyw711, dee, def) new_esEs37(vyw700, vyw710, ty_Ordering) -> new_esEs18(vyw700, vyw710) new_esEs9(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_lt22(vyw101, vyw104, app(ty_Maybe, feb)) -> new_lt18(vyw101, vyw104, feb) new_lt22(vyw101, vyw104, app(app(app(ty_@3, fda), fdb), fdc)) -> new_lt9(vyw101, vyw104, fda, fdb, fdc) new_lt8(vyw4, vyw30) -> new_esEs12(new_compare29(vyw4, vyw30)) new_esEs14(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_esEs37(vyw700, vyw710, ty_Char) -> new_esEs23(vyw700, vyw710) new_ltEs22(vyw114, vyw116, ty_Double) -> new_ltEs11(vyw114, vyw116) new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, True, bba, bbb, bbc) -> LT new_esEs25(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), ccd, cce, ccf) -> new_asAs(new_esEs33(vyw400, vyw3000, ccd), new_asAs(new_esEs32(vyw401, vyw3001, cce), new_esEs31(vyw402, vyw3002, ccf))) new_ltEs15(LT, LT) -> True new_ltEs18(Just(vyw700), Just(vyw710), ty_Ordering) -> new_ltEs15(vyw700, vyw710) new_lt21(vyw113, vyw115, app(ty_Maybe, fbc)) -> new_lt18(vyw113, vyw115, fbc) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Float) -> new_esEs27(vyw400, vyw3000) new_lt19(vyw700, vyw710, ty_@0) -> new_lt4(vyw700, vyw710) new_esEs17(False, False) -> True new_lt21(vyw113, vyw115, ty_Float) -> new_lt12(vyw113, vyw115) new_esEs37(vyw700, vyw710, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs25(vyw700, vyw710, dcf, dcg, dch) new_esEs34(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_esEs7(vyw41, vyw301, ty_Float) -> new_esEs27(vyw41, vyw301) new_esEs19(Left(vyw400), Left(vyw3000), app(app(ty_@2, dha), dhb), dgf) -> new_esEs20(vyw400, vyw3000, dha, dhb) new_esEs37(vyw700, vyw710, ty_@0) -> new_esEs22(vyw700, vyw710) new_primCmpNat0(Succ(vyw400), Succ(vyw3000)) -> new_primCmpNat0(vyw400, vyw3000) new_esEs8(vyw40, vyw300, app(ty_[], bac)) -> new_esEs13(vyw40, vyw300, bac) new_lt20(vyw701, vyw711, ty_Char) -> new_lt16(vyw701, vyw711) new_esEs14(vyw400, vyw3000, ty_@0) -> new_esEs22(vyw400, vyw3000) new_esEs35(vyw400, vyw3000, ty_Char) -> new_esEs23(vyw400, vyw3000) new_lt21(vyw113, vyw115, ty_Integer) -> new_lt7(vyw113, vyw115) new_esEs11(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_lt20(vyw701, vyw711, app(ty_Maybe, dfa)) -> new_lt18(vyw701, vyw711, dfa) new_lt24(vyw4, vyw30, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_lt9(vyw4, vyw30, bhc, bhd, bhe) new_ltEs14(Left(vyw700), Left(vyw710), ty_Bool, dcc) -> new_ltEs10(vyw700, vyw710) new_esEs38(vyw113, vyw115, app(app(app(ty_@3, fab), fac), fad)) -> new_esEs25(vyw113, vyw115, fab, fac, fad) new_esEs36(vyw701, vyw711, ty_Integer) -> new_esEs16(vyw701, vyw711) new_lt20(vyw701, vyw711, ty_Bool) -> new_lt5(vyw701, vyw711) new_esEs36(vyw701, vyw711, ty_@0) -> new_esEs22(vyw701, vyw711) new_esEs14(vyw400, vyw3000, app(app(app(ty_@3, cg), da), db)) -> new_esEs25(vyw400, vyw3000, cg, da, db) new_compare12(vyw165, vyw166, vyw167, vyw168, vyw169, vyw170, False, bba, bbb, bbc) -> GT new_ltEs20(vyw70, vyw71, app(ty_[], bf)) -> new_ltEs4(vyw70, vyw71, bf) new_compare13(LT, GT) -> LT new_esEs14(vyw400, vyw3000, app(ty_Maybe, cf)) -> new_esEs24(vyw400, vyw3000, cf) new_lt22(vyw101, vyw104, ty_Integer) -> new_lt7(vyw101, vyw104) new_esEs36(vyw701, vyw711, ty_Char) -> new_esEs23(vyw701, vyw711) new_lt23(vyw100, vyw103, app(app(app(ty_@3, ffe), fff), ffg)) -> new_lt9(vyw100, vyw103, ffe, fff, ffg) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Float) -> new_ltEs13(vyw700, vyw710) new_esEs35(vyw400, vyw3000, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_lt6(vyw700, vyw710, app(ty_Maybe, ef)) -> new_lt18(vyw700, vyw710, ef) new_esEs37(vyw700, vyw710, app(ty_Maybe, ddg)) -> new_esEs24(vyw700, vyw710, ddg) new_ltEs19(vyw77, vyw78, app(ty_[], bgh)) -> new_ltEs4(vyw77, vyw78, bgh) new_compare30(vyw40, vyw300, app(app(app(ty_@3, fgg), fgh), fha)) -> new_compare18(vyw40, vyw300, fgg, fgh, fha) new_esEs19(Left(vyw400), Right(vyw3000), eaa, dgf) -> False new_esEs19(Right(vyw400), Left(vyw3000), eaa, dgf) -> False new_compare28(vyw70, vyw71, True, dbe, dbf) -> EQ new_esEs35(vyw400, vyw3000, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_lt20(vyw701, vyw711, ty_Float) -> new_lt12(vyw701, vyw711) new_ltEs18(Just(vyw700), Just(vyw710), app(app(app(ty_@3, eeb), eec), eed)) -> new_ltEs12(vyw700, vyw710, eeb, eec, eed) new_esEs28(vyw700, vyw710, app(ty_Ratio, ee)) -> new_esEs21(vyw700, vyw710, ee) new_esEs7(vyw41, vyw301, app(ty_[], ha)) -> new_esEs13(vyw41, vyw301, ha) new_esEs8(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_ltEs24(vyw89, vyw90, app(app(ty_@2, gae), gaf)) -> new_ltEs6(vyw89, vyw90, gae, gaf) new_esEs28(vyw700, vyw710, app(app(ty_@2, dh), ea)) -> new_esEs20(vyw700, vyw710, dh, ea) new_esEs28(vyw700, vyw710, app(ty_Maybe, ef)) -> new_esEs24(vyw700, vyw710, ef) new_ltEs7(vyw701, vyw711, ty_Ordering) -> new_ltEs15(vyw701, vyw711) new_primCmpInt(Neg(Succ(vyw400)), Pos(vyw300)) -> LT new_lt19(vyw700, vyw710, ty_Bool) -> new_lt5(vyw700, vyw710) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_@0) -> new_esEs22(vyw400, vyw3000) new_lt21(vyw113, vyw115, app(ty_[], fba)) -> new_lt15(vyw113, vyw115, fba) new_lt24(vyw4, vyw30, app(ty_Ratio, bfe)) -> new_lt17(vyw4, vyw30, bfe) new_ltEs23(vyw102, vyw105, ty_Char) -> new_ltEs16(vyw102, vyw105) new_ltEs23(vyw102, vyw105, ty_Bool) -> new_ltEs10(vyw102, vyw105) new_lt21(vyw113, vyw115, ty_@0) -> new_lt4(vyw113, vyw115) new_compare13(EQ, GT) -> LT new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(app(app(ty_@3, eba), ebb), ebc)) -> new_esEs25(vyw400, vyw3000, eba, ebb, ebc) new_esEs4(vyw42, vyw302, app(ty_[], efh)) -> new_esEs13(vyw42, vyw302, efh) new_ltEs14(Right(vyw700), Left(vyw710), dcb, dcc) -> False new_esEs37(vyw700, vyw710, ty_Bool) -> new_esEs17(vyw700, vyw710) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_Ratio, ecf), dcc) -> new_ltEs17(vyw700, vyw710, ecf) new_primCmpInt(Pos(Zero), Neg(Succ(vyw3000))) -> GT new_esEs32(vyw401, vyw3001, app(ty_Ratio, cef)) -> new_esEs21(vyw401, vyw3001, cef) new_esEs36(vyw701, vyw711, ty_Ordering) -> new_esEs18(vyw701, vyw711) new_esEs26(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_primCmpInt(Neg(Succ(vyw400)), Neg(vyw300)) -> new_primCmpNat0(vyw300, Succ(vyw400)) new_compare210(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, False, fcf, fcg, fch) -> new_compare110(vyw100, vyw101, vyw102, vyw103, vyw104, vyw105, new_lt23(vyw100, vyw103, fcf), new_asAs(new_esEs40(vyw100, vyw103, fcf), new_pePe(new_lt22(vyw101, vyw104, fcg), new_asAs(new_esEs39(vyw101, vyw104, fcg), new_ltEs23(vyw102, vyw105, fch)))), fcf, fcg, fch) new_esEs19(Left(vyw400), Left(vyw3000), ty_Integer, dgf) -> new_esEs16(vyw400, vyw3000) new_esEs6(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_ltEs8(vyw70, vyw71) -> new_fsEs(new_compare6(vyw70, vyw71)) new_lt6(vyw700, vyw710, ty_Integer) -> new_lt7(vyw700, vyw710) new_esEs37(vyw700, vyw710, app(app(ty_Either, ddc), ddd)) -> new_esEs19(vyw700, vyw710, ddc, ddd) new_esEs4(vyw42, vyw302, ty_Char) -> new_esEs23(vyw42, vyw302) new_ltEs7(vyw701, vyw711, ty_Float) -> new_ltEs13(vyw701, vyw711) new_esEs9(vyw40, vyw300, app(ty_Ratio, cae)) -> new_esEs21(vyw40, vyw300, cae) new_esEs40(vyw100, vyw103, app(app(ty_@2, ffh), fga)) -> new_esEs20(vyw100, vyw103, ffh, fga) new_esEs11(vyw40, vyw300, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs25(vyw40, vyw300, bdg, bdh, bea) new_esEs41(EQ) -> False new_esEs8(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_primCompAux0(vyw83, GT) -> GT new_esEs10(vyw40, vyw300, app(ty_[], cbf)) -> new_esEs13(vyw40, vyw300, cbf) new_ltEs20(vyw70, vyw71, app(app(ty_Either, dcb), dcc)) -> new_ltEs14(vyw70, vyw71, dcb, dcc) new_ltEs19(vyw77, vyw78, ty_Ordering) -> new_ltEs15(vyw77, vyw78) new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_compare30(vyw40, vyw300, ty_Integer) -> new_compare10(vyw40, vyw300) new_lt23(vyw100, vyw103, app(app(ty_@2, ffh), fga)) -> new_lt10(vyw100, vyw103, ffh, fga) new_esEs11(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_lt23(vyw100, vyw103, ty_Ordering) -> new_lt14(vyw100, vyw103) new_lt23(vyw100, vyw103, ty_Int) -> new_lt11(vyw100, vyw103) new_esEs7(vyw41, vyw301, app(app(ty_@2, gg), gh)) -> new_esEs20(vyw41, vyw301, gg, gh) new_esEs36(vyw701, vyw711, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs25(vyw701, vyw711, ddh, dea, deb) new_esEs38(vyw113, vyw115, app(ty_Maybe, fbc)) -> new_esEs24(vyw113, vyw115, fbc) new_compare30(vyw40, vyw300, ty_Int) -> new_compare9(vyw40, vyw300) new_gt(vyw18, vyw13, ty_Float) -> new_esEs41(new_compare19(vyw18, vyw13)) new_esEs33(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_ltEs19(vyw77, vyw78, app(ty_Ratio, bha)) -> new_ltEs17(vyw77, vyw78, bha) new_esEs9(vyw40, vyw300, app(ty_[], cad)) -> new_esEs13(vyw40, vyw300, cad) new_esEs24(Just(vyw400), Just(vyw3000), app(app(ty_@2, bee), bef)) -> new_esEs20(vyw400, vyw3000, bee, bef) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_Maybe, bfa)) -> new_esEs24(vyw400, vyw3000, bfa) new_primCmpNat0(Zero, Zero) -> EQ new_compare30(vyw40, vyw300, app(app(ty_@2, fhb), fhc)) -> new_compare11(vyw40, vyw300, fhb, fhc) new_ltEs24(vyw89, vyw90, ty_Float) -> new_ltEs13(vyw89, vyw90) new_esEs37(vyw700, vyw710, ty_Integer) -> new_esEs16(vyw700, vyw710) new_esEs10(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_lt19(vyw700, vyw710, app(ty_[], dde)) -> new_lt15(vyw700, vyw710, dde) new_lt21(vyw113, vyw115, ty_Bool) -> new_lt5(vyw113, vyw115) new_esEs35(vyw400, vyw3000, app(ty_[], dag)) -> new_esEs13(vyw400, vyw3000, dag) new_compare19(Float(vyw40, Pos(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_compare19(Float(vyw40, Neg(vyw410)), Float(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_compare13(LT, EQ) -> LT new_compare18(@3(vyw40, vyw41, vyw42), @3(vyw300, vyw301, vyw302), bhc, bhd, bhe) -> new_compare210(vyw40, vyw41, vyw42, vyw300, vyw301, vyw302, new_asAs(new_esEs6(vyw40, vyw300, bhc), new_asAs(new_esEs5(vyw41, vyw301, bhd), new_esEs4(vyw42, vyw302, bhe))), bhc, bhd, bhe) new_lt21(vyw113, vyw115, ty_Char) -> new_lt16(vyw113, vyw115) new_ltEs20(vyw70, vyw71, ty_Double) -> new_ltEs11(vyw70, vyw71) new_esEs13([], [], bg) -> True new_ltEs6(@2(vyw700, vyw701), @2(vyw710, vyw711), dc, dd) -> new_pePe(new_lt6(vyw700, vyw710, dc), new_asAs(new_esEs28(vyw700, vyw710, dc), new_ltEs7(vyw701, vyw711, dd))) new_esEs6(vyw40, vyw300, app(app(ty_Either, eaa), dgf)) -> new_esEs19(vyw40, vyw300, eaa, dgf) new_ltEs19(vyw77, vyw78, ty_Float) -> new_ltEs13(vyw77, vyw78) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Ordering) -> new_esEs18(vyw400, vyw3000) new_esEs40(vyw100, vyw103, app(ty_Maybe, fgf)) -> new_esEs24(vyw100, vyw103, fgf) new_esEs19(Left(vyw400), Left(vyw3000), ty_Bool, dgf) -> new_esEs17(vyw400, vyw3000) new_esEs33(vyw400, vyw3000, app(app(ty_@2, cfe), cff)) -> new_esEs20(vyw400, vyw3000, cfe, cff) new_lt23(vyw100, vyw103, ty_Float) -> new_lt12(vyw100, vyw103) new_esEs38(vyw113, vyw115, app(app(ty_@2, fae), faf)) -> new_esEs20(vyw113, vyw115, fae, faf) new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(ty_Ratio, eag)) -> new_esEs21(vyw400, vyw3000, eag) new_compare29(Double(vyw40, Neg(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_esEs5(vyw41, vyw301, ty_Float) -> new_esEs27(vyw41, vyw301) new_esEs9(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_ltEs20(vyw70, vyw71, ty_Int) -> new_ltEs5(vyw70, vyw71) new_ltEs20(vyw70, vyw71, app(app(app(ty_@3, dbg), dbh), dca)) -> new_ltEs12(vyw70, vyw71, dbg, dbh, dca) new_esEs37(vyw700, vyw710, app(ty_Ratio, ddf)) -> new_esEs21(vyw700, vyw710, ddf) new_esEs33(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs39(vyw101, vyw104, ty_@0) -> new_esEs22(vyw101, vyw104) new_esEs32(vyw401, vyw3001, ty_Bool) -> new_esEs17(vyw401, vyw3001) new_esEs38(vyw113, vyw115, ty_Double) -> new_esEs15(vyw113, vyw115) new_ltEs21(vyw702, vyw712, ty_Ordering) -> new_ltEs15(vyw702, vyw712) new_ltEs22(vyw114, vyw116, ty_Integer) -> new_ltEs9(vyw114, vyw116) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_[], beg)) -> new_esEs13(vyw400, vyw3000, beg) new_compare30(vyw40, vyw300, app(ty_Maybe, fhh)) -> new_compare15(vyw40, vyw300, fhh) new_ltEs14(Right(vyw700), Right(vyw710), dcb, ty_Ordering) -> new_ltEs15(vyw700, vyw710) new_esEs5(vyw41, vyw301, app(app(app(ty_@3, ehe), ehf), ehg)) -> new_esEs25(vyw41, vyw301, ehe, ehf, ehg) new_esEs11(vyw40, vyw300, ty_@0) -> new_esEs22(vyw40, vyw300) new_compare24(vyw113, vyw114, vyw115, vyw116, False, ehh, faa) -> new_compare113(vyw113, vyw114, vyw115, vyw116, new_lt21(vyw113, vyw115, ehh), new_asAs(new_esEs38(vyw113, vyw115, ehh), new_ltEs22(vyw114, vyw116, faa)), ehh, faa) new_ltEs23(vyw102, vyw105, app(ty_[], ffb)) -> new_ltEs4(vyw102, vyw105, ffb) new_esEs10(vyw40, vyw300, app(ty_Ratio, cbg)) -> new_esEs21(vyw40, vyw300, cbg) new_esEs32(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_primCmpNat0(Succ(vyw400), Zero) -> GT new_ltEs14(Right(vyw700), Right(vyw710), dcb, app(ty_Maybe, eea)) -> new_ltEs18(vyw700, vyw710, eea) new_esEs38(vyw113, vyw115, ty_Float) -> new_esEs27(vyw113, vyw115) new_pePe(False, vyw191) -> vyw191 new_esEs28(vyw700, vyw710, ty_Int) -> new_esEs26(vyw700, vyw710) new_esEs8(vyw40, vyw300, ty_Ordering) -> new_esEs18(vyw40, vyw300) new_esEs7(vyw41, vyw301, ty_Int) -> new_esEs26(vyw41, vyw301) new_esEs33(vyw400, vyw3000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs25(vyw400, vyw3000, cgb, cgc, cgd) new_lt20(vyw701, vyw711, app(app(app(ty_@3, ddh), dea), deb)) -> new_lt9(vyw701, vyw711, ddh, dea, deb) new_esEs5(vyw41, vyw301, ty_@0) -> new_esEs22(vyw41, vyw301) new_esEs24(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs23(vyw400, vyw3000) new_esEs35(vyw400, vyw3000, app(ty_Ratio, dah)) -> new_esEs21(vyw400, vyw3000, dah) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs5(vyw41, vyw301, ty_Double) -> new_esEs15(vyw41, vyw301) new_esEs9(vyw40, vyw300, app(app(ty_Either, bhh), caa)) -> new_esEs19(vyw40, vyw300, bhh, caa) new_esEs39(vyw101, vyw104, ty_Integer) -> new_esEs16(vyw101, vyw104) new_lt24(vyw4, vyw30, ty_@0) -> new_lt4(vyw4, vyw30) new_ltEs20(vyw70, vyw71, app(app(ty_@2, dc), dd)) -> new_ltEs6(vyw70, vyw71, dc, dd) new_ltEs21(vyw702, vyw712, ty_Float) -> new_ltEs13(vyw702, vyw712) new_lt21(vyw113, vyw115, app(ty_Ratio, fbb)) -> new_lt17(vyw113, vyw115, fbb) new_lt16(vyw4, vyw30) -> new_esEs12(new_compare8(vyw4, vyw30)) new_esEs32(vyw401, vyw3001, ty_Char) -> new_esEs23(vyw401, vyw3001) new_esEs36(vyw701, vyw711, ty_Float) -> new_esEs27(vyw701, vyw711) new_esEs31(vyw402, vyw3002, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs25(vyw402, vyw3002, cdf, cdg, cdh) new_esEs4(vyw42, vyw302, ty_Bool) -> new_esEs17(vyw42, vyw302) new_esEs33(vyw400, vyw3000, app(ty_Maybe, cga)) -> new_esEs24(vyw400, vyw3000, cga) new_esEs28(vyw700, vyw710, ty_Float) -> new_esEs27(vyw700, vyw710) new_esEs38(vyw113, vyw115, ty_Int) -> new_esEs26(vyw113, vyw115) new_primCompAux1(vyw40, vyw300, vyw39, bff) -> new_primCompAux0(vyw39, new_compare30(vyw40, vyw300, bff)) new_esEs28(vyw700, vyw710, ty_Double) -> new_esEs15(vyw700, vyw710) new_lt24(vyw4, vyw30, app(ty_[], bff)) -> new_lt15(vyw4, vyw30, bff) new_lt6(vyw700, vyw710, app(ty_Ratio, ee)) -> new_lt17(vyw700, vyw710, ee) new_esEs24(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs15(vyw400, vyw3000) new_esEs10(vyw40, vyw300, app(ty_Maybe, cbh)) -> new_esEs24(vyw40, vyw300, cbh) new_lt20(vyw701, vyw711, ty_Double) -> new_lt8(vyw701, vyw711) new_esEs40(vyw100, vyw103, ty_Double) -> new_esEs15(vyw100, vyw103) new_lt6(vyw700, vyw710, app(app(ty_Either, eb), ec)) -> new_lt13(vyw700, vyw710, eb, ec) new_ltEs21(vyw702, vyw712, ty_@0) -> new_ltEs8(vyw702, vyw712) new_esEs7(vyw41, vyw301, ty_Double) -> new_esEs15(vyw41, vyw301) new_ltEs14(Left(vyw700), Left(vyw710), ty_Integer, dcc) -> new_ltEs9(vyw700, vyw710) new_lt23(vyw100, vyw103, ty_Char) -> new_lt16(vyw100, vyw103) new_esEs7(vyw41, vyw301, ty_Char) -> new_esEs23(vyw41, vyw301) new_lt13(vyw4, vyw30, bhf, bhg) -> new_esEs12(new_compare27(vyw4, vyw30, bhf, bhg)) new_compare30(vyw40, vyw300, ty_Ordering) -> new_compare13(vyw40, vyw300) new_esEs30(vyw400, vyw3000, ty_Int) -> new_esEs26(vyw400, vyw3000) new_lt10(vyw4, vyw30, gc, gd) -> new_esEs12(new_compare11(vyw4, vyw30, gc, gd)) new_compare17(vyw143, vyw144, True, cge, cgf) -> LT new_esEs24(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs26(vyw400, vyw3000) new_lt21(vyw113, vyw115, ty_Ordering) -> new_lt14(vyw113, vyw115) new_esEs6(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(ty_[], eaf)) -> new_esEs13(vyw400, vyw3000, eaf) new_ltEs14(Left(vyw700), Left(vyw710), app(app(ty_Either, ecc), ecd), dcc) -> new_ltEs14(vyw700, vyw710, ecc, ecd) new_esEs31(vyw402, vyw3002, ty_Ordering) -> new_esEs18(vyw402, vyw3002) new_compare11(@2(vyw40, vyw41), @2(vyw300, vyw301), gc, gd) -> new_compare24(vyw40, vyw41, vyw300, vyw301, new_asAs(new_esEs8(vyw40, vyw300, gc), new_esEs7(vyw41, vyw301, gd)), gc, gd) new_esEs5(vyw41, vyw301, ty_Ordering) -> new_esEs18(vyw41, vyw301) new_esEs5(vyw41, vyw301, app(app(ty_@2, egh), eha)) -> new_esEs20(vyw41, vyw301, egh, eha) new_gt(vyw18, vyw13, app(ty_Maybe, bcf)) -> new_esEs41(new_compare15(vyw18, vyw13, bcf)) new_lt21(vyw113, vyw115, app(app(ty_@2, fae), faf)) -> new_lt10(vyw113, vyw115, fae, faf) new_ltEs18(Just(vyw700), Just(vyw710), ty_Float) -> new_ltEs13(vyw700, vyw710) new_esEs10(vyw40, vyw300, app(app(ty_Either, cbb), cbc)) -> new_esEs19(vyw40, vyw300, cbb, cbc) new_ltEs23(vyw102, vyw105, ty_Int) -> new_ltEs5(vyw102, vyw105) new_lt24(vyw4, vyw30, ty_Bool) -> new_lt5(vyw4, vyw30) new_gt(vyw18, vyw13, app(app(ty_@2, bbh), bca)) -> new_esEs41(new_compare11(vyw18, vyw13, bbh, bca)) new_compare7(False, False) -> EQ new_ltEs19(vyw77, vyw78, ty_Integer) -> new_ltEs9(vyw77, vyw78) new_lt22(vyw101, vyw104, app(app(ty_Either, fdf), fdg)) -> new_lt13(vyw101, vyw104, fdf, fdg) new_esEs8(vyw40, vyw300, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs25(vyw40, vyw300, baf, bag, bah) new_gt(vyw18, vyw13, ty_Integer) -> new_esEs41(new_compare10(vyw18, vyw13)) new_lt19(vyw700, vyw710, app(ty_Ratio, ddf)) -> new_lt17(vyw700, vyw710, ddf) new_esEs5(vyw41, vyw301, ty_Int) -> new_esEs26(vyw41, vyw301) new_lt23(vyw100, vyw103, app(ty_[], fgd)) -> new_lt15(vyw100, vyw103, fgd) new_esEs31(vyw402, vyw3002, ty_@0) -> new_esEs22(vyw402, vyw3002) new_primMulInt(Neg(vyw3000), Neg(vyw410)) -> Pos(new_primMulNat0(vyw3000, vyw410)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw3000))) -> new_primCmpNat0(Zero, Succ(vyw3000)) new_esEs40(vyw100, vyw103, ty_Int) -> new_esEs26(vyw100, vyw103) new_ltEs22(vyw114, vyw116, ty_Int) -> new_ltEs5(vyw114, vyw116) new_esEs37(vyw700, vyw710, app(ty_[], dde)) -> new_esEs13(vyw700, vyw710, dde) new_ltEs15(EQ, GT) -> True new_ltEs19(vyw77, vyw78, ty_@0) -> new_ltEs8(vyw77, vyw78) new_esEs32(vyw401, vyw3001, app(app(ty_Either, cea), ceb)) -> new_esEs19(vyw401, vyw3001, cea, ceb) new_compare4([], :(vyw300, vyw301), bff) -> LT new_esEs34(vyw401, vyw3001, app(ty_Ratio, chf)) -> new_esEs21(vyw401, vyw3001, chf) new_ltEs20(vyw70, vyw71, ty_Char) -> new_ltEs16(vyw70, vyw71) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_esEs29(vyw401, vyw3001, ty_Integer) -> new_esEs16(vyw401, vyw3001) new_compare7(True, False) -> GT new_ltEs22(vyw114, vyw116, app(ty_Maybe, fce)) -> new_ltEs18(vyw114, vyw116, fce) new_esEs6(vyw40, vyw300, ty_Char) -> new_esEs23(vyw40, vyw300) new_esEs7(vyw41, vyw301, app(ty_Maybe, hc)) -> new_esEs24(vyw41, vyw301, hc) new_ltEs24(vyw89, vyw90, app(ty_Maybe, gbc)) -> new_ltEs18(vyw89, vyw90, gbc) new_esEs8(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_ltEs14(Left(vyw700), Left(vyw710), ty_Float, dcc) -> new_ltEs13(vyw700, vyw710) new_primMulInt(Pos(vyw3000), Neg(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) new_primMulInt(Neg(vyw3000), Pos(vyw410)) -> Neg(new_primMulNat0(vyw3000, vyw410)) new_esEs14(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_ltEs7(vyw701, vyw711, ty_@0) -> new_ltEs8(vyw701, vyw711) new_esEs40(vyw100, vyw103, app(ty_Ratio, fge)) -> new_esEs21(vyw100, vyw103, fge) new_ltEs20(vyw70, vyw71, ty_@0) -> new_ltEs8(vyw70, vyw71) new_compare29(Double(vyw40, Pos(vyw410)), Double(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Pos(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_compare29(Double(vyw40, Neg(vyw410)), Double(vyw300, Pos(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Pos(vyw410), vyw300)) new_ltEs18(Nothing, Nothing, dce) -> True new_esEs36(vyw701, vyw711, app(app(ty_@2, dec), ded)) -> new_esEs20(vyw701, vyw711, dec, ded) new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(ty_Maybe, eah)) -> new_esEs24(vyw400, vyw3000, eah) new_esEs11(vyw40, vyw300, app(app(ty_@2, bdb), bdc)) -> new_esEs20(vyw40, vyw300, bdb, bdc) new_esEs19(Left(vyw400), Left(vyw3000), app(app(ty_Either, dgg), dgh), dgf) -> new_esEs19(vyw400, vyw3000, dgg, dgh) new_lt21(vyw113, vyw115, ty_Int) -> new_lt11(vyw113, vyw115) new_sr0(Integer(vyw3000), Integer(vyw410)) -> Integer(new_primMulInt(vyw3000, vyw410)) new_esEs35(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_lt22(vyw101, vyw104, app(ty_Ratio, fea)) -> new_lt17(vyw101, vyw104, fea) new_ltEs15(LT, GT) -> True new_esEs9(vyw40, vyw300, app(ty_Maybe, caf)) -> new_esEs24(vyw40, vyw300, caf) new_compare15(Just(vyw40), Nothing, bcg) -> GT new_compare15(Just(vyw40), Just(vyw300), bcg) -> new_compare25(vyw40, vyw300, new_esEs11(vyw40, vyw300, bcg), bcg) new_lt19(vyw700, vyw710, app(app(ty_@2, dda), ddb)) -> new_lt10(vyw700, vyw710, dda, ddb) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Int) -> new_esEs26(vyw400, vyw3000) new_ltEs23(vyw102, vyw105, app(ty_Ratio, ffc)) -> new_ltEs17(vyw102, vyw105, ffc) new_ltEs21(vyw702, vyw712, ty_Bool) -> new_ltEs10(vyw702, vyw712) new_ltEs22(vyw114, vyw116, ty_Ordering) -> new_ltEs15(vyw114, vyw116) new_esEs28(vyw700, vyw710, app(app(app(ty_@3, de), df), dg)) -> new_esEs25(vyw700, vyw710, de, df, dg) new_lt6(vyw700, vyw710, app(ty_[], ed)) -> new_lt15(vyw700, vyw710, ed) new_asAs(True, vyw131) -> vyw131 new_ltEs21(vyw702, vyw712, ty_Char) -> new_ltEs16(vyw702, vyw712) new_esEs22(@0, @0) -> True new_lt20(vyw701, vyw711, app(app(ty_@2, dec), ded)) -> new_lt10(vyw701, vyw711, dec, ded) new_esEs31(vyw402, vyw3002, ty_Double) -> new_esEs15(vyw402, vyw3002) new_esEs33(vyw400, vyw3000, app(ty_[], cfg)) -> new_esEs13(vyw400, vyw3000, cfg) new_lt12(vyw4, vyw30) -> new_esEs12(new_compare19(vyw4, vyw30)) new_ltEs21(vyw702, vyw712, ty_Integer) -> new_ltEs9(vyw702, vyw712) new_esEs4(vyw42, vyw302, ty_Double) -> new_esEs15(vyw42, vyw302) new_ltEs9(vyw70, vyw71) -> new_fsEs(new_compare10(vyw70, vyw71)) new_esEs14(vyw400, vyw3000, ty_Double) -> new_esEs15(vyw400, vyw3000) new_compare113(vyw180, vyw181, vyw182, vyw183, False, vyw185, dgd, dge) -> new_compare112(vyw180, vyw181, vyw182, vyw183, vyw185, dgd, dge) new_compare111(vyw136, vyw137, False, ebd, ebe) -> GT new_ltEs18(Just(vyw700), Nothing, dce) -> False new_gt(vyw18, vyw13, ty_Bool) -> new_esEs41(new_compare7(vyw18, vyw13)) new_esEs7(vyw41, vyw301, ty_Ordering) -> new_esEs18(vyw41, vyw301) new_lt24(vyw4, vyw30, app(app(ty_Either, bhf), bhg)) -> new_lt13(vyw4, vyw30, bhf, bhg) new_compare8(Char(vyw40), Char(vyw300)) -> new_primCmpNat0(vyw40, vyw300) new_esEs28(vyw700, vyw710, ty_Ordering) -> new_esEs18(vyw700, vyw710) new_sr(vyw300, vyw41) -> new_primMulInt(vyw300, vyw41) new_esEs38(vyw113, vyw115, app(ty_Ratio, fbb)) -> new_esEs21(vyw113, vyw115, fbb) new_esEs7(vyw41, vyw301, ty_Bool) -> new_esEs17(vyw41, vyw301) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs39(vyw101, vyw104, ty_Double) -> new_esEs15(vyw101, vyw104) new_esEs4(vyw42, vyw302, app(app(ty_@2, eff), efg)) -> new_esEs20(vyw42, vyw302, eff, efg) new_lt21(vyw113, vyw115, ty_Double) -> new_lt8(vyw113, vyw115) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Bool) -> new_esEs17(vyw400, vyw3000) new_gt(vyw18, vyw13, ty_Int) -> new_esEs41(new_compare9(vyw18, vyw13)) new_esEs34(vyw401, vyw3001, ty_Float) -> new_esEs27(vyw401, vyw3001) new_gt(vyw18, vyw13, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs41(new_compare18(vyw18, vyw13, bbe, bbf, bbg)) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_esEs28(vyw700, vyw710, ty_Char) -> new_esEs23(vyw700, vyw710) new_esEs9(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_ltEs7(vyw701, vyw711, ty_Integer) -> new_ltEs9(vyw701, vyw711) new_esEs27(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs26(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_esEs32(vyw401, vyw3001, app(app(ty_@2, cec), ced)) -> new_esEs20(vyw401, vyw3001, cec, ced) new_lt22(vyw101, vyw104, ty_Double) -> new_lt8(vyw101, vyw104) new_lt19(vyw700, vyw710, ty_Int) -> new_lt11(vyw700, vyw710) new_lt17(vyw4, vyw30, bfe) -> new_esEs12(new_compare16(vyw4, vyw30, bfe)) new_primCompAux0(vyw83, EQ) -> vyw83 new_lt24(vyw4, vyw30, ty_Ordering) -> new_lt14(vyw4, vyw30) new_esEs8(vyw40, vyw300, ty_Integer) -> new_esEs16(vyw40, vyw300) new_esEs28(vyw700, vyw710, ty_@0) -> new_esEs22(vyw700, vyw710) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_ltEs15(LT, EQ) -> True new_gt(vyw18, vyw13, app(ty_[], bcd)) -> new_esEs41(new_compare4(vyw18, vyw13, bcd)) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_ltEs24(vyw89, vyw90, app(ty_Ratio, gbb)) -> new_ltEs17(vyw89, vyw90, gbb) new_esEs8(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs23(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_esEs19(Right(vyw400), Right(vyw3000), eaa, ty_Integer) -> new_esEs16(vyw400, vyw3000) new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_ltEs14(Left(vyw700), Left(vyw710), ty_Double, dcc) -> new_ltEs11(vyw700, vyw710) new_esEs10(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_ltEs22(vyw114, vyw116, app(app(ty_Either, fca), fcb)) -> new_ltEs14(vyw114, vyw116, fca, fcb) new_esEs14(vyw400, vyw3000, app(ty_Ratio, ce)) -> new_esEs21(vyw400, vyw3000, ce) new_esEs28(vyw700, vyw710, app(ty_[], ed)) -> new_esEs13(vyw700, vyw710, ed) new_primCmpInt(Neg(Zero), Neg(Succ(vyw3000))) -> new_primCmpNat0(Succ(vyw3000), Zero) new_esEs35(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_esEs7(vyw41, vyw301, app(ty_Ratio, hb)) -> new_esEs21(vyw41, vyw301, hb) new_esEs34(vyw401, vyw3001, app(ty_[], che)) -> new_esEs13(vyw401, vyw3001, che) new_esEs10(vyw40, vyw300, app(app(ty_@2, cbd), cbe)) -> new_esEs20(vyw40, vyw300, cbd, cbe) new_ltEs15(GT, GT) -> True new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt5(vyw4, vyw30) -> new_esEs12(new_compare7(vyw4, vyw30)) new_esEs34(vyw401, vyw3001, ty_Double) -> new_esEs15(vyw401, vyw3001) new_esEs15(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs26(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_esEs35(vyw400, vyw3000, app(app(ty_@2, dae), daf)) -> new_esEs20(vyw400, vyw3000, dae, daf) new_lt22(vyw101, vyw104, ty_Int) -> new_lt11(vyw101, vyw104) new_esEs19(Right(vyw400), Right(vyw3000), eaa, app(app(ty_Either, eab), eac)) -> new_esEs19(vyw400, vyw3000, eab, eac) new_ltEs23(vyw102, vyw105, app(app(ty_Either, feh), ffa)) -> new_ltEs14(vyw102, vyw105, feh, ffa) new_lt23(vyw100, vyw103, app(ty_Ratio, fge)) -> new_lt17(vyw100, vyw103, fge) new_esEs11(vyw40, vyw300, ty_Double) -> new_esEs15(vyw40, vyw300) new_compare27(Right(vyw40), Left(vyw300), bhf, bhg) -> GT new_ltEs13(vyw70, vyw71) -> new_fsEs(new_compare19(vyw70, vyw71)) new_esEs6(vyw40, vyw300, app(ty_Ratio, gb)) -> new_esEs21(vyw40, vyw300, gb) new_ltEs22(vyw114, vyw116, app(ty_Ratio, fcd)) -> new_ltEs17(vyw114, vyw116, fcd) new_ltEs18(Just(vyw700), Just(vyw710), ty_Double) -> new_ltEs11(vyw700, vyw710) new_not(False) -> True new_esEs9(vyw40, vyw300, ty_Int) -> new_esEs26(vyw40, vyw300) new_ltEs22(vyw114, vyw116, ty_Bool) -> new_ltEs10(vyw114, vyw116) new_compare19(Float(vyw40, Neg(vyw410)), Float(vyw300, Neg(vyw3010))) -> new_compare9(new_sr(vyw40, Neg(vyw3010)), new_sr(Neg(vyw410), vyw300)) new_ltEs24(vyw89, vyw90, ty_Integer) -> new_ltEs9(vyw89, vyw90) new_gt(vyw18, vyw13, ty_Ordering) -> new_esEs41(new_compare13(vyw18, vyw13)) new_esEs32(vyw401, vyw3001, app(ty_[], cee)) -> new_esEs13(vyw401, vyw3001, cee) new_esEs9(vyw40, vyw300, ty_Bool) -> new_esEs17(vyw40, vyw300) new_esEs14(vyw400, vyw3000, app(app(ty_@2, cb), cc)) -> new_esEs20(vyw400, vyw3000, cb, cc) new_ltEs23(vyw102, vyw105, ty_@0) -> new_ltEs8(vyw102, vyw105) new_esEs41(LT) -> False new_lt23(vyw100, vyw103, ty_Double) -> new_lt8(vyw100, vyw103) new_esEs28(vyw700, vyw710, app(app(ty_Either, eb), ec)) -> new_esEs19(vyw700, vyw710, eb, ec) new_lt20(vyw701, vyw711, ty_Int) -> new_lt11(vyw701, vyw711) new_ltEs20(vyw70, vyw71, app(ty_Ratio, dcd)) -> new_ltEs17(vyw70, vyw71, dcd) new_ltEs7(vyw701, vyw711, ty_Bool) -> new_ltEs10(vyw701, vyw711) new_esEs11(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs24(vyw89, vyw90, app(app(app(ty_@3, gab), gac), gad)) -> new_ltEs12(vyw89, vyw90, gab, gac, gad) new_compare15(Nothing, Just(vyw300), bcg) -> LT new_ltEs24(vyw89, vyw90, ty_Char) -> new_ltEs16(vyw89, vyw90) new_ltEs14(Left(vyw700), Left(vyw710), app(ty_Maybe, ecg), dcc) -> new_ltEs18(vyw700, vyw710, ecg) new_ltEs18(Just(vyw700), Just(vyw710), app(app(ty_@2, eee), eef)) -> new_ltEs6(vyw700, vyw710, eee, eef) new_ltEs21(vyw702, vyw712, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs12(vyw702, vyw712, dfb, dfc, dfd) new_esEs37(vyw700, vyw710, app(app(ty_@2, dda), ddb)) -> new_esEs20(vyw700, vyw710, dda, ddb) new_esEs31(vyw402, vyw3002, ty_Float) -> new_esEs27(vyw402, vyw3002) new_compare6(@0, @0) -> EQ new_ltEs23(vyw102, vyw105, app(app(app(ty_@3, fec), fed), fee)) -> new_ltEs12(vyw102, vyw105, fec, fed, fee) new_esEs10(vyw40, vyw300, ty_Float) -> new_esEs27(vyw40, vyw300) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_gt(vyw18, vyw13, ty_@0) -> new_esEs41(new_compare6(vyw18, vyw13)) new_ltEs22(vyw114, vyw116, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_ltEs12(vyw114, vyw116, fbd, fbe, fbf) new_compare27(Right(vyw40), Right(vyw300), bhf, bhg) -> new_compare26(vyw40, vyw300, new_esEs10(vyw40, vyw300, bhg), bhf, bhg) new_ltEs24(vyw89, vyw90, ty_@0) -> new_ltEs8(vyw89, vyw90) new_esEs39(vyw101, vyw104, app(ty_Ratio, fea)) -> new_esEs21(vyw101, vyw104, fea) new_esEs24(Nothing, Nothing, beb) -> True new_ltEs23(vyw102, vyw105, ty_Ordering) -> new_ltEs15(vyw102, vyw105) new_esEs33(vyw400, vyw3000, ty_Float) -> new_esEs27(vyw400, vyw3000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_gt(vyw18, vyw13, ty_Char) -> new_esEs41(new_compare8(vyw18, vyw13)) new_lt18(vyw4, vyw30, bcg) -> new_esEs12(new_compare15(vyw4, vyw30, bcg)) new_primEqNat0(Zero, Zero) -> True new_ltEs7(vyw701, vyw711, app(ty_Ratio, fh)) -> new_ltEs17(vyw701, vyw711, fh) new_compare14(vyw153, vyw154, True, bbd) -> LT new_ltEs19(vyw77, vyw78, ty_Bool) -> new_ltEs10(vyw77, vyw78) new_esEs36(vyw701, vyw711, ty_Double) -> new_esEs15(vyw701, vyw711) new_esEs24(Nothing, Just(vyw3000), beb) -> False new_esEs24(Just(vyw400), Nothing, beb) -> False new_esEs4(vyw42, vyw302, app(ty_Ratio, ega)) -> new_esEs21(vyw42, vyw302, ega) new_asAs(False, vyw131) -> False new_esEs32(vyw401, vyw3001, ty_Float) -> new_esEs27(vyw401, vyw3001) new_ltEs20(vyw70, vyw71, ty_Bool) -> new_ltEs10(vyw70, vyw71) new_esEs24(Just(vyw400), Just(vyw3000), app(ty_Ratio, beh)) -> new_esEs21(vyw400, vyw3000, beh) new_esEs20(@2(vyw400, vyw401), @2(vyw3000, vyw3001), cgg, cgh) -> new_asAs(new_esEs35(vyw400, vyw3000, cgg), new_esEs34(vyw401, vyw3001, cgh)) new_lt24(vyw4, vyw30, ty_Double) -> new_lt8(vyw4, vyw30) new_ltEs24(vyw89, vyw90, ty_Ordering) -> new_ltEs15(vyw89, vyw90) new_esEs19(Left(vyw400), Left(vyw3000), app(ty_[], dhc), dgf) -> new_esEs13(vyw400, vyw3000, dhc) new_ltEs21(vyw702, vyw712, app(ty_Ratio, dgb)) -> new_ltEs17(vyw702, vyw712, dgb) The set Q consists of the following terms: new_compare26(x0, x1, True, x2, x3) new_ltEs19(x0, x1, ty_Int) new_compare29(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs18(Just(x0), Just(x1), app(ty_[], x2)) new_lt5(x0, x1) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_Bool) new_esEs24(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs19(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs19(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs13([], :(x0, x1), x2) new_lt21(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs14(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs11(x0, x1, ty_@0) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, ty_@0) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Char) new_compare12(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_lt22(x0, x1, ty_@0) new_gt(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Bool) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs14(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs22(x0, x1, ty_Ordering) new_esEs24(Just(x0), Just(x1), ty_Int) new_compare19(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare19(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_compare30(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs18(Nothing, Just(x0), x1) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Double) new_lt23(x0, x1, ty_Int) new_ltEs18(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare15(Just(x0), Nothing, x1) new_esEs28(x0, x1, ty_Char) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(@0, @0) new_ltEs18(Just(x0), Just(x1), ty_Char) new_lt22(x0, x1, ty_Int) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare112(x0, x1, x2, x3, False, x4, x5) new_esEs32(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Bool) new_esEs13([], [], x0) new_ltEs14(Right(x0), Right(x1), x2, ty_Char) new_esEs40(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Char, x2) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(Just(x0), Just(x1), ty_Bool) new_esEs9(x0, x1, ty_Double) new_esEs38(x0, x1, ty_Int) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Ordering) new_ltEs10(False, False) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, ty_Int) new_lt22(x0, x1, ty_Bool) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_primCompAux0(x0, GT) new_primMulInt(Neg(x0), Neg(x1)) new_lt24(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_Integer) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, ty_Integer) new_esEs8(x0, x1, ty_Float) new_ltEs22(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare4([], :(x0, x1), x2) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs33(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs19(Right(x0), Right(x1), x2, ty_Integer) new_compare29(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare30(x0, x1, ty_Float) new_compare113(x0, x1, x2, x3, True, x4, x5, x6) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(True, True) new_compare8(Char(x0), Char(x1)) new_esEs24(Just(x0), Nothing, x1) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs19(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt21(x0, x1, ty_Double) new_ltEs18(Just(x0), Just(x1), ty_Double) new_compare28(x0, x1, False, x2, x3) new_esEs39(x0, x1, ty_Char) new_esEs14(x0, x1, ty_Float) new_asAs(True, x0) new_compare30(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Double) new_esEs19(Left(x0), Left(x1), ty_Double, x2) new_esEs5(x0, x1, ty_Int) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(GT) new_ltEs23(x0, x1, ty_@0) new_ltEs15(GT, LT) new_ltEs15(LT, GT) new_ltEs24(x0, x1, ty_Int) new_esEs19(Left(x0), Right(x1), x2, x3) new_esEs19(Right(x0), Left(x1), x2, x3) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Int) new_ltEs18(Just(x0), Just(x1), ty_Ordering) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Ordering) new_primEqNat0(Zero, Succ(x0)) new_esEs39(x0, x1, app(ty_Maybe, x2)) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, ty_Double) new_esEs4(x0, x1, ty_@0) new_esEs14(x0, x1, ty_Ordering) new_esEs14(x0, x1, ty_Char) new_lt6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_Int, x2) new_esEs35(x0, x1, ty_Char) new_esEs24(Just(x0), Just(x1), ty_Float) new_lt22(x0, x1, ty_Integer) new_lt22(x0, x1, app(ty_Ratio, x2)) new_esEs8(x0, x1, ty_Ordering) new_lt23(x0, x1, ty_Float) new_esEs14(x0, x1, ty_Integer) new_esEs19(Right(x0), Right(x1), x2, ty_Int) new_esEs8(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, True, x2, x3) new_primPlusNat0(Succ(x0), Zero) new_ltEs14(Left(x0), Left(x1), ty_Bool, x2) new_lt10(x0, x1, x2, x3) new_esEs36(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Double) new_lt15(x0, x1, x2) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, ty_Int) new_esEs18(EQ, EQ) new_ltEs18(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs14(Left(x0), Right(x1), x2, x3) new_ltEs14(Right(x0), Left(x1), x2, x3) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs17(x0, x1, x2) new_esEs13(:(x0, x1), :(x2, x3), x4) new_pePe(False, x0) new_esEs7(x0, x1, ty_Double) new_lt24(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, ty_Float) new_esEs31(x0, x1, ty_@0) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs23(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs38(x0, x1, ty_Integer) new_lt4(x0, x1) new_esEs33(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Ordering) new_esEs35(x0, x1, ty_Double) new_lt21(x0, x1, ty_Bool) new_esEs10(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Bool) new_compare30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Bool) new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(x0, x1, ty_Bool) new_compare30(x0, x1, ty_@0) new_esEs33(x0, x1, ty_Double) new_esEs40(x0, x1, ty_Int) new_esEs6(x0, x1, ty_@0) new_lt22(x0, x1, app(ty_[], x2)) new_esEs40(x0, x1, ty_Double) new_esEs7(x0, x1, ty_@0) new_lt19(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Ordering) new_lt21(x0, x1, ty_@0) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs8(x0, x1, ty_@0) new_lt6(x0, x1, ty_Double) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs14(Left(x0), Left(x1), ty_Float, x2) new_esEs7(x0, x1, ty_Integer) new_esEs17(True, True) new_esEs37(x0, x1, ty_Integer) new_esEs37(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(ty_[], x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt8(x0, x1) new_ltEs10(True, False) new_ltEs10(False, True) new_compare13(GT, GT) new_esEs37(x0, x1, ty_@0) new_compare13(EQ, LT) new_compare13(LT, EQ) new_lt21(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Bool) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs14(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_compare30(x0, x1, ty_Bool) new_esEs5(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Zero) new_compare30(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_not(True) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs31(x0, x1, ty_Integer) new_pePe(True, x0) new_gt(x0, x1, ty_Int) new_esEs13(:(x0, x1), [], x2) new_lt16(x0, x1) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux0(x0, EQ) new_gt(x0, x1, ty_Char) new_ltEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_Char) new_compare30(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Integer) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs6(x0, x1, ty_Int) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Ordering) new_lt24(x0, x1, ty_Double) new_compare111(x0, x1, False, x2, x3) new_esEs17(False, True) new_esEs17(True, False) new_ltEs14(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Bool) new_compare11(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs34(x0, x1, ty_Ordering) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs6(x0, x1, ty_Char) new_compare4([], [], x0) new_esEs25(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Float) new_esEs14(x0, x1, app(ty_Maybe, x2)) new_esEs24(Just(x0), Just(x1), app(ty_[], x2)) new_esEs38(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(:%(x0, x1), :%(x2, x3), x4) new_ltEs18(Just(x0), Just(x1), ty_Float) new_ltEs14(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_Float) new_ltEs14(Right(x0), Right(x1), x2, ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_esEs24(Just(x0), Just(x1), ty_Integer) new_ltEs9(x0, x1) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare4(:(x0, x1), :(x2, x3), x4) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, ty_Float) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(x0, x1, ty_Int) new_compare15(Nothing, Just(x0), x1) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs14(x0, x1, ty_Double) new_ltEs13(x0, x1) new_esEs37(x0, x1, ty_Float) new_esEs19(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs11(x0, x1) new_ltEs20(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_Maybe, x2)) new_compare27(Left(x0), Right(x1), x2, x3) new_compare27(Right(x0), Left(x1), x2, x3) new_esEs5(x0, x1, ty_Double) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Just(x0), Just(x1), ty_Int) new_esEs19(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Float) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs39(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_gt(x0, x1, ty_Bool) new_ltEs23(x0, x1, ty_Char) new_esEs37(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs36(x0, x1, ty_Double) new_esEs24(Nothing, Nothing, x0) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, ty_Integer) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare110(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs24(Just(x0), Just(x1), ty_@0) new_compare24(x0, x1, x2, x3, True, x4, x5) new_gt(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_esEs31(x0, x1, ty_Char) new_esEs10(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs39(x0, x1, ty_@0) new_compare25(x0, x1, False, x2) new_esEs14(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(LT) new_ltEs23(x0, x1, ty_Int) new_compare30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, ty_Bool) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs15(LT, LT) new_esEs19(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Right(x0), Right(x1), x2, ty_@0) new_ltEs14(Left(x0), Left(x1), ty_Double, x2) new_esEs11(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Ordering) new_esEs41(LT) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt21(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Float) new_esEs24(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_compare30(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_Int) new_esEs7(x0, x1, ty_Char) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_compare15(Nothing, Nothing, x0) new_esEs10(x0, x1, ty_Int) new_lt18(x0, x1, x2) new_ltEs10(True, True) new_esEs39(x0, x1, app(ty_[], x2)) new_esEs14(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_primCompAux1(x0, x1, x2, x3) new_lt21(x0, x1, ty_Char) new_esEs8(x0, x1, app(ty_[], x2)) new_compare29(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare29(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs35(x0, x1, ty_Float) new_compare28(x0, x1, True, x2, x3) new_ltEs18(Just(x0), Just(x1), ty_@0) new_esEs19(Left(x0), Left(x1), ty_Bool, x2) new_lt24(x0, x1, app(ty_Ratio, x2)) new_compare16(:%(x0, x1), :%(x2, x3), ty_Integer) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_lt7(x0, x1) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare19(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs18(Just(x0), Nothing, x1) new_lt20(x0, x1, ty_@0) new_lt24(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Int) new_compare27(Left(x0), Left(x1), x2, x3) new_esEs39(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Int) new_ltEs14(Right(x0), Right(x1), x2, ty_Integer) new_lt24(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs9(x0, x1, ty_@0) new_compare13(GT, LT) new_compare13(LT, GT) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs17(False, False) new_esEs38(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_ltEs14(Right(x0), Right(x1), x2, ty_@0) new_ltEs18(Just(x0), Just(x1), ty_Integer) new_lt23(x0, x1, ty_Double) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(Integer(x0), Integer(x1)) new_lt23(x0, x1, ty_Char) new_esEs39(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, True, x2, x3) new_esEs24(Just(x0), Just(x1), ty_Char) new_esEs39(x0, x1, ty_Bool) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_lt6(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Ordering) new_compare30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(Just(x0), Just(x1), ty_Double) new_esEs19(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs28(x0, x1, ty_Bool) new_ltEs22(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs18(Nothing, Nothing, x0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Int) new_esEs24(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, ty_Integer) new_esEs36(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Float) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_@0) new_compare17(x0, x1, False, x2, x3) new_lt23(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, x2, x3) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, ty_Float) new_ltEs18(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), x1) new_compare19(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs14(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs19(x0, x1, ty_Double) new_gt(x0, x1, ty_Float) new_esEs22(@0, @0) new_esEs28(x0, x1, ty_Integer) new_compare18(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt11(x0, x1) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs40(x0, x1, ty_Float) new_esEs9(x0, x1, ty_Bool) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs39(x0, x1, ty_Integer) new_gt(x0, x1, ty_@0) new_lt22(x0, x1, ty_Char) new_lt24(x0, x1, ty_@0) new_esEs19(Left(x0), Left(x1), ty_@0, x2) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Left(x0), Left(x1), ty_Int, x2) new_ltEs8(x0, x1) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Double) new_esEs38(x0, x1, app(ty_[], x2)) new_ltEs15(EQ, EQ) new_ltEs14(Right(x0), Right(x1), x2, ty_Bool) new_lt24(x0, x1, ty_Int) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Just(x0), Just(x1), ty_Bool) new_ltEs16(x0, x1) new_compare26(x0, x1, False, x2, x3) new_esEs39(x0, x1, app(app(ty_Either, x2), x3)) new_compare113(x0, x1, x2, x3, False, x4, x5, x6) new_esEs41(GT) new_esEs36(x0, x1, ty_Char) new_lt19(x0, x1, ty_Char) new_ltEs4(x0, x1, x2) new_esEs35(x0, x1, ty_Bool) new_esEs37(x0, x1, ty_Double) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs19(Left(x0), Left(x1), ty_Float, x2) new_esEs40(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_Char) new_esEs5(x0, x1, ty_Char) new_esEs38(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt6(x0, x1, ty_Bool) new_ltEs14(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(x0, x1, ty_Double) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Integer) new_esEs24(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Ordering) new_compare30(x0, x1, app(ty_Maybe, x2)) new_compare210(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs15(Double(x0, x1), Double(x2, x3)) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_esEs18(GT, GT) new_esEs14(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_esEs35(x0, x1, ty_Integer) new_ltEs14(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs24(x0, x1, ty_Char) new_compare112(x0, x1, x2, x3, True, x4, x5) new_ltEs14(Right(x0), Right(x1), x2, ty_Float) new_esEs40(x0, x1, ty_Bool) new_esEs40(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, ty_Float) new_esEs34(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare25(x0, x1, True, x2) new_esEs39(x0, x1, ty_Float) new_compare110(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare24(x0, x1, x2, x3, False, x4, x5) new_esEs24(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_Float) new_lt6(x0, x1, ty_Int) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs34(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Double) new_ltEs7(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs38(x0, x1, ty_Ordering) new_compare13(GT, EQ) new_compare13(EQ, GT) new_fsEs(x0) new_esEs28(x0, x1, ty_@0) new_ltEs12(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs29(x0, x1, ty_Int) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Double) new_compare7(False, False) new_ltEs7(x0, x1, ty_@0) new_esEs35(x0, x1, ty_Int) new_esEs40(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Int) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs14(Left(x0), Left(x1), ty_Char, x2) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Integer) new_esEs5(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_esEs14(x0, x1, ty_@0) new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) new_compare14(x0, x1, False, x2) new_lt9(x0, x1, x2, x3, x4) new_esEs34(x0, x1, ty_Char) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_compare15(Just(x0), Just(x1), x2) new_esEs27(Float(x0, x1), Float(x2, x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Zero) new_esEs34(x0, x1, ty_Int) new_esEs36(x0, x1, ty_Integer) new_gt(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs32(x0, x1, ty_Char) new_esEs8(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Right(x0), Right(x1), x2, ty_Double) new_compare10(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Succ(x0), Zero) new_esEs32(x0, x1, ty_Int) new_ltEs7(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Integer) new_compare7(False, True) new_compare7(True, False) new_compare4(:(x0, x1), [], x2) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(x0, x1, ty_Bool) new_primMulNat0(Zero, Succ(x0)) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_sr(x0, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Ordering) new_ltEs20(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Float) new_esEs4(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs39(x0, x1, ty_Ordering) new_esEs8(x0, x1, ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Float) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Char) new_ltEs15(GT, EQ) new_ltEs15(EQ, GT) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Ordering) new_ltEs14(Left(x0), Left(x1), ty_Integer, x2) new_lt19(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1) new_compare13(LT, LT) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_@0) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Ordering) new_esEs40(x0, x1, ty_@0) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Double) new_esEs33(x0, x1, ty_@0) new_primCompAux0(x0, LT) new_esEs38(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs19(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(x0, x1, app(ty_[], x2)) new_esEs18(LT, LT) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1) new_esEs11(x0, x1, ty_Float) new_esEs34(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_esEs40(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(x0, x1, ty_Integer) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_compare13(EQ, EQ) new_compare12(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs37(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs7(x0, x1, ty_Ordering) new_esEs19(Left(x0), Left(x1), ty_Ordering, x2) new_lt23(x0, x1, ty_Integer) new_compare9(x0, x1) new_esEs4(x0, x1, ty_Char) new_compare16(:%(x0, x1), :%(x2, x3), ty_Int) new_lt21(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare30(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs35(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Bool) new_esEs24(Nothing, Just(x0), x1) new_ltEs24(x0, x1, ty_Ordering) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, ty_Float) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_ltEs15(EQ, LT) new_ltEs15(LT, EQ) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Float) new_esEs4(x0, x1, ty_Int) new_esEs6(x0, x1, ty_Ordering) new_lt20(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs34(x0, x1, ty_Bool) new_ltEs15(GT, GT) new_esEs12(EQ) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs14(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs41(EQ) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Double) new_ltEs24(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs19(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs11(x0, x1, ty_Integer) new_lt23(x0, x1, ty_@0) new_esEs4(x0, x1, ty_Bool) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs22(x0, x1, ty_Integer) new_esEs39(x0, x1, ty_Double) new_esEs36(x0, x1, ty_@0) new_lt19(x0, x1, ty_Double) new_ltEs7(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Float) new_lt20(x0, x1, ty_Int) new_compare27(Right(x0), Right(x1), x2, x3) new_lt24(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare210(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs35(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(x0, x1, ty_Int) new_gt(x0, x1, ty_Ordering) new_esEs33(x0, x1, ty_Integer) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Bool) new_ltEs14(Left(x0), Left(x1), ty_@0, x2) new_lt12(x0, x1) new_compare30(x0, x1, ty_Ordering) new_esEs40(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_sr0(Integer(x0), Integer(x1)) new_ltEs7(x0, x1, ty_Float) new_primCmpNat0(Zero, Zero) new_esEs23(Char(x0), Char(x1)) new_lt20(x0, x1, ty_Char) new_lt6(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Float) new_compare14(x0, x1, True, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) 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_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_lookupFM(vyw16, vyw18, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9 *new_lookupFM1(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_lookupFM(vyw32, vyw33, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_lookupFM(Branch(vyw30, vyw31, vyw32, vyw33, vyw34), vyw4, bd, be) -> new_lookupFM2(vyw30, vyw31, vyw32, vyw33, vyw34, vyw4, new_lt24(vyw4, vyw30, be), bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 >= 6, 3 >= 8, 4 >= 9 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) 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(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw19300), Succ(vyw41000)) -> new_primPlusNat(vyw19300, vyw41000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) 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(vyw19300), Succ(vyw41000)) -> new_primPlusNat(vyw19300, vyw41000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES