/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/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, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 5 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 10 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 34 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 0 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 162 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 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 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 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> 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; " The following Case expression "case lookupFM fm key of { Nothing -> False; Just elt -> True} " is transformed to "elemFM0 Nothing = False; elemFM0 (Just elt) = True; " ---------------------------------------- (4) 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; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; 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 _ 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 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; 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 _ 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 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; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; 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 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; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "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; " "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; " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "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 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; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; 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 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 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; } ---------------------------------------- (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'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; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2D vyu vyv = gcd vyu vyv; " "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; " ---------------------------------------- (12) 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; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; 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 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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; 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 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 = 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.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];2883[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 2883[label="",style="solid", color="burlywood", weight=9]; 2883 -> 6[label="",style="solid", color="burlywood", weight=3]; 2884[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 2884[label="",style="solid", color="burlywood", weight=9]; 2884 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.elemFM0 (FiniteMap.lookupFM (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="FiniteMap.elemFM0 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 11 -> 13[label="",style="dashed", color="red", weight=0]; 11[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (vyw3 < vyw40))",fontsize=16,color="magenta"];11 -> 14[label="",style="dashed", color="magenta", weight=3]; 11 -> 15[label="",style="dashed", color="magenta", weight=3]; 11 -> 16[label="",style="dashed", color="magenta", weight=3]; 11 -> 17[label="",style="dashed", color="magenta", weight=3]; 11 -> 18[label="",style="dashed", color="magenta", weight=3]; 11 -> 19[label="",style="dashed", color="magenta", weight=3]; 11 -> 20[label="",style="dashed", color="magenta", weight=3]; 12[label="False",fontsize=16,color="green",shape="box"];14[label="vyw44",fontsize=16,color="green",shape="box"];15[label="vyw40",fontsize=16,color="green",shape="box"];16[label="vyw3 < vyw40",fontsize=16,color="blue",shape="box"];2885[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 21[label="",style="solid", color="blue", weight=3]; 2886[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 22[label="",style="solid", color="blue", weight=3]; 2887[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 23[label="",style="solid", color="blue", weight=3]; 2888[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 24[label="",style="solid", color="blue", weight=3]; 2889[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 25[label="",style="solid", color="blue", weight=3]; 2890[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 26[label="",style="solid", color="blue", weight=3]; 2891[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 27[label="",style="solid", color="blue", weight=3]; 2892[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 28[label="",style="solid", color="blue", weight=3]; 2893[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 29[label="",style="solid", color="blue", weight=3]; 2894[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 30[label="",style="solid", color="blue", weight=3]; 2895[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2895[label="",style="solid", color="blue", weight=9]; 2895 -> 31[label="",style="solid", color="blue", weight=3]; 2896[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2896[label="",style="solid", color="blue", weight=9]; 2896 -> 32[label="",style="solid", color="blue", weight=3]; 2897[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2897[label="",style="solid", color="blue", weight=9]; 2897 -> 33[label="",style="solid", color="blue", weight=3]; 2898[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];16 -> 2898[label="",style="solid", color="blue", weight=9]; 2898 -> 34[label="",style="solid", color="blue", weight=3]; 17[label="vyw41",fontsize=16,color="green",shape="box"];18[label="vyw42",fontsize=16,color="green",shape="box"];19[label="vyw43",fontsize=16,color="green",shape="box"];20[label="vyw3",fontsize=16,color="green",shape="box"];13[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 vyw19)",fontsize=16,color="burlywood",shape="triangle"];2899[label="vyw19/False",fontsize=10,color="white",style="solid",shape="box"];13 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 35[label="",style="solid", color="burlywood", weight=3]; 2900[label="vyw19/True",fontsize=10,color="white",style="solid",shape="box"];13 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 36[label="",style="solid", color="burlywood", weight=3]; 21[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];21 -> 37[label="",style="solid", color="black", weight=3]; 22[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];22 -> 38[label="",style="solid", color="black", weight=3]; 23[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];23 -> 39[label="",style="solid", color="black", weight=3]; 24[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];24 -> 40[label="",style="solid", color="black", weight=3]; 25[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];25 -> 41[label="",style="solid", color="black", weight=3]; 26[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];26 -> 42[label="",style="solid", color="black", weight=3]; 27[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];27 -> 43[label="",style="solid", color="black", weight=3]; 28[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];28 -> 44[label="",style="solid", color="black", weight=3]; 29[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];29 -> 45[label="",style="solid", color="black", weight=3]; 30[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];30 -> 46[label="",style="solid", color="black", weight=3]; 31[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];31 -> 47[label="",style="solid", color="black", weight=3]; 32[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];32 -> 48[label="",style="solid", color="black", weight=3]; 33[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];33 -> 49[label="",style="solid", color="black", weight=3]; 34[label="vyw3 < vyw40",fontsize=16,color="black",shape="triangle"];34 -> 50[label="",style="solid", color="black", weight=3]; 35[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 False)",fontsize=16,color="black",shape="box"];35 -> 51[label="",style="solid", color="black", weight=3]; 36[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 True)",fontsize=16,color="black",shape="box"];36 -> 52[label="",style="solid", color="black", weight=3]; 37 -> 155[label="",style="dashed", color="red", weight=0]; 37[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];37 -> 156[label="",style="dashed", color="magenta", weight=3]; 38 -> 155[label="",style="dashed", color="red", weight=0]; 38[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];38 -> 157[label="",style="dashed", color="magenta", weight=3]; 39 -> 155[label="",style="dashed", color="red", weight=0]; 39[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];39 -> 158[label="",style="dashed", color="magenta", weight=3]; 40 -> 155[label="",style="dashed", color="red", weight=0]; 40[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];40 -> 159[label="",style="dashed", color="magenta", weight=3]; 41 -> 155[label="",style="dashed", color="red", weight=0]; 41[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];41 -> 160[label="",style="dashed", color="magenta", weight=3]; 42 -> 155[label="",style="dashed", color="red", weight=0]; 42[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];42 -> 161[label="",style="dashed", color="magenta", weight=3]; 43 -> 155[label="",style="dashed", color="red", weight=0]; 43[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];43 -> 162[label="",style="dashed", color="magenta", weight=3]; 44 -> 155[label="",style="dashed", color="red", weight=0]; 44[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];44 -> 163[label="",style="dashed", color="magenta", weight=3]; 45 -> 155[label="",style="dashed", color="red", weight=0]; 45[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];45 -> 164[label="",style="dashed", color="magenta", weight=3]; 46 -> 155[label="",style="dashed", color="red", weight=0]; 46[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];46 -> 165[label="",style="dashed", color="magenta", weight=3]; 47 -> 155[label="",style="dashed", color="red", weight=0]; 47[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];47 -> 166[label="",style="dashed", color="magenta", weight=3]; 48 -> 155[label="",style="dashed", color="red", weight=0]; 48[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];48 -> 167[label="",style="dashed", color="magenta", weight=3]; 49 -> 155[label="",style="dashed", color="red", weight=0]; 49[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];49 -> 168[label="",style="dashed", color="magenta", weight=3]; 50 -> 155[label="",style="dashed", color="red", weight=0]; 50[label="compare vyw3 vyw40 == LT",fontsize=16,color="magenta"];50 -> 169[label="",style="dashed", color="magenta", weight=3]; 51 -> 68[label="",style="dashed", color="red", weight=0]; 51[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw13 vyw14 vyw15 vyw16 vyw17 vyw18 (vyw18 > vyw13))",fontsize=16,color="magenta"];51 -> 69[label="",style="dashed", color="magenta", weight=3]; 51 -> 70[label="",style="dashed", color="magenta", weight=3]; 51 -> 71[label="",style="dashed", color="magenta", weight=3]; 51 -> 72[label="",style="dashed", color="magenta", weight=3]; 51 -> 73[label="",style="dashed", color="magenta", weight=3]; 51 -> 74[label="",style="dashed", color="magenta", weight=3]; 51 -> 75[label="",style="dashed", color="magenta", weight=3]; 52 -> 5[label="",style="dashed", color="red", weight=0]; 52[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw16 vyw18)",fontsize=16,color="magenta"];52 -> 76[label="",style="dashed", color="magenta", weight=3]; 52 -> 77[label="",style="dashed", color="magenta", weight=3]; 156[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2901[label="vyw3/vyw30 :% vyw31",fontsize=10,color="white",style="solid",shape="box"];156 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 193[label="",style="solid", color="burlywood", weight=3]; 155[label="vyw37 == LT",fontsize=16,color="burlywood",shape="triangle"];2902[label="vyw37/LT",fontsize=10,color="white",style="solid",shape="box"];155 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 194[label="",style="solid", color="burlywood", weight=3]; 2903[label="vyw37/EQ",fontsize=10,color="white",style="solid",shape="box"];155 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 195[label="",style="solid", color="burlywood", weight=3]; 2904[label="vyw37/GT",fontsize=10,color="white",style="solid",shape="box"];155 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 196[label="",style="solid", color="burlywood", weight=3]; 157[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2905[label="vyw3/()",fontsize=10,color="white",style="solid",shape="box"];157 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 197[label="",style="solid", color="burlywood", weight=3]; 158[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];158 -> 198[label="",style="solid", color="black", weight=3]; 159[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];159 -> 199[label="",style="solid", color="black", weight=3]; 160[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];160 -> 200[label="",style="solid", color="black", weight=3]; 161[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];161 -> 201[label="",style="solid", color="black", weight=3]; 162[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];162 -> 202[label="",style="solid", color="black", weight=3]; 163[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];163 -> 203[label="",style="solid", color="black", weight=3]; 164[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2906[label="vyw3/Integer vyw30",fontsize=10,color="white",style="solid",shape="box"];164 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 204[label="",style="solid", color="burlywood", weight=3]; 165[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];165 -> 205[label="",style="solid", color="black", weight=3]; 166[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];166 -> 206[label="",style="solid", color="black", weight=3]; 167[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];167 -> 207[label="",style="solid", color="black", weight=3]; 168[label="compare vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2907[label="vyw3/vyw30 : vyw31",fontsize=10,color="white",style="solid",shape="box"];168 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 208[label="",style="solid", color="burlywood", weight=3]; 2908[label="vyw3/[]",fontsize=10,color="white",style="solid",shape="box"];168 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 209[label="",style="solid", color="burlywood", weight=3]; 169[label="compare vyw3 vyw40",fontsize=16,color="black",shape="triangle"];169 -> 210[label="",style="solid", color="black", weight=3]; 69[label="vyw13",fontsize=16,color="green",shape="box"];70[label="vyw15",fontsize=16,color="green",shape="box"];71[label="vyw16",fontsize=16,color="green",shape="box"];72[label="vyw18",fontsize=16,color="green",shape="box"];73[label="vyw14",fontsize=16,color="green",shape="box"];74[label="vyw18 > vyw13",fontsize=16,color="blue",shape="box"];2909[label="> :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2909[label="",style="solid", color="blue", weight=9]; 2909 -> 96[label="",style="solid", color="blue", weight=3]; 2910[label="> :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2910[label="",style="solid", color="blue", weight=9]; 2910 -> 97[label="",style="solid", color="blue", weight=3]; 2911[label="> :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2911[label="",style="solid", color="blue", weight=9]; 2911 -> 98[label="",style="solid", color="blue", weight=3]; 2912[label="> :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2912[label="",style="solid", color="blue", weight=9]; 2912 -> 99[label="",style="solid", color="blue", weight=3]; 2913[label="> :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2913[label="",style="solid", color="blue", weight=9]; 2913 -> 100[label="",style="solid", color="blue", weight=3]; 2914[label="> :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2914[label="",style="solid", color="blue", weight=9]; 2914 -> 101[label="",style="solid", color="blue", weight=3]; 2915[label="> :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 102[label="",style="solid", color="blue", weight=3]; 2916[label="> :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 103[label="",style="solid", color="blue", weight=3]; 2917[label="> :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 104[label="",style="solid", color="blue", weight=3]; 2918[label="> :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 105[label="",style="solid", color="blue", weight=3]; 2919[label="> :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 106[label="",style="solid", color="blue", weight=3]; 2920[label="> :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 107[label="",style="solid", color="blue", weight=3]; 2921[label="> :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 108[label="",style="solid", color="blue", weight=3]; 2922[label="> :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];74 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 109[label="",style="solid", color="blue", weight=3]; 75[label="vyw17",fontsize=16,color="green",shape="box"];68[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 vyw34)",fontsize=16,color="burlywood",shape="triangle"];2923[label="vyw34/False",fontsize=10,color="white",style="solid",shape="box"];68 -> 2923[label="",style="solid", color="burlywood", weight=9]; 2923 -> 110[label="",style="solid", color="burlywood", weight=3]; 2924[label="vyw34/True",fontsize=10,color="white",style="solid",shape="box"];68 -> 2924[label="",style="solid", color="burlywood", weight=9]; 2924 -> 111[label="",style="solid", color="burlywood", weight=3]; 76[label="vyw16",fontsize=16,color="green",shape="box"];77[label="vyw18",fontsize=16,color="green",shape="box"];193[label="compare (vyw30 :% vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2925[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];193 -> 2925[label="",style="solid", color="burlywood", weight=9]; 2925 -> 226[label="",style="solid", color="burlywood", weight=3]; 194[label="LT == LT",fontsize=16,color="black",shape="box"];194 -> 227[label="",style="solid", color="black", weight=3]; 195[label="EQ == LT",fontsize=16,color="black",shape="box"];195 -> 228[label="",style="solid", color="black", weight=3]; 196[label="GT == LT",fontsize=16,color="black",shape="box"];196 -> 229[label="",style="solid", color="black", weight=3]; 197[label="compare () vyw40",fontsize=16,color="burlywood",shape="box"];2926[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];197 -> 2926[label="",style="solid", color="burlywood", weight=9]; 2926 -> 230[label="",style="solid", color="burlywood", weight=3]; 198[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];198 -> 231[label="",style="solid", color="black", weight=3]; 199[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];199 -> 232[label="",style="solid", color="black", weight=3]; 200[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];200 -> 233[label="",style="solid", color="black", weight=3]; 201[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];201 -> 234[label="",style="solid", color="black", weight=3]; 202[label="primCmpDouble vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2927[label="vyw3/Double vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];202 -> 2927[label="",style="solid", color="burlywood", weight=9]; 2927 -> 235[label="",style="solid", color="burlywood", weight=3]; 203[label="primCmpChar vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2928[label="vyw3/Char vyw30",fontsize=10,color="white",style="solid",shape="box"];203 -> 2928[label="",style="solid", color="burlywood", weight=9]; 2928 -> 236[label="",style="solid", color="burlywood", weight=3]; 204[label="compare (Integer vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2929[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];204 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 237[label="",style="solid", color="burlywood", weight=3]; 205[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];205 -> 238[label="",style="solid", color="black", weight=3]; 206[label="compare3 vyw3 vyw40",fontsize=16,color="black",shape="box"];206 -> 239[label="",style="solid", color="black", weight=3]; 207[label="primCmpFloat vyw3 vyw40",fontsize=16,color="burlywood",shape="box"];2930[label="vyw3/Float vyw30 vyw31",fontsize=10,color="white",style="solid",shape="box"];207 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 240[label="",style="solid", color="burlywood", weight=3]; 208[label="compare (vyw30 : vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2931[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];208 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 241[label="",style="solid", color="burlywood", weight=3]; 2932[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];208 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 242[label="",style="solid", color="burlywood", weight=3]; 209[label="compare [] vyw40",fontsize=16,color="burlywood",shape="box"];2933[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];209 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 243[label="",style="solid", color="burlywood", weight=3]; 2934[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];209 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 244[label="",style="solid", color="burlywood", weight=3]; 210[label="primCmpInt vyw3 vyw40",fontsize=16,color="burlywood",shape="triangle"];2935[label="vyw3/Pos vyw30",fontsize=10,color="white",style="solid",shape="box"];210 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 245[label="",style="solid", color="burlywood", weight=3]; 2936[label="vyw3/Neg vyw30",fontsize=10,color="white",style="solid",shape="box"];210 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 246[label="",style="solid", color="burlywood", 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="vyw18 > vyw13",fontsize=16,color="black",shape="box"];108 -> 151[label="",style="solid", color="black", weight=3]; 109[label="vyw18 > vyw13",fontsize=16,color="black",shape="box"];109 -> 152[label="",style="solid", color="black", weight=3]; 110[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 False)",fontsize=16,color="black",shape="box"];110 -> 153[label="",style="solid", color="black", weight=3]; 111[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];111 -> 154[label="",style="solid", color="black", weight=3]; 226[label="compare (vyw30 :% vyw31) (vyw400 :% vyw401)",fontsize=16,color="black",shape="box"];226 -> 281[label="",style="solid", color="black", weight=3]; 227[label="True",fontsize=16,color="green",shape="box"];228[label="False",fontsize=16,color="green",shape="box"];229[label="False",fontsize=16,color="green",shape="box"];230[label="compare () ()",fontsize=16,color="black",shape="box"];230 -> 282[label="",style="solid", color="black", weight=3]; 231[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2937[label="vyw3/Left vyw30",fontsize=10,color="white",style="solid",shape="box"];231 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 283[label="",style="solid", color="burlywood", weight=3]; 2938[label="vyw3/Right vyw30",fontsize=10,color="white",style="solid",shape="box"];231 -> 2938[label="",style="solid", color="burlywood", weight=9]; 2938 -> 284[label="",style="solid", color="burlywood", weight=3]; 232[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2939[label="vyw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];232 -> 2939[label="",style="solid", color="burlywood", weight=9]; 2939 -> 285[label="",style="solid", color="burlywood", weight=3]; 2940[label="vyw3/Just vyw30",fontsize=10,color="white",style="solid",shape="box"];232 -> 2940[label="",style="solid", color="burlywood", weight=9]; 2940 -> 286[label="",style="solid", color="burlywood", weight=3]; 233[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2941[label="vyw3/LT",fontsize=10,color="white",style="solid",shape="box"];233 -> 2941[label="",style="solid", color="burlywood", weight=9]; 2941 -> 287[label="",style="solid", color="burlywood", weight=3]; 2942[label="vyw3/EQ",fontsize=10,color="white",style="solid",shape="box"];233 -> 2942[label="",style="solid", color="burlywood", weight=9]; 2942 -> 288[label="",style="solid", color="burlywood", weight=3]; 2943[label="vyw3/GT",fontsize=10,color="white",style="solid",shape="box"];233 -> 2943[label="",style="solid", color="burlywood", weight=9]; 2943 -> 289[label="",style="solid", color="burlywood", weight=3]; 234[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2944[label="vyw3/False",fontsize=10,color="white",style="solid",shape="box"];234 -> 2944[label="",style="solid", color="burlywood", weight=9]; 2944 -> 290[label="",style="solid", color="burlywood", weight=3]; 2945[label="vyw3/True",fontsize=10,color="white",style="solid",shape="box"];234 -> 2945[label="",style="solid", color="burlywood", weight=9]; 2945 -> 291[label="",style="solid", color="burlywood", weight=3]; 235[label="primCmpDouble (Double vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2946[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];235 -> 2946[label="",style="solid", color="burlywood", weight=9]; 2946 -> 292[label="",style="solid", color="burlywood", weight=3]; 2947[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];235 -> 2947[label="",style="solid", color="burlywood", weight=9]; 2947 -> 293[label="",style="solid", color="burlywood", weight=3]; 236[label="primCmpChar (Char vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2948[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];236 -> 2948[label="",style="solid", color="burlywood", weight=9]; 2948 -> 294[label="",style="solid", color="burlywood", weight=3]; 237[label="compare (Integer vyw30) (Integer vyw400)",fontsize=16,color="black",shape="box"];237 -> 295[label="",style="solid", color="black", weight=3]; 238[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2949[label="vyw3/(vyw30,vyw31)",fontsize=10,color="white",style="solid",shape="box"];238 -> 2949[label="",style="solid", color="burlywood", weight=9]; 2949 -> 296[label="",style="solid", color="burlywood", weight=3]; 239[label="compare2 vyw3 vyw40 (vyw3 == vyw40)",fontsize=16,color="burlywood",shape="box"];2950[label="vyw3/(vyw30,vyw31,vyw32)",fontsize=10,color="white",style="solid",shape="box"];239 -> 2950[label="",style="solid", color="burlywood", weight=9]; 2950 -> 297[label="",style="solid", color="burlywood", weight=3]; 240[label="primCmpFloat (Float vyw30 vyw31) vyw40",fontsize=16,color="burlywood",shape="box"];2951[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];240 -> 2951[label="",style="solid", color="burlywood", weight=9]; 2951 -> 298[label="",style="solid", color="burlywood", weight=3]; 2952[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];240 -> 2952[label="",style="solid", color="burlywood", weight=9]; 2952 -> 299[label="",style="solid", color="burlywood", weight=3]; 241[label="compare (vyw30 : vyw31) (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];241 -> 300[label="",style="solid", color="black", weight=3]; 242[label="compare (vyw30 : vyw31) []",fontsize=16,color="black",shape="box"];242 -> 301[label="",style="solid", color="black", weight=3]; 243[label="compare [] (vyw400 : vyw401)",fontsize=16,color="black",shape="box"];243 -> 302[label="",style="solid", color="black", weight=3]; 244[label="compare [] []",fontsize=16,color="black",shape="box"];244 -> 303[label="",style="solid", color="black", weight=3]; 245[label="primCmpInt (Pos vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2953[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];245 -> 2953[label="",style="solid", color="burlywood", weight=9]; 2953 -> 304[label="",style="solid", color="burlywood", weight=3]; 2954[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];245 -> 2954[label="",style="solid", color="burlywood", weight=9]; 2954 -> 305[label="",style="solid", color="burlywood", weight=3]; 246[label="primCmpInt (Neg vyw30) vyw40",fontsize=16,color="burlywood",shape="box"];2955[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];246 -> 2955[label="",style="solid", color="burlywood", weight=9]; 2955 -> 306[label="",style="solid", color="burlywood", weight=3]; 2956[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];246 -> 2956[label="",style="solid", color="burlywood", weight=9]; 2956 -> 307[label="",style="solid", color="burlywood", weight=3]; 139 -> 211[label="",style="dashed", color="red", weight=0]; 139[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];139 -> 212[label="",style="dashed", color="magenta", weight=3]; 140 -> 211[label="",style="dashed", color="red", weight=0]; 140[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];140 -> 213[label="",style="dashed", color="magenta", weight=3]; 141 -> 211[label="",style="dashed", color="red", weight=0]; 141[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];141 -> 214[label="",style="dashed", color="magenta", weight=3]; 142 -> 211[label="",style="dashed", color="red", weight=0]; 142[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];142 -> 215[label="",style="dashed", color="magenta", weight=3]; 143 -> 211[label="",style="dashed", color="red", weight=0]; 143[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];143 -> 216[label="",style="dashed", color="magenta", weight=3]; 144 -> 211[label="",style="dashed", color="red", weight=0]; 144[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];144 -> 217[label="",style="dashed", color="magenta", weight=3]; 145 -> 211[label="",style="dashed", color="red", weight=0]; 145[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];145 -> 218[label="",style="dashed", color="magenta", weight=3]; 146 -> 211[label="",style="dashed", color="red", weight=0]; 146[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];146 -> 219[label="",style="dashed", color="magenta", weight=3]; 147 -> 211[label="",style="dashed", color="red", weight=0]; 147[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];147 -> 220[label="",style="dashed", color="magenta", weight=3]; 148 -> 211[label="",style="dashed", color="red", weight=0]; 148[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];148 -> 221[label="",style="dashed", color="magenta", weight=3]; 149 -> 211[label="",style="dashed", color="red", weight=0]; 149[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];149 -> 222[label="",style="dashed", color="magenta", weight=3]; 150 -> 211[label="",style="dashed", color="red", weight=0]; 150[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];150 -> 223[label="",style="dashed", color="magenta", weight=3]; 151 -> 211[label="",style="dashed", color="red", weight=0]; 151[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];151 -> 224[label="",style="dashed", color="magenta", weight=3]; 152 -> 211[label="",style="dashed", color="red", weight=0]; 152[label="compare vyw18 vyw13 == GT",fontsize=16,color="magenta"];152 -> 225[label="",style="dashed", color="magenta", weight=3]; 153[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 otherwise)",fontsize=16,color="black",shape="box"];153 -> 247[label="",style="solid", color="black", weight=3]; 154 -> 5[label="",style="dashed", color="red", weight=0]; 154[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw32 vyw33)",fontsize=16,color="magenta"];154 -> 248[label="",style="dashed", color="magenta", weight=3]; 154 -> 249[label="",style="dashed", color="magenta", weight=3]; 281[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="blue",shape="box"];2957[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];281 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 312[label="",style="solid", color="blue", weight=3]; 2958[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];281 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 313[label="",style="solid", color="blue", weight=3]; 282[label="EQ",fontsize=16,color="green",shape="box"];283[label="compare2 (Left vyw30) vyw40 (Left vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];2959[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];283 -> 2959[label="",style="solid", color="burlywood", weight=9]; 2959 -> 314[label="",style="solid", color="burlywood", weight=3]; 2960[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];283 -> 2960[label="",style="solid", color="burlywood", weight=9]; 2960 -> 315[label="",style="solid", color="burlywood", weight=3]; 284[label="compare2 (Right vyw30) vyw40 (Right vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];2961[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];284 -> 2961[label="",style="solid", color="burlywood", weight=9]; 2961 -> 316[label="",style="solid", color="burlywood", weight=3]; 2962[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];284 -> 2962[label="",style="solid", color="burlywood", weight=9]; 2962 -> 317[label="",style="solid", color="burlywood", weight=3]; 285[label="compare2 Nothing vyw40 (Nothing == vyw40)",fontsize=16,color="burlywood",shape="box"];2963[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];285 -> 2963[label="",style="solid", color="burlywood", weight=9]; 2963 -> 318[label="",style="solid", color="burlywood", weight=3]; 2964[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];285 -> 2964[label="",style="solid", color="burlywood", weight=9]; 2964 -> 319[label="",style="solid", color="burlywood", weight=3]; 286[label="compare2 (Just vyw30) vyw40 (Just vyw30 == vyw40)",fontsize=16,color="burlywood",shape="box"];2965[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];286 -> 2965[label="",style="solid", color="burlywood", weight=9]; 2965 -> 320[label="",style="solid", color="burlywood", weight=3]; 2966[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];286 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 321[label="",style="solid", color="burlywood", weight=3]; 287[label="compare2 LT vyw40 (LT == vyw40)",fontsize=16,color="burlywood",shape="box"];2967[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];287 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 322[label="",style="solid", color="burlywood", weight=3]; 2968[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];287 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 323[label="",style="solid", color="burlywood", weight=3]; 2969[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];287 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 324[label="",style="solid", color="burlywood", weight=3]; 288[label="compare2 EQ vyw40 (EQ == vyw40)",fontsize=16,color="burlywood",shape="box"];2970[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];288 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 325[label="",style="solid", color="burlywood", weight=3]; 2971[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];288 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 326[label="",style="solid", color="burlywood", weight=3]; 2972[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];288 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 327[label="",style="solid", color="burlywood", weight=3]; 289[label="compare2 GT vyw40 (GT == vyw40)",fontsize=16,color="burlywood",shape="box"];2973[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];289 -> 2973[label="",style="solid", color="burlywood", weight=9]; 2973 -> 328[label="",style="solid", color="burlywood", weight=3]; 2974[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];289 -> 2974[label="",style="solid", color="burlywood", weight=9]; 2974 -> 329[label="",style="solid", color="burlywood", weight=3]; 2975[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];289 -> 2975[label="",style="solid", color="burlywood", weight=9]; 2975 -> 330[label="",style="solid", color="burlywood", weight=3]; 290[label="compare2 False vyw40 (False == vyw40)",fontsize=16,color="burlywood",shape="box"];2976[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];290 -> 2976[label="",style="solid", color="burlywood", weight=9]; 2976 -> 331[label="",style="solid", color="burlywood", weight=3]; 2977[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];290 -> 2977[label="",style="solid", color="burlywood", weight=9]; 2977 -> 332[label="",style="solid", color="burlywood", weight=3]; 291[label="compare2 True vyw40 (True == vyw40)",fontsize=16,color="burlywood",shape="box"];2978[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];291 -> 2978[label="",style="solid", color="burlywood", weight=9]; 2978 -> 333[label="",style="solid", color="burlywood", weight=3]; 2979[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];291 -> 2979[label="",style="solid", color="burlywood", weight=9]; 2979 -> 334[label="",style="solid", color="burlywood", weight=3]; 292[label="primCmpDouble (Double vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];2980[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];292 -> 2980[label="",style="solid", color="burlywood", weight=9]; 2980 -> 335[label="",style="solid", color="burlywood", weight=3]; 293[label="primCmpDouble (Double vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];2981[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];293 -> 2981[label="",style="solid", color="burlywood", weight=9]; 2981 -> 336[label="",style="solid", color="burlywood", weight=3]; 294[label="primCmpChar (Char vyw30) (Char vyw400)",fontsize=16,color="black",shape="box"];294 -> 337[label="",style="solid", color="black", weight=3]; 295 -> 210[label="",style="dashed", color="red", weight=0]; 295[label="primCmpInt vyw30 vyw400",fontsize=16,color="magenta"];295 -> 338[label="",style="dashed", color="magenta", weight=3]; 295 -> 339[label="",style="dashed", color="magenta", weight=3]; 296[label="compare2 (vyw30,vyw31) vyw40 ((vyw30,vyw31) == vyw40)",fontsize=16,color="burlywood",shape="box"];2982[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];296 -> 2982[label="",style="solid", color="burlywood", weight=9]; 2982 -> 340[label="",style="solid", color="burlywood", weight=3]; 297[label="compare2 (vyw30,vyw31,vyw32) vyw40 ((vyw30,vyw31,vyw32) == vyw40)",fontsize=16,color="burlywood",shape="box"];2983[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];297 -> 2983[label="",style="solid", color="burlywood", weight=9]; 2983 -> 341[label="",style="solid", color="burlywood", weight=3]; 298[label="primCmpFloat (Float vyw30 (Pos vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];2984[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];298 -> 2984[label="",style="solid", color="burlywood", weight=9]; 2984 -> 342[label="",style="solid", color="burlywood", weight=3]; 299[label="primCmpFloat (Float vyw30 (Neg vyw310)) vyw40",fontsize=16,color="burlywood",shape="box"];2985[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];299 -> 2985[label="",style="solid", color="burlywood", weight=9]; 2985 -> 343[label="",style="solid", color="burlywood", weight=3]; 300 -> 344[label="",style="dashed", color="red", weight=0]; 300[label="primCompAux vyw30 vyw400 (compare vyw31 vyw401)",fontsize=16,color="magenta"];300 -> 345[label="",style="dashed", color="magenta", weight=3]; 301[label="GT",fontsize=16,color="green",shape="box"];302[label="LT",fontsize=16,color="green",shape="box"];303[label="EQ",fontsize=16,color="green",shape="box"];304[label="primCmpInt (Pos (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];2986[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];304 -> 2986[label="",style="solid", color="burlywood", weight=9]; 2986 -> 346[label="",style="solid", color="burlywood", weight=3]; 2987[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];304 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 347[label="",style="solid", color="burlywood", weight=3]; 305[label="primCmpInt (Pos Zero) vyw40",fontsize=16,color="burlywood",shape="box"];2988[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];305 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 348[label="",style="solid", color="burlywood", weight=3]; 2989[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];305 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 349[label="",style="solid", color="burlywood", weight=3]; 306[label="primCmpInt (Neg (Succ vyw300)) vyw40",fontsize=16,color="burlywood",shape="box"];2990[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];306 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 350[label="",style="solid", color="burlywood", weight=3]; 2991[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];306 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 351[label="",style="solid", color="burlywood", weight=3]; 307[label="primCmpInt (Neg Zero) vyw40",fontsize=16,color="burlywood",shape="box"];2992[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];307 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 352[label="",style="solid", color="burlywood", weight=3]; 2993[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];307 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 353[label="",style="solid", color="burlywood", weight=3]; 212 -> 156[label="",style="dashed", color="red", weight=0]; 212[label="compare vyw18 vyw13",fontsize=16,color="magenta"];212 -> 250[label="",style="dashed", color="magenta", weight=3]; 212 -> 251[label="",style="dashed", color="magenta", weight=3]; 211[label="vyw38 == GT",fontsize=16,color="burlywood",shape="triangle"];2994[label="vyw38/LT",fontsize=10,color="white",style="solid",shape="box"];211 -> 2994[label="",style="solid", color="burlywood", weight=9]; 2994 -> 252[label="",style="solid", color="burlywood", weight=3]; 2995[label="vyw38/EQ",fontsize=10,color="white",style="solid",shape="box"];211 -> 2995[label="",style="solid", color="burlywood", weight=9]; 2995 -> 253[label="",style="solid", color="burlywood", weight=3]; 2996[label="vyw38/GT",fontsize=10,color="white",style="solid",shape="box"];211 -> 2996[label="",style="solid", color="burlywood", weight=9]; 2996 -> 254[label="",style="solid", color="burlywood", weight=3]; 213 -> 157[label="",style="dashed", color="red", weight=0]; 213[label="compare vyw18 vyw13",fontsize=16,color="magenta"];213 -> 255[label="",style="dashed", color="magenta", weight=3]; 213 -> 256[label="",style="dashed", color="magenta", weight=3]; 214 -> 158[label="",style="dashed", color="red", weight=0]; 214[label="compare vyw18 vyw13",fontsize=16,color="magenta"];214 -> 257[label="",style="dashed", color="magenta", weight=3]; 214 -> 258[label="",style="dashed", color="magenta", weight=3]; 215 -> 159[label="",style="dashed", color="red", weight=0]; 215[label="compare vyw18 vyw13",fontsize=16,color="magenta"];215 -> 259[label="",style="dashed", color="magenta", weight=3]; 215 -> 260[label="",style="dashed", color="magenta", weight=3]; 216 -> 160[label="",style="dashed", color="red", weight=0]; 216[label="compare vyw18 vyw13",fontsize=16,color="magenta"];216 -> 261[label="",style="dashed", color="magenta", weight=3]; 216 -> 262[label="",style="dashed", color="magenta", weight=3]; 217 -> 161[label="",style="dashed", color="red", weight=0]; 217[label="compare vyw18 vyw13",fontsize=16,color="magenta"];217 -> 263[label="",style="dashed", color="magenta", weight=3]; 217 -> 264[label="",style="dashed", color="magenta", weight=3]; 218 -> 162[label="",style="dashed", color="red", weight=0]; 218[label="compare vyw18 vyw13",fontsize=16,color="magenta"];218 -> 265[label="",style="dashed", color="magenta", weight=3]; 218 -> 266[label="",style="dashed", color="magenta", weight=3]; 219 -> 163[label="",style="dashed", color="red", weight=0]; 219[label="compare vyw18 vyw13",fontsize=16,color="magenta"];219 -> 267[label="",style="dashed", color="magenta", weight=3]; 219 -> 268[label="",style="dashed", color="magenta", weight=3]; 220 -> 164[label="",style="dashed", color="red", weight=0]; 220[label="compare vyw18 vyw13",fontsize=16,color="magenta"];220 -> 269[label="",style="dashed", color="magenta", weight=3]; 220 -> 270[label="",style="dashed", color="magenta", weight=3]; 221 -> 165[label="",style="dashed", color="red", weight=0]; 221[label="compare vyw18 vyw13",fontsize=16,color="magenta"];221 -> 271[label="",style="dashed", color="magenta", weight=3]; 221 -> 272[label="",style="dashed", color="magenta", weight=3]; 222 -> 166[label="",style="dashed", color="red", weight=0]; 222[label="compare vyw18 vyw13",fontsize=16,color="magenta"];222 -> 273[label="",style="dashed", color="magenta", weight=3]; 222 -> 274[label="",style="dashed", color="magenta", weight=3]; 223 -> 167[label="",style="dashed", color="red", weight=0]; 223[label="compare vyw18 vyw13",fontsize=16,color="magenta"];223 -> 275[label="",style="dashed", color="magenta", weight=3]; 223 -> 276[label="",style="dashed", color="magenta", weight=3]; 224 -> 168[label="",style="dashed", color="red", weight=0]; 224[label="compare vyw18 vyw13",fontsize=16,color="magenta"];224 -> 277[label="",style="dashed", color="magenta", weight=3]; 224 -> 278[label="",style="dashed", color="magenta", weight=3]; 225 -> 169[label="",style="dashed", color="red", weight=0]; 225[label="compare vyw18 vyw13",fontsize=16,color="magenta"];225 -> 279[label="",style="dashed", color="magenta", weight=3]; 225 -> 280[label="",style="dashed", color="magenta", weight=3]; 247[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 vyw28 vyw29 vyw30 vyw31 vyw32 vyw33 True)",fontsize=16,color="black",shape="box"];247 -> 308[label="",style="solid", color="black", weight=3]; 248[label="vyw32",fontsize=16,color="green",shape="box"];249[label="vyw33",fontsize=16,color="green",shape="box"];312 -> 164[label="",style="dashed", color="red", weight=0]; 312[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];312 -> 354[label="",style="dashed", color="magenta", weight=3]; 312 -> 355[label="",style="dashed", color="magenta", weight=3]; 313 -> 169[label="",style="dashed", color="red", weight=0]; 313[label="compare (vyw30 * vyw401) (vyw400 * vyw31)",fontsize=16,color="magenta"];313 -> 356[label="",style="dashed", color="magenta", weight=3]; 313 -> 357[label="",style="dashed", color="magenta", weight=3]; 314[label="compare2 (Left vyw30) (Left vyw400) (Left vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];314 -> 358[label="",style="solid", color="black", weight=3]; 315[label="compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];315 -> 359[label="",style="solid", color="black", weight=3]; 316[label="compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400)",fontsize=16,color="black",shape="box"];316 -> 360[label="",style="solid", color="black", weight=3]; 317[label="compare2 (Right vyw30) (Right vyw400) (Right vyw30 == Right vyw400)",fontsize=16,color="black",shape="box"];317 -> 361[label="",style="solid", color="black", weight=3]; 318[label="compare2 Nothing Nothing (Nothing == Nothing)",fontsize=16,color="black",shape="box"];318 -> 362[label="",style="solid", color="black", weight=3]; 319[label="compare2 Nothing (Just vyw400) (Nothing == Just vyw400)",fontsize=16,color="black",shape="box"];319 -> 363[label="",style="solid", color="black", weight=3]; 320[label="compare2 (Just vyw30) Nothing (Just vyw30 == Nothing)",fontsize=16,color="black",shape="box"];320 -> 364[label="",style="solid", color="black", weight=3]; 321[label="compare2 (Just vyw30) (Just vyw400) (Just vyw30 == Just vyw400)",fontsize=16,color="black",shape="box"];321 -> 365[label="",style="solid", color="black", weight=3]; 322[label="compare2 LT LT (LT == LT)",fontsize=16,color="black",shape="box"];322 -> 366[label="",style="solid", color="black", weight=3]; 323[label="compare2 LT EQ (LT == EQ)",fontsize=16,color="black",shape="box"];323 -> 367[label="",style="solid", color="black", weight=3]; 324[label="compare2 LT GT (LT == GT)",fontsize=16,color="black",shape="box"];324 -> 368[label="",style="solid", color="black", weight=3]; 325[label="compare2 EQ LT (EQ == LT)",fontsize=16,color="black",shape="box"];325 -> 369[label="",style="solid", color="black", weight=3]; 326[label="compare2 EQ EQ (EQ == EQ)",fontsize=16,color="black",shape="box"];326 -> 370[label="",style="solid", color="black", weight=3]; 327[label="compare2 EQ GT (EQ == GT)",fontsize=16,color="black",shape="box"];327 -> 371[label="",style="solid", color="black", weight=3]; 328[label="compare2 GT LT (GT == LT)",fontsize=16,color="black",shape="box"];328 -> 372[label="",style="solid", color="black", weight=3]; 329[label="compare2 GT EQ (GT == EQ)",fontsize=16,color="black",shape="box"];329 -> 373[label="",style="solid", color="black", weight=3]; 330[label="compare2 GT GT (GT == GT)",fontsize=16,color="black",shape="box"];330 -> 374[label="",style="solid", color="black", weight=3]; 331[label="compare2 False False (False == False)",fontsize=16,color="black",shape="box"];331 -> 375[label="",style="solid", color="black", weight=3]; 332[label="compare2 False True (False == True)",fontsize=16,color="black",shape="box"];332 -> 376[label="",style="solid", color="black", weight=3]; 333[label="compare2 True False (True == False)",fontsize=16,color="black",shape="box"];333 -> 377[label="",style="solid", color="black", weight=3]; 334[label="compare2 True True (True == True)",fontsize=16,color="black",shape="box"];334 -> 378[label="",style="solid", color="black", weight=3]; 335[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];2997[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];335 -> 2997[label="",style="solid", color="burlywood", weight=9]; 2997 -> 379[label="",style="solid", color="burlywood", weight=3]; 2998[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];335 -> 2998[label="",style="solid", color="burlywood", weight=9]; 2998 -> 380[label="",style="solid", color="burlywood", weight=3]; 336[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];2999[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];336 -> 2999[label="",style="solid", color="burlywood", weight=9]; 2999 -> 381[label="",style="solid", color="burlywood", weight=3]; 3000[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];336 -> 3000[label="",style="solid", color="burlywood", weight=9]; 3000 -> 382[label="",style="solid", color="burlywood", weight=3]; 337[label="primCmpNat vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3001[label="vyw30/Succ vyw300",fontsize=10,color="white",style="solid",shape="box"];337 -> 3001[label="",style="solid", color="burlywood", weight=9]; 3001 -> 383[label="",style="solid", color="burlywood", weight=3]; 3002[label="vyw30/Zero",fontsize=10,color="white",style="solid",shape="box"];337 -> 3002[label="",style="solid", color="burlywood", weight=9]; 3002 -> 384[label="",style="solid", color="burlywood", weight=3]; 338[label="vyw400",fontsize=16,color="green",shape="box"];339[label="vyw30",fontsize=16,color="green",shape="box"];340[label="compare2 (vyw30,vyw31) (vyw400,vyw401) ((vyw30,vyw31) == (vyw400,vyw401))",fontsize=16,color="black",shape="box"];340 -> 385[label="",style="solid", color="black", weight=3]; 341[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) ((vyw30,vyw31,vyw32) == (vyw400,vyw401,vyw402))",fontsize=16,color="black",shape="box"];341 -> 386[label="",style="solid", color="black", weight=3]; 342[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3003[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];342 -> 3003[label="",style="solid", color="burlywood", weight=9]; 3003 -> 387[label="",style="solid", color="burlywood", weight=3]; 3004[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];342 -> 3004[label="",style="solid", color="burlywood", weight=9]; 3004 -> 388[label="",style="solid", color="burlywood", weight=3]; 343[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 vyw401)",fontsize=16,color="burlywood",shape="box"];3005[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3005[label="",style="solid", color="burlywood", weight=9]; 3005 -> 389[label="",style="solid", color="burlywood", weight=3]; 3006[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];343 -> 3006[label="",style="solid", color="burlywood", weight=9]; 3006 -> 390[label="",style="solid", color="burlywood", weight=3]; 345 -> 168[label="",style="dashed", color="red", weight=0]; 345[label="compare vyw31 vyw401",fontsize=16,color="magenta"];345 -> 391[label="",style="dashed", color="magenta", weight=3]; 345 -> 392[label="",style="dashed", color="magenta", weight=3]; 344[label="primCompAux vyw30 vyw400 vyw39",fontsize=16,color="black",shape="triangle"];344 -> 393[label="",style="solid", color="black", weight=3]; 346[label="primCmpInt (Pos (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];346 -> 395[label="",style="solid", color="black", weight=3]; 347[label="primCmpInt (Pos (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];347 -> 396[label="",style="solid", color="black", weight=3]; 348[label="primCmpInt (Pos Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3007[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];348 -> 3007[label="",style="solid", color="burlywood", weight=9]; 3007 -> 397[label="",style="solid", color="burlywood", weight=3]; 3008[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];348 -> 3008[label="",style="solid", color="burlywood", weight=9]; 3008 -> 398[label="",style="solid", color="burlywood", weight=3]; 349[label="primCmpInt (Pos Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3009[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];349 -> 3009[label="",style="solid", color="burlywood", weight=9]; 3009 -> 399[label="",style="solid", color="burlywood", weight=3]; 3010[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];349 -> 3010[label="",style="solid", color="burlywood", weight=9]; 3010 -> 400[label="",style="solid", color="burlywood", weight=3]; 350[label="primCmpInt (Neg (Succ vyw300)) (Pos vyw400)",fontsize=16,color="black",shape="box"];350 -> 401[label="",style="solid", color="black", weight=3]; 351[label="primCmpInt (Neg (Succ vyw300)) (Neg vyw400)",fontsize=16,color="black",shape="box"];351 -> 402[label="",style="solid", color="black", weight=3]; 352[label="primCmpInt (Neg Zero) (Pos vyw400)",fontsize=16,color="burlywood",shape="box"];3011[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];352 -> 3011[label="",style="solid", color="burlywood", weight=9]; 3011 -> 403[label="",style="solid", color="burlywood", weight=3]; 3012[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];352 -> 3012[label="",style="solid", color="burlywood", weight=9]; 3012 -> 404[label="",style="solid", color="burlywood", weight=3]; 353[label="primCmpInt (Neg Zero) (Neg vyw400)",fontsize=16,color="burlywood",shape="box"];3013[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];353 -> 3013[label="",style="solid", color="burlywood", weight=9]; 3013 -> 405[label="",style="solid", color="burlywood", weight=3]; 3014[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];353 -> 3014[label="",style="solid", color="burlywood", weight=9]; 3014 -> 406[label="",style="solid", color="burlywood", weight=3]; 250[label="vyw13",fontsize=16,color="green",shape="box"];251[label="vyw18",fontsize=16,color="green",shape="box"];252[label="LT == GT",fontsize=16,color="black",shape="box"];252 -> 309[label="",style="solid", color="black", weight=3]; 253[label="EQ == GT",fontsize=16,color="black",shape="box"];253 -> 310[label="",style="solid", color="black", weight=3]; 254[label="GT == GT",fontsize=16,color="black",shape="box"];254 -> 311[label="",style="solid", color="black", weight=3]; 255[label="vyw13",fontsize=16,color="green",shape="box"];256[label="vyw18",fontsize=16,color="green",shape="box"];257[label="vyw13",fontsize=16,color="green",shape="box"];258[label="vyw18",fontsize=16,color="green",shape="box"];259[label="vyw13",fontsize=16,color="green",shape="box"];260[label="vyw18",fontsize=16,color="green",shape="box"];261[label="vyw13",fontsize=16,color="green",shape="box"];262[label="vyw18",fontsize=16,color="green",shape="box"];263[label="vyw13",fontsize=16,color="green",shape="box"];264[label="vyw18",fontsize=16,color="green",shape="box"];265[label="vyw13",fontsize=16,color="green",shape="box"];266[label="vyw18",fontsize=16,color="green",shape="box"];267[label="vyw13",fontsize=16,color="green",shape="box"];268[label="vyw18",fontsize=16,color="green",shape="box"];269[label="vyw13",fontsize=16,color="green",shape="box"];270[label="vyw18",fontsize=16,color="green",shape="box"];271[label="vyw13",fontsize=16,color="green",shape="box"];272[label="vyw18",fontsize=16,color="green",shape="box"];273[label="vyw13",fontsize=16,color="green",shape="box"];274[label="vyw18",fontsize=16,color="green",shape="box"];275[label="vyw13",fontsize=16,color="green",shape="box"];276[label="vyw18",fontsize=16,color="green",shape="box"];277[label="vyw13",fontsize=16,color="green",shape="box"];278[label="vyw18",fontsize=16,color="green",shape="box"];279[label="vyw13",fontsize=16,color="green",shape="box"];280[label="vyw18",fontsize=16,color="green",shape="box"];308[label="FiniteMap.elemFM0 (Just vyw29)",fontsize=16,color="black",shape="box"];308 -> 394[label="",style="solid", color="black", weight=3]; 354[label="vyw400 * vyw31",fontsize=16,color="burlywood",shape="triangle"];3015[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];354 -> 3015[label="",style="solid", color="burlywood", weight=9]; 3015 -> 407[label="",style="solid", color="burlywood", weight=3]; 355 -> 354[label="",style="dashed", color="red", weight=0]; 355[label="vyw30 * vyw401",fontsize=16,color="magenta"];355 -> 408[label="",style="dashed", color="magenta", weight=3]; 355 -> 409[label="",style="dashed", color="magenta", weight=3]; 356[label="vyw400 * vyw31",fontsize=16,color="black",shape="triangle"];356 -> 410[label="",style="solid", color="black", weight=3]; 357 -> 356[label="",style="dashed", color="red", weight=0]; 357[label="vyw30 * vyw401",fontsize=16,color="magenta"];357 -> 411[label="",style="dashed", color="magenta", weight=3]; 357 -> 412[label="",style="dashed", color="magenta", weight=3]; 358 -> 413[label="",style="dashed", color="red", weight=0]; 358[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];358 -> 414[label="",style="dashed", color="magenta", weight=3]; 358 -> 415[label="",style="dashed", color="magenta", weight=3]; 358 -> 416[label="",style="dashed", color="magenta", weight=3]; 359[label="compare2 (Left vyw30) (Right vyw400) False",fontsize=16,color="black",shape="box"];359 -> 417[label="",style="solid", color="black", weight=3]; 360[label="compare2 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];360 -> 418[label="",style="solid", color="black", weight=3]; 361 -> 419[label="",style="dashed", color="red", weight=0]; 361[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];361 -> 420[label="",style="dashed", color="magenta", weight=3]; 361 -> 421[label="",style="dashed", color="magenta", weight=3]; 361 -> 422[label="",style="dashed", color="magenta", weight=3]; 362[label="compare2 Nothing Nothing True",fontsize=16,color="black",shape="box"];362 -> 423[label="",style="solid", color="black", weight=3]; 363[label="compare2 Nothing (Just vyw400) False",fontsize=16,color="black",shape="box"];363 -> 424[label="",style="solid", color="black", weight=3]; 364[label="compare2 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];364 -> 425[label="",style="solid", color="black", weight=3]; 365 -> 426[label="",style="dashed", color="red", weight=0]; 365[label="compare2 (Just vyw30) (Just vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];365 -> 427[label="",style="dashed", color="magenta", weight=3]; 365 -> 428[label="",style="dashed", color="magenta", weight=3]; 365 -> 429[label="",style="dashed", color="magenta", weight=3]; 366[label="compare2 LT LT True",fontsize=16,color="black",shape="box"];366 -> 430[label="",style="solid", color="black", weight=3]; 367[label="compare2 LT EQ False",fontsize=16,color="black",shape="box"];367 -> 431[label="",style="solid", color="black", weight=3]; 368[label="compare2 LT GT False",fontsize=16,color="black",shape="box"];368 -> 432[label="",style="solid", color="black", weight=3]; 369[label="compare2 EQ LT False",fontsize=16,color="black",shape="box"];369 -> 433[label="",style="solid", color="black", weight=3]; 370[label="compare2 EQ EQ True",fontsize=16,color="black",shape="box"];370 -> 434[label="",style="solid", color="black", weight=3]; 371[label="compare2 EQ GT False",fontsize=16,color="black",shape="box"];371 -> 435[label="",style="solid", color="black", weight=3]; 372[label="compare2 GT LT False",fontsize=16,color="black",shape="box"];372 -> 436[label="",style="solid", color="black", weight=3]; 373[label="compare2 GT EQ False",fontsize=16,color="black",shape="box"];373 -> 437[label="",style="solid", color="black", weight=3]; 374[label="compare2 GT GT True",fontsize=16,color="black",shape="box"];374 -> 438[label="",style="solid", color="black", weight=3]; 375[label="compare2 False False True",fontsize=16,color="black",shape="box"];375 -> 439[label="",style="solid", color="black", weight=3]; 376[label="compare2 False True False",fontsize=16,color="black",shape="box"];376 -> 440[label="",style="solid", color="black", weight=3]; 377[label="compare2 True False False",fontsize=16,color="black",shape="box"];377 -> 441[label="",style="solid", color="black", weight=3]; 378[label="compare2 True True True",fontsize=16,color="black",shape="box"];378 -> 442[label="",style="solid", color="black", weight=3]; 379[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];379 -> 443[label="",style="solid", color="black", weight=3]; 380[label="primCmpDouble (Double vyw30 (Pos vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];380 -> 444[label="",style="solid", color="black", weight=3]; 381[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];381 -> 445[label="",style="solid", color="black", weight=3]; 382[label="primCmpDouble (Double vyw30 (Neg vyw310)) (Double vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];382 -> 446[label="",style="solid", color="black", weight=3]; 383[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3016[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];383 -> 3016[label="",style="solid", color="burlywood", weight=9]; 3016 -> 447[label="",style="solid", color="burlywood", weight=3]; 3017[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];383 -> 3017[label="",style="solid", color="burlywood", weight=9]; 3017 -> 448[label="",style="solid", color="burlywood", weight=3]; 384[label="primCmpNat Zero vyw400",fontsize=16,color="burlywood",shape="box"];3018[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];384 -> 3018[label="",style="solid", color="burlywood", weight=9]; 3018 -> 449[label="",style="solid", color="burlywood", weight=3]; 3019[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];384 -> 3019[label="",style="solid", color="burlywood", weight=9]; 3019 -> 450[label="",style="solid", color="burlywood", weight=3]; 385 -> 894[label="",style="dashed", color="red", weight=0]; 385[label="compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401)",fontsize=16,color="magenta"];385 -> 895[label="",style="dashed", color="magenta", weight=3]; 385 -> 896[label="",style="dashed", color="magenta", weight=3]; 385 -> 897[label="",style="dashed", color="magenta", weight=3]; 385 -> 898[label="",style="dashed", color="magenta", weight=3]; 385 -> 899[label="",style="dashed", color="magenta", weight=3]; 386 -> 938[label="",style="dashed", color="red", weight=0]; 386[label="compare2 (vyw30,vyw31,vyw32) (vyw400,vyw401,vyw402) (vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402)",fontsize=16,color="magenta"];386 -> 939[label="",style="dashed", color="magenta", weight=3]; 386 -> 940[label="",style="dashed", color="magenta", weight=3]; 386 -> 941[label="",style="dashed", color="magenta", weight=3]; 386 -> 942[label="",style="dashed", color="magenta", weight=3]; 386 -> 943[label="",style="dashed", color="magenta", weight=3]; 386 -> 944[label="",style="dashed", color="magenta", weight=3]; 386 -> 945[label="",style="dashed", color="magenta", weight=3]; 387[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];387 -> 465[label="",style="solid", color="black", weight=3]; 388[label="primCmpFloat (Float vyw30 (Pos vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];388 -> 466[label="",style="solid", color="black", weight=3]; 389[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Pos vyw4010))",fontsize=16,color="black",shape="box"];389 -> 467[label="",style="solid", color="black", weight=3]; 390[label="primCmpFloat (Float vyw30 (Neg vyw310)) (Float vyw400 (Neg vyw4010))",fontsize=16,color="black",shape="box"];390 -> 468[label="",style="solid", color="black", weight=3]; 391[label="vyw401",fontsize=16,color="green",shape="box"];392[label="vyw31",fontsize=16,color="green",shape="box"];393 -> 469[label="",style="dashed", color="red", weight=0]; 393[label="primCompAux0 vyw39 (compare vyw30 vyw400)",fontsize=16,color="magenta"];393 -> 470[label="",style="dashed", color="magenta", weight=3]; 393 -> 471[label="",style="dashed", color="magenta", weight=3]; 395 -> 337[label="",style="dashed", color="red", weight=0]; 395[label="primCmpNat (Succ vyw300) vyw400",fontsize=16,color="magenta"];395 -> 472[label="",style="dashed", color="magenta", weight=3]; 395 -> 473[label="",style="dashed", color="magenta", weight=3]; 396[label="GT",fontsize=16,color="green",shape="box"];397[label="primCmpInt (Pos Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];397 -> 474[label="",style="solid", color="black", weight=3]; 398[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];398 -> 475[label="",style="solid", color="black", weight=3]; 399[label="primCmpInt (Pos Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];399 -> 476[label="",style="solid", color="black", weight=3]; 400[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];400 -> 477[label="",style="solid", color="black", weight=3]; 401[label="LT",fontsize=16,color="green",shape="box"];402 -> 337[label="",style="dashed", color="red", weight=0]; 402[label="primCmpNat vyw400 (Succ vyw300)",fontsize=16,color="magenta"];402 -> 478[label="",style="dashed", color="magenta", weight=3]; 402 -> 479[label="",style="dashed", color="magenta", weight=3]; 403[label="primCmpInt (Neg Zero) (Pos (Succ vyw4000))",fontsize=16,color="black",shape="box"];403 -> 480[label="",style="solid", color="black", weight=3]; 404[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];404 -> 481[label="",style="solid", color="black", weight=3]; 405[label="primCmpInt (Neg Zero) (Neg (Succ vyw4000))",fontsize=16,color="black",shape="box"];405 -> 482[label="",style="solid", color="black", weight=3]; 406[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];406 -> 483[label="",style="solid", color="black", weight=3]; 309[label="False",fontsize=16,color="green",shape="box"];310[label="False",fontsize=16,color="green",shape="box"];311[label="True",fontsize=16,color="green",shape="box"];394[label="True",fontsize=16,color="green",shape="box"];407[label="Integer vyw4000 * vyw31",fontsize=16,color="burlywood",shape="box"];3020[label="vyw31/Integer vyw310",fontsize=10,color="white",style="solid",shape="box"];407 -> 3020[label="",style="solid", color="burlywood", weight=9]; 3020 -> 484[label="",style="solid", color="burlywood", weight=3]; 408[label="vyw401",fontsize=16,color="green",shape="box"];409[label="vyw30",fontsize=16,color="green",shape="box"];410[label="primMulInt vyw400 vyw31",fontsize=16,color="burlywood",shape="triangle"];3021[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];410 -> 3021[label="",style="solid", color="burlywood", weight=9]; 3021 -> 485[label="",style="solid", color="burlywood", weight=3]; 3022[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];410 -> 3022[label="",style="solid", color="burlywood", weight=9]; 3022 -> 486[label="",style="solid", color="burlywood", weight=3]; 411[label="vyw401",fontsize=16,color="green",shape="box"];412[label="vyw30",fontsize=16,color="green",shape="box"];414[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3023[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3023[label="",style="solid", color="blue", weight=9]; 3023 -> 487[label="",style="solid", color="blue", weight=3]; 3024[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3024[label="",style="solid", color="blue", weight=9]; 3024 -> 488[label="",style="solid", color="blue", weight=3]; 3025[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3025[label="",style="solid", color="blue", weight=9]; 3025 -> 489[label="",style="solid", color="blue", weight=3]; 3026[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3026[label="",style="solid", color="blue", weight=9]; 3026 -> 490[label="",style="solid", color="blue", weight=3]; 3027[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3027[label="",style="solid", color="blue", weight=9]; 3027 -> 491[label="",style="solid", color="blue", weight=3]; 3028[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3028[label="",style="solid", color="blue", weight=9]; 3028 -> 492[label="",style="solid", color="blue", weight=3]; 3029[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3029[label="",style="solid", color="blue", weight=9]; 3029 -> 493[label="",style="solid", color="blue", weight=3]; 3030[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3030[label="",style="solid", color="blue", weight=9]; 3030 -> 494[label="",style="solid", color="blue", weight=3]; 3031[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3031[label="",style="solid", color="blue", weight=9]; 3031 -> 495[label="",style="solid", color="blue", weight=3]; 3032[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3032[label="",style="solid", color="blue", weight=9]; 3032 -> 496[label="",style="solid", color="blue", weight=3]; 3033[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3033[label="",style="solid", color="blue", weight=9]; 3033 -> 497[label="",style="solid", color="blue", weight=3]; 3034[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3034[label="",style="solid", color="blue", weight=9]; 3034 -> 498[label="",style="solid", color="blue", weight=3]; 3035[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3035[label="",style="solid", color="blue", weight=9]; 3035 -> 499[label="",style="solid", color="blue", weight=3]; 3036[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 3036[label="",style="solid", color="blue", weight=9]; 3036 -> 500[label="",style="solid", color="blue", weight=3]; 415[label="vyw30",fontsize=16,color="green",shape="box"];416[label="vyw400",fontsize=16,color="green",shape="box"];413[label="compare2 (Left vyw44) (Left vyw45) vyw46",fontsize=16,color="burlywood",shape="triangle"];3037[label="vyw46/False",fontsize=10,color="white",style="solid",shape="box"];413 -> 3037[label="",style="solid", color="burlywood", weight=9]; 3037 -> 501[label="",style="solid", color="burlywood", weight=3]; 3038[label="vyw46/True",fontsize=10,color="white",style="solid",shape="box"];413 -> 3038[label="",style="solid", color="burlywood", weight=9]; 3038 -> 502[label="",style="solid", color="burlywood", weight=3]; 417[label="compare1 (Left vyw30) (Right vyw400) (Left vyw30 <= Right vyw400)",fontsize=16,color="black",shape="box"];417 -> 503[label="",style="solid", color="black", weight=3]; 418[label="compare1 (Right vyw30) (Left vyw400) (Right vyw30 <= Left vyw400)",fontsize=16,color="black",shape="box"];418 -> 504[label="",style="solid", color="black", weight=3]; 420[label="vyw30",fontsize=16,color="green",shape="box"];421[label="vyw400",fontsize=16,color="green",shape="box"];422[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3039[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3039[label="",style="solid", color="blue", weight=9]; 3039 -> 505[label="",style="solid", color="blue", weight=3]; 3040[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3040[label="",style="solid", color="blue", weight=9]; 3040 -> 506[label="",style="solid", color="blue", weight=3]; 3041[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3041[label="",style="solid", color="blue", weight=9]; 3041 -> 507[label="",style="solid", color="blue", weight=3]; 3042[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3042[label="",style="solid", color="blue", weight=9]; 3042 -> 508[label="",style="solid", color="blue", weight=3]; 3043[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3043[label="",style="solid", color="blue", weight=9]; 3043 -> 509[label="",style="solid", color="blue", weight=3]; 3044[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3044[label="",style="solid", color="blue", weight=9]; 3044 -> 510[label="",style="solid", color="blue", weight=3]; 3045[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3045[label="",style="solid", color="blue", weight=9]; 3045 -> 511[label="",style="solid", color="blue", weight=3]; 3046[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3046[label="",style="solid", color="blue", weight=9]; 3046 -> 512[label="",style="solid", color="blue", weight=3]; 3047[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3047[label="",style="solid", color="blue", weight=9]; 3047 -> 513[label="",style="solid", color="blue", weight=3]; 3048[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3048[label="",style="solid", color="blue", weight=9]; 3048 -> 514[label="",style="solid", color="blue", weight=3]; 3049[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3049[label="",style="solid", color="blue", weight=9]; 3049 -> 515[label="",style="solid", color="blue", weight=3]; 3050[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3050[label="",style="solid", color="blue", weight=9]; 3050 -> 516[label="",style="solid", color="blue", weight=3]; 3051[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3051[label="",style="solid", color="blue", weight=9]; 3051 -> 517[label="",style="solid", color="blue", weight=3]; 3052[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 3052[label="",style="solid", color="blue", weight=9]; 3052 -> 518[label="",style="solid", color="blue", weight=3]; 419[label="compare2 (Right vyw51) (Right vyw52) vyw53",fontsize=16,color="burlywood",shape="triangle"];3053[label="vyw53/False",fontsize=10,color="white",style="solid",shape="box"];419 -> 3053[label="",style="solid", color="burlywood", weight=9]; 3053 -> 519[label="",style="solid", color="burlywood", weight=3]; 3054[label="vyw53/True",fontsize=10,color="white",style="solid",shape="box"];419 -> 3054[label="",style="solid", color="burlywood", weight=9]; 3054 -> 520[label="",style="solid", color="burlywood", weight=3]; 423[label="EQ",fontsize=16,color="green",shape="box"];424[label="compare1 Nothing (Just vyw400) (Nothing <= Just vyw400)",fontsize=16,color="black",shape="box"];424 -> 521[label="",style="solid", color="black", weight=3]; 425[label="compare1 (Just vyw30) Nothing (Just vyw30 <= Nothing)",fontsize=16,color="black",shape="box"];425 -> 522[label="",style="solid", color="black", weight=3]; 427[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3055[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3055[label="",style="solid", color="blue", weight=9]; 3055 -> 523[label="",style="solid", color="blue", weight=3]; 3056[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3056[label="",style="solid", color="blue", weight=9]; 3056 -> 524[label="",style="solid", color="blue", weight=3]; 3057[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3057[label="",style="solid", color="blue", weight=9]; 3057 -> 525[label="",style="solid", color="blue", weight=3]; 3058[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3058[label="",style="solid", color="blue", weight=9]; 3058 -> 526[label="",style="solid", color="blue", weight=3]; 3059[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3059[label="",style="solid", color="blue", weight=9]; 3059 -> 527[label="",style="solid", color="blue", weight=3]; 3060[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3060[label="",style="solid", color="blue", weight=9]; 3060 -> 528[label="",style="solid", color="blue", weight=3]; 3061[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3061[label="",style="solid", color="blue", weight=9]; 3061 -> 529[label="",style="solid", color="blue", weight=3]; 3062[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3062[label="",style="solid", color="blue", weight=9]; 3062 -> 530[label="",style="solid", color="blue", weight=3]; 3063[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3063[label="",style="solid", color="blue", weight=9]; 3063 -> 531[label="",style="solid", color="blue", weight=3]; 3064[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3064[label="",style="solid", color="blue", weight=9]; 3064 -> 532[label="",style="solid", color="blue", weight=3]; 3065[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3065[label="",style="solid", color="blue", weight=9]; 3065 -> 533[label="",style="solid", color="blue", weight=3]; 3066[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3066[label="",style="solid", color="blue", weight=9]; 3066 -> 534[label="",style="solid", color="blue", weight=3]; 3067[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3067[label="",style="solid", color="blue", weight=9]; 3067 -> 535[label="",style="solid", color="blue", weight=3]; 3068[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];427 -> 3068[label="",style="solid", color="blue", weight=9]; 3068 -> 536[label="",style="solid", color="blue", weight=3]; 428[label="vyw30",fontsize=16,color="green",shape="box"];429[label="vyw400",fontsize=16,color="green",shape="box"];426[label="compare2 (Just vyw58) (Just vyw59) vyw60",fontsize=16,color="burlywood",shape="triangle"];3069[label="vyw60/False",fontsize=10,color="white",style="solid",shape="box"];426 -> 3069[label="",style="solid", color="burlywood", weight=9]; 3069 -> 537[label="",style="solid", color="burlywood", weight=3]; 3070[label="vyw60/True",fontsize=10,color="white",style="solid",shape="box"];426 -> 3070[label="",style="solid", color="burlywood", weight=9]; 3070 -> 538[label="",style="solid", color="burlywood", weight=3]; 430[label="EQ",fontsize=16,color="green",shape="box"];431[label="compare1 LT EQ (LT <= EQ)",fontsize=16,color="black",shape="box"];431 -> 539[label="",style="solid", color="black", weight=3]; 432[label="compare1 LT GT (LT <= GT)",fontsize=16,color="black",shape="box"];432 -> 540[label="",style="solid", color="black", weight=3]; 433[label="compare1 EQ LT (EQ <= LT)",fontsize=16,color="black",shape="box"];433 -> 541[label="",style="solid", color="black", weight=3]; 434[label="EQ",fontsize=16,color="green",shape="box"];435[label="compare1 EQ GT (EQ <= GT)",fontsize=16,color="black",shape="box"];435 -> 542[label="",style="solid", color="black", weight=3]; 436[label="compare1 GT LT (GT <= LT)",fontsize=16,color="black",shape="box"];436 -> 543[label="",style="solid", color="black", weight=3]; 437[label="compare1 GT EQ (GT <= EQ)",fontsize=16,color="black",shape="box"];437 -> 544[label="",style="solid", color="black", weight=3]; 438[label="EQ",fontsize=16,color="green",shape="box"];439[label="EQ",fontsize=16,color="green",shape="box"];440[label="compare1 False True (False <= True)",fontsize=16,color="black",shape="box"];440 -> 545[label="",style="solid", color="black", weight=3]; 441[label="compare1 True False (True <= False)",fontsize=16,color="black",shape="box"];441 -> 546[label="",style="solid", color="black", weight=3]; 442[label="EQ",fontsize=16,color="green",shape="box"];443 -> 169[label="",style="dashed", color="red", weight=0]; 443[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];443 -> 547[label="",style="dashed", color="magenta", weight=3]; 443 -> 548[label="",style="dashed", color="magenta", weight=3]; 444 -> 169[label="",style="dashed", color="red", weight=0]; 444[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];444 -> 549[label="",style="dashed", color="magenta", weight=3]; 444 -> 550[label="",style="dashed", color="magenta", weight=3]; 445 -> 169[label="",style="dashed", color="red", weight=0]; 445[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];445 -> 551[label="",style="dashed", color="magenta", weight=3]; 445 -> 552[label="",style="dashed", color="magenta", weight=3]; 446 -> 169[label="",style="dashed", color="red", weight=0]; 446[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];446 -> 553[label="",style="dashed", color="magenta", weight=3]; 446 -> 554[label="",style="dashed", color="magenta", weight=3]; 447[label="primCmpNat (Succ vyw300) (Succ vyw4000)",fontsize=16,color="black",shape="box"];447 -> 555[label="",style="solid", color="black", weight=3]; 448[label="primCmpNat (Succ vyw300) Zero",fontsize=16,color="black",shape="box"];448 -> 556[label="",style="solid", color="black", weight=3]; 449[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="black",shape="box"];449 -> 557[label="",style="solid", color="black", weight=3]; 450[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];450 -> 558[label="",style="solid", color="black", weight=3]; 895 -> 970[label="",style="dashed", color="red", weight=0]; 895[label="vyw30 == vyw400 && vyw31 == vyw401",fontsize=16,color="magenta"];895 -> 971[label="",style="dashed", color="magenta", weight=3]; 895 -> 972[label="",style="dashed", color="magenta", weight=3]; 896[label="vyw30",fontsize=16,color="green",shape="box"];897[label="vyw31",fontsize=16,color="green",shape="box"];898[label="vyw400",fontsize=16,color="green",shape="box"];899[label="vyw401",fontsize=16,color="green",shape="box"];894[label="compare2 (vyw98,vyw99) (vyw100,vyw101) vyw102",fontsize=16,color="burlywood",shape="triangle"];3071[label="vyw102/False",fontsize=10,color="white",style="solid",shape="box"];894 -> 3071[label="",style="solid", color="burlywood", weight=9]; 3071 -> 919[label="",style="solid", color="burlywood", weight=3]; 3072[label="vyw102/True",fontsize=10,color="white",style="solid",shape="box"];894 -> 3072[label="",style="solid", color="burlywood", weight=9]; 3072 -> 920[label="",style="solid", color="burlywood", weight=3]; 939 -> 970[label="",style="dashed", color="red", weight=0]; 939[label="vyw30 == vyw400 && vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];939 -> 973[label="",style="dashed", color="magenta", weight=3]; 939 -> 974[label="",style="dashed", color="magenta", weight=3]; 940[label="vyw400",fontsize=16,color="green",shape="box"];941[label="vyw30",fontsize=16,color="green",shape="box"];942[label="vyw402",fontsize=16,color="green",shape="box"];943[label="vyw31",fontsize=16,color="green",shape="box"];944[label="vyw401",fontsize=16,color="green",shape="box"];945[label="vyw32",fontsize=16,color="green",shape="box"];938[label="compare2 (vyw80,vyw81,vyw82) (vyw83,vyw84,vyw85) vyw110",fontsize=16,color="burlywood",shape="triangle"];3073[label="vyw110/False",fontsize=10,color="white",style="solid",shape="box"];938 -> 3073[label="",style="solid", color="burlywood", weight=9]; 3073 -> 954[label="",style="solid", color="burlywood", weight=3]; 3074[label="vyw110/True",fontsize=10,color="white",style="solid",shape="box"];938 -> 3074[label="",style="solid", color="burlywood", weight=9]; 3074 -> 955[label="",style="solid", color="burlywood", weight=3]; 465 -> 169[label="",style="dashed", color="red", weight=0]; 465[label="compare (vyw30 * Pos vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];465 -> 591[label="",style="dashed", color="magenta", weight=3]; 465 -> 592[label="",style="dashed", color="magenta", weight=3]; 466 -> 169[label="",style="dashed", color="red", weight=0]; 466[label="compare (vyw30 * Pos vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];466 -> 593[label="",style="dashed", color="magenta", weight=3]; 466 -> 594[label="",style="dashed", color="magenta", weight=3]; 467 -> 169[label="",style="dashed", color="red", weight=0]; 467[label="compare (vyw30 * Neg vyw4010) (Pos vyw310 * vyw400)",fontsize=16,color="magenta"];467 -> 595[label="",style="dashed", color="magenta", weight=3]; 467 -> 596[label="",style="dashed", color="magenta", weight=3]; 468 -> 169[label="",style="dashed", color="red", weight=0]; 468[label="compare (vyw30 * Neg vyw4010) (Neg vyw310 * vyw400)",fontsize=16,color="magenta"];468 -> 597[label="",style="dashed", color="magenta", weight=3]; 468 -> 598[label="",style="dashed", color="magenta", weight=3]; 470[label="vyw39",fontsize=16,color="green",shape="box"];471[label="compare vyw30 vyw400",fontsize=16,color="blue",shape="box"];3075[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3075[label="",style="solid", color="blue", weight=9]; 3075 -> 599[label="",style="solid", color="blue", weight=3]; 3076[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3076[label="",style="solid", color="blue", weight=9]; 3076 -> 600[label="",style="solid", color="blue", weight=3]; 3077[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3077[label="",style="solid", color="blue", weight=9]; 3077 -> 601[label="",style="solid", color="blue", weight=3]; 3078[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3078[label="",style="solid", color="blue", weight=9]; 3078 -> 602[label="",style="solid", color="blue", weight=3]; 3079[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3079[label="",style="solid", color="blue", weight=9]; 3079 -> 603[label="",style="solid", color="blue", weight=3]; 3080[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3080[label="",style="solid", color="blue", weight=9]; 3080 -> 604[label="",style="solid", color="blue", weight=3]; 3081[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3081[label="",style="solid", color="blue", weight=9]; 3081 -> 605[label="",style="solid", color="blue", weight=3]; 3082[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3082[label="",style="solid", color="blue", weight=9]; 3082 -> 606[label="",style="solid", color="blue", weight=3]; 3083[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3083[label="",style="solid", color="blue", weight=9]; 3083 -> 607[label="",style="solid", color="blue", weight=3]; 3084[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3084[label="",style="solid", color="blue", weight=9]; 3084 -> 608[label="",style="solid", color="blue", weight=3]; 3085[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3085[label="",style="solid", color="blue", weight=9]; 3085 -> 609[label="",style="solid", color="blue", weight=3]; 3086[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3086[label="",style="solid", color="blue", weight=9]; 3086 -> 610[label="",style="solid", color="blue", weight=3]; 3087[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3087[label="",style="solid", color="blue", weight=9]; 3087 -> 611[label="",style="solid", color="blue", weight=3]; 3088[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];471 -> 3088[label="",style="solid", color="blue", weight=9]; 3088 -> 612[label="",style="solid", color="blue", weight=3]; 469[label="primCompAux0 vyw90 vyw91",fontsize=16,color="burlywood",shape="triangle"];3089[label="vyw91/LT",fontsize=10,color="white",style="solid",shape="box"];469 -> 3089[label="",style="solid", color="burlywood", weight=9]; 3089 -> 613[label="",style="solid", color="burlywood", weight=3]; 3090[label="vyw91/EQ",fontsize=10,color="white",style="solid",shape="box"];469 -> 3090[label="",style="solid", color="burlywood", weight=9]; 3090 -> 614[label="",style="solid", color="burlywood", weight=3]; 3091[label="vyw91/GT",fontsize=10,color="white",style="solid",shape="box"];469 -> 3091[label="",style="solid", color="burlywood", weight=9]; 3091 -> 615[label="",style="solid", color="burlywood", weight=3]; 472[label="vyw400",fontsize=16,color="green",shape="box"];473[label="Succ vyw300",fontsize=16,color="green",shape="box"];474 -> 337[label="",style="dashed", color="red", weight=0]; 474[label="primCmpNat Zero (Succ vyw4000)",fontsize=16,color="magenta"];474 -> 616[label="",style="dashed", color="magenta", weight=3]; 474 -> 617[label="",style="dashed", color="magenta", weight=3]; 475[label="EQ",fontsize=16,color="green",shape="box"];476[label="GT",fontsize=16,color="green",shape="box"];477[label="EQ",fontsize=16,color="green",shape="box"];478[label="Succ vyw300",fontsize=16,color="green",shape="box"];479[label="vyw400",fontsize=16,color="green",shape="box"];480[label="LT",fontsize=16,color="green",shape="box"];481[label="EQ",fontsize=16,color="green",shape="box"];482 -> 337[label="",style="dashed", color="red", weight=0]; 482[label="primCmpNat (Succ vyw4000) Zero",fontsize=16,color="magenta"];482 -> 618[label="",style="dashed", color="magenta", weight=3]; 482 -> 619[label="",style="dashed", color="magenta", weight=3]; 483[label="EQ",fontsize=16,color="green",shape="box"];484[label="Integer vyw4000 * Integer vyw310",fontsize=16,color="black",shape="box"];484 -> 620[label="",style="solid", color="black", weight=3]; 485[label="primMulInt (Pos vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3092[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];485 -> 3092[label="",style="solid", color="burlywood", weight=9]; 3092 -> 621[label="",style="solid", color="burlywood", weight=3]; 3093[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];485 -> 3093[label="",style="solid", color="burlywood", weight=9]; 3093 -> 622[label="",style="solid", color="burlywood", weight=3]; 486[label="primMulInt (Neg vyw4000) vyw31",fontsize=16,color="burlywood",shape="box"];3094[label="vyw31/Pos vyw310",fontsize=10,color="white",style="solid",shape="box"];486 -> 3094[label="",style="solid", color="burlywood", weight=9]; 3094 -> 623[label="",style="solid", color="burlywood", weight=3]; 3095[label="vyw31/Neg vyw310",fontsize=10,color="white",style="solid",shape="box"];486 -> 3095[label="",style="solid", color="burlywood", weight=9]; 3095 -> 624[label="",style="solid", color="burlywood", weight=3]; 487[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3096[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];487 -> 3096[label="",style="solid", color="burlywood", weight=9]; 3096 -> 625[label="",style="solid", color="burlywood", weight=3]; 488[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3097[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];488 -> 3097[label="",style="solid", color="burlywood", weight=9]; 3097 -> 626[label="",style="solid", color="burlywood", weight=3]; 3098[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];488 -> 3098[label="",style="solid", color="burlywood", weight=9]; 3098 -> 627[label="",style="solid", color="burlywood", weight=3]; 489[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3099[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];489 -> 3099[label="",style="solid", color="burlywood", weight=9]; 3099 -> 628[label="",style="solid", color="burlywood", weight=3]; 3100[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];489 -> 3100[label="",style="solid", color="burlywood", weight=9]; 3100 -> 629[label="",style="solid", color="burlywood", weight=3]; 490[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];490 -> 630[label="",style="solid", color="black", weight=3]; 491[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3101[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];491 -> 3101[label="",style="solid", color="burlywood", weight=9]; 3101 -> 631[label="",style="solid", color="burlywood", weight=3]; 492[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3102[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];492 -> 3102[label="",style="solid", color="burlywood", weight=9]; 3102 -> 632[label="",style="solid", color="burlywood", weight=3]; 493[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3103[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];493 -> 3103[label="",style="solid", color="burlywood", weight=9]; 3103 -> 633[label="",style="solid", color="burlywood", weight=3]; 3104[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];493 -> 3104[label="",style="solid", color="burlywood", weight=9]; 3104 -> 634[label="",style="solid", color="burlywood", weight=3]; 3105[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];493 -> 3105[label="",style="solid", color="burlywood", weight=9]; 3105 -> 635[label="",style="solid", color="burlywood", weight=3]; 494[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3106[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];494 -> 3106[label="",style="solid", color="burlywood", weight=9]; 3106 -> 636[label="",style="solid", color="burlywood", weight=3]; 3107[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];494 -> 3107[label="",style="solid", color="burlywood", weight=9]; 3107 -> 637[label="",style="solid", color="burlywood", weight=3]; 495[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3108[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];495 -> 3108[label="",style="solid", color="burlywood", weight=9]; 3108 -> 638[label="",style="solid", color="burlywood", weight=3]; 3109[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];495 -> 3109[label="",style="solid", color="burlywood", weight=9]; 3109 -> 639[label="",style="solid", color="burlywood", weight=3]; 496[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3110[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];496 -> 3110[label="",style="solid", color="burlywood", weight=9]; 3110 -> 640[label="",style="solid", color="burlywood", weight=3]; 497[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3111[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];497 -> 3111[label="",style="solid", color="burlywood", weight=9]; 3111 -> 641[label="",style="solid", color="burlywood", weight=3]; 498[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];498 -> 642[label="",style="solid", color="black", weight=3]; 499[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];499 -> 643[label="",style="solid", color="black", weight=3]; 500[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];500 -> 644[label="",style="solid", color="black", weight=3]; 501[label="compare2 (Left vyw44) (Left vyw45) False",fontsize=16,color="black",shape="box"];501 -> 645[label="",style="solid", color="black", weight=3]; 502[label="compare2 (Left vyw44) (Left vyw45) True",fontsize=16,color="black",shape="box"];502 -> 646[label="",style="solid", color="black", weight=3]; 503[label="compare1 (Left vyw30) (Right vyw400) True",fontsize=16,color="black",shape="box"];503 -> 647[label="",style="solid", color="black", weight=3]; 504[label="compare1 (Right vyw30) (Left vyw400) False",fontsize=16,color="black",shape="box"];504 -> 648[label="",style="solid", color="black", weight=3]; 505 -> 487[label="",style="dashed", color="red", weight=0]; 505[label="vyw30 == vyw400",fontsize=16,color="magenta"];505 -> 649[label="",style="dashed", color="magenta", weight=3]; 505 -> 650[label="",style="dashed", color="magenta", weight=3]; 506 -> 488[label="",style="dashed", color="red", weight=0]; 506[label="vyw30 == vyw400",fontsize=16,color="magenta"];506 -> 651[label="",style="dashed", color="magenta", weight=3]; 506 -> 652[label="",style="dashed", color="magenta", weight=3]; 507 -> 489[label="",style="dashed", color="red", weight=0]; 507[label="vyw30 == vyw400",fontsize=16,color="magenta"];507 -> 653[label="",style="dashed", color="magenta", weight=3]; 507 -> 654[label="",style="dashed", color="magenta", weight=3]; 508 -> 490[label="",style="dashed", color="red", weight=0]; 508[label="vyw30 == vyw400",fontsize=16,color="magenta"];508 -> 655[label="",style="dashed", color="magenta", weight=3]; 508 -> 656[label="",style="dashed", color="magenta", weight=3]; 509 -> 491[label="",style="dashed", color="red", weight=0]; 509[label="vyw30 == vyw400",fontsize=16,color="magenta"];509 -> 657[label="",style="dashed", color="magenta", weight=3]; 509 -> 658[label="",style="dashed", color="magenta", weight=3]; 510 -> 492[label="",style="dashed", color="red", weight=0]; 510[label="vyw30 == vyw400",fontsize=16,color="magenta"];510 -> 659[label="",style="dashed", color="magenta", weight=3]; 510 -> 660[label="",style="dashed", color="magenta", weight=3]; 511 -> 493[label="",style="dashed", color="red", weight=0]; 511[label="vyw30 == vyw400",fontsize=16,color="magenta"];511 -> 661[label="",style="dashed", color="magenta", weight=3]; 511 -> 662[label="",style="dashed", color="magenta", weight=3]; 512 -> 494[label="",style="dashed", color="red", weight=0]; 512[label="vyw30 == vyw400",fontsize=16,color="magenta"];512 -> 663[label="",style="dashed", color="magenta", weight=3]; 512 -> 664[label="",style="dashed", color="magenta", weight=3]; 513 -> 495[label="",style="dashed", color="red", weight=0]; 513[label="vyw30 == vyw400",fontsize=16,color="magenta"];513 -> 665[label="",style="dashed", color="magenta", weight=3]; 513 -> 666[label="",style="dashed", color="magenta", weight=3]; 514 -> 496[label="",style="dashed", color="red", weight=0]; 514[label="vyw30 == vyw400",fontsize=16,color="magenta"];514 -> 667[label="",style="dashed", color="magenta", weight=3]; 514 -> 668[label="",style="dashed", color="magenta", weight=3]; 515 -> 497[label="",style="dashed", color="red", weight=0]; 515[label="vyw30 == vyw400",fontsize=16,color="magenta"];515 -> 669[label="",style="dashed", color="magenta", weight=3]; 515 -> 670[label="",style="dashed", color="magenta", weight=3]; 516 -> 498[label="",style="dashed", color="red", weight=0]; 516[label="vyw30 == vyw400",fontsize=16,color="magenta"];516 -> 671[label="",style="dashed", color="magenta", weight=3]; 516 -> 672[label="",style="dashed", color="magenta", weight=3]; 517 -> 499[label="",style="dashed", color="red", weight=0]; 517[label="vyw30 == vyw400",fontsize=16,color="magenta"];517 -> 673[label="",style="dashed", color="magenta", weight=3]; 517 -> 674[label="",style="dashed", color="magenta", weight=3]; 518 -> 500[label="",style="dashed", color="red", weight=0]; 518[label="vyw30 == vyw400",fontsize=16,color="magenta"];518 -> 675[label="",style="dashed", color="magenta", weight=3]; 518 -> 676[label="",style="dashed", color="magenta", weight=3]; 519[label="compare2 (Right vyw51) (Right vyw52) False",fontsize=16,color="black",shape="box"];519 -> 677[label="",style="solid", color="black", weight=3]; 520[label="compare2 (Right vyw51) (Right vyw52) True",fontsize=16,color="black",shape="box"];520 -> 678[label="",style="solid", color="black", weight=3]; 521[label="compare1 Nothing (Just vyw400) True",fontsize=16,color="black",shape="box"];521 -> 679[label="",style="solid", color="black", weight=3]; 522[label="compare1 (Just vyw30) Nothing False",fontsize=16,color="black",shape="box"];522 -> 680[label="",style="solid", color="black", weight=3]; 523 -> 487[label="",style="dashed", color="red", weight=0]; 523[label="vyw30 == vyw400",fontsize=16,color="magenta"];523 -> 681[label="",style="dashed", color="magenta", weight=3]; 523 -> 682[label="",style="dashed", color="magenta", weight=3]; 524 -> 488[label="",style="dashed", color="red", weight=0]; 524[label="vyw30 == vyw400",fontsize=16,color="magenta"];524 -> 683[label="",style="dashed", color="magenta", weight=3]; 524 -> 684[label="",style="dashed", color="magenta", weight=3]; 525 -> 489[label="",style="dashed", color="red", weight=0]; 525[label="vyw30 == vyw400",fontsize=16,color="magenta"];525 -> 685[label="",style="dashed", color="magenta", weight=3]; 525 -> 686[label="",style="dashed", color="magenta", weight=3]; 526 -> 490[label="",style="dashed", color="red", weight=0]; 526[label="vyw30 == vyw400",fontsize=16,color="magenta"];526 -> 687[label="",style="dashed", color="magenta", weight=3]; 526 -> 688[label="",style="dashed", color="magenta", weight=3]; 527 -> 491[label="",style="dashed", color="red", weight=0]; 527[label="vyw30 == vyw400",fontsize=16,color="magenta"];527 -> 689[label="",style="dashed", color="magenta", weight=3]; 527 -> 690[label="",style="dashed", color="magenta", weight=3]; 528 -> 492[label="",style="dashed", color="red", weight=0]; 528[label="vyw30 == vyw400",fontsize=16,color="magenta"];528 -> 691[label="",style="dashed", color="magenta", weight=3]; 528 -> 692[label="",style="dashed", color="magenta", weight=3]; 529 -> 493[label="",style="dashed", color="red", weight=0]; 529[label="vyw30 == vyw400",fontsize=16,color="magenta"];529 -> 693[label="",style="dashed", color="magenta", weight=3]; 529 -> 694[label="",style="dashed", color="magenta", weight=3]; 530 -> 494[label="",style="dashed", color="red", weight=0]; 530[label="vyw30 == vyw400",fontsize=16,color="magenta"];530 -> 695[label="",style="dashed", color="magenta", weight=3]; 530 -> 696[label="",style="dashed", color="magenta", weight=3]; 531 -> 495[label="",style="dashed", color="red", weight=0]; 531[label="vyw30 == vyw400",fontsize=16,color="magenta"];531 -> 697[label="",style="dashed", color="magenta", weight=3]; 531 -> 698[label="",style="dashed", color="magenta", weight=3]; 532 -> 496[label="",style="dashed", color="red", weight=0]; 532[label="vyw30 == vyw400",fontsize=16,color="magenta"];532 -> 699[label="",style="dashed", color="magenta", weight=3]; 532 -> 700[label="",style="dashed", color="magenta", weight=3]; 533 -> 497[label="",style="dashed", color="red", weight=0]; 533[label="vyw30 == vyw400",fontsize=16,color="magenta"];533 -> 701[label="",style="dashed", color="magenta", weight=3]; 533 -> 702[label="",style="dashed", color="magenta", weight=3]; 534 -> 498[label="",style="dashed", color="red", weight=0]; 534[label="vyw30 == vyw400",fontsize=16,color="magenta"];534 -> 703[label="",style="dashed", color="magenta", weight=3]; 534 -> 704[label="",style="dashed", color="magenta", weight=3]; 535 -> 499[label="",style="dashed", color="red", weight=0]; 535[label="vyw30 == vyw400",fontsize=16,color="magenta"];535 -> 705[label="",style="dashed", color="magenta", weight=3]; 535 -> 706[label="",style="dashed", color="magenta", weight=3]; 536 -> 500[label="",style="dashed", color="red", weight=0]; 536[label="vyw30 == vyw400",fontsize=16,color="magenta"];536 -> 707[label="",style="dashed", color="magenta", weight=3]; 536 -> 708[label="",style="dashed", color="magenta", weight=3]; 537[label="compare2 (Just vyw58) (Just vyw59) False",fontsize=16,color="black",shape="box"];537 -> 709[label="",style="solid", color="black", weight=3]; 538[label="compare2 (Just vyw58) (Just vyw59) True",fontsize=16,color="black",shape="box"];538 -> 710[label="",style="solid", color="black", weight=3]; 539[label="compare1 LT EQ True",fontsize=16,color="black",shape="box"];539 -> 711[label="",style="solid", color="black", weight=3]; 540[label="compare1 LT GT True",fontsize=16,color="black",shape="box"];540 -> 712[label="",style="solid", color="black", weight=3]; 541[label="compare1 EQ LT False",fontsize=16,color="black",shape="box"];541 -> 713[label="",style="solid", color="black", weight=3]; 542[label="compare1 EQ GT True",fontsize=16,color="black",shape="box"];542 -> 714[label="",style="solid", color="black", weight=3]; 543[label="compare1 GT LT False",fontsize=16,color="black",shape="box"];543 -> 715[label="",style="solid", color="black", weight=3]; 544[label="compare1 GT EQ False",fontsize=16,color="black",shape="box"];544 -> 716[label="",style="solid", color="black", weight=3]; 545[label="compare1 False True True",fontsize=16,color="black",shape="box"];545 -> 717[label="",style="solid", color="black", weight=3]; 546[label="compare1 True False False",fontsize=16,color="black",shape="box"];546 -> 718[label="",style="solid", color="black", weight=3]; 547 -> 356[label="",style="dashed", color="red", weight=0]; 547[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];547 -> 719[label="",style="dashed", color="magenta", weight=3]; 547 -> 720[label="",style="dashed", color="magenta", weight=3]; 548 -> 356[label="",style="dashed", color="red", weight=0]; 548[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];548 -> 721[label="",style="dashed", color="magenta", weight=3]; 548 -> 722[label="",style="dashed", color="magenta", weight=3]; 549 -> 356[label="",style="dashed", color="red", weight=0]; 549[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];549 -> 723[label="",style="dashed", color="magenta", weight=3]; 549 -> 724[label="",style="dashed", color="magenta", weight=3]; 550 -> 356[label="",style="dashed", color="red", weight=0]; 550[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];550 -> 725[label="",style="dashed", color="magenta", weight=3]; 550 -> 726[label="",style="dashed", color="magenta", weight=3]; 551 -> 356[label="",style="dashed", color="red", weight=0]; 551[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];551 -> 727[label="",style="dashed", color="magenta", weight=3]; 551 -> 728[label="",style="dashed", color="magenta", weight=3]; 552 -> 356[label="",style="dashed", color="red", weight=0]; 552[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];552 -> 729[label="",style="dashed", color="magenta", weight=3]; 552 -> 730[label="",style="dashed", color="magenta", weight=3]; 553 -> 356[label="",style="dashed", color="red", weight=0]; 553[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];553 -> 731[label="",style="dashed", color="magenta", weight=3]; 553 -> 732[label="",style="dashed", color="magenta", weight=3]; 554 -> 356[label="",style="dashed", color="red", weight=0]; 554[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];554 -> 733[label="",style="dashed", color="magenta", weight=3]; 554 -> 734[label="",style="dashed", color="magenta", weight=3]; 555 -> 337[label="",style="dashed", color="red", weight=0]; 555[label="primCmpNat vyw300 vyw4000",fontsize=16,color="magenta"];555 -> 735[label="",style="dashed", color="magenta", weight=3]; 555 -> 736[label="",style="dashed", color="magenta", weight=3]; 556[label="GT",fontsize=16,color="green",shape="box"];557[label="LT",fontsize=16,color="green",shape="box"];558[label="EQ",fontsize=16,color="green",shape="box"];971[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3112[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3112[label="",style="solid", color="blue", weight=9]; 3112 -> 979[label="",style="solid", color="blue", weight=3]; 3113[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3113[label="",style="solid", color="blue", weight=9]; 3113 -> 980[label="",style="solid", color="blue", weight=3]; 3114[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3114[label="",style="solid", color="blue", weight=9]; 3114 -> 981[label="",style="solid", color="blue", weight=3]; 3115[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3115[label="",style="solid", color="blue", weight=9]; 3115 -> 982[label="",style="solid", color="blue", weight=3]; 3116[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3116[label="",style="solid", color="blue", weight=9]; 3116 -> 983[label="",style="solid", color="blue", weight=3]; 3117[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3117[label="",style="solid", color="blue", weight=9]; 3117 -> 984[label="",style="solid", color="blue", weight=3]; 3118[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3118[label="",style="solid", color="blue", weight=9]; 3118 -> 985[label="",style="solid", color="blue", weight=3]; 3119[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3119[label="",style="solid", color="blue", weight=9]; 3119 -> 986[label="",style="solid", color="blue", weight=3]; 3120[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3120[label="",style="solid", color="blue", weight=9]; 3120 -> 987[label="",style="solid", color="blue", weight=3]; 3121[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3121[label="",style="solid", color="blue", weight=9]; 3121 -> 988[label="",style="solid", color="blue", weight=3]; 3122[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3122[label="",style="solid", color="blue", weight=9]; 3122 -> 989[label="",style="solid", color="blue", weight=3]; 3123[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3123[label="",style="solid", color="blue", weight=9]; 3123 -> 990[label="",style="solid", color="blue", weight=3]; 3124[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3124[label="",style="solid", color="blue", weight=9]; 3124 -> 991[label="",style="solid", color="blue", weight=3]; 3125[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];971 -> 3125[label="",style="solid", color="blue", weight=9]; 3125 -> 992[label="",style="solid", color="blue", weight=3]; 972[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3126[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3126[label="",style="solid", color="blue", weight=9]; 3126 -> 993[label="",style="solid", color="blue", weight=3]; 3127[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3127[label="",style="solid", color="blue", weight=9]; 3127 -> 994[label="",style="solid", color="blue", weight=3]; 3128[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3128[label="",style="solid", color="blue", weight=9]; 3128 -> 995[label="",style="solid", color="blue", weight=3]; 3129[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3129[label="",style="solid", color="blue", weight=9]; 3129 -> 996[label="",style="solid", color="blue", weight=3]; 3130[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3130[label="",style="solid", color="blue", weight=9]; 3130 -> 997[label="",style="solid", color="blue", weight=3]; 3131[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3131[label="",style="solid", color="blue", weight=9]; 3131 -> 998[label="",style="solid", color="blue", weight=3]; 3132[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3132[label="",style="solid", color="blue", weight=9]; 3132 -> 999[label="",style="solid", color="blue", weight=3]; 3133[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3133[label="",style="solid", color="blue", weight=9]; 3133 -> 1000[label="",style="solid", color="blue", weight=3]; 3134[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3134[label="",style="solid", color="blue", weight=9]; 3134 -> 1001[label="",style="solid", color="blue", weight=3]; 3135[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3135[label="",style="solid", color="blue", weight=9]; 3135 -> 1002[label="",style="solid", color="blue", weight=3]; 3136[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3136[label="",style="solid", color="blue", weight=9]; 3136 -> 1003[label="",style="solid", color="blue", weight=3]; 3137[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3137[label="",style="solid", color="blue", weight=9]; 3137 -> 1004[label="",style="solid", color="blue", weight=3]; 3138[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3138[label="",style="solid", color="blue", weight=9]; 3138 -> 1005[label="",style="solid", color="blue", weight=3]; 3139[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];972 -> 3139[label="",style="solid", color="blue", weight=9]; 3139 -> 1006[label="",style="solid", color="blue", weight=3]; 970[label="vyw115 && vyw116",fontsize=16,color="burlywood",shape="triangle"];3140[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];970 -> 3140[label="",style="solid", color="burlywood", weight=9]; 3140 -> 1007[label="",style="solid", color="burlywood", weight=3]; 3141[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];970 -> 3141[label="",style="solid", color="burlywood", weight=9]; 3141 -> 1008[label="",style="solid", color="burlywood", weight=3]; 919[label="compare2 (vyw98,vyw99) (vyw100,vyw101) False",fontsize=16,color="black",shape="box"];919 -> 1009[label="",style="solid", color="black", weight=3]; 920[label="compare2 (vyw98,vyw99) (vyw100,vyw101) True",fontsize=16,color="black",shape="box"];920 -> 1010[label="",style="solid", color="black", weight=3]; 973 -> 970[label="",style="dashed", color="red", weight=0]; 973[label="vyw31 == vyw401 && vyw32 == vyw402",fontsize=16,color="magenta"];973 -> 1011[label="",style="dashed", color="magenta", weight=3]; 973 -> 1012[label="",style="dashed", color="magenta", weight=3]; 974[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3142[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3142[label="",style="solid", color="blue", weight=9]; 3142 -> 1013[label="",style="solid", color="blue", weight=3]; 3143[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3143[label="",style="solid", color="blue", weight=9]; 3143 -> 1014[label="",style="solid", color="blue", weight=3]; 3144[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3144[label="",style="solid", color="blue", weight=9]; 3144 -> 1015[label="",style="solid", color="blue", weight=3]; 3145[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3145[label="",style="solid", color="blue", weight=9]; 3145 -> 1016[label="",style="solid", color="blue", weight=3]; 3146[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3146[label="",style="solid", color="blue", weight=9]; 3146 -> 1017[label="",style="solid", color="blue", weight=3]; 3147[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3147[label="",style="solid", color="blue", weight=9]; 3147 -> 1018[label="",style="solid", color="blue", weight=3]; 3148[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3148[label="",style="solid", color="blue", weight=9]; 3148 -> 1019[label="",style="solid", color="blue", weight=3]; 3149[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3149[label="",style="solid", color="blue", weight=9]; 3149 -> 1020[label="",style="solid", color="blue", weight=3]; 3150[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3150[label="",style="solid", color="blue", weight=9]; 3150 -> 1021[label="",style="solid", color="blue", weight=3]; 3151[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3151[label="",style="solid", color="blue", weight=9]; 3151 -> 1022[label="",style="solid", color="blue", weight=3]; 3152[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3152[label="",style="solid", color="blue", weight=9]; 3152 -> 1023[label="",style="solid", color="blue", weight=3]; 3153[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3153[label="",style="solid", color="blue", weight=9]; 3153 -> 1024[label="",style="solid", color="blue", weight=3]; 3154[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3154[label="",style="solid", color="blue", weight=9]; 3154 -> 1025[label="",style="solid", color="blue", weight=3]; 3155[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];974 -> 3155[label="",style="solid", color="blue", weight=9]; 3155 -> 1026[label="",style="solid", color="blue", weight=3]; 954[label="compare2 (vyw80,vyw81,vyw82) (vyw83,vyw84,vyw85) False",fontsize=16,color="black",shape="box"];954 -> 1027[label="",style="solid", color="black", weight=3]; 955[label="compare2 (vyw80,vyw81,vyw82) (vyw83,vyw84,vyw85) True",fontsize=16,color="black",shape="box"];955 -> 1028[label="",style="solid", color="black", weight=3]; 591 -> 356[label="",style="dashed", color="red", weight=0]; 591[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];591 -> 797[label="",style="dashed", color="magenta", weight=3]; 591 -> 798[label="",style="dashed", color="magenta", weight=3]; 592 -> 356[label="",style="dashed", color="red", weight=0]; 592[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];592 -> 799[label="",style="dashed", color="magenta", weight=3]; 592 -> 800[label="",style="dashed", color="magenta", weight=3]; 593 -> 356[label="",style="dashed", color="red", weight=0]; 593[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];593 -> 801[label="",style="dashed", color="magenta", weight=3]; 593 -> 802[label="",style="dashed", color="magenta", weight=3]; 594 -> 356[label="",style="dashed", color="red", weight=0]; 594[label="vyw30 * Pos vyw4010",fontsize=16,color="magenta"];594 -> 803[label="",style="dashed", color="magenta", weight=3]; 594 -> 804[label="",style="dashed", color="magenta", weight=3]; 595 -> 356[label="",style="dashed", color="red", weight=0]; 595[label="Pos vyw310 * vyw400",fontsize=16,color="magenta"];595 -> 805[label="",style="dashed", color="magenta", weight=3]; 595 -> 806[label="",style="dashed", color="magenta", weight=3]; 596 -> 356[label="",style="dashed", color="red", weight=0]; 596[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];596 -> 807[label="",style="dashed", color="magenta", weight=3]; 596 -> 808[label="",style="dashed", color="magenta", weight=3]; 597 -> 356[label="",style="dashed", color="red", weight=0]; 597[label="Neg vyw310 * vyw400",fontsize=16,color="magenta"];597 -> 809[label="",style="dashed", color="magenta", weight=3]; 597 -> 810[label="",style="dashed", color="magenta", weight=3]; 598 -> 356[label="",style="dashed", color="red", weight=0]; 598[label="vyw30 * Neg vyw4010",fontsize=16,color="magenta"];598 -> 811[label="",style="dashed", color="magenta", weight=3]; 598 -> 812[label="",style="dashed", color="magenta", weight=3]; 599 -> 156[label="",style="dashed", color="red", weight=0]; 599[label="compare vyw30 vyw400",fontsize=16,color="magenta"];599 -> 813[label="",style="dashed", color="magenta", weight=3]; 599 -> 814[label="",style="dashed", color="magenta", weight=3]; 600 -> 157[label="",style="dashed", color="red", weight=0]; 600[label="compare vyw30 vyw400",fontsize=16,color="magenta"];600 -> 815[label="",style="dashed", color="magenta", weight=3]; 600 -> 816[label="",style="dashed", color="magenta", weight=3]; 601 -> 158[label="",style="dashed", color="red", weight=0]; 601[label="compare vyw30 vyw400",fontsize=16,color="magenta"];601 -> 817[label="",style="dashed", color="magenta", weight=3]; 601 -> 818[label="",style="dashed", color="magenta", weight=3]; 602 -> 159[label="",style="dashed", color="red", weight=0]; 602[label="compare vyw30 vyw400",fontsize=16,color="magenta"];602 -> 819[label="",style="dashed", color="magenta", weight=3]; 602 -> 820[label="",style="dashed", color="magenta", weight=3]; 603 -> 160[label="",style="dashed", color="red", weight=0]; 603[label="compare vyw30 vyw400",fontsize=16,color="magenta"];603 -> 821[label="",style="dashed", color="magenta", weight=3]; 603 -> 822[label="",style="dashed", color="magenta", weight=3]; 604 -> 161[label="",style="dashed", color="red", weight=0]; 604[label="compare vyw30 vyw400",fontsize=16,color="magenta"];604 -> 823[label="",style="dashed", color="magenta", weight=3]; 604 -> 824[label="",style="dashed", color="magenta", weight=3]; 605 -> 162[label="",style="dashed", color="red", weight=0]; 605[label="compare vyw30 vyw400",fontsize=16,color="magenta"];605 -> 825[label="",style="dashed", color="magenta", weight=3]; 605 -> 826[label="",style="dashed", color="magenta", weight=3]; 606 -> 163[label="",style="dashed", color="red", weight=0]; 606[label="compare vyw30 vyw400",fontsize=16,color="magenta"];606 -> 827[label="",style="dashed", color="magenta", weight=3]; 606 -> 828[label="",style="dashed", color="magenta", weight=3]; 607 -> 164[label="",style="dashed", color="red", weight=0]; 607[label="compare vyw30 vyw400",fontsize=16,color="magenta"];607 -> 829[label="",style="dashed", color="magenta", weight=3]; 607 -> 830[label="",style="dashed", color="magenta", weight=3]; 608 -> 165[label="",style="dashed", color="red", weight=0]; 608[label="compare vyw30 vyw400",fontsize=16,color="magenta"];608 -> 831[label="",style="dashed", color="magenta", weight=3]; 608 -> 832[label="",style="dashed", color="magenta", weight=3]; 609 -> 166[label="",style="dashed", color="red", weight=0]; 609[label="compare vyw30 vyw400",fontsize=16,color="magenta"];609 -> 833[label="",style="dashed", color="magenta", weight=3]; 609 -> 834[label="",style="dashed", color="magenta", weight=3]; 610 -> 167[label="",style="dashed", color="red", weight=0]; 610[label="compare vyw30 vyw400",fontsize=16,color="magenta"];610 -> 835[label="",style="dashed", color="magenta", weight=3]; 610 -> 836[label="",style="dashed", color="magenta", weight=3]; 611 -> 168[label="",style="dashed", color="red", weight=0]; 611[label="compare vyw30 vyw400",fontsize=16,color="magenta"];611 -> 837[label="",style="dashed", color="magenta", weight=3]; 611 -> 838[label="",style="dashed", color="magenta", weight=3]; 612 -> 169[label="",style="dashed", color="red", weight=0]; 612[label="compare vyw30 vyw400",fontsize=16,color="magenta"];612 -> 839[label="",style="dashed", color="magenta", weight=3]; 612 -> 840[label="",style="dashed", color="magenta", weight=3]; 613[label="primCompAux0 vyw90 LT",fontsize=16,color="black",shape="box"];613 -> 841[label="",style="solid", color="black", weight=3]; 614[label="primCompAux0 vyw90 EQ",fontsize=16,color="black",shape="box"];614 -> 842[label="",style="solid", color="black", weight=3]; 615[label="primCompAux0 vyw90 GT",fontsize=16,color="black",shape="box"];615 -> 843[label="",style="solid", color="black", weight=3]; 616[label="Succ vyw4000",fontsize=16,color="green",shape="box"];617[label="Zero",fontsize=16,color="green",shape="box"];618[label="Zero",fontsize=16,color="green",shape="box"];619[label="Succ vyw4000",fontsize=16,color="green",shape="box"];620[label="Integer (primMulInt vyw4000 vyw310)",fontsize=16,color="green",shape="box"];620 -> 844[label="",style="dashed", color="green", weight=3]; 621[label="primMulInt (Pos vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];621 -> 845[label="",style="solid", color="black", weight=3]; 622[label="primMulInt (Pos vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];622 -> 846[label="",style="solid", color="black", weight=3]; 623[label="primMulInt (Neg vyw4000) (Pos vyw310)",fontsize=16,color="black",shape="box"];623 -> 847[label="",style="solid", color="black", weight=3]; 624[label="primMulInt (Neg vyw4000) (Neg vyw310)",fontsize=16,color="black",shape="box"];624 -> 848[label="",style="solid", color="black", weight=3]; 625[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3156[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];625 -> 3156[label="",style="solid", color="burlywood", weight=9]; 3156 -> 849[label="",style="solid", color="burlywood", weight=3]; 626[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3157[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];626 -> 3157[label="",style="solid", color="burlywood", weight=9]; 3157 -> 850[label="",style="solid", color="burlywood", weight=3]; 3158[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];626 -> 3158[label="",style="solid", color="burlywood", weight=9]; 3158 -> 851[label="",style="solid", color="burlywood", weight=3]; 627[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3159[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];627 -> 3159[label="",style="solid", color="burlywood", weight=9]; 3159 -> 852[label="",style="solid", color="burlywood", weight=3]; 3160[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];627 -> 3160[label="",style="solid", color="burlywood", weight=9]; 3160 -> 853[label="",style="solid", color="burlywood", weight=3]; 628[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3161[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];628 -> 3161[label="",style="solid", color="burlywood", weight=9]; 3161 -> 854[label="",style="solid", color="burlywood", weight=3]; 3162[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];628 -> 3162[label="",style="solid", color="burlywood", weight=9]; 3162 -> 855[label="",style="solid", color="burlywood", weight=3]; 629[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3163[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];629 -> 3163[label="",style="solid", color="burlywood", weight=9]; 3163 -> 856[label="",style="solid", color="burlywood", weight=3]; 3164[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];629 -> 3164[label="",style="solid", color="burlywood", weight=9]; 3164 -> 857[label="",style="solid", color="burlywood", weight=3]; 630[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3165[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];630 -> 3165[label="",style="solid", color="burlywood", weight=9]; 3165 -> 858[label="",style="solid", color="burlywood", weight=3]; 631[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3166[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];631 -> 3166[label="",style="solid", color="burlywood", weight=9]; 3166 -> 859[label="",style="solid", color="burlywood", weight=3]; 632[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3167[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];632 -> 3167[label="",style="solid", color="burlywood", weight=9]; 3167 -> 860[label="",style="solid", color="burlywood", weight=3]; 633[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3168[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];633 -> 3168[label="",style="solid", color="burlywood", weight=9]; 3168 -> 861[label="",style="solid", color="burlywood", weight=3]; 3169[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];633 -> 3169[label="",style="solid", color="burlywood", weight=9]; 3169 -> 862[label="",style="solid", color="burlywood", weight=3]; 3170[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];633 -> 3170[label="",style="solid", color="burlywood", weight=9]; 3170 -> 863[label="",style="solid", color="burlywood", weight=3]; 634[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3171[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];634 -> 3171[label="",style="solid", color="burlywood", weight=9]; 3171 -> 864[label="",style="solid", color="burlywood", weight=3]; 3172[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];634 -> 3172[label="",style="solid", color="burlywood", weight=9]; 3172 -> 865[label="",style="solid", color="burlywood", weight=3]; 3173[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];634 -> 3173[label="",style="solid", color="burlywood", weight=9]; 3173 -> 866[label="",style="solid", color="burlywood", weight=3]; 635[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3174[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];635 -> 3174[label="",style="solid", color="burlywood", weight=9]; 3174 -> 867[label="",style="solid", color="burlywood", weight=3]; 3175[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];635 -> 3175[label="",style="solid", color="burlywood", weight=9]; 3175 -> 868[label="",style="solid", color="burlywood", weight=3]; 3176[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];635 -> 3176[label="",style="solid", color="burlywood", weight=9]; 3176 -> 869[label="",style="solid", color="burlywood", weight=3]; 636[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3177[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];636 -> 3177[label="",style="solid", color="burlywood", weight=9]; 3177 -> 870[label="",style="solid", color="burlywood", weight=3]; 3178[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];636 -> 3178[label="",style="solid", color="burlywood", weight=9]; 3178 -> 871[label="",style="solid", color="burlywood", weight=3]; 637[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3179[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];637 -> 3179[label="",style="solid", color="burlywood", weight=9]; 3179 -> 872[label="",style="solid", color="burlywood", weight=3]; 3180[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];637 -> 3180[label="",style="solid", color="burlywood", weight=9]; 3180 -> 873[label="",style="solid", color="burlywood", weight=3]; 638[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3181[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];638 -> 3181[label="",style="solid", color="burlywood", weight=9]; 3181 -> 874[label="",style="solid", color="burlywood", weight=3]; 3182[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];638 -> 3182[label="",style="solid", color="burlywood", weight=9]; 3182 -> 875[label="",style="solid", color="burlywood", weight=3]; 639[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3183[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];639 -> 3183[label="",style="solid", color="burlywood", weight=9]; 3183 -> 876[label="",style="solid", color="burlywood", weight=3]; 3184[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];639 -> 3184[label="",style="solid", color="burlywood", weight=9]; 3184 -> 877[label="",style="solid", color="burlywood", weight=3]; 640[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3185[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];640 -> 3185[label="",style="solid", color="burlywood", weight=9]; 3185 -> 878[label="",style="solid", color="burlywood", weight=3]; 641[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3186[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];641 -> 3186[label="",style="solid", color="burlywood", weight=9]; 3186 -> 879[label="",style="solid", color="burlywood", weight=3]; 642[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3187[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];642 -> 3187[label="",style="solid", color="burlywood", weight=9]; 3187 -> 880[label="",style="solid", color="burlywood", weight=3]; 3188[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];642 -> 3188[label="",style="solid", color="burlywood", weight=9]; 3188 -> 881[label="",style="solid", color="burlywood", weight=3]; 643[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3189[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];643 -> 3189[label="",style="solid", color="burlywood", weight=9]; 3189 -> 882[label="",style="solid", color="burlywood", weight=3]; 644[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3190[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];644 -> 3190[label="",style="solid", color="burlywood", weight=9]; 3190 -> 883[label="",style="solid", color="burlywood", weight=3]; 645 -> 1072[label="",style="dashed", color="red", weight=0]; 645[label="compare1 (Left vyw44) (Left vyw45) (Left vyw44 <= Left vyw45)",fontsize=16,color="magenta"];645 -> 1073[label="",style="dashed", color="magenta", weight=3]; 645 -> 1074[label="",style="dashed", color="magenta", weight=3]; 645 -> 1075[label="",style="dashed", color="magenta", weight=3]; 646[label="EQ",fontsize=16,color="green",shape="box"];647[label="LT",fontsize=16,color="green",shape="box"];648[label="compare0 (Right vyw30) (Left vyw400) otherwise",fontsize=16,color="black",shape="box"];648 -> 885[label="",style="solid", color="black", weight=3]; 649[label="vyw400",fontsize=16,color="green",shape="box"];650[label="vyw30",fontsize=16,color="green",shape="box"];651[label="vyw400",fontsize=16,color="green",shape="box"];652[label="vyw30",fontsize=16,color="green",shape="box"];653[label="vyw400",fontsize=16,color="green",shape="box"];654[label="vyw30",fontsize=16,color="green",shape="box"];655[label="vyw400",fontsize=16,color="green",shape="box"];656[label="vyw30",fontsize=16,color="green",shape="box"];657[label="vyw400",fontsize=16,color="green",shape="box"];658[label="vyw30",fontsize=16,color="green",shape="box"];659[label="vyw400",fontsize=16,color="green",shape="box"];660[label="vyw30",fontsize=16,color="green",shape="box"];661[label="vyw400",fontsize=16,color="green",shape="box"];662[label="vyw30",fontsize=16,color="green",shape="box"];663[label="vyw400",fontsize=16,color="green",shape="box"];664[label="vyw30",fontsize=16,color="green",shape="box"];665[label="vyw400",fontsize=16,color="green",shape="box"];666[label="vyw30",fontsize=16,color="green",shape="box"];667[label="vyw400",fontsize=16,color="green",shape="box"];668[label="vyw30",fontsize=16,color="green",shape="box"];669[label="vyw400",fontsize=16,color="green",shape="box"];670[label="vyw30",fontsize=16,color="green",shape="box"];671[label="vyw400",fontsize=16,color="green",shape="box"];672[label="vyw30",fontsize=16,color="green",shape="box"];673[label="vyw400",fontsize=16,color="green",shape="box"];674[label="vyw30",fontsize=16,color="green",shape="box"];675[label="vyw400",fontsize=16,color="green",shape="box"];676[label="vyw30",fontsize=16,color="green",shape="box"];677 -> 1199[label="",style="dashed", color="red", weight=0]; 677[label="compare1 (Right vyw51) (Right vyw52) (Right vyw51 <= Right vyw52)",fontsize=16,color="magenta"];677 -> 1200[label="",style="dashed", color="magenta", weight=3]; 677 -> 1201[label="",style="dashed", color="magenta", weight=3]; 677 -> 1202[label="",style="dashed", color="magenta", weight=3]; 678[label="EQ",fontsize=16,color="green",shape="box"];679[label="LT",fontsize=16,color="green",shape="box"];680[label="compare0 (Just vyw30) Nothing otherwise",fontsize=16,color="black",shape="box"];680 -> 887[label="",style="solid", color="black", weight=3]; 681[label="vyw400",fontsize=16,color="green",shape="box"];682[label="vyw30",fontsize=16,color="green",shape="box"];683[label="vyw400",fontsize=16,color="green",shape="box"];684[label="vyw30",fontsize=16,color="green",shape="box"];685[label="vyw400",fontsize=16,color="green",shape="box"];686[label="vyw30",fontsize=16,color="green",shape="box"];687[label="vyw400",fontsize=16,color="green",shape="box"];688[label="vyw30",fontsize=16,color="green",shape="box"];689[label="vyw400",fontsize=16,color="green",shape="box"];690[label="vyw30",fontsize=16,color="green",shape="box"];691[label="vyw400",fontsize=16,color="green",shape="box"];692[label="vyw30",fontsize=16,color="green",shape="box"];693[label="vyw400",fontsize=16,color="green",shape="box"];694[label="vyw30",fontsize=16,color="green",shape="box"];695[label="vyw400",fontsize=16,color="green",shape="box"];696[label="vyw30",fontsize=16,color="green",shape="box"];697[label="vyw400",fontsize=16,color="green",shape="box"];698[label="vyw30",fontsize=16,color="green",shape="box"];699[label="vyw400",fontsize=16,color="green",shape="box"];700[label="vyw30",fontsize=16,color="green",shape="box"];701[label="vyw400",fontsize=16,color="green",shape="box"];702[label="vyw30",fontsize=16,color="green",shape="box"];703[label="vyw400",fontsize=16,color="green",shape="box"];704[label="vyw30",fontsize=16,color="green",shape="box"];705[label="vyw400",fontsize=16,color="green",shape="box"];706[label="vyw30",fontsize=16,color="green",shape="box"];707[label="vyw400",fontsize=16,color="green",shape="box"];708[label="vyw30",fontsize=16,color="green",shape="box"];709 -> 1210[label="",style="dashed", color="red", weight=0]; 709[label="compare1 (Just vyw58) (Just vyw59) (Just vyw58 <= Just vyw59)",fontsize=16,color="magenta"];709 -> 1211[label="",style="dashed", color="magenta", weight=3]; 709 -> 1212[label="",style="dashed", color="magenta", weight=3]; 709 -> 1213[label="",style="dashed", color="magenta", weight=3]; 710[label="EQ",fontsize=16,color="green",shape="box"];711[label="LT",fontsize=16,color="green",shape="box"];712[label="LT",fontsize=16,color="green",shape="box"];713[label="compare0 EQ LT otherwise",fontsize=16,color="black",shape="box"];713 -> 889[label="",style="solid", color="black", weight=3]; 714[label="LT",fontsize=16,color="green",shape="box"];715[label="compare0 GT LT otherwise",fontsize=16,color="black",shape="box"];715 -> 890[label="",style="solid", color="black", weight=3]; 716[label="compare0 GT EQ otherwise",fontsize=16,color="black",shape="box"];716 -> 891[label="",style="solid", color="black", weight=3]; 717[label="LT",fontsize=16,color="green",shape="box"];718[label="compare0 True False otherwise",fontsize=16,color="black",shape="box"];718 -> 892[label="",style="solid", color="black", weight=3]; 719[label="vyw400",fontsize=16,color="green",shape="box"];720[label="Pos vyw310",fontsize=16,color="green",shape="box"];721[label="Pos vyw4010",fontsize=16,color="green",shape="box"];722[label="vyw30",fontsize=16,color="green",shape="box"];723[label="vyw400",fontsize=16,color="green",shape="box"];724[label="Neg vyw310",fontsize=16,color="green",shape="box"];725[label="Pos vyw4010",fontsize=16,color="green",shape="box"];726[label="vyw30",fontsize=16,color="green",shape="box"];727[label="vyw400",fontsize=16,color="green",shape="box"];728[label="Pos vyw310",fontsize=16,color="green",shape="box"];729[label="Neg vyw4010",fontsize=16,color="green",shape="box"];730[label="vyw30",fontsize=16,color="green",shape="box"];731[label="vyw400",fontsize=16,color="green",shape="box"];732[label="Neg vyw310",fontsize=16,color="green",shape="box"];733[label="Neg vyw4010",fontsize=16,color="green",shape="box"];734[label="vyw30",fontsize=16,color="green",shape="box"];735[label="vyw4000",fontsize=16,color="green",shape="box"];736[label="vyw300",fontsize=16,color="green",shape="box"];979 -> 487[label="",style="dashed", color="red", weight=0]; 979[label="vyw31 == vyw401",fontsize=16,color="magenta"];979 -> 1079[label="",style="dashed", color="magenta", weight=3]; 979 -> 1080[label="",style="dashed", color="magenta", weight=3]; 980 -> 488[label="",style="dashed", color="red", weight=0]; 980[label="vyw31 == vyw401",fontsize=16,color="magenta"];980 -> 1081[label="",style="dashed", color="magenta", weight=3]; 980 -> 1082[label="",style="dashed", color="magenta", weight=3]; 981 -> 489[label="",style="dashed", color="red", weight=0]; 981[label="vyw31 == vyw401",fontsize=16,color="magenta"];981 -> 1083[label="",style="dashed", color="magenta", weight=3]; 981 -> 1084[label="",style="dashed", color="magenta", weight=3]; 982 -> 490[label="",style="dashed", color="red", weight=0]; 982[label="vyw31 == vyw401",fontsize=16,color="magenta"];982 -> 1085[label="",style="dashed", color="magenta", weight=3]; 982 -> 1086[label="",style="dashed", color="magenta", weight=3]; 983 -> 491[label="",style="dashed", color="red", weight=0]; 983[label="vyw31 == vyw401",fontsize=16,color="magenta"];983 -> 1087[label="",style="dashed", color="magenta", weight=3]; 983 -> 1088[label="",style="dashed", color="magenta", weight=3]; 984 -> 492[label="",style="dashed", color="red", weight=0]; 984[label="vyw31 == vyw401",fontsize=16,color="magenta"];984 -> 1089[label="",style="dashed", color="magenta", weight=3]; 984 -> 1090[label="",style="dashed", color="magenta", weight=3]; 985 -> 493[label="",style="dashed", color="red", weight=0]; 985[label="vyw31 == vyw401",fontsize=16,color="magenta"];985 -> 1091[label="",style="dashed", color="magenta", weight=3]; 985 -> 1092[label="",style="dashed", color="magenta", weight=3]; 986 -> 494[label="",style="dashed", color="red", weight=0]; 986[label="vyw31 == vyw401",fontsize=16,color="magenta"];986 -> 1093[label="",style="dashed", color="magenta", weight=3]; 986 -> 1094[label="",style="dashed", color="magenta", weight=3]; 987 -> 495[label="",style="dashed", color="red", weight=0]; 987[label="vyw31 == vyw401",fontsize=16,color="magenta"];987 -> 1095[label="",style="dashed", color="magenta", weight=3]; 987 -> 1096[label="",style="dashed", color="magenta", weight=3]; 988 -> 496[label="",style="dashed", color="red", weight=0]; 988[label="vyw31 == vyw401",fontsize=16,color="magenta"];988 -> 1097[label="",style="dashed", color="magenta", weight=3]; 988 -> 1098[label="",style="dashed", color="magenta", weight=3]; 989 -> 497[label="",style="dashed", color="red", weight=0]; 989[label="vyw31 == vyw401",fontsize=16,color="magenta"];989 -> 1099[label="",style="dashed", color="magenta", weight=3]; 989 -> 1100[label="",style="dashed", color="magenta", weight=3]; 990 -> 498[label="",style="dashed", color="red", weight=0]; 990[label="vyw31 == vyw401",fontsize=16,color="magenta"];990 -> 1101[label="",style="dashed", color="magenta", weight=3]; 990 -> 1102[label="",style="dashed", color="magenta", weight=3]; 991 -> 499[label="",style="dashed", color="red", weight=0]; 991[label="vyw31 == vyw401",fontsize=16,color="magenta"];991 -> 1103[label="",style="dashed", color="magenta", weight=3]; 991 -> 1104[label="",style="dashed", color="magenta", weight=3]; 992 -> 500[label="",style="dashed", color="red", weight=0]; 992[label="vyw31 == vyw401",fontsize=16,color="magenta"];992 -> 1105[label="",style="dashed", color="magenta", weight=3]; 992 -> 1106[label="",style="dashed", color="magenta", weight=3]; 993 -> 487[label="",style="dashed", color="red", weight=0]; 993[label="vyw30 == vyw400",fontsize=16,color="magenta"];993 -> 1107[label="",style="dashed", color="magenta", weight=3]; 993 -> 1108[label="",style="dashed", color="magenta", weight=3]; 994 -> 488[label="",style="dashed", color="red", weight=0]; 994[label="vyw30 == vyw400",fontsize=16,color="magenta"];994 -> 1109[label="",style="dashed", color="magenta", weight=3]; 994 -> 1110[label="",style="dashed", color="magenta", weight=3]; 995 -> 489[label="",style="dashed", color="red", weight=0]; 995[label="vyw30 == vyw400",fontsize=16,color="magenta"];995 -> 1111[label="",style="dashed", color="magenta", weight=3]; 995 -> 1112[label="",style="dashed", color="magenta", weight=3]; 996 -> 490[label="",style="dashed", color="red", weight=0]; 996[label="vyw30 == vyw400",fontsize=16,color="magenta"];996 -> 1113[label="",style="dashed", color="magenta", weight=3]; 996 -> 1114[label="",style="dashed", color="magenta", weight=3]; 997 -> 491[label="",style="dashed", color="red", weight=0]; 997[label="vyw30 == vyw400",fontsize=16,color="magenta"];997 -> 1115[label="",style="dashed", color="magenta", weight=3]; 997 -> 1116[label="",style="dashed", color="magenta", weight=3]; 998 -> 492[label="",style="dashed", color="red", weight=0]; 998[label="vyw30 == vyw400",fontsize=16,color="magenta"];998 -> 1117[label="",style="dashed", color="magenta", weight=3]; 998 -> 1118[label="",style="dashed", color="magenta", weight=3]; 999 -> 493[label="",style="dashed", color="red", weight=0]; 999[label="vyw30 == vyw400",fontsize=16,color="magenta"];999 -> 1119[label="",style="dashed", color="magenta", weight=3]; 999 -> 1120[label="",style="dashed", color="magenta", weight=3]; 1000 -> 494[label="",style="dashed", color="red", weight=0]; 1000[label="vyw30 == vyw400",fontsize=16,color="magenta"];1000 -> 1121[label="",style="dashed", color="magenta", weight=3]; 1000 -> 1122[label="",style="dashed", color="magenta", weight=3]; 1001 -> 495[label="",style="dashed", color="red", weight=0]; 1001[label="vyw30 == vyw400",fontsize=16,color="magenta"];1001 -> 1123[label="",style="dashed", color="magenta", weight=3]; 1001 -> 1124[label="",style="dashed", color="magenta", weight=3]; 1002 -> 496[label="",style="dashed", color="red", weight=0]; 1002[label="vyw30 == vyw400",fontsize=16,color="magenta"];1002 -> 1125[label="",style="dashed", color="magenta", weight=3]; 1002 -> 1126[label="",style="dashed", color="magenta", weight=3]; 1003 -> 497[label="",style="dashed", color="red", weight=0]; 1003[label="vyw30 == vyw400",fontsize=16,color="magenta"];1003 -> 1127[label="",style="dashed", color="magenta", weight=3]; 1003 -> 1128[label="",style="dashed", color="magenta", weight=3]; 1004 -> 498[label="",style="dashed", color="red", weight=0]; 1004[label="vyw30 == vyw400",fontsize=16,color="magenta"];1004 -> 1129[label="",style="dashed", color="magenta", weight=3]; 1004 -> 1130[label="",style="dashed", color="magenta", weight=3]; 1005 -> 499[label="",style="dashed", color="red", weight=0]; 1005[label="vyw30 == vyw400",fontsize=16,color="magenta"];1005 -> 1131[label="",style="dashed", color="magenta", weight=3]; 1005 -> 1132[label="",style="dashed", color="magenta", weight=3]; 1006 -> 500[label="",style="dashed", color="red", weight=0]; 1006[label="vyw30 == vyw400",fontsize=16,color="magenta"];1006 -> 1133[label="",style="dashed", color="magenta", weight=3]; 1006 -> 1134[label="",style="dashed", color="magenta", weight=3]; 1007[label="False && vyw116",fontsize=16,color="black",shape="box"];1007 -> 1135[label="",style="solid", color="black", weight=3]; 1008[label="True && vyw116",fontsize=16,color="black",shape="box"];1008 -> 1136[label="",style="solid", color="black", weight=3]; 1009[label="compare1 (vyw98,vyw99) (vyw100,vyw101) ((vyw98,vyw99) <= (vyw100,vyw101))",fontsize=16,color="black",shape="box"];1009 -> 1137[label="",style="solid", color="black", weight=3]; 1010[label="EQ",fontsize=16,color="green",shape="box"];1011[label="vyw32 == vyw402",fontsize=16,color="blue",shape="box"];3191[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3191[label="",style="solid", color="blue", weight=9]; 3191 -> 1138[label="",style="solid", color="blue", weight=3]; 3192[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3192[label="",style="solid", color="blue", weight=9]; 3192 -> 1139[label="",style="solid", color="blue", weight=3]; 3193[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3193[label="",style="solid", color="blue", weight=9]; 3193 -> 1140[label="",style="solid", color="blue", weight=3]; 3194[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3194[label="",style="solid", color="blue", weight=9]; 3194 -> 1141[label="",style="solid", color="blue", weight=3]; 3195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3195[label="",style="solid", color="blue", weight=9]; 3195 -> 1142[label="",style="solid", color="blue", weight=3]; 3196[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3196[label="",style="solid", color="blue", weight=9]; 3196 -> 1143[label="",style="solid", color="blue", weight=3]; 3197[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3197[label="",style="solid", color="blue", weight=9]; 3197 -> 1144[label="",style="solid", color="blue", weight=3]; 3198[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3198[label="",style="solid", color="blue", weight=9]; 3198 -> 1145[label="",style="solid", color="blue", weight=3]; 3199[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3199[label="",style="solid", color="blue", weight=9]; 3199 -> 1146[label="",style="solid", color="blue", weight=3]; 3200[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3200[label="",style="solid", color="blue", weight=9]; 3200 -> 1147[label="",style="solid", color="blue", weight=3]; 3201[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3201[label="",style="solid", color="blue", weight=9]; 3201 -> 1148[label="",style="solid", color="blue", weight=3]; 3202[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3202[label="",style="solid", color="blue", weight=9]; 3202 -> 1149[label="",style="solid", color="blue", weight=3]; 3203[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3203[label="",style="solid", color="blue", weight=9]; 3203 -> 1150[label="",style="solid", color="blue", weight=3]; 3204[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1011 -> 3204[label="",style="solid", color="blue", weight=9]; 3204 -> 1151[label="",style="solid", color="blue", weight=3]; 1012[label="vyw31 == vyw401",fontsize=16,color="blue",shape="box"];3205[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3205[label="",style="solid", color="blue", weight=9]; 3205 -> 1152[label="",style="solid", color="blue", weight=3]; 3206[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3206[label="",style="solid", color="blue", weight=9]; 3206 -> 1153[label="",style="solid", color="blue", weight=3]; 3207[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3207[label="",style="solid", color="blue", weight=9]; 3207 -> 1154[label="",style="solid", color="blue", weight=3]; 3208[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3208[label="",style="solid", color="blue", weight=9]; 3208 -> 1155[label="",style="solid", color="blue", weight=3]; 3209[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3209[label="",style="solid", color="blue", weight=9]; 3209 -> 1156[label="",style="solid", color="blue", weight=3]; 3210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3210[label="",style="solid", color="blue", weight=9]; 3210 -> 1157[label="",style="solid", color="blue", weight=3]; 3211[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3211[label="",style="solid", color="blue", weight=9]; 3211 -> 1158[label="",style="solid", color="blue", weight=3]; 3212[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3212[label="",style="solid", color="blue", weight=9]; 3212 -> 1159[label="",style="solid", color="blue", weight=3]; 3213[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3213[label="",style="solid", color="blue", weight=9]; 3213 -> 1160[label="",style="solid", color="blue", weight=3]; 3214[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3214[label="",style="solid", color="blue", weight=9]; 3214 -> 1161[label="",style="solid", color="blue", weight=3]; 3215[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3215[label="",style="solid", color="blue", weight=9]; 3215 -> 1162[label="",style="solid", color="blue", weight=3]; 3216[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3216[label="",style="solid", color="blue", weight=9]; 3216 -> 1163[label="",style="solid", color="blue", weight=3]; 3217[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3217[label="",style="solid", color="blue", weight=9]; 3217 -> 1164[label="",style="solid", color="blue", weight=3]; 3218[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1012 -> 3218[label="",style="solid", color="blue", weight=9]; 3218 -> 1165[label="",style="solid", color="blue", weight=3]; 1013 -> 487[label="",style="dashed", color="red", weight=0]; 1013[label="vyw30 == vyw400",fontsize=16,color="magenta"];1013 -> 1166[label="",style="dashed", color="magenta", weight=3]; 1013 -> 1167[label="",style="dashed", color="magenta", weight=3]; 1014 -> 488[label="",style="dashed", color="red", weight=0]; 1014[label="vyw30 == vyw400",fontsize=16,color="magenta"];1014 -> 1168[label="",style="dashed", color="magenta", weight=3]; 1014 -> 1169[label="",style="dashed", color="magenta", weight=3]; 1015 -> 489[label="",style="dashed", color="red", weight=0]; 1015[label="vyw30 == vyw400",fontsize=16,color="magenta"];1015 -> 1170[label="",style="dashed", color="magenta", weight=3]; 1015 -> 1171[label="",style="dashed", color="magenta", weight=3]; 1016 -> 490[label="",style="dashed", color="red", weight=0]; 1016[label="vyw30 == vyw400",fontsize=16,color="magenta"];1016 -> 1172[label="",style="dashed", color="magenta", weight=3]; 1016 -> 1173[label="",style="dashed", color="magenta", weight=3]; 1017 -> 491[label="",style="dashed", color="red", weight=0]; 1017[label="vyw30 == vyw400",fontsize=16,color="magenta"];1017 -> 1174[label="",style="dashed", color="magenta", weight=3]; 1017 -> 1175[label="",style="dashed", color="magenta", weight=3]; 1018 -> 492[label="",style="dashed", color="red", weight=0]; 1018[label="vyw30 == vyw400",fontsize=16,color="magenta"];1018 -> 1176[label="",style="dashed", color="magenta", weight=3]; 1018 -> 1177[label="",style="dashed", color="magenta", weight=3]; 1019 -> 493[label="",style="dashed", color="red", weight=0]; 1019[label="vyw30 == vyw400",fontsize=16,color="magenta"];1019 -> 1178[label="",style="dashed", color="magenta", weight=3]; 1019 -> 1179[label="",style="dashed", color="magenta", weight=3]; 1020 -> 494[label="",style="dashed", color="red", weight=0]; 1020[label="vyw30 == vyw400",fontsize=16,color="magenta"];1020 -> 1180[label="",style="dashed", color="magenta", weight=3]; 1020 -> 1181[label="",style="dashed", color="magenta", weight=3]; 1021 -> 495[label="",style="dashed", color="red", weight=0]; 1021[label="vyw30 == vyw400",fontsize=16,color="magenta"];1021 -> 1182[label="",style="dashed", color="magenta", weight=3]; 1021 -> 1183[label="",style="dashed", color="magenta", weight=3]; 1022 -> 496[label="",style="dashed", color="red", weight=0]; 1022[label="vyw30 == vyw400",fontsize=16,color="magenta"];1022 -> 1184[label="",style="dashed", color="magenta", weight=3]; 1022 -> 1185[label="",style="dashed", color="magenta", weight=3]; 1023 -> 497[label="",style="dashed", color="red", weight=0]; 1023[label="vyw30 == vyw400",fontsize=16,color="magenta"];1023 -> 1186[label="",style="dashed", color="magenta", weight=3]; 1023 -> 1187[label="",style="dashed", color="magenta", weight=3]; 1024 -> 498[label="",style="dashed", color="red", weight=0]; 1024[label="vyw30 == vyw400",fontsize=16,color="magenta"];1024 -> 1188[label="",style="dashed", color="magenta", weight=3]; 1024 -> 1189[label="",style="dashed", color="magenta", weight=3]; 1025 -> 499[label="",style="dashed", color="red", weight=0]; 1025[label="vyw30 == vyw400",fontsize=16,color="magenta"];1025 -> 1190[label="",style="dashed", color="magenta", weight=3]; 1025 -> 1191[label="",style="dashed", color="magenta", weight=3]; 1026 -> 500[label="",style="dashed", color="red", weight=0]; 1026[label="vyw30 == vyw400",fontsize=16,color="magenta"];1026 -> 1192[label="",style="dashed", color="magenta", weight=3]; 1026 -> 1193[label="",style="dashed", color="magenta", weight=3]; 1027[label="compare1 (vyw80,vyw81,vyw82) (vyw83,vyw84,vyw85) ((vyw80,vyw81,vyw82) <= (vyw83,vyw84,vyw85))",fontsize=16,color="black",shape="box"];1027 -> 1194[label="",style="solid", color="black", weight=3]; 1028[label="EQ",fontsize=16,color="green",shape="box"];797[label="vyw400",fontsize=16,color="green",shape="box"];798[label="Pos vyw310",fontsize=16,color="green",shape="box"];799[label="Pos vyw4010",fontsize=16,color="green",shape="box"];800[label="vyw30",fontsize=16,color="green",shape="box"];801[label="vyw400",fontsize=16,color="green",shape="box"];802[label="Neg vyw310",fontsize=16,color="green",shape="box"];803[label="Pos vyw4010",fontsize=16,color="green",shape="box"];804[label="vyw30",fontsize=16,color="green",shape="box"];805[label="vyw400",fontsize=16,color="green",shape="box"];806[label="Pos vyw310",fontsize=16,color="green",shape="box"];807[label="Neg vyw4010",fontsize=16,color="green",shape="box"];808[label="vyw30",fontsize=16,color="green",shape="box"];809[label="vyw400",fontsize=16,color="green",shape="box"];810[label="Neg vyw310",fontsize=16,color="green",shape="box"];811[label="Neg vyw4010",fontsize=16,color="green",shape="box"];812[label="vyw30",fontsize=16,color="green",shape="box"];813[label="vyw400",fontsize=16,color="green",shape="box"];814[label="vyw30",fontsize=16,color="green",shape="box"];815[label="vyw400",fontsize=16,color="green",shape="box"];816[label="vyw30",fontsize=16,color="green",shape="box"];817[label="vyw400",fontsize=16,color="green",shape="box"];818[label="vyw30",fontsize=16,color="green",shape="box"];819[label="vyw400",fontsize=16,color="green",shape="box"];820[label="vyw30",fontsize=16,color="green",shape="box"];821[label="vyw400",fontsize=16,color="green",shape="box"];822[label="vyw30",fontsize=16,color="green",shape="box"];823[label="vyw400",fontsize=16,color="green",shape="box"];824[label="vyw30",fontsize=16,color="green",shape="box"];825[label="vyw400",fontsize=16,color="green",shape="box"];826[label="vyw30",fontsize=16,color="green",shape="box"];827[label="vyw400",fontsize=16,color="green",shape="box"];828[label="vyw30",fontsize=16,color="green",shape="box"];829[label="vyw400",fontsize=16,color="green",shape="box"];830[label="vyw30",fontsize=16,color="green",shape="box"];831[label="vyw400",fontsize=16,color="green",shape="box"];832[label="vyw30",fontsize=16,color="green",shape="box"];833[label="vyw400",fontsize=16,color="green",shape="box"];834[label="vyw30",fontsize=16,color="green",shape="box"];835[label="vyw400",fontsize=16,color="green",shape="box"];836[label="vyw30",fontsize=16,color="green",shape="box"];837[label="vyw400",fontsize=16,color="green",shape="box"];838[label="vyw30",fontsize=16,color="green",shape="box"];839[label="vyw400",fontsize=16,color="green",shape="box"];840[label="vyw30",fontsize=16,color="green",shape="box"];841[label="LT",fontsize=16,color="green",shape="box"];842[label="vyw90",fontsize=16,color="green",shape="box"];843[label="GT",fontsize=16,color="green",shape="box"];844 -> 410[label="",style="dashed", color="red", weight=0]; 844[label="primMulInt vyw4000 vyw310",fontsize=16,color="magenta"];844 -> 1029[label="",style="dashed", color="magenta", weight=3]; 844 -> 1030[label="",style="dashed", color="magenta", weight=3]; 845[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];845 -> 1031[label="",style="dashed", color="green", weight=3]; 846[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];846 -> 1032[label="",style="dashed", color="green", weight=3]; 847[label="Neg (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];847 -> 1033[label="",style="dashed", color="green", weight=3]; 848[label="Pos (primMulNat vyw4000 vyw310)",fontsize=16,color="green",shape="box"];848 -> 1034[label="",style="dashed", color="green", weight=3]; 849[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];849 -> 1035[label="",style="solid", color="black", weight=3]; 850[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];850 -> 1036[label="",style="solid", color="black", weight=3]; 851[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];851 -> 1037[label="",style="solid", color="black", weight=3]; 852[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];852 -> 1038[label="",style="solid", color="black", weight=3]; 853[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];853 -> 1039[label="",style="solid", color="black", weight=3]; 854[label="False == False",fontsize=16,color="black",shape="box"];854 -> 1040[label="",style="solid", color="black", weight=3]; 855[label="False == True",fontsize=16,color="black",shape="box"];855 -> 1041[label="",style="solid", color="black", weight=3]; 856[label="True == False",fontsize=16,color="black",shape="box"];856 -> 1042[label="",style="solid", color="black", weight=3]; 857[label="True == True",fontsize=16,color="black",shape="box"];857 -> 1043[label="",style="solid", color="black", weight=3]; 858[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3219[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];858 -> 3219[label="",style="solid", color="burlywood", weight=9]; 3219 -> 1044[label="",style="solid", color="burlywood", weight=3]; 859[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];859 -> 1045[label="",style="solid", color="black", weight=3]; 860[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];860 -> 1046[label="",style="solid", color="black", weight=3]; 861[label="LT == LT",fontsize=16,color="black",shape="box"];861 -> 1047[label="",style="solid", color="black", weight=3]; 862[label="LT == EQ",fontsize=16,color="black",shape="box"];862 -> 1048[label="",style="solid", color="black", weight=3]; 863[label="LT == GT",fontsize=16,color="black",shape="box"];863 -> 1049[label="",style="solid", color="black", weight=3]; 864[label="EQ == LT",fontsize=16,color="black",shape="box"];864 -> 1050[label="",style="solid", color="black", weight=3]; 865[label="EQ == EQ",fontsize=16,color="black",shape="box"];865 -> 1051[label="",style="solid", color="black", weight=3]; 866[label="EQ == GT",fontsize=16,color="black",shape="box"];866 -> 1052[label="",style="solid", color="black", weight=3]; 867[label="GT == LT",fontsize=16,color="black",shape="box"];867 -> 1053[label="",style="solid", color="black", weight=3]; 868[label="GT == EQ",fontsize=16,color="black",shape="box"];868 -> 1054[label="",style="solid", color="black", weight=3]; 869[label="GT == GT",fontsize=16,color="black",shape="box"];869 -> 1055[label="",style="solid", color="black", weight=3]; 870[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];870 -> 1056[label="",style="solid", color="black", weight=3]; 871[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];871 -> 1057[label="",style="solid", color="black", weight=3]; 872[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];872 -> 1058[label="",style="solid", color="black", weight=3]; 873[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];873 -> 1059[label="",style="solid", color="black", weight=3]; 874[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];874 -> 1060[label="",style="solid", color="black", weight=3]; 875[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];875 -> 1061[label="",style="solid", color="black", weight=3]; 876[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];876 -> 1062[label="",style="solid", color="black", weight=3]; 877[label="[] == []",fontsize=16,color="black",shape="box"];877 -> 1063[label="",style="solid", color="black", weight=3]; 878[label="() == ()",fontsize=16,color="black",shape="box"];878 -> 1064[label="",style="solid", color="black", weight=3]; 879[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];879 -> 1065[label="",style="solid", color="black", weight=3]; 880[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3220[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];880 -> 3220[label="",style="solid", color="burlywood", weight=9]; 3220 -> 1066[label="",style="solid", color="burlywood", weight=3]; 3221[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];880 -> 3221[label="",style="solid", color="burlywood", weight=9]; 3221 -> 1067[label="",style="solid", color="burlywood", weight=3]; 881[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3222[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];881 -> 3222[label="",style="solid", color="burlywood", weight=9]; 3222 -> 1068[label="",style="solid", color="burlywood", weight=3]; 3223[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];881 -> 3223[label="",style="solid", color="burlywood", weight=9]; 3223 -> 1069[label="",style="solid", color="burlywood", weight=3]; 882[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3224[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];882 -> 3224[label="",style="solid", color="burlywood", weight=9]; 3224 -> 1070[label="",style="solid", color="burlywood", weight=3]; 883[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3225[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];883 -> 3225[label="",style="solid", color="burlywood", weight=9]; 3225 -> 1071[label="",style="solid", color="burlywood", weight=3]; 1073[label="Left vyw44 <= Left vyw45",fontsize=16,color="black",shape="box"];1073 -> 1195[label="",style="solid", color="black", weight=3]; 1074[label="vyw45",fontsize=16,color="green",shape="box"];1075[label="vyw44",fontsize=16,color="green",shape="box"];1072[label="compare1 (Left vyw121) (Left vyw122) vyw123",fontsize=16,color="burlywood",shape="triangle"];3226[label="vyw123/False",fontsize=10,color="white",style="solid",shape="box"];1072 -> 3226[label="",style="solid", color="burlywood", weight=9]; 3226 -> 1196[label="",style="solid", color="burlywood", weight=3]; 3227[label="vyw123/True",fontsize=10,color="white",style="solid",shape="box"];1072 -> 3227[label="",style="solid", color="burlywood", weight=9]; 3227 -> 1197[label="",style="solid", color="burlywood", weight=3]; 885[label="compare0 (Right vyw30) (Left vyw400) True",fontsize=16,color="black",shape="box"];885 -> 1198[label="",style="solid", color="black", weight=3]; 1200[label="vyw52",fontsize=16,color="green",shape="box"];1201[label="vyw51",fontsize=16,color="green",shape="box"];1202[label="Right vyw51 <= Right vyw52",fontsize=16,color="black",shape="box"];1202 -> 1206[label="",style="solid", color="black", weight=3]; 1199[label="compare1 (Right vyw128) (Right vyw129) vyw130",fontsize=16,color="burlywood",shape="triangle"];3228[label="vyw130/False",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3228[label="",style="solid", color="burlywood", weight=9]; 3228 -> 1207[label="",style="solid", color="burlywood", weight=3]; 3229[label="vyw130/True",fontsize=10,color="white",style="solid",shape="box"];1199 -> 3229[label="",style="solid", color="burlywood", weight=9]; 3229 -> 1208[label="",style="solid", color="burlywood", weight=3]; 887[label="compare0 (Just vyw30) Nothing True",fontsize=16,color="black",shape="box"];887 -> 1209[label="",style="solid", color="black", weight=3]; 1211[label="Just vyw58 <= Just vyw59",fontsize=16,color="black",shape="box"];1211 -> 1217[label="",style="solid", color="black", weight=3]; 1212[label="vyw59",fontsize=16,color="green",shape="box"];1213[label="vyw58",fontsize=16,color="green",shape="box"];1210[label="compare1 (Just vyw135) (Just vyw136) vyw137",fontsize=16,color="burlywood",shape="triangle"];3230[label="vyw137/False",fontsize=10,color="white",style="solid",shape="box"];1210 -> 3230[label="",style="solid", color="burlywood", weight=9]; 3230 -> 1218[label="",style="solid", color="burlywood", weight=3]; 3231[label="vyw137/True",fontsize=10,color="white",style="solid",shape="box"];1210 -> 3231[label="",style="solid", color="burlywood", weight=9]; 3231 -> 1219[label="",style="solid", color="burlywood", weight=3]; 889[label="compare0 EQ LT True",fontsize=16,color="black",shape="box"];889 -> 1220[label="",style="solid", color="black", weight=3]; 890[label="compare0 GT LT True",fontsize=16,color="black",shape="box"];890 -> 1221[label="",style="solid", color="black", weight=3]; 891[label="compare0 GT EQ True",fontsize=16,color="black",shape="box"];891 -> 1222[label="",style="solid", color="black", weight=3]; 892[label="compare0 True False True",fontsize=16,color="black",shape="box"];892 -> 1223[label="",style="solid", color="black", weight=3]; 1079[label="vyw401",fontsize=16,color="green",shape="box"];1080[label="vyw31",fontsize=16,color="green",shape="box"];1081[label="vyw401",fontsize=16,color="green",shape="box"];1082[label="vyw31",fontsize=16,color="green",shape="box"];1083[label="vyw401",fontsize=16,color="green",shape="box"];1084[label="vyw31",fontsize=16,color="green",shape="box"];1085[label="vyw401",fontsize=16,color="green",shape="box"];1086[label="vyw31",fontsize=16,color="green",shape="box"];1087[label="vyw401",fontsize=16,color="green",shape="box"];1088[label="vyw31",fontsize=16,color="green",shape="box"];1089[label="vyw401",fontsize=16,color="green",shape="box"];1090[label="vyw31",fontsize=16,color="green",shape="box"];1091[label="vyw401",fontsize=16,color="green",shape="box"];1092[label="vyw31",fontsize=16,color="green",shape="box"];1093[label="vyw401",fontsize=16,color="green",shape="box"];1094[label="vyw31",fontsize=16,color="green",shape="box"];1095[label="vyw401",fontsize=16,color="green",shape="box"];1096[label="vyw31",fontsize=16,color="green",shape="box"];1097[label="vyw401",fontsize=16,color="green",shape="box"];1098[label="vyw31",fontsize=16,color="green",shape="box"];1099[label="vyw401",fontsize=16,color="green",shape="box"];1100[label="vyw31",fontsize=16,color="green",shape="box"];1101[label="vyw401",fontsize=16,color="green",shape="box"];1102[label="vyw31",fontsize=16,color="green",shape="box"];1103[label="vyw401",fontsize=16,color="green",shape="box"];1104[label="vyw31",fontsize=16,color="green",shape="box"];1105[label="vyw401",fontsize=16,color="green",shape="box"];1106[label="vyw31",fontsize=16,color="green",shape="box"];1107[label="vyw400",fontsize=16,color="green",shape="box"];1108[label="vyw30",fontsize=16,color="green",shape="box"];1109[label="vyw400",fontsize=16,color="green",shape="box"];1110[label="vyw30",fontsize=16,color="green",shape="box"];1111[label="vyw400",fontsize=16,color="green",shape="box"];1112[label="vyw30",fontsize=16,color="green",shape="box"];1113[label="vyw400",fontsize=16,color="green",shape="box"];1114[label="vyw30",fontsize=16,color="green",shape="box"];1115[label="vyw400",fontsize=16,color="green",shape="box"];1116[label="vyw30",fontsize=16,color="green",shape="box"];1117[label="vyw400",fontsize=16,color="green",shape="box"];1118[label="vyw30",fontsize=16,color="green",shape="box"];1119[label="vyw400",fontsize=16,color="green",shape="box"];1120[label="vyw30",fontsize=16,color="green",shape="box"];1121[label="vyw400",fontsize=16,color="green",shape="box"];1122[label="vyw30",fontsize=16,color="green",shape="box"];1123[label="vyw400",fontsize=16,color="green",shape="box"];1124[label="vyw30",fontsize=16,color="green",shape="box"];1125[label="vyw400",fontsize=16,color="green",shape="box"];1126[label="vyw30",fontsize=16,color="green",shape="box"];1127[label="vyw400",fontsize=16,color="green",shape="box"];1128[label="vyw30",fontsize=16,color="green",shape="box"];1129[label="vyw400",fontsize=16,color="green",shape="box"];1130[label="vyw30",fontsize=16,color="green",shape="box"];1131[label="vyw400",fontsize=16,color="green",shape="box"];1132[label="vyw30",fontsize=16,color="green",shape="box"];1133[label="vyw400",fontsize=16,color="green",shape="box"];1134[label="vyw30",fontsize=16,color="green",shape="box"];1135[label="False",fontsize=16,color="green",shape="box"];1136[label="vyw116",fontsize=16,color="green",shape="box"];1137 -> 1403[label="",style="dashed", color="red", weight=0]; 1137[label="compare1 (vyw98,vyw99) (vyw100,vyw101) (vyw98 < vyw100 || vyw98 == vyw100 && vyw99 <= vyw101)",fontsize=16,color="magenta"];1137 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1137 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1138 -> 487[label="",style="dashed", color="red", weight=0]; 1138[label="vyw32 == vyw402",fontsize=16,color="magenta"];1138 -> 1226[label="",style="dashed", color="magenta", weight=3]; 1138 -> 1227[label="",style="dashed", color="magenta", weight=3]; 1139 -> 488[label="",style="dashed", color="red", weight=0]; 1139[label="vyw32 == vyw402",fontsize=16,color="magenta"];1139 -> 1228[label="",style="dashed", color="magenta", weight=3]; 1139 -> 1229[label="",style="dashed", color="magenta", weight=3]; 1140 -> 489[label="",style="dashed", color="red", weight=0]; 1140[label="vyw32 == vyw402",fontsize=16,color="magenta"];1140 -> 1230[label="",style="dashed", color="magenta", weight=3]; 1140 -> 1231[label="",style="dashed", color="magenta", weight=3]; 1141 -> 490[label="",style="dashed", color="red", weight=0]; 1141[label="vyw32 == vyw402",fontsize=16,color="magenta"];1141 -> 1232[label="",style="dashed", color="magenta", weight=3]; 1141 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1142 -> 491[label="",style="dashed", color="red", weight=0]; 1142[label="vyw32 == vyw402",fontsize=16,color="magenta"];1142 -> 1234[label="",style="dashed", color="magenta", weight=3]; 1142 -> 1235[label="",style="dashed", color="magenta", weight=3]; 1143 -> 492[label="",style="dashed", color="red", weight=0]; 1143[label="vyw32 == vyw402",fontsize=16,color="magenta"];1143 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1143 -> 1237[label="",style="dashed", color="magenta", weight=3]; 1144 -> 493[label="",style="dashed", color="red", weight=0]; 1144[label="vyw32 == vyw402",fontsize=16,color="magenta"];1144 -> 1238[label="",style="dashed", color="magenta", weight=3]; 1144 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1145 -> 494[label="",style="dashed", color="red", weight=0]; 1145[label="vyw32 == vyw402",fontsize=16,color="magenta"];1145 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1145 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1146 -> 495[label="",style="dashed", color="red", weight=0]; 1146[label="vyw32 == vyw402",fontsize=16,color="magenta"];1146 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1146 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1147 -> 496[label="",style="dashed", color="red", weight=0]; 1147[label="vyw32 == vyw402",fontsize=16,color="magenta"];1147 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1147 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1148 -> 497[label="",style="dashed", color="red", weight=0]; 1148[label="vyw32 == vyw402",fontsize=16,color="magenta"];1148 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1148 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1149 -> 498[label="",style="dashed", color="red", weight=0]; 1149[label="vyw32 == vyw402",fontsize=16,color="magenta"];1149 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1149 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1150 -> 499[label="",style="dashed", color="red", weight=0]; 1150[label="vyw32 == vyw402",fontsize=16,color="magenta"];1150 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1150 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1151 -> 500[label="",style="dashed", color="red", weight=0]; 1151[label="vyw32 == vyw402",fontsize=16,color="magenta"];1151 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1151 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1152 -> 487[label="",style="dashed", color="red", weight=0]; 1152[label="vyw31 == vyw401",fontsize=16,color="magenta"];1152 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1152 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1153 -> 488[label="",style="dashed", color="red", weight=0]; 1153[label="vyw31 == vyw401",fontsize=16,color="magenta"];1153 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1153 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1154 -> 489[label="",style="dashed", color="red", weight=0]; 1154[label="vyw31 == vyw401",fontsize=16,color="magenta"];1154 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1154 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1155 -> 490[label="",style="dashed", color="red", weight=0]; 1155[label="vyw31 == vyw401",fontsize=16,color="magenta"];1155 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1155 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1156 -> 491[label="",style="dashed", color="red", weight=0]; 1156[label="vyw31 == vyw401",fontsize=16,color="magenta"];1156 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1156 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1157 -> 492[label="",style="dashed", color="red", weight=0]; 1157[label="vyw31 == vyw401",fontsize=16,color="magenta"];1157 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1157 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1158 -> 493[label="",style="dashed", color="red", weight=0]; 1158[label="vyw31 == vyw401",fontsize=16,color="magenta"];1158 -> 1266[label="",style="dashed", color="magenta", weight=3]; 1158 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1159 -> 494[label="",style="dashed", color="red", weight=0]; 1159[label="vyw31 == vyw401",fontsize=16,color="magenta"];1159 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1159 -> 1269[label="",style="dashed", color="magenta", weight=3]; 1160 -> 495[label="",style="dashed", color="red", weight=0]; 1160[label="vyw31 == vyw401",fontsize=16,color="magenta"];1160 -> 1270[label="",style="dashed", color="magenta", weight=3]; 1160 -> 1271[label="",style="dashed", color="magenta", weight=3]; 1161 -> 496[label="",style="dashed", color="red", weight=0]; 1161[label="vyw31 == vyw401",fontsize=16,color="magenta"];1161 -> 1272[label="",style="dashed", color="magenta", weight=3]; 1161 -> 1273[label="",style="dashed", color="magenta", weight=3]; 1162 -> 497[label="",style="dashed", color="red", weight=0]; 1162[label="vyw31 == vyw401",fontsize=16,color="magenta"];1162 -> 1274[label="",style="dashed", color="magenta", weight=3]; 1162 -> 1275[label="",style="dashed", color="magenta", weight=3]; 1163 -> 498[label="",style="dashed", color="red", weight=0]; 1163[label="vyw31 == vyw401",fontsize=16,color="magenta"];1163 -> 1276[label="",style="dashed", color="magenta", weight=3]; 1163 -> 1277[label="",style="dashed", color="magenta", weight=3]; 1164 -> 499[label="",style="dashed", color="red", weight=0]; 1164[label="vyw31 == vyw401",fontsize=16,color="magenta"];1164 -> 1278[label="",style="dashed", color="magenta", weight=3]; 1164 -> 1279[label="",style="dashed", color="magenta", weight=3]; 1165 -> 500[label="",style="dashed", color="red", weight=0]; 1165[label="vyw31 == vyw401",fontsize=16,color="magenta"];1165 -> 1280[label="",style="dashed", color="magenta", weight=3]; 1165 -> 1281[label="",style="dashed", color="magenta", weight=3]; 1166[label="vyw400",fontsize=16,color="green",shape="box"];1167[label="vyw30",fontsize=16,color="green",shape="box"];1168[label="vyw400",fontsize=16,color="green",shape="box"];1169[label="vyw30",fontsize=16,color="green",shape="box"];1170[label="vyw400",fontsize=16,color="green",shape="box"];1171[label="vyw30",fontsize=16,color="green",shape="box"];1172[label="vyw400",fontsize=16,color="green",shape="box"];1173[label="vyw30",fontsize=16,color="green",shape="box"];1174[label="vyw400",fontsize=16,color="green",shape="box"];1175[label="vyw30",fontsize=16,color="green",shape="box"];1176[label="vyw400",fontsize=16,color="green",shape="box"];1177[label="vyw30",fontsize=16,color="green",shape="box"];1178[label="vyw400",fontsize=16,color="green",shape="box"];1179[label="vyw30",fontsize=16,color="green",shape="box"];1180[label="vyw400",fontsize=16,color="green",shape="box"];1181[label="vyw30",fontsize=16,color="green",shape="box"];1182[label="vyw400",fontsize=16,color="green",shape="box"];1183[label="vyw30",fontsize=16,color="green",shape="box"];1184[label="vyw400",fontsize=16,color="green",shape="box"];1185[label="vyw30",fontsize=16,color="green",shape="box"];1186[label="vyw400",fontsize=16,color="green",shape="box"];1187[label="vyw30",fontsize=16,color="green",shape="box"];1188[label="vyw400",fontsize=16,color="green",shape="box"];1189[label="vyw30",fontsize=16,color="green",shape="box"];1190[label="vyw400",fontsize=16,color="green",shape="box"];1191[label="vyw30",fontsize=16,color="green",shape="box"];1192[label="vyw400",fontsize=16,color="green",shape="box"];1193[label="vyw30",fontsize=16,color="green",shape="box"];1194 -> 1436[label="",style="dashed", color="red", weight=0]; 1194[label="compare1 (vyw80,vyw81,vyw82) (vyw83,vyw84,vyw85) (vyw80 < vyw83 || vyw80 == vyw83 && (vyw81 < vyw84 || vyw81 == vyw84 && vyw82 <= vyw85))",fontsize=16,color="magenta"];1194 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1441[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1442[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1194 -> 1444[label="",style="dashed", color="magenta", weight=3]; 1029[label="vyw310",fontsize=16,color="green",shape="box"];1030[label="vyw4000",fontsize=16,color="green",shape="box"];1031[label="primMulNat vyw4000 vyw310",fontsize=16,color="burlywood",shape="triangle"];3232[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1031 -> 3232[label="",style="solid", color="burlywood", weight=9]; 3232 -> 1284[label="",style="solid", color="burlywood", weight=3]; 3233[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1031 -> 3233[label="",style="solid", color="burlywood", weight=9]; 3233 -> 1285[label="",style="solid", color="burlywood", weight=3]; 1032 -> 1031[label="",style="dashed", color="red", weight=0]; 1032[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1032 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1033 -> 1031[label="",style="dashed", color="red", weight=0]; 1033[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1033 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1031[label="",style="dashed", color="red", weight=0]; 1034[label="primMulNat vyw4000 vyw310",fontsize=16,color="magenta"];1034 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1034 -> 1289[label="",style="dashed", color="magenta", weight=3]; 1035 -> 970[label="",style="dashed", color="red", weight=0]; 1035[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1035 -> 1290[label="",style="dashed", color="magenta", weight=3]; 1035 -> 1291[label="",style="dashed", color="magenta", weight=3]; 1036[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3234[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3234[label="",style="solid", color="blue", weight=9]; 3234 -> 1292[label="",style="solid", color="blue", weight=3]; 3235[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3235[label="",style="solid", color="blue", weight=9]; 3235 -> 1293[label="",style="solid", color="blue", weight=3]; 3236[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3236[label="",style="solid", color="blue", weight=9]; 3236 -> 1294[label="",style="solid", color="blue", weight=3]; 3237[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3237[label="",style="solid", color="blue", weight=9]; 3237 -> 1295[label="",style="solid", color="blue", weight=3]; 3238[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3238[label="",style="solid", color="blue", weight=9]; 3238 -> 1296[label="",style="solid", color="blue", weight=3]; 3239[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3239[label="",style="solid", color="blue", weight=9]; 3239 -> 1297[label="",style="solid", color="blue", weight=3]; 3240[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3240[label="",style="solid", color="blue", weight=9]; 3240 -> 1298[label="",style="solid", color="blue", weight=3]; 3241[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3241[label="",style="solid", color="blue", weight=9]; 3241 -> 1299[label="",style="solid", color="blue", weight=3]; 3242[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3242[label="",style="solid", color="blue", weight=9]; 3242 -> 1300[label="",style="solid", color="blue", weight=3]; 3243[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3243[label="",style="solid", color="blue", weight=9]; 3243 -> 1301[label="",style="solid", color="blue", weight=3]; 3244[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3244[label="",style="solid", color="blue", weight=9]; 3244 -> 1302[label="",style="solid", color="blue", weight=3]; 3245[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3245[label="",style="solid", color="blue", weight=9]; 3245 -> 1303[label="",style="solid", color="blue", weight=3]; 3246[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3246[label="",style="solid", color="blue", weight=9]; 3246 -> 1304[label="",style="solid", color="blue", weight=3]; 3247[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 3247[label="",style="solid", color="blue", weight=9]; 3247 -> 1305[label="",style="solid", color="blue", weight=3]; 1037[label="False",fontsize=16,color="green",shape="box"];1038[label="False",fontsize=16,color="green",shape="box"];1039[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3248[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3248[label="",style="solid", color="blue", weight=9]; 3248 -> 1306[label="",style="solid", color="blue", weight=3]; 3249[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3249[label="",style="solid", color="blue", weight=9]; 3249 -> 1307[label="",style="solid", color="blue", weight=3]; 3250[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3250[label="",style="solid", color="blue", weight=9]; 3250 -> 1308[label="",style="solid", color="blue", weight=3]; 3251[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3251[label="",style="solid", color="blue", weight=9]; 3251 -> 1309[label="",style="solid", color="blue", weight=3]; 3252[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3252[label="",style="solid", color="blue", weight=9]; 3252 -> 1310[label="",style="solid", color="blue", weight=3]; 3253[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3253[label="",style="solid", color="blue", weight=9]; 3253 -> 1311[label="",style="solid", color="blue", weight=3]; 3254[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3254[label="",style="solid", color="blue", weight=9]; 3254 -> 1312[label="",style="solid", color="blue", weight=3]; 3255[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3255[label="",style="solid", color="blue", weight=9]; 3255 -> 1313[label="",style="solid", color="blue", weight=3]; 3256[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3256[label="",style="solid", color="blue", weight=9]; 3256 -> 1314[label="",style="solid", color="blue", weight=3]; 3257[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3257[label="",style="solid", color="blue", weight=9]; 3257 -> 1315[label="",style="solid", color="blue", weight=3]; 3258[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3258[label="",style="solid", color="blue", weight=9]; 3258 -> 1316[label="",style="solid", color="blue", weight=3]; 3259[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3259[label="",style="solid", color="blue", weight=9]; 3259 -> 1317[label="",style="solid", color="blue", weight=3]; 3260[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3260[label="",style="solid", color="blue", weight=9]; 3260 -> 1318[label="",style="solid", color="blue", weight=3]; 3261[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1039 -> 3261[label="",style="solid", color="blue", weight=9]; 3261 -> 1319[label="",style="solid", color="blue", weight=3]; 1040[label="True",fontsize=16,color="green",shape="box"];1041[label="False",fontsize=16,color="green",shape="box"];1042[label="False",fontsize=16,color="green",shape="box"];1043[label="True",fontsize=16,color="green",shape="box"];1044[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];1044 -> 1320[label="",style="solid", color="black", weight=3]; 1045 -> 970[label="",style="dashed", color="red", weight=0]; 1045[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1045 -> 1321[label="",style="dashed", color="magenta", weight=3]; 1045 -> 1322[label="",style="dashed", color="magenta", weight=3]; 1046 -> 642[label="",style="dashed", color="red", weight=0]; 1046[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];1046 -> 1323[label="",style="dashed", color="magenta", weight=3]; 1046 -> 1324[label="",style="dashed", color="magenta", weight=3]; 1047[label="True",fontsize=16,color="green",shape="box"];1048[label="False",fontsize=16,color="green",shape="box"];1049[label="False",fontsize=16,color="green",shape="box"];1050[label="False",fontsize=16,color="green",shape="box"];1051[label="True",fontsize=16,color="green",shape="box"];1052[label="False",fontsize=16,color="green",shape="box"];1053[label="False",fontsize=16,color="green",shape="box"];1054[label="False",fontsize=16,color="green",shape="box"];1055[label="True",fontsize=16,color="green",shape="box"];1056[label="True",fontsize=16,color="green",shape="box"];1057[label="False",fontsize=16,color="green",shape="box"];1058[label="False",fontsize=16,color="green",shape="box"];1059[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3262[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3262[label="",style="solid", color="blue", weight=9]; 3262 -> 1325[label="",style="solid", color="blue", weight=3]; 3263[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3263[label="",style="solid", color="blue", weight=9]; 3263 -> 1326[label="",style="solid", color="blue", weight=3]; 3264[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3264[label="",style="solid", color="blue", weight=9]; 3264 -> 1327[label="",style="solid", color="blue", weight=3]; 3265[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3265[label="",style="solid", color="blue", weight=9]; 3265 -> 1328[label="",style="solid", color="blue", weight=3]; 3266[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3266[label="",style="solid", color="blue", weight=9]; 3266 -> 1329[label="",style="solid", color="blue", weight=3]; 3267[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3267[label="",style="solid", color="blue", weight=9]; 3267 -> 1330[label="",style="solid", color="blue", weight=3]; 3268[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3268[label="",style="solid", color="blue", weight=9]; 3268 -> 1331[label="",style="solid", color="blue", weight=3]; 3269[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3269[label="",style="solid", color="blue", weight=9]; 3269 -> 1332[label="",style="solid", color="blue", weight=3]; 3270[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3270[label="",style="solid", color="blue", weight=9]; 3270 -> 1333[label="",style="solid", color="blue", weight=3]; 3271[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3271[label="",style="solid", color="blue", weight=9]; 3271 -> 1334[label="",style="solid", color="blue", weight=3]; 3272[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3272[label="",style="solid", color="blue", weight=9]; 3272 -> 1335[label="",style="solid", color="blue", weight=3]; 3273[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3273[label="",style="solid", color="blue", weight=9]; 3273 -> 1336[label="",style="solid", color="blue", weight=3]; 3274[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3274[label="",style="solid", color="blue", weight=9]; 3274 -> 1337[label="",style="solid", color="blue", weight=3]; 3275[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1059 -> 3275[label="",style="solid", color="blue", weight=9]; 3275 -> 1338[label="",style="solid", color="blue", weight=3]; 1060 -> 970[label="",style="dashed", color="red", weight=0]; 1060[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];1060 -> 1339[label="",style="dashed", color="magenta", weight=3]; 1060 -> 1340[label="",style="dashed", color="magenta", weight=3]; 1061[label="False",fontsize=16,color="green",shape="box"];1062[label="False",fontsize=16,color="green",shape="box"];1063[label="True",fontsize=16,color="green",shape="box"];1064[label="True",fontsize=16,color="green",shape="box"];1065 -> 970[label="",style="dashed", color="red", weight=0]; 1065[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1065 -> 1341[label="",style="dashed", color="magenta", weight=3]; 1065 -> 1342[label="",style="dashed", color="magenta", weight=3]; 1066[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3276[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3276[label="",style="solid", color="burlywood", weight=9]; 3276 -> 1343[label="",style="solid", color="burlywood", weight=3]; 3277[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1066 -> 3277[label="",style="solid", color="burlywood", weight=9]; 3277 -> 1344[label="",style="solid", color="burlywood", weight=3]; 1067[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3278[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3278[label="",style="solid", color="burlywood", weight=9]; 3278 -> 1345[label="",style="solid", color="burlywood", weight=3]; 3279[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1067 -> 3279[label="",style="solid", color="burlywood", weight=9]; 3279 -> 1346[label="",style="solid", color="burlywood", weight=3]; 1068[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3280[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1068 -> 3280[label="",style="solid", color="burlywood", weight=9]; 3280 -> 1347[label="",style="solid", color="burlywood", weight=3]; 3281[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1068 -> 3281[label="",style="solid", color="burlywood", weight=9]; 3281 -> 1348[label="",style="solid", color="burlywood", weight=3]; 1069[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3282[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3282[label="",style="solid", color="burlywood", weight=9]; 3282 -> 1349[label="",style="solid", color="burlywood", weight=3]; 3283[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];1069 -> 3283[label="",style="solid", color="burlywood", weight=9]; 3283 -> 1350[label="",style="solid", color="burlywood", weight=3]; 1070[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1070 -> 1351[label="",style="solid", color="black", weight=3]; 1071[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];1071 -> 1352[label="",style="solid", color="black", weight=3]; 1195[label="vyw44 <= vyw45",fontsize=16,color="blue",shape="box"];3284[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3284[label="",style="solid", color="blue", weight=9]; 3284 -> 1353[label="",style="solid", color="blue", weight=3]; 3285[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3285[label="",style="solid", color="blue", weight=9]; 3285 -> 1354[label="",style="solid", color="blue", weight=3]; 3286[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3286[label="",style="solid", color="blue", weight=9]; 3286 -> 1355[label="",style="solid", color="blue", weight=3]; 3287[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3287[label="",style="solid", color="blue", weight=9]; 3287 -> 1356[label="",style="solid", color="blue", weight=3]; 3288[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3288[label="",style="solid", color="blue", weight=9]; 3288 -> 1357[label="",style="solid", color="blue", weight=3]; 3289[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3289[label="",style="solid", color="blue", weight=9]; 3289 -> 1358[label="",style="solid", color="blue", weight=3]; 3290[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3290[label="",style="solid", color="blue", weight=9]; 3290 -> 1359[label="",style="solid", color="blue", weight=3]; 3291[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3291[label="",style="solid", color="blue", weight=9]; 3291 -> 1360[label="",style="solid", color="blue", weight=3]; 3292[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3292[label="",style="solid", color="blue", weight=9]; 3292 -> 1361[label="",style="solid", color="blue", weight=3]; 3293[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3293[label="",style="solid", color="blue", weight=9]; 3293 -> 1362[label="",style="solid", color="blue", weight=3]; 3294[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3294[label="",style="solid", color="blue", weight=9]; 3294 -> 1363[label="",style="solid", color="blue", weight=3]; 3295[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3295[label="",style="solid", color="blue", weight=9]; 3295 -> 1364[label="",style="solid", color="blue", weight=3]; 3296[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3296[label="",style="solid", color="blue", weight=9]; 3296 -> 1365[label="",style="solid", color="blue", weight=3]; 3297[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1195 -> 3297[label="",style="solid", color="blue", weight=9]; 3297 -> 1366[label="",style="solid", color="blue", weight=3]; 1196[label="compare1 (Left vyw121) (Left vyw122) False",fontsize=16,color="black",shape="box"];1196 -> 1367[label="",style="solid", color="black", weight=3]; 1197[label="compare1 (Left vyw121) (Left vyw122) True",fontsize=16,color="black",shape="box"];1197 -> 1368[label="",style="solid", color="black", weight=3]; 1198[label="GT",fontsize=16,color="green",shape="box"];1206[label="vyw51 <= vyw52",fontsize=16,color="blue",shape="box"];3298[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3298[label="",style="solid", color="blue", weight=9]; 3298 -> 1369[label="",style="solid", color="blue", weight=3]; 3299[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3299[label="",style="solid", color="blue", weight=9]; 3299 -> 1370[label="",style="solid", color="blue", weight=3]; 3300[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3300[label="",style="solid", color="blue", weight=9]; 3300 -> 1371[label="",style="solid", color="blue", weight=3]; 3301[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3301[label="",style="solid", color="blue", weight=9]; 3301 -> 1372[label="",style="solid", color="blue", weight=3]; 3302[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3302[label="",style="solid", color="blue", weight=9]; 3302 -> 1373[label="",style="solid", color="blue", weight=3]; 3303[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3303[label="",style="solid", color="blue", weight=9]; 3303 -> 1374[label="",style="solid", color="blue", weight=3]; 3304[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3304[label="",style="solid", color="blue", weight=9]; 3304 -> 1375[label="",style="solid", color="blue", weight=3]; 3305[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3305[label="",style="solid", color="blue", weight=9]; 3305 -> 1376[label="",style="solid", color="blue", weight=3]; 3306[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3306[label="",style="solid", color="blue", weight=9]; 3306 -> 1377[label="",style="solid", color="blue", weight=3]; 3307[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3307[label="",style="solid", color="blue", weight=9]; 3307 -> 1378[label="",style="solid", color="blue", weight=3]; 3308[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3308[label="",style="solid", color="blue", weight=9]; 3308 -> 1379[label="",style="solid", color="blue", weight=3]; 3309[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3309[label="",style="solid", color="blue", weight=9]; 3309 -> 1380[label="",style="solid", color="blue", weight=3]; 3310[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3310[label="",style="solid", color="blue", weight=9]; 3310 -> 1381[label="",style="solid", color="blue", weight=3]; 3311[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1206 -> 3311[label="",style="solid", color="blue", weight=9]; 3311 -> 1382[label="",style="solid", color="blue", weight=3]; 1207[label="compare1 (Right vyw128) (Right vyw129) False",fontsize=16,color="black",shape="box"];1207 -> 1383[label="",style="solid", color="black", weight=3]; 1208[label="compare1 (Right vyw128) (Right vyw129) True",fontsize=16,color="black",shape="box"];1208 -> 1384[label="",style="solid", color="black", weight=3]; 1209[label="GT",fontsize=16,color="green",shape="box"];1217[label="vyw58 <= vyw59",fontsize=16,color="blue",shape="box"];3312[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3312[label="",style="solid", color="blue", weight=9]; 3312 -> 1385[label="",style="solid", color="blue", weight=3]; 3313[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3313[label="",style="solid", color="blue", weight=9]; 3313 -> 1386[label="",style="solid", color="blue", weight=3]; 3314[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3314[label="",style="solid", color="blue", weight=9]; 3314 -> 1387[label="",style="solid", color="blue", weight=3]; 3315[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3315[label="",style="solid", color="blue", weight=9]; 3315 -> 1388[label="",style="solid", color="blue", weight=3]; 3316[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3316[label="",style="solid", color="blue", weight=9]; 3316 -> 1389[label="",style="solid", color="blue", weight=3]; 3317[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3317[label="",style="solid", color="blue", weight=9]; 3317 -> 1390[label="",style="solid", color="blue", weight=3]; 3318[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3318[label="",style="solid", color="blue", weight=9]; 3318 -> 1391[label="",style="solid", color="blue", weight=3]; 3319[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3319[label="",style="solid", color="blue", weight=9]; 3319 -> 1392[label="",style="solid", color="blue", weight=3]; 3320[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3320[label="",style="solid", color="blue", weight=9]; 3320 -> 1393[label="",style="solid", color="blue", weight=3]; 3321[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3321[label="",style="solid", color="blue", weight=9]; 3321 -> 1394[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"];1217 -> 3322[label="",style="solid", color="blue", weight=9]; 3322 -> 1395[label="",style="solid", color="blue", weight=3]; 3323[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3323[label="",style="solid", color="blue", weight=9]; 3323 -> 1396[label="",style="solid", color="blue", weight=3]; 3324[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3324[label="",style="solid", color="blue", weight=9]; 3324 -> 1397[label="",style="solid", color="blue", weight=3]; 3325[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1217 -> 3325[label="",style="solid", color="blue", weight=9]; 3325 -> 1398[label="",style="solid", color="blue", weight=3]; 1218[label="compare1 (Just vyw135) (Just vyw136) False",fontsize=16,color="black",shape="box"];1218 -> 1399[label="",style="solid", color="black", weight=3]; 1219[label="compare1 (Just vyw135) (Just vyw136) True",fontsize=16,color="black",shape="box"];1219 -> 1400[label="",style="solid", color="black", weight=3]; 1220[label="GT",fontsize=16,color="green",shape="box"];1221[label="GT",fontsize=16,color="green",shape="box"];1222[label="GT",fontsize=16,color="green",shape="box"];1223[label="GT",fontsize=16,color="green",shape="box"];1404 -> 970[label="",style="dashed", color="red", weight=0]; 1404[label="vyw98 == vyw100 && vyw99 <= vyw101",fontsize=16,color="magenta"];1404 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1404 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1405[label="vyw100",fontsize=16,color="green",shape="box"];1406[label="vyw101",fontsize=16,color="green",shape="box"];1407[label="vyw98 < vyw100",fontsize=16,color="blue",shape="box"];3326[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3326[label="",style="solid", color="blue", weight=9]; 3326 -> 1418[label="",style="solid", color="blue", weight=3]; 3327[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3327[label="",style="solid", color="blue", weight=9]; 3327 -> 1419[label="",style="solid", color="blue", weight=3]; 3328[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3328[label="",style="solid", color="blue", weight=9]; 3328 -> 1420[label="",style="solid", color="blue", weight=3]; 3329[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3329[label="",style="solid", color="blue", weight=9]; 3329 -> 1421[label="",style="solid", color="blue", weight=3]; 3330[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3330[label="",style="solid", color="blue", weight=9]; 3330 -> 1422[label="",style="solid", color="blue", weight=3]; 3331[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3331[label="",style="solid", color="blue", weight=9]; 3331 -> 1423[label="",style="solid", color="blue", weight=3]; 3332[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3332[label="",style="solid", color="blue", weight=9]; 3332 -> 1424[label="",style="solid", color="blue", weight=3]; 3333[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3333[label="",style="solid", color="blue", weight=9]; 3333 -> 1425[label="",style="solid", color="blue", weight=3]; 3334[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3334[label="",style="solid", color="blue", weight=9]; 3334 -> 1426[label="",style="solid", color="blue", weight=3]; 3335[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3335[label="",style="solid", color="blue", weight=9]; 3335 -> 1427[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"];1407 -> 3336[label="",style="solid", color="blue", weight=9]; 3336 -> 1428[label="",style="solid", color="blue", weight=3]; 3337[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3337[label="",style="solid", color="blue", weight=9]; 3337 -> 1429[label="",style="solid", color="blue", weight=3]; 3338[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3338[label="",style="solid", color="blue", weight=9]; 3338 -> 1430[label="",style="solid", color="blue", weight=3]; 3339[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1407 -> 3339[label="",style="solid", color="blue", weight=9]; 3339 -> 1431[label="",style="solid", color="blue", weight=3]; 1408[label="vyw99",fontsize=16,color="green",shape="box"];1409[label="vyw98",fontsize=16,color="green",shape="box"];1403[label="compare1 (vyw148,vyw149) (vyw150,vyw151) (vyw152 || vyw153)",fontsize=16,color="burlywood",shape="triangle"];3340[label="vyw152/False",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3340[label="",style="solid", color="burlywood", weight=9]; 3340 -> 1432[label="",style="solid", color="burlywood", weight=3]; 3341[label="vyw152/True",fontsize=10,color="white",style="solid",shape="box"];1403 -> 3341[label="",style="solid", color="burlywood", weight=9]; 3341 -> 1433[label="",style="solid", color="burlywood", weight=3]; 1226[label="vyw402",fontsize=16,color="green",shape="box"];1227[label="vyw32",fontsize=16,color="green",shape="box"];1228[label="vyw402",fontsize=16,color="green",shape="box"];1229[label="vyw32",fontsize=16,color="green",shape="box"];1230[label="vyw402",fontsize=16,color="green",shape="box"];1231[label="vyw32",fontsize=16,color="green",shape="box"];1232[label="vyw402",fontsize=16,color="green",shape="box"];1233[label="vyw32",fontsize=16,color="green",shape="box"];1234[label="vyw402",fontsize=16,color="green",shape="box"];1235[label="vyw32",fontsize=16,color="green",shape="box"];1236[label="vyw402",fontsize=16,color="green",shape="box"];1237[label="vyw32",fontsize=16,color="green",shape="box"];1238[label="vyw402",fontsize=16,color="green",shape="box"];1239[label="vyw32",fontsize=16,color="green",shape="box"];1240[label="vyw402",fontsize=16,color="green",shape="box"];1241[label="vyw32",fontsize=16,color="green",shape="box"];1242[label="vyw402",fontsize=16,color="green",shape="box"];1243[label="vyw32",fontsize=16,color="green",shape="box"];1244[label="vyw402",fontsize=16,color="green",shape="box"];1245[label="vyw32",fontsize=16,color="green",shape="box"];1246[label="vyw402",fontsize=16,color="green",shape="box"];1247[label="vyw32",fontsize=16,color="green",shape="box"];1248[label="vyw402",fontsize=16,color="green",shape="box"];1249[label="vyw32",fontsize=16,color="green",shape="box"];1250[label="vyw402",fontsize=16,color="green",shape="box"];1251[label="vyw32",fontsize=16,color="green",shape="box"];1252[label="vyw402",fontsize=16,color="green",shape="box"];1253[label="vyw32",fontsize=16,color="green",shape="box"];1254[label="vyw401",fontsize=16,color="green",shape="box"];1255[label="vyw31",fontsize=16,color="green",shape="box"];1256[label="vyw401",fontsize=16,color="green",shape="box"];1257[label="vyw31",fontsize=16,color="green",shape="box"];1258[label="vyw401",fontsize=16,color="green",shape="box"];1259[label="vyw31",fontsize=16,color="green",shape="box"];1260[label="vyw401",fontsize=16,color="green",shape="box"];1261[label="vyw31",fontsize=16,color="green",shape="box"];1262[label="vyw401",fontsize=16,color="green",shape="box"];1263[label="vyw31",fontsize=16,color="green",shape="box"];1264[label="vyw401",fontsize=16,color="green",shape="box"];1265[label="vyw31",fontsize=16,color="green",shape="box"];1266[label="vyw401",fontsize=16,color="green",shape="box"];1267[label="vyw31",fontsize=16,color="green",shape="box"];1268[label="vyw401",fontsize=16,color="green",shape="box"];1269[label="vyw31",fontsize=16,color="green",shape="box"];1270[label="vyw401",fontsize=16,color="green",shape="box"];1271[label="vyw31",fontsize=16,color="green",shape="box"];1272[label="vyw401",fontsize=16,color="green",shape="box"];1273[label="vyw31",fontsize=16,color="green",shape="box"];1274[label="vyw401",fontsize=16,color="green",shape="box"];1275[label="vyw31",fontsize=16,color="green",shape="box"];1276[label="vyw401",fontsize=16,color="green",shape="box"];1277[label="vyw31",fontsize=16,color="green",shape="box"];1278[label="vyw401",fontsize=16,color="green",shape="box"];1279[label="vyw31",fontsize=16,color="green",shape="box"];1280[label="vyw401",fontsize=16,color="green",shape="box"];1281[label="vyw31",fontsize=16,color="green",shape="box"];1437[label="vyw83",fontsize=16,color="green",shape="box"];1438[label="vyw85",fontsize=16,color="green",shape="box"];1439[label="vyw80 < vyw83",fontsize=16,color="blue",shape="box"];3342[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3342[label="",style="solid", color="blue", weight=9]; 3342 -> 1453[label="",style="solid", color="blue", weight=3]; 3343[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3343[label="",style="solid", color="blue", weight=9]; 3343 -> 1454[label="",style="solid", color="blue", weight=3]; 3344[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3344[label="",style="solid", color="blue", weight=9]; 3344 -> 1455[label="",style="solid", color="blue", weight=3]; 3345[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3345[label="",style="solid", color="blue", weight=9]; 3345 -> 1456[label="",style="solid", color="blue", weight=3]; 3346[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3346[label="",style="solid", color="blue", weight=9]; 3346 -> 1457[label="",style="solid", color="blue", weight=3]; 3347[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3347[label="",style="solid", color="blue", weight=9]; 3347 -> 1458[label="",style="solid", color="blue", weight=3]; 3348[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3348[label="",style="solid", color="blue", weight=9]; 3348 -> 1459[label="",style="solid", color="blue", weight=3]; 3349[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3349[label="",style="solid", color="blue", weight=9]; 3349 -> 1460[label="",style="solid", color="blue", weight=3]; 3350[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3350[label="",style="solid", color="blue", weight=9]; 3350 -> 1461[label="",style="solid", color="blue", weight=3]; 3351[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3351[label="",style="solid", color="blue", weight=9]; 3351 -> 1462[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"];1439 -> 3352[label="",style="solid", color="blue", weight=9]; 3352 -> 1463[label="",style="solid", color="blue", weight=3]; 3353[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3353[label="",style="solid", color="blue", weight=9]; 3353 -> 1464[label="",style="solid", color="blue", weight=3]; 3354[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3354[label="",style="solid", color="blue", weight=9]; 3354 -> 1465[label="",style="solid", color="blue", weight=3]; 3355[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1439 -> 3355[label="",style="solid", color="blue", weight=9]; 3355 -> 1466[label="",style="solid", color="blue", weight=3]; 1440 -> 970[label="",style="dashed", color="red", weight=0]; 1440[label="vyw80 == vyw83 && (vyw81 < vyw84 || vyw81 == vyw84 && vyw82 <= vyw85)",fontsize=16,color="magenta"];1440 -> 1467[label="",style="dashed", color="magenta", weight=3]; 1440 -> 1468[label="",style="dashed", color="magenta", weight=3]; 1441[label="vyw80",fontsize=16,color="green",shape="box"];1442[label="vyw84",fontsize=16,color="green",shape="box"];1443[label="vyw82",fontsize=16,color="green",shape="box"];1444[label="vyw81",fontsize=16,color="green",shape="box"];1436[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) (vyw169 || vyw170)",fontsize=16,color="burlywood",shape="triangle"];3356[label="vyw169/False",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3356[label="",style="solid", color="burlywood", weight=9]; 3356 -> 1469[label="",style="solid", color="burlywood", weight=3]; 3357[label="vyw169/True",fontsize=10,color="white",style="solid",shape="box"];1436 -> 3357[label="",style="solid", color="burlywood", weight=9]; 3357 -> 1470[label="",style="solid", color="burlywood", weight=3]; 1284[label="primMulNat (Succ vyw40000) vyw310",fontsize=16,color="burlywood",shape="box"];3358[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1284 -> 3358[label="",style="solid", color="burlywood", weight=9]; 3358 -> 1471[label="",style="solid", color="burlywood", weight=3]; 3359[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1284 -> 3359[label="",style="solid", color="burlywood", weight=9]; 3359 -> 1472[label="",style="solid", color="burlywood", weight=3]; 1285[label="primMulNat Zero vyw310",fontsize=16,color="burlywood",shape="box"];3360[label="vyw310/Succ vyw3100",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3360[label="",style="solid", color="burlywood", weight=9]; 3360 -> 1473[label="",style="solid", color="burlywood", weight=3]; 3361[label="vyw310/Zero",fontsize=10,color="white",style="solid",shape="box"];1285 -> 3361[label="",style="solid", color="burlywood", weight=9]; 3361 -> 1474[label="",style="solid", color="burlywood", weight=3]; 1286[label="vyw310",fontsize=16,color="green",shape="box"];1287[label="vyw4000",fontsize=16,color="green",shape="box"];1288[label="vyw310",fontsize=16,color="green",shape="box"];1289[label="vyw4000",fontsize=16,color="green",shape="box"];1290[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3362[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3362[label="",style="solid", color="blue", weight=9]; 3362 -> 1475[label="",style="solid", color="blue", weight=3]; 3363[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1290 -> 3363[label="",style="solid", color="blue", weight=9]; 3363 -> 1476[label="",style="solid", color="blue", weight=3]; 1291[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3364[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3364[label="",style="solid", color="blue", weight=9]; 3364 -> 1477[label="",style="solid", color="blue", weight=3]; 3365[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1291 -> 3365[label="",style="solid", color="blue", weight=9]; 3365 -> 1478[label="",style="solid", color="blue", weight=3]; 1292 -> 487[label="",style="dashed", color="red", weight=0]; 1292[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1292 -> 1479[label="",style="dashed", color="magenta", weight=3]; 1292 -> 1480[label="",style="dashed", color="magenta", weight=3]; 1293 -> 488[label="",style="dashed", color="red", weight=0]; 1293[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1293 -> 1481[label="",style="dashed", color="magenta", weight=3]; 1293 -> 1482[label="",style="dashed", color="magenta", weight=3]; 1294 -> 489[label="",style="dashed", color="red", weight=0]; 1294[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1294 -> 1483[label="",style="dashed", color="magenta", weight=3]; 1294 -> 1484[label="",style="dashed", color="magenta", weight=3]; 1295 -> 490[label="",style="dashed", color="red", weight=0]; 1295[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1295 -> 1485[label="",style="dashed", color="magenta", weight=3]; 1295 -> 1486[label="",style="dashed", color="magenta", weight=3]; 1296 -> 491[label="",style="dashed", color="red", weight=0]; 1296[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1296 -> 1487[label="",style="dashed", color="magenta", weight=3]; 1296 -> 1488[label="",style="dashed", color="magenta", weight=3]; 1297 -> 492[label="",style="dashed", color="red", weight=0]; 1297[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1297 -> 1489[label="",style="dashed", color="magenta", weight=3]; 1297 -> 1490[label="",style="dashed", color="magenta", weight=3]; 1298 -> 493[label="",style="dashed", color="red", weight=0]; 1298[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1298 -> 1491[label="",style="dashed", color="magenta", weight=3]; 1298 -> 1492[label="",style="dashed", color="magenta", weight=3]; 1299 -> 494[label="",style="dashed", color="red", weight=0]; 1299[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1299 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1299 -> 1494[label="",style="dashed", color="magenta", weight=3]; 1300 -> 495[label="",style="dashed", color="red", weight=0]; 1300[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1300 -> 1495[label="",style="dashed", color="magenta", weight=3]; 1300 -> 1496[label="",style="dashed", color="magenta", weight=3]; 1301 -> 496[label="",style="dashed", color="red", weight=0]; 1301[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1301 -> 1497[label="",style="dashed", color="magenta", weight=3]; 1301 -> 1498[label="",style="dashed", color="magenta", weight=3]; 1302 -> 497[label="",style="dashed", color="red", weight=0]; 1302[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1302 -> 1499[label="",style="dashed", color="magenta", weight=3]; 1302 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1303 -> 498[label="",style="dashed", color="red", weight=0]; 1303[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1303 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1303 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1304 -> 499[label="",style="dashed", color="red", weight=0]; 1304[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1304 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1304 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1305 -> 500[label="",style="dashed", color="red", weight=0]; 1305[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1305 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1305 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1306 -> 487[label="",style="dashed", color="red", weight=0]; 1306[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1306 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1306 -> 1508[label="",style="dashed", color="magenta", weight=3]; 1307 -> 488[label="",style="dashed", color="red", weight=0]; 1307[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1307 -> 1509[label="",style="dashed", color="magenta", weight=3]; 1307 -> 1510[label="",style="dashed", color="magenta", weight=3]; 1308 -> 489[label="",style="dashed", color="red", weight=0]; 1308[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1308 -> 1511[label="",style="dashed", color="magenta", weight=3]; 1308 -> 1512[label="",style="dashed", color="magenta", weight=3]; 1309 -> 490[label="",style="dashed", color="red", weight=0]; 1309[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1309 -> 1513[label="",style="dashed", color="magenta", weight=3]; 1309 -> 1514[label="",style="dashed", color="magenta", weight=3]; 1310 -> 491[label="",style="dashed", color="red", weight=0]; 1310[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1310 -> 1515[label="",style="dashed", color="magenta", weight=3]; 1310 -> 1516[label="",style="dashed", color="magenta", weight=3]; 1311 -> 492[label="",style="dashed", color="red", weight=0]; 1311[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1311 -> 1517[label="",style="dashed", color="magenta", weight=3]; 1311 -> 1518[label="",style="dashed", color="magenta", weight=3]; 1312 -> 493[label="",style="dashed", color="red", weight=0]; 1312[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1312 -> 1519[label="",style="dashed", color="magenta", weight=3]; 1312 -> 1520[label="",style="dashed", color="magenta", weight=3]; 1313 -> 494[label="",style="dashed", color="red", weight=0]; 1313[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1313 -> 1521[label="",style="dashed", color="magenta", weight=3]; 1313 -> 1522[label="",style="dashed", color="magenta", weight=3]; 1314 -> 495[label="",style="dashed", color="red", weight=0]; 1314[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1314 -> 1523[label="",style="dashed", color="magenta", weight=3]; 1314 -> 1524[label="",style="dashed", color="magenta", weight=3]; 1315 -> 496[label="",style="dashed", color="red", weight=0]; 1315[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1315 -> 1525[label="",style="dashed", color="magenta", weight=3]; 1315 -> 1526[label="",style="dashed", color="magenta", weight=3]; 1316 -> 497[label="",style="dashed", color="red", weight=0]; 1316[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1316 -> 1527[label="",style="dashed", color="magenta", weight=3]; 1316 -> 1528[label="",style="dashed", color="magenta", weight=3]; 1317 -> 498[label="",style="dashed", color="red", weight=0]; 1317[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1317 -> 1529[label="",style="dashed", color="magenta", weight=3]; 1317 -> 1530[label="",style="dashed", color="magenta", weight=3]; 1318 -> 499[label="",style="dashed", color="red", weight=0]; 1318[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1318 -> 1531[label="",style="dashed", color="magenta", weight=3]; 1318 -> 1532[label="",style="dashed", color="magenta", weight=3]; 1319 -> 500[label="",style="dashed", color="red", weight=0]; 1319[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1319 -> 1533[label="",style="dashed", color="magenta", weight=3]; 1319 -> 1534[label="",style="dashed", color="magenta", weight=3]; 1320[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3366[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3366[label="",style="solid", color="burlywood", weight=9]; 3366 -> 1535[label="",style="solid", color="burlywood", weight=3]; 3367[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];1320 -> 3367[label="",style="solid", color="burlywood", weight=9]; 3367 -> 1536[label="",style="solid", color="burlywood", weight=3]; 1321[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3368[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3368[label="",style="solid", color="blue", weight=9]; 3368 -> 1537[label="",style="solid", color="blue", weight=3]; 3369[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3369[label="",style="solid", color="blue", weight=9]; 3369 -> 1538[label="",style="solid", color="blue", weight=3]; 3370[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3370[label="",style="solid", color="blue", weight=9]; 3370 -> 1539[label="",style="solid", color="blue", weight=3]; 3371[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3371[label="",style="solid", color="blue", weight=9]; 3371 -> 1540[label="",style="solid", color="blue", weight=3]; 3372[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3372[label="",style="solid", color="blue", weight=9]; 3372 -> 1541[label="",style="solid", color="blue", weight=3]; 3373[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3373[label="",style="solid", color="blue", weight=9]; 3373 -> 1542[label="",style="solid", color="blue", weight=3]; 3374[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3374[label="",style="solid", color="blue", weight=9]; 3374 -> 1543[label="",style="solid", color="blue", weight=3]; 3375[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3375[label="",style="solid", color="blue", weight=9]; 3375 -> 1544[label="",style="solid", color="blue", weight=3]; 3376[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3376[label="",style="solid", color="blue", weight=9]; 3376 -> 1545[label="",style="solid", color="blue", weight=3]; 3377[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3377[label="",style="solid", color="blue", weight=9]; 3377 -> 1546[label="",style="solid", color="blue", weight=3]; 3378[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3378[label="",style="solid", color="blue", weight=9]; 3378 -> 1547[label="",style="solid", color="blue", weight=3]; 3379[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3379[label="",style="solid", color="blue", weight=9]; 3379 -> 1548[label="",style="solid", color="blue", weight=3]; 3380[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3380[label="",style="solid", color="blue", weight=9]; 3380 -> 1549[label="",style="solid", color="blue", weight=3]; 3381[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1321 -> 3381[label="",style="solid", color="blue", weight=9]; 3381 -> 1550[label="",style="solid", color="blue", weight=3]; 1322[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3382[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3382[label="",style="solid", color="blue", weight=9]; 3382 -> 1551[label="",style="solid", color="blue", weight=3]; 3383[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3383[label="",style="solid", color="blue", weight=9]; 3383 -> 1552[label="",style="solid", color="blue", weight=3]; 3384[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3384[label="",style="solid", color="blue", weight=9]; 3384 -> 1553[label="",style="solid", color="blue", weight=3]; 3385[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3385[label="",style="solid", color="blue", weight=9]; 3385 -> 1554[label="",style="solid", color="blue", weight=3]; 3386[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3386[label="",style="solid", color="blue", weight=9]; 3386 -> 1555[label="",style="solid", color="blue", weight=3]; 3387[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3387[label="",style="solid", color="blue", weight=9]; 3387 -> 1556[label="",style="solid", color="blue", weight=3]; 3388[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3388[label="",style="solid", color="blue", weight=9]; 3388 -> 1557[label="",style="solid", color="blue", weight=3]; 3389[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3389[label="",style="solid", color="blue", weight=9]; 3389 -> 1558[label="",style="solid", color="blue", weight=3]; 3390[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3390[label="",style="solid", color="blue", weight=9]; 3390 -> 1559[label="",style="solid", color="blue", weight=3]; 3391[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3391[label="",style="solid", color="blue", weight=9]; 3391 -> 1560[label="",style="solid", color="blue", weight=3]; 3392[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3392[label="",style="solid", color="blue", weight=9]; 3392 -> 1561[label="",style="solid", color="blue", weight=3]; 3393[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3393[label="",style="solid", color="blue", weight=9]; 3393 -> 1562[label="",style="solid", color="blue", weight=3]; 3394[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3394[label="",style="solid", color="blue", weight=9]; 3394 -> 1563[label="",style="solid", color="blue", weight=3]; 3395[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1322 -> 3395[label="",style="solid", color="blue", weight=9]; 3395 -> 1564[label="",style="solid", color="blue", weight=3]; 1323[label="vyw4000",fontsize=16,color="green",shape="box"];1324[label="vyw300",fontsize=16,color="green",shape="box"];1325 -> 487[label="",style="dashed", color="red", weight=0]; 1325[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1325 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1325 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1326 -> 488[label="",style="dashed", color="red", weight=0]; 1326[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1326 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1326 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1327 -> 489[label="",style="dashed", color="red", weight=0]; 1327[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1327 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1327 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1328 -> 490[label="",style="dashed", color="red", weight=0]; 1328[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1328 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1328 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1329 -> 491[label="",style="dashed", color="red", weight=0]; 1329[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1329 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1329 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1330 -> 492[label="",style="dashed", color="red", weight=0]; 1330[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1330 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1330 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1331 -> 493[label="",style="dashed", color="red", weight=0]; 1331[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1331 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1331 -> 1578[label="",style="dashed", color="magenta", weight=3]; 1332 -> 494[label="",style="dashed", color="red", weight=0]; 1332[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1332 -> 1579[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1580[label="",style="dashed", color="magenta", weight=3]; 1333 -> 495[label="",style="dashed", color="red", weight=0]; 1333[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1333 -> 1581[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1582[label="",style="dashed", color="magenta", weight=3]; 1334 -> 496[label="",style="dashed", color="red", weight=0]; 1334[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1334 -> 1583[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1584[label="",style="dashed", color="magenta", weight=3]; 1335 -> 497[label="",style="dashed", color="red", weight=0]; 1335[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1335 -> 1585[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1586[label="",style="dashed", color="magenta", weight=3]; 1336 -> 498[label="",style="dashed", color="red", weight=0]; 1336[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1336 -> 1587[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1588[label="",style="dashed", color="magenta", weight=3]; 1337 -> 499[label="",style="dashed", color="red", weight=0]; 1337[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1337 -> 1589[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1590[label="",style="dashed", color="magenta", weight=3]; 1338 -> 500[label="",style="dashed", color="red", weight=0]; 1338[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1338 -> 1591[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1592[label="",style="dashed", color="magenta", weight=3]; 1339 -> 495[label="",style="dashed", color="red", weight=0]; 1339[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1339 -> 1593[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1594[label="",style="dashed", color="magenta", weight=3]; 1340[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3396[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3396[label="",style="solid", color="blue", weight=9]; 3396 -> 1595[label="",style="solid", color="blue", weight=3]; 3397[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3397[label="",style="solid", color="blue", weight=9]; 3397 -> 1596[label="",style="solid", color="blue", weight=3]; 3398[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3398[label="",style="solid", color="blue", weight=9]; 3398 -> 1597[label="",style="solid", color="blue", weight=3]; 3399[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3399[label="",style="solid", color="blue", weight=9]; 3399 -> 1598[label="",style="solid", color="blue", weight=3]; 3400[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3400[label="",style="solid", color="blue", weight=9]; 3400 -> 1599[label="",style="solid", color="blue", weight=3]; 3401[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3401[label="",style="solid", color="blue", weight=9]; 3401 -> 1600[label="",style="solid", color="blue", weight=3]; 3402[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3402[label="",style="solid", color="blue", weight=9]; 3402 -> 1601[label="",style="solid", color="blue", weight=3]; 3403[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3403[label="",style="solid", color="blue", weight=9]; 3403 -> 1602[label="",style="solid", color="blue", weight=3]; 3404[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3404[label="",style="solid", color="blue", weight=9]; 3404 -> 1603[label="",style="solid", color="blue", weight=3]; 3405[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3405[label="",style="solid", color="blue", weight=9]; 3405 -> 1604[label="",style="solid", color="blue", weight=3]; 3406[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3406[label="",style="solid", color="blue", weight=9]; 3406 -> 1605[label="",style="solid", color="blue", weight=3]; 3407[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3407[label="",style="solid", color="blue", weight=9]; 3407 -> 1606[label="",style="solid", color="blue", weight=3]; 3408[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3408[label="",style="solid", color="blue", weight=9]; 3408 -> 1607[label="",style="solid", color="blue", weight=3]; 3409[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1340 -> 3409[label="",style="solid", color="blue", weight=9]; 3409 -> 1608[label="",style="solid", color="blue", weight=3]; 1341 -> 970[label="",style="dashed", color="red", weight=0]; 1341[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];1341 -> 1609[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1610[label="",style="dashed", color="magenta", weight=3]; 1342[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3410[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3410[label="",style="solid", color="blue", weight=9]; 3410 -> 1611[label="",style="solid", color="blue", weight=3]; 3411[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3411[label="",style="solid", color="blue", weight=9]; 3411 -> 1612[label="",style="solid", color="blue", weight=3]; 3412[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3412[label="",style="solid", color="blue", weight=9]; 3412 -> 1613[label="",style="solid", color="blue", weight=3]; 3413[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3413[label="",style="solid", color="blue", weight=9]; 3413 -> 1614[label="",style="solid", color="blue", weight=3]; 3414[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3414[label="",style="solid", color="blue", weight=9]; 3414 -> 1615[label="",style="solid", color="blue", weight=3]; 3415[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3415[label="",style="solid", color="blue", weight=9]; 3415 -> 1616[label="",style="solid", color="blue", weight=3]; 3416[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3416[label="",style="solid", color="blue", weight=9]; 3416 -> 1617[label="",style="solid", color="blue", weight=3]; 3417[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3417[label="",style="solid", color="blue", weight=9]; 3417 -> 1618[label="",style="solid", color="blue", weight=3]; 3418[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3418[label="",style="solid", color="blue", weight=9]; 3418 -> 1619[label="",style="solid", color="blue", weight=3]; 3419[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3419[label="",style="solid", color="blue", weight=9]; 3419 -> 1620[label="",style="solid", color="blue", weight=3]; 3420[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3420[label="",style="solid", color="blue", weight=9]; 3420 -> 1621[label="",style="solid", color="blue", weight=3]; 3421[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3421[label="",style="solid", color="blue", weight=9]; 3421 -> 1622[label="",style="solid", color="blue", weight=3]; 3422[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3422[label="",style="solid", color="blue", weight=9]; 3422 -> 1623[label="",style="solid", color="blue", weight=3]; 3423[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1342 -> 3423[label="",style="solid", color="blue", weight=9]; 3423 -> 1624[label="",style="solid", color="blue", weight=3]; 1343[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3424[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3424[label="",style="solid", color="burlywood", weight=9]; 3424 -> 1625[label="",style="solid", color="burlywood", weight=3]; 3425[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1343 -> 3425[label="",style="solid", color="burlywood", weight=9]; 3425 -> 1626[label="",style="solid", color="burlywood", weight=3]; 1344[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];1344 -> 1627[label="",style="solid", color="black", weight=3]; 1345[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3426[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1345 -> 3426[label="",style="solid", color="burlywood", weight=9]; 3426 -> 1628[label="",style="solid", color="burlywood", weight=3]; 3427[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1345 -> 3427[label="",style="solid", color="burlywood", weight=9]; 3427 -> 1629[label="",style="solid", color="burlywood", weight=3]; 1346[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3428[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3428[label="",style="solid", color="burlywood", weight=9]; 3428 -> 1630[label="",style="solid", color="burlywood", weight=3]; 3429[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1346 -> 3429[label="",style="solid", color="burlywood", weight=9]; 3429 -> 1631[label="",style="solid", color="burlywood", weight=3]; 1347[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];1347 -> 1632[label="",style="solid", color="black", weight=3]; 1348[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3430[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3430[label="",style="solid", color="burlywood", weight=9]; 3430 -> 1633[label="",style="solid", color="burlywood", weight=3]; 3431[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1348 -> 3431[label="",style="solid", color="burlywood", weight=9]; 3431 -> 1634[label="",style="solid", color="burlywood", weight=3]; 1349[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3432[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3432[label="",style="solid", color="burlywood", weight=9]; 3432 -> 1635[label="",style="solid", color="burlywood", weight=3]; 3433[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1349 -> 3433[label="",style="solid", color="burlywood", weight=9]; 3433 -> 1636[label="",style="solid", color="burlywood", weight=3]; 1350[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3434[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3434[label="",style="solid", color="burlywood", weight=9]; 3434 -> 1637[label="",style="solid", color="burlywood", weight=3]; 3435[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1350 -> 3435[label="",style="solid", color="burlywood", weight=9]; 3435 -> 1638[label="",style="solid", color="burlywood", weight=3]; 1351 -> 498[label="",style="dashed", color="red", weight=0]; 1351[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1351 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1640[label="",style="dashed", color="magenta", weight=3]; 1352 -> 498[label="",style="dashed", color="red", weight=0]; 1352[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];1352 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1353[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1353 -> 1643[label="",style="solid", color="black", weight=3]; 1354[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1354 -> 1644[label="",style="solid", color="black", weight=3]; 1355[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3436[label="vyw44/Left vyw440",fontsize=10,color="white",style="solid",shape="box"];1355 -> 3436[label="",style="solid", color="burlywood", weight=9]; 3436 -> 1645[label="",style="solid", color="burlywood", weight=3]; 3437[label="vyw44/Right vyw440",fontsize=10,color="white",style="solid",shape="box"];1355 -> 3437[label="",style="solid", color="burlywood", weight=9]; 3437 -> 1646[label="",style="solid", color="burlywood", weight=3]; 1356[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3438[label="vyw44/Nothing",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3438[label="",style="solid", color="burlywood", weight=9]; 3438 -> 1647[label="",style="solid", color="burlywood", weight=3]; 3439[label="vyw44/Just vyw440",fontsize=10,color="white",style="solid",shape="box"];1356 -> 3439[label="",style="solid", color="burlywood", weight=9]; 3439 -> 1648[label="",style="solid", color="burlywood", weight=3]; 1357[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3440[label="vyw44/LT",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3440[label="",style="solid", color="burlywood", weight=9]; 3440 -> 1649[label="",style="solid", color="burlywood", weight=3]; 3441[label="vyw44/EQ",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3441[label="",style="solid", color="burlywood", weight=9]; 3441 -> 1650[label="",style="solid", color="burlywood", weight=3]; 3442[label="vyw44/GT",fontsize=10,color="white",style="solid",shape="box"];1357 -> 3442[label="",style="solid", color="burlywood", weight=9]; 3442 -> 1651[label="",style="solid", color="burlywood", weight=3]; 1358[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3443[label="vyw44/False",fontsize=10,color="white",style="solid",shape="box"];1358 -> 3443[label="",style="solid", color="burlywood", weight=9]; 3443 -> 1652[label="",style="solid", color="burlywood", weight=3]; 3444[label="vyw44/True",fontsize=10,color="white",style="solid",shape="box"];1358 -> 3444[label="",style="solid", color="burlywood", weight=9]; 3444 -> 1653[label="",style="solid", color="burlywood", weight=3]; 1359[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1359 -> 1654[label="",style="solid", color="black", weight=3]; 1360[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1360 -> 1655[label="",style="solid", color="black", weight=3]; 1361[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1361 -> 1656[label="",style="solid", color="black", weight=3]; 1362[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3445[label="vyw44/(vyw440,vyw441)",fontsize=10,color="white",style="solid",shape="box"];1362 -> 3445[label="",style="solid", color="burlywood", weight=9]; 3445 -> 1657[label="",style="solid", color="burlywood", weight=3]; 1363[label="vyw44 <= vyw45",fontsize=16,color="burlywood",shape="triangle"];3446[label="vyw44/(vyw440,vyw441,vyw442)",fontsize=10,color="white",style="solid",shape="box"];1363 -> 3446[label="",style="solid", color="burlywood", weight=9]; 3446 -> 1658[label="",style="solid", color="burlywood", weight=3]; 1364[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1364 -> 1659[label="",style="solid", color="black", weight=3]; 1365[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1365 -> 1660[label="",style="solid", color="black", weight=3]; 1366[label="vyw44 <= vyw45",fontsize=16,color="black",shape="triangle"];1366 -> 1661[label="",style="solid", color="black", weight=3]; 1367[label="compare0 (Left vyw121) (Left vyw122) otherwise",fontsize=16,color="black",shape="box"];1367 -> 1662[label="",style="solid", color="black", weight=3]; 1368[label="LT",fontsize=16,color="green",shape="box"];1369 -> 1353[label="",style="dashed", color="red", weight=0]; 1369[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1369 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1369 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1354[label="",style="dashed", color="red", weight=0]; 1370[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1370 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1370 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1355[label="",style="dashed", color="red", weight=0]; 1371[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1371 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1371 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1356[label="",style="dashed", color="red", weight=0]; 1372[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1372 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1372 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1357[label="",style="dashed", color="red", weight=0]; 1373[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1373 -> 1671[label="",style="dashed", color="magenta", weight=3]; 1373 -> 1672[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1358[label="",style="dashed", color="red", weight=0]; 1374[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1374 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1374 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1359[label="",style="dashed", color="red", weight=0]; 1375[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1375 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1375 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1360[label="",style="dashed", color="red", weight=0]; 1376[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1376 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1376 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1361[label="",style="dashed", color="red", weight=0]; 1377[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1377 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1377 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1362[label="",style="dashed", color="red", weight=0]; 1378[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1378 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1378 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1363[label="",style="dashed", color="red", weight=0]; 1379[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1379 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1379 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1364[label="",style="dashed", color="red", weight=0]; 1380[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1380 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1380 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1365[label="",style="dashed", color="red", weight=0]; 1381[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1381 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1381 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1366[label="",style="dashed", color="red", weight=0]; 1382[label="vyw51 <= vyw52",fontsize=16,color="magenta"];1382 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1382 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1383[label="compare0 (Right vyw128) (Right vyw129) otherwise",fontsize=16,color="black",shape="box"];1383 -> 1691[label="",style="solid", color="black", weight=3]; 1384[label="LT",fontsize=16,color="green",shape="box"];1385 -> 1353[label="",style="dashed", color="red", weight=0]; 1385[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1385 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1385 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1354[label="",style="dashed", color="red", weight=0]; 1386[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1386 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1386 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1355[label="",style="dashed", color="red", weight=0]; 1387[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1387 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1387 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1356[label="",style="dashed", color="red", weight=0]; 1388[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1388 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1388 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1357[label="",style="dashed", color="red", weight=0]; 1389[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1389 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1389 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1358[label="",style="dashed", color="red", weight=0]; 1390[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1390 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1390 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1359[label="",style="dashed", color="red", weight=0]; 1391[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1391 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1391 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1360[label="",style="dashed", color="red", weight=0]; 1392[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1392 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1392 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1361[label="",style="dashed", color="red", weight=0]; 1393[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1393 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1393 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1362[label="",style="dashed", color="red", weight=0]; 1394[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1394 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1394 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1363[label="",style="dashed", color="red", weight=0]; 1395[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1395 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1395 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1364[label="",style="dashed", color="red", weight=0]; 1396[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1396 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1396 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1365[label="",style="dashed", color="red", weight=0]; 1397[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1397 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1397 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1366[label="",style="dashed", color="red", weight=0]; 1398[label="vyw58 <= vyw59",fontsize=16,color="magenta"];1398 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1398 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1399[label="compare0 (Just vyw135) (Just vyw136) otherwise",fontsize=16,color="black",shape="box"];1399 -> 1720[label="",style="solid", color="black", weight=3]; 1400[label="LT",fontsize=16,color="green",shape="box"];1416[label="vyw99 <= vyw101",fontsize=16,color="blue",shape="box"];3447[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3447[label="",style="solid", color="blue", weight=9]; 3447 -> 1721[label="",style="solid", color="blue", weight=3]; 3448[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3448[label="",style="solid", color="blue", weight=9]; 3448 -> 1722[label="",style="solid", color="blue", weight=3]; 3449[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3449[label="",style="solid", color="blue", weight=9]; 3449 -> 1723[label="",style="solid", color="blue", weight=3]; 3450[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3450[label="",style="solid", color="blue", weight=9]; 3450 -> 1724[label="",style="solid", color="blue", weight=3]; 3451[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3451[label="",style="solid", color="blue", weight=9]; 3451 -> 1725[label="",style="solid", color="blue", weight=3]; 3452[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3452[label="",style="solid", color="blue", weight=9]; 3452 -> 1726[label="",style="solid", color="blue", weight=3]; 3453[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3453[label="",style="solid", color="blue", weight=9]; 3453 -> 1727[label="",style="solid", color="blue", weight=3]; 3454[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3454[label="",style="solid", color="blue", weight=9]; 3454 -> 1728[label="",style="solid", color="blue", weight=3]; 3455[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3455[label="",style="solid", color="blue", weight=9]; 3455 -> 1729[label="",style="solid", color="blue", weight=3]; 3456[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3456[label="",style="solid", color="blue", weight=9]; 3456 -> 1730[label="",style="solid", color="blue", weight=3]; 3457[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3457[label="",style="solid", color="blue", weight=9]; 3457 -> 1731[label="",style="solid", color="blue", weight=3]; 3458[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3458[label="",style="solid", color="blue", weight=9]; 3458 -> 1732[label="",style="solid", color="blue", weight=3]; 3459[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3459[label="",style="solid", color="blue", weight=9]; 3459 -> 1733[label="",style="solid", color="blue", weight=3]; 3460[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1416 -> 3460[label="",style="solid", color="blue", weight=9]; 3460 -> 1734[label="",style="solid", color="blue", weight=3]; 1417[label="vyw98 == vyw100",fontsize=16,color="blue",shape="box"];3461[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3461[label="",style="solid", color="blue", weight=9]; 3461 -> 1735[label="",style="solid", color="blue", weight=3]; 3462[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3462[label="",style="solid", color="blue", weight=9]; 3462 -> 1736[label="",style="solid", color="blue", weight=3]; 3463[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3463[label="",style="solid", color="blue", weight=9]; 3463 -> 1737[label="",style="solid", color="blue", weight=3]; 3464[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3464[label="",style="solid", color="blue", weight=9]; 3464 -> 1738[label="",style="solid", color="blue", weight=3]; 3465[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3465[label="",style="solid", color="blue", weight=9]; 3465 -> 1739[label="",style="solid", color="blue", weight=3]; 3466[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3466[label="",style="solid", color="blue", weight=9]; 3466 -> 1740[label="",style="solid", color="blue", weight=3]; 3467[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3467[label="",style="solid", color="blue", weight=9]; 3467 -> 1741[label="",style="solid", color="blue", weight=3]; 3468[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3468[label="",style="solid", color="blue", weight=9]; 3468 -> 1742[label="",style="solid", color="blue", weight=3]; 3469[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3469[label="",style="solid", color="blue", weight=9]; 3469 -> 1743[label="",style="solid", color="blue", weight=3]; 3470[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3470[label="",style="solid", color="blue", weight=9]; 3470 -> 1744[label="",style="solid", color="blue", weight=3]; 3471[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3471[label="",style="solid", color="blue", weight=9]; 3471 -> 1745[label="",style="solid", color="blue", weight=3]; 3472[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3472[label="",style="solid", color="blue", weight=9]; 3472 -> 1746[label="",style="solid", color="blue", weight=3]; 3473[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3473[label="",style="solid", color="blue", weight=9]; 3473 -> 1747[label="",style="solid", color="blue", weight=3]; 3474[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1417 -> 3474[label="",style="solid", color="blue", weight=9]; 3474 -> 1748[label="",style="solid", color="blue", weight=3]; 1418 -> 21[label="",style="dashed", color="red", weight=0]; 1418[label="vyw98 < vyw100",fontsize=16,color="magenta"];1418 -> 1749[label="",style="dashed", color="magenta", weight=3]; 1418 -> 1750[label="",style="dashed", color="magenta", weight=3]; 1419 -> 22[label="",style="dashed", color="red", weight=0]; 1419[label="vyw98 < vyw100",fontsize=16,color="magenta"];1419 -> 1751[label="",style="dashed", color="magenta", weight=3]; 1419 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1420 -> 23[label="",style="dashed", color="red", weight=0]; 1420[label="vyw98 < vyw100",fontsize=16,color="magenta"];1420 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1420 -> 1754[label="",style="dashed", color="magenta", weight=3]; 1421 -> 24[label="",style="dashed", color="red", weight=0]; 1421[label="vyw98 < vyw100",fontsize=16,color="magenta"];1421 -> 1755[label="",style="dashed", color="magenta", weight=3]; 1421 -> 1756[label="",style="dashed", color="magenta", weight=3]; 1422 -> 25[label="",style="dashed", color="red", weight=0]; 1422[label="vyw98 < vyw100",fontsize=16,color="magenta"];1422 -> 1757[label="",style="dashed", color="magenta", weight=3]; 1422 -> 1758[label="",style="dashed", color="magenta", weight=3]; 1423 -> 26[label="",style="dashed", color="red", weight=0]; 1423[label="vyw98 < vyw100",fontsize=16,color="magenta"];1423 -> 1759[label="",style="dashed", color="magenta", weight=3]; 1423 -> 1760[label="",style="dashed", color="magenta", weight=3]; 1424 -> 27[label="",style="dashed", color="red", weight=0]; 1424[label="vyw98 < vyw100",fontsize=16,color="magenta"];1424 -> 1761[label="",style="dashed", color="magenta", weight=3]; 1424 -> 1762[label="",style="dashed", color="magenta", weight=3]; 1425 -> 28[label="",style="dashed", color="red", weight=0]; 1425[label="vyw98 < vyw100",fontsize=16,color="magenta"];1425 -> 1763[label="",style="dashed", color="magenta", weight=3]; 1425 -> 1764[label="",style="dashed", color="magenta", weight=3]; 1426 -> 29[label="",style="dashed", color="red", weight=0]; 1426[label="vyw98 < vyw100",fontsize=16,color="magenta"];1426 -> 1765[label="",style="dashed", color="magenta", weight=3]; 1426 -> 1766[label="",style="dashed", color="magenta", weight=3]; 1427 -> 30[label="",style="dashed", color="red", weight=0]; 1427[label="vyw98 < vyw100",fontsize=16,color="magenta"];1427 -> 1767[label="",style="dashed", color="magenta", weight=3]; 1427 -> 1768[label="",style="dashed", color="magenta", weight=3]; 1428 -> 31[label="",style="dashed", color="red", weight=0]; 1428[label="vyw98 < vyw100",fontsize=16,color="magenta"];1428 -> 1769[label="",style="dashed", color="magenta", weight=3]; 1428 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1429 -> 32[label="",style="dashed", color="red", weight=0]; 1429[label="vyw98 < vyw100",fontsize=16,color="magenta"];1429 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1429 -> 1772[label="",style="dashed", color="magenta", weight=3]; 1430 -> 33[label="",style="dashed", color="red", weight=0]; 1430[label="vyw98 < vyw100",fontsize=16,color="magenta"];1430 -> 1773[label="",style="dashed", color="magenta", weight=3]; 1430 -> 1774[label="",style="dashed", color="magenta", weight=3]; 1431 -> 34[label="",style="dashed", color="red", weight=0]; 1431[label="vyw98 < vyw100",fontsize=16,color="magenta"];1431 -> 1775[label="",style="dashed", color="magenta", weight=3]; 1431 -> 1776[label="",style="dashed", color="magenta", weight=3]; 1432[label="compare1 (vyw148,vyw149) (vyw150,vyw151) (False || vyw153)",fontsize=16,color="black",shape="box"];1432 -> 1777[label="",style="solid", color="black", weight=3]; 1433[label="compare1 (vyw148,vyw149) (vyw150,vyw151) (True || vyw153)",fontsize=16,color="black",shape="box"];1433 -> 1778[label="",style="solid", color="black", weight=3]; 1453 -> 21[label="",style="dashed", color="red", weight=0]; 1453[label="vyw80 < vyw83",fontsize=16,color="magenta"];1453 -> 1779[label="",style="dashed", color="magenta", weight=3]; 1453 -> 1780[label="",style="dashed", color="magenta", weight=3]; 1454 -> 22[label="",style="dashed", color="red", weight=0]; 1454[label="vyw80 < vyw83",fontsize=16,color="magenta"];1454 -> 1781[label="",style="dashed", color="magenta", weight=3]; 1454 -> 1782[label="",style="dashed", color="magenta", weight=3]; 1455 -> 23[label="",style="dashed", color="red", weight=0]; 1455[label="vyw80 < vyw83",fontsize=16,color="magenta"];1455 -> 1783[label="",style="dashed", color="magenta", weight=3]; 1455 -> 1784[label="",style="dashed", color="magenta", weight=3]; 1456 -> 24[label="",style="dashed", color="red", weight=0]; 1456[label="vyw80 < vyw83",fontsize=16,color="magenta"];1456 -> 1785[label="",style="dashed", color="magenta", weight=3]; 1456 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1457 -> 25[label="",style="dashed", color="red", weight=0]; 1457[label="vyw80 < vyw83",fontsize=16,color="magenta"];1457 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1458 -> 26[label="",style="dashed", color="red", weight=0]; 1458[label="vyw80 < vyw83",fontsize=16,color="magenta"];1458 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1458 -> 1790[label="",style="dashed", color="magenta", weight=3]; 1459 -> 27[label="",style="dashed", color="red", weight=0]; 1459[label="vyw80 < vyw83",fontsize=16,color="magenta"];1459 -> 1791[label="",style="dashed", color="magenta", weight=3]; 1459 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1460 -> 28[label="",style="dashed", color="red", weight=0]; 1460[label="vyw80 < vyw83",fontsize=16,color="magenta"];1460 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1460 -> 1794[label="",style="dashed", color="magenta", weight=3]; 1461 -> 29[label="",style="dashed", color="red", weight=0]; 1461[label="vyw80 < vyw83",fontsize=16,color="magenta"];1461 -> 1795[label="",style="dashed", color="magenta", weight=3]; 1461 -> 1796[label="",style="dashed", color="magenta", weight=3]; 1462 -> 30[label="",style="dashed", color="red", weight=0]; 1462[label="vyw80 < vyw83",fontsize=16,color="magenta"];1462 -> 1797[label="",style="dashed", color="magenta", weight=3]; 1462 -> 1798[label="",style="dashed", color="magenta", weight=3]; 1463 -> 31[label="",style="dashed", color="red", weight=0]; 1463[label="vyw80 < vyw83",fontsize=16,color="magenta"];1463 -> 1799[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1800[label="",style="dashed", color="magenta", weight=3]; 1464 -> 32[label="",style="dashed", color="red", weight=0]; 1464[label="vyw80 < vyw83",fontsize=16,color="magenta"];1464 -> 1801[label="",style="dashed", color="magenta", weight=3]; 1464 -> 1802[label="",style="dashed", color="magenta", weight=3]; 1465 -> 33[label="",style="dashed", color="red", weight=0]; 1465[label="vyw80 < vyw83",fontsize=16,color="magenta"];1465 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1465 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1466 -> 34[label="",style="dashed", color="red", weight=0]; 1466[label="vyw80 < vyw83",fontsize=16,color="magenta"];1466 -> 1805[label="",style="dashed", color="magenta", weight=3]; 1466 -> 1806[label="",style="dashed", color="magenta", weight=3]; 1467 -> 2097[label="",style="dashed", color="red", weight=0]; 1467[label="vyw81 < vyw84 || vyw81 == vyw84 && vyw82 <= vyw85",fontsize=16,color="magenta"];1467 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1467 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1468[label="vyw80 == vyw83",fontsize=16,color="blue",shape="box"];3475[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3475[label="",style="solid", color="blue", weight=9]; 3475 -> 1809[label="",style="solid", color="blue", weight=3]; 3476[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3476[label="",style="solid", color="blue", weight=9]; 3476 -> 1810[label="",style="solid", color="blue", weight=3]; 3477[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3477[label="",style="solid", color="blue", weight=9]; 3477 -> 1811[label="",style="solid", color="blue", weight=3]; 3478[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3478[label="",style="solid", color="blue", weight=9]; 3478 -> 1812[label="",style="solid", color="blue", weight=3]; 3479[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3479[label="",style="solid", color="blue", weight=9]; 3479 -> 1813[label="",style="solid", color="blue", weight=3]; 3480[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3480[label="",style="solid", color="blue", weight=9]; 3480 -> 1814[label="",style="solid", color="blue", weight=3]; 3481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3481[label="",style="solid", color="blue", weight=9]; 3481 -> 1815[label="",style="solid", color="blue", weight=3]; 3482[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3482[label="",style="solid", color="blue", weight=9]; 3482 -> 1816[label="",style="solid", color="blue", weight=3]; 3483[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3483[label="",style="solid", color="blue", weight=9]; 3483 -> 1817[label="",style="solid", color="blue", weight=3]; 3484[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3484[label="",style="solid", color="blue", weight=9]; 3484 -> 1818[label="",style="solid", color="blue", weight=3]; 3485[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3485[label="",style="solid", color="blue", weight=9]; 3485 -> 1819[label="",style="solid", color="blue", weight=3]; 3486[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3486[label="",style="solid", color="blue", weight=9]; 3486 -> 1820[label="",style="solid", color="blue", weight=3]; 3487[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3487[label="",style="solid", color="blue", weight=9]; 3487 -> 1821[label="",style="solid", color="blue", weight=3]; 3488[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1468 -> 3488[label="",style="solid", color="blue", weight=9]; 3488 -> 1822[label="",style="solid", color="blue", weight=3]; 1469[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) (False || vyw170)",fontsize=16,color="black",shape="box"];1469 -> 1823[label="",style="solid", color="black", weight=3]; 1470[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) (True || vyw170)",fontsize=16,color="black",shape="box"];1470 -> 1824[label="",style="solid", color="black", weight=3]; 1471[label="primMulNat (Succ vyw40000) (Succ vyw3100)",fontsize=16,color="black",shape="box"];1471 -> 1825[label="",style="solid", color="black", weight=3]; 1472[label="primMulNat (Succ vyw40000) Zero",fontsize=16,color="black",shape="box"];1472 -> 1826[label="",style="solid", color="black", weight=3]; 1473[label="primMulNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];1473 -> 1827[label="",style="solid", color="black", weight=3]; 1474[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1474 -> 1828[label="",style="solid", color="black", weight=3]; 1475 -> 492[label="",style="dashed", color="red", weight=0]; 1475[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1475 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1475 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1476 -> 498[label="",style="dashed", color="red", weight=0]; 1476[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1476 -> 1831[label="",style="dashed", color="magenta", weight=3]; 1476 -> 1832[label="",style="dashed", color="magenta", weight=3]; 1477 -> 492[label="",style="dashed", color="red", weight=0]; 1477[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1477 -> 1833[label="",style="dashed", color="magenta", weight=3]; 1477 -> 1834[label="",style="dashed", color="magenta", weight=3]; 1478 -> 498[label="",style="dashed", color="red", weight=0]; 1478[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1478 -> 1835[label="",style="dashed", color="magenta", weight=3]; 1478 -> 1836[label="",style="dashed", color="magenta", weight=3]; 1479[label="vyw4000",fontsize=16,color="green",shape="box"];1480[label="vyw300",fontsize=16,color="green",shape="box"];1481[label="vyw4000",fontsize=16,color="green",shape="box"];1482[label="vyw300",fontsize=16,color="green",shape="box"];1483[label="vyw4000",fontsize=16,color="green",shape="box"];1484[label="vyw300",fontsize=16,color="green",shape="box"];1485[label="vyw4000",fontsize=16,color="green",shape="box"];1486[label="vyw300",fontsize=16,color="green",shape="box"];1487[label="vyw4000",fontsize=16,color="green",shape="box"];1488[label="vyw300",fontsize=16,color="green",shape="box"];1489[label="vyw4000",fontsize=16,color="green",shape="box"];1490[label="vyw300",fontsize=16,color="green",shape="box"];1491[label="vyw4000",fontsize=16,color="green",shape="box"];1492[label="vyw300",fontsize=16,color="green",shape="box"];1493[label="vyw4000",fontsize=16,color="green",shape="box"];1494[label="vyw300",fontsize=16,color="green",shape="box"];1495[label="vyw4000",fontsize=16,color="green",shape="box"];1496[label="vyw300",fontsize=16,color="green",shape="box"];1497[label="vyw4000",fontsize=16,color="green",shape="box"];1498[label="vyw300",fontsize=16,color="green",shape="box"];1499[label="vyw4000",fontsize=16,color="green",shape="box"];1500[label="vyw300",fontsize=16,color="green",shape="box"];1501[label="vyw4000",fontsize=16,color="green",shape="box"];1502[label="vyw300",fontsize=16,color="green",shape="box"];1503[label="vyw4000",fontsize=16,color="green",shape="box"];1504[label="vyw300",fontsize=16,color="green",shape="box"];1505[label="vyw4000",fontsize=16,color="green",shape="box"];1506[label="vyw300",fontsize=16,color="green",shape="box"];1507[label="vyw4000",fontsize=16,color="green",shape="box"];1508[label="vyw300",fontsize=16,color="green",shape="box"];1509[label="vyw4000",fontsize=16,color="green",shape="box"];1510[label="vyw300",fontsize=16,color="green",shape="box"];1511[label="vyw4000",fontsize=16,color="green",shape="box"];1512[label="vyw300",fontsize=16,color="green",shape="box"];1513[label="vyw4000",fontsize=16,color="green",shape="box"];1514[label="vyw300",fontsize=16,color="green",shape="box"];1515[label="vyw4000",fontsize=16,color="green",shape="box"];1516[label="vyw300",fontsize=16,color="green",shape="box"];1517[label="vyw4000",fontsize=16,color="green",shape="box"];1518[label="vyw300",fontsize=16,color="green",shape="box"];1519[label="vyw4000",fontsize=16,color="green",shape="box"];1520[label="vyw300",fontsize=16,color="green",shape="box"];1521[label="vyw4000",fontsize=16,color="green",shape="box"];1522[label="vyw300",fontsize=16,color="green",shape="box"];1523[label="vyw4000",fontsize=16,color="green",shape="box"];1524[label="vyw300",fontsize=16,color="green",shape="box"];1525[label="vyw4000",fontsize=16,color="green",shape="box"];1526[label="vyw300",fontsize=16,color="green",shape="box"];1527[label="vyw4000",fontsize=16,color="green",shape="box"];1528[label="vyw300",fontsize=16,color="green",shape="box"];1529[label="vyw4000",fontsize=16,color="green",shape="box"];1530[label="vyw300",fontsize=16,color="green",shape="box"];1531[label="vyw4000",fontsize=16,color="green",shape="box"];1532[label="vyw300",fontsize=16,color="green",shape="box"];1533[label="vyw4000",fontsize=16,color="green",shape="box"];1534[label="vyw300",fontsize=16,color="green",shape="box"];1535[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3489[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3489[label="",style="solid", color="burlywood", weight=9]; 3489 -> 1837[label="",style="solid", color="burlywood", weight=3]; 3490[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1535 -> 3490[label="",style="solid", color="burlywood", weight=9]; 3490 -> 1838[label="",style="solid", color="burlywood", weight=3]; 1536[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3491[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];1536 -> 3491[label="",style="solid", color="burlywood", weight=9]; 3491 -> 1839[label="",style="solid", color="burlywood", weight=3]; 3492[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];1536 -> 3492[label="",style="solid", color="burlywood", weight=9]; 3492 -> 1840[label="",style="solid", color="burlywood", weight=3]; 1537 -> 487[label="",style="dashed", color="red", weight=0]; 1537[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1537 -> 1841[label="",style="dashed", color="magenta", weight=3]; 1537 -> 1842[label="",style="dashed", color="magenta", weight=3]; 1538 -> 488[label="",style="dashed", color="red", weight=0]; 1538[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1538 -> 1843[label="",style="dashed", color="magenta", weight=3]; 1538 -> 1844[label="",style="dashed", color="magenta", weight=3]; 1539 -> 489[label="",style="dashed", color="red", weight=0]; 1539[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1539 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1539 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1540 -> 490[label="",style="dashed", color="red", weight=0]; 1540[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1540 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1540 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1541 -> 491[label="",style="dashed", color="red", weight=0]; 1541[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1541 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1541 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1542 -> 492[label="",style="dashed", color="red", weight=0]; 1542[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1542 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1543 -> 493[label="",style="dashed", color="red", weight=0]; 1543[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1543 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1543 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1544 -> 494[label="",style="dashed", color="red", weight=0]; 1544[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1544 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1544 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1545 -> 495[label="",style="dashed", color="red", weight=0]; 1545[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1545 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1545 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1546 -> 496[label="",style="dashed", color="red", weight=0]; 1546[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1546 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1547 -> 497[label="",style="dashed", color="red", weight=0]; 1547[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1547 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1548 -> 498[label="",style="dashed", color="red", weight=0]; 1548[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1548 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1549 -> 499[label="",style="dashed", color="red", weight=0]; 1549[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1549 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1550 -> 500[label="",style="dashed", color="red", weight=0]; 1550[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1550 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1551 -> 487[label="",style="dashed", color="red", weight=0]; 1551[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1551 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1552 -> 488[label="",style="dashed", color="red", weight=0]; 1552[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1552 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1553 -> 489[label="",style="dashed", color="red", weight=0]; 1553[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1553 -> 1873[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1874[label="",style="dashed", color="magenta", weight=3]; 1554 -> 490[label="",style="dashed", color="red", weight=0]; 1554[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1554 -> 1875[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1876[label="",style="dashed", color="magenta", weight=3]; 1555 -> 491[label="",style="dashed", color="red", weight=0]; 1555[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1555 -> 1877[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1878[label="",style="dashed", color="magenta", weight=3]; 1556 -> 492[label="",style="dashed", color="red", weight=0]; 1556[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1556 -> 1879[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1880[label="",style="dashed", color="magenta", weight=3]; 1557 -> 493[label="",style="dashed", color="red", weight=0]; 1557[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1557 -> 1881[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1882[label="",style="dashed", color="magenta", weight=3]; 1558 -> 494[label="",style="dashed", color="red", weight=0]; 1558[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1558 -> 1883[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1884[label="",style="dashed", color="magenta", weight=3]; 1559 -> 495[label="",style="dashed", color="red", weight=0]; 1559[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1559 -> 1885[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1886[label="",style="dashed", color="magenta", weight=3]; 1560 -> 496[label="",style="dashed", color="red", weight=0]; 1560[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1560 -> 1887[label="",style="dashed", color="magenta", weight=3]; 1560 -> 1888[label="",style="dashed", color="magenta", weight=3]; 1561 -> 497[label="",style="dashed", color="red", weight=0]; 1561[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1561 -> 1889[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1890[label="",style="dashed", color="magenta", weight=3]; 1562 -> 498[label="",style="dashed", color="red", weight=0]; 1562[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1562 -> 1891[label="",style="dashed", color="magenta", weight=3]; 1562 -> 1892[label="",style="dashed", color="magenta", weight=3]; 1563 -> 499[label="",style="dashed", color="red", weight=0]; 1563[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1563 -> 1893[label="",style="dashed", color="magenta", weight=3]; 1563 -> 1894[label="",style="dashed", color="magenta", weight=3]; 1564 -> 500[label="",style="dashed", color="red", weight=0]; 1564[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1564 -> 1895[label="",style="dashed", color="magenta", weight=3]; 1564 -> 1896[label="",style="dashed", color="magenta", weight=3]; 1565[label="vyw4000",fontsize=16,color="green",shape="box"];1566[label="vyw300",fontsize=16,color="green",shape="box"];1567[label="vyw4000",fontsize=16,color="green",shape="box"];1568[label="vyw300",fontsize=16,color="green",shape="box"];1569[label="vyw4000",fontsize=16,color="green",shape="box"];1570[label="vyw300",fontsize=16,color="green",shape="box"];1571[label="vyw4000",fontsize=16,color="green",shape="box"];1572[label="vyw300",fontsize=16,color="green",shape="box"];1573[label="vyw4000",fontsize=16,color="green",shape="box"];1574[label="vyw300",fontsize=16,color="green",shape="box"];1575[label="vyw4000",fontsize=16,color="green",shape="box"];1576[label="vyw300",fontsize=16,color="green",shape="box"];1577[label="vyw4000",fontsize=16,color="green",shape="box"];1578[label="vyw300",fontsize=16,color="green",shape="box"];1579[label="vyw4000",fontsize=16,color="green",shape="box"];1580[label="vyw300",fontsize=16,color="green",shape="box"];1581[label="vyw4000",fontsize=16,color="green",shape="box"];1582[label="vyw300",fontsize=16,color="green",shape="box"];1583[label="vyw4000",fontsize=16,color="green",shape="box"];1584[label="vyw300",fontsize=16,color="green",shape="box"];1585[label="vyw4000",fontsize=16,color="green",shape="box"];1586[label="vyw300",fontsize=16,color="green",shape="box"];1587[label="vyw4000",fontsize=16,color="green",shape="box"];1588[label="vyw300",fontsize=16,color="green",shape="box"];1589[label="vyw4000",fontsize=16,color="green",shape="box"];1590[label="vyw300",fontsize=16,color="green",shape="box"];1591[label="vyw4000",fontsize=16,color="green",shape="box"];1592[label="vyw300",fontsize=16,color="green",shape="box"];1593[label="vyw4001",fontsize=16,color="green",shape="box"];1594[label="vyw301",fontsize=16,color="green",shape="box"];1595 -> 487[label="",style="dashed", color="red", weight=0]; 1595[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1595 -> 1897[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1898[label="",style="dashed", color="magenta", weight=3]; 1596 -> 488[label="",style="dashed", color="red", weight=0]; 1596[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1596 -> 1899[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1900[label="",style="dashed", color="magenta", weight=3]; 1597 -> 489[label="",style="dashed", color="red", weight=0]; 1597[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1597 -> 1901[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1902[label="",style="dashed", color="magenta", weight=3]; 1598 -> 490[label="",style="dashed", color="red", weight=0]; 1598[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1598 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1599 -> 491[label="",style="dashed", color="red", weight=0]; 1599[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1599 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1600 -> 492[label="",style="dashed", color="red", weight=0]; 1600[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1600 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1601 -> 493[label="",style="dashed", color="red", weight=0]; 1601[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1601 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1602 -> 494[label="",style="dashed", color="red", weight=0]; 1602[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1602 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1603 -> 495[label="",style="dashed", color="red", weight=0]; 1603[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1603 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1604 -> 496[label="",style="dashed", color="red", weight=0]; 1604[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1604 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1605 -> 497[label="",style="dashed", color="red", weight=0]; 1605[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1605 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1606 -> 498[label="",style="dashed", color="red", weight=0]; 1606[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1606 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1606 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1607 -> 499[label="",style="dashed", color="red", weight=0]; 1607[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1607 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1607 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1608 -> 500[label="",style="dashed", color="red", weight=0]; 1608[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1608 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1608 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1609[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3493[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3493[label="",style="solid", color="blue", weight=9]; 3493 -> 1925[label="",style="solid", color="blue", weight=3]; 3494[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3494[label="",style="solid", color="blue", weight=9]; 3494 -> 1926[label="",style="solid", color="blue", weight=3]; 3495[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3495[label="",style="solid", color="blue", weight=9]; 3495 -> 1927[label="",style="solid", color="blue", weight=3]; 3496[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3496[label="",style="solid", color="blue", weight=9]; 3496 -> 1928[label="",style="solid", color="blue", weight=3]; 3497[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3497[label="",style="solid", color="blue", weight=9]; 3497 -> 1929[label="",style="solid", color="blue", weight=3]; 3498[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3498[label="",style="solid", color="blue", weight=9]; 3498 -> 1930[label="",style="solid", color="blue", weight=3]; 3499[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3499[label="",style="solid", color="blue", weight=9]; 3499 -> 1931[label="",style="solid", color="blue", weight=3]; 3500[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3500[label="",style="solid", color="blue", weight=9]; 3500 -> 1932[label="",style="solid", color="blue", weight=3]; 3501[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3501[label="",style="solid", color="blue", weight=9]; 3501 -> 1933[label="",style="solid", color="blue", weight=3]; 3502[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3502[label="",style="solid", color="blue", weight=9]; 3502 -> 1934[label="",style="solid", color="blue", weight=3]; 3503[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3503[label="",style="solid", color="blue", weight=9]; 3503 -> 1935[label="",style="solid", color="blue", weight=3]; 3504[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3504[label="",style="solid", color="blue", weight=9]; 3504 -> 1936[label="",style="solid", color="blue", weight=3]; 3505[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3505[label="",style="solid", color="blue", weight=9]; 3505 -> 1937[label="",style="solid", color="blue", weight=3]; 3506[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1609 -> 3506[label="",style="solid", color="blue", weight=9]; 3506 -> 1938[label="",style="solid", color="blue", weight=3]; 1610[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3507[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3507[label="",style="solid", color="blue", weight=9]; 3507 -> 1939[label="",style="solid", color="blue", weight=3]; 3508[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3508[label="",style="solid", color="blue", weight=9]; 3508 -> 1940[label="",style="solid", color="blue", weight=3]; 3509[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3509[label="",style="solid", color="blue", weight=9]; 3509 -> 1941[label="",style="solid", color="blue", weight=3]; 3510[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3510[label="",style="solid", color="blue", weight=9]; 3510 -> 1942[label="",style="solid", color="blue", weight=3]; 3511[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3511[label="",style="solid", color="blue", weight=9]; 3511 -> 1943[label="",style="solid", color="blue", weight=3]; 3512[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3512[label="",style="solid", color="blue", weight=9]; 3512 -> 1944[label="",style="solid", color="blue", weight=3]; 3513[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3513[label="",style="solid", color="blue", weight=9]; 3513 -> 1945[label="",style="solid", color="blue", weight=3]; 3514[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3514[label="",style="solid", color="blue", weight=9]; 3514 -> 1946[label="",style="solid", color="blue", weight=3]; 3515[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3515[label="",style="solid", color="blue", weight=9]; 3515 -> 1947[label="",style="solid", color="blue", weight=3]; 3516[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3516[label="",style="solid", color="blue", weight=9]; 3516 -> 1948[label="",style="solid", color="blue", weight=3]; 3517[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3517[label="",style="solid", color="blue", weight=9]; 3517 -> 1949[label="",style="solid", color="blue", weight=3]; 3518[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3518[label="",style="solid", color="blue", weight=9]; 3518 -> 1950[label="",style="solid", color="blue", weight=3]; 3519[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3519[label="",style="solid", color="blue", weight=9]; 3519 -> 1951[label="",style="solid", color="blue", weight=3]; 3520[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1610 -> 3520[label="",style="solid", color="blue", weight=9]; 3520 -> 1952[label="",style="solid", color="blue", weight=3]; 1611 -> 487[label="",style="dashed", color="red", weight=0]; 1611[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1611 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1611 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1612 -> 488[label="",style="dashed", color="red", weight=0]; 1612[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1612 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1613 -> 489[label="",style="dashed", color="red", weight=0]; 1613[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1613 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1614 -> 490[label="",style="dashed", color="red", weight=0]; 1614[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1614 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1614 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1615 -> 491[label="",style="dashed", color="red", weight=0]; 1615[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1615 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1615 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1616 -> 492[label="",style="dashed", color="red", weight=0]; 1616[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1616 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1616 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1617 -> 493[label="",style="dashed", color="red", weight=0]; 1617[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1617 -> 1965[label="",style="dashed", color="magenta", weight=3]; 1617 -> 1966[label="",style="dashed", color="magenta", weight=3]; 1618 -> 494[label="",style="dashed", color="red", weight=0]; 1618[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1618 -> 1967[label="",style="dashed", color="magenta", weight=3]; 1618 -> 1968[label="",style="dashed", color="magenta", weight=3]; 1619 -> 495[label="",style="dashed", color="red", weight=0]; 1619[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1619 -> 1969[label="",style="dashed", color="magenta", weight=3]; 1619 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1620 -> 496[label="",style="dashed", color="red", weight=0]; 1620[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1620 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1972[label="",style="dashed", color="magenta", weight=3]; 1621 -> 497[label="",style="dashed", color="red", weight=0]; 1621[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1621 -> 1973[label="",style="dashed", color="magenta", weight=3]; 1621 -> 1974[label="",style="dashed", color="magenta", weight=3]; 1622 -> 498[label="",style="dashed", color="red", weight=0]; 1622[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1622 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1622 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1623 -> 499[label="",style="dashed", color="red", weight=0]; 1623[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1623 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1623 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1624 -> 500[label="",style="dashed", color="red", weight=0]; 1624[label="vyw300 == vyw4000",fontsize=16,color="magenta"];1624 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1624 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1625[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1625 -> 1981[label="",style="solid", color="black", weight=3]; 1626[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];1626 -> 1982[label="",style="solid", color="black", weight=3]; 1627[label="False",fontsize=16,color="green",shape="box"];1628[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1628 -> 1983[label="",style="solid", color="black", weight=3]; 1629[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1629 -> 1984[label="",style="solid", color="black", weight=3]; 1630[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1630 -> 1985[label="",style="solid", color="black", weight=3]; 1631[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1631 -> 1986[label="",style="solid", color="black", weight=3]; 1632[label="False",fontsize=16,color="green",shape="box"];1633[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1633 -> 1987[label="",style="solid", color="black", weight=3]; 1634[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];1634 -> 1988[label="",style="solid", color="black", weight=3]; 1635[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];1635 -> 1989[label="",style="solid", color="black", weight=3]; 1636[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1636 -> 1990[label="",style="solid", color="black", weight=3]; 1637[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];1637 -> 1991[label="",style="solid", color="black", weight=3]; 1638[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1638 -> 1992[label="",style="solid", color="black", weight=3]; 1639 -> 356[label="",style="dashed", color="red", weight=0]; 1639[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1639 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1640 -> 356[label="",style="dashed", color="red", weight=0]; 1640[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1640 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1640 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1641 -> 356[label="",style="dashed", color="red", weight=0]; 1641[label="vyw301 * vyw4000",fontsize=16,color="magenta"];1641 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1641 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1642 -> 356[label="",style="dashed", color="red", weight=0]; 1642[label="vyw300 * vyw4001",fontsize=16,color="magenta"];1642 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1642 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1643 -> 2001[label="",style="dashed", color="red", weight=0]; 1643[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1643 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1644 -> 2001[label="",style="dashed", color="red", weight=0]; 1644[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1644 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1645[label="Left vyw440 <= vyw45",fontsize=16,color="burlywood",shape="box"];3521[label="vyw45/Left vyw450",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3521[label="",style="solid", color="burlywood", weight=9]; 3521 -> 2010[label="",style="solid", color="burlywood", weight=3]; 3522[label="vyw45/Right vyw450",fontsize=10,color="white",style="solid",shape="box"];1645 -> 3522[label="",style="solid", color="burlywood", weight=9]; 3522 -> 2011[label="",style="solid", color="burlywood", weight=3]; 1646[label="Right vyw440 <= vyw45",fontsize=16,color="burlywood",shape="box"];3523[label="vyw45/Left vyw450",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3523[label="",style="solid", color="burlywood", weight=9]; 3523 -> 2012[label="",style="solid", color="burlywood", weight=3]; 3524[label="vyw45/Right vyw450",fontsize=10,color="white",style="solid",shape="box"];1646 -> 3524[label="",style="solid", color="burlywood", weight=9]; 3524 -> 2013[label="",style="solid", color="burlywood", weight=3]; 1647[label="Nothing <= vyw45",fontsize=16,color="burlywood",shape="box"];3525[label="vyw45/Nothing",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3525[label="",style="solid", color="burlywood", weight=9]; 3525 -> 2014[label="",style="solid", color="burlywood", weight=3]; 3526[label="vyw45/Just vyw450",fontsize=10,color="white",style="solid",shape="box"];1647 -> 3526[label="",style="solid", color="burlywood", weight=9]; 3526 -> 2015[label="",style="solid", color="burlywood", weight=3]; 1648[label="Just vyw440 <= vyw45",fontsize=16,color="burlywood",shape="box"];3527[label="vyw45/Nothing",fontsize=10,color="white",style="solid",shape="box"];1648 -> 3527[label="",style="solid", color="burlywood", weight=9]; 3527 -> 2016[label="",style="solid", color="burlywood", weight=3]; 3528[label="vyw45/Just vyw450",fontsize=10,color="white",style="solid",shape="box"];1648 -> 3528[label="",style="solid", color="burlywood", weight=9]; 3528 -> 2017[label="",style="solid", color="burlywood", weight=3]; 1649[label="LT <= vyw45",fontsize=16,color="burlywood",shape="box"];3529[label="vyw45/LT",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3529[label="",style="solid", color="burlywood", weight=9]; 3529 -> 2018[label="",style="solid", color="burlywood", weight=3]; 3530[label="vyw45/EQ",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3530[label="",style="solid", color="burlywood", weight=9]; 3530 -> 2019[label="",style="solid", color="burlywood", weight=3]; 3531[label="vyw45/GT",fontsize=10,color="white",style="solid",shape="box"];1649 -> 3531[label="",style="solid", color="burlywood", weight=9]; 3531 -> 2020[label="",style="solid", color="burlywood", weight=3]; 1650[label="EQ <= vyw45",fontsize=16,color="burlywood",shape="box"];3532[label="vyw45/LT",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3532[label="",style="solid", color="burlywood", weight=9]; 3532 -> 2021[label="",style="solid", color="burlywood", weight=3]; 3533[label="vyw45/EQ",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3533[label="",style="solid", color="burlywood", weight=9]; 3533 -> 2022[label="",style="solid", color="burlywood", weight=3]; 3534[label="vyw45/GT",fontsize=10,color="white",style="solid",shape="box"];1650 -> 3534[label="",style="solid", color="burlywood", weight=9]; 3534 -> 2023[label="",style="solid", color="burlywood", weight=3]; 1651[label="GT <= vyw45",fontsize=16,color="burlywood",shape="box"];3535[label="vyw45/LT",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3535[label="",style="solid", color="burlywood", weight=9]; 3535 -> 2024[label="",style="solid", color="burlywood", weight=3]; 3536[label="vyw45/EQ",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3536[label="",style="solid", color="burlywood", weight=9]; 3536 -> 2025[label="",style="solid", color="burlywood", weight=3]; 3537[label="vyw45/GT",fontsize=10,color="white",style="solid",shape="box"];1651 -> 3537[label="",style="solid", color="burlywood", weight=9]; 3537 -> 2026[label="",style="solid", color="burlywood", weight=3]; 1652[label="False <= vyw45",fontsize=16,color="burlywood",shape="box"];3538[label="vyw45/False",fontsize=10,color="white",style="solid",shape="box"];1652 -> 3538[label="",style="solid", color="burlywood", weight=9]; 3538 -> 2027[label="",style="solid", color="burlywood", weight=3]; 3539[label="vyw45/True",fontsize=10,color="white",style="solid",shape="box"];1652 -> 3539[label="",style="solid", color="burlywood", weight=9]; 3539 -> 2028[label="",style="solid", color="burlywood", weight=3]; 1653[label="True <= vyw45",fontsize=16,color="burlywood",shape="box"];3540[label="vyw45/False",fontsize=10,color="white",style="solid",shape="box"];1653 -> 3540[label="",style="solid", color="burlywood", weight=9]; 3540 -> 2029[label="",style="solid", color="burlywood", weight=3]; 3541[label="vyw45/True",fontsize=10,color="white",style="solid",shape="box"];1653 -> 3541[label="",style="solid", color="burlywood", weight=9]; 3541 -> 2030[label="",style="solid", color="burlywood", weight=3]; 1654 -> 2001[label="",style="dashed", color="red", weight=0]; 1654[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1654 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1655 -> 2001[label="",style="dashed", color="red", weight=0]; 1655[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1655 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1656 -> 2001[label="",style="dashed", color="red", weight=0]; 1656[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1656 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1657[label="(vyw440,vyw441) <= vyw45",fontsize=16,color="burlywood",shape="box"];3542[label="vyw45/(vyw450,vyw451)",fontsize=10,color="white",style="solid",shape="box"];1657 -> 3542[label="",style="solid", color="burlywood", weight=9]; 3542 -> 2031[label="",style="solid", color="burlywood", weight=3]; 1658[label="(vyw440,vyw441,vyw442) <= vyw45",fontsize=16,color="burlywood",shape="box"];3543[label="vyw45/(vyw450,vyw451,vyw452)",fontsize=10,color="white",style="solid",shape="box"];1658 -> 3543[label="",style="solid", color="burlywood", weight=9]; 3543 -> 2032[label="",style="solid", color="burlywood", weight=3]; 1659 -> 2001[label="",style="dashed", color="red", weight=0]; 1659[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1659 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1660 -> 2001[label="",style="dashed", color="red", weight=0]; 1660[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1660 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1661 -> 2001[label="",style="dashed", color="red", weight=0]; 1661[label="compare vyw44 vyw45 /= GT",fontsize=16,color="magenta"];1661 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1662[label="compare0 (Left vyw121) (Left vyw122) True",fontsize=16,color="black",shape="box"];1662 -> 2033[label="",style="solid", color="black", weight=3]; 1663[label="vyw51",fontsize=16,color="green",shape="box"];1664[label="vyw52",fontsize=16,color="green",shape="box"];1665[label="vyw51",fontsize=16,color="green",shape="box"];1666[label="vyw52",fontsize=16,color="green",shape="box"];1667[label="vyw51",fontsize=16,color="green",shape="box"];1668[label="vyw52",fontsize=16,color="green",shape="box"];1669[label="vyw51",fontsize=16,color="green",shape="box"];1670[label="vyw52",fontsize=16,color="green",shape="box"];1671[label="vyw51",fontsize=16,color="green",shape="box"];1672[label="vyw52",fontsize=16,color="green",shape="box"];1673[label="vyw51",fontsize=16,color="green",shape="box"];1674[label="vyw52",fontsize=16,color="green",shape="box"];1675[label="vyw51",fontsize=16,color="green",shape="box"];1676[label="vyw52",fontsize=16,color="green",shape="box"];1677[label="vyw51",fontsize=16,color="green",shape="box"];1678[label="vyw52",fontsize=16,color="green",shape="box"];1679[label="vyw51",fontsize=16,color="green",shape="box"];1680[label="vyw52",fontsize=16,color="green",shape="box"];1681[label="vyw51",fontsize=16,color="green",shape="box"];1682[label="vyw52",fontsize=16,color="green",shape="box"];1683[label="vyw51",fontsize=16,color="green",shape="box"];1684[label="vyw52",fontsize=16,color="green",shape="box"];1685[label="vyw51",fontsize=16,color="green",shape="box"];1686[label="vyw52",fontsize=16,color="green",shape="box"];1687[label="vyw51",fontsize=16,color="green",shape="box"];1688[label="vyw52",fontsize=16,color="green",shape="box"];1689[label="vyw51",fontsize=16,color="green",shape="box"];1690[label="vyw52",fontsize=16,color="green",shape="box"];1691[label="compare0 (Right vyw128) (Right vyw129) True",fontsize=16,color="black",shape="box"];1691 -> 2034[label="",style="solid", color="black", weight=3]; 1692[label="vyw58",fontsize=16,color="green",shape="box"];1693[label="vyw59",fontsize=16,color="green",shape="box"];1694[label="vyw58",fontsize=16,color="green",shape="box"];1695[label="vyw59",fontsize=16,color="green",shape="box"];1696[label="vyw58",fontsize=16,color="green",shape="box"];1697[label="vyw59",fontsize=16,color="green",shape="box"];1698[label="vyw58",fontsize=16,color="green",shape="box"];1699[label="vyw59",fontsize=16,color="green",shape="box"];1700[label="vyw58",fontsize=16,color="green",shape="box"];1701[label="vyw59",fontsize=16,color="green",shape="box"];1702[label="vyw58",fontsize=16,color="green",shape="box"];1703[label="vyw59",fontsize=16,color="green",shape="box"];1704[label="vyw58",fontsize=16,color="green",shape="box"];1705[label="vyw59",fontsize=16,color="green",shape="box"];1706[label="vyw58",fontsize=16,color="green",shape="box"];1707[label="vyw59",fontsize=16,color="green",shape="box"];1708[label="vyw58",fontsize=16,color="green",shape="box"];1709[label="vyw59",fontsize=16,color="green",shape="box"];1710[label="vyw58",fontsize=16,color="green",shape="box"];1711[label="vyw59",fontsize=16,color="green",shape="box"];1712[label="vyw58",fontsize=16,color="green",shape="box"];1713[label="vyw59",fontsize=16,color="green",shape="box"];1714[label="vyw58",fontsize=16,color="green",shape="box"];1715[label="vyw59",fontsize=16,color="green",shape="box"];1716[label="vyw58",fontsize=16,color="green",shape="box"];1717[label="vyw59",fontsize=16,color="green",shape="box"];1718[label="vyw58",fontsize=16,color="green",shape="box"];1719[label="vyw59",fontsize=16,color="green",shape="box"];1720[label="compare0 (Just vyw135) (Just vyw136) True",fontsize=16,color="black",shape="box"];1720 -> 2035[label="",style="solid", color="black", weight=3]; 1721 -> 1353[label="",style="dashed", color="red", weight=0]; 1721[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1721 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1721 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1722 -> 1354[label="",style="dashed", color="red", weight=0]; 1722[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1722 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1722 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1723 -> 1355[label="",style="dashed", color="red", weight=0]; 1723[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1723 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1723 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1724 -> 1356[label="",style="dashed", color="red", weight=0]; 1724[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1724 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1724 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1725 -> 1357[label="",style="dashed", color="red", weight=0]; 1725[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1725 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1725 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1726 -> 1358[label="",style="dashed", color="red", weight=0]; 1726[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1726 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1726 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1727 -> 1359[label="",style="dashed", color="red", weight=0]; 1727[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1727 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1727 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1728 -> 1360[label="",style="dashed", color="red", weight=0]; 1728[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1728 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1728 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1729 -> 1361[label="",style="dashed", color="red", weight=0]; 1729[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1729 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1729 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1730 -> 1362[label="",style="dashed", color="red", weight=0]; 1730[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1730 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1730 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1731 -> 1363[label="",style="dashed", color="red", weight=0]; 1731[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1731 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1731 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1732 -> 1364[label="",style="dashed", color="red", weight=0]; 1732[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1732 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1732 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1733 -> 1365[label="",style="dashed", color="red", weight=0]; 1733[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1733 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1733 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1734 -> 1366[label="",style="dashed", color="red", weight=0]; 1734[label="vyw99 <= vyw101",fontsize=16,color="magenta"];1734 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1734 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1735 -> 487[label="",style="dashed", color="red", weight=0]; 1735[label="vyw98 == vyw100",fontsize=16,color="magenta"];1735 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1735 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1736 -> 496[label="",style="dashed", color="red", weight=0]; 1736[label="vyw98 == vyw100",fontsize=16,color="magenta"];1736 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1736 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1737 -> 488[label="",style="dashed", color="red", weight=0]; 1737[label="vyw98 == vyw100",fontsize=16,color="magenta"];1737 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1737 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1738 -> 494[label="",style="dashed", color="red", weight=0]; 1738[label="vyw98 == vyw100",fontsize=16,color="magenta"];1738 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1738 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1739 -> 493[label="",style="dashed", color="red", weight=0]; 1739[label="vyw98 == vyw100",fontsize=16,color="magenta"];1739 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1739 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1740 -> 489[label="",style="dashed", color="red", weight=0]; 1740[label="vyw98 == vyw100",fontsize=16,color="magenta"];1740 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1740 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1741 -> 499[label="",style="dashed", color="red", weight=0]; 1741[label="vyw98 == vyw100",fontsize=16,color="magenta"];1741 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1741 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1742 -> 490[label="",style="dashed", color="red", weight=0]; 1742[label="vyw98 == vyw100",fontsize=16,color="magenta"];1742 -> 2078[label="",style="dashed", color="magenta", weight=3]; 1742 -> 2079[label="",style="dashed", color="magenta", weight=3]; 1743 -> 492[label="",style="dashed", color="red", weight=0]; 1743[label="vyw98 == vyw100",fontsize=16,color="magenta"];1743 -> 2080[label="",style="dashed", color="magenta", weight=3]; 1743 -> 2081[label="",style="dashed", color="magenta", weight=3]; 1744 -> 491[label="",style="dashed", color="red", weight=0]; 1744[label="vyw98 == vyw100",fontsize=16,color="magenta"];1744 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1744 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1745 -> 497[label="",style="dashed", color="red", weight=0]; 1745[label="vyw98 == vyw100",fontsize=16,color="magenta"];1745 -> 2084[label="",style="dashed", color="magenta", weight=3]; 1745 -> 2085[label="",style="dashed", color="magenta", weight=3]; 1746 -> 500[label="",style="dashed", color="red", weight=0]; 1746[label="vyw98 == vyw100",fontsize=16,color="magenta"];1746 -> 2086[label="",style="dashed", color="magenta", weight=3]; 1746 -> 2087[label="",style="dashed", color="magenta", weight=3]; 1747 -> 495[label="",style="dashed", color="red", weight=0]; 1747[label="vyw98 == vyw100",fontsize=16,color="magenta"];1747 -> 2088[label="",style="dashed", color="magenta", weight=3]; 1747 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1748 -> 498[label="",style="dashed", color="red", weight=0]; 1748[label="vyw98 == vyw100",fontsize=16,color="magenta"];1748 -> 2090[label="",style="dashed", color="magenta", weight=3]; 1748 -> 2091[label="",style="dashed", color="magenta", weight=3]; 1749[label="vyw100",fontsize=16,color="green",shape="box"];1750[label="vyw98",fontsize=16,color="green",shape="box"];1751[label="vyw100",fontsize=16,color="green",shape="box"];1752[label="vyw98",fontsize=16,color="green",shape="box"];1753[label="vyw100",fontsize=16,color="green",shape="box"];1754[label="vyw98",fontsize=16,color="green",shape="box"];1755[label="vyw100",fontsize=16,color="green",shape="box"];1756[label="vyw98",fontsize=16,color="green",shape="box"];1757[label="vyw100",fontsize=16,color="green",shape="box"];1758[label="vyw98",fontsize=16,color="green",shape="box"];1759[label="vyw100",fontsize=16,color="green",shape="box"];1760[label="vyw98",fontsize=16,color="green",shape="box"];1761[label="vyw100",fontsize=16,color="green",shape="box"];1762[label="vyw98",fontsize=16,color="green",shape="box"];1763[label="vyw100",fontsize=16,color="green",shape="box"];1764[label="vyw98",fontsize=16,color="green",shape="box"];1765[label="vyw100",fontsize=16,color="green",shape="box"];1766[label="vyw98",fontsize=16,color="green",shape="box"];1767[label="vyw100",fontsize=16,color="green",shape="box"];1768[label="vyw98",fontsize=16,color="green",shape="box"];1769[label="vyw100",fontsize=16,color="green",shape="box"];1770[label="vyw98",fontsize=16,color="green",shape="box"];1771[label="vyw100",fontsize=16,color="green",shape="box"];1772[label="vyw98",fontsize=16,color="green",shape="box"];1773[label="vyw100",fontsize=16,color="green",shape="box"];1774[label="vyw98",fontsize=16,color="green",shape="box"];1775[label="vyw100",fontsize=16,color="green",shape="box"];1776[label="vyw98",fontsize=16,color="green",shape="box"];1777[label="compare1 (vyw148,vyw149) (vyw150,vyw151) vyw153",fontsize=16,color="burlywood",shape="triangle"];3544[label="vyw153/False",fontsize=10,color="white",style="solid",shape="box"];1777 -> 3544[label="",style="solid", color="burlywood", weight=9]; 3544 -> 2092[label="",style="solid", color="burlywood", weight=3]; 3545[label="vyw153/True",fontsize=10,color="white",style="solid",shape="box"];1777 -> 3545[label="",style="solid", color="burlywood", weight=9]; 3545 -> 2093[label="",style="solid", color="burlywood", weight=3]; 1778 -> 1777[label="",style="dashed", color="red", weight=0]; 1778[label="compare1 (vyw148,vyw149) (vyw150,vyw151) True",fontsize=16,color="magenta"];1778 -> 2094[label="",style="dashed", color="magenta", weight=3]; 1779[label="vyw83",fontsize=16,color="green",shape="box"];1780[label="vyw80",fontsize=16,color="green",shape="box"];1781[label="vyw83",fontsize=16,color="green",shape="box"];1782[label="vyw80",fontsize=16,color="green",shape="box"];1783[label="vyw83",fontsize=16,color="green",shape="box"];1784[label="vyw80",fontsize=16,color="green",shape="box"];1785[label="vyw83",fontsize=16,color="green",shape="box"];1786[label="vyw80",fontsize=16,color="green",shape="box"];1787[label="vyw83",fontsize=16,color="green",shape="box"];1788[label="vyw80",fontsize=16,color="green",shape="box"];1789[label="vyw83",fontsize=16,color="green",shape="box"];1790[label="vyw80",fontsize=16,color="green",shape="box"];1791[label="vyw83",fontsize=16,color="green",shape="box"];1792[label="vyw80",fontsize=16,color="green",shape="box"];1793[label="vyw83",fontsize=16,color="green",shape="box"];1794[label="vyw80",fontsize=16,color="green",shape="box"];1795[label="vyw83",fontsize=16,color="green",shape="box"];1796[label="vyw80",fontsize=16,color="green",shape="box"];1797[label="vyw83",fontsize=16,color="green",shape="box"];1798[label="vyw80",fontsize=16,color="green",shape="box"];1799[label="vyw83",fontsize=16,color="green",shape="box"];1800[label="vyw80",fontsize=16,color="green",shape="box"];1801[label="vyw83",fontsize=16,color="green",shape="box"];1802[label="vyw80",fontsize=16,color="green",shape="box"];1803[label="vyw83",fontsize=16,color="green",shape="box"];1804[label="vyw80",fontsize=16,color="green",shape="box"];1805[label="vyw83",fontsize=16,color="green",shape="box"];1806[label="vyw80",fontsize=16,color="green",shape="box"];2098 -> 970[label="",style="dashed", color="red", weight=0]; 2098[label="vyw81 == vyw84 && vyw82 <= vyw85",fontsize=16,color="magenta"];2098 -> 2102[label="",style="dashed", color="magenta", weight=3]; 2098 -> 2103[label="",style="dashed", color="magenta", weight=3]; 2099[label="vyw81 < vyw84",fontsize=16,color="blue",shape="box"];3546[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3546[label="",style="solid", color="blue", weight=9]; 3546 -> 2104[label="",style="solid", color="blue", weight=3]; 3547[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3547[label="",style="solid", color="blue", weight=9]; 3547 -> 2105[label="",style="solid", color="blue", weight=3]; 3548[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3548[label="",style="solid", color="blue", weight=9]; 3548 -> 2106[label="",style="solid", color="blue", weight=3]; 3549[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3549[label="",style="solid", color="blue", weight=9]; 3549 -> 2107[label="",style="solid", color="blue", weight=3]; 3550[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3550[label="",style="solid", color="blue", weight=9]; 3550 -> 2108[label="",style="solid", color="blue", weight=3]; 3551[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3551[label="",style="solid", color="blue", weight=9]; 3551 -> 2109[label="",style="solid", color="blue", weight=3]; 3552[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3552[label="",style="solid", color="blue", weight=9]; 3552 -> 2110[label="",style="solid", color="blue", weight=3]; 3553[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3553[label="",style="solid", color="blue", weight=9]; 3553 -> 2111[label="",style="solid", color="blue", weight=3]; 3554[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3554[label="",style="solid", color="blue", weight=9]; 3554 -> 2112[label="",style="solid", color="blue", weight=3]; 3555[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3555[label="",style="solid", color="blue", weight=9]; 3555 -> 2113[label="",style="solid", color="blue", weight=3]; 3556[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3556[label="",style="solid", color="blue", weight=9]; 3556 -> 2114[label="",style="solid", color="blue", weight=3]; 3557[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3557[label="",style="solid", color="blue", weight=9]; 3557 -> 2115[label="",style="solid", color="blue", weight=3]; 3558[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3558[label="",style="solid", color="blue", weight=9]; 3558 -> 2116[label="",style="solid", color="blue", weight=3]; 3559[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3559[label="",style="solid", color="blue", weight=9]; 3559 -> 2117[label="",style="solid", color="blue", weight=3]; 2097[label="vyw176 || vyw177",fontsize=16,color="burlywood",shape="triangle"];3560[label="vyw176/False",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3560[label="",style="solid", color="burlywood", weight=9]; 3560 -> 2118[label="",style="solid", color="burlywood", weight=3]; 3561[label="vyw176/True",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3561[label="",style="solid", color="burlywood", weight=9]; 3561 -> 2119[label="",style="solid", color="burlywood", weight=3]; 1809 -> 487[label="",style="dashed", color="red", weight=0]; 1809[label="vyw80 == vyw83",fontsize=16,color="magenta"];1809 -> 2120[label="",style="dashed", color="magenta", weight=3]; 1809 -> 2121[label="",style="dashed", color="magenta", weight=3]; 1810 -> 496[label="",style="dashed", color="red", weight=0]; 1810[label="vyw80 == vyw83",fontsize=16,color="magenta"];1810 -> 2122[label="",style="dashed", color="magenta", weight=3]; 1810 -> 2123[label="",style="dashed", color="magenta", weight=3]; 1811 -> 488[label="",style="dashed", color="red", weight=0]; 1811[label="vyw80 == vyw83",fontsize=16,color="magenta"];1811 -> 2124[label="",style="dashed", color="magenta", weight=3]; 1811 -> 2125[label="",style="dashed", color="magenta", weight=3]; 1812 -> 494[label="",style="dashed", color="red", weight=0]; 1812[label="vyw80 == vyw83",fontsize=16,color="magenta"];1812 -> 2126[label="",style="dashed", color="magenta", weight=3]; 1812 -> 2127[label="",style="dashed", color="magenta", weight=3]; 1813 -> 493[label="",style="dashed", color="red", weight=0]; 1813[label="vyw80 == vyw83",fontsize=16,color="magenta"];1813 -> 2128[label="",style="dashed", color="magenta", weight=3]; 1813 -> 2129[label="",style="dashed", color="magenta", weight=3]; 1814 -> 489[label="",style="dashed", color="red", weight=0]; 1814[label="vyw80 == vyw83",fontsize=16,color="magenta"];1814 -> 2130[label="",style="dashed", color="magenta", weight=3]; 1814 -> 2131[label="",style="dashed", color="magenta", weight=3]; 1815 -> 499[label="",style="dashed", color="red", weight=0]; 1815[label="vyw80 == vyw83",fontsize=16,color="magenta"];1815 -> 2132[label="",style="dashed", color="magenta", weight=3]; 1815 -> 2133[label="",style="dashed", color="magenta", weight=3]; 1816 -> 490[label="",style="dashed", color="red", weight=0]; 1816[label="vyw80 == vyw83",fontsize=16,color="magenta"];1816 -> 2134[label="",style="dashed", color="magenta", weight=3]; 1816 -> 2135[label="",style="dashed", color="magenta", weight=3]; 1817 -> 492[label="",style="dashed", color="red", weight=0]; 1817[label="vyw80 == vyw83",fontsize=16,color="magenta"];1817 -> 2136[label="",style="dashed", color="magenta", weight=3]; 1817 -> 2137[label="",style="dashed", color="magenta", weight=3]; 1818 -> 491[label="",style="dashed", color="red", weight=0]; 1818[label="vyw80 == vyw83",fontsize=16,color="magenta"];1818 -> 2138[label="",style="dashed", color="magenta", weight=3]; 1818 -> 2139[label="",style="dashed", color="magenta", weight=3]; 1819 -> 497[label="",style="dashed", color="red", weight=0]; 1819[label="vyw80 == vyw83",fontsize=16,color="magenta"];1819 -> 2140[label="",style="dashed", color="magenta", weight=3]; 1819 -> 2141[label="",style="dashed", color="magenta", weight=3]; 1820 -> 500[label="",style="dashed", color="red", weight=0]; 1820[label="vyw80 == vyw83",fontsize=16,color="magenta"];1820 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1820 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1821 -> 495[label="",style="dashed", color="red", weight=0]; 1821[label="vyw80 == vyw83",fontsize=16,color="magenta"];1821 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1821 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1822 -> 498[label="",style="dashed", color="red", weight=0]; 1822[label="vyw80 == vyw83",fontsize=16,color="magenta"];1822 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1822 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1823[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) vyw170",fontsize=16,color="burlywood",shape="triangle"];3562[label="vyw170/False",fontsize=10,color="white",style="solid",shape="box"];1823 -> 3562[label="",style="solid", color="burlywood", weight=9]; 3562 -> 2148[label="",style="solid", color="burlywood", weight=3]; 3563[label="vyw170/True",fontsize=10,color="white",style="solid",shape="box"];1823 -> 3563[label="",style="solid", color="burlywood", weight=9]; 3563 -> 2149[label="",style="solid", color="burlywood", weight=3]; 1824 -> 1823[label="",style="dashed", color="red", weight=0]; 1824[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) True",fontsize=16,color="magenta"];1824 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1825 -> 2151[label="",style="dashed", color="red", weight=0]; 1825[label="primPlusNat (primMulNat vyw40000 (Succ vyw3100)) (Succ vyw3100)",fontsize=16,color="magenta"];1825 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1826[label="Zero",fontsize=16,color="green",shape="box"];1827[label="Zero",fontsize=16,color="green",shape="box"];1828[label="Zero",fontsize=16,color="green",shape="box"];1829[label="vyw4001",fontsize=16,color="green",shape="box"];1830[label="vyw301",fontsize=16,color="green",shape="box"];1831[label="vyw4001",fontsize=16,color="green",shape="box"];1832[label="vyw301",fontsize=16,color="green",shape="box"];1833[label="vyw4000",fontsize=16,color="green",shape="box"];1834[label="vyw300",fontsize=16,color="green",shape="box"];1835[label="vyw4000",fontsize=16,color="green",shape="box"];1836[label="vyw300",fontsize=16,color="green",shape="box"];1837[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];1837 -> 2153[label="",style="solid", color="black", weight=3]; 1838[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];1838 -> 2154[label="",style="solid", color="black", weight=3]; 1839[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];1839 -> 2155[label="",style="solid", color="black", weight=3]; 1840[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1840 -> 2156[label="",style="solid", color="black", weight=3]; 1841[label="vyw4001",fontsize=16,color="green",shape="box"];1842[label="vyw301",fontsize=16,color="green",shape="box"];1843[label="vyw4001",fontsize=16,color="green",shape="box"];1844[label="vyw301",fontsize=16,color="green",shape="box"];1845[label="vyw4001",fontsize=16,color="green",shape="box"];1846[label="vyw301",fontsize=16,color="green",shape="box"];1847[label="vyw4001",fontsize=16,color="green",shape="box"];1848[label="vyw301",fontsize=16,color="green",shape="box"];1849[label="vyw4001",fontsize=16,color="green",shape="box"];1850[label="vyw301",fontsize=16,color="green",shape="box"];1851[label="vyw4001",fontsize=16,color="green",shape="box"];1852[label="vyw301",fontsize=16,color="green",shape="box"];1853[label="vyw4001",fontsize=16,color="green",shape="box"];1854[label="vyw301",fontsize=16,color="green",shape="box"];1855[label="vyw4001",fontsize=16,color="green",shape="box"];1856[label="vyw301",fontsize=16,color="green",shape="box"];1857[label="vyw4001",fontsize=16,color="green",shape="box"];1858[label="vyw301",fontsize=16,color="green",shape="box"];1859[label="vyw4001",fontsize=16,color="green",shape="box"];1860[label="vyw301",fontsize=16,color="green",shape="box"];1861[label="vyw4001",fontsize=16,color="green",shape="box"];1862[label="vyw301",fontsize=16,color="green",shape="box"];1863[label="vyw4001",fontsize=16,color="green",shape="box"];1864[label="vyw301",fontsize=16,color="green",shape="box"];1865[label="vyw4001",fontsize=16,color="green",shape="box"];1866[label="vyw301",fontsize=16,color="green",shape="box"];1867[label="vyw4001",fontsize=16,color="green",shape="box"];1868[label="vyw301",fontsize=16,color="green",shape="box"];1869[label="vyw4000",fontsize=16,color="green",shape="box"];1870[label="vyw300",fontsize=16,color="green",shape="box"];1871[label="vyw4000",fontsize=16,color="green",shape="box"];1872[label="vyw300",fontsize=16,color="green",shape="box"];1873[label="vyw4000",fontsize=16,color="green",shape="box"];1874[label="vyw300",fontsize=16,color="green",shape="box"];1875[label="vyw4000",fontsize=16,color="green",shape="box"];1876[label="vyw300",fontsize=16,color="green",shape="box"];1877[label="vyw4000",fontsize=16,color="green",shape="box"];1878[label="vyw300",fontsize=16,color="green",shape="box"];1879[label="vyw4000",fontsize=16,color="green",shape="box"];1880[label="vyw300",fontsize=16,color="green",shape="box"];1881[label="vyw4000",fontsize=16,color="green",shape="box"];1882[label="vyw300",fontsize=16,color="green",shape="box"];1883[label="vyw4000",fontsize=16,color="green",shape="box"];1884[label="vyw300",fontsize=16,color="green",shape="box"];1885[label="vyw4000",fontsize=16,color="green",shape="box"];1886[label="vyw300",fontsize=16,color="green",shape="box"];1887[label="vyw4000",fontsize=16,color="green",shape="box"];1888[label="vyw300",fontsize=16,color="green",shape="box"];1889[label="vyw4000",fontsize=16,color="green",shape="box"];1890[label="vyw300",fontsize=16,color="green",shape="box"];1891[label="vyw4000",fontsize=16,color="green",shape="box"];1892[label="vyw300",fontsize=16,color="green",shape="box"];1893[label="vyw4000",fontsize=16,color="green",shape="box"];1894[label="vyw300",fontsize=16,color="green",shape="box"];1895[label="vyw4000",fontsize=16,color="green",shape="box"];1896[label="vyw300",fontsize=16,color="green",shape="box"];1897[label="vyw4000",fontsize=16,color="green",shape="box"];1898[label="vyw300",fontsize=16,color="green",shape="box"];1899[label="vyw4000",fontsize=16,color="green",shape="box"];1900[label="vyw300",fontsize=16,color="green",shape="box"];1901[label="vyw4000",fontsize=16,color="green",shape="box"];1902[label="vyw300",fontsize=16,color="green",shape="box"];1903[label="vyw4000",fontsize=16,color="green",shape="box"];1904[label="vyw300",fontsize=16,color="green",shape="box"];1905[label="vyw4000",fontsize=16,color="green",shape="box"];1906[label="vyw300",fontsize=16,color="green",shape="box"];1907[label="vyw4000",fontsize=16,color="green",shape="box"];1908[label="vyw300",fontsize=16,color="green",shape="box"];1909[label="vyw4000",fontsize=16,color="green",shape="box"];1910[label="vyw300",fontsize=16,color="green",shape="box"];1911[label="vyw4000",fontsize=16,color="green",shape="box"];1912[label="vyw300",fontsize=16,color="green",shape="box"];1913[label="vyw4000",fontsize=16,color="green",shape="box"];1914[label="vyw300",fontsize=16,color="green",shape="box"];1915[label="vyw4000",fontsize=16,color="green",shape="box"];1916[label="vyw300",fontsize=16,color="green",shape="box"];1917[label="vyw4000",fontsize=16,color="green",shape="box"];1918[label="vyw300",fontsize=16,color="green",shape="box"];1919[label="vyw4000",fontsize=16,color="green",shape="box"];1920[label="vyw300",fontsize=16,color="green",shape="box"];1921[label="vyw4000",fontsize=16,color="green",shape="box"];1922[label="vyw300",fontsize=16,color="green",shape="box"];1923[label="vyw4000",fontsize=16,color="green",shape="box"];1924[label="vyw300",fontsize=16,color="green",shape="box"];1925 -> 487[label="",style="dashed", color="red", weight=0]; 1925[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1925 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1925 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1926 -> 488[label="",style="dashed", color="red", weight=0]; 1926[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1926 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1926 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1927 -> 489[label="",style="dashed", color="red", weight=0]; 1927[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1927 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1927 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1928 -> 490[label="",style="dashed", color="red", weight=0]; 1928[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1928 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1928 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1929 -> 491[label="",style="dashed", color="red", weight=0]; 1929[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1929 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1929 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1930 -> 492[label="",style="dashed", color="red", weight=0]; 1930[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1930 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1930 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1931 -> 493[label="",style="dashed", color="red", weight=0]; 1931[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1931 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1931 -> 2170[label="",style="dashed", color="magenta", weight=3]; 1932 -> 494[label="",style="dashed", color="red", weight=0]; 1932[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1932 -> 2171[label="",style="dashed", color="magenta", weight=3]; 1932 -> 2172[label="",style="dashed", color="magenta", weight=3]; 1933 -> 495[label="",style="dashed", color="red", weight=0]; 1933[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1933 -> 2173[label="",style="dashed", color="magenta", weight=3]; 1933 -> 2174[label="",style="dashed", color="magenta", weight=3]; 1934 -> 496[label="",style="dashed", color="red", weight=0]; 1934[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1934 -> 2175[label="",style="dashed", color="magenta", weight=3]; 1934 -> 2176[label="",style="dashed", color="magenta", weight=3]; 1935 -> 497[label="",style="dashed", color="red", weight=0]; 1935[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1935 -> 2177[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2178[label="",style="dashed", color="magenta", weight=3]; 1936 -> 498[label="",style="dashed", color="red", weight=0]; 1936[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1936 -> 2179[label="",style="dashed", color="magenta", weight=3]; 1936 -> 2180[label="",style="dashed", color="magenta", weight=3]; 1937 -> 499[label="",style="dashed", color="red", weight=0]; 1937[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1937 -> 2181[label="",style="dashed", color="magenta", weight=3]; 1937 -> 2182[label="",style="dashed", color="magenta", weight=3]; 1938 -> 500[label="",style="dashed", color="red", weight=0]; 1938[label="vyw302 == vyw4002",fontsize=16,color="magenta"];1938 -> 2183[label="",style="dashed", color="magenta", weight=3]; 1938 -> 2184[label="",style="dashed", color="magenta", weight=3]; 1939 -> 487[label="",style="dashed", color="red", weight=0]; 1939[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1939 -> 2185[label="",style="dashed", color="magenta", weight=3]; 1939 -> 2186[label="",style="dashed", color="magenta", weight=3]; 1940 -> 488[label="",style="dashed", color="red", weight=0]; 1940[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1940 -> 2187[label="",style="dashed", color="magenta", weight=3]; 1940 -> 2188[label="",style="dashed", color="magenta", weight=3]; 1941 -> 489[label="",style="dashed", color="red", weight=0]; 1941[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1941 -> 2189[label="",style="dashed", color="magenta", weight=3]; 1941 -> 2190[label="",style="dashed", color="magenta", weight=3]; 1942 -> 490[label="",style="dashed", color="red", weight=0]; 1942[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1942 -> 2191[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2192[label="",style="dashed", color="magenta", weight=3]; 1943 -> 491[label="",style="dashed", color="red", weight=0]; 1943[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1943 -> 2193[label="",style="dashed", color="magenta", weight=3]; 1943 -> 2194[label="",style="dashed", color="magenta", weight=3]; 1944 -> 492[label="",style="dashed", color="red", weight=0]; 1944[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1944 -> 2195[label="",style="dashed", color="magenta", weight=3]; 1944 -> 2196[label="",style="dashed", color="magenta", weight=3]; 1945 -> 493[label="",style="dashed", color="red", weight=0]; 1945[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1945 -> 2197[label="",style="dashed", color="magenta", weight=3]; 1945 -> 2198[label="",style="dashed", color="magenta", weight=3]; 1946 -> 494[label="",style="dashed", color="red", weight=0]; 1946[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1946 -> 2199[label="",style="dashed", color="magenta", weight=3]; 1946 -> 2200[label="",style="dashed", color="magenta", weight=3]; 1947 -> 495[label="",style="dashed", color="red", weight=0]; 1947[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1947 -> 2201[label="",style="dashed", color="magenta", weight=3]; 1947 -> 2202[label="",style="dashed", color="magenta", weight=3]; 1948 -> 496[label="",style="dashed", color="red", weight=0]; 1948[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1948 -> 2203[label="",style="dashed", color="magenta", weight=3]; 1948 -> 2204[label="",style="dashed", color="magenta", weight=3]; 1949 -> 497[label="",style="dashed", color="red", weight=0]; 1949[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1949 -> 2205[label="",style="dashed", color="magenta", weight=3]; 1949 -> 2206[label="",style="dashed", color="magenta", weight=3]; 1950 -> 498[label="",style="dashed", color="red", weight=0]; 1950[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1950 -> 2207[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2208[label="",style="dashed", color="magenta", weight=3]; 1951 -> 499[label="",style="dashed", color="red", weight=0]; 1951[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1951 -> 2209[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2210[label="",style="dashed", color="magenta", weight=3]; 1952 -> 500[label="",style="dashed", color="red", weight=0]; 1952[label="vyw301 == vyw4001",fontsize=16,color="magenta"];1952 -> 2211[label="",style="dashed", color="magenta", weight=3]; 1952 -> 2212[label="",style="dashed", color="magenta", weight=3]; 1953[label="vyw4000",fontsize=16,color="green",shape="box"];1954[label="vyw300",fontsize=16,color="green",shape="box"];1955[label="vyw4000",fontsize=16,color="green",shape="box"];1956[label="vyw300",fontsize=16,color="green",shape="box"];1957[label="vyw4000",fontsize=16,color="green",shape="box"];1958[label="vyw300",fontsize=16,color="green",shape="box"];1959[label="vyw4000",fontsize=16,color="green",shape="box"];1960[label="vyw300",fontsize=16,color="green",shape="box"];1961[label="vyw4000",fontsize=16,color="green",shape="box"];1962[label="vyw300",fontsize=16,color="green",shape="box"];1963[label="vyw4000",fontsize=16,color="green",shape="box"];1964[label="vyw300",fontsize=16,color="green",shape="box"];1965[label="vyw4000",fontsize=16,color="green",shape="box"];1966[label="vyw300",fontsize=16,color="green",shape="box"];1967[label="vyw4000",fontsize=16,color="green",shape="box"];1968[label="vyw300",fontsize=16,color="green",shape="box"];1969[label="vyw4000",fontsize=16,color="green",shape="box"];1970[label="vyw300",fontsize=16,color="green",shape="box"];1971[label="vyw4000",fontsize=16,color="green",shape="box"];1972[label="vyw300",fontsize=16,color="green",shape="box"];1973[label="vyw4000",fontsize=16,color="green",shape="box"];1974[label="vyw300",fontsize=16,color="green",shape="box"];1975[label="vyw4000",fontsize=16,color="green",shape="box"];1976[label="vyw300",fontsize=16,color="green",shape="box"];1977[label="vyw4000",fontsize=16,color="green",shape="box"];1978[label="vyw300",fontsize=16,color="green",shape="box"];1979[label="vyw4000",fontsize=16,color="green",shape="box"];1980[label="vyw300",fontsize=16,color="green",shape="box"];1981 -> 1320[label="",style="dashed", color="red", weight=0]; 1981[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];1981 -> 2213[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2214[label="",style="dashed", color="magenta", weight=3]; 1982[label="False",fontsize=16,color="green",shape="box"];1983[label="False",fontsize=16,color="green",shape="box"];1984[label="True",fontsize=16,color="green",shape="box"];1985[label="False",fontsize=16,color="green",shape="box"];1986[label="True",fontsize=16,color="green",shape="box"];1987 -> 1320[label="",style="dashed", color="red", weight=0]; 1987[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];1987 -> 2215[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2216[label="",style="dashed", color="magenta", weight=3]; 1988[label="False",fontsize=16,color="green",shape="box"];1989[label="False",fontsize=16,color="green",shape="box"];1990[label="True",fontsize=16,color="green",shape="box"];1991[label="False",fontsize=16,color="green",shape="box"];1992[label="True",fontsize=16,color="green",shape="box"];1993[label="vyw4000",fontsize=16,color="green",shape="box"];1994[label="vyw301",fontsize=16,color="green",shape="box"];1995[label="vyw4001",fontsize=16,color="green",shape="box"];1996[label="vyw300",fontsize=16,color="green",shape="box"];1997[label="vyw4000",fontsize=16,color="green",shape="box"];1998[label="vyw301",fontsize=16,color="green",shape="box"];1999[label="vyw4001",fontsize=16,color="green",shape="box"];2000[label="vyw300",fontsize=16,color="green",shape="box"];2002 -> 156[label="",style="dashed", color="red", weight=0]; 2002[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2002 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2002 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2001[label="vyw172 /= GT",fontsize=16,color="black",shape="triangle"];2001 -> 2219[label="",style="solid", color="black", weight=3]; 2003 -> 157[label="",style="dashed", color="red", weight=0]; 2003[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2003 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2010[label="Left vyw440 <= Left vyw450",fontsize=16,color="black",shape="box"];2010 -> 2222[label="",style="solid", color="black", weight=3]; 2011[label="Left vyw440 <= Right vyw450",fontsize=16,color="black",shape="box"];2011 -> 2223[label="",style="solid", color="black", weight=3]; 2012[label="Right vyw440 <= Left vyw450",fontsize=16,color="black",shape="box"];2012 -> 2224[label="",style="solid", color="black", weight=3]; 2013[label="Right vyw440 <= Right vyw450",fontsize=16,color="black",shape="box"];2013 -> 2225[label="",style="solid", color="black", weight=3]; 2014[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2014 -> 2226[label="",style="solid", color="black", weight=3]; 2015[label="Nothing <= Just vyw450",fontsize=16,color="black",shape="box"];2015 -> 2227[label="",style="solid", color="black", weight=3]; 2016[label="Just vyw440 <= Nothing",fontsize=16,color="black",shape="box"];2016 -> 2228[label="",style="solid", color="black", weight=3]; 2017[label="Just vyw440 <= Just vyw450",fontsize=16,color="black",shape="box"];2017 -> 2229[label="",style="solid", color="black", weight=3]; 2018[label="LT <= LT",fontsize=16,color="black",shape="box"];2018 -> 2230[label="",style="solid", color="black", weight=3]; 2019[label="LT <= EQ",fontsize=16,color="black",shape="box"];2019 -> 2231[label="",style="solid", color="black", weight=3]; 2020[label="LT <= GT",fontsize=16,color="black",shape="box"];2020 -> 2232[label="",style="solid", color="black", weight=3]; 2021[label="EQ <= LT",fontsize=16,color="black",shape="box"];2021 -> 2233[label="",style="solid", color="black", weight=3]; 2022[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2022 -> 2234[label="",style="solid", color="black", weight=3]; 2023[label="EQ <= GT",fontsize=16,color="black",shape="box"];2023 -> 2235[label="",style="solid", color="black", weight=3]; 2024[label="GT <= LT",fontsize=16,color="black",shape="box"];2024 -> 2236[label="",style="solid", color="black", weight=3]; 2025[label="GT <= EQ",fontsize=16,color="black",shape="box"];2025 -> 2237[label="",style="solid", color="black", weight=3]; 2026[label="GT <= GT",fontsize=16,color="black",shape="box"];2026 -> 2238[label="",style="solid", color="black", weight=3]; 2027[label="False <= False",fontsize=16,color="black",shape="box"];2027 -> 2239[label="",style="solid", color="black", weight=3]; 2028[label="False <= True",fontsize=16,color="black",shape="box"];2028 -> 2240[label="",style="solid", color="black", weight=3]; 2029[label="True <= False",fontsize=16,color="black",shape="box"];2029 -> 2241[label="",style="solid", color="black", weight=3]; 2030[label="True <= True",fontsize=16,color="black",shape="box"];2030 -> 2242[label="",style="solid", color="black", weight=3]; 2004 -> 162[label="",style="dashed", color="red", weight=0]; 2004[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2004 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2005 -> 163[label="",style="dashed", color="red", weight=0]; 2005[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2005 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2006 -> 164[label="",style="dashed", color="red", weight=0]; 2006[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2006 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2031[label="(vyw440,vyw441) <= (vyw450,vyw451)",fontsize=16,color="black",shape="box"];2031 -> 2249[label="",style="solid", color="black", weight=3]; 2032[label="(vyw440,vyw441,vyw442) <= (vyw450,vyw451,vyw452)",fontsize=16,color="black",shape="box"];2032 -> 2250[label="",style="solid", color="black", weight=3]; 2007 -> 167[label="",style="dashed", color="red", weight=0]; 2007[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2007 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2008 -> 168[label="",style="dashed", color="red", weight=0]; 2008[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2008 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2009 -> 169[label="",style="dashed", color="red", weight=0]; 2009[label="compare vyw44 vyw45",fontsize=16,color="magenta"];2009 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2033[label="GT",fontsize=16,color="green",shape="box"];2034[label="GT",fontsize=16,color="green",shape="box"];2035[label="GT",fontsize=16,color="green",shape="box"];2036[label="vyw99",fontsize=16,color="green",shape="box"];2037[label="vyw101",fontsize=16,color="green",shape="box"];2038[label="vyw99",fontsize=16,color="green",shape="box"];2039[label="vyw101",fontsize=16,color="green",shape="box"];2040[label="vyw99",fontsize=16,color="green",shape="box"];2041[label="vyw101",fontsize=16,color="green",shape="box"];2042[label="vyw99",fontsize=16,color="green",shape="box"];2043[label="vyw101",fontsize=16,color="green",shape="box"];2044[label="vyw99",fontsize=16,color="green",shape="box"];2045[label="vyw101",fontsize=16,color="green",shape="box"];2046[label="vyw99",fontsize=16,color="green",shape="box"];2047[label="vyw101",fontsize=16,color="green",shape="box"];2048[label="vyw99",fontsize=16,color="green",shape="box"];2049[label="vyw101",fontsize=16,color="green",shape="box"];2050[label="vyw99",fontsize=16,color="green",shape="box"];2051[label="vyw101",fontsize=16,color="green",shape="box"];2052[label="vyw99",fontsize=16,color="green",shape="box"];2053[label="vyw101",fontsize=16,color="green",shape="box"];2054[label="vyw99",fontsize=16,color="green",shape="box"];2055[label="vyw101",fontsize=16,color="green",shape="box"];2056[label="vyw99",fontsize=16,color="green",shape="box"];2057[label="vyw101",fontsize=16,color="green",shape="box"];2058[label="vyw99",fontsize=16,color="green",shape="box"];2059[label="vyw101",fontsize=16,color="green",shape="box"];2060[label="vyw99",fontsize=16,color="green",shape="box"];2061[label="vyw101",fontsize=16,color="green",shape="box"];2062[label="vyw99",fontsize=16,color="green",shape="box"];2063[label="vyw101",fontsize=16,color="green",shape="box"];2064[label="vyw100",fontsize=16,color="green",shape="box"];2065[label="vyw98",fontsize=16,color="green",shape="box"];2066[label="vyw100",fontsize=16,color="green",shape="box"];2067[label="vyw98",fontsize=16,color="green",shape="box"];2068[label="vyw100",fontsize=16,color="green",shape="box"];2069[label="vyw98",fontsize=16,color="green",shape="box"];2070[label="vyw100",fontsize=16,color="green",shape="box"];2071[label="vyw98",fontsize=16,color="green",shape="box"];2072[label="vyw100",fontsize=16,color="green",shape="box"];2073[label="vyw98",fontsize=16,color="green",shape="box"];2074[label="vyw100",fontsize=16,color="green",shape="box"];2075[label="vyw98",fontsize=16,color="green",shape="box"];2076[label="vyw100",fontsize=16,color="green",shape="box"];2077[label="vyw98",fontsize=16,color="green",shape="box"];2078[label="vyw100",fontsize=16,color="green",shape="box"];2079[label="vyw98",fontsize=16,color="green",shape="box"];2080[label="vyw100",fontsize=16,color="green",shape="box"];2081[label="vyw98",fontsize=16,color="green",shape="box"];2082[label="vyw100",fontsize=16,color="green",shape="box"];2083[label="vyw98",fontsize=16,color="green",shape="box"];2084[label="vyw100",fontsize=16,color="green",shape="box"];2085[label="vyw98",fontsize=16,color="green",shape="box"];2086[label="vyw100",fontsize=16,color="green",shape="box"];2087[label="vyw98",fontsize=16,color="green",shape="box"];2088[label="vyw100",fontsize=16,color="green",shape="box"];2089[label="vyw98",fontsize=16,color="green",shape="box"];2090[label="vyw100",fontsize=16,color="green",shape="box"];2091[label="vyw98",fontsize=16,color="green",shape="box"];2092[label="compare1 (vyw148,vyw149) (vyw150,vyw151) False",fontsize=16,color="black",shape="box"];2092 -> 2257[label="",style="solid", color="black", weight=3]; 2093[label="compare1 (vyw148,vyw149) (vyw150,vyw151) True",fontsize=16,color="black",shape="box"];2093 -> 2258[label="",style="solid", color="black", weight=3]; 2094[label="True",fontsize=16,color="green",shape="box"];2102[label="vyw82 <= vyw85",fontsize=16,color="blue",shape="box"];3564[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3564[label="",style="solid", color="blue", weight=9]; 3564 -> 2259[label="",style="solid", color="blue", weight=3]; 3565[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3565[label="",style="solid", color="blue", weight=9]; 3565 -> 2260[label="",style="solid", color="blue", weight=3]; 3566[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3566[label="",style="solid", color="blue", weight=9]; 3566 -> 2261[label="",style="solid", color="blue", weight=3]; 3567[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3567[label="",style="solid", color="blue", weight=9]; 3567 -> 2262[label="",style="solid", color="blue", weight=3]; 3568[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3568[label="",style="solid", color="blue", weight=9]; 3568 -> 2263[label="",style="solid", color="blue", weight=3]; 3569[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3569[label="",style="solid", color="blue", weight=9]; 3569 -> 2264[label="",style="solid", color="blue", weight=3]; 3570[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3570[label="",style="solid", color="blue", weight=9]; 3570 -> 2265[label="",style="solid", color="blue", weight=3]; 3571[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3571[label="",style="solid", color="blue", weight=9]; 3571 -> 2266[label="",style="solid", color="blue", weight=3]; 3572[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3572[label="",style="solid", color="blue", weight=9]; 3572 -> 2267[label="",style="solid", color="blue", weight=3]; 3573[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3573[label="",style="solid", color="blue", weight=9]; 3573 -> 2268[label="",style="solid", color="blue", weight=3]; 3574[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3574[label="",style="solid", color="blue", weight=9]; 3574 -> 2269[label="",style="solid", color="blue", weight=3]; 3575[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3575[label="",style="solid", color="blue", weight=9]; 3575 -> 2270[label="",style="solid", color="blue", weight=3]; 3576[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3576[label="",style="solid", color="blue", weight=9]; 3576 -> 2271[label="",style="solid", color="blue", weight=3]; 3577[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3577[label="",style="solid", color="blue", weight=9]; 3577 -> 2272[label="",style="solid", color="blue", weight=3]; 2103[label="vyw81 == vyw84",fontsize=16,color="blue",shape="box"];3578[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3578[label="",style="solid", color="blue", weight=9]; 3578 -> 2273[label="",style="solid", color="blue", weight=3]; 3579[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3579[label="",style="solid", color="blue", weight=9]; 3579 -> 2274[label="",style="solid", color="blue", weight=3]; 3580[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3580[label="",style="solid", color="blue", weight=9]; 3580 -> 2275[label="",style="solid", color="blue", weight=3]; 3581[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3581[label="",style="solid", color="blue", weight=9]; 3581 -> 2276[label="",style="solid", color="blue", weight=3]; 3582[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3582[label="",style="solid", color="blue", weight=9]; 3582 -> 2277[label="",style="solid", color="blue", weight=3]; 3583[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3583[label="",style="solid", color="blue", weight=9]; 3583 -> 2278[label="",style="solid", color="blue", weight=3]; 3584[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3584[label="",style="solid", color="blue", weight=9]; 3584 -> 2279[label="",style="solid", color="blue", weight=3]; 3585[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3585[label="",style="solid", color="blue", weight=9]; 3585 -> 2280[label="",style="solid", color="blue", weight=3]; 3586[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3586[label="",style="solid", color="blue", weight=9]; 3586 -> 2281[label="",style="solid", color="blue", weight=3]; 3587[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3587[label="",style="solid", color="blue", weight=9]; 3587 -> 2282[label="",style="solid", color="blue", weight=3]; 3588[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3588[label="",style="solid", color="blue", weight=9]; 3588 -> 2283[label="",style="solid", color="blue", weight=3]; 3589[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3589[label="",style="solid", color="blue", weight=9]; 3589 -> 2284[label="",style="solid", color="blue", weight=3]; 3590[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3590[label="",style="solid", color="blue", weight=9]; 3590 -> 2285[label="",style="solid", color="blue", weight=3]; 3591[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2103 -> 3591[label="",style="solid", color="blue", weight=9]; 3591 -> 2286[label="",style="solid", color="blue", weight=3]; 2104 -> 21[label="",style="dashed", color="red", weight=0]; 2104[label="vyw81 < vyw84",fontsize=16,color="magenta"];2104 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2105 -> 22[label="",style="dashed", color="red", weight=0]; 2105[label="vyw81 < vyw84",fontsize=16,color="magenta"];2105 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2106 -> 23[label="",style="dashed", color="red", weight=0]; 2106[label="vyw81 < vyw84",fontsize=16,color="magenta"];2106 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2107 -> 24[label="",style="dashed", color="red", weight=0]; 2107[label="vyw81 < vyw84",fontsize=16,color="magenta"];2107 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2107 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2108 -> 25[label="",style="dashed", color="red", weight=0]; 2108[label="vyw81 < vyw84",fontsize=16,color="magenta"];2108 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2109 -> 26[label="",style="dashed", color="red", weight=0]; 2109[label="vyw81 < vyw84",fontsize=16,color="magenta"];2109 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2110 -> 27[label="",style="dashed", color="red", weight=0]; 2110[label="vyw81 < vyw84",fontsize=16,color="magenta"];2110 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2111 -> 28[label="",style="dashed", color="red", weight=0]; 2111[label="vyw81 < vyw84",fontsize=16,color="magenta"];2111 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2112 -> 29[label="",style="dashed", color="red", weight=0]; 2112[label="vyw81 < vyw84",fontsize=16,color="magenta"];2112 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2113 -> 30[label="",style="dashed", color="red", weight=0]; 2113[label="vyw81 < vyw84",fontsize=16,color="magenta"];2113 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2114 -> 31[label="",style="dashed", color="red", weight=0]; 2114[label="vyw81 < vyw84",fontsize=16,color="magenta"];2114 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2115 -> 32[label="",style="dashed", color="red", weight=0]; 2115[label="vyw81 < vyw84",fontsize=16,color="magenta"];2115 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2116 -> 33[label="",style="dashed", color="red", weight=0]; 2116[label="vyw81 < vyw84",fontsize=16,color="magenta"];2116 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2117 -> 34[label="",style="dashed", color="red", weight=0]; 2117[label="vyw81 < vyw84",fontsize=16,color="magenta"];2117 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2118[label="False || vyw177",fontsize=16,color="black",shape="box"];2118 -> 2315[label="",style="solid", color="black", weight=3]; 2119[label="True || vyw177",fontsize=16,color="black",shape="box"];2119 -> 2316[label="",style="solid", color="black", weight=3]; 2120[label="vyw83",fontsize=16,color="green",shape="box"];2121[label="vyw80",fontsize=16,color="green",shape="box"];2122[label="vyw83",fontsize=16,color="green",shape="box"];2123[label="vyw80",fontsize=16,color="green",shape="box"];2124[label="vyw83",fontsize=16,color="green",shape="box"];2125[label="vyw80",fontsize=16,color="green",shape="box"];2126[label="vyw83",fontsize=16,color="green",shape="box"];2127[label="vyw80",fontsize=16,color="green",shape="box"];2128[label="vyw83",fontsize=16,color="green",shape="box"];2129[label="vyw80",fontsize=16,color="green",shape="box"];2130[label="vyw83",fontsize=16,color="green",shape="box"];2131[label="vyw80",fontsize=16,color="green",shape="box"];2132[label="vyw83",fontsize=16,color="green",shape="box"];2133[label="vyw80",fontsize=16,color="green",shape="box"];2134[label="vyw83",fontsize=16,color="green",shape="box"];2135[label="vyw80",fontsize=16,color="green",shape="box"];2136[label="vyw83",fontsize=16,color="green",shape="box"];2137[label="vyw80",fontsize=16,color="green",shape="box"];2138[label="vyw83",fontsize=16,color="green",shape="box"];2139[label="vyw80",fontsize=16,color="green",shape="box"];2140[label="vyw83",fontsize=16,color="green",shape="box"];2141[label="vyw80",fontsize=16,color="green",shape="box"];2142[label="vyw83",fontsize=16,color="green",shape="box"];2143[label="vyw80",fontsize=16,color="green",shape="box"];2144[label="vyw83",fontsize=16,color="green",shape="box"];2145[label="vyw80",fontsize=16,color="green",shape="box"];2146[label="vyw83",fontsize=16,color="green",shape="box"];2147[label="vyw80",fontsize=16,color="green",shape="box"];2148[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) False",fontsize=16,color="black",shape="box"];2148 -> 2317[label="",style="solid", color="black", weight=3]; 2149[label="compare1 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) True",fontsize=16,color="black",shape="box"];2149 -> 2318[label="",style="solid", color="black", weight=3]; 2150[label="True",fontsize=16,color="green",shape="box"];2152 -> 1031[label="",style="dashed", color="red", weight=0]; 2152[label="primMulNat vyw40000 (Succ vyw3100)",fontsize=16,color="magenta"];2152 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2151[label="primPlusNat vyw178 (Succ vyw3100)",fontsize=16,color="burlywood",shape="triangle"];3592[label="vyw178/Succ vyw1780",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3592[label="",style="solid", color="burlywood", weight=9]; 3592 -> 2321[label="",style="solid", color="burlywood", weight=3]; 3593[label="vyw178/Zero",fontsize=10,color="white",style="solid",shape="box"];2151 -> 3593[label="",style="solid", color="burlywood", weight=9]; 3593 -> 2322[label="",style="solid", color="burlywood", weight=3]; 2153 -> 1320[label="",style="dashed", color="red", weight=0]; 2153[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2153 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2154[label="False",fontsize=16,color="green",shape="box"];2155[label="False",fontsize=16,color="green",shape="box"];2156[label="True",fontsize=16,color="green",shape="box"];2157[label="vyw4002",fontsize=16,color="green",shape="box"];2158[label="vyw302",fontsize=16,color="green",shape="box"];2159[label="vyw4002",fontsize=16,color="green",shape="box"];2160[label="vyw302",fontsize=16,color="green",shape="box"];2161[label="vyw4002",fontsize=16,color="green",shape="box"];2162[label="vyw302",fontsize=16,color="green",shape="box"];2163[label="vyw4002",fontsize=16,color="green",shape="box"];2164[label="vyw302",fontsize=16,color="green",shape="box"];2165[label="vyw4002",fontsize=16,color="green",shape="box"];2166[label="vyw302",fontsize=16,color="green",shape="box"];2167[label="vyw4002",fontsize=16,color="green",shape="box"];2168[label="vyw302",fontsize=16,color="green",shape="box"];2169[label="vyw4002",fontsize=16,color="green",shape="box"];2170[label="vyw302",fontsize=16,color="green",shape="box"];2171[label="vyw4002",fontsize=16,color="green",shape="box"];2172[label="vyw302",fontsize=16,color="green",shape="box"];2173[label="vyw4002",fontsize=16,color="green",shape="box"];2174[label="vyw302",fontsize=16,color="green",shape="box"];2175[label="vyw4002",fontsize=16,color="green",shape="box"];2176[label="vyw302",fontsize=16,color="green",shape="box"];2177[label="vyw4002",fontsize=16,color="green",shape="box"];2178[label="vyw302",fontsize=16,color="green",shape="box"];2179[label="vyw4002",fontsize=16,color="green",shape="box"];2180[label="vyw302",fontsize=16,color="green",shape="box"];2181[label="vyw4002",fontsize=16,color="green",shape="box"];2182[label="vyw302",fontsize=16,color="green",shape="box"];2183[label="vyw4002",fontsize=16,color="green",shape="box"];2184[label="vyw302",fontsize=16,color="green",shape="box"];2185[label="vyw4001",fontsize=16,color="green",shape="box"];2186[label="vyw301",fontsize=16,color="green",shape="box"];2187[label="vyw4001",fontsize=16,color="green",shape="box"];2188[label="vyw301",fontsize=16,color="green",shape="box"];2189[label="vyw4001",fontsize=16,color="green",shape="box"];2190[label="vyw301",fontsize=16,color="green",shape="box"];2191[label="vyw4001",fontsize=16,color="green",shape="box"];2192[label="vyw301",fontsize=16,color="green",shape="box"];2193[label="vyw4001",fontsize=16,color="green",shape="box"];2194[label="vyw301",fontsize=16,color="green",shape="box"];2195[label="vyw4001",fontsize=16,color="green",shape="box"];2196[label="vyw301",fontsize=16,color="green",shape="box"];2197[label="vyw4001",fontsize=16,color="green",shape="box"];2198[label="vyw301",fontsize=16,color="green",shape="box"];2199[label="vyw4001",fontsize=16,color="green",shape="box"];2200[label="vyw301",fontsize=16,color="green",shape="box"];2201[label="vyw4001",fontsize=16,color="green",shape="box"];2202[label="vyw301",fontsize=16,color="green",shape="box"];2203[label="vyw4001",fontsize=16,color="green",shape="box"];2204[label="vyw301",fontsize=16,color="green",shape="box"];2205[label="vyw4001",fontsize=16,color="green",shape="box"];2206[label="vyw301",fontsize=16,color="green",shape="box"];2207[label="vyw4001",fontsize=16,color="green",shape="box"];2208[label="vyw301",fontsize=16,color="green",shape="box"];2209[label="vyw4001",fontsize=16,color="green",shape="box"];2210[label="vyw301",fontsize=16,color="green",shape="box"];2211[label="vyw4001",fontsize=16,color="green",shape="box"];2212[label="vyw301",fontsize=16,color="green",shape="box"];2213[label="vyw40000",fontsize=16,color="green",shape="box"];2214[label="vyw3000",fontsize=16,color="green",shape="box"];2215[label="vyw40000",fontsize=16,color="green",shape="box"];2216[label="vyw3000",fontsize=16,color="green",shape="box"];2217[label="vyw45",fontsize=16,color="green",shape="box"];2218[label="vyw44",fontsize=16,color="green",shape="box"];2219 -> 2325[label="",style="dashed", color="red", weight=0]; 2219[label="not (vyw172 == GT)",fontsize=16,color="magenta"];2219 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2220[label="vyw45",fontsize=16,color="green",shape="box"];2221[label="vyw44",fontsize=16,color="green",shape="box"];2222[label="vyw440 <= vyw450",fontsize=16,color="blue",shape="box"];3594[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3594[label="",style="solid", color="blue", weight=9]; 3594 -> 2327[label="",style="solid", color="blue", weight=3]; 3595[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3595[label="",style="solid", color="blue", weight=9]; 3595 -> 2328[label="",style="solid", color="blue", weight=3]; 3596[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3596[label="",style="solid", color="blue", weight=9]; 3596 -> 2329[label="",style="solid", color="blue", weight=3]; 3597[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3597[label="",style="solid", color="blue", weight=9]; 3597 -> 2330[label="",style="solid", color="blue", weight=3]; 3598[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3598[label="",style="solid", color="blue", weight=9]; 3598 -> 2331[label="",style="solid", color="blue", weight=3]; 3599[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3599[label="",style="solid", color="blue", weight=9]; 3599 -> 2332[label="",style="solid", color="blue", weight=3]; 3600[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3600[label="",style="solid", color="blue", weight=9]; 3600 -> 2333[label="",style="solid", color="blue", weight=3]; 3601[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3601[label="",style="solid", color="blue", weight=9]; 3601 -> 2334[label="",style="solid", color="blue", weight=3]; 3602[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3602[label="",style="solid", color="blue", weight=9]; 3602 -> 2335[label="",style="solid", color="blue", weight=3]; 3603[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3603[label="",style="solid", color="blue", weight=9]; 3603 -> 2336[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"];2222 -> 3604[label="",style="solid", color="blue", weight=9]; 3604 -> 2337[label="",style="solid", color="blue", weight=3]; 3605[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3605[label="",style="solid", color="blue", weight=9]; 3605 -> 2338[label="",style="solid", color="blue", weight=3]; 3606[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3606[label="",style="solid", color="blue", weight=9]; 3606 -> 2339[label="",style="solid", color="blue", weight=3]; 3607[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2222 -> 3607[label="",style="solid", color="blue", weight=9]; 3607 -> 2340[label="",style="solid", color="blue", weight=3]; 2223[label="True",fontsize=16,color="green",shape="box"];2224[label="False",fontsize=16,color="green",shape="box"];2225[label="vyw440 <= vyw450",fontsize=16,color="blue",shape="box"];3608[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3608[label="",style="solid", color="blue", weight=9]; 3608 -> 2341[label="",style="solid", color="blue", weight=3]; 3609[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3609[label="",style="solid", color="blue", weight=9]; 3609 -> 2342[label="",style="solid", color="blue", weight=3]; 3610[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3610[label="",style="solid", color="blue", weight=9]; 3610 -> 2343[label="",style="solid", color="blue", weight=3]; 3611[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3611[label="",style="solid", color="blue", weight=9]; 3611 -> 2344[label="",style="solid", color="blue", weight=3]; 3612[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3612[label="",style="solid", color="blue", weight=9]; 3612 -> 2345[label="",style="solid", color="blue", weight=3]; 3613[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3613[label="",style="solid", color="blue", weight=9]; 3613 -> 2346[label="",style="solid", color="blue", weight=3]; 3614[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3614[label="",style="solid", color="blue", weight=9]; 3614 -> 2347[label="",style="solid", color="blue", weight=3]; 3615[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3615[label="",style="solid", color="blue", weight=9]; 3615 -> 2348[label="",style="solid", color="blue", weight=3]; 3616[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3616[label="",style="solid", color="blue", weight=9]; 3616 -> 2349[label="",style="solid", color="blue", weight=3]; 3617[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3617[label="",style="solid", color="blue", weight=9]; 3617 -> 2350[label="",style="solid", color="blue", weight=3]; 3618[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3618[label="",style="solid", color="blue", weight=9]; 3618 -> 2351[label="",style="solid", color="blue", weight=3]; 3619[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3619[label="",style="solid", color="blue", weight=9]; 3619 -> 2352[label="",style="solid", color="blue", weight=3]; 3620[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3620[label="",style="solid", color="blue", weight=9]; 3620 -> 2353[label="",style="solid", color="blue", weight=3]; 3621[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3621[label="",style="solid", color="blue", weight=9]; 3621 -> 2354[label="",style="solid", color="blue", weight=3]; 2226[label="True",fontsize=16,color="green",shape="box"];2227[label="True",fontsize=16,color="green",shape="box"];2228[label="False",fontsize=16,color="green",shape="box"];2229[label="vyw440 <= vyw450",fontsize=16,color="blue",shape="box"];3622[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3622[label="",style="solid", color="blue", weight=9]; 3622 -> 2355[label="",style="solid", color="blue", weight=3]; 3623[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3623[label="",style="solid", color="blue", weight=9]; 3623 -> 2356[label="",style="solid", color="blue", weight=3]; 3624[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3624[label="",style="solid", color="blue", weight=9]; 3624 -> 2357[label="",style="solid", color="blue", weight=3]; 3625[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3625[label="",style="solid", color="blue", weight=9]; 3625 -> 2358[label="",style="solid", color="blue", weight=3]; 3626[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3626[label="",style="solid", color="blue", weight=9]; 3626 -> 2359[label="",style="solid", color="blue", weight=3]; 3627[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3627[label="",style="solid", color="blue", weight=9]; 3627 -> 2360[label="",style="solid", color="blue", weight=3]; 3628[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3628[label="",style="solid", color="blue", weight=9]; 3628 -> 2361[label="",style="solid", color="blue", weight=3]; 3629[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3629[label="",style="solid", color="blue", weight=9]; 3629 -> 2362[label="",style="solid", color="blue", weight=3]; 3630[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3630[label="",style="solid", color="blue", weight=9]; 3630 -> 2363[label="",style="solid", color="blue", weight=3]; 3631[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3631[label="",style="solid", color="blue", weight=9]; 3631 -> 2364[label="",style="solid", color="blue", weight=3]; 3632[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3632[label="",style="solid", color="blue", weight=9]; 3632 -> 2365[label="",style="solid", color="blue", weight=3]; 3633[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3633[label="",style="solid", color="blue", weight=9]; 3633 -> 2366[label="",style="solid", color="blue", weight=3]; 3634[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3634[label="",style="solid", color="blue", weight=9]; 3634 -> 2367[label="",style="solid", color="blue", weight=3]; 3635[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2229 -> 3635[label="",style="solid", color="blue", weight=9]; 3635 -> 2368[label="",style="solid", color="blue", weight=3]; 2230[label="True",fontsize=16,color="green",shape="box"];2231[label="True",fontsize=16,color="green",shape="box"];2232[label="True",fontsize=16,color="green",shape="box"];2233[label="False",fontsize=16,color="green",shape="box"];2234[label="True",fontsize=16,color="green",shape="box"];2235[label="True",fontsize=16,color="green",shape="box"];2236[label="False",fontsize=16,color="green",shape="box"];2237[label="False",fontsize=16,color="green",shape="box"];2238[label="True",fontsize=16,color="green",shape="box"];2239[label="True",fontsize=16,color="green",shape="box"];2240[label="True",fontsize=16,color="green",shape="box"];2241[label="False",fontsize=16,color="green",shape="box"];2242[label="True",fontsize=16,color="green",shape="box"];2243[label="vyw45",fontsize=16,color="green",shape="box"];2244[label="vyw44",fontsize=16,color="green",shape="box"];2245[label="vyw45",fontsize=16,color="green",shape="box"];2246[label="vyw44",fontsize=16,color="green",shape="box"];2247[label="vyw45",fontsize=16,color="green",shape="box"];2248[label="vyw44",fontsize=16,color="green",shape="box"];2249 -> 2097[label="",style="dashed", color="red", weight=0]; 2249[label="vyw440 < vyw450 || vyw440 == vyw450 && vyw441 <= vyw451",fontsize=16,color="magenta"];2249 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2097[label="",style="dashed", color="red", weight=0]; 2250[label="vyw440 < vyw450 || vyw440 == vyw450 && (vyw441 < vyw451 || vyw441 == vyw451 && vyw442 <= vyw452)",fontsize=16,color="magenta"];2250 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2251[label="vyw45",fontsize=16,color="green",shape="box"];2252[label="vyw44",fontsize=16,color="green",shape="box"];2253[label="vyw45",fontsize=16,color="green",shape="box"];2254[label="vyw44",fontsize=16,color="green",shape="box"];2255[label="vyw45",fontsize=16,color="green",shape="box"];2256[label="vyw44",fontsize=16,color="green",shape="box"];2257[label="compare0 (vyw148,vyw149) (vyw150,vyw151) otherwise",fontsize=16,color="black",shape="box"];2257 -> 2373[label="",style="solid", color="black", weight=3]; 2258[label="LT",fontsize=16,color="green",shape="box"];2259 -> 1353[label="",style="dashed", color="red", weight=0]; 2259[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2259 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1354[label="",style="dashed", color="red", weight=0]; 2260[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2260 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1355[label="",style="dashed", color="red", weight=0]; 2261[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2261 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1356[label="",style="dashed", color="red", weight=0]; 2262[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2262 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1357[label="",style="dashed", color="red", weight=0]; 2263[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2263 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1358[label="",style="dashed", color="red", weight=0]; 2264[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2264 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1359[label="",style="dashed", color="red", weight=0]; 2265[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2265 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1360[label="",style="dashed", color="red", weight=0]; 2266[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2266 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1361[label="",style="dashed", color="red", weight=0]; 2267[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2267 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1362[label="",style="dashed", color="red", weight=0]; 2268[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2268 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1363[label="",style="dashed", color="red", weight=0]; 2269[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2269 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1364[label="",style="dashed", color="red", weight=0]; 2270[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2270 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1365[label="",style="dashed", color="red", weight=0]; 2271[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2271 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1366[label="",style="dashed", color="red", weight=0]; 2272[label="vyw82 <= vyw85",fontsize=16,color="magenta"];2272 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2273 -> 487[label="",style="dashed", color="red", weight=0]; 2273[label="vyw81 == vyw84",fontsize=16,color="magenta"];2273 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2274 -> 496[label="",style="dashed", color="red", weight=0]; 2274[label="vyw81 == vyw84",fontsize=16,color="magenta"];2274 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2275 -> 488[label="",style="dashed", color="red", weight=0]; 2275[label="vyw81 == vyw84",fontsize=16,color="magenta"];2275 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2276 -> 494[label="",style="dashed", color="red", weight=0]; 2276[label="vyw81 == vyw84",fontsize=16,color="magenta"];2276 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2277 -> 493[label="",style="dashed", color="red", weight=0]; 2277[label="vyw81 == vyw84",fontsize=16,color="magenta"];2277 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2278 -> 489[label="",style="dashed", color="red", weight=0]; 2278[label="vyw81 == vyw84",fontsize=16,color="magenta"];2278 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2279 -> 499[label="",style="dashed", color="red", weight=0]; 2279[label="vyw81 == vyw84",fontsize=16,color="magenta"];2279 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2280 -> 490[label="",style="dashed", color="red", weight=0]; 2280[label="vyw81 == vyw84",fontsize=16,color="magenta"];2280 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2281 -> 492[label="",style="dashed", color="red", weight=0]; 2281[label="vyw81 == vyw84",fontsize=16,color="magenta"];2281 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2282 -> 491[label="",style="dashed", color="red", weight=0]; 2282[label="vyw81 == vyw84",fontsize=16,color="magenta"];2282 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2283 -> 497[label="",style="dashed", color="red", weight=0]; 2283[label="vyw81 == vyw84",fontsize=16,color="magenta"];2283 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2284 -> 500[label="",style="dashed", color="red", weight=0]; 2284[label="vyw81 == vyw84",fontsize=16,color="magenta"];2284 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2285 -> 495[label="",style="dashed", color="red", weight=0]; 2285[label="vyw81 == vyw84",fontsize=16,color="magenta"];2285 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2286 -> 498[label="",style="dashed", color="red", weight=0]; 2286[label="vyw81 == vyw84",fontsize=16,color="magenta"];2286 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2287[label="vyw84",fontsize=16,color="green",shape="box"];2288[label="vyw81",fontsize=16,color="green",shape="box"];2289[label="vyw84",fontsize=16,color="green",shape="box"];2290[label="vyw81",fontsize=16,color="green",shape="box"];2291[label="vyw84",fontsize=16,color="green",shape="box"];2292[label="vyw81",fontsize=16,color="green",shape="box"];2293[label="vyw84",fontsize=16,color="green",shape="box"];2294[label="vyw81",fontsize=16,color="green",shape="box"];2295[label="vyw84",fontsize=16,color="green",shape="box"];2296[label="vyw81",fontsize=16,color="green",shape="box"];2297[label="vyw84",fontsize=16,color="green",shape="box"];2298[label="vyw81",fontsize=16,color="green",shape="box"];2299[label="vyw84",fontsize=16,color="green",shape="box"];2300[label="vyw81",fontsize=16,color="green",shape="box"];2301[label="vyw84",fontsize=16,color="green",shape="box"];2302[label="vyw81",fontsize=16,color="green",shape="box"];2303[label="vyw84",fontsize=16,color="green",shape="box"];2304[label="vyw81",fontsize=16,color="green",shape="box"];2305[label="vyw84",fontsize=16,color="green",shape="box"];2306[label="vyw81",fontsize=16,color="green",shape="box"];2307[label="vyw84",fontsize=16,color="green",shape="box"];2308[label="vyw81",fontsize=16,color="green",shape="box"];2309[label="vyw84",fontsize=16,color="green",shape="box"];2310[label="vyw81",fontsize=16,color="green",shape="box"];2311[label="vyw84",fontsize=16,color="green",shape="box"];2312[label="vyw81",fontsize=16,color="green",shape="box"];2313[label="vyw84",fontsize=16,color="green",shape="box"];2314[label="vyw81",fontsize=16,color="green",shape="box"];2315[label="vyw177",fontsize=16,color="green",shape="box"];2316[label="True",fontsize=16,color="green",shape="box"];2317[label="compare0 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) otherwise",fontsize=16,color="black",shape="box"];2317 -> 2430[label="",style="solid", color="black", weight=3]; 2318[label="LT",fontsize=16,color="green",shape="box"];2319[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2320[label="vyw40000",fontsize=16,color="green",shape="box"];2321[label="primPlusNat (Succ vyw1780) (Succ vyw3100)",fontsize=16,color="black",shape="box"];2321 -> 2431[label="",style="solid", color="black", weight=3]; 2322[label="primPlusNat Zero (Succ vyw3100)",fontsize=16,color="black",shape="box"];2322 -> 2432[label="",style="solid", color="black", weight=3]; 2323[label="vyw40000",fontsize=16,color="green",shape="box"];2324[label="vyw3000",fontsize=16,color="green",shape="box"];2326 -> 493[label="",style="dashed", color="red", weight=0]; 2326[label="vyw172 == GT",fontsize=16,color="magenta"];2326 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2325[label="not vyw179",fontsize=16,color="burlywood",shape="triangle"];3636[label="vyw179/False",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3636[label="",style="solid", color="burlywood", weight=9]; 3636 -> 2435[label="",style="solid", color="burlywood", weight=3]; 3637[label="vyw179/True",fontsize=10,color="white",style="solid",shape="box"];2325 -> 3637[label="",style="solid", color="burlywood", weight=9]; 3637 -> 2436[label="",style="solid", color="burlywood", weight=3]; 2327 -> 1353[label="",style="dashed", color="red", weight=0]; 2327[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2327 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2328 -> 1354[label="",style="dashed", color="red", weight=0]; 2328[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2328 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2329 -> 1355[label="",style="dashed", color="red", weight=0]; 2329[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2329 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2330 -> 1356[label="",style="dashed", color="red", weight=0]; 2330[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2330 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2331 -> 1357[label="",style="dashed", color="red", weight=0]; 2331[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2331 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2332 -> 1358[label="",style="dashed", color="red", weight=0]; 2332[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2332 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2333 -> 1359[label="",style="dashed", color="red", weight=0]; 2333[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2333 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2334 -> 1360[label="",style="dashed", color="red", weight=0]; 2334[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2334 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2335 -> 1361[label="",style="dashed", color="red", weight=0]; 2335[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2335 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2336 -> 1362[label="",style="dashed", color="red", weight=0]; 2336[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2336 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2337 -> 1363[label="",style="dashed", color="red", weight=0]; 2337[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2337 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2338 -> 1364[label="",style="dashed", color="red", weight=0]; 2338[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2338 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2339 -> 1365[label="",style="dashed", color="red", weight=0]; 2339[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2339 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2340 -> 1366[label="",style="dashed", color="red", weight=0]; 2340[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2340 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2341 -> 1353[label="",style="dashed", color="red", weight=0]; 2341[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2341 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2342 -> 1354[label="",style="dashed", color="red", weight=0]; 2342[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2342 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2343 -> 1355[label="",style="dashed", color="red", weight=0]; 2343[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2343 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2344 -> 1356[label="",style="dashed", color="red", weight=0]; 2344[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2344 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2345 -> 1357[label="",style="dashed", color="red", weight=0]; 2345[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2345 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2346 -> 1358[label="",style="dashed", color="red", weight=0]; 2346[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2346 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2347 -> 1359[label="",style="dashed", color="red", weight=0]; 2347[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2347 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2348 -> 1360[label="",style="dashed", color="red", weight=0]; 2348[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2348 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2349 -> 1361[label="",style="dashed", color="red", weight=0]; 2349[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2349 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2350 -> 1362[label="",style="dashed", color="red", weight=0]; 2350[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2350 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2351 -> 1363[label="",style="dashed", color="red", weight=0]; 2351[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2351 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2352 -> 1364[label="",style="dashed", color="red", weight=0]; 2352[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2352 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2353 -> 1365[label="",style="dashed", color="red", weight=0]; 2353[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2353 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2354 -> 1366[label="",style="dashed", color="red", weight=0]; 2354[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2354 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2355 -> 1353[label="",style="dashed", color="red", weight=0]; 2355[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2355 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2356 -> 1354[label="",style="dashed", color="red", weight=0]; 2356[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2356 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1355[label="",style="dashed", color="red", weight=0]; 2357[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2357 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1356[label="",style="dashed", color="red", weight=0]; 2358[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2358 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1357[label="",style="dashed", color="red", weight=0]; 2359[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2359 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1358[label="",style="dashed", color="red", weight=0]; 2360[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2360 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1359[label="",style="dashed", color="red", weight=0]; 2361[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2361 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1360[label="",style="dashed", color="red", weight=0]; 2362[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2362 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1361[label="",style="dashed", color="red", weight=0]; 2363[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2363 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1362[label="",style="dashed", color="red", weight=0]; 2364[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2364 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1363[label="",style="dashed", color="red", weight=0]; 2365[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2365 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1364[label="",style="dashed", color="red", weight=0]; 2366[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2366 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2367 -> 1365[label="",style="dashed", color="red", weight=0]; 2367[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2367 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2367 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2368 -> 1366[label="",style="dashed", color="red", weight=0]; 2368[label="vyw440 <= vyw450",fontsize=16,color="magenta"];2368 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2368 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2369 -> 970[label="",style="dashed", color="red", weight=0]; 2369[label="vyw440 == vyw450 && vyw441 <= vyw451",fontsize=16,color="magenta"];2369 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2369 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2370[label="vyw440 < vyw450",fontsize=16,color="blue",shape="box"];3638[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3638[label="",style="solid", color="blue", weight=9]; 3638 -> 2523[label="",style="solid", color="blue", weight=3]; 3639[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3639[label="",style="solid", color="blue", weight=9]; 3639 -> 2524[label="",style="solid", color="blue", weight=3]; 3640[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3640[label="",style="solid", color="blue", weight=9]; 3640 -> 2525[label="",style="solid", color="blue", weight=3]; 3641[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3641[label="",style="solid", color="blue", weight=9]; 3641 -> 2526[label="",style="solid", color="blue", weight=3]; 3642[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3642[label="",style="solid", color="blue", weight=9]; 3642 -> 2527[label="",style="solid", color="blue", weight=3]; 3643[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3643[label="",style="solid", color="blue", weight=9]; 3643 -> 2528[label="",style="solid", color="blue", weight=3]; 3644[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3644[label="",style="solid", color="blue", weight=9]; 3644 -> 2529[label="",style="solid", color="blue", weight=3]; 3645[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3645[label="",style="solid", color="blue", weight=9]; 3645 -> 2530[label="",style="solid", color="blue", weight=3]; 3646[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3646[label="",style="solid", color="blue", weight=9]; 3646 -> 2531[label="",style="solid", color="blue", weight=3]; 3647[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3647[label="",style="solid", color="blue", weight=9]; 3647 -> 2532[label="",style="solid", color="blue", weight=3]; 3648[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3648[label="",style="solid", color="blue", weight=9]; 3648 -> 2533[label="",style="solid", color="blue", weight=3]; 3649[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3649[label="",style="solid", color="blue", weight=9]; 3649 -> 2534[label="",style="solid", color="blue", weight=3]; 3650[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3650[label="",style="solid", color="blue", weight=9]; 3650 -> 2535[label="",style="solid", color="blue", weight=3]; 3651[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2370 -> 3651[label="",style="solid", color="blue", weight=9]; 3651 -> 2536[label="",style="solid", color="blue", weight=3]; 2371 -> 970[label="",style="dashed", color="red", weight=0]; 2371[label="vyw440 == vyw450 && (vyw441 < vyw451 || vyw441 == vyw451 && vyw442 <= vyw452)",fontsize=16,color="magenta"];2371 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2371 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2372[label="vyw440 < vyw450",fontsize=16,color="blue",shape="box"];3652[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3652[label="",style="solid", color="blue", weight=9]; 3652 -> 2539[label="",style="solid", color="blue", weight=3]; 3653[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3653[label="",style="solid", color="blue", weight=9]; 3653 -> 2540[label="",style="solid", color="blue", weight=3]; 3654[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3654[label="",style="solid", color="blue", weight=9]; 3654 -> 2541[label="",style="solid", color="blue", weight=3]; 3655[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3655[label="",style="solid", color="blue", weight=9]; 3655 -> 2542[label="",style="solid", color="blue", weight=3]; 3656[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3656[label="",style="solid", color="blue", weight=9]; 3656 -> 2543[label="",style="solid", color="blue", weight=3]; 3657[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3657[label="",style="solid", color="blue", weight=9]; 3657 -> 2544[label="",style="solid", color="blue", weight=3]; 3658[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3658[label="",style="solid", color="blue", weight=9]; 3658 -> 2545[label="",style="solid", color="blue", weight=3]; 3659[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3659[label="",style="solid", color="blue", weight=9]; 3659 -> 2546[label="",style="solid", color="blue", weight=3]; 3660[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3660[label="",style="solid", color="blue", weight=9]; 3660 -> 2547[label="",style="solid", color="blue", weight=3]; 3661[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3661[label="",style="solid", color="blue", weight=9]; 3661 -> 2548[label="",style="solid", color="blue", weight=3]; 3662[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3662[label="",style="solid", color="blue", weight=9]; 3662 -> 2549[label="",style="solid", color="blue", weight=3]; 3663[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3663[label="",style="solid", color="blue", weight=9]; 3663 -> 2550[label="",style="solid", color="blue", weight=3]; 3664[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3664[label="",style="solid", color="blue", weight=9]; 3664 -> 2551[label="",style="solid", color="blue", weight=3]; 3665[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2372 -> 3665[label="",style="solid", color="blue", weight=9]; 3665 -> 2552[label="",style="solid", color="blue", weight=3]; 2373[label="compare0 (vyw148,vyw149) (vyw150,vyw151) True",fontsize=16,color="black",shape="box"];2373 -> 2553[label="",style="solid", color="black", weight=3]; 2374[label="vyw82",fontsize=16,color="green",shape="box"];2375[label="vyw85",fontsize=16,color="green",shape="box"];2376[label="vyw82",fontsize=16,color="green",shape="box"];2377[label="vyw85",fontsize=16,color="green",shape="box"];2378[label="vyw82",fontsize=16,color="green",shape="box"];2379[label="vyw85",fontsize=16,color="green",shape="box"];2380[label="vyw82",fontsize=16,color="green",shape="box"];2381[label="vyw85",fontsize=16,color="green",shape="box"];2382[label="vyw82",fontsize=16,color="green",shape="box"];2383[label="vyw85",fontsize=16,color="green",shape="box"];2384[label="vyw82",fontsize=16,color="green",shape="box"];2385[label="vyw85",fontsize=16,color="green",shape="box"];2386[label="vyw82",fontsize=16,color="green",shape="box"];2387[label="vyw85",fontsize=16,color="green",shape="box"];2388[label="vyw82",fontsize=16,color="green",shape="box"];2389[label="vyw85",fontsize=16,color="green",shape="box"];2390[label="vyw82",fontsize=16,color="green",shape="box"];2391[label="vyw85",fontsize=16,color="green",shape="box"];2392[label="vyw82",fontsize=16,color="green",shape="box"];2393[label="vyw85",fontsize=16,color="green",shape="box"];2394[label="vyw82",fontsize=16,color="green",shape="box"];2395[label="vyw85",fontsize=16,color="green",shape="box"];2396[label="vyw82",fontsize=16,color="green",shape="box"];2397[label="vyw85",fontsize=16,color="green",shape="box"];2398[label="vyw82",fontsize=16,color="green",shape="box"];2399[label="vyw85",fontsize=16,color="green",shape="box"];2400[label="vyw82",fontsize=16,color="green",shape="box"];2401[label="vyw85",fontsize=16,color="green",shape="box"];2402[label="vyw84",fontsize=16,color="green",shape="box"];2403[label="vyw81",fontsize=16,color="green",shape="box"];2404[label="vyw84",fontsize=16,color="green",shape="box"];2405[label="vyw81",fontsize=16,color="green",shape="box"];2406[label="vyw84",fontsize=16,color="green",shape="box"];2407[label="vyw81",fontsize=16,color="green",shape="box"];2408[label="vyw84",fontsize=16,color="green",shape="box"];2409[label="vyw81",fontsize=16,color="green",shape="box"];2410[label="vyw84",fontsize=16,color="green",shape="box"];2411[label="vyw81",fontsize=16,color="green",shape="box"];2412[label="vyw84",fontsize=16,color="green",shape="box"];2413[label="vyw81",fontsize=16,color="green",shape="box"];2414[label="vyw84",fontsize=16,color="green",shape="box"];2415[label="vyw81",fontsize=16,color="green",shape="box"];2416[label="vyw84",fontsize=16,color="green",shape="box"];2417[label="vyw81",fontsize=16,color="green",shape="box"];2418[label="vyw84",fontsize=16,color="green",shape="box"];2419[label="vyw81",fontsize=16,color="green",shape="box"];2420[label="vyw84",fontsize=16,color="green",shape="box"];2421[label="vyw81",fontsize=16,color="green",shape="box"];2422[label="vyw84",fontsize=16,color="green",shape="box"];2423[label="vyw81",fontsize=16,color="green",shape="box"];2424[label="vyw84",fontsize=16,color="green",shape="box"];2425[label="vyw81",fontsize=16,color="green",shape="box"];2426[label="vyw84",fontsize=16,color="green",shape="box"];2427[label="vyw81",fontsize=16,color="green",shape="box"];2428[label="vyw84",fontsize=16,color="green",shape="box"];2429[label="vyw81",fontsize=16,color="green",shape="box"];2430[label="compare0 (vyw163,vyw164,vyw165) (vyw166,vyw167,vyw168) True",fontsize=16,color="black",shape="box"];2430 -> 2554[label="",style="solid", color="black", weight=3]; 2431[label="Succ (Succ (primPlusNat vyw1780 vyw3100))",fontsize=16,color="green",shape="box"];2431 -> 2555[label="",style="dashed", color="green", weight=3]; 2432[label="Succ vyw3100",fontsize=16,color="green",shape="box"];2433[label="GT",fontsize=16,color="green",shape="box"];2434[label="vyw172",fontsize=16,color="green",shape="box"];2435[label="not False",fontsize=16,color="black",shape="box"];2435 -> 2556[label="",style="solid", color="black", weight=3]; 2436[label="not True",fontsize=16,color="black",shape="box"];2436 -> 2557[label="",style="solid", color="black", weight=3]; 2437[label="vyw440",fontsize=16,color="green",shape="box"];2438[label="vyw450",fontsize=16,color="green",shape="box"];2439[label="vyw440",fontsize=16,color="green",shape="box"];2440[label="vyw450",fontsize=16,color="green",shape="box"];2441[label="vyw440",fontsize=16,color="green",shape="box"];2442[label="vyw450",fontsize=16,color="green",shape="box"];2443[label="vyw440",fontsize=16,color="green",shape="box"];2444[label="vyw450",fontsize=16,color="green",shape="box"];2445[label="vyw440",fontsize=16,color="green",shape="box"];2446[label="vyw450",fontsize=16,color="green",shape="box"];2447[label="vyw440",fontsize=16,color="green",shape="box"];2448[label="vyw450",fontsize=16,color="green",shape="box"];2449[label="vyw440",fontsize=16,color="green",shape="box"];2450[label="vyw450",fontsize=16,color="green",shape="box"];2451[label="vyw440",fontsize=16,color="green",shape="box"];2452[label="vyw450",fontsize=16,color="green",shape="box"];2453[label="vyw440",fontsize=16,color="green",shape="box"];2454[label="vyw450",fontsize=16,color="green",shape="box"];2455[label="vyw440",fontsize=16,color="green",shape="box"];2456[label="vyw450",fontsize=16,color="green",shape="box"];2457[label="vyw440",fontsize=16,color="green",shape="box"];2458[label="vyw450",fontsize=16,color="green",shape="box"];2459[label="vyw440",fontsize=16,color="green",shape="box"];2460[label="vyw450",fontsize=16,color="green",shape="box"];2461[label="vyw440",fontsize=16,color="green",shape="box"];2462[label="vyw450",fontsize=16,color="green",shape="box"];2463[label="vyw440",fontsize=16,color="green",shape="box"];2464[label="vyw450",fontsize=16,color="green",shape="box"];2465[label="vyw440",fontsize=16,color="green",shape="box"];2466[label="vyw450",fontsize=16,color="green",shape="box"];2467[label="vyw440",fontsize=16,color="green",shape="box"];2468[label="vyw450",fontsize=16,color="green",shape="box"];2469[label="vyw440",fontsize=16,color="green",shape="box"];2470[label="vyw450",fontsize=16,color="green",shape="box"];2471[label="vyw440",fontsize=16,color="green",shape="box"];2472[label="vyw450",fontsize=16,color="green",shape="box"];2473[label="vyw440",fontsize=16,color="green",shape="box"];2474[label="vyw450",fontsize=16,color="green",shape="box"];2475[label="vyw440",fontsize=16,color="green",shape="box"];2476[label="vyw450",fontsize=16,color="green",shape="box"];2477[label="vyw440",fontsize=16,color="green",shape="box"];2478[label="vyw450",fontsize=16,color="green",shape="box"];2479[label="vyw440",fontsize=16,color="green",shape="box"];2480[label="vyw450",fontsize=16,color="green",shape="box"];2481[label="vyw440",fontsize=16,color="green",shape="box"];2482[label="vyw450",fontsize=16,color="green",shape="box"];2483[label="vyw440",fontsize=16,color="green",shape="box"];2484[label="vyw450",fontsize=16,color="green",shape="box"];2485[label="vyw440",fontsize=16,color="green",shape="box"];2486[label="vyw450",fontsize=16,color="green",shape="box"];2487[label="vyw440",fontsize=16,color="green",shape="box"];2488[label="vyw450",fontsize=16,color="green",shape="box"];2489[label="vyw440",fontsize=16,color="green",shape="box"];2490[label="vyw450",fontsize=16,color="green",shape="box"];2491[label="vyw440",fontsize=16,color="green",shape="box"];2492[label="vyw450",fontsize=16,color="green",shape="box"];2493[label="vyw440",fontsize=16,color="green",shape="box"];2494[label="vyw450",fontsize=16,color="green",shape="box"];2495[label="vyw440",fontsize=16,color="green",shape="box"];2496[label="vyw450",fontsize=16,color="green",shape="box"];2497[label="vyw440",fontsize=16,color="green",shape="box"];2498[label="vyw450",fontsize=16,color="green",shape="box"];2499[label="vyw440",fontsize=16,color="green",shape="box"];2500[label="vyw450",fontsize=16,color="green",shape="box"];2501[label="vyw440",fontsize=16,color="green",shape="box"];2502[label="vyw450",fontsize=16,color="green",shape="box"];2503[label="vyw440",fontsize=16,color="green",shape="box"];2504[label="vyw450",fontsize=16,color="green",shape="box"];2505[label="vyw440",fontsize=16,color="green",shape="box"];2506[label="vyw450",fontsize=16,color="green",shape="box"];2507[label="vyw440",fontsize=16,color="green",shape="box"];2508[label="vyw450",fontsize=16,color="green",shape="box"];2509[label="vyw440",fontsize=16,color="green",shape="box"];2510[label="vyw450",fontsize=16,color="green",shape="box"];2511[label="vyw440",fontsize=16,color="green",shape="box"];2512[label="vyw450",fontsize=16,color="green",shape="box"];2513[label="vyw440",fontsize=16,color="green",shape="box"];2514[label="vyw450",fontsize=16,color="green",shape="box"];2515[label="vyw440",fontsize=16,color="green",shape="box"];2516[label="vyw450",fontsize=16,color="green",shape="box"];2517[label="vyw440",fontsize=16,color="green",shape="box"];2518[label="vyw450",fontsize=16,color="green",shape="box"];2519[label="vyw440",fontsize=16,color="green",shape="box"];2520[label="vyw450",fontsize=16,color="green",shape="box"];2521[label="vyw441 <= vyw451",fontsize=16,color="blue",shape="box"];3666[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3666[label="",style="solid", color="blue", weight=9]; 3666 -> 2558[label="",style="solid", color="blue", weight=3]; 3667[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3667[label="",style="solid", color="blue", weight=9]; 3667 -> 2559[label="",style="solid", color="blue", weight=3]; 3668[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3668[label="",style="solid", color="blue", weight=9]; 3668 -> 2560[label="",style="solid", color="blue", weight=3]; 3669[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3669[label="",style="solid", color="blue", weight=9]; 3669 -> 2561[label="",style="solid", color="blue", weight=3]; 3670[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3670[label="",style="solid", color="blue", weight=9]; 3670 -> 2562[label="",style="solid", color="blue", weight=3]; 3671[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3671[label="",style="solid", color="blue", weight=9]; 3671 -> 2563[label="",style="solid", color="blue", weight=3]; 3672[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3672[label="",style="solid", color="blue", weight=9]; 3672 -> 2564[label="",style="solid", color="blue", weight=3]; 3673[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3673[label="",style="solid", color="blue", weight=9]; 3673 -> 2565[label="",style="solid", color="blue", weight=3]; 3674[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3674[label="",style="solid", color="blue", weight=9]; 3674 -> 2566[label="",style="solid", color="blue", weight=3]; 3675[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3675[label="",style="solid", color="blue", weight=9]; 3675 -> 2567[label="",style="solid", color="blue", weight=3]; 3676[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3676[label="",style="solid", color="blue", weight=9]; 3676 -> 2568[label="",style="solid", color="blue", weight=3]; 3677[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3677[label="",style="solid", color="blue", weight=9]; 3677 -> 2569[label="",style="solid", color="blue", weight=3]; 3678[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3678[label="",style="solid", color="blue", weight=9]; 3678 -> 2570[label="",style="solid", color="blue", weight=3]; 3679[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2521 -> 3679[label="",style="solid", color="blue", weight=9]; 3679 -> 2571[label="",style="solid", color="blue", weight=3]; 2522[label="vyw440 == vyw450",fontsize=16,color="blue",shape="box"];3680[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3680[label="",style="solid", color="blue", weight=9]; 3680 -> 2572[label="",style="solid", color="blue", weight=3]; 3681[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3681[label="",style="solid", color="blue", weight=9]; 3681 -> 2573[label="",style="solid", color="blue", weight=3]; 3682[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3682[label="",style="solid", color="blue", weight=9]; 3682 -> 2574[label="",style="solid", color="blue", weight=3]; 3683[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3683[label="",style="solid", color="blue", weight=9]; 3683 -> 2575[label="",style="solid", color="blue", weight=3]; 3684[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3684[label="",style="solid", color="blue", weight=9]; 3684 -> 2576[label="",style="solid", color="blue", weight=3]; 3685[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3685[label="",style="solid", color="blue", weight=9]; 3685 -> 2577[label="",style="solid", color="blue", weight=3]; 3686[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3686[label="",style="solid", color="blue", weight=9]; 3686 -> 2578[label="",style="solid", color="blue", weight=3]; 3687[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3687[label="",style="solid", color="blue", weight=9]; 3687 -> 2579[label="",style="solid", color="blue", weight=3]; 3688[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3688[label="",style="solid", color="blue", weight=9]; 3688 -> 2580[label="",style="solid", color="blue", weight=3]; 3689[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3689[label="",style="solid", color="blue", weight=9]; 3689 -> 2581[label="",style="solid", color="blue", weight=3]; 3690[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3690[label="",style="solid", color="blue", weight=9]; 3690 -> 2582[label="",style="solid", color="blue", weight=3]; 3691[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3691[label="",style="solid", color="blue", weight=9]; 3691 -> 2583[label="",style="solid", color="blue", weight=3]; 3692[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3692[label="",style="solid", color="blue", weight=9]; 3692 -> 2584[label="",style="solid", color="blue", weight=3]; 3693[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2522 -> 3693[label="",style="solid", color="blue", weight=9]; 3693 -> 2585[label="",style="solid", color="blue", weight=3]; 2523 -> 21[label="",style="dashed", color="red", weight=0]; 2523[label="vyw440 < vyw450",fontsize=16,color="magenta"];2523 -> 2586[label="",style="dashed", color="magenta", weight=3]; 2523 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2524 -> 22[label="",style="dashed", color="red", weight=0]; 2524[label="vyw440 < vyw450",fontsize=16,color="magenta"];2524 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2524 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2525 -> 23[label="",style="dashed", color="red", weight=0]; 2525[label="vyw440 < vyw450",fontsize=16,color="magenta"];2525 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2525 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2526 -> 24[label="",style="dashed", color="red", weight=0]; 2526[label="vyw440 < vyw450",fontsize=16,color="magenta"];2526 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2526 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2527 -> 25[label="",style="dashed", color="red", weight=0]; 2527[label="vyw440 < vyw450",fontsize=16,color="magenta"];2527 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2527 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2528 -> 26[label="",style="dashed", color="red", weight=0]; 2528[label="vyw440 < vyw450",fontsize=16,color="magenta"];2528 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2528 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2529 -> 27[label="",style="dashed", color="red", weight=0]; 2529[label="vyw440 < vyw450",fontsize=16,color="magenta"];2529 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2529 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2530 -> 28[label="",style="dashed", color="red", weight=0]; 2530[label="vyw440 < vyw450",fontsize=16,color="magenta"];2530 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2530 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2531 -> 29[label="",style="dashed", color="red", weight=0]; 2531[label="vyw440 < vyw450",fontsize=16,color="magenta"];2531 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2531 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2532 -> 30[label="",style="dashed", color="red", weight=0]; 2532[label="vyw440 < vyw450",fontsize=16,color="magenta"];2532 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2532 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2533 -> 31[label="",style="dashed", color="red", weight=0]; 2533[label="vyw440 < vyw450",fontsize=16,color="magenta"];2533 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2533 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2534 -> 32[label="",style="dashed", color="red", weight=0]; 2534[label="vyw440 < vyw450",fontsize=16,color="magenta"];2534 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2534 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2535 -> 33[label="",style="dashed", color="red", weight=0]; 2535[label="vyw440 < vyw450",fontsize=16,color="magenta"];2535 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2535 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2536 -> 34[label="",style="dashed", color="red", weight=0]; 2536[label="vyw440 < vyw450",fontsize=16,color="magenta"];2536 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2536 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2097[label="",style="dashed", color="red", weight=0]; 2537[label="vyw441 < vyw451 || vyw441 == vyw451 && vyw442 <= vyw452",fontsize=16,color="magenta"];2537 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2537 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2538[label="vyw440 == vyw450",fontsize=16,color="blue",shape="box"];3694[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3694[label="",style="solid", color="blue", weight=9]; 3694 -> 2616[label="",style="solid", color="blue", weight=3]; 3695[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3695[label="",style="solid", color="blue", weight=9]; 3695 -> 2617[label="",style="solid", color="blue", weight=3]; 3696[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3696[label="",style="solid", color="blue", weight=9]; 3696 -> 2618[label="",style="solid", color="blue", weight=3]; 3697[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3697[label="",style="solid", color="blue", weight=9]; 3697 -> 2619[label="",style="solid", color="blue", weight=3]; 3698[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3698[label="",style="solid", color="blue", weight=9]; 3698 -> 2620[label="",style="solid", color="blue", weight=3]; 3699[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3699[label="",style="solid", color="blue", weight=9]; 3699 -> 2621[label="",style="solid", color="blue", weight=3]; 3700[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3700[label="",style="solid", color="blue", weight=9]; 3700 -> 2622[label="",style="solid", color="blue", weight=3]; 3701[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3701[label="",style="solid", color="blue", weight=9]; 3701 -> 2623[label="",style="solid", color="blue", weight=3]; 3702[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3702[label="",style="solid", color="blue", weight=9]; 3702 -> 2624[label="",style="solid", color="blue", weight=3]; 3703[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3703[label="",style="solid", color="blue", weight=9]; 3703 -> 2625[label="",style="solid", color="blue", weight=3]; 3704[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3704[label="",style="solid", color="blue", weight=9]; 3704 -> 2626[label="",style="solid", color="blue", weight=3]; 3705[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3705[label="",style="solid", color="blue", weight=9]; 3705 -> 2627[label="",style="solid", color="blue", weight=3]; 3706[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3706[label="",style="solid", color="blue", weight=9]; 3706 -> 2628[label="",style="solid", color="blue", weight=3]; 3707[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2538 -> 3707[label="",style="solid", color="blue", weight=9]; 3707 -> 2629[label="",style="solid", color="blue", weight=3]; 2539 -> 21[label="",style="dashed", color="red", weight=0]; 2539[label="vyw440 < vyw450",fontsize=16,color="magenta"];2539 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2539 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2540 -> 22[label="",style="dashed", color="red", weight=0]; 2540[label="vyw440 < vyw450",fontsize=16,color="magenta"];2540 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2540 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2541 -> 23[label="",style="dashed", color="red", weight=0]; 2541[label="vyw440 < vyw450",fontsize=16,color="magenta"];2541 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2541 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2542 -> 24[label="",style="dashed", color="red", weight=0]; 2542[label="vyw440 < vyw450",fontsize=16,color="magenta"];2542 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2542 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2543 -> 25[label="",style="dashed", color="red", weight=0]; 2543[label="vyw440 < vyw450",fontsize=16,color="magenta"];2543 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2543 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2544 -> 26[label="",style="dashed", color="red", weight=0]; 2544[label="vyw440 < vyw450",fontsize=16,color="magenta"];2544 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2544 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2545 -> 27[label="",style="dashed", color="red", weight=0]; 2545[label="vyw440 < vyw450",fontsize=16,color="magenta"];2545 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2545 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2546 -> 28[label="",style="dashed", color="red", weight=0]; 2546[label="vyw440 < vyw450",fontsize=16,color="magenta"];2546 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2546 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2547 -> 29[label="",style="dashed", color="red", weight=0]; 2547[label="vyw440 < vyw450",fontsize=16,color="magenta"];2547 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2547 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2548 -> 30[label="",style="dashed", color="red", weight=0]; 2548[label="vyw440 < vyw450",fontsize=16,color="magenta"];2548 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2548 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2549 -> 31[label="",style="dashed", color="red", weight=0]; 2549[label="vyw440 < vyw450",fontsize=16,color="magenta"];2549 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2549 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2550 -> 32[label="",style="dashed", color="red", weight=0]; 2550[label="vyw440 < vyw450",fontsize=16,color="magenta"];2550 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2550 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2551 -> 33[label="",style="dashed", color="red", weight=0]; 2551[label="vyw440 < vyw450",fontsize=16,color="magenta"];2551 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2551 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2552 -> 34[label="",style="dashed", color="red", weight=0]; 2552[label="vyw440 < vyw450",fontsize=16,color="magenta"];2552 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2552 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2553[label="GT",fontsize=16,color="green",shape="box"];2554[label="GT",fontsize=16,color="green",shape="box"];2555[label="primPlusNat vyw1780 vyw3100",fontsize=16,color="burlywood",shape="triangle"];3708[label="vyw1780/Succ vyw17800",fontsize=10,color="white",style="solid",shape="box"];2555 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 2658[label="",style="solid", color="burlywood", weight=3]; 3709[label="vyw1780/Zero",fontsize=10,color="white",style="solid",shape="box"];2555 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 2659[label="",style="solid", color="burlywood", weight=3]; 2556[label="True",fontsize=16,color="green",shape="box"];2557[label="False",fontsize=16,color="green",shape="box"];2558 -> 1353[label="",style="dashed", color="red", weight=0]; 2558[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2558 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2558 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2559 -> 1354[label="",style="dashed", color="red", weight=0]; 2559[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2559 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2559 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2560 -> 1355[label="",style="dashed", color="red", weight=0]; 2560[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2560 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2560 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2561 -> 1356[label="",style="dashed", color="red", weight=0]; 2561[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2561 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2561 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2562 -> 1357[label="",style="dashed", color="red", weight=0]; 2562[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2562 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2562 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2563 -> 1358[label="",style="dashed", color="red", weight=0]; 2563[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2563 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2563 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2564 -> 1359[label="",style="dashed", color="red", weight=0]; 2564[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2564 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2564 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2565 -> 1360[label="",style="dashed", color="red", weight=0]; 2565[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2565 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2566 -> 1361[label="",style="dashed", color="red", weight=0]; 2566[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2566 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2567 -> 1362[label="",style="dashed", color="red", weight=0]; 2567[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2567 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2568 -> 1363[label="",style="dashed", color="red", weight=0]; 2568[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2568 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2569 -> 1364[label="",style="dashed", color="red", weight=0]; 2569[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2569 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2570 -> 1365[label="",style="dashed", color="red", weight=0]; 2570[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2570 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2571 -> 1366[label="",style="dashed", color="red", weight=0]; 2571[label="vyw441 <= vyw451",fontsize=16,color="magenta"];2571 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2572 -> 487[label="",style="dashed", color="red", weight=0]; 2572[label="vyw440 == vyw450",fontsize=16,color="magenta"];2572 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2573 -> 496[label="",style="dashed", color="red", weight=0]; 2573[label="vyw440 == vyw450",fontsize=16,color="magenta"];2573 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2574 -> 488[label="",style="dashed", color="red", weight=0]; 2574[label="vyw440 == vyw450",fontsize=16,color="magenta"];2574 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2575 -> 494[label="",style="dashed", color="red", weight=0]; 2575[label="vyw440 == vyw450",fontsize=16,color="magenta"];2575 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2576 -> 493[label="",style="dashed", color="red", weight=0]; 2576[label="vyw440 == vyw450",fontsize=16,color="magenta"];2576 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2577 -> 489[label="",style="dashed", color="red", weight=0]; 2577[label="vyw440 == vyw450",fontsize=16,color="magenta"];2577 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2578 -> 499[label="",style="dashed", color="red", weight=0]; 2578[label="vyw440 == vyw450",fontsize=16,color="magenta"];2578 -> 2700[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2579 -> 490[label="",style="dashed", color="red", weight=0]; 2579[label="vyw440 == vyw450",fontsize=16,color="magenta"];2579 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2580 -> 492[label="",style="dashed", color="red", weight=0]; 2580[label="vyw440 == vyw450",fontsize=16,color="magenta"];2580 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2705[label="",style="dashed", color="magenta", weight=3]; 2581 -> 491[label="",style="dashed", color="red", weight=0]; 2581[label="vyw440 == vyw450",fontsize=16,color="magenta"];2581 -> 2706[label="",style="dashed", color="magenta", weight=3]; 2581 -> 2707[label="",style="dashed", color="magenta", weight=3]; 2582 -> 497[label="",style="dashed", color="red", weight=0]; 2582[label="vyw440 == vyw450",fontsize=16,color="magenta"];2582 -> 2708[label="",style="dashed", color="magenta", weight=3]; 2582 -> 2709[label="",style="dashed", color="magenta", weight=3]; 2583 -> 500[label="",style="dashed", color="red", weight=0]; 2583[label="vyw440 == vyw450",fontsize=16,color="magenta"];2583 -> 2710[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2711[label="",style="dashed", color="magenta", weight=3]; 2584 -> 495[label="",style="dashed", color="red", weight=0]; 2584[label="vyw440 == vyw450",fontsize=16,color="magenta"];2584 -> 2712[label="",style="dashed", color="magenta", weight=3]; 2584 -> 2713[label="",style="dashed", color="magenta", weight=3]; 2585 -> 498[label="",style="dashed", color="red", weight=0]; 2585[label="vyw440 == vyw450",fontsize=16,color="magenta"];2585 -> 2714[label="",style="dashed", color="magenta", weight=3]; 2585 -> 2715[label="",style="dashed", color="magenta", weight=3]; 2586[label="vyw450",fontsize=16,color="green",shape="box"];2587[label="vyw440",fontsize=16,color="green",shape="box"];2588[label="vyw450",fontsize=16,color="green",shape="box"];2589[label="vyw440",fontsize=16,color="green",shape="box"];2590[label="vyw450",fontsize=16,color="green",shape="box"];2591[label="vyw440",fontsize=16,color="green",shape="box"];2592[label="vyw450",fontsize=16,color="green",shape="box"];2593[label="vyw440",fontsize=16,color="green",shape="box"];2594[label="vyw450",fontsize=16,color="green",shape="box"];2595[label="vyw440",fontsize=16,color="green",shape="box"];2596[label="vyw450",fontsize=16,color="green",shape="box"];2597[label="vyw440",fontsize=16,color="green",shape="box"];2598[label="vyw450",fontsize=16,color="green",shape="box"];2599[label="vyw440",fontsize=16,color="green",shape="box"];2600[label="vyw450",fontsize=16,color="green",shape="box"];2601[label="vyw440",fontsize=16,color="green",shape="box"];2602[label="vyw450",fontsize=16,color="green",shape="box"];2603[label="vyw440",fontsize=16,color="green",shape="box"];2604[label="vyw450",fontsize=16,color="green",shape="box"];2605[label="vyw440",fontsize=16,color="green",shape="box"];2606[label="vyw450",fontsize=16,color="green",shape="box"];2607[label="vyw440",fontsize=16,color="green",shape="box"];2608[label="vyw450",fontsize=16,color="green",shape="box"];2609[label="vyw440",fontsize=16,color="green",shape="box"];2610[label="vyw450",fontsize=16,color="green",shape="box"];2611[label="vyw440",fontsize=16,color="green",shape="box"];2612[label="vyw450",fontsize=16,color="green",shape="box"];2613[label="vyw440",fontsize=16,color="green",shape="box"];2614 -> 970[label="",style="dashed", color="red", weight=0]; 2614[label="vyw441 == vyw451 && vyw442 <= vyw452",fontsize=16,color="magenta"];2614 -> 2716[label="",style="dashed", color="magenta", weight=3]; 2614 -> 2717[label="",style="dashed", color="magenta", weight=3]; 2615[label="vyw441 < vyw451",fontsize=16,color="blue",shape="box"];3710[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 2718[label="",style="solid", color="blue", weight=3]; 3711[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 2719[label="",style="solid", color="blue", weight=3]; 3712[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 2720[label="",style="solid", color="blue", weight=3]; 3713[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 2721[label="",style="solid", color="blue", weight=3]; 3714[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 2722[label="",style="solid", color="blue", weight=3]; 3715[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 2723[label="",style="solid", color="blue", weight=3]; 3716[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 2724[label="",style="solid", color="blue", weight=3]; 3717[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 2725[label="",style="solid", color="blue", weight=3]; 3718[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 2726[label="",style="solid", color="blue", weight=3]; 3719[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 2727[label="",style="solid", color="blue", weight=3]; 3720[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 2728[label="",style="solid", color="blue", weight=3]; 3721[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 2729[label="",style="solid", color="blue", weight=3]; 3722[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 2730[label="",style="solid", color="blue", weight=3]; 3723[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2615 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 2731[label="",style="solid", color="blue", weight=3]; 2616 -> 487[label="",style="dashed", color="red", weight=0]; 2616[label="vyw440 == vyw450",fontsize=16,color="magenta"];2616 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2616 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2617 -> 496[label="",style="dashed", color="red", weight=0]; 2617[label="vyw440 == vyw450",fontsize=16,color="magenta"];2617 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2617 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2618 -> 488[label="",style="dashed", color="red", weight=0]; 2618[label="vyw440 == vyw450",fontsize=16,color="magenta"];2618 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2619 -> 494[label="",style="dashed", color="red", weight=0]; 2619[label="vyw440 == vyw450",fontsize=16,color="magenta"];2619 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2620 -> 493[label="",style="dashed", color="red", weight=0]; 2620[label="vyw440 == vyw450",fontsize=16,color="magenta"];2620 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2621 -> 489[label="",style="dashed", color="red", weight=0]; 2621[label="vyw440 == vyw450",fontsize=16,color="magenta"];2621 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2622 -> 499[label="",style="dashed", color="red", weight=0]; 2622[label="vyw440 == vyw450",fontsize=16,color="magenta"];2622 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2623 -> 490[label="",style="dashed", color="red", weight=0]; 2623[label="vyw440 == vyw450",fontsize=16,color="magenta"];2623 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2624 -> 492[label="",style="dashed", color="red", weight=0]; 2624[label="vyw440 == vyw450",fontsize=16,color="magenta"];2624 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2625 -> 491[label="",style="dashed", color="red", weight=0]; 2625[label="vyw440 == vyw450",fontsize=16,color="magenta"];2625 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2626 -> 497[label="",style="dashed", color="red", weight=0]; 2626[label="vyw440 == vyw450",fontsize=16,color="magenta"];2626 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2753[label="",style="dashed", color="magenta", weight=3]; 2627 -> 500[label="",style="dashed", color="red", weight=0]; 2627[label="vyw440 == vyw450",fontsize=16,color="magenta"];2627 -> 2754[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2755[label="",style="dashed", color="magenta", weight=3]; 2628 -> 495[label="",style="dashed", color="red", weight=0]; 2628[label="vyw440 == vyw450",fontsize=16,color="magenta"];2628 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2629 -> 498[label="",style="dashed", color="red", weight=0]; 2629[label="vyw440 == vyw450",fontsize=16,color="magenta"];2629 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2630[label="vyw450",fontsize=16,color="green",shape="box"];2631[label="vyw440",fontsize=16,color="green",shape="box"];2632[label="vyw450",fontsize=16,color="green",shape="box"];2633[label="vyw440",fontsize=16,color="green",shape="box"];2634[label="vyw450",fontsize=16,color="green",shape="box"];2635[label="vyw440",fontsize=16,color="green",shape="box"];2636[label="vyw450",fontsize=16,color="green",shape="box"];2637[label="vyw440",fontsize=16,color="green",shape="box"];2638[label="vyw450",fontsize=16,color="green",shape="box"];2639[label="vyw440",fontsize=16,color="green",shape="box"];2640[label="vyw450",fontsize=16,color="green",shape="box"];2641[label="vyw440",fontsize=16,color="green",shape="box"];2642[label="vyw450",fontsize=16,color="green",shape="box"];2643[label="vyw440",fontsize=16,color="green",shape="box"];2644[label="vyw450",fontsize=16,color="green",shape="box"];2645[label="vyw440",fontsize=16,color="green",shape="box"];2646[label="vyw450",fontsize=16,color="green",shape="box"];2647[label="vyw440",fontsize=16,color="green",shape="box"];2648[label="vyw450",fontsize=16,color="green",shape="box"];2649[label="vyw440",fontsize=16,color="green",shape="box"];2650[label="vyw450",fontsize=16,color="green",shape="box"];2651[label="vyw440",fontsize=16,color="green",shape="box"];2652[label="vyw450",fontsize=16,color="green",shape="box"];2653[label="vyw440",fontsize=16,color="green",shape="box"];2654[label="vyw450",fontsize=16,color="green",shape="box"];2655[label="vyw440",fontsize=16,color="green",shape="box"];2656[label="vyw450",fontsize=16,color="green",shape="box"];2657[label="vyw440",fontsize=16,color="green",shape="box"];2658[label="primPlusNat (Succ vyw17800) vyw3100",fontsize=16,color="burlywood",shape="box"];3724[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 2760[label="",style="solid", color="burlywood", weight=3]; 3725[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2658 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 2761[label="",style="solid", color="burlywood", weight=3]; 2659[label="primPlusNat Zero vyw3100",fontsize=16,color="burlywood",shape="box"];3726[label="vyw3100/Succ vyw31000",fontsize=10,color="white",style="solid",shape="box"];2659 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 2762[label="",style="solid", color="burlywood", weight=3]; 3727[label="vyw3100/Zero",fontsize=10,color="white",style="solid",shape="box"];2659 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 2763[label="",style="solid", color="burlywood", weight=3]; 2660[label="vyw441",fontsize=16,color="green",shape="box"];2661[label="vyw451",fontsize=16,color="green",shape="box"];2662[label="vyw441",fontsize=16,color="green",shape="box"];2663[label="vyw451",fontsize=16,color="green",shape="box"];2664[label="vyw441",fontsize=16,color="green",shape="box"];2665[label="vyw451",fontsize=16,color="green",shape="box"];2666[label="vyw441",fontsize=16,color="green",shape="box"];2667[label="vyw451",fontsize=16,color="green",shape="box"];2668[label="vyw441",fontsize=16,color="green",shape="box"];2669[label="vyw451",fontsize=16,color="green",shape="box"];2670[label="vyw441",fontsize=16,color="green",shape="box"];2671[label="vyw451",fontsize=16,color="green",shape="box"];2672[label="vyw441",fontsize=16,color="green",shape="box"];2673[label="vyw451",fontsize=16,color="green",shape="box"];2674[label="vyw441",fontsize=16,color="green",shape="box"];2675[label="vyw451",fontsize=16,color="green",shape="box"];2676[label="vyw441",fontsize=16,color="green",shape="box"];2677[label="vyw451",fontsize=16,color="green",shape="box"];2678[label="vyw441",fontsize=16,color="green",shape="box"];2679[label="vyw451",fontsize=16,color="green",shape="box"];2680[label="vyw441",fontsize=16,color="green",shape="box"];2681[label="vyw451",fontsize=16,color="green",shape="box"];2682[label="vyw441",fontsize=16,color="green",shape="box"];2683[label="vyw451",fontsize=16,color="green",shape="box"];2684[label="vyw441",fontsize=16,color="green",shape="box"];2685[label="vyw451",fontsize=16,color="green",shape="box"];2686[label="vyw441",fontsize=16,color="green",shape="box"];2687[label="vyw451",fontsize=16,color="green",shape="box"];2688[label="vyw450",fontsize=16,color="green",shape="box"];2689[label="vyw440",fontsize=16,color="green",shape="box"];2690[label="vyw450",fontsize=16,color="green",shape="box"];2691[label="vyw440",fontsize=16,color="green",shape="box"];2692[label="vyw450",fontsize=16,color="green",shape="box"];2693[label="vyw440",fontsize=16,color="green",shape="box"];2694[label="vyw450",fontsize=16,color="green",shape="box"];2695[label="vyw440",fontsize=16,color="green",shape="box"];2696[label="vyw450",fontsize=16,color="green",shape="box"];2697[label="vyw440",fontsize=16,color="green",shape="box"];2698[label="vyw450",fontsize=16,color="green",shape="box"];2699[label="vyw440",fontsize=16,color="green",shape="box"];2700[label="vyw450",fontsize=16,color="green",shape="box"];2701[label="vyw440",fontsize=16,color="green",shape="box"];2702[label="vyw450",fontsize=16,color="green",shape="box"];2703[label="vyw440",fontsize=16,color="green",shape="box"];2704[label="vyw450",fontsize=16,color="green",shape="box"];2705[label="vyw440",fontsize=16,color="green",shape="box"];2706[label="vyw450",fontsize=16,color="green",shape="box"];2707[label="vyw440",fontsize=16,color="green",shape="box"];2708[label="vyw450",fontsize=16,color="green",shape="box"];2709[label="vyw440",fontsize=16,color="green",shape="box"];2710[label="vyw450",fontsize=16,color="green",shape="box"];2711[label="vyw440",fontsize=16,color="green",shape="box"];2712[label="vyw450",fontsize=16,color="green",shape="box"];2713[label="vyw440",fontsize=16,color="green",shape="box"];2714[label="vyw450",fontsize=16,color="green",shape="box"];2715[label="vyw440",fontsize=16,color="green",shape="box"];2716[label="vyw442 <= vyw452",fontsize=16,color="blue",shape="box"];3728[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3728[label="",style="solid", color="blue", weight=9]; 3728 -> 2764[label="",style="solid", color="blue", weight=3]; 3729[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3729[label="",style="solid", color="blue", weight=9]; 3729 -> 2765[label="",style="solid", color="blue", weight=3]; 3730[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3730[label="",style="solid", color="blue", weight=9]; 3730 -> 2766[label="",style="solid", color="blue", weight=3]; 3731[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3731[label="",style="solid", color="blue", weight=9]; 3731 -> 2767[label="",style="solid", color="blue", weight=3]; 3732[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3732[label="",style="solid", color="blue", weight=9]; 3732 -> 2768[label="",style="solid", color="blue", weight=3]; 3733[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3733[label="",style="solid", color="blue", weight=9]; 3733 -> 2769[label="",style="solid", color="blue", weight=3]; 3734[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3734[label="",style="solid", color="blue", weight=9]; 3734 -> 2770[label="",style="solid", color="blue", weight=3]; 3735[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 2771[label="",style="solid", color="blue", weight=3]; 3736[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 2772[label="",style="solid", color="blue", weight=3]; 3737[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 2773[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"];2716 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 2774[label="",style="solid", color="blue", weight=3]; 3739[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 2775[label="",style="solid", color="blue", weight=3]; 3740[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 2776[label="",style="solid", color="blue", weight=3]; 3741[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2716 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 2777[label="",style="solid", color="blue", weight=3]; 2717[label="vyw441 == vyw451",fontsize=16,color="blue",shape="box"];3742[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 2778[label="",style="solid", color="blue", weight=3]; 3743[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 2779[label="",style="solid", color="blue", weight=3]; 3744[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 2780[label="",style="solid", color="blue", weight=3]; 3745[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 2781[label="",style="solid", color="blue", weight=3]; 3746[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 2782[label="",style="solid", color="blue", weight=3]; 3747[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 2783[label="",style="solid", color="blue", weight=3]; 3748[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 2784[label="",style="solid", color="blue", weight=3]; 3749[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 2785[label="",style="solid", color="blue", weight=3]; 3750[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 2786[label="",style="solid", color="blue", weight=3]; 3751[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3751[label="",style="solid", color="blue", weight=9]; 3751 -> 2787[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"];2717 -> 3752[label="",style="solid", color="blue", weight=9]; 3752 -> 2788[label="",style="solid", color="blue", weight=3]; 3753[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3753[label="",style="solid", color="blue", weight=9]; 3753 -> 2789[label="",style="solid", color="blue", weight=3]; 3754[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3754[label="",style="solid", color="blue", weight=9]; 3754 -> 2790[label="",style="solid", color="blue", weight=3]; 3755[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2717 -> 3755[label="",style="solid", color="blue", weight=9]; 3755 -> 2791[label="",style="solid", color="blue", weight=3]; 2718 -> 21[label="",style="dashed", color="red", weight=0]; 2718[label="vyw441 < vyw451",fontsize=16,color="magenta"];2718 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2718 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2719 -> 22[label="",style="dashed", color="red", weight=0]; 2719[label="vyw441 < vyw451",fontsize=16,color="magenta"];2719 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2719 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2720 -> 23[label="",style="dashed", color="red", weight=0]; 2720[label="vyw441 < vyw451",fontsize=16,color="magenta"];2720 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2720 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2721 -> 24[label="",style="dashed", color="red", weight=0]; 2721[label="vyw441 < vyw451",fontsize=16,color="magenta"];2721 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2722 -> 25[label="",style="dashed", color="red", weight=0]; 2722[label="vyw441 < vyw451",fontsize=16,color="magenta"];2722 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2723 -> 26[label="",style="dashed", color="red", weight=0]; 2723[label="vyw441 < vyw451",fontsize=16,color="magenta"];2723 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2724 -> 27[label="",style="dashed", color="red", weight=0]; 2724[label="vyw441 < vyw451",fontsize=16,color="magenta"];2724 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2725 -> 28[label="",style="dashed", color="red", weight=0]; 2725[label="vyw441 < vyw451",fontsize=16,color="magenta"];2725 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2725 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2726 -> 29[label="",style="dashed", color="red", weight=0]; 2726[label="vyw441 < vyw451",fontsize=16,color="magenta"];2726 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2726 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2727 -> 30[label="",style="dashed", color="red", weight=0]; 2727[label="vyw441 < vyw451",fontsize=16,color="magenta"];2727 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2727 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2728 -> 31[label="",style="dashed", color="red", weight=0]; 2728[label="vyw441 < vyw451",fontsize=16,color="magenta"];2728 -> 2812[label="",style="dashed", color="magenta", weight=3]; 2728 -> 2813[label="",style="dashed", color="magenta", weight=3]; 2729 -> 32[label="",style="dashed", color="red", weight=0]; 2729[label="vyw441 < vyw451",fontsize=16,color="magenta"];2729 -> 2814[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2815[label="",style="dashed", color="magenta", weight=3]; 2730 -> 33[label="",style="dashed", color="red", weight=0]; 2730[label="vyw441 < vyw451",fontsize=16,color="magenta"];2730 -> 2816[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2817[label="",style="dashed", color="magenta", weight=3]; 2731 -> 34[label="",style="dashed", color="red", weight=0]; 2731[label="vyw441 < vyw451",fontsize=16,color="magenta"];2731 -> 2818[label="",style="dashed", color="magenta", weight=3]; 2731 -> 2819[label="",style="dashed", color="magenta", weight=3]; 2732[label="vyw450",fontsize=16,color="green",shape="box"];2733[label="vyw440",fontsize=16,color="green",shape="box"];2734[label="vyw450",fontsize=16,color="green",shape="box"];2735[label="vyw440",fontsize=16,color="green",shape="box"];2736[label="vyw450",fontsize=16,color="green",shape="box"];2737[label="vyw440",fontsize=16,color="green",shape="box"];2738[label="vyw450",fontsize=16,color="green",shape="box"];2739[label="vyw440",fontsize=16,color="green",shape="box"];2740[label="vyw450",fontsize=16,color="green",shape="box"];2741[label="vyw440",fontsize=16,color="green",shape="box"];2742[label="vyw450",fontsize=16,color="green",shape="box"];2743[label="vyw440",fontsize=16,color="green",shape="box"];2744[label="vyw450",fontsize=16,color="green",shape="box"];2745[label="vyw440",fontsize=16,color="green",shape="box"];2746[label="vyw450",fontsize=16,color="green",shape="box"];2747[label="vyw440",fontsize=16,color="green",shape="box"];2748[label="vyw450",fontsize=16,color="green",shape="box"];2749[label="vyw440",fontsize=16,color="green",shape="box"];2750[label="vyw450",fontsize=16,color="green",shape="box"];2751[label="vyw440",fontsize=16,color="green",shape="box"];2752[label="vyw450",fontsize=16,color="green",shape="box"];2753[label="vyw440",fontsize=16,color="green",shape="box"];2754[label="vyw450",fontsize=16,color="green",shape="box"];2755[label="vyw440",fontsize=16,color="green",shape="box"];2756[label="vyw450",fontsize=16,color="green",shape="box"];2757[label="vyw440",fontsize=16,color="green",shape="box"];2758[label="vyw450",fontsize=16,color="green",shape="box"];2759[label="vyw440",fontsize=16,color="green",shape="box"];2760[label="primPlusNat (Succ vyw17800) (Succ vyw31000)",fontsize=16,color="black",shape="box"];2760 -> 2820[label="",style="solid", color="black", weight=3]; 2761[label="primPlusNat (Succ vyw17800) Zero",fontsize=16,color="black",shape="box"];2761 -> 2821[label="",style="solid", color="black", weight=3]; 2762[label="primPlusNat Zero (Succ vyw31000)",fontsize=16,color="black",shape="box"];2762 -> 2822[label="",style="solid", color="black", weight=3]; 2763[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2763 -> 2823[label="",style="solid", color="black", weight=3]; 2764 -> 1353[label="",style="dashed", color="red", weight=0]; 2764[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2764 -> 2824[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2825[label="",style="dashed", color="magenta", weight=3]; 2765 -> 1354[label="",style="dashed", color="red", weight=0]; 2765[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2765 -> 2826[label="",style="dashed", color="magenta", weight=3]; 2765 -> 2827[label="",style="dashed", color="magenta", weight=3]; 2766 -> 1355[label="",style="dashed", color="red", weight=0]; 2766[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2766 -> 2828[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2829[label="",style="dashed", color="magenta", weight=3]; 2767 -> 1356[label="",style="dashed", color="red", weight=0]; 2767[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2767 -> 2830[label="",style="dashed", color="magenta", weight=3]; 2767 -> 2831[label="",style="dashed", color="magenta", weight=3]; 2768 -> 1357[label="",style="dashed", color="red", weight=0]; 2768[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2768 -> 2832[label="",style="dashed", color="magenta", weight=3]; 2768 -> 2833[label="",style="dashed", color="magenta", weight=3]; 2769 -> 1358[label="",style="dashed", color="red", weight=0]; 2769[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2769 -> 2834[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2835[label="",style="dashed", color="magenta", weight=3]; 2770 -> 1359[label="",style="dashed", color="red", weight=0]; 2770[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2770 -> 2836[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2837[label="",style="dashed", color="magenta", weight=3]; 2771 -> 1360[label="",style="dashed", color="red", weight=0]; 2771[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2771 -> 2838[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2839[label="",style="dashed", color="magenta", weight=3]; 2772 -> 1361[label="",style="dashed", color="red", weight=0]; 2772[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2772 -> 2840[label="",style="dashed", color="magenta", weight=3]; 2772 -> 2841[label="",style="dashed", color="magenta", weight=3]; 2773 -> 1362[label="",style="dashed", color="red", weight=0]; 2773[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2773 -> 2842[label="",style="dashed", color="magenta", weight=3]; 2773 -> 2843[label="",style="dashed", color="magenta", weight=3]; 2774 -> 1363[label="",style="dashed", color="red", weight=0]; 2774[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2774 -> 2844[label="",style="dashed", color="magenta", weight=3]; 2774 -> 2845[label="",style="dashed", color="magenta", weight=3]; 2775 -> 1364[label="",style="dashed", color="red", weight=0]; 2775[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2775 -> 2846[label="",style="dashed", color="magenta", weight=3]; 2775 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2776 -> 1365[label="",style="dashed", color="red", weight=0]; 2776[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2776 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2777 -> 1366[label="",style="dashed", color="red", weight=0]; 2777[label="vyw442 <= vyw452",fontsize=16,color="magenta"];2777 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2777 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2778 -> 487[label="",style="dashed", color="red", weight=0]; 2778[label="vyw441 == vyw451",fontsize=16,color="magenta"];2778 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2779 -> 496[label="",style="dashed", color="red", weight=0]; 2779[label="vyw441 == vyw451",fontsize=16,color="magenta"];2779 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2780 -> 488[label="",style="dashed", color="red", weight=0]; 2780[label="vyw441 == vyw451",fontsize=16,color="magenta"];2780 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2781 -> 494[label="",style="dashed", color="red", weight=0]; 2781[label="vyw441 == vyw451",fontsize=16,color="magenta"];2781 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2782 -> 493[label="",style="dashed", color="red", weight=0]; 2782[label="vyw441 == vyw451",fontsize=16,color="magenta"];2782 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2783 -> 489[label="",style="dashed", color="red", weight=0]; 2783[label="vyw441 == vyw451",fontsize=16,color="magenta"];2783 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2784 -> 499[label="",style="dashed", color="red", weight=0]; 2784[label="vyw441 == vyw451",fontsize=16,color="magenta"];2784 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2785 -> 490[label="",style="dashed", color="red", weight=0]; 2785[label="vyw441 == vyw451",fontsize=16,color="magenta"];2785 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2786 -> 492[label="",style="dashed", color="red", weight=0]; 2786[label="vyw441 == vyw451",fontsize=16,color="magenta"];2786 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2787 -> 491[label="",style="dashed", color="red", weight=0]; 2787[label="vyw441 == vyw451",fontsize=16,color="magenta"];2787 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2788 -> 497[label="",style="dashed", color="red", weight=0]; 2788[label="vyw441 == vyw451",fontsize=16,color="magenta"];2788 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2789 -> 500[label="",style="dashed", color="red", weight=0]; 2789[label="vyw441 == vyw451",fontsize=16,color="magenta"];2789 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2790 -> 495[label="",style="dashed", color="red", weight=0]; 2790[label="vyw441 == vyw451",fontsize=16,color="magenta"];2790 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2791 -> 498[label="",style="dashed", color="red", weight=0]; 2791[label="vyw441 == vyw451",fontsize=16,color="magenta"];2791 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2792[label="vyw451",fontsize=16,color="green",shape="box"];2793[label="vyw441",fontsize=16,color="green",shape="box"];2794[label="vyw451",fontsize=16,color="green",shape="box"];2795[label="vyw441",fontsize=16,color="green",shape="box"];2796[label="vyw451",fontsize=16,color="green",shape="box"];2797[label="vyw441",fontsize=16,color="green",shape="box"];2798[label="vyw451",fontsize=16,color="green",shape="box"];2799[label="vyw441",fontsize=16,color="green",shape="box"];2800[label="vyw451",fontsize=16,color="green",shape="box"];2801[label="vyw441",fontsize=16,color="green",shape="box"];2802[label="vyw451",fontsize=16,color="green",shape="box"];2803[label="vyw441",fontsize=16,color="green",shape="box"];2804[label="vyw451",fontsize=16,color="green",shape="box"];2805[label="vyw441",fontsize=16,color="green",shape="box"];2806[label="vyw451",fontsize=16,color="green",shape="box"];2807[label="vyw441",fontsize=16,color="green",shape="box"];2808[label="vyw451",fontsize=16,color="green",shape="box"];2809[label="vyw441",fontsize=16,color="green",shape="box"];2810[label="vyw451",fontsize=16,color="green",shape="box"];2811[label="vyw441",fontsize=16,color="green",shape="box"];2812[label="vyw451",fontsize=16,color="green",shape="box"];2813[label="vyw441",fontsize=16,color="green",shape="box"];2814[label="vyw451",fontsize=16,color="green",shape="box"];2815[label="vyw441",fontsize=16,color="green",shape="box"];2816[label="vyw451",fontsize=16,color="green",shape="box"];2817[label="vyw441",fontsize=16,color="green",shape="box"];2818[label="vyw451",fontsize=16,color="green",shape="box"];2819[label="vyw441",fontsize=16,color="green",shape="box"];2820[label="Succ (Succ (primPlusNat vyw17800 vyw31000))",fontsize=16,color="green",shape="box"];2820 -> 2880[label="",style="dashed", color="green", weight=3]; 2821[label="Succ vyw17800",fontsize=16,color="green",shape="box"];2822[label="Succ vyw31000",fontsize=16,color="green",shape="box"];2823[label="Zero",fontsize=16,color="green",shape="box"];2824[label="vyw442",fontsize=16,color="green",shape="box"];2825[label="vyw452",fontsize=16,color="green",shape="box"];2826[label="vyw442",fontsize=16,color="green",shape="box"];2827[label="vyw452",fontsize=16,color="green",shape="box"];2828[label="vyw442",fontsize=16,color="green",shape="box"];2829[label="vyw452",fontsize=16,color="green",shape="box"];2830[label="vyw442",fontsize=16,color="green",shape="box"];2831[label="vyw452",fontsize=16,color="green",shape="box"];2832[label="vyw442",fontsize=16,color="green",shape="box"];2833[label="vyw452",fontsize=16,color="green",shape="box"];2834[label="vyw442",fontsize=16,color="green",shape="box"];2835[label="vyw452",fontsize=16,color="green",shape="box"];2836[label="vyw442",fontsize=16,color="green",shape="box"];2837[label="vyw452",fontsize=16,color="green",shape="box"];2838[label="vyw442",fontsize=16,color="green",shape="box"];2839[label="vyw452",fontsize=16,color="green",shape="box"];2840[label="vyw442",fontsize=16,color="green",shape="box"];2841[label="vyw452",fontsize=16,color="green",shape="box"];2842[label="vyw442",fontsize=16,color="green",shape="box"];2843[label="vyw452",fontsize=16,color="green",shape="box"];2844[label="vyw442",fontsize=16,color="green",shape="box"];2845[label="vyw452",fontsize=16,color="green",shape="box"];2846[label="vyw442",fontsize=16,color="green",shape="box"];2847[label="vyw452",fontsize=16,color="green",shape="box"];2848[label="vyw442",fontsize=16,color="green",shape="box"];2849[label="vyw452",fontsize=16,color="green",shape="box"];2850[label="vyw442",fontsize=16,color="green",shape="box"];2851[label="vyw452",fontsize=16,color="green",shape="box"];2852[label="vyw451",fontsize=16,color="green",shape="box"];2853[label="vyw441",fontsize=16,color="green",shape="box"];2854[label="vyw451",fontsize=16,color="green",shape="box"];2855[label="vyw441",fontsize=16,color="green",shape="box"];2856[label="vyw451",fontsize=16,color="green",shape="box"];2857[label="vyw441",fontsize=16,color="green",shape="box"];2858[label="vyw451",fontsize=16,color="green",shape="box"];2859[label="vyw441",fontsize=16,color="green",shape="box"];2860[label="vyw451",fontsize=16,color="green",shape="box"];2861[label="vyw441",fontsize=16,color="green",shape="box"];2862[label="vyw451",fontsize=16,color="green",shape="box"];2863[label="vyw441",fontsize=16,color="green",shape="box"];2864[label="vyw451",fontsize=16,color="green",shape="box"];2865[label="vyw441",fontsize=16,color="green",shape="box"];2866[label="vyw451",fontsize=16,color="green",shape="box"];2867[label="vyw441",fontsize=16,color="green",shape="box"];2868[label="vyw451",fontsize=16,color="green",shape="box"];2869[label="vyw441",fontsize=16,color="green",shape="box"];2870[label="vyw451",fontsize=16,color="green",shape="box"];2871[label="vyw441",fontsize=16,color="green",shape="box"];2872[label="vyw451",fontsize=16,color="green",shape="box"];2873[label="vyw441",fontsize=16,color="green",shape="box"];2874[label="vyw451",fontsize=16,color="green",shape="box"];2875[label="vyw441",fontsize=16,color="green",shape="box"];2876[label="vyw451",fontsize=16,color="green",shape="box"];2877[label="vyw441",fontsize=16,color="green",shape="box"];2878[label="vyw451",fontsize=16,color="green",shape="box"];2879[label="vyw441",fontsize=16,color="green",shape="box"];2880 -> 2555[label="",style="dashed", color="red", weight=0]; 2880[label="primPlusNat vyw17800 vyw31000",fontsize=16,color="magenta"];2880 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2881[label="vyw31000",fontsize=16,color="green",shape="box"];2882[label="vyw17800",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw300, vyw4000, ce, cf) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, fd), fa) -> new_esEs1(vyw300, vyw4000, fd) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), hc) -> new_esEs2(vyw301, vyw4001, hc) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_Maybe, eb)) -> new_esEs1(vyw301, vyw4001, eb) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw300, vyw4000, hf, hg) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw301, vyw4001, df, dg) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw300, vyw4000, bdh, bea, beb) new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw300, vyw4000, db, dc, dd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw302, vyw4002, bag, bah) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw301, vyw4001, dh, ea) new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_Either, gb), gc)) -> new_esEs(vyw300, vyw4000, gb, gc) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw300, vyw4000, bdg) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, hd), he)) -> new_esEs(vyw300, vyw4000, hd, he) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw302, vyw4002, bbe, bbf, bbg) new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_Maybe, cg)) -> new_esEs1(vyw300, vyw4000, cg) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw300, vyw4000, fg, fh, ga) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw301, vyw4001, ed, ee, ef) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw300, vyw4000, eg, eh) new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw300, vyw4000, cc, cd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw301, vyw4001, bcc, bcd) new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_[], da)) -> new_esEs2(vyw300, vyw4000, da) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw301, vyw4001, bcf) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw300, vyw4000, bdd, bde) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], ff), fa) -> new_esEs2(vyw300, vyw4000, ff) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw301, vyw4001, bcg, bch, bda) new_esEs1(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw300, vyw4000, gh, ha, hb) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw302, vyw4002, bbd) new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw300, vyw4000, h, ba) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_[], ec)) -> new_esEs2(vyw301, vyw4001, ec) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw302, vyw4002, bba, bbb) new_esEs1(Just(vyw300), Just(vyw4000), app(ty_[], gg)) -> new_esEs2(vyw300, vyw4000, gg) new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_@2, gd), ge)) -> new_esEs0(vyw300, vyw4000, gd, ge) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vyw300, vyw4000, bdf) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], baa)) -> new_esEs2(vyw300, vyw4000, baa) new_esEs(Left(vyw300), Left(vyw4000), app(ty_[], bf), bb) -> new_esEs2(vyw300, vyw4000, bf) new_esEs(Left(vyw300), Left(vyw4000), app(ty_Maybe, be), bb) -> new_esEs1(vyw300, vyw4000, be) new_esEs(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw300, vyw4000, bg, bh, ca) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vyw301, vyw4001, bce) new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw300, vyw4000, bc, bd) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw300, vyw4000, bdb, bdc) new_esEs1(Just(vyw300), Just(vyw4000), app(ty_Maybe, gf)) -> new_esEs1(vyw300, vyw4000, gf) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw300, vyw4000, bab, bac, bad) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vyw302, vyw4002, bbc) new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw300, vyw4000, fb, fc) new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw301, vyw4001, bbh, bca) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, hh)) -> new_esEs1(vyw300, vyw4000, hh) 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_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_Either, gb), gc)) -> new_esEs(vyw300, vyw4000, gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(app(ty_@2, gd), ge)) -> new_esEs0(vyw300, vyw4000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, hd), he)) -> new_esEs(vyw300, vyw4000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(ty_[], gg)) -> new_esEs2(vyw300, vyw4000, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, hf), hg)) -> new_esEs0(vyw300, vyw4000, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, gh), ha), hb)) -> new_esEs3(vyw300, vyw4000, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vyw300), Just(vyw4000), app(ty_Maybe, gf)) -> new_esEs1(vyw300, vyw4000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vyw300, vyw4000, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, hh)) -> new_esEs1(vyw300, vyw4000, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_Either, df), dg)) -> new_esEs(vyw301, vyw4001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, eg), eh), fa) -> new_esEs(vyw300, vyw4000, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(ty_@2, dh), ea)) -> new_esEs0(vyw301, vyw4001, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, fb), fc), fa) -> new_esEs0(vyw300, vyw4000, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], ff), fa) -> new_esEs2(vyw300, vyw4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_[], ec)) -> new_esEs2(vyw301, vyw4001, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, fg), fh), ga), fa) -> new_esEs3(vyw300, vyw4000, fg, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs3(vyw301, vyw4001, ed, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, fd), fa) -> new_esEs1(vyw300, vyw4000, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@2(vyw300, vyw301), @2(vyw4000, vyw4001), de, app(ty_Maybe, eb)) -> new_esEs1(vyw301, vyw4001, eb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw300, vyw4000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw300, vyw4000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_Either, bag), bah)) -> new_esEs(vyw302, vyw4002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, bdb), bdc), baf, bcb) -> new_esEs(vyw300, vyw4000, bdb, bdc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_Either, bbh), bca), bcb) -> new_esEs(vyw301, vyw4001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(ty_@2, ce), cf)) -> new_esEs0(vyw300, vyw4000, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw300), Left(vyw4000), app(app(ty_@2, bc), bd), bb) -> new_esEs0(vyw300, vyw4000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(ty_@2, bcc), bcd), bcb) -> new_esEs0(vyw301, vyw4001, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, bdd), bde), baf, bcb) -> new_esEs0(vyw300, vyw4000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(ty_@2, bba), bbb)) -> new_esEs0(vyw302, vyw4002, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), hc) -> new_esEs2(vyw301, vyw4001, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], baa)) -> new_esEs2(vyw300, vyw4000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_[], da)) -> new_esEs2(vyw300, vyw4000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw300), Left(vyw4000), app(ty_[], bf), bb) -> new_esEs2(vyw300, vyw4000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], bdg), baf, bcb) -> new_esEs2(vyw300, vyw4000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_[], bcf), bcb) -> new_esEs2(vyw301, vyw4001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_[], bbd)) -> new_esEs2(vyw302, vyw4002, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(app(app(ty_@3, db), dc), dd)) -> new_esEs3(vyw300, vyw4000, db, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bg), bh), ca), bb) -> new_esEs3(vyw300, vyw4000, bg, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(vyw300), Right(vyw4000), cb, app(ty_Maybe, cg)) -> new_esEs1(vyw300, vyw4000, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw300), Left(vyw4000), app(ty_Maybe, be), bb) -> new_esEs1(vyw300, vyw4000, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, bdh), bea), beb), baf, bcb) -> new_esEs3(vyw300, vyw4000, bdh, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs3(vyw302, vyw4002, bbe, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(app(app(ty_@3, bcg), bch), bda), bcb) -> new_esEs3(vyw301, vyw4001, bcg, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, bdf), baf, bcb) -> new_esEs1(vyw300, vyw4000, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, app(ty_Maybe, bce), bcb) -> new_esEs1(vyw301, vyw4001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bae, baf, app(ty_Maybe, bbc)) -> new_esEs1(vyw302, vyw4002, bbc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) R is empty. Q is empty. 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_primCmpNat(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat(vyw300, vyw4000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) new_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, be), bd, be) new_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_gt(vyw18, vyw13, ba), h, ba) The TRS R consists of the following rules: new_ltEs7(Left(vyw440), Left(vyw450), app(app(ty_Either, cab), cac), hh) -> new_ltEs7(vyw440, vyw450, cab, cac) new_compare5(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs24(vyw441, vyw451, ty_Int) -> new_ltEs18(vyw441, vyw451) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs22(vyw82, vyw85, app(app(app(ty_@3, dfe), dff), dfg)) -> new_ltEs15(vyw82, vyw85, dfe, dff, dfg) new_pePe(True, vyw177) -> True new_ltEs10(False, False) -> True new_esEs10(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_ltEs4(vyw44, vyw45, ty_Integer) -> new_ltEs13(vyw44, vyw45) new_esEs17(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt6(vyw441, vyw451, app(app(ty_Either, cfd), cfe)) -> new_lt4(vyw441, vyw451, cfd, cfe) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare10(GT, GT) -> EQ new_compare26(vyw44, vyw45, True, hd, he) -> EQ new_ltEs24(vyw441, vyw451, app(ty_Maybe, feg)) -> new_ltEs8(vyw441, vyw451, feg) new_lt6(vyw441, vyw451, ty_Bool) -> new_lt12(vyw441, vyw451) new_esEs31(vyw440, vyw450, ty_Int) -> new_esEs23(vyw440, vyw450) new_esEs29(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt21(vyw81, vyw84, app(app(app(ty_@3, dgg), dgh), dha)) -> new_lt16(vyw81, vyw84, dgg, dgh, dha) new_ltEs20(vyw442, vyw452, ty_Ordering) -> new_ltEs9(vyw442, vyw452) new_esEs5(vyw30, vyw400, app(ty_Ratio, ead)) -> new_esEs12(vyw30, vyw400, ead) new_esEs9(vyw32, vyw402, ty_Ordering) -> new_esEs18(vyw32, vyw402) new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat1(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) new_esEs6(vyw30, vyw400, app(app(ty_@2, dca), dcb)) -> new_esEs16(vyw30, vyw400, dca, dcb) new_esEs13(Left(vyw300), Left(vyw4000), app(app(ty_@2, ece), ecf), dhg) -> new_esEs16(vyw300, vyw4000, ece, ecf) new_ltEs19(vyw51, vyw52, ty_Double) -> new_ltEs11(vyw51, vyw52) new_ltEs7(Left(vyw440), Left(vyw450), app(app(app(ty_@3, cag), cah), cba), hh) -> new_ltEs15(vyw440, vyw450, cag, cah, cba) new_esEs32(vyw81, vyw84, ty_Char) -> new_esEs15(vyw81, vyw84) new_compare5(vyw30, vyw400, app(app(ty_@2, cc), cd)) -> new_compare15(vyw30, vyw400, cc, cd) new_esEs22(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eaa, eab, eac) -> new_asAs(new_esEs36(vyw300, vyw4000, eaa), new_asAs(new_esEs35(vyw301, vyw4001, eab), new_esEs34(vyw302, vyw4002, eac))) new_esEs34(vyw302, vyw4002, app(ty_[], egf)) -> new_esEs20(vyw302, vyw4002, egf) new_lt21(vyw81, vyw84, ty_Ordering) -> new_lt11(vyw81, vyw84) new_compare10(EQ, EQ) -> EQ new_esEs19(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs25(vyw300, vyw4000) new_esEs36(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs37(vyw98, vyw100, ty_Double) -> new_esEs24(vyw98, vyw100) new_compare25(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, True, ddb, ddc, ddd) -> EQ new_lt21(vyw81, vyw84, ty_Char) -> new_lt5(vyw81, vyw84) new_not(True) -> False new_esEs4(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs18(GT, GT) -> True new_esEs4(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(ty_Ratio, gb)) -> new_esEs12(vyw30, vyw400, gb) new_primCompAux00(vyw90, LT) -> LT new_ltEs4(vyw44, vyw45, app(ty_Ratio, hf)) -> new_ltEs5(vyw44, vyw45, hf) new_gt(vyw18, vyw13, app(ty_Ratio, eef)) -> new_esEs41(new_compare6(vyw18, vyw13, eef)) new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(ty_[], eeb)) -> new_esEs20(vyw300, vyw4000, eeb) new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs10(vyw31, vyw401, ty_Float) -> new_esEs25(vyw31, vyw401) new_esEs30(vyw441, vyw451, ty_Bool) -> new_esEs14(vyw441, vyw451) new_ltEs24(vyw441, vyw451, app(ty_[], ffe)) -> new_ltEs17(vyw441, vyw451, ffe) new_ltEs7(Left(vyw440), Left(vyw450), ty_Bool, hh) -> new_ltEs10(vyw440, vyw450) new_esEs34(vyw302, vyw4002, ty_@0) -> new_esEs21(vyw302, vyw4002) new_ltEs8(Just(vyw440), Just(vyw450), ty_Integer) -> new_ltEs13(vyw440, vyw450) new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, ebf, ebg, ebh) -> LT new_ltEs20(vyw442, vyw452, app(app(ty_Either, ceb), cec)) -> new_ltEs7(vyw442, vyw452, ceb, cec) new_esEs13(Left(vyw300), Left(vyw4000), app(app(ty_Either, ecc), ecd), dhg) -> new_esEs13(vyw300, vyw4000, ecc, ecd) new_compare8(Right(vyw30), Left(vyw400), bfa, bfb) -> GT new_ltEs20(vyw442, vyw452, ty_Char) -> new_ltEs12(vyw442, vyw452) new_esEs11(vyw30, vyw400, app(ty_Maybe, gg)) -> new_esEs19(vyw30, vyw400, gg) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs29(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_lt5(vyw3, vyw40) -> new_esEs27(new_compare13(vyw3, vyw40)) new_esEs34(vyw302, vyw4002, ty_Integer) -> new_esEs17(vyw302, vyw4002) new_lt20(vyw80, vyw83, ty_Integer) -> new_lt14(vyw80, vyw83) new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs32(vyw81, vyw84, ty_Ordering) -> new_esEs18(vyw81, vyw84) new_esEs39(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_esEs6(vyw30, vyw400, app(ty_[], dcd)) -> new_esEs20(vyw30, vyw400, dcd) new_esEs37(vyw98, vyw100, ty_Char) -> new_esEs15(vyw98, vyw100) new_ltEs4(vyw44, vyw45, app(app(ty_@2, bab), bac)) -> new_ltEs14(vyw44, vyw45, bab, bac) new_ltEs21(vyw58, vyw59, ty_Float) -> new_ltEs16(vyw58, vyw59) new_ltEs21(vyw58, vyw59, ty_Double) -> new_ltEs11(vyw58, vyw59) new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT new_esEs6(vyw30, vyw400, app(app(ty_Either, dbg), dbh)) -> new_esEs13(vyw30, vyw400, dbg, dbh) new_lt23(vyw440, vyw450, app(ty_[], fgg)) -> new_lt18(vyw440, vyw450, fgg) new_esEs10(vyw31, vyw401, ty_Ordering) -> new_esEs18(vyw31, vyw401) new_lt7(vyw440, vyw450, ty_@0) -> new_lt9(vyw440, vyw450) new_esEs4(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_lt21(vyw81, vyw84, ty_Double) -> new_lt13(vyw81, vyw84) new_esEs5(vyw30, vyw400, app(ty_Maybe, eba)) -> new_esEs19(vyw30, vyw400, eba) new_compare5(vyw30, vyw400, app(ty_Maybe, cb)) -> new_compare9(vyw30, vyw400, cb) new_lt7(vyw440, vyw450, app(ty_Maybe, cgh)) -> new_lt10(vyw440, vyw450, cgh) new_esEs29(vyw300, vyw4000, app(ty_[], bhe)) -> new_esEs20(vyw300, vyw4000, bhe) new_esEs35(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs5(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_ltEs8(Just(vyw440), Just(vyw450), ty_Double) -> new_ltEs11(vyw440, vyw450) new_primCmpNat0(Zero, Succ(vyw4000)) -> LT new_esEs19(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs9(vyw32, vyw402, ty_Float) -> new_esEs25(vyw32, vyw402) new_ltEs21(vyw58, vyw59, ty_Integer) -> new_ltEs13(vyw58, vyw59) new_esEs18(LT, LT) -> True new_esEs8(vyw30, vyw400, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs22(vyw30, vyw400, bdc, bdd, bde) new_esEs27(LT) -> True new_compare17(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_ltEs23(vyw99, vyw101, ty_Float) -> new_ltEs16(vyw99, vyw101) new_ltEs21(vyw58, vyw59, app(ty_Ratio, chh)) -> new_ltEs5(vyw58, vyw59, chh) new_esEs31(vyw440, vyw450, app(ty_Maybe, cgh)) -> new_esEs19(vyw440, vyw450, cgh) new_lt20(vyw80, vyw83, ty_Float) -> new_lt17(vyw80, vyw83) new_esEs39(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs29(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_lt24(vyw3, vyw40, ty_Double) -> new_lt13(vyw3, vyw40) new_fsEs(vyw172) -> new_not(new_esEs18(vyw172, GT)) new_ltEs14(@2(vyw440, vyw441), @2(vyw450, vyw451), bab, bac) -> new_pePe(new_lt23(vyw440, vyw450, bab), new_asAs(new_esEs38(vyw440, vyw450, bab), new_ltEs24(vyw441, vyw451, bac))) new_esEs37(vyw98, vyw100, ty_Float) -> new_esEs25(vyw98, vyw100) new_ltEs23(vyw99, vyw101, app(app(ty_@2, fcd), fce)) -> new_ltEs14(vyw99, vyw101, fcd, fce) new_ltEs23(vyw99, vyw101, app(ty_Ratio, fbh)) -> new_ltEs5(vyw99, vyw101, fbh) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_Ratio, caa), hh) -> new_ltEs5(vyw440, vyw450, caa) new_esEs9(vyw32, vyw402, app(app(ty_@2, dh), ea)) -> new_esEs16(vyw32, vyw402, dh, ea) new_ltEs20(vyw442, vyw452, ty_@0) -> new_ltEs6(vyw442, vyw452) new_ltEs10(True, False) -> False new_ltEs19(vyw51, vyw52, ty_Int) -> new_ltEs18(vyw51, vyw52) new_esEs33(vyw80, vyw83, app(ty_Maybe, ddh)) -> new_esEs19(vyw80, vyw83, ddh) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_lt22(vyw98, vyw100, ty_Bool) -> new_lt12(vyw98, vyw100) new_ltEs7(Left(vyw440), Left(vyw450), ty_@0, hh) -> new_ltEs6(vyw440, vyw450) new_ltEs19(vyw51, vyw52, app(app(ty_@2, cdc), cdd)) -> new_ltEs14(vyw51, vyw52, cdc, cdd) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs37(vyw98, vyw100, app(app(ty_Either, fdc), fdd)) -> new_esEs13(vyw98, vyw100, fdc, fdd) new_lt24(vyw3, vyw40, app(ty_Ratio, dbd)) -> new_lt8(vyw3, vyw40, dbd) new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT new_compare13(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) new_ltEs8(Just(vyw440), Just(vyw450), ty_Float) -> new_ltEs16(vyw440, vyw450) new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_esEs33(vyw80, vyw83, app(ty_Ratio, dde)) -> new_esEs12(vyw80, vyw83, dde) new_lt24(vyw3, vyw40, app(app(ty_Either, bfa), bfb)) -> new_lt4(vyw3, vyw40, bfa, bfb) new_esEs37(vyw98, vyw100, app(ty_[], fec)) -> new_esEs20(vyw98, vyw100, fec) new_compare26(vyw44, vyw45, False, hd, he) -> new_compare19(vyw44, vyw45, new_ltEs4(vyw44, vyw45, hd), hd, he) new_compare12(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_lt7(vyw440, vyw450, ty_Integer) -> new_lt14(vyw440, vyw450) new_esEs28(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs34(vyw302, vyw4002, ty_Double) -> new_esEs24(vyw302, vyw4002) new_esEs35(vyw301, vyw4001, ty_Float) -> new_esEs25(vyw301, vyw4001) new_esEs12(:%(vyw300, vyw301), :%(vyw4000, vyw4001), dhe) -> new_asAs(new_esEs40(vyw300, vyw4000, dhe), new_esEs39(vyw301, vyw4001, dhe)) new_ltEs19(vyw51, vyw52, app(ty_Maybe, cdb)) -> new_ltEs8(vyw51, vyw52, cdb) new_ltEs24(vyw441, vyw451, ty_Bool) -> new_ltEs10(vyw441, vyw451) new_ltEs7(Left(vyw440), Left(vyw450), ty_Int, hh) -> new_ltEs18(vyw440, vyw450) new_primMulNat0(Succ(vyw40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw3100)) -> Zero new_lt22(vyw98, vyw100, ty_Integer) -> new_lt14(vyw98, vyw100) new_ltEs19(vyw51, vyw52, ty_Integer) -> new_ltEs13(vyw51, vyw52) new_lt15(vyw3, vyw40, bah, bba) -> new_esEs27(new_compare15(vyw3, vyw40, bah, bba)) new_gt(vyw18, vyw13, ty_Ordering) -> new_esEs41(new_compare10(vyw18, vyw13)) new_primPlusNat1(Succ(vyw1780), vyw3100) -> Succ(Succ(new_primPlusNat0(vyw1780, vyw3100))) new_esEs31(vyw440, vyw450, app(app(app(ty_@3, chc), chd), che)) -> new_esEs22(vyw440, vyw450, chc, chd, che) new_lt10(vyw3, vyw40, dbe) -> new_esEs27(new_compare9(vyw3, vyw40, dbe)) new_primPlusNat0(Succ(vyw17800), Zero) -> Succ(vyw17800) new_primPlusNat0(Zero, Succ(vyw31000)) -> Succ(vyw31000) new_ltEs19(vyw51, vyw52, app(ty_Ratio, ccg)) -> new_ltEs5(vyw51, vyw52, ccg) new_lt24(vyw3, vyw40, app(app(app(ty_@3, db), dc), dd)) -> new_lt16(vyw3, vyw40, db, dc, dd) new_lt21(vyw81, vyw84, app(ty_Ratio, dga)) -> new_lt8(vyw81, vyw84, dga) new_primPlusNat1(Zero, vyw3100) -> Succ(vyw3100) new_esEs8(vyw30, vyw400, app(ty_Ratio, bcd)) -> new_esEs12(vyw30, vyw400, bcd) new_compare5(vyw30, vyw400, app(ty_[], da)) -> new_compare0(vyw30, vyw400, da) new_lt14(vyw3, vyw40) -> new_esEs27(new_compare14(vyw3, vyw40)) new_esEs18(EQ, EQ) -> True new_esEs32(vyw81, vyw84, ty_Double) -> new_esEs24(vyw81, vyw84) new_esEs31(vyw440, vyw450, ty_Integer) -> new_esEs17(vyw440, vyw450) new_ltEs7(Left(vyw440), Left(vyw450), ty_Char, hh) -> new_ltEs12(vyw440, vyw450) new_esEs32(vyw81, vyw84, app(app(ty_@2, dge), dgf)) -> new_esEs16(vyw81, vyw84, dge, dgf) new_esEs37(vyw98, vyw100, ty_Bool) -> new_esEs14(vyw98, vyw100) new_lt20(vyw80, vyw83, ty_@0) -> new_lt9(vyw80, vyw83) new_esEs8(vyw30, vyw400, app(ty_Maybe, bda)) -> new_esEs19(vyw30, vyw400, bda) new_lt7(vyw440, vyw450, ty_Int) -> new_lt19(vyw440, vyw450) new_esEs13(Left(vyw300), Left(vyw4000), ty_@0, dhg) -> new_esEs21(vyw300, vyw4000) new_ltEs10(False, True) -> True new_esEs6(vyw30, vyw400, app(app(app(ty_@3, dce), dcf), dcg)) -> new_esEs22(vyw30, vyw400, dce, dcf, dcg) new_esEs31(vyw440, vyw450, ty_@0) -> new_esEs21(vyw440, vyw450) new_ltEs4(vyw44, vyw45, ty_Int) -> new_ltEs18(vyw44, vyw45) new_lt23(vyw440, vyw450, ty_Int) -> new_lt19(vyw440, vyw450) new_ltEs20(vyw442, vyw452, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs15(vyw442, vyw452, ceg, ceh, cfa) new_ltEs19(vyw51, vyw52, app(ty_[], cdh)) -> new_ltEs17(vyw51, vyw52, cdh) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Float) -> new_compare17(vyw30, vyw400) new_esEs9(vyw32, vyw402, ty_Double) -> new_esEs24(vyw32, vyw402) new_ltEs21(vyw58, vyw59, app(app(ty_@2, dad), dae)) -> new_ltEs14(vyw58, vyw59, dad, dae) new_esEs7(vyw31, vyw401, app(ty_Maybe, bbg)) -> new_esEs19(vyw31, vyw401, bbg) new_lt9(vyw3, vyw40) -> new_esEs27(new_compare7(vyw3, vyw40)) new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs5(vyw30, vyw400, app(app(app(ty_@3, ebc), ebd), ebe)) -> new_esEs22(vyw30, vyw400, ebc, ebd, ebe) new_lt20(vyw80, vyw83, app(ty_Maybe, ddh)) -> new_lt10(vyw80, vyw83, ddh) new_ltEs4(vyw44, vyw45, ty_Double) -> new_ltEs11(vyw44, vyw45) new_esEs31(vyw440, vyw450, app(ty_Ratio, cge)) -> new_esEs12(vyw440, vyw450, cge) new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_lt16(vyw3, vyw40, db, dc, dd) -> new_esEs27(new_compare16(vyw3, vyw40, db, dc, dd)) new_esEs38(vyw440, vyw450, ty_Bool) -> new_esEs14(vyw440, vyw450) new_esEs29(vyw300, vyw4000, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs22(vyw300, vyw4000, bhf, bhg, bhh) new_compare5(vyw30, vyw400, app(ty_Ratio, bg)) -> new_compare6(vyw30, vyw400, bg) new_esEs7(vyw31, vyw401, app(ty_Ratio, bbb)) -> new_esEs12(vyw31, vyw401, bbb) new_esEs30(vyw441, vyw451, ty_Ordering) -> new_esEs18(vyw441, vyw451) new_ltEs4(vyw44, vyw45, app(ty_Maybe, baa)) -> new_ltEs8(vyw44, vyw45, baa) new_compare5(vyw30, vyw400, ty_Ordering) -> new_compare10(vyw30, vyw400) new_esEs4(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs10(vyw31, vyw401, ty_Double) -> new_esEs24(vyw31, vyw401) new_esEs30(vyw441, vyw451, ty_Char) -> new_esEs15(vyw441, vyw451) new_ltEs24(vyw441, vyw451, app(app(ty_@2, feh), ffa)) -> new_ltEs14(vyw441, vyw451, feh, ffa) new_ltEs7(Left(vyw440), Right(vyw450), hg, hh) -> True new_ltEs23(vyw99, vyw101, ty_Double) -> new_ltEs11(vyw99, vyw101) new_esEs38(vyw440, vyw450, ty_Float) -> new_esEs25(vyw440, vyw450) new_ltEs7(Left(vyw440), Left(vyw450), ty_Ordering, hh) -> new_ltEs9(vyw440, vyw450) new_lt21(vyw81, vyw84, ty_Int) -> new_lt19(vyw81, vyw84) new_compare10(LT, GT) -> LT new_esEs8(vyw30, vyw400, app(app(ty_@2, bcg), bch)) -> new_esEs16(vyw30, vyw400, bcg, bch) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_Ratio, ecb), dhg) -> new_esEs12(vyw300, vyw4000, ecb) new_ltEs24(vyw441, vyw451, ty_Float) -> new_ltEs16(vyw441, vyw451) new_lt23(vyw440, vyw450, ty_Integer) -> new_lt14(vyw440, vyw450) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_esEs31(vyw440, vyw450, app(app(ty_Either, cgf), cgg)) -> new_esEs13(vyw440, vyw450, cgf, cgg) new_esEs33(vyw80, vyw83, ty_Bool) -> new_esEs14(vyw80, vyw83) new_esEs29(vyw300, vyw4000, app(app(ty_@2, bhb), bhc)) -> new_esEs16(vyw300, vyw4000, bhb, bhc) new_ltEs7(Left(vyw440), Left(vyw450), app(app(ty_@2, cae), caf), hh) -> new_ltEs14(vyw440, vyw450, cae, caf) new_esEs13(Left(vyw300), Left(vyw4000), ty_Integer, dhg) -> new_esEs17(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_esEs37(vyw98, vyw100, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs22(vyw98, vyw100, fdh, fea, feb) new_esEs9(vyw32, vyw402, app(ty_[], ec)) -> new_esEs20(vyw32, vyw402, ec) new_lt6(vyw441, vyw451, ty_Integer) -> new_lt14(vyw441, vyw451) new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_compare10(GT, EQ) -> GT new_ltEs21(vyw58, vyw59, app(ty_[], dba)) -> new_ltEs17(vyw58, vyw59, dba) new_compare16(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), db, dc, dd) -> new_compare25(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, db), new_asAs(new_esEs10(vyw31, vyw401, dc), new_esEs9(vyw32, vyw402, dd))), db, dc, dd) new_compare0([], :(vyw400, vyw401), bf) -> LT new_esEs33(vyw80, vyw83, ty_Int) -> new_esEs23(vyw80, vyw83) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Float) -> new_esEs25(vyw300, vyw4000) new_lt6(vyw441, vyw451, app(ty_Ratio, cfc)) -> new_lt8(vyw441, vyw451, cfc) new_compare25(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, ddb, ddc, ddd) -> new_compare114(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, new_lt20(vyw80, vyw83, ddb), new_asAs(new_esEs33(vyw80, vyw83, ddb), new_pePe(new_lt21(vyw81, vyw84, ddc), new_asAs(new_esEs32(vyw81, vyw84, ddc), new_ltEs22(vyw82, vyw85, ddd)))), ddb, ddc, ddd) new_esEs29(vyw300, vyw4000, app(ty_Ratio, bgg)) -> new_esEs12(vyw300, vyw4000, bgg) new_esEs5(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_gt(vyw18, vyw13, ty_Double) -> new_esEs41(new_compare12(vyw18, vyw13)) new_esEs32(vyw81, vyw84, ty_@0) -> new_esEs21(vyw81, vyw84) new_lt21(vyw81, vyw84, app(app(ty_Either, dgb), dgc)) -> new_lt4(vyw81, vyw84, dgb, dgc) new_esEs37(vyw98, vyw100, ty_@0) -> new_esEs21(vyw98, vyw100) new_ltEs20(vyw442, vyw452, ty_Float) -> new_ltEs16(vyw442, vyw452) new_lt24(vyw3, vyw40, ty_Char) -> new_lt5(vyw3, vyw40) new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, False, ebf, ebg, ebh) -> GT new_esEs30(vyw441, vyw451, app(app(ty_@2, cfg), cfh)) -> new_esEs16(vyw441, vyw451, cfg, cfh) new_gt(vyw18, vyw13, app(app(ty_@2, efb), efc)) -> new_esEs41(new_compare15(vyw18, vyw13, efb, efc)) new_lt23(vyw440, vyw450, app(app(app(ty_@3, fgd), fge), fgf)) -> new_lt16(vyw440, vyw450, fgd, fge, fgf) new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) new_esEs29(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs30(vyw441, vyw451, app(ty_Ratio, cfc)) -> new_esEs12(vyw441, vyw451, cfc) new_primCompAux00(vyw90, EQ) -> vyw90 new_compare113(vyw148, vyw149, vyw150, vyw151, False, dch, dda) -> GT new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(ty_Maybe, eea)) -> new_esEs19(vyw300, vyw4000, eea) new_esEs34(vyw302, vyw4002, ty_Ordering) -> new_esEs18(vyw302, vyw4002) new_esEs28(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs33(vyw80, vyw83, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs22(vyw80, vyw83, dec, ded, dee) new_esEs33(vyw80, vyw83, ty_@0) -> new_esEs21(vyw80, vyw83) new_esEs32(vyw81, vyw84, ty_Integer) -> new_esEs17(vyw81, vyw84) new_lt6(vyw441, vyw451, ty_Char) -> new_lt5(vyw441, vyw451) new_lt21(vyw81, vyw84, ty_@0) -> new_lt9(vyw81, vyw84) new_gt(vyw18, vyw13, app(ty_[], efg)) -> new_esEs41(new_compare0(vyw18, vyw13, efg)) new_esEs35(vyw301, vyw4001, app(ty_Maybe, ehg)) -> new_esEs19(vyw301, vyw4001, ehg) new_lt7(vyw440, vyw450, app(app(app(ty_@3, chc), chd), che)) -> new_lt16(vyw440, vyw450, chc, chd, che) new_esEs35(vyw301, vyw4001, app(app(ty_Either, ehc), ehd)) -> new_esEs13(vyw301, vyw4001, ehc, ehd) new_lt7(vyw440, vyw450, ty_Float) -> new_lt17(vyw440, vyw450) new_ltEs17(vyw44, vyw45, bag) -> new_fsEs(new_compare0(vyw44, vyw45, bag)) new_esEs4(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_esEs32(vyw81, vyw84, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs22(vyw81, vyw84, dgg, dgh, dha) new_esEs34(vyw302, vyw4002, ty_Int) -> new_esEs23(vyw302, vyw4002) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Float) -> new_ltEs16(vyw440, vyw450) new_lt6(vyw441, vyw451, app(app(app(ty_@3, cga), cgb), cgc)) -> new_lt16(vyw441, vyw451, cga, cgb, cgc) new_ltEs22(vyw82, vyw85, app(ty_[], dfh)) -> new_ltEs17(vyw82, vyw85, dfh) new_esEs34(vyw302, vyw4002, app(ty_Maybe, ege)) -> new_esEs19(vyw302, vyw4002, ege) new_esEs5(vyw30, vyw400, app(ty_[], ebb)) -> new_esEs20(vyw30, vyw400, ebb) new_esEs36(vyw300, vyw4000, app(app(ty_Either, fae), faf)) -> new_esEs13(vyw300, vyw4000, fae, faf) new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_lt23(vyw440, vyw450, ty_Char) -> new_lt5(vyw440, vyw450) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Char) -> new_esEs15(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Int) -> new_compare18(vyw30, vyw400) new_ltEs9(GT, LT) -> False new_esEs19(Just(vyw300), Just(vyw4000), app(app(ty_Either, gac), gad)) -> new_esEs13(vyw300, vyw4000, gac, gad) new_ltEs8(Just(vyw440), Just(vyw450), app(ty_Maybe, fhc)) -> new_ltEs8(vyw440, vyw450, fhc) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_esEs30(vyw441, vyw451, ty_Double) -> new_esEs24(vyw441, vyw451) new_ltEs16(vyw44, vyw45) -> new_fsEs(new_compare17(vyw44, vyw45)) new_esEs29(vyw300, vyw4000, app(app(ty_Either, bgh), bha)) -> new_esEs13(vyw300, vyw4000, bgh, bha) new_ltEs24(vyw441, vyw451, app(ty_Ratio, fed)) -> new_ltEs5(vyw441, vyw451, fed) new_esEs10(vyw31, vyw401, ty_Integer) -> new_esEs17(vyw31, vyw401) new_compare9(Nothing, Just(vyw400), dbe) -> LT new_esEs33(vyw80, vyw83, ty_Ordering) -> new_esEs18(vyw80, vyw83) new_ltEs8(Just(vyw440), Just(vyw450), ty_Int) -> new_ltEs18(vyw440, vyw450) new_lt22(vyw98, vyw100, ty_@0) -> new_lt9(vyw98, vyw100) new_lt7(vyw440, vyw450, ty_Char) -> new_lt5(vyw440, vyw450) new_esEs14(False, False) -> True new_ltEs8(Just(vyw440), Just(vyw450), app(app(ty_Either, fha), fhb)) -> new_ltEs7(vyw440, vyw450, fha, fhb) new_esEs41(GT) -> True new_esEs28(vyw301, vyw4001, app(ty_Ratio, bfe)) -> new_esEs12(vyw301, vyw4001, bfe) new_lt6(vyw441, vyw451, ty_Float) -> new_lt17(vyw441, vyw451) new_esEs38(vyw440, vyw450, ty_Ordering) -> new_esEs18(vyw440, vyw450) new_esEs31(vyw440, vyw450, ty_Char) -> new_esEs15(vyw440, vyw450) new_lt22(vyw98, vyw100, app(app(ty_Either, fdc), fdd)) -> new_lt4(vyw98, vyw100, fdc, fdd) new_compare111(vyw135, vyw136, False, eca) -> GT new_esEs4(vyw30, vyw400, app(ty_Maybe, dhh)) -> new_esEs19(vyw30, vyw400, dhh) new_esEs34(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) new_esEs28(vyw301, vyw4001, app(app(ty_@2, bfh), bga)) -> new_esEs16(vyw301, vyw4001, bfh, bga) new_esEs8(vyw30, vyw400, app(ty_[], bdb)) -> new_esEs20(vyw30, vyw400, bdb) new_esEs38(vyw440, vyw450, ty_@0) -> new_esEs21(vyw440, vyw450) new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs30(vyw441, vyw451, ty_Int) -> new_esEs23(vyw441, vyw451) new_lt20(vyw80, vyw83, ty_Int) -> new_lt19(vyw80, vyw83) new_compare9(Just(vyw30), Nothing, dbe) -> GT new_esEs35(vyw301, vyw4001, ty_Ordering) -> new_esEs18(vyw301, vyw4001) new_esEs37(vyw98, vyw100, ty_Integer) -> new_esEs17(vyw98, vyw100) new_lt20(vyw80, vyw83, app(app(app(ty_@3, dec), ded), dee)) -> new_lt16(vyw80, vyw83, dec, ded, dee) new_compare5(vyw30, vyw400, app(app(ty_Either, bh), ca)) -> new_compare8(vyw30, vyw400, bh, ca) new_ltEs24(vyw441, vyw451, ty_Double) -> new_ltEs11(vyw441, vyw451) new_lt11(vyw3, vyw40) -> new_esEs27(new_compare10(vyw3, vyw40)) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_Maybe, gag)) -> new_esEs19(vyw300, vyw4000, gag) new_compare0(:(vyw30, vyw31), [], bf) -> GT new_esEs13(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, eda), edb), edc), dhg) -> new_esEs22(vyw300, vyw4000, eda, edb, edc) new_primPlusNat0(Succ(vyw17800), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat0(vyw17800, vyw31000))) new_esEs26(vyw300, vyw4000, app(app(ty_@2, beb), bec)) -> new_esEs16(vyw300, vyw4000, beb, bec) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_Maybe, cad), hh) -> new_ltEs8(vyw440, vyw450, cad) new_esEs32(vyw81, vyw84, app(app(ty_Either, dgb), dgc)) -> new_esEs13(vyw81, vyw84, dgb, dgc) new_lt23(vyw440, vyw450, ty_@0) -> new_lt9(vyw440, vyw450) new_esEs19(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Double) -> new_esEs24(vyw301, vyw4001) new_lt22(vyw98, vyw100, ty_Float) -> new_lt17(vyw98, vyw100) new_esEs38(vyw440, vyw450, app(ty_Maybe, fga)) -> new_esEs19(vyw440, vyw450, fga) new_ltEs8(Just(vyw440), Just(vyw450), app(app(app(ty_@3, fhf), fhg), fhh)) -> new_ltEs15(vyw440, vyw450, fhf, fhg, fhh) new_esEs36(vyw300, vyw4000, app(app(app(ty_@3, fbc), fbd), fbe)) -> new_esEs22(vyw300, vyw4000, fbc, fbd, fbe) new_esEs37(vyw98, vyw100, ty_Ordering) -> new_esEs18(vyw98, vyw100) new_ltEs9(LT, EQ) -> True new_esEs35(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(app(app(ty_@3, ha), hb), hc)) -> new_esEs22(vyw30, vyw400, ha, hb, hc) new_ltEs13(vyw44, vyw45) -> new_fsEs(new_compare14(vyw44, vyw45)) new_compare17(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_compare17(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_compare0(:(vyw30, vyw31), :(vyw400, vyw401), bf) -> new_primCompAux0(vyw30, vyw400, new_compare0(vyw31, vyw401, bf), bf) new_ltEs22(vyw82, vyw85, ty_Double) -> new_ltEs11(vyw82, vyw85) new_esEs36(vyw300, vyw4000, app(ty_Maybe, fba)) -> new_esEs19(vyw300, vyw4000, fba) new_compare111(vyw135, vyw136, True, eca) -> LT new_esEs34(vyw302, vyw4002, app(app(ty_Either, ega), egb)) -> new_esEs13(vyw302, vyw4002, ega, egb) new_esEs13(Left(vyw300), Left(vyw4000), ty_Bool, dhg) -> new_esEs14(vyw300, vyw4000) new_ltEs7(Right(vyw440), Right(vyw450), hg, app(app(ty_@2, cbg), cbh)) -> new_ltEs14(vyw440, vyw450, cbg, cbh) new_ltEs9(LT, GT) -> True new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs5(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(app(ty_Either, gc), gd)) -> new_esEs13(vyw30, vyw400, gc, gd) new_esEs35(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_ltEs11(vyw44, vyw45) -> new_fsEs(new_compare12(vyw44, vyw45)) new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_esEs19(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs17(vyw300, vyw4000) new_esEs34(vyw302, vyw4002, ty_Char) -> new_esEs15(vyw302, vyw4002) new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs34(vyw302, vyw4002, app(app(app(ty_@3, egg), egh), eha)) -> new_esEs22(vyw302, vyw4002, egg, egh, eha) new_compare5(vyw30, vyw400, app(app(app(ty_@3, ce), cf), cg)) -> new_compare16(vyw30, vyw400, ce, cf, cg) new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) new_compare11(True, False) -> GT new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Double) -> new_ltEs11(vyw440, vyw450) new_lt23(vyw440, vyw450, ty_Float) -> new_lt17(vyw440, vyw450) new_ltEs7(Right(vyw440), Right(vyw450), hg, app(ty_[], ccd)) -> new_ltEs17(vyw440, vyw450, ccd) new_esEs10(vyw31, vyw401, ty_Char) -> new_esEs15(vyw31, vyw401) new_ltEs19(vyw51, vyw52, ty_Float) -> new_ltEs16(vyw51, vyw52) new_ltEs4(vyw44, vyw45, ty_Float) -> new_ltEs16(vyw44, vyw45) new_esEs19(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs33(vyw80, vyw83, ty_Char) -> new_esEs15(vyw80, vyw83) new_esEs35(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_esEs26(vyw300, vyw4000, app(ty_Ratio, bdg)) -> new_esEs12(vyw300, vyw4000, bdg) new_esEs13(Left(vyw300), Left(vyw4000), ty_Int, dhg) -> new_esEs23(vyw300, vyw4000) new_esEs7(vyw31, vyw401, ty_Float) -> new_esEs25(vyw31, vyw401) new_ltEs9(EQ, LT) -> False new_ltEs15(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), bad, bae, baf) -> new_pePe(new_lt7(vyw440, vyw450, bad), new_asAs(new_esEs31(vyw440, vyw450, bad), new_pePe(new_lt6(vyw441, vyw451, bae), new_asAs(new_esEs30(vyw441, vyw451, bae), new_ltEs20(vyw442, vyw452, baf))))) new_ltEs12(vyw44, vyw45) -> new_fsEs(new_compare13(vyw44, vyw45)) new_lt20(vyw80, vyw83, ty_Char) -> new_lt5(vyw80, vyw83) new_lt20(vyw80, vyw83, app(app(ty_Either, ddf), ddg)) -> new_lt4(vyw80, vyw83, ddf, ddg) new_esEs15(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs36(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs20(:(vyw300, vyw301), :(vyw4000, vyw4001), bdf) -> new_asAs(new_esEs26(vyw300, vyw4000, bdf), new_esEs20(vyw301, vyw4001, bdf)) new_esEs32(vyw81, vyw84, ty_Bool) -> new_esEs14(vyw81, vyw84) new_esEs19(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_compare28(vyw51, vyw52, True, cce, ccf) -> EQ new_esEs10(vyw31, vyw401, app(app(ty_Either, eh), fa)) -> new_esEs13(vyw31, vyw401, eh, fa) new_esEs33(vyw80, vyw83, app(app(ty_Either, ddf), ddg)) -> new_esEs13(vyw80, vyw83, ddf, ddg) new_esEs37(vyw98, vyw100, app(ty_Maybe, fde)) -> new_esEs19(vyw98, vyw100, fde) new_ltEs7(Right(vyw440), Right(vyw450), hg, app(ty_Ratio, cbc)) -> new_ltEs5(vyw440, vyw450, cbc) new_esEs32(vyw81, vyw84, ty_Int) -> new_esEs23(vyw81, vyw84) new_lt24(vyw3, vyw40, ty_Float) -> new_lt17(vyw3, vyw40) new_esEs36(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_esEs19(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, gba), gbb), gbc)) -> new_esEs22(vyw300, vyw4000, gba, gbb, gbc) new_esEs35(vyw301, vyw4001, app(app(app(ty_@3, faa), fab), fac)) -> new_esEs22(vyw301, vyw4001, faa, fab, fac) new_compare29(vyw58, vyw59, False, chg) -> new_compare111(vyw58, vyw59, new_ltEs21(vyw58, vyw59, chg), chg) new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) new_esEs28(vyw301, vyw4001, app(ty_[], bgc)) -> new_esEs20(vyw301, vyw4001, bgc) new_ltEs7(Right(vyw440), Left(vyw450), hg, hh) -> False new_ltEs21(vyw58, vyw59, ty_@0) -> new_ltEs6(vyw58, vyw59) new_lt21(vyw81, vyw84, app(app(ty_@2, dge), dgf)) -> new_lt15(vyw81, vyw84, dge, dgf) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT new_ltEs23(vyw99, vyw101, ty_Bool) -> new_ltEs10(vyw99, vyw101) new_esEs13(Left(vyw300), Left(vyw4000), ty_Ordering, dhg) -> new_esEs18(vyw300, vyw4000) new_lt12(vyw3, vyw40) -> new_esEs27(new_compare11(vyw3, vyw40)) new_ltEs22(vyw82, vyw85, app(ty_Ratio, deg)) -> new_ltEs5(vyw82, vyw85, deg) new_lt4(vyw3, vyw40, bfa, bfb) -> new_esEs27(new_compare8(vyw3, vyw40, bfa, bfb)) new_compare9(Just(vyw30), Just(vyw400), dbe) -> new_compare29(vyw30, vyw400, new_esEs6(vyw30, vyw400, dbe), dbe) new_ltEs22(vyw82, vyw85, ty_Float) -> new_ltEs16(vyw82, vyw85) new_ltEs19(vyw51, vyw52, ty_Ordering) -> new_ltEs9(vyw51, vyw52) new_lt24(vyw3, vyw40, ty_@0) -> new_lt9(vyw3, vyw40) new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(app(app(ty_@3, eec), eed), eee)) -> new_esEs22(vyw300, vyw4000, eec, eed, eee) new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT new_lt23(vyw440, vyw450, app(app(ty_Either, ffg), ffh)) -> new_lt4(vyw440, vyw450, ffg, ffh) new_gt(vyw18, vyw13, app(ty_Maybe, efa)) -> new_esEs41(new_compare9(vyw18, vyw13, efa)) new_compare113(vyw148, vyw149, vyw150, vyw151, True, dch, dda) -> LT new_esEs36(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_ltEs24(vyw441, vyw451, app(app(ty_Either, fee), fef)) -> new_ltEs7(vyw441, vyw451, fee, fef) new_compare17(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) new_esEs16(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bfc, bfd) -> new_asAs(new_esEs29(vyw300, vyw4000, bfc), new_esEs28(vyw301, vyw4001, bfd)) new_gt(vyw18, vyw13, ty_Bool) -> new_esEs41(new_compare11(vyw18, vyw13)) new_esEs28(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_esEs4(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_ltEs9(LT, LT) -> True new_esEs32(vyw81, vyw84, app(ty_Ratio, dga)) -> new_esEs12(vyw81, vyw84, dga) new_esEs38(vyw440, vyw450, ty_Integer) -> new_esEs17(vyw440, vyw450) new_lt6(vyw441, vyw451, ty_Int) -> new_lt19(vyw441, vyw451) new_esEs33(vyw80, vyw83, app(app(ty_@2, dea), deb)) -> new_esEs16(vyw80, vyw83, dea, deb) new_lt6(vyw441, vyw451, app(ty_[], cgd)) -> new_lt18(vyw441, vyw451, cgd) new_ltEs22(vyw82, vyw85, app(app(ty_@2, dfc), dfd)) -> new_ltEs14(vyw82, vyw85, dfc, dfd) new_esEs41(EQ) -> False new_esEs5(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs10(vyw31, vyw401, ty_Int) -> new_esEs23(vyw31, vyw401) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Ordering) -> new_ltEs9(vyw440, vyw450) new_gt(vyw18, vyw13, ty_Float) -> new_esEs41(new_compare17(vyw18, vyw13)) new_ltEs8(Just(vyw440), Just(vyw450), ty_Char) -> new_ltEs12(vyw440, vyw450) new_esEs7(vyw31, vyw401, app(ty_[], bbh)) -> new_esEs20(vyw31, vyw401, bbh) new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_compare19(vyw121, vyw122, True, dbb, dbc) -> LT new_esEs9(vyw32, vyw402, ty_Int) -> new_esEs23(vyw32, vyw402) new_ltEs4(vyw44, vyw45, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs15(vyw44, vyw45, bad, bae, baf) new_esEs31(vyw440, vyw450, ty_Bool) -> new_esEs14(vyw440, vyw450) new_esEs28(vyw301, vyw4001, app(app(ty_Either, bff), bfg)) -> new_esEs13(vyw301, vyw4001, bff, bfg) new_ltEs21(vyw58, vyw59, ty_Char) -> new_ltEs12(vyw58, vyw59) new_lt17(vyw3, vyw40) -> new_esEs27(new_compare17(vyw3, vyw40)) new_esEs35(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs13(Left(vyw300), Left(vyw4000), ty_Char, dhg) -> new_esEs15(vyw300, vyw4000) new_lt20(vyw80, vyw83, ty_Double) -> new_lt13(vyw80, vyw83) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs7(Left(vyw440), Left(vyw450), ty_Float, hh) -> new_ltEs16(vyw440, vyw450) new_esEs9(vyw32, vyw402, app(ty_Maybe, eb)) -> new_esEs19(vyw32, vyw402, eb) new_esEs10(vyw31, vyw401, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs22(vyw31, vyw401, fg, fh, ga) new_esEs10(vyw31, vyw401, ty_@0) -> new_esEs21(vyw31, vyw401) new_ltEs18(vyw44, vyw45) -> new_fsEs(new_compare18(vyw44, vyw45)) new_ltEs19(vyw51, vyw52, ty_@0) -> new_ltEs6(vyw51, vyw52) new_lt22(vyw98, vyw100, ty_Char) -> new_lt5(vyw98, vyw100) new_ltEs22(vyw82, vyw85, ty_Integer) -> new_ltEs13(vyw82, vyw85) new_esEs7(vyw31, vyw401, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs22(vyw31, vyw401, bca, bcb, bcc) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_[], ech), dhg) -> new_esEs20(vyw300, vyw4000, ech) new_esEs5(vyw30, vyw400, app(app(ty_@2, eag), eah)) -> new_esEs16(vyw30, vyw400, eag, eah) new_esEs36(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_@0) -> new_compare7(vyw30, vyw400) new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_ltEs20(vyw442, vyw452, ty_Int) -> new_ltEs18(vyw442, vyw452) new_ltEs20(vyw442, vyw452, ty_Double) -> new_ltEs11(vyw442, vyw452) new_lt20(vyw80, vyw83, app(ty_Ratio, dde)) -> new_lt8(vyw80, vyw83, dde) new_esEs5(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_ltEs20(vyw442, vyw452, app(ty_Maybe, ced)) -> new_ltEs8(vyw442, vyw452, ced) new_lt22(vyw98, vyw100, app(ty_[], fec)) -> new_lt18(vyw98, vyw100, fec) new_lt6(vyw441, vyw451, ty_@0) -> new_lt9(vyw441, vyw451) new_esEs9(vyw32, vyw402, app(ty_Ratio, de)) -> new_esEs12(vyw32, vyw402, de) new_primCompAux00(vyw90, GT) -> GT new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_compare112(vyw148, vyw149, vyw150, vyw151, False, vyw153, dch, dda) -> new_compare113(vyw148, vyw149, vyw150, vyw151, vyw153, dch, dda) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Char) -> new_compare13(vyw30, vyw400) new_ltEs19(vyw51, vyw52, ty_Char) -> new_ltEs12(vyw51, vyw52) new_esEs19(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs23(vyw300, vyw4000) new_compare11(False, True) -> LT new_esEs36(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_lt13(vyw3, vyw40) -> new_esEs27(new_compare12(vyw3, vyw40)) new_ltEs21(vyw58, vyw59, ty_Ordering) -> new_ltEs9(vyw58, vyw59) new_lt22(vyw98, vyw100, app(app(app(ty_@3, fdh), fea), feb)) -> new_lt16(vyw98, vyw100, fdh, fea, feb) new_lt23(vyw440, vyw450, ty_Bool) -> new_lt12(vyw440, vyw450) new_lt21(vyw81, vyw84, ty_Integer) -> new_lt14(vyw81, vyw84) new_compare110(vyw128, vyw129, True, dhc, dhd) -> LT new_esEs33(vyw80, vyw83, ty_Integer) -> new_esEs17(vyw80, vyw83) new_lt21(vyw81, vyw84, ty_Float) -> new_lt17(vyw81, vyw84) new_lt7(vyw440, vyw450, app(app(ty_Either, cgf), cgg)) -> new_lt4(vyw440, vyw450, cgf, cgg) new_esEs30(vyw441, vyw451, app(ty_[], cgd)) -> new_esEs20(vyw441, vyw451, cgd) new_ltEs23(vyw99, vyw101, app(ty_[], fda)) -> new_ltEs17(vyw99, vyw101, fda) new_esEs20([], [], bdf) -> True new_esEs29(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs30(vyw441, vyw451, app(app(ty_Either, cfd), cfe)) -> new_esEs13(vyw441, vyw451, cfd, cfe) new_ltEs8(Just(vyw440), Just(vyw450), ty_Ordering) -> new_ltEs9(vyw440, vyw450) new_ltEs8(Just(vyw440), Just(vyw450), ty_@0) -> new_ltEs6(vyw440, vyw450) new_sr(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) new_primCmpNat0(Succ(vyw300), Zero) -> GT new_esEs38(vyw440, vyw450, app(app(app(ty_@3, fgd), fge), fgf)) -> new_esEs22(vyw440, vyw450, fgd, fge, fgf) new_ltEs19(vyw51, vyw52, app(app(ty_Either, cch), cda)) -> new_ltEs7(vyw51, vyw52, cch, cda) new_pePe(False, vyw177) -> vyw177 new_lt22(vyw98, vyw100, ty_Ordering) -> new_lt11(vyw98, vyw100) new_esEs11(vyw30, vyw400, app(app(ty_@2, ge), gf)) -> new_esEs16(vyw30, vyw400, ge, gf) new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), hg, app(ty_Maybe, cbf)) -> new_ltEs8(vyw440, vyw450, cbf) new_lt7(vyw440, vyw450, ty_Bool) -> new_lt12(vyw440, vyw450) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_lt22(vyw98, vyw100, ty_Int) -> new_lt19(vyw98, vyw100) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_ltEs7(Left(vyw440), Left(vyw450), ty_Integer, hh) -> new_ltEs13(vyw440, vyw450) new_compare11(True, True) -> EQ new_esEs5(vyw30, vyw400, app(app(ty_Either, eae), eaf)) -> new_esEs13(vyw30, vyw400, eae, eaf) new_compare8(Left(vyw30), Left(vyw400), bfa, bfb) -> new_compare26(vyw30, vyw400, new_esEs4(vyw30, vyw400, bfa), bfa, bfb) new_lt24(vyw3, vyw40, ty_Integer) -> new_lt14(vyw3, vyw40) new_esEs4(vyw30, vyw400, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs22(vyw30, vyw400, eaa, eab, eac) new_esEs4(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_lt22(vyw98, vyw100, ty_Double) -> new_lt13(vyw98, vyw100) new_ltEs4(vyw44, vyw45, ty_Char) -> new_ltEs12(vyw44, vyw45) new_esEs31(vyw440, vyw450, ty_Double) -> new_esEs24(vyw440, vyw450) new_esEs6(vyw30, vyw400, app(ty_Ratio, dbf)) -> new_esEs12(vyw30, vyw400, dbf) new_esEs36(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs10(vyw31, vyw401, app(ty_Maybe, fd)) -> new_esEs19(vyw31, vyw401, fd) new_esEs13(Left(vyw300), Left(vyw4000), ty_Double, dhg) -> new_esEs24(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Bool) -> new_compare11(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), hg, app(app(ty_Either, cbd), cbe)) -> new_ltEs7(vyw440, vyw450, cbd, cbe) new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs28(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_esEs28(vyw301, vyw4001, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs22(vyw301, vyw4001, bgd, bge, bgf) new_ltEs21(vyw58, vyw59, app(app(app(ty_@3, daf), dag), dah)) -> new_ltEs15(vyw58, vyw59, daf, dag, dah) new_lt24(vyw3, vyw40, ty_Int) -> new_lt19(vyw3, vyw40) new_compare10(GT, LT) -> GT new_lt24(vyw3, vyw40, app(ty_[], bf)) -> new_lt18(vyw3, vyw40, bf) new_esEs10(vyw31, vyw401, app(ty_Ratio, eg)) -> new_esEs12(vyw31, vyw401, eg) new_esEs7(vyw31, vyw401, ty_Double) -> new_esEs24(vyw31, vyw401) new_esEs38(vyw440, vyw450, ty_Char) -> new_esEs15(vyw440, vyw450) new_compare8(Left(vyw30), Right(vyw400), bfa, bfb) -> LT new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_ltEs9(GT, EQ) -> False new_esEs6(vyw30, vyw400, app(ty_Maybe, dcc)) -> new_esEs19(vyw30, vyw400, dcc) new_esEs25(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs23(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_lt7(vyw440, vyw450, ty_Double) -> new_lt13(vyw440, vyw450) new_lt21(vyw81, vyw84, app(ty_Maybe, dgd)) -> new_lt10(vyw81, vyw84, dgd) new_esEs33(vyw80, vyw83, ty_Double) -> new_esEs24(vyw80, vyw83) new_lt20(vyw80, vyw83, ty_Bool) -> new_lt12(vyw80, vyw83) new_esEs5(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_esEs4(vyw30, vyw400, app(ty_[], bdf)) -> new_esEs20(vyw30, vyw400, bdf) new_ltEs4(vyw44, vyw45, ty_@0) -> new_ltEs6(vyw44, vyw45) new_esEs31(vyw440, vyw450, app(app(ty_@2, cha), chb)) -> new_esEs16(vyw440, vyw450, cha, chb) new_esEs28(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_esEs31(vyw440, vyw450, ty_Ordering) -> new_esEs18(vyw440, vyw450) new_esEs7(vyw31, vyw401, ty_@0) -> new_esEs21(vyw31, vyw401) new_lt21(vyw81, vyw84, ty_Bool) -> new_lt12(vyw81, vyw84) new_esEs5(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_compare112(vyw148, vyw149, vyw150, vyw151, True, vyw153, dch, dda) -> new_compare113(vyw148, vyw149, vyw150, vyw151, True, dch, dda) new_ltEs8(Just(vyw440), Just(vyw450), ty_Bool) -> new_ltEs10(vyw440, vyw450) new_esEs7(vyw31, vyw401, ty_Integer) -> new_esEs17(vyw31, vyw401) new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs30(vyw441, vyw451, ty_Integer) -> new_esEs17(vyw441, vyw451) new_ltEs20(vyw442, vyw452, app(app(ty_@2, cee), cef)) -> new_ltEs14(vyw442, vyw452, cee, cef) new_esEs26(vyw300, vyw4000, app(app(ty_Either, bdh), bea)) -> new_esEs13(vyw300, vyw4000, bdh, bea) new_ltEs9(GT, GT) -> True new_esEs36(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_compare19(vyw121, vyw122, False, dbb, dbc) -> GT new_lt20(vyw80, vyw83, ty_Ordering) -> new_lt11(vyw80, vyw83) new_esEs26(vyw300, vyw4000, app(ty_[], bee)) -> new_esEs20(vyw300, vyw4000, bee) new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) new_esEs14(True, True) -> True new_esEs37(vyw98, vyw100, ty_Int) -> new_esEs23(vyw98, vyw100) new_esEs24(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs23(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs30(vyw441, vyw451, ty_@0) -> new_esEs21(vyw441, vyw451) new_esEs30(vyw441, vyw451, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs22(vyw441, vyw451, cga, cgb, cgc) new_ltEs4(vyw44, vyw45, ty_Ordering) -> new_ltEs9(vyw44, vyw45) new_ltEs20(vyw442, vyw452, app(ty_[], cfb)) -> new_ltEs17(vyw442, vyw452, cfb) new_esEs32(vyw81, vyw84, app(ty_Maybe, dgd)) -> new_esEs19(vyw81, vyw84, dgd) new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(app(ty_@2, edg), edh)) -> new_esEs16(vyw300, vyw4000, edg, edh) new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Int) -> new_esEs23(vyw300, vyw4000) new_lt22(vyw98, vyw100, app(ty_Ratio, fdb)) -> new_lt8(vyw98, vyw100, fdb) new_ltEs19(vyw51, vyw52, app(app(app(ty_@3, cde), cdf), cdg)) -> new_ltEs15(vyw51, vyw52, cde, cdf, cdg) new_esEs38(vyw440, vyw450, app(app(ty_Either, ffg), ffh)) -> new_esEs13(vyw440, vyw450, ffg, ffh) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_gt(vyw18, vyw13, app(app(app(ty_@3, efd), efe), eff)) -> new_esEs41(new_compare16(vyw18, vyw13, efd, efe, eff)) new_lt7(vyw440, vyw450, app(ty_Ratio, cge)) -> new_lt8(vyw440, vyw450, cge) new_esEs7(vyw31, vyw401, app(app(ty_@2, bbe), bbf)) -> new_esEs16(vyw31, vyw401, bbe, bbf) new_lt18(vyw3, vyw40, bf) -> new_esEs27(new_compare0(vyw3, vyw40, bf)) new_esEs38(vyw440, vyw450, app(ty_[], fgg)) -> new_esEs20(vyw440, vyw450, fgg) new_compare18(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(ty_Ratio, edd)) -> new_esEs12(vyw300, vyw4000, edd) new_esEs35(vyw301, vyw4001, app(app(ty_@2, ehe), ehf)) -> new_esEs16(vyw301, vyw4001, ehe, ehf) new_ltEs6(vyw44, vyw45) -> new_fsEs(new_compare7(vyw44, vyw45)) new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_lt6(vyw441, vyw451, ty_Ordering) -> new_lt11(vyw441, vyw451) new_esEs30(vyw441, vyw451, app(ty_Maybe, cff)) -> new_esEs19(vyw441, vyw451, cff) new_ltEs4(vyw44, vyw45, app(app(ty_Either, hg), hh)) -> new_ltEs7(vyw44, vyw45, hg, hh) new_esEs4(vyw30, vyw400, app(app(ty_Either, dhf), dhg)) -> new_esEs13(vyw30, vyw400, dhf, dhg) new_ltEs20(vyw442, vyw452, app(ty_Ratio, cea)) -> new_ltEs5(vyw442, vyw452, cea) new_ltEs8(Just(vyw440), Just(vyw450), app(ty_[], gaa)) -> new_ltEs17(vyw440, vyw450, gaa) new_lt19(vyw3, vyw40) -> new_esEs27(new_compare18(vyw3, vyw40)) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_Maybe, ecg), dhg) -> new_esEs19(vyw300, vyw4000, ecg) new_lt23(vyw440, vyw450, ty_Ordering) -> new_lt11(vyw440, vyw450) new_esEs19(Nothing, Just(vyw4000), dhh) -> False new_esEs19(Just(vyw300), Nothing, dhh) -> False new_compare114(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, vyw170, ebf, ebg, ebh) -> new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, ebf, ebg, ebh) new_esEs19(Nothing, Nothing, dhh) -> True new_ltEs24(vyw441, vyw451, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_ltEs15(vyw441, vyw451, ffb, ffc, ffd) new_ltEs23(vyw99, vyw101, ty_Char) -> new_ltEs12(vyw99, vyw101) new_ltEs4(vyw44, vyw45, app(ty_[], bag)) -> new_ltEs17(vyw44, vyw45, bag) new_esEs38(vyw440, vyw450, ty_Int) -> new_esEs23(vyw440, vyw450) new_esEs36(vyw300, vyw4000, app(ty_[], fbb)) -> new_esEs20(vyw300, vyw4000, fbb) new_lt23(vyw440, vyw450, ty_Double) -> new_lt13(vyw440, vyw450) new_compare8(Right(vyw30), Right(vyw400), bfa, bfb) -> new_compare28(vyw30, vyw400, new_esEs5(vyw30, vyw400, bfb), bfa, bfb) new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_compare10(LT, EQ) -> LT new_ltEs21(vyw58, vyw59, ty_Bool) -> new_ltEs10(vyw58, vyw59) new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_esEs13(Left(vyw300), Right(vyw4000), dhf, dhg) -> False new_esEs13(Right(vyw300), Left(vyw4000), dhf, dhg) -> False new_lt6(vyw441, vyw451, app(app(ty_@2, cfg), cfh)) -> new_lt15(vyw441, vyw451, cfg, cfh) new_asAs(True, vyw116) -> vyw116 new_lt23(vyw440, vyw450, app(ty_Ratio, fff)) -> new_lt8(vyw440, vyw450, fff) new_esEs19(Just(vyw300), Just(vyw4000), app(app(ty_@2, gae), gaf)) -> new_esEs16(vyw300, vyw4000, gae, gaf) new_compare28(vyw51, vyw52, False, cce, ccf) -> new_compare110(vyw51, vyw52, new_ltEs19(vyw51, vyw52, ccf), cce, ccf) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_gt(vyw18, vyw13, app(app(ty_Either, eeg), eeh)) -> new_esEs41(new_compare8(vyw18, vyw13, eeg, eeh)) new_ltEs22(vyw82, vyw85, app(app(ty_Either, deh), dfa)) -> new_ltEs7(vyw82, vyw85, deh, dfa) new_lt21(vyw81, vyw84, app(ty_[], dhb)) -> new_lt18(vyw81, vyw84, dhb) new_ltEs22(vyw82, vyw85, app(ty_Maybe, dfb)) -> new_ltEs8(vyw82, vyw85, dfb) new_esEs10(vyw31, vyw401, app(app(ty_@2, fb), fc)) -> new_esEs16(vyw31, vyw401, fb, fc) new_ltEs22(vyw82, vyw85, ty_Int) -> new_ltEs18(vyw82, vyw85) new_esEs11(vyw30, vyw400, app(ty_[], gh)) -> new_esEs20(vyw30, vyw400, gh) new_ltEs22(vyw82, vyw85, ty_Ordering) -> new_ltEs9(vyw82, vyw85) new_ltEs7(Left(vyw440), Left(vyw450), ty_Double, hh) -> new_ltEs11(vyw440, vyw450) new_esEs7(vyw31, vyw401, ty_Ordering) -> new_esEs18(vyw31, vyw401) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_[], cbb), hh) -> new_ltEs17(vyw440, vyw450, cbb) new_esEs28(vyw301, vyw4001, ty_Ordering) -> new_esEs18(vyw301, vyw4001) new_compare0([], [], bf) -> EQ new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, bef), beg), beh)) -> new_esEs22(vyw300, vyw4000, bef, beg, beh) new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_ltEs21(vyw58, vyw59, app(app(ty_Either, daa), dab)) -> new_ltEs7(vyw58, vyw59, daa, dab) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs28(vyw301, vyw4001, app(ty_Maybe, bgb)) -> new_esEs19(vyw301, vyw4001, bgb) new_esEs31(vyw440, vyw450, app(ty_[], chf)) -> new_esEs20(vyw440, vyw450, chf) new_esEs35(vyw301, vyw4001, app(ty_Ratio, ehb)) -> new_esEs12(vyw301, vyw4001, ehb) new_compare12(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_esEs33(vyw80, vyw83, ty_Float) -> new_esEs25(vyw80, vyw83) new_esEs7(vyw31, vyw401, ty_Char) -> new_esEs15(vyw31, vyw401) new_lt6(vyw441, vyw451, app(ty_Maybe, cff)) -> new_lt10(vyw441, vyw451, cff) new_esEs4(vyw30, vyw400, app(app(ty_@2, bfc), bfd)) -> new_esEs16(vyw30, vyw400, bfc, bfd) new_lt22(vyw98, vyw100, app(ty_Maybe, fde)) -> new_lt10(vyw98, vyw100, fde) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_ltEs20(vyw442, vyw452, ty_Integer) -> new_ltEs13(vyw442, vyw452) new_compare15(@2(vyw30, vyw31), @2(vyw400, vyw401), bah, bba) -> new_compare27(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bah), new_esEs7(vyw31, vyw401, bba)), bah, bba) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_lt24(vyw3, vyw40, app(app(ty_@2, bah), bba)) -> new_lt15(vyw3, vyw40, bah, bba) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Bool) -> new_ltEs10(vyw440, vyw450) new_lt7(vyw440, vyw450, app(app(ty_@2, cha), chb)) -> new_lt15(vyw440, vyw450, cha, chb) new_esEs21(@0, @0) -> True new_ltEs4(vyw44, vyw45, ty_Bool) -> new_ltEs10(vyw44, vyw45) new_compare6(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare18(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) new_esEs29(vyw300, vyw4000, app(ty_Maybe, bhd)) -> new_esEs19(vyw300, vyw4000, bhd) new_esEs19(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs24(vyw300, vyw4000) new_esEs34(vyw302, vyw4002, ty_Float) -> new_esEs25(vyw302, vyw4002) new_esEs35(vyw301, vyw4001, ty_Double) -> new_esEs24(vyw301, vyw4001) new_esEs28(vyw301, vyw4001, ty_Float) -> new_esEs25(vyw301, vyw4001) new_lt23(vyw440, vyw450, app(ty_Maybe, fga)) -> new_lt10(vyw440, vyw450, fga) new_gt(vyw18, vyw13, ty_Int) -> new_esEs41(new_compare18(vyw18, vyw13)) new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_lt23(vyw440, vyw450, app(app(ty_@2, fgb), fgc)) -> new_lt15(vyw440, vyw450, fgb, fgc) new_ltEs21(vyw58, vyw59, app(ty_Maybe, dac)) -> new_ltEs8(vyw58, vyw59, dac) new_compare27(vyw98, vyw99, vyw100, vyw101, True, fbf, fbg) -> EQ new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs21(vyw58, vyw59, ty_Int) -> new_ltEs18(vyw58, vyw59) new_ltEs8(Nothing, Just(vyw450), baa) -> True new_esEs9(vyw32, vyw402, ty_@0) -> new_esEs21(vyw32, vyw402) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_[], gah)) -> new_esEs20(vyw300, vyw4000, gah) new_ltEs9(EQ, GT) -> True new_esEs27(GT) -> False new_lt6(vyw441, vyw451, ty_Double) -> new_lt13(vyw441, vyw451) new_esEs5(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_compare10(EQ, GT) -> LT new_lt7(vyw440, vyw450, app(ty_[], chf)) -> new_lt18(vyw440, vyw450, chf) new_esEs34(vyw302, vyw4002, app(app(ty_@2, egc), egd)) -> new_esEs16(vyw302, vyw4002, egc, egd) new_esEs4(vyw30, vyw400, app(ty_Ratio, dhe)) -> new_esEs12(vyw30, vyw400, dhe) new_compare27(vyw98, vyw99, vyw100, vyw101, False, fbf, fbg) -> new_compare112(vyw98, vyw99, vyw100, vyw101, new_lt22(vyw98, vyw100, fbf), new_asAs(new_esEs37(vyw98, vyw100, fbf), new_ltEs23(vyw99, vyw101, fbg)), fbf, fbg) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_lt7(vyw440, vyw450, ty_Ordering) -> new_lt11(vyw440, vyw450) new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) new_esEs9(vyw32, vyw402, ty_Integer) -> new_esEs17(vyw32, vyw402) new_esEs20(:(vyw300, vyw301), [], bdf) -> False new_esEs20([], :(vyw4000, vyw4001), bdf) -> False new_esEs34(vyw302, vyw4002, app(ty_Ratio, efh)) -> new_esEs12(vyw302, vyw4002, efh) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs23(vyw99, vyw101, app(ty_Maybe, fcc)) -> new_ltEs8(vyw99, vyw101, fcc) new_compare10(LT, LT) -> EQ new_esEs35(vyw301, vyw4001, app(ty_[], ehh)) -> new_esEs20(vyw301, vyw4001, ehh) new_compare12(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_compare12(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_lt20(vyw80, vyw83, app(app(ty_@2, dea), deb)) -> new_lt15(vyw80, vyw83, dea, deb) new_ltEs23(vyw99, vyw101, ty_Int) -> new_ltEs18(vyw99, vyw101) new_esEs7(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_ltEs24(vyw441, vyw451, ty_Char) -> new_ltEs12(vyw441, vyw451) new_esEs38(vyw440, vyw450, ty_Double) -> new_esEs24(vyw440, vyw450) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_@0) -> new_ltEs6(vyw440, vyw450) new_not(False) -> True new_ltEs22(vyw82, vyw85, ty_Bool) -> new_ltEs10(vyw82, vyw85) new_esEs36(vyw300, vyw4000, app(app(ty_@2, fag), fah)) -> new_esEs16(vyw300, vyw4000, fag, fah) new_ltEs23(vyw99, vyw101, app(app(app(ty_@3, fcf), fcg), fch)) -> new_ltEs15(vyw99, vyw101, fcf, fcg, fch) new_primCompAux0(vyw30, vyw400, vyw39, bf) -> new_primCompAux00(vyw39, new_compare5(vyw30, vyw400, bf)) new_lt24(vyw3, vyw40, ty_Bool) -> new_lt12(vyw3, vyw40) new_lt8(vyw3, vyw40, dbd) -> new_esEs27(new_compare6(vyw3, vyw40, dbd)) new_esEs30(vyw441, vyw451, ty_Float) -> new_esEs25(vyw441, vyw451) new_esEs29(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_esEs41(LT) -> False new_esEs4(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs38(vyw440, vyw450, app(app(ty_@2, fgb), fgc)) -> new_esEs16(vyw440, vyw450, fgb, fgc) new_lt24(vyw3, vyw40, ty_Ordering) -> new_lt11(vyw3, vyw40) new_esEs9(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) new_esEs9(vyw32, vyw402, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs22(vyw32, vyw402, ed, ee, ef) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_Ratio, gab)) -> new_esEs12(vyw300, vyw4000, gab) new_lt24(vyw3, vyw40, app(ty_Maybe, dbe)) -> new_lt10(vyw3, vyw40, dbe) new_sr0(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) new_ltEs22(vyw82, vyw85, ty_@0) -> new_ltEs6(vyw82, vyw85) new_esEs38(vyw440, vyw450, app(ty_Ratio, fff)) -> new_esEs12(vyw440, vyw450, fff) new_compare10(EQ, LT) -> GT new_esEs13(Right(vyw300), Right(vyw4000), dhf, ty_Double) -> new_esEs24(vyw300, vyw4000) new_lt22(vyw98, vyw100, app(app(ty_@2, fdf), fdg)) -> new_lt15(vyw98, vyw100, fdf, fdg) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_gt(vyw18, vyw13, ty_Char) -> new_esEs41(new_compare13(vyw18, vyw13)) new_esEs7(vyw31, vyw401, app(app(ty_Either, bbc), bbd)) -> new_esEs13(vyw31, vyw401, bbc, bbd) new_esEs13(Right(vyw300), Right(vyw4000), dhf, app(app(ty_Either, ede), edf)) -> new_esEs13(vyw300, vyw4000, ede, edf) new_esEs32(vyw81, vyw84, ty_Float) -> new_esEs25(vyw81, vyw84) new_compare5(vyw30, vyw400, ty_Double) -> new_compare12(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Integer) -> new_ltEs13(vyw440, vyw450) new_ltEs5(vyw44, vyw45, hf) -> new_fsEs(new_compare6(vyw44, vyw45, hf)) new_esEs23(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt20(vyw80, vyw83, app(ty_[], def)) -> new_lt18(vyw80, vyw83, def) new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Int) -> new_ltEs18(vyw440, vyw450) new_gt(vyw18, vyw13, ty_Integer) -> new_esEs41(new_compare14(vyw18, vyw13)) new_esEs8(vyw30, vyw400, app(app(ty_Either, bce), bcf)) -> new_esEs13(vyw30, vyw400, bce, bcf) new_ltEs23(vyw99, vyw101, ty_Ordering) -> new_ltEs9(vyw99, vyw101) new_compare29(vyw58, vyw59, True, chg) -> EQ new_esEs13(Left(vyw300), Left(vyw4000), ty_Float, dhg) -> new_esEs25(vyw300, vyw4000) new_esEs9(vyw32, vyw402, ty_Char) -> new_esEs15(vyw32, vyw402) new_ltEs8(Nothing, Nothing, baa) -> True new_ltEs8(Just(vyw440), Nothing, baa) -> False new_esEs9(vyw32, vyw402, app(app(ty_Either, df), dg)) -> new_esEs13(vyw32, vyw402, df, dg) new_esEs7(vyw31, vyw401, ty_Int) -> new_esEs23(vyw31, vyw401) new_compare11(False, False) -> EQ new_esEs32(vyw81, vyw84, app(ty_[], dhb)) -> new_esEs20(vyw81, vyw84, dhb) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_gt(vyw18, vyw13, ty_@0) -> new_esEs41(new_compare7(vyw18, vyw13)) new_esEs36(vyw300, vyw4000, app(ty_Ratio, fad)) -> new_esEs12(vyw300, vyw4000, fad) new_ltEs23(vyw99, vyw101, ty_Integer) -> new_ltEs13(vyw99, vyw101) new_compare114(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, False, vyw170, ebf, ebg, ebh) -> new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, vyw170, ebf, ebg, ebh) new_ltEs24(vyw441, vyw451, ty_@0) -> new_ltEs6(vyw441, vyw451) new_ltEs24(vyw441, vyw451, ty_Ordering) -> new_ltEs9(vyw441, vyw451) new_esEs26(vyw300, vyw4000, app(ty_Maybe, bed)) -> new_esEs19(vyw300, vyw4000, bed) new_compare110(vyw128, vyw129, False, dhc, dhd) -> GT new_compare6(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) new_esEs37(vyw98, vyw100, app(ty_Ratio, fdb)) -> new_esEs12(vyw98, vyw100, fdb) new_esEs33(vyw80, vyw83, app(ty_[], def)) -> new_esEs20(vyw80, vyw83, def) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw440), Right(vyw450), hg, app(app(app(ty_@3, cca), ccb), ccc)) -> new_ltEs15(vyw440, vyw450, cca, ccb, ccc) new_ltEs19(vyw51, vyw52, ty_Bool) -> new_ltEs10(vyw51, vyw52) new_ltEs23(vyw99, vyw101, app(app(ty_Either, fca), fcb)) -> new_ltEs7(vyw99, vyw101, fca, fcb) new_esEs37(vyw98, vyw100, app(app(ty_@2, fdf), fdg)) -> new_esEs16(vyw98, vyw100, fdf, fdg) new_ltEs22(vyw82, vyw85, ty_Char) -> new_ltEs12(vyw82, vyw85) new_ltEs24(vyw441, vyw451, ty_Integer) -> new_ltEs13(vyw441, vyw451) new_esEs10(vyw31, vyw401, app(ty_[], ff)) -> new_esEs20(vyw31, vyw401, ff) new_compare9(Nothing, Nothing, dbe) -> EQ new_esEs31(vyw440, vyw450, ty_Float) -> new_esEs25(vyw440, vyw450) new_asAs(False, vyw116) -> False new_ltEs23(vyw99, vyw101, ty_@0) -> new_ltEs6(vyw99, vyw101) new_compare7(@0, @0) -> EQ new_ltEs8(Just(vyw440), Just(vyw450), app(ty_Ratio, fgh)) -> new_ltEs5(vyw440, vyw450, fgh) new_ltEs20(vyw442, vyw452, ty_Bool) -> new_ltEs10(vyw442, vyw452) new_ltEs8(Just(vyw440), Just(vyw450), app(app(ty_@2, fhd), fhe)) -> new_ltEs14(vyw440, vyw450, fhd, fhe) new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_ltEs9(EQ, EQ) -> True new_esEs27(EQ) -> False new_ltEs7(Right(vyw440), Right(vyw450), hg, ty_Char) -> new_ltEs12(vyw440, vyw450) The set Q consists of the following terms: new_ltEs19(x0, x1, ty_@0) new_pePe(False, x0) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare9(Nothing, Nothing, x0) new_esEs8(x0, x1, ty_Char) new_compare19(x0, x1, True, x2, x3) new_lt20(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs23(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_lt21(x0, x1, app(ty_[], x2)) new_esEs37(x0, x1, ty_Bool) new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs36(x0, x1, ty_Integer) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt22(x0, x1, ty_Int) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs14(True, True) new_ltEs19(x0, x1, ty_Bool) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_ltEs9(EQ, EQ) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_compare10(GT, GT) new_esEs8(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Char) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs37(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_esEs4(x0, x1, ty_Double) new_compare9(Just(x0), Just(x1), x2) new_lt24(x0, x1, ty_@0) new_compare0([], :(x0, x1), x2) new_esEs4(x0, x1, app(ty_[], x2)) new_esEs27(GT) new_esEs36(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, ty_Bool) new_esEs4(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_compare8(Right(x0), Right(x1), x2, x3) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs11(x0, x1, ty_Float) new_ltEs10(False, False) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_lt24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Int) new_lt24(x0, x1, ty_Int) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Int) new_compare111(x0, x1, False, x2) new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) new_esEs7(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_compare8(Right(x0), Left(x1), x2, x3) new_compare8(Left(x0), Right(x1), x2, x3) new_esEs39(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_esEs38(x0, x1, ty_@0) new_lt4(x0, x1, x2, x3) new_esEs37(x0, x1, ty_@0) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, ty_Float) new_lt11(x0, x1) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_gt(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(Integer(x0), Integer(x1)) new_esEs35(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_[], x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Float) new_esEs31(x0, x1, app(ty_[], x2)) new_lt12(x0, x1) new_primCompAux00(x0, LT) new_lt22(x0, x1, ty_Bool) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Float) new_lt21(x0, x1, ty_Char) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs35(x0, x1, ty_Bool) new_compare8(Left(x0), Left(x1), x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs11(x0, x1, ty_Integer) new_compare29(x0, x1, False, x2) new_esEs26(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, ty_Integer) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs11(x0, x1) new_ltEs4(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs13(Left(x0), Left(x1), ty_Bool, x2) new_ltEs23(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs15(Char(x0), Char(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_lt21(x0, x1, ty_Ordering) new_primMulInt(Neg(x0), Neg(x1)) new_esEs9(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Int) new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(Double(x0, x1), Double(x2, x3)) new_lt24(x0, x1, app(ty_Maybe, x2)) new_compare9(Nothing, Just(x0), x1) new_compare11(True, False) new_compare11(False, True) new_esEs13(Right(x0), Right(x1), x2, ty_Char) new_esEs31(x0, x1, ty_Double) new_esEs36(x0, x1, ty_Float) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs37(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs31(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_ltEs9(LT, LT) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_compare13(Char(x0), Char(x1)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_compare27(x0, x1, x2, x3, True, x4, x5) new_lt7(x0, x1, ty_Int) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, ty_@0) new_esEs8(x0, x1, ty_Double) new_esEs7(x0, x1, ty_Char) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20([], [], x0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_asAs(False, x0) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs18(EQ, EQ) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_@0) new_ltEs24(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), ty_Float) new_esEs13(Left(x0), Left(x1), ty_Integer, x2) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs40(x0, x1, ty_Integer) new_compare110(x0, x1, False, x2, x3) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, ty_Integer) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_@0) new_compare112(x0, x1, x2, x3, True, x4, x5, x6) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs31(x0, x1, ty_Char) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Float) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Float) new_compare7(@0, @0) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs27(LT) new_esEs28(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Char) new_esEs20(:(x0, x1), :(x2, x3), x4) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, x2) new_ltEs10(True, False) new_ltEs10(False, True) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs7(Right(x0), Left(x1), x2, x3) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_compare28(x0, x1, True, x2, x3) new_esEs29(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Double) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_esEs8(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs4(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Char) new_compare5(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_esEs34(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_primCompAux00(x0, EQ) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Zero) new_asAs(True, x0) new_compare11(True, True) new_esEs11(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_@0) new_esEs19(Just(x0), Just(x1), ty_Bool) new_esEs36(x0, x1, ty_Ordering) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_not(True) new_esEs29(x0, x1, ty_Integer) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Bool) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_esEs34(x0, x1, ty_@0) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs9(x0, x1, ty_Integer) new_lt19(x0, x1) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_@0) new_lt24(x0, x1, ty_Float) new_esEs36(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_esEs6(x0, x1, ty_Float) new_compare5(x0, x1, ty_@0) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs19(Just(x0), Just(x1), ty_Int) new_esEs19(Just(x0), Nothing, x1) new_esEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs32(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs32(x0, x1, ty_@0) new_esEs19(Just(x0), Just(x1), ty_Char) new_compare5(x0, x1, ty_Float) new_lt6(x0, x1, app(ty_Ratio, x2)) new_sr(Integer(x0), Integer(x1)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) new_esEs13(Left(x0), Right(x1), x2, x3) new_esEs13(Right(x0), Left(x1), x2, x3) new_lt16(x0, x1, x2, x3, x4) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_fsEs(x0) new_lt20(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Int) new_esEs34(x0, x1, ty_Integer) new_esEs38(x0, x1, ty_Bool) new_lt9(x0, x1) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs8(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare19(x0, x1, False, x2, x3) new_lt14(x0, x1) new_ltEs24(x0, x1, ty_Bool) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_compare5(x0, x1, ty_Int) new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_lt24(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Float) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs31(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_gt(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Float) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_compare5(x0, x1, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs30(x0, x1, ty_Ordering) new_esEs19(Just(x0), Just(x1), ty_Integer) new_lt20(x0, x1, ty_Char) new_lt24(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Integer) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs8(Nothing, Nothing, x0) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Double) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, ty_Bool) new_gt(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs5(x0, x1, ty_@0) new_gt(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Int) new_not(False) new_esEs19(Nothing, Nothing, x0) new_ltEs20(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt21(x0, x1, ty_Double) new_esEs34(x0, x1, ty_Bool) new_compare5(x0, x1, app(ty_Ratio, x2)) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(GT, EQ) new_compare10(EQ, GT) new_esEs37(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, GT) new_esEs31(x0, x1, ty_Float) new_esEs8(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Float) new_esEs8(x0, x1, ty_Bool) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(x0, x1) new_esEs7(x0, x1, ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_esEs41(LT) new_esEs21(@0, @0) new_esEs6(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Double) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_Integer) new_sr0(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Int) new_compare5(x0, x1, ty_Integer) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, True) new_esEs10(x0, x1, ty_Char) new_compare28(x0, x1, False, x2, x3) new_esEs13(Right(x0), Right(x1), x2, ty_@0) new_primMulNat0(Succ(x0), Zero) new_ltEs24(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_@0) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Int) new_compare26(x0, x1, False, x2, x3) new_lt24(x0, x1, ty_Char) new_esEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs6(x0, x1, ty_Char) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs23(x0, x1) new_lt22(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs24(x0, x1, ty_Ordering) new_primPlusNat1(Succ(x0), x1) new_esEs38(x0, x1, ty_Double) new_ltEs8(Nothing, Just(x0), x1) new_lt22(x0, x1, ty_Ordering) new_esEs13(Left(x0), Left(x1), ty_Double, x2) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Int) new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt21(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_esEs33(x0, x1, ty_Float) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_esEs5(x0, x1, ty_Float) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(LT, EQ) new_compare10(EQ, LT) new_esEs25(Float(x0, x1), Float(x2, x3)) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs19(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs19(Just(x0), Just(x1), ty_Float) new_compare110(x0, x1, True, x2, x3) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt24(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Float) new_lt10(x0, x1, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_lt21(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_esEs6(x0, x1, ty_Double) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs14(False, True) new_esEs14(True, False) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, ty_Char) new_esEs13(Right(x0), Right(x1), x2, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs38(x0, x1, ty_Char) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, ty_Float) new_compare10(LT, LT) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_lt18(x0, x1, x2) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_gt(x0, x1, ty_@0) new_ltEs13(x0, x1) new_lt6(x0, x1, ty_Ordering) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_gt(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_esEs13(Right(x0), Right(x1), x2, ty_Float) new_primCompAux0(x0, x1, x2, x3) new_esEs41(GT) new_pePe(True, x0) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, x2, x3, False, x4, x5, x6) new_ltEs22(x0, x1, ty_Integer) new_ltEs9(GT, GT) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Char) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_lt5(x0, x1) new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt23(x0, x1, ty_Ordering) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Double) new_lt21(x0, x1, ty_Int) new_esEs13(Left(x0), Left(x1), ty_Char, x2) new_lt17(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs21(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs12(x0, x1) new_esEs33(x0, x1, ty_@0) new_compare0(:(x0, x1), [], x2) new_esEs9(x0, x1, ty_Int) new_esEs27(EQ) new_ltEs4(x0, x1, ty_Char) new_esEs8(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs18(GT, GT) new_esEs7(x0, x1, app(ty_[], x2)) new_compare5(x0, x1, app(ty_Maybe, x2)) new_lt23(x0, x1, app(ty_[], x2)) new_esEs5(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs33(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Float) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Double) new_ltEs8(Just(x0), Just(x1), ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt7(x0, x1, ty_Integer) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Char) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs30(x0, x1, ty_Int) new_esEs4(x0, x1, ty_Float) new_lt7(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs7(x0, x1, ty_Float) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_compare5(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs13(Right(x0), Right(x1), x2, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs6(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Ordering) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs35(x0, x1, ty_Ordering) new_compare10(EQ, EQ) new_compare14(Integer(x0), Integer(x1)) new_ltEs22(x0, x1, ty_Ordering) new_ltEs21(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Double) new_lt7(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_gt(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs23(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_esEs20(:(x0, x1), [], x2) new_esEs5(x0, x1, ty_Char) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare29(x0, x1, True, x2) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs34(x0, x1, app(ty_[], x2)) new_lt22(x0, x1, ty_Float) new_lt7(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs35(x0, x1, ty_Double) new_lt24(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Zero, Succ(x0)) new_lt23(x0, x1, ty_Integer) new_esEs33(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Zero, Zero) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_gt(x0, x1, app(ty_Ratio, x2)) new_gt(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Int) new_esEs40(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs22(x0, x1, ty_Char) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_ltEs20(x0, x1, ty_@0) new_lt23(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Bool) new_compare113(x0, x1, x2, x3, False, x4, x5) new_compare111(x0, x1, True, x2) new_compare10(LT, GT) new_compare10(GT, LT) new_esEs28(x0, x1, ty_@0) new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_esEs34(x0, x1, ty_Double) new_esEs5(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs30(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Ordering) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, ty_Bool) new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs16(x0, x1) new_esEs30(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_Double) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs35(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Double) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Ordering) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare115(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_esEs33(x0, x1, ty_Char) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs33(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Ordering) new_ltEs5(x0, x1, x2) new_ltEs22(x0, x1, ty_Int) new_lt6(x0, x1, ty_Integer) new_lt22(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt15(x0, x1, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs18(LT, LT) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_esEs13(Left(x0), Left(x1), ty_Float, x2) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_compare0([], [], x0) new_esEs33(x0, x1, ty_Bool) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs13(Right(x0), Right(x1), x2, ty_Double) new_lt6(x0, x1, ty_Int) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(x0, x1, x2) new_ltEs19(x0, x1, ty_Float) new_ltEs4(x0, x1, ty_@0) new_compare5(x0, x1, ty_Ordering) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_Ordering) new_compare26(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_esEs29(x0, x1, ty_Double) new_esEs37(x0, x1, ty_Double) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Double) new_lt22(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Double) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_lt6(x0, x1, ty_Char) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_esEs36(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_lt7(x0, x1, app(ty_[], x2)) new_primEqNat0(Zero, Succ(x0)) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs41(EQ) new_esEs20([], :(x0, x1), x2) new_lt23(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Double) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_@0) new_esEs5(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare11(False, False) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Double) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs14(False, False) new_esEs26(x0, x1, ty_Char) new_esEs19(Just(x0), Just(x1), ty_Ordering) new_esEs4(x0, x1, ty_@0) new_compare115(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_gt(x0, x1, ty_Ordering) new_esEs19(Nothing, Just(x0), x1) new_esEs26(x0, x1, ty_Int) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_lt6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt23(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_Double) new_compare18(x0, x1) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, app(ty_[], x2)) new_lt24(x0, x1, ty_Ordering) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare9(Just(x0), Nothing, x1) new_esEs32(x0, x1, ty_Ordering) new_primPlusNat1(Zero, x0) new_ltEs22(x0, x1, app(ty_[], x2)) new_primCmpNat0(Zero, Zero) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 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_elemFM01(Branch(vyw40, vyw41, vyw42, vyw43, vyw44), vyw3, bd, be) -> new_elemFM0(vyw40, vyw41, vyw42, vyw43, vyw44, vyw3, new_lt24(vyw3, vyw40, 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 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba) -> new_elemFM01(vyw16, vyw18, h, ba) The graph contains the following edges 4 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba) -> new_elemFM00(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_elemFM00(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bb, bc) -> new_elemFM01(vyw32, vyw33, bb, bc) The graph contains the following edges 5 >= 1, 6 >= 2, 8 >= 3, 9 >= 4 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) 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(vyw40000), Succ(vyw3100)) -> new_primMulNat(vyw40000, Succ(vyw3100)) 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_ltEs(Left(vyw440), Left(vyw450), app(ty_[], ca), bb) -> new_ltEs3(vyw440, vyw450, ca) new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(app(ty_@3, cbe), cbf), cbg), cba) -> new_lt2(vyw98, vyw100, cbe, cbf, cbg) new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(ty_Maybe, bc)), bb), bef) -> new_ltEs0(vyw440, vyw450, bc) new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(ty_Maybe, dg)), bef) -> new_ltEs0(vyw440, vyw450, dg) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(ty_@2, fb), fc)), bef) -> new_ltEs1(vyw441, vyw451, fb, fc) new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs2(vyw99, vyw101, cac, cad, cae) new_ltEs(Left(vyw440), Left(vyw450), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs2(vyw440, vyw450, bf, bg, bh) new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bef) -> new_ltEs(vyw440, vyw450, h, ba) new_compare21(vyw51, vyw52, False, beg, app(app(ty_@2, bfc), bfd)) -> new_ltEs1(vyw51, vyw52, bfc, bfd) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(ty_Either, eg), eh)) -> new_ltEs(vyw441, vyw451, eg, eh) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(ty_@2, cfd), cfe), ccg) -> new_lt1(vyw81, vyw84, cfd, cfe) new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(ty_Maybe, bhh)) -> new_ltEs0(vyw99, vyw101, bhh) new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(vyw440, vyw450, da, db, dc) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(ty_Either, ga), gb)), gc), bef) -> new_lt(vyw440, vyw450, ga, gb) new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(ty_[], ee)), bef) -> new_ltEs3(vyw440, vyw450, ee) new_ltEs(Right(vyw440), Right(vyw450), cb, app(ty_[], dd)) -> new_ltEs3(vyw440, vyw450, dd) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(ty_Maybe, hg)) -> new_ltEs0(vyw442, vyw452, hg) new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, bde)) -> new_compare2(vyw30, vyw400, bde) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(ty_Either, cdh), cea)) -> new_ltEs(vyw82, vyw85, cdh, cea) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(ty_Maybe, cfc), ccg) -> new_lt0(vyw81, vyw84, cfc) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(ty_[], ceh)) -> new_ltEs3(vyw82, vyw85, ceh) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(app(ty_@3, cff), cfg), cfh), ccg) -> new_lt2(vyw81, vyw84, cff, cfg, cfh) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hd), bah), bef) -> new_lt1(vyw440, vyw450, bcc, bcd) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(ty_Either, bbh), bca), hd, bah) -> new_lt(vyw440, vyw450, bbh, bca) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(ty_Maybe, ceb)) -> new_ltEs0(vyw82, vyw85, ceb) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(app(ty_@3, fd), ff), fg)), bef) -> new_ltEs2(vyw441, vyw451, fd, ff, fg) new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(ty_@2, cf), cg)) -> new_ltEs1(vyw440, vyw450, cf, cg) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(ty_Maybe, gd)), gc), bef) -> new_lt0(vyw440, vyw450, gd) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(ty_[], cga), ccg) -> new_lt3(vyw81, vyw84, cga) new_compare3(@2(vyw30, vyw31), @2(vyw400, vyw401), bhc, bhd) -> new_compare23(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bhc), new_esEs7(vyw31, vyw401, bhd)), bhc, bhd) new_ltEs0(Just(vyw440), Just(vyw450), app(app(ty_@2, dh), ea)) -> new_ltEs1(vyw440, vyw450, dh, ea) new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, bdf), bdg)) -> new_compare3(vyw30, vyw400, bdf, bdg) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(ty_@2, cec), ced)) -> new_ltEs1(vyw82, vyw85, cec, ced) new_ltEs(Left(vyw440), Left(vyw450), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw440, vyw450, h, ba) new_compare22(vyw58, vyw59, False, app(ty_[], bhb)) -> new_ltEs3(vyw58, vyw59, bhb) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(ty_[], bch)), hd), bah), bef) -> new_lt3(vyw440, vyw450, bch) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(ty_Maybe, bba), bah) -> new_lt0(vyw441, vyw451, bba) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(ty_[], fh)) -> new_ltEs3(vyw441, vyw451, fh) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc), bef) -> new_lt2(vyw440, vyw450, gg, gh, ha) new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(ty_Maybe, ce)), bef) -> new_ltEs0(vyw440, vyw450, ce) new_ltEs0(Just(vyw440), Just(vyw450), app(ty_Maybe, dg)) -> new_ltEs0(vyw440, vyw450, dg) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(ty_@2, ge), gf), gc) -> new_lt1(vyw440, vyw450, ge, gf) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(ty_Maybe, bcb), hd, bah) -> new_lt0(vyw440, vyw450, bcb) new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(ty_@2, dh), ea)), bef) -> new_ltEs1(vyw440, vyw450, dh, ea) new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(ty_@2, caa), cab)) -> new_ltEs1(vyw99, vyw101, caa, cab) new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, bdc), bdd)) -> new_compare1(vyw30, vyw400, bdc, bdd) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), hd), bah), bef) -> new_lt(vyw440, vyw450, bbh, bca) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(app(ty_@3, bbd), bbe), bbf)), bah), bef) -> new_lt2(vyw441, vyw451, bbd, bbe, bbf) new_compare1(Left(vyw30), Left(vyw400), bed, bee) -> new_compare20(vyw30, vyw400, new_esEs4(vyw30, vyw400, bed), bed, bee) new_compare21(vyw51, vyw52, False, beg, app(ty_[], bfh)) -> new_ltEs3(vyw51, vyw52, bfh) new_compare22(vyw58, vyw59, False, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs2(vyw58, vyw59, bgg, bgh, bha) new_lt3(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_compare(vyw31, vyw401, bdb) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(ty_Maybe, cch), ccf, ccg) -> new_lt0(vyw80, vyw83, cch) new_ltEs(Left(vyw440), Left(vyw450), app(ty_Maybe, bc), bb) -> new_ltEs0(vyw440, vyw450, bc) new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(ty_[], ca)), bb), bef) -> new_ltEs3(vyw440, vyw450, ca) new_lt(Right(vyw30), Right(vyw400), bed, bee) -> new_compare21(vyw30, vyw400, new_esEs5(vyw30, vyw400, bee), bed, bee) new_ltEs(Left(vyw440), Left(vyw450), app(app(ty_@2, bd), be), bb) -> new_ltEs1(vyw440, vyw450, bd, be) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(ty_Either, he), hf)) -> new_ltEs(vyw442, vyw452, he, hf) new_ltEs3(vyw44, vyw45, bda) -> new_compare(vyw44, vyw45, bda) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(ty_[], fh)), bef) -> new_ltEs3(vyw441, vyw451, fh) new_lt1(@2(vyw30, vyw31), @2(vyw400, vyw401), bhc, bhd) -> new_compare23(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bhc), new_esEs7(vyw31, vyw401, bhd)), bhc, bhd) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(app(ty_@3, bab), bac), bad)), bef) -> new_ltEs2(vyw442, vyw452, bab, bac, bad) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(ty_Either, baf), bag), bah) -> new_lt(vyw441, vyw451, baf, bag) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(app(ty_@3, bce), bcf), bcg), hd, bah) -> new_lt2(vyw440, vyw450, bce, bcf, bcg) new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(ty_Either, cag), cah), cba) -> new_lt(vyw98, vyw100, cag, cah) new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(ty_Maybe, cbb), cba) -> new_lt0(vyw98, vyw100, cbb) new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(ty_Either, bhf), bhg)) -> new_ltEs(vyw99, vyw101, bhf, bhg) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(ty_[], hb), gc) -> new_lt3(vyw440, vyw450, hb) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(app(ty_@3, gg), gh), ha), gc) -> new_lt2(vyw440, vyw450, gg, gh, ha) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(ty_Maybe, fa)), bef) -> new_ltEs0(vyw441, vyw451, fa) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vyw441, vyw451, fd, ff, fg) new_compare22(vyw58, vyw59, False, app(app(ty_Either, bgb), bgc)) -> new_ltEs(vyw58, vyw59, bgb, bgc) new_ltEs0(Just(vyw440), Just(vyw450), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw440, vyw450, eb, ec, ed) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(ty_Either, ga), gb), gc) -> new_lt(vyw440, vyw450, ga, gb) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(ty_@2, hh), baa)) -> new_ltEs1(vyw442, vyw452, hh, baa) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(ty_[], bae)) -> new_ltEs3(vyw442, vyw452, bae) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(ty_Maybe, gd), gc) -> new_lt0(vyw440, vyw450, gd) new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bef) -> new_ltEs(vyw440, vyw450, cc, cd) new_ltEs(Right(vyw440), Right(vyw450), cb, app(ty_Maybe, ce)) -> new_ltEs0(vyw440, vyw450, ce) new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bef) -> new_ltEs2(vyw440, vyw450, bf, bg, bh) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(ty_[], bbg)), bah), bef) -> new_lt3(vyw441, vyw451, bbg) new_compare22(vyw58, vyw59, False, app(ty_Maybe, bgd)) -> new_ltEs0(vyw58, vyw59, bgd) new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw440, vyw450, cc, cd) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs2(vyw82, vyw85, cee, cef, ceg) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(ty_@2, hh), baa)), bef) -> new_ltEs1(vyw442, vyw452, hh, baa) new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare4(vyw30, vyw400, bdh, bea, beb) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(ty_Maybe, fa)) -> new_ltEs0(vyw441, vyw451, fa) new_compare2(Just(vyw30), Just(vyw400), bga) -> new_compare22(vyw30, vyw400, new_esEs6(vyw30, vyw400, bga), bga) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(app(ty_@3, cdc), cdd), cde), ccf, ccg) -> new_lt2(vyw80, vyw83, cdc, cdd, cde) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(ty_Either, cfa), cfb), ccg) -> new_lt(vyw81, vyw84, cfa, cfb) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(ty_@2, bcc), bcd), hd, bah) -> new_lt1(vyw440, vyw450, bcc, bcd) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(ty_[], hb)), gc), bef) -> new_lt3(vyw440, vyw450, hb) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(ty_Either, ccd), cce), ccf, ccg) -> new_lt(vyw80, vyw83, ccd, cce) new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(ty_@2, fb), fc)) -> new_ltEs1(vyw441, vyw451, fb, fc) new_compare21(vyw51, vyw52, False, beg, app(app(ty_Either, beh), bfa)) -> new_ltEs(vyw51, vyw52, beh, bfa) new_ltEs0(Just(vyw440), Just(vyw450), app(app(ty_Either, de), df)) -> new_ltEs(vyw440, vyw450, de, df) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(ty_@2, cda), cdb), ccf, ccg) -> new_lt1(vyw80, vyw83, cda, cdb) new_compare(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_primCompAux(vyw30, vyw400, new_compare0(vyw31, vyw401, bdb), bdb) new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed)), bef) -> new_ltEs2(vyw440, vyw450, eb, ec, ed) new_lt2(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cca, ccb, ccc) -> new_compare24(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, cca), new_asAs(new_esEs10(vyw31, vyw401, ccb), new_esEs9(vyw32, vyw402, ccc))), cca, ccb, ccc) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(ty_[], bbg), bah) -> new_lt3(vyw441, vyw451, bbg) new_compare1(Right(vyw30), Right(vyw400), bed, bee) -> new_compare21(vyw30, vyw400, new_esEs5(vyw30, vyw400, bee), bed, bee) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(ty_[], bae)), bef) -> new_ltEs3(vyw442, vyw452, bae) new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(ty_[], dd)), bef) -> new_ltEs3(vyw440, vyw450, dd) new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], bec)) -> new_compare(vyw30, vyw400, bec) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(ty_Either, eg), eh)), bef) -> new_ltEs(vyw441, vyw451, eg, eh) new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc), bef) -> new_lt1(vyw440, vyw450, ge, gf) new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(ty_[], cdf), ccf, ccg) -> new_lt3(vyw80, vyw83, cdf) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vyw442, vyw452, bab, bac, bad) new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(ty_@2, cf), cg)), bef) -> new_ltEs1(vyw440, vyw450, cf, cg) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(ty_Maybe, hg)), bef) -> new_ltEs0(vyw442, vyw452, hg) new_lt(Left(vyw30), Left(vyw400), bed, bee) -> new_compare20(vyw30, vyw400, new_esEs4(vyw30, vyw400, bed), bed, bee) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), hd), bah), bef) -> new_lt0(vyw440, vyw450, bcb) new_ltEs0(Just(vyw440), Just(vyw450), app(ty_[], ee)) -> new_ltEs3(vyw440, vyw450, ee) new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(ty_@2, cbc), cbd), cba) -> new_lt1(vyw98, vyw100, cbc, cbd) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(ty_Either, baf), bag)), bah), bef) -> new_lt(vyw441, vyw451, baf, bag) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(ty_Either, he), hf)), bef) -> new_ltEs(vyw442, vyw452, he, hf) new_compare21(vyw51, vyw52, False, beg, app(ty_Maybe, bfb)) -> new_ltEs0(vyw51, vyw52, bfb) new_compare4(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cca, ccb, ccc) -> new_compare24(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, cca), new_asAs(new_esEs10(vyw31, vyw401, ccb), new_esEs9(vyw32, vyw402, ccc))), cca, ccb, ccc) new_compare21(vyw51, vyw52, False, beg, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs2(vyw51, vyw52, bfe, bff, bfg) new_compare(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_compare(vyw31, vyw401, bdb) new_lt3(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_primCompAux(vyw30, vyw400, new_compare0(vyw31, vyw401, bdb), bdb) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), hd), bah), bef) -> new_lt2(vyw440, vyw450, bce, bcf, bcg) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vyw441, vyw451, bbb, bbc) new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(app(ty_@3, da), db), dc)), bef) -> new_ltEs2(vyw440, vyw450, da, db, dc) new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(ty_Either, de), df)), bef) -> new_ltEs(vyw440, vyw450, de, df) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(ty_@2, bbb), bbc)), bah), bef) -> new_lt1(vyw441, vyw451, bbb, bbc) new_compare20(vyw44, vyw45, False, app(ty_[], bda), bef) -> new_compare(vyw44, vyw45, bda) new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(ty_[], cbh), cba) -> new_lt3(vyw98, vyw100, cbh) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vyw441, vyw451, bbd, bbe, bbf) new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(ty_[], caf)) -> new_ltEs3(vyw99, vyw101, caf) new_compare22(vyw58, vyw59, False, app(app(ty_@2, bge), bgf)) -> new_ltEs1(vyw58, vyw59, bge, bgf) new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(ty_Maybe, bba)), bah), bef) -> new_lt0(vyw441, vyw451, bba) new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(ty_[], bch), hd, bah) -> new_lt3(vyw440, vyw450, bch) new_lt0(Just(vyw30), Just(vyw400), bga) -> new_compare22(vyw30, vyw400, new_esEs6(vyw30, vyw400, bga), bga) new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bef) -> new_ltEs1(vyw440, vyw450, bd, be) The TRS R consists of the following rules: new_esEs28(vyw301, vyw4001, app(ty_[], dhc)) -> new_esEs20(vyw301, vyw4001, dhc) new_ltEs7(Left(vyw440), Left(vyw450), app(app(ty_Either, h), ba), bb) -> new_ltEs7(vyw440, vyw450, h, ba) new_ltEs7(Right(vyw440), Left(vyw450), cb, bb) -> False new_compare5(vyw30, vyw400, ty_Integer) -> new_compare14(vyw30, vyw400) new_ltEs21(vyw58, vyw59, ty_@0) -> new_ltEs6(vyw58, vyw59) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_lt21(vyw81, vyw84, app(app(ty_@2, cfd), cfe)) -> new_lt15(vyw81, vyw84, cfd, cfe) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw300)), Pos(vyw400)) -> LT new_ltEs24(vyw441, vyw451, ty_Int) -> new_ltEs18(vyw441, vyw451) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs22(vyw82, vyw85, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs15(vyw82, vyw85, cee, cef, ceg) new_pePe(True, vyw177) -> True new_ltEs10(False, False) -> True new_esEs10(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_ltEs4(vyw44, vyw45, ty_Integer) -> new_ltEs13(vyw44, vyw45) new_ltEs23(vyw99, vyw101, ty_Bool) -> new_ltEs10(vyw99, vyw101) new_esEs13(Left(vyw300), Left(vyw4000), ty_Ordering, egb) -> new_esEs18(vyw300, vyw4000) new_esEs17(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_lt12(vyw3, vyw40) -> new_esEs27(new_compare11(vyw3, vyw40)) new_ltEs22(vyw82, vyw85, app(ty_Ratio, efd)) -> new_ltEs5(vyw82, vyw85, efd) new_lt4(vyw3, vyw40, bed, bee) -> new_esEs27(new_compare8(vyw3, vyw40, bed, bee)) new_lt6(vyw441, vyw451, app(app(ty_Either, baf), bag)) -> new_lt4(vyw441, vyw451, baf, bag) new_compare9(Just(vyw30), Just(vyw400), bga) -> new_compare29(vyw30, vyw400, new_esEs6(vyw30, vyw400, bga), bga) new_ltEs22(vyw82, vyw85, ty_Float) -> new_ltEs16(vyw82, vyw85) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs19(vyw51, vyw52, ty_Ordering) -> new_ltEs9(vyw51, vyw52) new_compare10(GT, GT) -> EQ new_esEs13(Right(vyw300), Right(vyw4000), ega, app(app(app(ty_@3, fbd), fbe), fbf)) -> new_esEs22(vyw300, vyw4000, fbd, fbe, fbf) new_primCmpInt(Pos(Zero), Neg(Succ(vyw4000))) -> GT new_lt23(vyw440, vyw450, app(app(ty_Either, ga), gb)) -> new_lt4(vyw440, vyw450, ga, gb) new_compare26(vyw44, vyw45, True, ddc, bef) -> EQ new_ltEs24(vyw441, vyw451, app(ty_Maybe, fa)) -> new_ltEs8(vyw441, vyw451, fa) new_lt6(vyw441, vyw451, ty_Bool) -> new_lt12(vyw441, vyw451) new_esEs31(vyw440, vyw450, ty_Int) -> new_esEs23(vyw440, vyw450) new_compare113(vyw148, vyw149, vyw150, vyw151, True, efa, efb) -> LT new_esEs36(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_ltEs24(vyw441, vyw451, app(app(ty_Either, eg), eh)) -> new_ltEs7(vyw441, vyw451, eg, eh) new_compare17(Float(vyw30, Neg(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_primCmpInt(Neg(Succ(vyw300)), Neg(vyw400)) -> new_primCmpNat0(vyw400, Succ(vyw300)) new_esEs16(@2(vyw300, vyw301), @2(vyw4000, vyw4001), dgc, dgd) -> new_asAs(new_esEs29(vyw300, vyw4000, dgc), new_esEs28(vyw301, vyw4001, dgd)) new_esEs29(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_esEs4(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_lt21(vyw81, vyw84, app(app(app(ty_@3, cff), cfg), cfh)) -> new_lt16(vyw81, vyw84, cff, cfg, cfh) new_ltEs20(vyw442, vyw452, ty_Ordering) -> new_ltEs9(vyw442, vyw452) new_esEs5(vyw30, vyw400, app(ty_Ratio, edf)) -> new_esEs12(vyw30, vyw400, edf) new_esEs9(vyw32, vyw402, ty_Ordering) -> new_esEs18(vyw32, vyw402) new_ltEs9(LT, LT) -> True new_primMulNat0(Succ(vyw40000), Succ(vyw3100)) -> new_primPlusNat1(new_primMulNat0(vyw40000, Succ(vyw3100)), vyw3100) new_esEs32(vyw81, vyw84, app(ty_Ratio, efe)) -> new_esEs12(vyw81, vyw84, efe) new_esEs38(vyw440, vyw450, ty_Integer) -> new_esEs17(vyw440, vyw450) new_esEs6(vyw30, vyw400, app(app(ty_@2, ecg), ech)) -> new_esEs16(vyw30, vyw400, ecg, ech) new_lt6(vyw441, vyw451, ty_Int) -> new_lt19(vyw441, vyw451) new_esEs33(vyw80, vyw83, app(app(ty_@2, cda), cdb)) -> new_esEs16(vyw80, vyw83, cda, cdb) new_lt6(vyw441, vyw451, app(ty_[], bbg)) -> new_lt18(vyw441, vyw451, bbg) new_esEs13(Left(vyw300), Left(vyw4000), app(app(ty_@2, ehf), ehg), egb) -> new_esEs16(vyw300, vyw4000, ehf, ehg) new_ltEs22(vyw82, vyw85, app(app(ty_@2, cec), ced)) -> new_ltEs14(vyw82, vyw85, cec, ced) new_ltEs19(vyw51, vyw52, ty_Double) -> new_ltEs11(vyw51, vyw52) new_esEs5(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_ltEs7(Left(vyw440), Left(vyw450), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs15(vyw440, vyw450, bf, bg, bh) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs10(vyw31, vyw401, ty_Int) -> new_esEs23(vyw31, vyw401) new_esEs32(vyw81, vyw84, ty_Char) -> new_esEs15(vyw81, vyw84) new_compare5(vyw30, vyw400, app(app(ty_@2, bdf), bdg)) -> new_compare15(vyw30, vyw400, bdf, bdg) new_esEs22(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), egd, ege, egf) -> new_asAs(new_esEs36(vyw300, vyw4000, egd), new_asAs(new_esEs35(vyw301, vyw4001, ege), new_esEs34(vyw302, vyw4002, egf))) new_esEs26(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Ordering) -> new_ltEs9(vyw440, vyw450) new_esEs34(vyw302, vyw4002, app(ty_[], fce)) -> new_esEs20(vyw302, vyw4002, fce) new_ltEs8(Just(vyw440), Just(vyw450), ty_Char) -> new_ltEs12(vyw440, vyw450) new_lt21(vyw81, vyw84, ty_Ordering) -> new_lt11(vyw81, vyw84) new_esEs7(vyw31, vyw401, app(ty_[], ded)) -> new_esEs20(vyw31, vyw401, ded) new_compare10(EQ, EQ) -> EQ new_esEs19(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs25(vyw300, vyw4000) new_esEs11(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs36(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_compare19(vyw121, vyw122, True, ecb, ecc) -> LT new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs9(vyw32, vyw402, ty_Int) -> new_esEs23(vyw32, vyw402) new_esEs37(vyw98, vyw100, ty_Double) -> new_esEs24(vyw98, vyw100) new_ltEs4(vyw44, vyw45, app(app(app(ty_@3, hc), hd), bah)) -> new_ltEs15(vyw44, vyw45, hc, hd, bah) new_esEs31(vyw440, vyw450, ty_Bool) -> new_esEs14(vyw440, vyw450) new_compare25(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, True, cdg, ccf, ccg) -> EQ new_esEs28(vyw301, vyw4001, app(app(ty_Either, dgf), dgg)) -> new_esEs13(vyw301, vyw4001, dgf, dgg) new_ltEs21(vyw58, vyw59, ty_Char) -> new_ltEs12(vyw58, vyw59) new_lt21(vyw81, vyw84, ty_Char) -> new_lt5(vyw81, vyw84) new_lt17(vyw3, vyw40) -> new_esEs27(new_compare17(vyw3, vyw40)) new_not(True) -> False new_esEs4(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs18(GT, GT) -> True new_esEs4(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(ty_Ratio, dag)) -> new_esEs12(vyw30, vyw400, dag) new_esEs35(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs13(Left(vyw300), Left(vyw4000), ty_Char, egb) -> new_esEs15(vyw300, vyw4000) new_primCompAux00(vyw90, LT) -> LT new_ltEs4(vyw44, vyw45, app(ty_Ratio, ddd)) -> new_ltEs5(vyw44, vyw45, ddd) new_lt20(vyw80, vyw83, ty_Double) -> new_lt13(vyw80, vyw83) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs7(Left(vyw440), Left(vyw450), ty_Float, bb) -> new_ltEs16(vyw440, vyw450) new_esEs9(vyw32, vyw402, app(ty_Maybe, cgh)) -> new_esEs19(vyw32, vyw402, cgh) new_esEs13(Right(vyw300), Right(vyw4000), ega, app(ty_[], fbc)) -> new_esEs20(vyw300, vyw4000, fbc) new_esEs10(vyw31, vyw401, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs22(vyw31, vyw401, dad, dae, daf) new_esEs10(vyw31, vyw401, ty_@0) -> new_esEs21(vyw31, vyw401) new_esEs6(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs10(vyw31, vyw401, ty_Float) -> new_esEs25(vyw31, vyw401) new_esEs30(vyw441, vyw451, ty_Bool) -> new_esEs14(vyw441, vyw451) new_ltEs18(vyw44, vyw45) -> new_fsEs(new_compare18(vyw44, vyw45)) new_ltEs24(vyw441, vyw451, app(ty_[], fh)) -> new_ltEs17(vyw441, vyw451, fh) new_ltEs19(vyw51, vyw52, ty_@0) -> new_ltEs6(vyw51, vyw52) new_ltEs7(Left(vyw440), Left(vyw450), ty_Bool, bb) -> new_ltEs10(vyw440, vyw450) new_lt22(vyw98, vyw100, ty_Char) -> new_lt5(vyw98, vyw100) new_ltEs22(vyw82, vyw85, ty_Integer) -> new_ltEs13(vyw82, vyw85) new_esEs34(vyw302, vyw4002, ty_@0) -> new_esEs21(vyw302, vyw4002) new_ltEs8(Just(vyw440), Just(vyw450), ty_Integer) -> new_ltEs13(vyw440, vyw450) new_esEs7(vyw31, vyw401, app(app(app(ty_@3, dee), def), deg)) -> new_esEs22(vyw31, vyw401, dee, def, deg) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_[], faa), egb) -> new_esEs20(vyw300, vyw4000, faa) new_esEs5(vyw30, vyw400, app(app(ty_@2, eea), eeb)) -> new_esEs16(vyw30, vyw400, eea, eeb) new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, egg, egh, eha) -> LT new_ltEs20(vyw442, vyw452, app(app(ty_Either, he), hf)) -> new_ltEs7(vyw442, vyw452, he, hf) new_esEs13(Left(vyw300), Left(vyw4000), app(app(ty_Either, ehd), ehe), egb) -> new_esEs13(vyw300, vyw4000, ehd, ehe) new_esEs36(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_compare8(Right(vyw30), Left(vyw400), bed, bee) -> GT new_compare5(vyw30, vyw400, ty_@0) -> new_compare7(vyw30, vyw400) new_ltEs20(vyw442, vyw452, ty_Char) -> new_ltEs12(vyw442, vyw452) new_esEs11(vyw30, vyw400, app(ty_Maybe, dbd)) -> new_esEs19(vyw30, vyw400, dbd) new_esEs11(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_ltEs20(vyw442, vyw452, ty_Int) -> new_ltEs18(vyw442, vyw452) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw442, vyw452, ty_Double) -> new_ltEs11(vyw442, vyw452) new_esEs29(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_esEs5(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_lt20(vyw80, vyw83, app(ty_Ratio, efc)) -> new_lt8(vyw80, vyw83, efc) new_ltEs20(vyw442, vyw452, app(ty_Maybe, hg)) -> new_ltEs8(vyw442, vyw452, hg) new_esEs11(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_lt22(vyw98, vyw100, app(ty_[], cbh)) -> new_lt18(vyw98, vyw100, cbh) new_lt5(vyw3, vyw40) -> new_esEs27(new_compare13(vyw3, vyw40)) new_esEs34(vyw302, vyw4002, ty_Integer) -> new_esEs17(vyw302, vyw4002) new_lt6(vyw441, vyw451, ty_@0) -> new_lt9(vyw441, vyw451) new_lt20(vyw80, vyw83, ty_Integer) -> new_lt14(vyw80, vyw83) new_esEs9(vyw32, vyw402, app(ty_Ratio, cgc)) -> new_esEs12(vyw32, vyw402, cgc) new_esEs6(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs8(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs14(False, True) -> False new_esEs14(True, False) -> False new_esEs32(vyw81, vyw84, ty_Ordering) -> new_esEs18(vyw81, vyw84) new_primCompAux00(vyw90, GT) -> GT new_esEs40(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_compare112(vyw148, vyw149, vyw150, vyw151, False, vyw153, efa, efb) -> new_compare113(vyw148, vyw149, vyw150, vyw151, vyw153, efa, efb) new_esEs26(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_esEs39(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_compare5(vyw30, vyw400, ty_Char) -> new_compare13(vyw30, vyw400) new_ltEs19(vyw51, vyw52, ty_Char) -> new_ltEs12(vyw51, vyw52) new_esEs6(vyw30, vyw400, app(ty_[], edb)) -> new_esEs20(vyw30, vyw400, edb) new_esEs37(vyw98, vyw100, ty_Char) -> new_esEs15(vyw98, vyw100) new_ltEs4(vyw44, vyw45, app(app(ty_@2, ef), gc)) -> new_ltEs14(vyw44, vyw45, ef, gc) new_esEs19(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs23(vyw300, vyw4000) new_ltEs21(vyw58, vyw59, ty_Float) -> new_ltEs16(vyw58, vyw59) new_ltEs21(vyw58, vyw59, ty_Double) -> new_ltEs11(vyw58, vyw59) new_compare11(False, True) -> LT new_esEs36(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_primCmpInt(Pos(Succ(vyw300)), Neg(vyw400)) -> GT new_esEs6(vyw30, vyw400, app(app(ty_Either, ece), ecf)) -> new_esEs13(vyw30, vyw400, ece, ecf) new_lt13(vyw3, vyw40) -> new_esEs27(new_compare12(vyw3, vyw40)) new_ltEs21(vyw58, vyw59, ty_Ordering) -> new_ltEs9(vyw58, vyw59) new_lt22(vyw98, vyw100, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_lt16(vyw98, vyw100, cbe, cbf, cbg) new_lt23(vyw440, vyw450, app(ty_[], hb)) -> new_lt18(vyw440, vyw450, hb) new_esEs10(vyw31, vyw401, ty_Ordering) -> new_esEs18(vyw31, vyw401) new_lt23(vyw440, vyw450, ty_Bool) -> new_lt12(vyw440, vyw450) new_lt7(vyw440, vyw450, ty_@0) -> new_lt9(vyw440, vyw450) new_lt21(vyw81, vyw84, ty_Integer) -> new_lt14(vyw81, vyw84) new_compare110(vyw128, vyw129, True, eff, efg) -> LT new_esEs4(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_lt21(vyw81, vyw84, ty_Double) -> new_lt13(vyw81, vyw84) new_esEs5(vyw30, vyw400, app(ty_Maybe, eec)) -> new_esEs19(vyw30, vyw400, eec) new_compare5(vyw30, vyw400, app(ty_Maybe, bde)) -> new_compare9(vyw30, vyw400, bde) new_esEs33(vyw80, vyw83, ty_Integer) -> new_esEs17(vyw80, vyw83) new_lt7(vyw440, vyw450, app(ty_Maybe, bcb)) -> new_lt10(vyw440, vyw450, bcb) new_esEs29(vyw300, vyw4000, app(ty_[], eae)) -> new_esEs20(vyw300, vyw4000, eae) new_esEs35(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs5(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_lt21(vyw81, vyw84, ty_Float) -> new_lt17(vyw81, vyw84) new_ltEs8(Just(vyw440), Just(vyw450), ty_Double) -> new_ltEs11(vyw440, vyw450) new_lt7(vyw440, vyw450, app(app(ty_Either, bbh), bca)) -> new_lt4(vyw440, vyw450, bbh, bca) new_primCmpNat0(Zero, Succ(vyw4000)) -> LT new_esEs30(vyw441, vyw451, app(ty_[], bbg)) -> new_esEs20(vyw441, vyw451, bbg) new_ltEs23(vyw99, vyw101, app(ty_[], caf)) -> new_ltEs17(vyw99, vyw101, caf) new_esEs19(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs20([], [], deh) -> True new_esEs29(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs30(vyw441, vyw451, app(app(ty_Either, baf), bag)) -> new_esEs13(vyw441, vyw451, baf, bag) new_esEs9(vyw32, vyw402, ty_Float) -> new_esEs25(vyw32, vyw402) new_ltEs8(Just(vyw440), Just(vyw450), ty_Ordering) -> new_ltEs9(vyw440, vyw450) new_ltEs21(vyw58, vyw59, ty_Integer) -> new_ltEs13(vyw58, vyw59) new_ltEs8(Just(vyw440), Just(vyw450), ty_@0) -> new_ltEs6(vyw440, vyw450) new_esEs18(LT, LT) -> True new_esEs8(vyw30, vyw400, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs22(vyw30, vyw400, dch, dda, ddb) new_esEs27(LT) -> True new_compare17(Float(vyw30, Pos(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_sr(Integer(vyw4000), Integer(vyw310)) -> Integer(new_primMulInt(vyw4000, vyw310)) new_ltEs23(vyw99, vyw101, ty_Float) -> new_ltEs16(vyw99, vyw101) new_primCmpNat0(Succ(vyw300), Zero) -> GT new_esEs38(vyw440, vyw450, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs22(vyw440, vyw450, gg, gh, ha) new_ltEs21(vyw58, vyw59, app(ty_Ratio, eca)) -> new_ltEs5(vyw58, vyw59, eca) new_ltEs19(vyw51, vyw52, app(app(ty_Either, beh), bfa)) -> new_ltEs7(vyw51, vyw52, beh, bfa) new_esEs31(vyw440, vyw450, app(ty_Maybe, bcb)) -> new_esEs19(vyw440, vyw450, bcb) new_pePe(False, vyw177) -> vyw177 new_lt22(vyw98, vyw100, ty_Ordering) -> new_lt11(vyw98, vyw100) new_lt20(vyw80, vyw83, ty_Float) -> new_lt17(vyw80, vyw83) new_esEs11(vyw30, vyw400, app(app(ty_@2, dbb), dbc)) -> new_esEs16(vyw30, vyw400, dbb, dbc) new_esEs8(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs39(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs29(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_ltEs7(Right(vyw440), Right(vyw450), cb, app(ty_Maybe, ce)) -> new_ltEs8(vyw440, vyw450, ce) new_lt7(vyw440, vyw450, ty_Bool) -> new_lt12(vyw440, vyw450) new_esEs26(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_fsEs(vyw172) -> new_not(new_esEs18(vyw172, GT)) new_ltEs14(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, gc) -> new_pePe(new_lt23(vyw440, vyw450, ef), new_asAs(new_esEs38(vyw440, vyw450, ef), new_ltEs24(vyw441, vyw451, gc))) new_lt22(vyw98, vyw100, ty_Int) -> new_lt19(vyw98, vyw100) new_esEs37(vyw98, vyw100, ty_Float) -> new_esEs25(vyw98, vyw100) new_ltEs23(vyw99, vyw101, app(app(ty_@2, caa), cab)) -> new_ltEs14(vyw99, vyw101, caa, cab) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_ltEs23(vyw99, vyw101, app(ty_Ratio, ffe)) -> new_ltEs5(vyw99, vyw101, ffe) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_Ratio, eba), bb) -> new_ltEs5(vyw440, vyw450, eba) new_ltEs7(Left(vyw440), Left(vyw450), ty_Integer, bb) -> new_ltEs13(vyw440, vyw450) new_esEs9(vyw32, vyw402, app(app(ty_@2, cgf), cgg)) -> new_esEs16(vyw32, vyw402, cgf, cgg) new_compare11(True, True) -> EQ new_ltEs20(vyw442, vyw452, ty_@0) -> new_ltEs6(vyw442, vyw452) new_esEs5(vyw30, vyw400, app(app(ty_Either, edg), edh)) -> new_esEs13(vyw30, vyw400, edg, edh) new_compare8(Left(vyw30), Left(vyw400), bed, bee) -> new_compare26(vyw30, vyw400, new_esEs4(vyw30, vyw400, bed), bed, bee) new_ltEs10(True, False) -> False new_esEs4(vyw30, vyw400, app(app(app(ty_@3, egd), ege), egf)) -> new_esEs22(vyw30, vyw400, egd, ege, egf) new_ltEs19(vyw51, vyw52, ty_Int) -> new_ltEs18(vyw51, vyw52) new_esEs33(vyw80, vyw83, app(ty_Maybe, cch)) -> new_esEs19(vyw80, vyw83, cch) new_esEs4(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_lt22(vyw98, vyw100, ty_Double) -> new_lt13(vyw98, vyw100) new_ltEs4(vyw44, vyw45, ty_Char) -> new_ltEs12(vyw44, vyw45) new_lt22(vyw98, vyw100, ty_Bool) -> new_lt12(vyw98, vyw100) new_ltEs7(Left(vyw440), Left(vyw450), ty_@0, bb) -> new_ltEs6(vyw440, vyw450) new_esEs31(vyw440, vyw450, ty_Double) -> new_esEs24(vyw440, vyw450) new_ltEs19(vyw51, vyw52, app(app(ty_@2, bfc), bfd)) -> new_ltEs14(vyw51, vyw52, bfc, bfd) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs37(vyw98, vyw100, app(app(ty_Either, cag), cah)) -> new_esEs13(vyw98, vyw100, cag, cah) new_primCmpInt(Neg(Zero), Pos(Succ(vyw4000))) -> LT new_esEs6(vyw30, vyw400, app(ty_Ratio, ecd)) -> new_esEs12(vyw30, vyw400, ecd) new_compare13(Char(vyw30), Char(vyw400)) -> new_primCmpNat0(vyw30, vyw400) new_esEs36(vyw300, vyw4000, ty_Bool) -> new_esEs14(vyw300, vyw4000) new_esEs10(vyw31, vyw401, app(ty_Maybe, dab)) -> new_esEs19(vyw31, vyw401, dab) new_esEs13(Left(vyw300), Left(vyw4000), ty_Double, egb) -> new_esEs24(vyw300, vyw4000) new_ltEs8(Just(vyw440), Just(vyw450), ty_Float) -> new_ltEs16(vyw440, vyw450) new_esEs8(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_primMulInt(Pos(vyw4000), Pos(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_esEs33(vyw80, vyw83, app(ty_Ratio, efc)) -> new_esEs12(vyw80, vyw83, efc) new_compare5(vyw30, vyw400, ty_Bool) -> new_compare11(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), cb, app(app(ty_Either, cc), cd)) -> new_ltEs7(vyw440, vyw450, cc, cd) new_esEs37(vyw98, vyw100, app(ty_[], cbh)) -> new_esEs20(vyw98, vyw100, cbh) new_esEs11(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs28(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_esEs28(vyw301, vyw4001, app(app(app(ty_@3, dhd), dhe), dhf)) -> new_esEs22(vyw301, vyw4001, dhd, dhe, dhf) new_compare26(vyw44, vyw45, False, ddc, bef) -> new_compare19(vyw44, vyw45, new_ltEs4(vyw44, vyw45, ddc), ddc, bef) new_compare12(Double(vyw30, Pos(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_ltEs21(vyw58, vyw59, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs15(vyw58, vyw59, bgg, bgh, bha) new_lt7(vyw440, vyw450, ty_Integer) -> new_lt14(vyw440, vyw450) new_esEs28(vyw301, vyw4001, ty_Bool) -> new_esEs14(vyw301, vyw4001) new_esEs34(vyw302, vyw4002, ty_Double) -> new_esEs24(vyw302, vyw4002) new_esEs35(vyw301, vyw4001, ty_Float) -> new_esEs25(vyw301, vyw4001) new_compare10(GT, LT) -> GT new_esEs10(vyw31, vyw401, app(ty_Ratio, che)) -> new_esEs12(vyw31, vyw401, che) new_esEs7(vyw31, vyw401, ty_Double) -> new_esEs24(vyw31, vyw401) new_esEs38(vyw440, vyw450, ty_Char) -> new_esEs15(vyw440, vyw450) new_esEs12(:%(vyw300, vyw301), :%(vyw4000, vyw4001), efh) -> new_asAs(new_esEs40(vyw300, vyw4000, efh), new_esEs39(vyw301, vyw4001, efh)) new_ltEs19(vyw51, vyw52, app(ty_Maybe, bfb)) -> new_ltEs8(vyw51, vyw52, bfb) new_ltEs24(vyw441, vyw451, ty_Bool) -> new_ltEs10(vyw441, vyw451) new_ltEs7(Left(vyw440), Left(vyw450), ty_Int, bb) -> new_ltEs18(vyw440, vyw450) new_primMulNat0(Succ(vyw40000), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw3100)) -> Zero new_compare8(Left(vyw30), Right(vyw400), bed, bee) -> LT new_esEs26(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_ltEs9(GT, EQ) -> False new_lt22(vyw98, vyw100, ty_Integer) -> new_lt14(vyw98, vyw100) new_ltEs19(vyw51, vyw52, ty_Integer) -> new_ltEs13(vyw51, vyw52) new_esEs6(vyw30, vyw400, app(ty_Maybe, eda)) -> new_esEs19(vyw30, vyw400, eda) new_lt15(vyw3, vyw40, bhc, bhd) -> new_esEs27(new_compare15(vyw3, vyw40, bhc, bhd)) new_primPlusNat1(Succ(vyw1780), vyw3100) -> Succ(Succ(new_primPlusNat0(vyw1780, vyw3100))) new_esEs25(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs23(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_lt7(vyw440, vyw450, ty_Double) -> new_lt13(vyw440, vyw450) new_esEs31(vyw440, vyw450, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs22(vyw440, vyw450, bce, bcf, bcg) new_lt21(vyw81, vyw84, app(ty_Maybe, cfc)) -> new_lt10(vyw81, vyw84, cfc) new_esEs33(vyw80, vyw83, ty_Double) -> new_esEs24(vyw80, vyw83) new_lt20(vyw80, vyw83, ty_Bool) -> new_lt12(vyw80, vyw83) new_lt10(vyw3, vyw40, bga) -> new_esEs27(new_compare9(vyw3, vyw40, bga)) new_primPlusNat0(Succ(vyw17800), Zero) -> Succ(vyw17800) new_primPlusNat0(Zero, Succ(vyw31000)) -> Succ(vyw31000) new_ltEs19(vyw51, vyw52, app(ty_Ratio, ebd)) -> new_ltEs5(vyw51, vyw52, ebd) new_esEs5(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_lt21(vyw81, vyw84, app(ty_Ratio, efe)) -> new_lt8(vyw81, vyw84, efe) new_esEs4(vyw30, vyw400, app(ty_[], deh)) -> new_esEs20(vyw30, vyw400, deh) new_primPlusNat1(Zero, vyw3100) -> Succ(vyw3100) new_ltEs4(vyw44, vyw45, ty_@0) -> new_ltEs6(vyw44, vyw45) new_esEs31(vyw440, vyw450, app(app(ty_@2, bcc), bcd)) -> new_esEs16(vyw440, vyw450, bcc, bcd) new_esEs8(vyw30, vyw400, app(ty_Ratio, dca)) -> new_esEs12(vyw30, vyw400, dca) new_compare5(vyw30, vyw400, app(ty_[], bec)) -> new_compare0(vyw30, vyw400, bec) new_esEs28(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_esEs31(vyw440, vyw450, ty_Ordering) -> new_esEs18(vyw440, vyw450) new_lt14(vyw3, vyw40) -> new_esEs27(new_compare14(vyw3, vyw40)) new_esEs7(vyw31, vyw401, ty_@0) -> new_esEs21(vyw31, vyw401) new_lt21(vyw81, vyw84, ty_Bool) -> new_lt12(vyw81, vyw84) new_esEs18(EQ, EQ) -> True new_esEs32(vyw81, vyw84, ty_Double) -> new_esEs24(vyw81, vyw84) new_esEs31(vyw440, vyw450, ty_Integer) -> new_esEs17(vyw440, vyw450) new_esEs5(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_ltEs7(Left(vyw440), Left(vyw450), ty_Char, bb) -> new_ltEs12(vyw440, vyw450) new_compare112(vyw148, vyw149, vyw150, vyw151, True, vyw153, efa, efb) -> new_compare113(vyw148, vyw149, vyw150, vyw151, True, efa, efb) new_esEs32(vyw81, vyw84, app(app(ty_@2, cfd), cfe)) -> new_esEs16(vyw81, vyw84, cfd, cfe) new_ltEs8(Just(vyw440), Just(vyw450), ty_Bool) -> new_ltEs10(vyw440, vyw450) new_esEs37(vyw98, vyw100, ty_Bool) -> new_esEs14(vyw98, vyw100) new_esEs7(vyw31, vyw401, ty_Integer) -> new_esEs17(vyw31, vyw401) new_esEs8(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_lt20(vyw80, vyw83, ty_@0) -> new_lt9(vyw80, vyw83) new_esEs30(vyw441, vyw451, ty_Integer) -> new_esEs17(vyw441, vyw451) new_esEs8(vyw30, vyw400, app(ty_Maybe, dcf)) -> new_esEs19(vyw30, vyw400, dcf) new_ltEs20(vyw442, vyw452, app(app(ty_@2, hh), baa)) -> new_ltEs14(vyw442, vyw452, hh, baa) new_lt7(vyw440, vyw450, ty_Int) -> new_lt19(vyw440, vyw450) new_esEs13(Left(vyw300), Left(vyw4000), ty_@0, egb) -> new_esEs21(vyw300, vyw4000) new_ltEs10(False, True) -> True new_esEs6(vyw30, vyw400, app(app(app(ty_@3, edc), edd), ede)) -> new_esEs22(vyw30, vyw400, edc, edd, ede) new_esEs26(vyw300, vyw4000, app(app(ty_Either, dfb), dfc)) -> new_esEs13(vyw300, vyw4000, dfb, dfc) new_ltEs9(GT, GT) -> True new_esEs31(vyw440, vyw450, ty_@0) -> new_esEs21(vyw440, vyw450) new_esEs36(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_ltEs4(vyw44, vyw45, ty_Int) -> new_ltEs18(vyw44, vyw45) new_lt23(vyw440, vyw450, ty_Int) -> new_lt19(vyw440, vyw450) new_compare19(vyw121, vyw122, False, ecb, ecc) -> GT new_ltEs20(vyw442, vyw452, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs15(vyw442, vyw452, bab, bac, bad) new_ltEs19(vyw51, vyw52, app(ty_[], bfh)) -> new_ltEs17(vyw51, vyw52, bfh) new_lt20(vyw80, vyw83, ty_Ordering) -> new_lt11(vyw80, vyw83) new_esEs26(vyw300, vyw4000, app(ty_[], dfg)) -> new_esEs20(vyw300, vyw4000, dfg) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Float) -> new_compare17(vyw30, vyw400) new_primMulInt(Neg(vyw4000), Neg(vyw310)) -> Pos(new_primMulNat0(vyw4000, vyw310)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw4000))) -> new_primCmpNat0(Zero, Succ(vyw4000)) new_esEs14(True, True) -> True new_esEs37(vyw98, vyw100, ty_Int) -> new_esEs23(vyw98, vyw100) new_esEs9(vyw32, vyw402, ty_Double) -> new_esEs24(vyw32, vyw402) new_ltEs21(vyw58, vyw59, app(app(ty_@2, bge), bgf)) -> new_ltEs14(vyw58, vyw59, bge, bgf) new_esEs7(vyw31, vyw401, app(ty_Maybe, dec)) -> new_esEs19(vyw31, vyw401, dec) new_lt9(vyw3, vyw40) -> new_esEs27(new_compare7(vyw3, vyw40)) new_esEs6(vyw30, vyw400, ty_Ordering) -> new_esEs18(vyw30, vyw400) new_esEs24(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs23(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs5(vyw30, vyw400, app(app(app(ty_@3, eee), eef), eeg)) -> new_esEs22(vyw30, vyw400, eee, eef, eeg) new_lt20(vyw80, vyw83, app(ty_Maybe, cch)) -> new_lt10(vyw80, vyw83, cch) new_esEs30(vyw441, vyw451, ty_@0) -> new_esEs21(vyw441, vyw451) new_ltEs4(vyw44, vyw45, ty_Double) -> new_ltEs11(vyw44, vyw45) new_esEs30(vyw441, vyw451, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs22(vyw441, vyw451, bbd, bbe, bbf) new_esEs31(vyw440, vyw450, app(ty_Ratio, ebg)) -> new_esEs12(vyw440, vyw450, ebg) new_ltEs4(vyw44, vyw45, ty_Ordering) -> new_ltEs9(vyw44, vyw45) new_ltEs20(vyw442, vyw452, app(ty_[], bae)) -> new_ltEs17(vyw442, vyw452, bae) new_esEs32(vyw81, vyw84, app(ty_Maybe, cfc)) -> new_esEs19(vyw81, vyw84, cfc) new_esEs13(Right(vyw300), Right(vyw4000), ega, app(app(ty_@2, fah), fba)) -> new_esEs16(vyw300, vyw4000, fah, fba) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Int) -> new_esEs23(vyw300, vyw4000) new_lt22(vyw98, vyw100, app(ty_Ratio, fff)) -> new_lt8(vyw98, vyw100, fff) new_ltEs19(vyw51, vyw52, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs15(vyw51, vyw52, bfe, bff, bfg) new_esEs6(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_lt16(vyw3, vyw40, cca, ccb, ccc) -> new_esEs27(new_compare16(vyw3, vyw40, cca, ccb, ccc)) new_esEs38(vyw440, vyw450, ty_Bool) -> new_esEs14(vyw440, vyw450) new_esEs38(vyw440, vyw450, app(app(ty_Either, ga), gb)) -> new_esEs13(vyw440, vyw450, ga, gb) new_esEs29(vyw300, vyw4000, app(app(app(ty_@3, eaf), eag), eah)) -> new_esEs22(vyw300, vyw4000, eaf, eag, eah) new_compare5(vyw30, vyw400, app(ty_Ratio, cgb)) -> new_compare6(vyw30, vyw400, cgb) new_esEs7(vyw31, vyw401, app(ty_Ratio, ddf)) -> new_esEs12(vyw31, vyw401, ddf) new_esEs30(vyw441, vyw451, ty_Ordering) -> new_esEs18(vyw441, vyw451) new_esEs18(LT, EQ) -> False new_esEs18(EQ, LT) -> False new_lt7(vyw440, vyw450, app(ty_Ratio, ebg)) -> new_lt8(vyw440, vyw450, ebg) new_ltEs4(vyw44, vyw45, app(ty_Maybe, dde)) -> new_ltEs8(vyw44, vyw45, dde) new_esEs7(vyw31, vyw401, app(app(ty_@2, dea), deb)) -> new_esEs16(vyw31, vyw401, dea, deb) new_lt18(vyw3, vyw40, bdb) -> new_esEs27(new_compare0(vyw3, vyw40, bdb)) new_compare5(vyw30, vyw400, ty_Ordering) -> new_compare10(vyw30, vyw400) new_esEs4(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs6(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs10(vyw31, vyw401, ty_Double) -> new_esEs24(vyw31, vyw401) new_esEs38(vyw440, vyw450, app(ty_[], hb)) -> new_esEs20(vyw440, vyw450, hb) new_esEs30(vyw441, vyw451, ty_Char) -> new_esEs15(vyw441, vyw451) new_compare18(vyw3, vyw40) -> new_primCmpInt(vyw3, vyw40) new_ltEs24(vyw441, vyw451, app(app(ty_@2, fb), fc)) -> new_ltEs14(vyw441, vyw451, fb, fc) new_esEs13(Right(vyw300), Right(vyw4000), ega, app(ty_Ratio, fae)) -> new_esEs12(vyw300, vyw4000, fae) new_ltEs7(Left(vyw440), Right(vyw450), cb, bb) -> True new_ltEs23(vyw99, vyw101, ty_Double) -> new_ltEs11(vyw99, vyw101) new_esEs38(vyw440, vyw450, ty_Float) -> new_esEs25(vyw440, vyw450) new_ltEs7(Left(vyw440), Left(vyw450), ty_Ordering, bb) -> new_ltEs9(vyw440, vyw450) new_esEs35(vyw301, vyw4001, app(app(ty_@2, fdd), fde)) -> new_esEs16(vyw301, vyw4001, fdd, fde) new_ltEs6(vyw44, vyw45) -> new_fsEs(new_compare7(vyw44, vyw45)) new_lt21(vyw81, vyw84, ty_Int) -> new_lt19(vyw81, vyw84) new_primMulInt(Pos(vyw4000), Neg(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_primMulInt(Neg(vyw4000), Pos(vyw310)) -> Neg(new_primMulNat0(vyw4000, vyw310)) new_lt6(vyw441, vyw451, ty_Ordering) -> new_lt11(vyw441, vyw451) new_compare10(LT, GT) -> LT new_esEs8(vyw30, vyw400, app(app(ty_@2, dcd), dce)) -> new_esEs16(vyw30, vyw400, dcd, dce) new_esEs30(vyw441, vyw451, app(ty_Maybe, bba)) -> new_esEs19(vyw441, vyw451, bba) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_Ratio, ehc), egb) -> new_esEs12(vyw300, vyw4000, ehc) new_ltEs24(vyw441, vyw451, ty_Float) -> new_ltEs16(vyw441, vyw451) new_ltEs4(vyw44, vyw45, app(app(ty_Either, cb), bb)) -> new_ltEs7(vyw44, vyw45, cb, bb) new_esEs4(vyw30, vyw400, app(app(ty_Either, ega), egb)) -> new_esEs13(vyw30, vyw400, ega, egb) new_lt23(vyw440, vyw450, ty_Integer) -> new_lt14(vyw440, vyw450) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_ltEs20(vyw442, vyw452, app(ty_Ratio, ebe)) -> new_ltEs5(vyw442, vyw452, ebe) new_esEs31(vyw440, vyw450, app(app(ty_Either, bbh), bca)) -> new_esEs13(vyw440, vyw450, bbh, bca) new_esEs33(vyw80, vyw83, ty_Bool) -> new_esEs14(vyw80, vyw83) new_ltEs8(Just(vyw440), Just(vyw450), app(ty_[], ee)) -> new_ltEs17(vyw440, vyw450, ee) new_lt19(vyw3, vyw40) -> new_esEs27(new_compare18(vyw3, vyw40)) new_esEs29(vyw300, vyw4000, app(app(ty_@2, eab), eac)) -> new_esEs16(vyw300, vyw4000, eab, eac) new_esEs13(Left(vyw300), Left(vyw4000), app(ty_Maybe, ehh), egb) -> new_esEs19(vyw300, vyw4000, ehh) new_lt23(vyw440, vyw450, ty_Ordering) -> new_lt11(vyw440, vyw450) new_esEs19(Nothing, Just(vyw4000), egc) -> False new_esEs19(Just(vyw300), Nothing, egc) -> False new_compare114(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, vyw170, egg, egh, eha) -> new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, True, egg, egh, eha) new_esEs19(Nothing, Nothing, egc) -> True new_ltEs7(Left(vyw440), Left(vyw450), app(app(ty_@2, bd), be), bb) -> new_ltEs14(vyw440, vyw450, bd, be) new_esEs13(Left(vyw300), Left(vyw4000), ty_Integer, egb) -> new_esEs17(vyw300, vyw4000) new_ltEs24(vyw441, vyw451, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs15(vyw441, vyw451, fd, ff, fg) new_ltEs23(vyw99, vyw101, ty_Char) -> new_ltEs12(vyw99, vyw101) new_ltEs4(vyw44, vyw45, app(ty_[], bda)) -> new_ltEs17(vyw44, vyw45, bda) new_esEs29(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_esEs37(vyw98, vyw100, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs22(vyw98, vyw100, cbe, cbf, cbg) new_esEs9(vyw32, vyw402, app(ty_[], cha)) -> new_esEs20(vyw32, vyw402, cha) new_esEs38(vyw440, vyw450, ty_Int) -> new_esEs23(vyw440, vyw450) new_esEs36(vyw300, vyw4000, app(ty_[], ffa)) -> new_esEs20(vyw300, vyw4000, ffa) new_lt23(vyw440, vyw450, ty_Double) -> new_lt13(vyw440, vyw450) new_lt6(vyw441, vyw451, ty_Integer) -> new_lt14(vyw441, vyw451) new_esEs11(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_compare8(Right(vyw30), Right(vyw400), bed, bee) -> new_compare28(vyw30, vyw400, new_esEs5(vyw30, vyw400, bee), bed, bee) new_compare10(GT, EQ) -> GT new_esEs6(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_compare10(LT, EQ) -> LT new_ltEs21(vyw58, vyw59, ty_Bool) -> new_ltEs10(vyw58, vyw59) new_esEs6(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_esEs13(Left(vyw300), Right(vyw4000), ega, egb) -> False new_esEs13(Right(vyw300), Left(vyw4000), ega, egb) -> False new_ltEs21(vyw58, vyw59, app(ty_[], bhb)) -> new_ltEs17(vyw58, vyw59, bhb) new_compare16(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cca, ccb, ccc) -> new_compare25(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, cca), new_asAs(new_esEs10(vyw31, vyw401, ccb), new_esEs9(vyw32, vyw402, ccc))), cca, ccb, ccc) new_compare0([], :(vyw400, vyw401), bdb) -> LT new_esEs33(vyw80, vyw83, ty_Int) -> new_esEs23(vyw80, vyw83) new_lt6(vyw441, vyw451, app(app(ty_@2, bbb), bbc)) -> new_lt15(vyw441, vyw451, bbb, bbc) new_asAs(True, vyw116) -> vyw116 new_lt23(vyw440, vyw450, app(ty_Ratio, ffh)) -> new_lt8(vyw440, vyw450, ffh) new_esEs19(Just(vyw300), Just(vyw4000), app(app(ty_@2, fge), fgf)) -> new_esEs16(vyw300, vyw4000, fge, fgf) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Float) -> new_esEs25(vyw300, vyw4000) new_lt6(vyw441, vyw451, app(ty_Ratio, ebf)) -> new_lt8(vyw441, vyw451, ebf) new_compare25(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, ccg) -> new_compare114(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, new_lt20(vyw80, vyw83, cdg), new_asAs(new_esEs33(vyw80, vyw83, cdg), new_pePe(new_lt21(vyw81, vyw84, ccf), new_asAs(new_esEs32(vyw81, vyw84, ccf), new_ltEs22(vyw82, vyw85, ccg)))), cdg, ccf, ccg) new_compare28(vyw51, vyw52, False, beg, ebc) -> new_compare110(vyw51, vyw52, new_ltEs19(vyw51, vyw52, ebc), beg, ebc) new_esEs29(vyw300, vyw4000, app(ty_Ratio, dhg)) -> new_esEs12(vyw300, vyw4000, dhg) new_esEs5(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_esEs32(vyw81, vyw84, ty_@0) -> new_esEs21(vyw81, vyw84) new_lt21(vyw81, vyw84, app(app(ty_Either, cfa), cfb)) -> new_lt4(vyw81, vyw84, cfa, cfb) new_ltEs22(vyw82, vyw85, app(app(ty_Either, cdh), cea)) -> new_ltEs7(vyw82, vyw85, cdh, cea) new_esEs37(vyw98, vyw100, ty_@0) -> new_esEs21(vyw98, vyw100) new_ltEs20(vyw442, vyw452, ty_Float) -> new_ltEs16(vyw442, vyw452) new_lt21(vyw81, vyw84, app(ty_[], cga)) -> new_lt18(vyw81, vyw84, cga) new_ltEs22(vyw82, vyw85, app(ty_Maybe, ceb)) -> new_ltEs8(vyw82, vyw85, ceb) new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, False, egg, egh, eha) -> GT new_esEs30(vyw441, vyw451, app(app(ty_@2, bbb), bbc)) -> new_esEs16(vyw441, vyw451, bbb, bbc) new_esEs10(vyw31, vyw401, app(app(ty_@2, chh), daa)) -> new_esEs16(vyw31, vyw401, chh, daa) new_ltEs22(vyw82, vyw85, ty_Int) -> new_ltEs18(vyw82, vyw85) new_lt23(vyw440, vyw450, app(app(app(ty_@3, gg), gh), ha)) -> new_lt16(vyw440, vyw450, gg, gh, ha) new_esEs11(vyw30, vyw400, app(ty_[], dbe)) -> new_esEs20(vyw30, vyw400, dbe) new_ltEs22(vyw82, vyw85, ty_Ordering) -> new_ltEs9(vyw82, vyw85) new_ltEs7(Left(vyw440), Left(vyw450), ty_Double, bb) -> new_ltEs11(vyw440, vyw450) new_primCmpInt(Pos(Succ(vyw300)), Pos(vyw400)) -> new_primCmpNat0(Succ(vyw300), vyw400) new_esEs7(vyw31, vyw401, ty_Ordering) -> new_esEs18(vyw31, vyw401) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_[], ca), bb) -> new_ltEs17(vyw440, vyw450, ca) new_esEs29(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs30(vyw441, vyw451, app(ty_Ratio, ebf)) -> new_esEs12(vyw441, vyw451, ebf) new_esEs28(vyw301, vyw4001, ty_Ordering) -> new_esEs18(vyw301, vyw4001) new_primCompAux00(vyw90, EQ) -> vyw90 new_compare0([], [], bdb) -> EQ new_compare113(vyw148, vyw149, vyw150, vyw151, False, efa, efb) -> GT new_esEs13(Right(vyw300), Right(vyw4000), ega, app(ty_Maybe, fbb)) -> new_esEs19(vyw300, vyw4000, fbb) new_esEs34(vyw302, vyw4002, ty_Ordering) -> new_esEs18(vyw302, vyw4002) new_esEs28(vyw301, vyw4001, ty_Int) -> new_esEs23(vyw301, vyw4001) new_esEs26(vyw300, vyw4000, app(app(app(ty_@3, dfh), dga), dgb)) -> new_esEs22(vyw300, vyw4000, dfh, dga, dgb) new_esEs8(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_ltEs21(vyw58, vyw59, app(app(ty_Either, bgb), bgc)) -> new_ltEs7(vyw58, vyw59, bgb, bgc) new_esEs33(vyw80, vyw83, app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs22(vyw80, vyw83, cdc, cdd, cde) new_esEs33(vyw80, vyw83, ty_@0) -> new_esEs21(vyw80, vyw83) new_esEs32(vyw81, vyw84, ty_Integer) -> new_esEs17(vyw81, vyw84) new_primMulNat0(Zero, Zero) -> Zero new_ltEs10(True, True) -> True new_esEs28(vyw301, vyw4001, app(ty_Maybe, dhb)) -> new_esEs19(vyw301, vyw4001, dhb) new_lt6(vyw441, vyw451, ty_Char) -> new_lt5(vyw441, vyw451) new_lt21(vyw81, vyw84, ty_@0) -> new_lt9(vyw81, vyw84) new_esEs35(vyw301, vyw4001, app(ty_Maybe, fdf)) -> new_esEs19(vyw301, vyw4001, fdf) new_lt7(vyw440, vyw450, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt16(vyw440, vyw450, bce, bcf, bcg) new_esEs31(vyw440, vyw450, app(ty_[], bch)) -> new_esEs20(vyw440, vyw450, bch) new_esEs35(vyw301, vyw4001, app(ty_Ratio, fda)) -> new_esEs12(vyw301, vyw4001, fda) new_compare12(Double(vyw30, Neg(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_esEs35(vyw301, vyw4001, app(app(ty_Either, fdb), fdc)) -> new_esEs13(vyw301, vyw4001, fdb, fdc) new_lt7(vyw440, vyw450, ty_Float) -> new_lt17(vyw440, vyw450) new_esEs33(vyw80, vyw83, ty_Float) -> new_esEs25(vyw80, vyw83) new_ltEs17(vyw44, vyw45, bda) -> new_fsEs(new_compare0(vyw44, vyw45, bda)) new_esEs7(vyw31, vyw401, ty_Char) -> new_esEs15(vyw31, vyw401) new_lt6(vyw441, vyw451, app(ty_Maybe, bba)) -> new_lt10(vyw441, vyw451, bba) new_esEs4(vyw30, vyw400, app(app(ty_@2, dgc), dgd)) -> new_esEs16(vyw30, vyw400, dgc, dgd) new_lt22(vyw98, vyw100, app(ty_Maybe, cbb)) -> new_lt10(vyw98, vyw100, cbb) new_esEs26(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs4(vyw30, vyw400, ty_Integer) -> new_esEs17(vyw30, vyw400) new_ltEs20(vyw442, vyw452, ty_Integer) -> new_ltEs13(vyw442, vyw452) new_esEs32(vyw81, vyw84, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs22(vyw81, vyw84, cff, cfg, cfh) new_compare15(@2(vyw30, vyw31), @2(vyw400, vyw401), bhc, bhd) -> new_compare27(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bhc), new_esEs7(vyw31, vyw401, bhd)), bhc, bhd) new_esEs18(EQ, GT) -> False new_esEs18(GT, EQ) -> False new_esEs34(vyw302, vyw4002, ty_Int) -> new_esEs23(vyw302, vyw4002) new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Float) -> new_ltEs16(vyw440, vyw450) new_lt6(vyw441, vyw451, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt16(vyw441, vyw451, bbd, bbe, bbf) new_ltEs22(vyw82, vyw85, app(ty_[], ceh)) -> new_ltEs17(vyw82, vyw85, ceh) new_esEs34(vyw302, vyw4002, app(ty_Maybe, fcd)) -> new_esEs19(vyw302, vyw4002, fcd) new_esEs5(vyw30, vyw400, app(ty_[], eed)) -> new_esEs20(vyw30, vyw400, eed) new_esEs36(vyw300, vyw4000, app(app(ty_Either, fed), fee)) -> new_esEs13(vyw300, vyw4000, fed, fee) new_esEs11(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Bool) -> new_ltEs10(vyw440, vyw450) new_lt7(vyw440, vyw450, app(app(ty_@2, bcc), bcd)) -> new_lt15(vyw440, vyw450, bcc, bcd) new_esEs21(@0, @0) -> True new_ltEs4(vyw44, vyw45, ty_Bool) -> new_ltEs10(vyw44, vyw45) new_compare6(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Int) -> new_compare18(new_sr0(vyw30, vyw401), new_sr0(vyw400, vyw31)) new_lt23(vyw440, vyw450, ty_Char) -> new_lt5(vyw440, vyw450) new_esEs29(vyw300, vyw4000, app(ty_Maybe, ead)) -> new_esEs19(vyw300, vyw4000, ead) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs19(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs24(vyw300, vyw4000) new_esEs34(vyw302, vyw4002, ty_Float) -> new_esEs25(vyw302, vyw4002) new_esEs35(vyw301, vyw4001, ty_Double) -> new_esEs24(vyw301, vyw4001) new_esEs28(vyw301, vyw4001, ty_Float) -> new_esEs25(vyw301, vyw4001) new_lt23(vyw440, vyw450, app(ty_Maybe, gd)) -> new_lt10(vyw440, vyw450, gd) new_compare5(vyw30, vyw400, ty_Int) -> new_compare18(vyw30, vyw400) new_ltEs9(GT, LT) -> False new_esEs40(vyw300, vyw4000, ty_Int) -> new_esEs23(vyw300, vyw4000) new_lt23(vyw440, vyw450, app(app(ty_@2, ge), gf)) -> new_lt15(vyw440, vyw450, ge, gf) new_ltEs21(vyw58, vyw59, app(ty_Maybe, bgd)) -> new_ltEs8(vyw58, vyw59, bgd) new_esEs19(Just(vyw300), Just(vyw4000), app(app(ty_Either, fgc), fgd)) -> new_esEs13(vyw300, vyw4000, fgc, fgd) new_compare27(vyw98, vyw99, vyw100, vyw101, True, bhe, cba) -> EQ new_ltEs8(Just(vyw440), Just(vyw450), app(ty_Maybe, dg)) -> new_ltEs8(vyw440, vyw450, dg) new_esEs18(LT, GT) -> False new_esEs18(GT, LT) -> False new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_esEs30(vyw441, vyw451, ty_Double) -> new_esEs24(vyw441, vyw451) new_ltEs16(vyw44, vyw45) -> new_fsEs(new_compare17(vyw44, vyw45)) new_ltEs21(vyw58, vyw59, ty_Int) -> new_ltEs18(vyw58, vyw59) new_ltEs8(Nothing, Just(vyw450), dde) -> True new_esEs29(vyw300, vyw4000, app(app(ty_Either, dhh), eaa)) -> new_esEs13(vyw300, vyw4000, dhh, eaa) new_esEs9(vyw32, vyw402, ty_@0) -> new_esEs21(vyw32, vyw402) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_[], fgh)) -> new_esEs20(vyw300, vyw4000, fgh) new_ltEs9(EQ, GT) -> True new_ltEs24(vyw441, vyw451, app(ty_Ratio, ffg)) -> new_ltEs5(vyw441, vyw451, ffg) new_esEs10(vyw31, vyw401, ty_Integer) -> new_esEs17(vyw31, vyw401) new_compare9(Nothing, Just(vyw400), bga) -> LT new_esEs33(vyw80, vyw83, ty_Ordering) -> new_esEs18(vyw80, vyw83) new_esEs27(GT) -> False new_lt6(vyw441, vyw451, ty_Double) -> new_lt13(vyw441, vyw451) new_esEs5(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_compare10(EQ, GT) -> LT new_lt7(vyw440, vyw450, app(ty_[], bch)) -> new_lt18(vyw440, vyw450, bch) new_esEs34(vyw302, vyw4002, app(app(ty_@2, fcb), fcc)) -> new_esEs16(vyw302, vyw4002, fcb, fcc) new_ltEs8(Just(vyw440), Just(vyw450), ty_Int) -> new_ltEs18(vyw440, vyw450) new_lt22(vyw98, vyw100, ty_@0) -> new_lt9(vyw98, vyw100) new_esEs4(vyw30, vyw400, app(ty_Ratio, efh)) -> new_esEs12(vyw30, vyw400, efh) new_compare27(vyw98, vyw99, vyw100, vyw101, False, bhe, cba) -> new_compare112(vyw98, vyw99, vyw100, vyw101, new_lt22(vyw98, vyw100, bhe), new_asAs(new_esEs37(vyw98, vyw100, bhe), new_ltEs23(vyw99, vyw101, cba)), bhe, cba) new_lt7(vyw440, vyw450, ty_Char) -> new_lt5(vyw440, vyw450) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs14(False, False) -> True new_ltEs8(Just(vyw440), Just(vyw450), app(app(ty_Either, de), df)) -> new_ltEs7(vyw440, vyw450, de, df) new_esEs28(vyw301, vyw4001, app(ty_Ratio, dge)) -> new_esEs12(vyw301, vyw4001, dge) new_lt7(vyw440, vyw450, ty_Ordering) -> new_lt11(vyw440, vyw450) new_primCmpInt(Neg(Zero), Neg(Succ(vyw4000))) -> new_primCmpNat0(Succ(vyw4000), Zero) new_lt6(vyw441, vyw451, ty_Float) -> new_lt17(vyw441, vyw451) new_esEs9(vyw32, vyw402, ty_Integer) -> new_esEs17(vyw32, vyw402) new_esEs38(vyw440, vyw450, ty_Ordering) -> new_esEs18(vyw440, vyw450) new_esEs20(:(vyw300, vyw301), [], deh) -> False new_esEs20([], :(vyw4000, vyw4001), deh) -> False new_esEs31(vyw440, vyw450, ty_Char) -> new_esEs15(vyw440, vyw450) new_esEs34(vyw302, vyw4002, app(ty_Ratio, fbg)) -> new_esEs12(vyw302, vyw4002, fbg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs23(vyw99, vyw101, app(ty_Maybe, bhh)) -> new_ltEs8(vyw99, vyw101, bhh) new_lt22(vyw98, vyw100, app(app(ty_Either, cag), cah)) -> new_lt4(vyw98, vyw100, cag, cah) new_compare10(LT, LT) -> EQ new_compare111(vyw135, vyw136, False, ehb) -> GT new_esEs4(vyw30, vyw400, app(ty_Maybe, egc)) -> new_esEs19(vyw30, vyw400, egc) new_esEs35(vyw301, vyw4001, app(ty_[], fdg)) -> new_esEs20(vyw301, vyw4001, fdg) new_esEs34(vyw302, vyw4002, ty_Bool) -> new_esEs14(vyw302, vyw4002) new_esEs28(vyw301, vyw4001, app(app(ty_@2, dgh), dha)) -> new_esEs16(vyw301, vyw4001, dgh, dha) new_esEs8(vyw30, vyw400, app(ty_[], dcg)) -> new_esEs20(vyw30, vyw400, dcg) new_compare12(Double(vyw30, Pos(vyw310)), Double(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_compare12(Double(vyw30, Neg(vyw310)), Double(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_esEs38(vyw440, vyw450, ty_@0) -> new_esEs21(vyw440, vyw450) new_esEs11(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs30(vyw441, vyw451, ty_Int) -> new_esEs23(vyw441, vyw451) new_lt20(vyw80, vyw83, ty_Int) -> new_lt19(vyw80, vyw83) new_lt20(vyw80, vyw83, app(app(ty_@2, cda), cdb)) -> new_lt15(vyw80, vyw83, cda, cdb) new_ltEs23(vyw99, vyw101, ty_Int) -> new_ltEs18(vyw99, vyw101) new_esEs7(vyw31, vyw401, ty_Bool) -> new_esEs14(vyw31, vyw401) new_compare9(Just(vyw30), Nothing, bga) -> GT new_ltEs24(vyw441, vyw451, ty_Char) -> new_ltEs12(vyw441, vyw451) new_esEs38(vyw440, vyw450, ty_Double) -> new_esEs24(vyw440, vyw450) new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_@0) -> new_ltEs6(vyw440, vyw450) new_esEs35(vyw301, vyw4001, ty_Ordering) -> new_esEs18(vyw301, vyw4001) new_esEs37(vyw98, vyw100, ty_Integer) -> new_esEs17(vyw98, vyw100) new_lt20(vyw80, vyw83, app(app(app(ty_@3, cdc), cdd), cde)) -> new_lt16(vyw80, vyw83, cdc, cdd, cde) new_not(False) -> True new_compare5(vyw30, vyw400, app(app(ty_Either, bdc), bdd)) -> new_compare8(vyw30, vyw400, bdc, bdd) new_ltEs24(vyw441, vyw451, ty_Double) -> new_ltEs11(vyw441, vyw451) new_ltEs22(vyw82, vyw85, ty_Bool) -> new_ltEs10(vyw82, vyw85) new_esEs36(vyw300, vyw4000, app(app(ty_@2, fef), feg)) -> new_esEs16(vyw300, vyw4000, fef, feg) new_ltEs23(vyw99, vyw101, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs15(vyw99, vyw101, cac, cad, cae) new_lt11(vyw3, vyw40) -> new_esEs27(new_compare10(vyw3, vyw40)) new_primCompAux0(vyw30, vyw400, vyw39, bdb) -> new_primCompAux00(vyw39, new_compare5(vyw30, vyw400, bdb)) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_Maybe, fgg)) -> new_esEs19(vyw300, vyw4000, fgg) new_lt8(vyw3, vyw40, eeh) -> new_esEs27(new_compare6(vyw3, vyw40, eeh)) new_compare0(:(vyw30, vyw31), [], bdb) -> GT new_esEs13(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, fab), fac), fad), egb) -> new_esEs22(vyw300, vyw4000, fab, fac, fad) new_primPlusNat0(Succ(vyw17800), Succ(vyw31000)) -> Succ(Succ(new_primPlusNat0(vyw17800, vyw31000))) new_esEs26(vyw300, vyw4000, app(app(ty_@2, dfd), dfe)) -> new_esEs16(vyw300, vyw4000, dfd, dfe) new_esEs30(vyw441, vyw451, ty_Float) -> new_esEs25(vyw441, vyw451) new_ltEs7(Left(vyw440), Left(vyw450), app(ty_Maybe, bc), bb) -> new_ltEs8(vyw440, vyw450, bc) new_esEs29(vyw300, vyw4000, ty_Float) -> new_esEs25(vyw300, vyw4000) new_esEs32(vyw81, vyw84, app(app(ty_Either, cfa), cfb)) -> new_esEs13(vyw81, vyw84, cfa, cfb) new_lt23(vyw440, vyw450, ty_@0) -> new_lt9(vyw440, vyw450) new_esEs19(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Double) -> new_esEs24(vyw301, vyw4001) new_lt22(vyw98, vyw100, ty_Float) -> new_lt17(vyw98, vyw100) new_esEs38(vyw440, vyw450, app(ty_Maybe, gd)) -> new_esEs19(vyw440, vyw450, gd) new_ltEs8(Just(vyw440), Just(vyw450), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs15(vyw440, vyw450, eb, ec, ed) new_esEs4(vyw30, vyw400, ty_Double) -> new_esEs24(vyw30, vyw400) new_esEs38(vyw440, vyw450, app(app(ty_@2, ge), gf)) -> new_esEs16(vyw440, vyw450, ge, gf) new_esEs9(vyw32, vyw402, ty_Bool) -> new_esEs14(vyw32, vyw402) new_esEs36(vyw300, vyw4000, app(app(app(ty_@3, ffb), ffc), ffd)) -> new_esEs22(vyw300, vyw4000, ffb, ffc, ffd) new_esEs9(vyw32, vyw402, app(app(app(ty_@3, chb), chc), chd)) -> new_esEs22(vyw32, vyw402, chb, chc, chd) new_esEs19(Just(vyw300), Just(vyw4000), app(ty_Ratio, fgb)) -> new_esEs12(vyw300, vyw4000, fgb) new_esEs37(vyw98, vyw100, ty_Ordering) -> new_esEs18(vyw98, vyw100) new_ltEs9(LT, EQ) -> True new_esEs35(vyw301, vyw4001, ty_Integer) -> new_esEs17(vyw301, vyw4001) new_sr0(vyw400, vyw31) -> new_primMulInt(vyw400, vyw31) new_ltEs22(vyw82, vyw85, ty_@0) -> new_ltEs6(vyw82, vyw85) new_esEs38(vyw440, vyw450, app(ty_Ratio, ffh)) -> new_esEs12(vyw440, vyw450, ffh) new_compare10(EQ, LT) -> GT new_esEs8(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_Double) -> new_esEs24(vyw300, vyw4000) new_lt22(vyw98, vyw100, app(app(ty_@2, cbc), cbd)) -> new_lt15(vyw98, vyw100, cbc, cbd) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_esEs11(vyw30, vyw400, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs22(vyw30, vyw400, dbf, dbg, dbh) new_ltEs13(vyw44, vyw45) -> new_fsEs(new_compare14(vyw44, vyw45)) new_compare17(Float(vyw30, Pos(vyw310)), Float(vyw400, Neg(vyw4010))) -> new_compare18(new_sr0(vyw30, Pos(vyw4010)), new_sr0(Neg(vyw310), vyw400)) new_compare17(Float(vyw30, Neg(vyw310)), Float(vyw400, Pos(vyw4010))) -> new_compare18(new_sr0(vyw30, Neg(vyw4010)), new_sr0(Pos(vyw310), vyw400)) new_compare0(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_primCompAux0(vyw30, vyw400, new_compare0(vyw31, vyw401, bdb), bdb) new_ltEs22(vyw82, vyw85, ty_Double) -> new_ltEs11(vyw82, vyw85) new_esEs36(vyw300, vyw4000, app(ty_Maybe, feh)) -> new_esEs19(vyw300, vyw4000, feh) new_esEs7(vyw31, vyw401, app(app(ty_Either, ddg), ddh)) -> new_esEs13(vyw31, vyw401, ddg, ddh) new_esEs13(Right(vyw300), Right(vyw4000), ega, app(app(ty_Either, faf), fag)) -> new_esEs13(vyw300, vyw4000, faf, fag) new_compare111(vyw135, vyw136, True, ehb) -> LT new_esEs34(vyw302, vyw4002, app(app(ty_Either, fbh), fca)) -> new_esEs13(vyw302, vyw4002, fbh, fca) new_esEs32(vyw81, vyw84, ty_Float) -> new_esEs25(vyw81, vyw84) new_esEs13(Left(vyw300), Left(vyw4000), ty_Bool, egb) -> new_esEs14(vyw300, vyw4000) new_compare5(vyw30, vyw400, ty_Double) -> new_compare12(vyw30, vyw400) new_ltEs7(Right(vyw440), Right(vyw450), cb, app(app(ty_@2, cf), cg)) -> new_ltEs14(vyw440, vyw450, cf, cg) new_ltEs9(LT, GT) -> True new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Integer) -> new_ltEs13(vyw440, vyw450) new_ltEs5(vyw44, vyw45, ddd) -> new_fsEs(new_compare6(vyw44, vyw45, ddd)) new_esEs13(Right(vyw300), Right(vyw4000), ega, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs5(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs23(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs11(vyw30, vyw400, app(app(ty_Either, dah), dba)) -> new_esEs13(vyw30, vyw400, dah, dba) new_esEs8(vyw30, vyw400, ty_Int) -> new_esEs23(vyw30, vyw400) new_esEs35(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs11(vyw44, vyw45) -> new_fsEs(new_compare12(vyw44, vyw45)) new_esEs11(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_esEs26(vyw300, vyw4000, ty_Double) -> new_esEs24(vyw300, vyw4000) new_lt20(vyw80, vyw83, app(ty_[], cdf)) -> new_lt18(vyw80, vyw83, cdf) new_esEs19(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs17(vyw300, vyw4000) new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Int) -> new_ltEs18(vyw440, vyw450) new_esEs34(vyw302, vyw4002, ty_Char) -> new_esEs15(vyw302, vyw4002) new_esEs6(vyw30, vyw400, ty_Float) -> new_esEs25(vyw30, vyw400) new_esEs34(vyw302, vyw4002, app(app(app(ty_@3, fcf), fcg), fch)) -> new_esEs22(vyw302, vyw4002, fcf, fcg, fch) new_esEs8(vyw30, vyw400, app(app(ty_Either, dcb), dcc)) -> new_esEs13(vyw30, vyw400, dcb, dcc) new_compare5(vyw30, vyw400, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare16(vyw30, vyw400, bdh, bea, beb) new_ltEs23(vyw99, vyw101, ty_Ordering) -> new_ltEs9(vyw99, vyw101) new_primCmpNat0(Succ(vyw300), Succ(vyw4000)) -> new_primCmpNat0(vyw300, vyw4000) new_compare29(vyw58, vyw59, True, ebh) -> EQ new_compare11(True, False) -> GT new_esEs13(Left(vyw300), Left(vyw4000), ty_Float, egb) -> new_esEs25(vyw300, vyw4000) new_esEs9(vyw32, vyw402, ty_Char) -> new_esEs15(vyw32, vyw402) new_ltEs8(Nothing, Nothing, dde) -> True new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Double) -> new_ltEs11(vyw440, vyw450) new_ltEs8(Just(vyw440), Nothing, dde) -> False new_esEs9(vyw32, vyw402, app(app(ty_Either, cgd), cge)) -> new_esEs13(vyw32, vyw402, cgd, cge) new_lt23(vyw440, vyw450, ty_Float) -> new_lt17(vyw440, vyw450) new_esEs7(vyw31, vyw401, ty_Int) -> new_esEs23(vyw31, vyw401) new_ltEs7(Right(vyw440), Right(vyw450), cb, app(ty_[], dd)) -> new_ltEs17(vyw440, vyw450, dd) new_compare11(False, False) -> EQ new_esEs10(vyw31, vyw401, ty_Char) -> new_esEs15(vyw31, vyw401) new_ltEs19(vyw51, vyw52, ty_Float) -> new_ltEs16(vyw51, vyw52) new_ltEs4(vyw44, vyw45, ty_Float) -> new_ltEs16(vyw44, vyw45) new_esEs19(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs33(vyw80, vyw83, ty_Char) -> new_esEs15(vyw80, vyw83) new_esEs32(vyw81, vyw84, app(ty_[], cga)) -> new_esEs20(vyw81, vyw84, cga) new_esEs35(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs26(vyw300, vyw4000, app(ty_Ratio, dfa)) -> new_esEs12(vyw300, vyw4000, dfa) new_esEs36(vyw300, vyw4000, app(ty_Ratio, fec)) -> new_esEs12(vyw300, vyw4000, fec) new_esEs13(Left(vyw300), Left(vyw4000), ty_Int, egb) -> new_esEs23(vyw300, vyw4000) new_esEs7(vyw31, vyw401, ty_Float) -> new_esEs25(vyw31, vyw401) new_ltEs9(EQ, LT) -> False new_ltEs15(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, bah) -> new_pePe(new_lt7(vyw440, vyw450, hc), new_asAs(new_esEs31(vyw440, vyw450, hc), new_pePe(new_lt6(vyw441, vyw451, hd), new_asAs(new_esEs30(vyw441, vyw451, hd), new_ltEs20(vyw442, vyw452, bah))))) new_ltEs23(vyw99, vyw101, ty_Integer) -> new_ltEs13(vyw99, vyw101) new_compare114(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, False, vyw170, egg, egh, eha) -> new_compare115(vyw163, vyw164, vyw165, vyw166, vyw167, vyw168, vyw170, egg, egh, eha) new_ltEs12(vyw44, vyw45) -> new_fsEs(new_compare13(vyw44, vyw45)) new_ltEs24(vyw441, vyw451, ty_@0) -> new_ltEs6(vyw441, vyw451) new_ltEs24(vyw441, vyw451, ty_Ordering) -> new_ltEs9(vyw441, vyw451) new_esEs26(vyw300, vyw4000, app(ty_Maybe, dff)) -> new_esEs19(vyw300, vyw4000, dff) new_compare110(vyw128, vyw129, False, eff, efg) -> GT new_compare6(:%(vyw30, vyw31), :%(vyw400, vyw401), ty_Integer) -> new_compare14(new_sr(vyw30, vyw401), new_sr(vyw400, vyw31)) new_lt20(vyw80, vyw83, ty_Char) -> new_lt5(vyw80, vyw83) new_esEs37(vyw98, vyw100, app(ty_Ratio, fff)) -> new_esEs12(vyw98, vyw100, fff) new_esEs33(vyw80, vyw83, app(ty_[], cdf)) -> new_esEs20(vyw80, vyw83, cdf) new_primEqNat0(Zero, Zero) -> True new_ltEs7(Right(vyw440), Right(vyw450), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs15(vyw440, vyw450, da, db, dc) new_lt20(vyw80, vyw83, app(app(ty_Either, ccd), cce)) -> new_lt4(vyw80, vyw83, ccd, cce) new_ltEs19(vyw51, vyw52, ty_Bool) -> new_ltEs10(vyw51, vyw52) new_esEs15(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_ltEs23(vyw99, vyw101, app(app(ty_Either, bhf), bhg)) -> new_ltEs7(vyw99, vyw101, bhf, bhg) new_esEs37(vyw98, vyw100, app(app(ty_@2, cbc), cbd)) -> new_esEs16(vyw98, vyw100, cbc, cbd) new_ltEs22(vyw82, vyw85, ty_Char) -> new_ltEs12(vyw82, vyw85) new_ltEs24(vyw441, vyw451, ty_Integer) -> new_ltEs13(vyw441, vyw451) new_esEs36(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs20(:(vyw300, vyw301), :(vyw4000, vyw4001), deh) -> new_asAs(new_esEs26(vyw300, vyw4000, deh), new_esEs20(vyw301, vyw4001, deh)) new_esEs32(vyw81, vyw84, ty_Bool) -> new_esEs14(vyw81, vyw84) new_esEs10(vyw31, vyw401, app(ty_[], dac)) -> new_esEs20(vyw31, vyw401, dac) new_compare9(Nothing, Nothing, bga) -> EQ new_esEs31(vyw440, vyw450, ty_Float) -> new_esEs25(vyw440, vyw450) new_asAs(False, vyw116) -> False new_ltEs23(vyw99, vyw101, ty_@0) -> new_ltEs6(vyw99, vyw101) new_compare7(@0, @0) -> EQ new_esEs19(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs18(vyw300, vyw4000) new_ltEs8(Just(vyw440), Just(vyw450), app(ty_Ratio, fga)) -> new_ltEs5(vyw440, vyw450, fga) new_compare28(vyw51, vyw52, True, beg, ebc) -> EQ new_esEs10(vyw31, vyw401, app(app(ty_Either, chf), chg)) -> new_esEs13(vyw31, vyw401, chf, chg) new_esEs33(vyw80, vyw83, app(app(ty_Either, ccd), cce)) -> new_esEs13(vyw80, vyw83, ccd, cce) new_ltEs20(vyw442, vyw452, ty_Bool) -> new_ltEs10(vyw442, vyw452) new_ltEs8(Just(vyw440), Just(vyw450), app(app(ty_@2, dh), ea)) -> new_ltEs14(vyw440, vyw450, dh, ea) new_esEs37(vyw98, vyw100, app(ty_Maybe, cbb)) -> new_esEs19(vyw98, vyw100, cbb) new_ltEs7(Right(vyw440), Right(vyw450), cb, app(ty_Ratio, ebb)) -> new_ltEs5(vyw440, vyw450, ebb) new_esEs32(vyw81, vyw84, ty_Int) -> new_esEs23(vyw81, vyw84) new_esEs36(vyw300, vyw4000, ty_Integer) -> new_esEs17(vyw300, vyw4000) new_esEs19(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, fha), fhb), fhc)) -> new_esEs22(vyw300, vyw4000, fha, fhb, fhc) new_esEs8(vyw30, vyw400, ty_Bool) -> new_esEs14(vyw30, vyw400) new_esEs35(vyw301, vyw4001, app(app(app(ty_@3, fdh), fea), feb)) -> new_esEs22(vyw301, vyw4001, fdh, fea, feb) new_ltEs9(EQ, EQ) -> True new_esEs27(EQ) -> False new_ltEs7(Right(vyw440), Right(vyw450), cb, ty_Char) -> new_ltEs12(vyw440, vyw450) new_compare29(vyw58, vyw59, False, ebh) -> new_compare111(vyw58, vyw59, new_ltEs21(vyw58, vyw59, ebh), ebh) new_compare14(Integer(vyw30), Integer(vyw400)) -> new_primCmpInt(vyw30, vyw400) The set Q consists of the following terms: new_ltEs19(x0, x1, ty_@0) new_compare115(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs38(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Double) new_pePe(False, x0) new_esEs26(x0, x1, ty_Bool) new_esEs8(x0, x1, ty_Int) new_esEs37(x0, x1, app(ty_Ratio, x2)) new_compare6(:%(x0, x1), :%(x2, x3), ty_Int) new_compare15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs20([], :(x0, x1), x2) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Char) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs8(x0, x1, ty_Char) new_esEs23(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_lt20(x0, x1, ty_Integer) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs7(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs23(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, app(ty_[], x2)) new_esEs35(x0, x1, ty_Float) new_ltEs23(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs19(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), x1) new_ltEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Double) new_lt22(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs36(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs19(Just(x0), Just(x1), app(ty_[], x2)) new_esEs19(Nothing, Nothing, x0) new_lt7(x0, x1, app(ty_Ratio, x2)) new_ltEs4(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, ty_Int) new_lt23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(x0, x1, ty_Int) new_lt21(x0, x1, ty_Integer) new_compare5(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(ty_[], x2)) new_compare9(Just(x0), Nothing, x1) new_esEs14(True, True) new_esEs33(x0, x1, ty_Float) new_ltEs19(x0, x1, ty_Bool) new_esEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_ltEs9(EQ, EQ) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, ty_Float) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs32(x0, x1, app(ty_[], x2)) new_compare10(LT, EQ) new_compare10(EQ, LT) new_esEs25(Float(x0, x1), Float(x2, x3)) new_lt20(x0, x1, ty_@0) new_ltEs4(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(GT, GT) new_primCmpNat0(Succ(x0), Zero) new_esEs8(x0, x1, ty_Ordering) new_esEs4(x0, x1, ty_Char) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, x2) new_esEs6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs37(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Char) new_esEs4(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Left(x0), Left(x1), ty_Double, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs5(x0, x1, app(ty_Maybe, x2)) new_esEs4(x0, x1, ty_Bool) new_esEs26(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs19(Just(x0), Just(x1), ty_Float) new_compare112(x0, x1, x2, x3, False, x4, x5, x6) new_compare9(Just(x0), Just(x1), x2) new_esEs27(GT) new_ltEs22(x0, x1, ty_Float) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs36(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, ty_Float) new_esEs6(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs6(x0, x1, ty_Double) new_esEs14(False, True) new_esEs14(True, False) new_compare5(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs7(x0, x1, ty_Integer) new_compare19(x0, x1, False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs4(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Ordering) new_esEs37(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Float) new_esEs13(Right(x0), Right(x1), x2, ty_Integer) new_ltEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_[], x2)) new_esEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs6(x0, x1, ty_Bool) new_compare0([], :(x0, x1), x2) new_esEs28(x0, x1, app(ty_[], x2)) new_lt15(x0, x1, x2, x3) new_esEs4(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, x2, x3, True, x4, x5, x6) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs11(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Char) new_ltEs10(False, False) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs33(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20([], [], x0) new_esEs19(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Float) new_lt23(x0, x1, app(ty_Maybe, x2)) new_ltEs23(x0, x1, ty_Ordering) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_lt23(x0, x1, app(ty_[], x2)) new_compare17(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs37(x0, x1, app(app(ty_Either, x2), x3)) new_esEs38(x0, x1, ty_Int) new_esEs35(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare5(x0, x1, app(ty_Ratio, x2)) new_compare10(LT, LT) new_esEs13(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, False, x2) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Bool) new_lt23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, ty_Int) new_esEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs13(x0, x1) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt6(x0, x1, ty_Ordering) new_esEs35(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Nothing, Nothing, x0) new_esEs19(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, app(ty_[], x2)) new_esEs39(x0, x1, ty_Integer) new_compare0(:(x0, x1), [], x2) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs23(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs36(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, ty_@0) new_esEs37(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Float) new_esEs13(Left(x0), Left(x1), ty_Char, x2) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt11(x0, x1) new_primEqNat0(Succ(x0), Zero) new_esEs20(:(x0, x1), [], x2) new_esEs17(Integer(x0), Integer(x1)) new_esEs22(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs17(x0, x1, x2) new_esEs35(x0, x1, ty_@0) new_compare6(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) new_pePe(True, x0) new_esEs9(x0, x1, ty_Float) new_lt12(x0, x1) new_ltEs22(x0, x1, ty_Integer) new_primCompAux00(x0, LT) new_ltEs9(GT, GT) new_lt22(x0, x1, ty_Bool) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs36(x0, x1, ty_Char) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Float) new_esEs37(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt21(x0, x1, ty_Char) new_compare9(Nothing, Nothing, x0) new_esEs35(x0, x1, ty_Bool) new_primCompAux0(x0, x1, x2, x3) new_lt5(x0, x1) new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs13(Left(x0), Left(x1), ty_Int, x2) new_esEs37(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs9(LT, EQ) new_ltEs9(EQ, LT) new_primPlusNat0(Zero, Succ(x0)) new_primMulInt(Pos(x0), Pos(x1)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_lt23(x0, x1, ty_Ordering) new_esEs11(x0, x1, ty_Integer) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_compare0(:(x0, x1), :(x2, x3), x4) new_lt22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(x0, x1, ty_Integer) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Double) new_esEs13(Right(x0), Right(x1), x2, ty_Float) new_lt21(x0, x1, ty_Int) new_lt17(x0, x1) new_lt20(x0, x1, ty_Double) new_esEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs7(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs4(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Double) new_ltEs11(x0, x1) new_ltEs21(x0, x1, ty_Bool) new_esEs36(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Double) new_esEs36(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs23(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, ty_Double) new_ltEs12(x0, x1) new_esEs33(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs9(x0, x1, ty_Int) new_esEs27(EQ) new_ltEs4(x0, x1, ty_Char) new_compare25(x0, x1, x2, x3, x4, x5, False, x6, x7, x8) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Ordering) new_compare5(x0, x1, app(ty_[], x2)) new_esEs8(x0, x1, ty_@0) new_lt16(x0, x1, x2, x3, x4) new_compare28(x0, x1, True, x2, x3) new_ltEs22(x0, x1, ty_Bool) new_lt6(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, True, x2) new_esEs15(Char(x0), Char(x1)) new_esEs18(GT, GT) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_compare111(x0, x1, True, x2) new_esEs5(x0, x1, ty_Integer) new_esEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(LT, EQ) new_esEs18(EQ, LT) new_esEs33(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Float) new_lt20(x0, x1, ty_Ordering) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1) new_lt21(x0, x1, ty_Ordering) new_esEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_lt23(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Char) new_esEs39(x0, x1, ty_Int) new_esEs24(Double(x0, x1), Double(x2, x3)) new_ltEs8(Just(x0), Just(x1), ty_Int) new_primCmpInt(Neg(Zero), Neg(Zero)) new_lt7(x0, x1, ty_Integer) new_esEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt21(x0, x1, ty_Bool) new_lt22(x0, x1, ty_Char) new_compare11(False, True) new_esEs13(Right(x0), Right(x1), x2, ty_Int) new_compare11(True, False) new_esEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs36(x0, x1, ty_Float) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs37(x0, x1, ty_Integer) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Char) new_ltEs19(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Int) new_ltEs14(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs22(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_@0) new_ltEs23(x0, x1, ty_Int) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_lt22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs34(x0, x1, app(ty_Maybe, x2)) new_esEs11(x0, x1, ty_Bool) new_esEs35(x0, x1, ty_Integer) new_esEs34(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_lt7(x0, x1, ty_Char) new_esEs7(x0, x1, ty_Bool) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs9(LT, LT) new_lt10(x0, x1, x2) new_esEs7(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_Maybe, x2)) new_ltEs8(Just(x0), Just(x1), ty_Char) new_compare13(Char(x0), Char(x1)) new_lt7(x0, x1, ty_Int) new_esEs35(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_lt23(x0, x1, ty_@0) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs8(x0, x1, ty_Double) new_esEs13(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(x0, x1, ty_Char) new_compare17(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_asAs(False, x0) new_esEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs18(EQ, EQ) new_lt6(x0, x1, ty_@0) new_esEs13(Right(x0), Right(x1), x2, ty_Char) new_ltEs24(x0, x1, ty_@0) new_compare5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs6(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs10(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs4(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Just(x1), ty_Float) new_compare113(x0, x1, x2, x3, False, x4, x5) new_compare19(x0, x1, True, x2, x3) new_esEs36(x0, x1, app(app(ty_Either, x2), x3)) new_esEs35(x0, x1, ty_Ordering) new_compare110(x0, x1, False, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare10(EQ, EQ) new_compare14(Integer(x0), Integer(x1)) new_esEs13(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs23(x0, x1, app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_@2, x2), x3)) new_esEs13(Left(x0), Left(x1), ty_Integer, x2) new_ltEs22(x0, x1, ty_Ordering) new_esEs7(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs40(x0, x1, ty_Integer) new_ltEs21(x0, x1, ty_Integer) new_ltEs24(x0, x1, ty_Double) new_lt7(x0, x1, ty_Bool) new_esEs38(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Int) new_ltEs23(x0, x1, ty_Char) new_esEs5(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Ordering) new_esEs7(x0, x1, ty_Int) new_esEs37(x0, x1, ty_Ordering) new_ltEs8(Just(x0), Nothing, x1) new_compare114(x0, x1, x2, x3, x4, x5, False, x6, x7, x8, x9) new_ltEs4(x0, x1, ty_Integer) new_esEs5(x0, x1, ty_Char) new_esEs19(Just(x0), Nothing, x1) new_esEs9(x0, x1, ty_@0) new_esEs29(x0, x1, ty_@0) new_esEs34(x0, x1, ty_Int) new_esEs33(x0, x1, ty_Ordering) new_lt22(x0, x1, ty_Float) new_lt7(x0, x1, ty_@0) new_esEs31(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs35(x0, x1, ty_Double) new_esEs11(x0, x1, ty_Char) new_primMulNat0(Zero, Succ(x0)) new_esEs38(x0, x1, ty_Float) new_lt23(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_@0) new_esEs35(x0, x1, app(app(ty_@2, x2), x3)) new_esEs33(x0, x1, ty_Int) new_ltEs23(x0, x1, app(ty_[], x2)) new_ltEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_lt23(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_@0) new_esEs9(x0, x1, ty_Bool) new_ltEs24(x0, x1, ty_Float) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Int) new_compare26(x0, x1, False, x2, x3) new_compare7(@0, @0) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs40(x0, x1, ty_Int) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs27(LT) new_lt23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_ltEs8(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs22(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_Char) new_lt23(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Char) new_ltEs8(Just(x0), Just(x1), ty_Bool) new_esEs34(x0, x1, ty_Ordering) new_compare27(x0, x1, x2, x3, True, x4, x5) new_esEs30(x0, x1, ty_Bool) new_ltEs8(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs4(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs10(True, False) new_ltEs10(False, True) new_lt22(x0, x1, app(ty_Maybe, x2)) new_compare10(GT, LT) new_compare10(LT, GT) new_esEs29(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_Double) new_esEs18(EQ, GT) new_esEs18(GT, EQ) new_esEs8(x0, x1, ty_Float) new_esEs28(x0, x1, ty_@0) new_ltEs4(x0, x1, ty_Double) new_ltEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_compare5(x0, x1, ty_Bool) new_ltEs18(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_Double) new_ltEs8(Nothing, Just(x0), x1) new_esEs5(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs30(x0, x1, ty_Char) new_esEs34(x0, x1, ty_Char) new_esEs7(x0, x1, app(ty_Ratio, x2)) new_esEs11(x0, x1, ty_Ordering) new_esEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primCompAux00(x0, EQ) new_compare9(Nothing, Just(x0), x1) new_lt6(x0, x1, ty_Bool) new_lt8(x0, x1, x2) new_esEs13(Left(x0), Left(x1), ty_Bool, x2) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Zero, Zero) new_asAs(True, x0) new_esEs11(x0, x1, ty_Int) new_compare11(True, True) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_@0) new_ltEs22(x0, x1, ty_@0) new_esEs19(Just(x0), Just(x1), ty_Bool) new_esEs36(x0, x1, ty_Ordering) new_not(True) new_esEs13(Left(x0), Left(x1), ty_@0, x2) new_esEs29(x0, x1, ty_Integer) new_esEs30(x0, x1, ty_Integer) new_ltEs16(x0, x1) new_primPlusNat0(Succ(x0), Succ(x1)) new_esEs10(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_Double) new_esEs32(x0, x1, ty_Bool) new_compare0([], [], x0) new_ltEs8(Just(x0), Just(x1), ty_Integer) new_ltEs22(x0, x1, app(ty_Maybe, x2)) new_esEs34(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Integer) new_esEs35(x0, x1, ty_Char) new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs19(Just(x0), Just(x1), ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs35(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Double) new_ltEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs36(x0, x1, ty_Double) new_ltEs22(x0, x1, ty_Double) new_ltEs4(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs6(x0, x1, ty_Float) new_compare5(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, x2) new_esEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs33(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_esEs33(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_@0) new_esEs37(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Ordering) new_esEs36(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Int) new_ltEs22(x0, x1, ty_Int) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt22(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_@0) new_compare26(x0, x1, True, x2, x3) new_lt20(x0, x1, app(ty_[], x2)) new_esEs19(Just(x0), Just(x1), ty_Char) new_esEs33(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, False, x2, x3) new_compare5(x0, x1, ty_Float) new_esEs18(LT, LT) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs35(x0, x1, ty_Int) new_ltEs8(Just(x0), Just(x1), ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_esEs13(Left(x0), Left(x1), ty_Float, x2) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs24(x0, x1, app(ty_[], x2)) new_esEs6(x0, x1, app(ty_Maybe, x2)) new_esEs33(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Float) new_lt23(x0, x1, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_fsEs(x0) new_esEs7(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(LT, GT) new_esEs18(GT, LT) new_esEs4(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_compare115(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs34(x0, x1, ty_Integer) new_esEs13(Left(x0), Right(x1), x2, x3) new_esEs13(Right(x0), Left(x1), x2, x3) new_esEs33(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs16(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_Int) new_esEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs38(x0, x1, ty_Bool) new_esEs8(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs8(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Float) new_compare110(x0, x1, True, x2, x3) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1, ty_@0) new_ltEs24(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1) new_ltEs24(x0, x1, ty_Bool) new_compare5(x0, x1, ty_Ordering) new_compare113(x0, x1, x2, x3, True, x4, x5) new_esEs9(x0, x1, ty_Ordering) new_compare5(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Double) new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs24(x0, x1, app(ty_Ratio, x2)) new_esEs37(x0, x1, ty_Double) new_esEs10(x0, x1, ty_Float) new_esEs6(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_ltEs22(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_ltEs19(x0, x1, ty_Double) new_esEs31(x0, x1, ty_Integer) new_lt22(x0, x1, ty_@0) new_ltEs8(Just(x0), Just(x1), ty_Double) new_esEs6(x0, x1, app(ty_Ratio, x2)) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_compare5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_compare17(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare17(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_esEs20(:(x0, x1), :(x2, x3), x4) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt6(x0, x1, ty_Char) new_compare5(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Ordering) new_esEs19(Just(x0), Just(x1), ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Char) new_ltEs24(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare8(Left(x0), Left(x1), x2, x3) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_esEs6(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare114(x0, x1, x2, x3, x4, x5, True, x6, x7, x8, x9) new_esEs36(x0, x1, ty_@0) new_esEs33(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs30(x0, x1, ty_Double) new_esEs37(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt4(x0, x1, x2, x3) new_esEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqNat0(Zero, Succ(x0)) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_lt23(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Double) new_esEs34(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs9(GT, EQ) new_ltEs9(EQ, GT) new_primEqNat0(Zero, Zero) new_esEs5(x0, x1, ty_@0) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Int) new_ltEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(x0, x1, ty_Double) new_esEs19(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(Nothing, Just(x0), x1) new_compare8(Right(x0), Left(x1), x2, x3) new_compare8(Left(x0), Right(x1), x2, x3) new_not(False) new_ltEs4(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(x0, x1, app(ty_Ratio, x2)) new_compare11(False, False) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_esEs11(x0, x1, ty_Double) new_esEs34(x0, x1, app(ty_Ratio, x2)) new_esEs38(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, ty_Bool) new_esEs33(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare111(x0, x1, False, x2) new_esEs5(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs14(False, False) new_esEs26(x0, x1, ty_Char) new_lt21(x0, x1, ty_Double) new_esEs38(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs34(x0, x1, ty_Bool) new_esEs19(Just(x0), Just(x1), ty_Ordering) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(GT, EQ) new_compare10(EQ, GT) new_esEs4(x0, x1, ty_@0) new_primCompAux00(x0, GT) new_ltEs8(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_compare8(Right(x0), Right(x1), x2, x3) new_compare25(x0, x1, x2, x3, x4, x5, True, x6, x7, x8) new_esEs28(x0, x1, ty_Float) new_compare27(x0, x1, x2, x3, False, x4, x5) new_esEs26(x0, x1, ty_Int) new_esEs8(x0, x1, ty_Bool) new_esEs13(Right(x0), Right(x1), x2, ty_Double) new_esEs36(x0, x1, app(ty_Maybe, x2)) new_ltEs6(x0, x1) new_ltEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Float) new_esEs7(x0, x1, ty_Double) new_esEs7(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt22(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primPlusNat0(Succ(x0), Zero) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs13(Right(x0), Right(x1), x2, ty_@0) new_esEs21(@0, @0) new_esEs32(x0, x1, ty_Integer) new_lt7(x0, x1, ty_Double) new_lt23(x0, x1, ty_Float) new_esEs38(x0, x1, ty_Integer) new_compare18(x0, x1) new_ltEs23(x0, x1, ty_Double) new_sr0(x0, x1) new_ltEs24(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Int) new_esEs38(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(Just(x0), Just(x1), app(ty_[], x2)) new_compare5(x0, x1, ty_Integer) new_esEs36(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(True, True) new_esEs10(x0, x1, ty_Char) new_lt22(x0, x1, app(app(ty_@2, x2), x3)) new_lt21(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Zero) new_esEs34(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, ty_Ordering) new_primPlusNat1(Zero, x0) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs24(x0, x1, ty_Char) new_primCmpNat0(Zero, Zero) new_esEs38(x0, x1, app(ty_Ratio, x2)) new_ltEs8(Just(x0), Just(x1), ty_@0) new_ltEs9(GT, LT) new_ltEs9(LT, GT) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 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_ltEs3(vyw44, vyw45, bda) -> new_compare(vyw44, vyw45, bda) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt2(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cca, ccb, ccc) -> new_compare24(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, cca), new_asAs(new_esEs10(vyw31, vyw401, ccb), new_esEs9(vyw32, vyw402, ccc))), cca, ccb, ccc) 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_ltEs0(Just(vyw440), Just(vyw450), app(app(ty_Either, de), df)) -> new_ltEs(vyw440, vyw450, de, df) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(ty_Either, eg), eh)) -> new_ltEs(vyw441, vyw451, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(ty_Either, he), hf)) -> new_ltEs(vyw442, vyw452, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(Just(vyw440), Just(vyw450), app(app(ty_@2, dh), ea)) -> new_ltEs1(vyw440, vyw450, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(ty_@2, fb), fc)) -> new_ltEs1(vyw441, vyw451, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(ty_@2, hh), baa)) -> new_ltEs1(vyw442, vyw452, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_lt1(@2(vyw30, vyw31), @2(vyw400, vyw401), bhc, bhd) -> new_compare23(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bhc), new_esEs7(vyw31, vyw401, bhd)), bhc, bhd) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare3(@2(vyw30, vyw31), @2(vyw400, vyw401), bhc, bhd) -> new_compare23(vyw30, vyw31, vyw400, vyw401, new_asAs(new_esEs8(vyw30, vyw400, bhc), new_esEs7(vyw31, vyw401, bhd)), bhc, bhd) The graph contains the following edges 1 > 1, 1 > 2, 2 > 3, 2 > 4, 3 >= 6, 4 >= 7 *new_compare4(@3(vyw30, vyw31, vyw32), @3(vyw400, vyw401, vyw402), cca, ccb, ccc) -> new_compare24(vyw30, vyw31, vyw32, vyw400, vyw401, vyw402, new_asAs(new_esEs11(vyw30, vyw400, cca), new_asAs(new_esEs10(vyw31, vyw401, ccb), new_esEs9(vyw32, vyw402, ccc))), cca, ccb, ccc) 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_lt(Left(vyw30), Left(vyw400), bed, bee) -> new_compare20(vyw30, vyw400, new_esEs4(vyw30, vyw400, bed), bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare1(Left(vyw30), Left(vyw400), bed, bee) -> new_compare20(vyw30, vyw400, new_esEs4(vyw30, vyw400, bed), bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_lt(Right(vyw30), Right(vyw400), bed, bee) -> new_compare21(vyw30, vyw400, new_esEs5(vyw30, vyw400, bee), bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_compare1(Right(vyw30), Right(vyw400), bed, bee) -> new_compare21(vyw30, vyw400, new_esEs5(vyw30, vyw400, bee), bed, bee) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4, 4 >= 5 *new_ltEs0(Just(vyw440), Just(vyw450), app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs2(vyw440, vyw450, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(app(app(ty_@3, fd), ff), fg)) -> new_ltEs2(vyw441, vyw451, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs2(vyw442, vyw452, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(Just(vyw30), Just(vyw400), bga) -> new_compare22(vyw30, vyw400, new_esEs6(vyw30, vyw400, bga), bga) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt0(Just(vyw30), Just(vyw400), bga) -> new_compare22(vyw30, vyw400, new_esEs6(vyw30, vyw400, bga), bga) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_primCompAux(vyw30, vyw400, new_compare0(vyw31, vyw401, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_primCompAux(vyw30, vyw400, new_compare0(vyw31, vyw401, bdb), bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_compare(vyw31, vyw401, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(ty_Either, bhf), bhg)) -> new_ltEs(vyw99, vyw101, bhf, bhg) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(ty_@2, caa), cab)) -> new_ltEs1(vyw99, vyw101, caa, cab) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(app(app(ty_@3, cac), cad), cae)) -> new_ltEs2(vyw99, vyw101, cac, cad, cae) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3, 7 > 4, 7 > 5 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_@2, bdf), bdg)) -> new_compare3(vyw30, vyw400, bdf, bdg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs0(Just(vyw440), Just(vyw450), app(ty_Maybe, dg)) -> new_ltEs0(vyw440, vyw450, dg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Just(vyw440), Just(vyw450), app(ty_[], ee)) -> new_ltEs3(vyw440, vyw450, ee) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(ty_Maybe, fa)) -> new_ltEs0(vyw441, vyw451, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(ty_Maybe, hg)) -> new_ltEs0(vyw442, vyw452, hg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(ty_Maybe, bhh)) -> new_ltEs0(vyw99, vyw101, bhh) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(app(ty_Either, bdc), bdd)) -> new_compare1(vyw30, vyw400, bdc, bdd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(ty_[], hb), gc) -> new_lt3(vyw440, vyw450, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(ty_[], cbh), cba) -> new_lt3(vyw98, vyw100, cbh) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_compare(:(vyw30, vyw31), :(vyw400, vyw401), bdb) -> new_compare(vyw31, vyw401, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(vyw51, vyw52, False, beg, app(app(ty_Either, beh), bfa)) -> new_ltEs(vyw51, vyw52, beh, bfa) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(ty_Either, ga), gb), gc) -> new_lt(vyw440, vyw450, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(vyw51, vyw52, False, beg, app(app(ty_@2, bfc), bfd)) -> new_ltEs1(vyw51, vyw52, bfc, bfd) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4 *new_compare21(vyw51, vyw52, False, beg, app(app(app(ty_@3, bfe), bff), bfg)) -> new_ltEs2(vyw51, vyw52, bfe, bff, bfg) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(ty_Either, cag), cah), cba) -> new_lt(vyw98, vyw100, cag, cah) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare21(vyw51, vyw52, False, beg, app(ty_Maybe, bfb)) -> new_ltEs0(vyw51, vyw52, bfb) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_compare21(vyw51, vyw52, False, beg, app(ty_[], bfh)) -> new_ltEs3(vyw51, vyw52, bfh) The graph contains the following edges 1 >= 1, 2 >= 2, 5 > 3 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), ef, app(ty_[], fh)) -> new_ltEs3(vyw441, vyw451, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, hd, app(ty_[], bae)) -> new_ltEs3(vyw442, vyw452, bae) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, bhe, app(ty_[], caf)) -> new_ltEs3(vyw99, vyw101, caf) The graph contains the following edges 2 >= 1, 4 >= 2, 7 > 3 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(ty_@2, ge), gf), gc) -> new_lt1(vyw440, vyw450, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(ty_@2, cbc), cbd), cba) -> new_lt1(vyw98, vyw100, cbc, cbd) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4 *new_compare22(vyw58, vyw59, False, app(app(ty_Either, bgb), bgc)) -> new_ltEs(vyw58, vyw59, bgb, bgc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(ty_Either, cdh), cea)) -> new_ltEs(vyw82, vyw85, cdh, cea) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vyw58, vyw59, False, app(app(ty_@2, bge), bgf)) -> new_ltEs1(vyw58, vyw59, bge, bgf) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(ty_@2, cec), ced)) -> new_ltEs1(vyw82, vyw85, cec, ced) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4 *new_compare22(vyw58, vyw59, False, app(app(app(ty_@3, bgg), bgh), bha)) -> new_ltEs2(vyw58, vyw59, bgg, bgh, bha) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs2(vyw82, vyw85, cee, cef, ceg) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3, 10 > 4, 10 > 5 *new_compare22(vyw58, vyw59, False, app(ty_Maybe, bgd)) -> new_ltEs0(vyw58, vyw59, bgd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(ty_Maybe, ceb)) -> new_ltEs0(vyw82, vyw85, ceb) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_compare22(vyw58, vyw59, False, app(ty_[], bhb)) -> new_ltEs3(vyw58, vyw59, bhb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, ccf, app(ty_[], ceh)) -> new_ltEs3(vyw82, vyw85, ceh) The graph contains the following edges 3 >= 1, 6 >= 2, 10 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_Maybe, bde)) -> new_compare2(vyw30, vyw400, bde) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare20(vyw44, vyw45, False, app(ty_[], bda), bef) -> new_compare(vyw44, vyw45, bda) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(ty_[], bec)) -> new_compare(vyw30, vyw400, bec) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw30, vyw400, vyw39, app(app(app(ty_@3, bdh), bea), beb)) -> new_compare4(vyw30, vyw400, bdh, bea, beb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(app(app(ty_@3, gg), gh), ha), gc) -> new_lt2(vyw440, vyw450, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@2(vyw440, vyw441), @2(vyw450, vyw451), app(ty_Maybe, gd), gc) -> new_lt0(vyw440, vyw450, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(app(app(ty_@3, cbe), cbf), cbg), cba) -> new_lt2(vyw98, vyw100, cbe, cbf, cbg) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3, 6 > 4, 6 > 5 *new_compare23(vyw98, vyw99, vyw100, vyw101, False, app(ty_Maybe, cbb), cba) -> new_lt0(vyw98, vyw100, cbb) The graph contains the following edges 1 >= 1, 3 >= 2, 6 > 3 *new_ltEs(Left(vyw440), Left(vyw450), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw440, vyw450, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw440, vyw450, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bef) -> new_ltEs(vyw440, vyw450, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bef) -> new_ltEs(vyw440, vyw450, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(ty_Either, eg), eh)), bef) -> new_ltEs(vyw441, vyw451, eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(ty_Either, he), hf)), bef) -> new_ltEs(vyw442, vyw452, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(ty_Either, de), df)), bef) -> new_ltEs(vyw440, vyw450, de, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(ty_[], bbg), bah) -> new_lt3(vyw441, vyw451, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(ty_[], bch), hd, bah) -> new_lt3(vyw440, vyw450, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(ty_Either, bbh), bca), hd, bah) -> new_lt(vyw440, vyw450, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(ty_Either, baf), bag), bah) -> new_lt(vyw441, vyw451, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(ty_@2, bcc), bcd), hd, bah) -> new_lt1(vyw440, vyw450, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(ty_@2, bbb), bbc), bah) -> new_lt1(vyw441, vyw451, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(app(app(ty_@3, bce), bcf), bcg), hd, bah) -> new_lt2(vyw440, vyw450, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(app(app(ty_@3, bbd), bbe), bbf), bah) -> new_lt2(vyw441, vyw451, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), hc, app(ty_Maybe, bba), bah) -> new_lt0(vyw441, vyw451, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), app(ty_Maybe, bcb), hd, bah) -> new_lt0(vyw440, vyw450, bcb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(ty_@2, cf), cg)) -> new_ltEs1(vyw440, vyw450, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Left(vyw440), Left(vyw450), app(app(ty_@2, bd), be), bb) -> new_ltEs1(vyw440, vyw450, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Left(vyw440), Left(vyw450), app(app(app(ty_@3, bf), bg), bh), bb) -> new_ltEs2(vyw440, vyw450, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw440), Right(vyw450), cb, app(app(app(ty_@3, da), db), dc)) -> new_ltEs2(vyw440, vyw450, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vyw440), Left(vyw450), app(ty_Maybe, bc), bb) -> new_ltEs0(vyw440, vyw450, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw440), Right(vyw450), cb, app(ty_Maybe, ce)) -> new_ltEs0(vyw440, vyw450, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw440), Left(vyw450), app(ty_[], ca), bb) -> new_ltEs3(vyw440, vyw450, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw440), Right(vyw450), cb, app(ty_[], dd)) -> new_ltEs3(vyw440, vyw450, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(ty_@2, fb), fc)), bef) -> new_ltEs1(vyw441, vyw451, fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(ty_@2, dh), ea)), bef) -> new_ltEs1(vyw440, vyw450, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(ty_@2, hh), baa)), bef) -> new_ltEs1(vyw442, vyw452, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(ty_@2, cf), cg)), bef) -> new_ltEs1(vyw440, vyw450, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(ty_@2, bd), be)), bb), bef) -> new_ltEs1(vyw440, vyw450, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(app(app(ty_@3, fd), ff), fg)), bef) -> new_ltEs2(vyw441, vyw451, fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(app(app(ty_@3, bab), bac), bad)), bef) -> new_ltEs2(vyw442, vyw452, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(app(app(ty_@3, bf), bg), bh)), bb), bef) -> new_ltEs2(vyw440, vyw450, bf, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(app(app(ty_@3, eb), ec), ed)), bef) -> new_ltEs2(vyw440, vyw450, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(app(app(ty_@3, da), db), dc)), bef) -> new_ltEs2(vyw440, vyw450, da, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(ty_Maybe, bc)), bb), bef) -> new_ltEs0(vyw440, vyw450, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(ty_Maybe, dg)), bef) -> new_ltEs0(vyw440, vyw450, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(ty_Maybe, ce)), bef) -> new_ltEs0(vyw440, vyw450, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(ty_Maybe, fa)), bef) -> new_ltEs0(vyw441, vyw451, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(ty_Maybe, hg)), bef) -> new_ltEs0(vyw442, vyw452, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(ty_[], bch)), hd), bah), bef) -> new_lt3(vyw440, vyw450, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(ty_[], bbg)), bah), bef) -> new_lt3(vyw441, vyw451, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(ty_[], hb)), gc), bef) -> new_lt3(vyw440, vyw450, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(ty_Either, ga), gb)), gc), bef) -> new_lt(vyw440, vyw450, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(ty_Either, bbh), bca)), hd), bah), bef) -> new_lt(vyw440, vyw450, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(ty_Either, baf), bag)), bah), bef) -> new_lt(vyw441, vyw451, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(Just(vyw440), Just(vyw450), False, app(ty_Maybe, app(ty_[], ee)), bef) -> new_ltEs3(vyw440, vyw450, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Left(vyw440), Left(vyw450), False, app(app(ty_Either, app(ty_[], ca)), bb), bef) -> new_ltEs3(vyw440, vyw450, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, ef), app(ty_[], fh)), bef) -> new_ltEs3(vyw441, vyw451, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), hd), app(ty_[], bae)), bef) -> new_ltEs3(vyw442, vyw452, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(Right(vyw440), Right(vyw450), False, app(app(ty_Either, cb), app(ty_[], dd)), bef) -> new_ltEs3(vyw440, vyw450, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(ty_@2, bcc), bcd)), hd), bah), bef) -> new_lt1(vyw440, vyw450, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(ty_@2, ge), gf)), gc), bef) -> new_lt1(vyw440, vyw450, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(ty_@2, bbb), bbc)), bah), bef) -> new_lt1(vyw441, vyw451, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(app(app(ty_@3, gg), gh), ha)), gc), bef) -> new_lt2(vyw440, vyw450, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(app(app(ty_@3, bbd), bbe), bbf)), bah), bef) -> new_lt2(vyw441, vyw451, bbd, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(app(app(ty_@3, bce), bcf), bcg)), hd), bah), bef) -> new_lt2(vyw440, vyw450, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare20(@2(vyw440, vyw441), @2(vyw450, vyw451), False, app(app(ty_@2, app(ty_Maybe, gd)), gc), bef) -> new_lt0(vyw440, vyw450, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, app(ty_Maybe, bcb)), hd), bah), bef) -> new_lt0(vyw440, vyw450, bcb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare20(@3(vyw440, vyw441, vyw442), @3(vyw450, vyw451, vyw452), False, app(app(app(ty_@3, hc), app(ty_Maybe, bba)), bah), bef) -> new_lt0(vyw441, vyw451, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(ty_[], cga), ccg) -> new_lt3(vyw81, vyw84, cga) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(ty_[], cdf), ccf, ccg) -> new_lt3(vyw80, vyw83, cdf) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(ty_Either, cfa), cfb), ccg) -> new_lt(vyw81, vyw84, cfa, cfb) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(ty_Either, ccd), cce), ccf, ccg) -> new_lt(vyw80, vyw83, ccd, cce) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(ty_@2, cfd), cfe), ccg) -> new_lt1(vyw81, vyw84, cfd, cfe) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(ty_@2, cda), cdb), ccf, ccg) -> new_lt1(vyw80, vyw83, cda, cdb) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(app(app(ty_@3, cff), cfg), cfh), ccg) -> new_lt2(vyw81, vyw84, cff, cfg, cfh) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3, 9 > 4, 9 > 5 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(app(app(ty_@3, cdc), cdd), cde), ccf, ccg) -> new_lt2(vyw80, vyw83, cdc, cdd, cde) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3, 8 > 4, 8 > 5 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, cdg, app(ty_Maybe, cfc), ccg) -> new_lt0(vyw81, vyw84, cfc) The graph contains the following edges 2 >= 1, 5 >= 2, 9 > 3 *new_compare24(vyw80, vyw81, vyw82, vyw83, vyw84, vyw85, False, app(ty_Maybe, cch), ccf, ccg) -> new_lt0(vyw80, vyw83, cch) The graph contains the following edges 1 >= 1, 4 >= 2, 8 > 3 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 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(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 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(vyw17800), Succ(vyw31000)) -> new_primPlusNat(vyw17800, vyw31000) 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(vyw17800), Succ(vyw31000)) -> new_primPlusNat(vyw17800, vyw31000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (37) YES